1234567891011121314151617 |
- using System.Runtime.Serialization;
- namespace GLTFExport.Entities
- {
- [DataContract]
- public class GLTFMesh : GLTFIndexedChildRootProperty
- {
- [DataMember (IsRequired = true)]
- public GLTFMeshPrimitive[] primitives { get; set; }
- [DataMember(EmitDefaultValue = false)]
- public float[] weights { get; set; }
- // Identifier shared between a babylon mesh and its instances
- public int idGroupInstance;
- }
- }
|