Blame view

ios/cocos2d/cocos/editor-support/cocostudio/fbs-files/CSArmatureNode.fbs 354 Bytes
520389e3   xiaoyu   接入cocos源码,编译未通过,继续修改
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
  // 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;
  }