Install Asset
Install via Godot
To maintain one source of truth, Godot Asset Library is just a mirror of the old asset library so you can download directly on Godot via the integrated asset library browser
Quick Information
A script that allow you to slice concave meshes. Based on godot CSG system.Go to the github page to view usage instructions.
Godot 4 concave mesh slicer
Slicing Concave Mesh Into Half.
Installing
Download the files and put the ConcaveMeshSlicer.gd into your project.
Using
In your script that you want to slice meshes, create the MeshSlicer node.
var meshSlicer = MeshSlicer.new()
To slice a mesh, use the slice_mesh function.
#Slice a mesh in half using Transform3D as the local position and direction. Return an array of the sliced meshes.
#The cross-section material is positioned and rotated base on the Transform3D
meshSlicer.slice_mesh(slice_transform:Transform3D,mesh:Mesh,cross_section_material:Material)
A script that allow you to slice concave meshes. Based on godot CSG system.
Go to the github page to view usage instructions.
Reviews
Quick Information
A script that allow you to slice concave meshes. Based on godot CSG system.Go to the github page to view usage instructions.