Enum VhacdFillMode
How V-HACD fills the interior of the voxelized mesh during decomposition.
[DataContract("VhacdFillMode")]
public enum VhacdFillMode
- Extension Methods
Fields
FloodFill = 0Flood-fill from a known-outside cell to mark inside vs outside. Default; meshes with holes can fail.
RaycastFill = 2Uses raycasting to classify inside vs outside; more robust for meshes with holes.
SurfaceOnly = 1Only the voxelized surface is kept; produces shell-only hulls with hollow interior.