GLTFMorphTarget.cs 326 B

12345678910111213141516
  1. using System.Collections.Generic;
  2. using System.Runtime.Serialization;
  3. namespace GLTFExport.Entities
  4. {
  5. [DataContract]
  6. public class GLTFMorphTarget : Dictionary<string, int>
  7. {
  8. public enum Attribute
  9. {
  10. POSITION,
  11. NORMAL,
  12. TANGENT
  13. }
  14. }
  15. }