MeshOutput.cs 316 B

1234567891011121314
  1. 
  2. namespace LunarCatsStudio.SuperCombiner
  3. {
  4. /// <summary>
  5. /// Class describing the type of output when combining meshes
  6. /// </summary>
  7. public enum MeshOutput
  8. {
  9. // Combine meshes/skinned meshes as a mesh
  10. Mesh = 0,
  11. // Combine meshes/skinned meshes as a skinned mesh
  12. SkinnedMesh = 1
  13. };
  14. }