CSBoneBinary.fbs 485 B

1234567891011121314151617181920
  1. // BoneBinary IDL file
  2. // !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
  3. // !! When adding new pairs to the maps below, !!
  4. // !! please add to the last position of the map. !!
  5. // !! It will ensure the reader's version compatible. !!
  6. // !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
  7. include "CSParseBinary.fbs";
  8. namespace flatbuffers;
  9. table BoneOptions
  10. {
  11. nodeOptions:WidgetOptions;
  12. length:float;
  13. blendFunc:BlendFunc;
  14. }
  15. root_type BoneOptions;