mirror of https://github.com/axmolengine/axmol.git
26 lines
355 B
Plaintext
26 lines
355 B
Plaintext
// CSParseBinary IDL file
|
|
|
|
namespace flatbuffers;
|
|
|
|
table WidgetOptions
|
|
{
|
|
|
|
}
|
|
|
|
table CSArmatureNodeOption
|
|
{
|
|
nodeOptions:WidgetOptions;
|
|
|
|
fileData:ResourceItemData;
|
|
isLoop:bool = true;
|
|
isAutoPlay:bool = true;
|
|
currentAnimationName:string;
|
|
}
|
|
|
|
root_type CSArmatureNodeOption;
|
|
|
|
table ResourceItemData
|
|
{
|
|
type:int = 0;
|
|
path:string;
|
|
} |