1234567891011121314151617181920212223 |
- // ArmatureNode IDL file
- include "CSParseBinary.fbs";
- namespace flatbuffers;
- table CSArmatureNodeOption
- {
- nodeOptions:WidgetOptions;
- fileData:ResourceItemData;
- isLoop:bool = true;
- isAutoPlay:bool = true;
- currentAnimationName:string;
- }
- root_type CSArmatureNodeOption;
- table ResourceItemData
- {
- type:int = 0;
- path:string;
- }
|