mirror of https://github.com/axmolengine/axmol.git
23 lines
354 B
Plaintext
23 lines
354 B
Plaintext
// 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;
|
|
} |