Logo white

GitLab

liangchengyou / wow_english

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • wow_english
  • ..
  • fbs-files
  • CSArmatureNode.fbs
  • 接入cocos源码,编译未通过,继续修改
    520389e3
    xiaoyu authored
    2024-04-14 00:13:56 +0800  
    Browse Code »
CSArmatureNode.fbs 354 Bytes
Edit Raw Blame History
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;
}