-
- namespace LunarCatsStudio.SuperCombiner
- {
- /// <summary>
- /// Class describing the type of output when combining meshes
- /// </summary>
- public enum MeshOutput
- {
- // Combine meshes/skinned meshes as a mesh
- Mesh = 0,
- // Combine meshes/skinned meshes as a skinned mesh
- SkinnedMesh = 1
- };
- }
|