CSArmatureNode.fbs 354 B

1234567891011121314151617181920212223
  1. // ArmatureNode IDL file
  2. include "CSParseBinary.fbs";
  3. namespace flatbuffers;
  4. table CSArmatureNodeOption
  5. {
  6. nodeOptions:WidgetOptions;
  7. fileData:ResourceItemData;
  8. isLoop:bool = true;
  9. isAutoPlay:bool = true;
  10. currentAnimationName:string;
  11. }
  12. root_type CSArmatureNodeOption;
  13. table ResourceItemData
  14. {
  15. type:int = 0;
  16. path:string;
  17. }