GLTFTextureInfo.cs 346 B

1234567891011121314
  1. using System.Runtime.Serialization;
  2. namespace GLTFExport.Entities
  3. {
  4. [DataContract]
  5. public class GLTFTextureInfo : GLTFChildRootProperty
  6. {
  7. [DataMember(IsRequired = true)]
  8. public int index { get; set; }
  9. [DataMember(EmitDefaultValue = false)]
  10. public int? texCoord { get; set; }
  11. }
  12. }