123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108 |
- {
- "skeleton": { "hash": "w58gn6JrxxlaH3D47SPIw3QhsZU", "spine": "3.6.53", "width": 146.45, "height": 199, "images": "./images/" },
- "bones": [
- { "name": "root" },
- { "name": "bone", "parent": "root", "x": 1.56, "y": 65.12 },
- { "name": "bone2", "parent": "bone", "length": 4.68, "rotation": -102.09, "x": -0.97, "y": -1.44, "color": "ec6d25ff" },
- { "name": "bone3", "parent": "bone2", "length": 4.84, "rotation": -2.25, "x": 4.68, "color": "ec6d25ff" },
- { "name": "bone4", "parent": "bone3", "length": 5.55, "rotation": -5.15, "x": 4.84, "color": "ec6d25ff" },
- { "name": "bone5", "parent": "bone4", "length": 5.42, "rotation": -2.94, "x": 5.55, "color": "ec6d25ff" },
- { "name": "bone6", "parent": "bone5", "length": 4, "rotation": -3.42, "x": 5.42, "color": "ec6d25ff" },
- { "name": "bone7", "parent": "bone", "length": 3.6, "rotation": -54.87, "x": 15.17, "y": -4.38, "color": "55a028ff" },
- { "name": "bone8", "parent": "bone7", "length": 5.14, "rotation": 1.25, "x": 3.6, "color": "55a028ff" },
- { "name": "bone9", "parent": "bone8", "length": 4.1, "rotation": -7.77, "x": 5.14, "color": "55a028ff" },
- { "name": "bone10", "parent": "bone9", "length": 3.87, "rotation": 3.74, "x": 4.1, "color": "55a028ff" },
- { "name": "bone11", "parent": "bone10", "length": 4.81, "rotation": 0.62, "x": 3.87, "color": "55a028ff" },
- { "name": "bone12", "parent": "bone11", "length": 4.15, "rotation": -3.04, "x": 4.81, "color": "55a028ff" },
- { "name": "bone13", "parent": "bone", "length": 6.01, "rotation": -133.53, "x": -13.5, "y": -5.14, "color": "24449cff" },
- { "name": "bone14", "parent": "bone13", "length": 4.78, "rotation": -1.47, "x": 6.01, "color": "24449cff" },
- { "name": "bone15", "parent": "bone14", "length": 5.02, "rotation": 10.62, "x": 4.78, "color": "24449cff" },
- { "name": "bone16", "parent": "bone15", "length": 4.56, "rotation": 1.07, "x": 5.02, "color": "24449cff" },
- { "name": "bone17", "parent": "bone16", "length": 5.38, "rotation": 11.94, "x": 4.66, "y": 0.06, "color": "24449cff" },
- { "name": "bone18", "parent": "bone", "length": 5.56, "rotation": -93.99, "x": 0.61, "y": -9.06, "color": "d8d08cff" },
- { "name": "bone19", "parent": "bone18", "length": 6.85, "rotation": 0.75, "x": 5.56, "color": "d8d08cff" },
- { "name": "bone20", "parent": "bone19", "length": 4.13, "rotation": 1.45, "x": 6.85, "color": "d8d08cff" },
- { "name": "bone21", "parent": "bone", "length": 8, "rotation": 90.91, "x": -0.09, "y": 0.61 },
- { "name": "bone22", "parent": "bone21", "length": 30.51, "rotation": -3.3, "x": 8 },
- { "name": "bone23", "parent": "bone22", "length": 6.22, "rotation": 1.22, "x": 30.51 },
- { "name": "bone24", "parent": "bone22", "length": 23.36, "rotation": -148.68, "x": 28.22, "y": -15.22, "color": "ddd124ff" },
- { "name": "bone25", "parent": "bone24", "length": 15.58, "rotation": 0.35, "x": 23.36, "color": "ddd124ff" },
- { "name": "bone26", "parent": "bone25", "length": 11.03, "rotation": -4.78, "x": 15.58, "color": "ddd124ff" },
- { "name": "bone27", "parent": "bone22", "length": 24.57, "rotation": 160.86, "x": 28.81, "y": 10.1, "color": "9d23bcff" },
- { "name": "bone28", "parent": "bone27", "length": 15.51, "rotation": -6.3, "x": 24.57, "color": "9d23bcff" },
- { "name": "bone29", "parent": "bone28", "length": 10.26, "rotation": -3.5, "x": 15.51, "color": "9d23bcff" },
- { "name": "bone30", "parent": "bone23", "length": 53.47, "rotation": 1.31, "x": 3.99, "y": 0.26, "color": "8a51e1ff" },
- { "name": "bone31", "parent": "bone30", "length": 9.91, "rotation": -0.14, "x": 18.8, "y": 16.57 },
- { "name": "bone32", "parent": "bone30", "length": 11.69, "rotation": -2, "x": 18.23, "y": -11.37 },
- { "name": "bone33", "parent": "bone30", "x": 21.82, "y": 3.48 },
- { "name": "bone34", "parent": "bone30", "x": 31.09, "y": 3.71 },
- { "name": "bone35", "parent": "bone30", "x": 6.9, "y": 3.39 },
- { "name": "bone36", "parent": "bone", "length": 24.19, "rotation": -80.86, "x": 9.72, "y": -11.26, "color": "1faf2fff" },
- { "name": "bone37", "parent": "bone36", "length": 23.31, "rotation": -0.48, "x": 24.19, "color": "1faf2fff" },
- { "name": "bone38", "parent": "bone37", "length": 12.27, "rotation": -83.67, "x": 23.31, "color": "1faf2fff" },
- { "name": "bone39", "parent": "bone", "length": 25.93, "rotation": -93.32, "x": -10.15, "y": -10.43, "color": "12247bff" },
- { "name": "bone40", "parent": "bone39", "length": 22.83, "rotation": -2.55, "x": 25.93, "color": "12247bff" },
- { "name": "bone41", "parent": "bone40", "length": 5, "rotation": -74.16, "x": 22.83, "color": "12247bff" },
- { "name": "bone42", "parent": "bone30", "length": 16.95, "rotation": 153.55, "x": 74.52, "y": 21.54, "color": "e05bedff" },
- { "name": "bone43", "parent": "bone42", "length": 12.48, "rotation": 13.95, "x": 16.95, "color": "e05bedff" },
- { "name": "bone44", "parent": "bone43", "length": 11.63, "rotation": -3.47, "x": 12.48, "color": "e05bedff" },
- { "name": "bone45", "parent": "bone44", "length": 8.35, "rotation": -21.04, "x": 11.63, "color": "e05bedff" },
- { "name": "bone46", "parent": "bone30", "length": 23.7, "rotation": -151.04, "x": 69.09, "y": -14.36, "color": "6ec0dcff" },
- { "name": "bone47", "parent": "bone46", "length": 8.53, "rotation": 1.49, "x": 23.7, "color": "6ec0dcff" },
- { "name": "bone48", "parent": "bone47", "length": 7.78, "rotation": 24.03, "x": 8.53, "color": "6ec0dcff" },
- { "name": "bone49", "parent": "bone48", "length": 6.67, "rotation": 13.33, "x": 7.78, "color": "6ec0dcff" },
- { "name": "bone50", "parent": "bone", "length": 12.06, "rotation": -88.05, "x": 3.31, "y": -8.58 },
- { "name": "bone51", "parent": "bone22", "length": 22.79, "rotation": -149.72, "x": 31.41, "y": -90.2, "color": "4098c1ff" },
- { "name": "bone52", "parent": "bone51", "length": 14.97, "rotation": -94.58, "x": 22.79, "color": "4098c1ff" },
- { "name": "bone53", "parent": "bone52", "length": 14.1, "rotation": 1.52, "x": 14.97, "color": "4098c1ff" },
- { "name": "bone54", "parent": "bone22", "length": 28.41, "rotation": 150.68, "x": 26.38, "y": 74.66, "color": "5ac460ff" },
- { "name": "bone55", "parent": "bone54", "length": 13.46, "rotation": 95.59, "x": 27.78, "y": -1.23, "color": "5ac460ff" },
- { "name": "bone56", "parent": "bone55", "length": 12.4, "rotation": 0.04, "x": 13.46, "color": "5ac460ff" },
- { "name": "bone57", "parent": "bone41", "length": 7.68, "rotation": -4.11, "x": 5.62, "y": 0.52, "color": "12247bff" },
- { "name": "xin", "parent": "root", "x": 224.39, "y": 99.67 },
- { "name": "xin2", "parent": "xin", "x": 65.19, "y": 7.94 },
- { "name": "xin3", "parent": "xin", "x": 65.19, "y": 7.94 },
- { "name": "xin5", "parent": "xin", "x": 6.2, "y": 3.49 },
- { "name": "xin6", "parent": "xin", "x": -2.99, "y": 6.98 }
- ],
- "slots": [
- { "name": "zuoshou", "bone": "bone27", "attachment": "zuoshou" },
- { "name": "zuoshou1", "bone": "bone54" },
- { "name": "waitao3", "bone": "bone18", "attachment": "waitao3" },
- { "name": "zuojiao", "bone": "bone39", "attachment": "zuojiao" },
- { "name": "dang", "bone": "bone50", "attachment": "dang" },
- { "name": "youjiao", "bone": "bone36", "attachment": "youjiao" },
- { "name": "chenyi", "bone": "bone22", "attachment": "chenyi" },
- { "name": "waitaoyou", "bone": "bone7", "attachment": "waitaoyou" },
- { "name": "waitaozuo", "bone": "bone13", "attachment": "waitaozuo" },
- { "name": "waitou1", "bone": "bone18", "attachment": "waitou1" },
- { "name": "waitao2", "bone": "bone2", "attachment": "waitao2" },
- { "name": "youshou", "bone": "bone24", "attachment": "youshou" },
- { "name": "youshou 1", "bone": "bone51" },
- { "name": "youshou 2", "bone": "bone52" },
- { "name": "zuoshou2", "bone": "bone55", "attachment": "zuoshou2" },
- { "name": "tou", "bone": "bone30", "attachment": "tou" },
- { "name": "zuiba1", "bone": "bone35", "attachment": "zuiba1" },
- { "name": "zuiba2", "bone": "bone35", "attachment": "zuiba2" },
- { "name": "youyan", "bone": "bone32", "attachment": "youyan" },
- { "name": "zuoyan", "bone": "bone31", "attachment": "zuoyan" },
- { "name": "meimao", "bone": "bone34", "attachment": "meimao" },
- { "name": "lijiao 2", "bone": "bone30", "attachment": "lijiao 2" },
- { "name": "touga3", "bone": "bone30" },
- { "name": "toufa 2", "bone": "bone42", "attachment": "toufa 2" },
- { "name": "toufa1", "bone": "bone46", "attachment": "toufa1" },
- { "name": "lujiao1", "bone": "bone30", "attachment": "lujiao1" },
- { "name": "biyan", "bone": "bone33" },
- { "name": "xin xian", "bone": "xin5" },
- { "name": "xin", "bone": "xin6" },
- { "name": "xin 4", "bone": "xin2" },
- { "name": "xin 5", "bone": "xin3" }
- ],
- "skins": {
- "default": {
- "biyan": {
- "biyan": { "x": -0.48, "y": -0.61, "rotation": -90.14, "width": 46, "height": 8 }
- },
- "chenyi": {
- "chenyi": {
- "type": "mesh",
- "uvs": [ 0.60893, 0.11211, 0.61398, 0.13143, 0.61984, 0.15386, 0.85211, 0.17542, 0.8784, 0.65237, 0.88633, 0.79614, 0.89163, 0.89241, 0.89756, 1, 0.39529, 1, 0, 1, 0, 0.90355, 0, 0.79261, 0, 0.65198, 0.11802, 0.17699, 0.24439, 0.15355, 0.24249, 0.13407, 0.24046, 0.11329, 0.22939, 0, 0.41348, 0, 0.60893, 0, 0.40153, 0.6568, 0.39903, 0.79428, 0.39716, 0.89737, 0.41096, 0.15804, 0.41144, 0.1122, 0.41118, 0.13653 ],
- "triangles": [ 0, 18, 19, 18, 16, 17, 24, 18, 0, 24, 16, 18, 15, 16, 24, 25, 15, 24, 25, 24, 0, 25, 0, 1, 14, 15, 25, 23, 14, 25, 23, 25, 1, 23, 1, 2, 20, 12, 13, 13, 14, 20, 23, 20, 14, 20, 23, 2, 2, 4, 20, 4, 2, 3, 21, 11, 12, 20, 21, 12, 21, 20, 4, 5, 21, 4, 22, 11, 21, 22, 21, 5, 22, 5, 6, 10, 11, 22, 8, 9, 10, 22, 8, 10, 8, 22, 6, 7, 8, 6 ],
- "vertices": [ 2, 22, 36.01, -8.47, 0.18569, 23, 5.33, -8.58, 0.81431, 2, 22, 34.79, -8.74, 0.29415, 23, 4.09, -8.83, 0.70585, 2, 22, 33.36, -9.06, 0.46744, 23, 2.66, -9.12, 0.53256, 2, 22, 32.41, -19.33, 0.85975, 23, 1.49, -19.36, 0.14025, 2, 21, 8.71, -21.83, 0.4795, 22, 1.96, -21.75, 0.5205, 2, 21, -0.5, -22.03, 0.822, 22, -7.22, -22.49, 0.178, 2, 21, -6.66, -22.17, 0.95005, 22, -13.36, -22.98, 0.04995, 2, 21, -13.55, -22.32, 0.99328, 22, -20.23, -23.52, 0.00672, 1, 21, -13.2, -0.22, 1, 1, 21, -12.92, 17.17, 1, 2, 21, -6.75, 17.07, 0.97833, 22, -15.71, 16.19, 0.02167, 2, 21, 0.35, 16.96, 0.84627, 22, -8.62, 16.49, 0.15373, 2, 21, 9.35, 16.81, 0.44683, 22, 0.38, 16.86, 0.55317, 2, 22, 30.97, 12.94, 0.78486, 23, 0.73, 12.93, 0.21514, 2, 22, 32.7, 7.45, 0.421, 23, 2.35, 7.4, 0.579, 2, 22, 33.94, 7.58, 0.2626, 23, 3.59, 7.51, 0.7374, 2, 22, 35.26, 7.73, 0.13856, 23, 4.92, 7.62, 0.86144, 1, 23, 12.16, 8.26, 1, 1, 23, 12.32, 0.16, 1, 2, 22, 43.18, -8.17, 1.9E-4, 23, 12.5, -8.44, 0.99981, 2, 21, 8.76, -0.85, 0.1007, 22, 0.8, -0.8, 0.8993, 1, 21, -0.04, -0.6, 1, 1, 21, -6.63, -0.41, 1, 2, 22, 32.71, 0.11, 0.002, 23, 2.21, 0.06, 0.998, 2, 22, 35.65, 0.21, 1.6E-4, 23, 5.14, 0.1, 0.99984, 1, 23, 3.59, 0.08, 1 ],
- "hull": 20,
- "edges": [ 6, 4, 28, 26, 26, 24, 34, 36, 36, 38, 14, 16, 16, 18, 24, 40, 6, 8, 40, 8, 22, 24, 42, 40, 22, 42, 8, 10, 42, 10, 18, 20, 20, 22, 16, 44, 44, 42, 20, 44, 10, 12, 12, 14, 44, 12, 46, 40, 28, 46, 46, 4, 32, 34, 36, 48, 32, 48, 0, 38, 48, 0, 28, 30, 30, 32, 46, 50, 50, 48, 30, 50, 0, 2, 2, 4, 50, 2 ],
- "width": 44,
- "height": 64
- }
- },
- "dang": {
- "dang": {
- "type": "mesh",
- "uvs": [ 1, 0.68682, 0.60404, 1, 0.37604, 1, 0, 0.61976, 0, 0, 0.37004, 0, 0.59204, 0, 1, 0 ],
- "triangles": [ 3, 4, 5, 6, 7, 0, 5, 2, 3, 1, 2, 6, 6, 2, 5, 0, 1, 6 ],
- "vertices": [ 10.31, 18.3, 15.09, 2.29, 14.78, -6.82, 7.8, -21.64, -2.73, -21.28, -2.22, -6.48, -1.92, 2.39, -1.36, 18.7 ],
- "hull": 8,
- "edges": [ 6, 8, 6, 4, 2, 4, 0, 14, 2, 0, 8, 10, 4, 10, 10, 12, 12, 14, 2, 12 ],
- "width": 40,
- "height": 17
- }
- },
- "lijiao 2": {
- "lijiao 2": { "x": 66.91, "y": 34.27, "rotation": -90.14, "width": 25, "height": 31 }
- },
- "lujiao1": {
- "lujiao1": { "x": 69.23, "y": -40.24, "rotation": -90.14, "width": 26, "height": 36 }
- },
- "meimao": {
- "meimao": { "x": 1.75, "y": -0.37, "rotation": -90.14, "width": 47, "height": 9 }
- },
- "tou": {
- "tou": { "x": 40.82, "y": -3.67, "rotation": -90.14, "width": 73, "height": 89 }
- },
- "toufa 2": {
- "toufa 2": {
- "type": "mesh",
- "uvs": [ 1, 0.22793, 0.89112, 0.12345, 0.84166, 0.23726, 0.71223, 0.53509, 0.65779, 0.54554, 0.56533, 0.50414, 0.49446, 0.47241, 0.43758, 0.52495, 0.38362, 0.57479, 0.35251, 0.78375, 0.28835, 0.91121, 0.18918, 1, 0, 1, 0, 0.85255, 0, 0.76703, 0.10363, 0.63957, 0.12307, 0.40972, 0.18335, 0.23211, 0.3039, 0.09838, 0.46724, 0, 0.6504, 0, 1, 0, 0.35446, 0.21121, 0.22807, 0.44315, 0.1989, 0.65002, 0.15029, 0.81091, 0.08302, 0.89555, 0.29224, 0.32539, 0.6568, 0.22738, 0.5308, 0.22064 ],
- "triangles": [ 1, 20, 21, 22, 18, 19, 29, 19, 20, 22, 19, 29, 28, 20, 1, 29, 20, 28, 1, 21, 0, 17, 18, 22, 2, 28, 1, 27, 17, 22, 16, 17, 27, 23, 16, 27, 22, 6, 27, 29, 6, 22, 7, 23, 27, 29, 5, 6, 28, 5, 29, 6, 7, 27, 3, 28, 2, 4, 5, 28, 3, 4, 28, 8, 23, 7, 15, 16, 23, 24, 15, 23, 8, 24, 23, 9, 24, 8, 25, 15, 24, 25, 24, 9, 14, 15, 25, 13, 14, 25, 26, 13, 25, 10, 25, 9, 12, 13, 26, 11, 25, 10, 26, 25, 11, 12, 26, 11 ],
- "vertices": [ 1, 42, -20.81, 43.02, 1, 1, 42, -23.61, 32.89, 1, 1, 42, -15.2, 33.08, 1, 1, 42, 6.82, 33.57, 1, 2, 42, 9.18, 30.37, 1, 44, -14.58, 30.52, 0, 2, 42, 9.65, 23.17, 0.99622, 44, -15.43, 23.36, 0.00378, 2, 42, 10, 17.65, 0.96478, 44, -16.08, 17.87, 0.03522, 2, 42, 14.97, 15.54, 0.84101, 44, -11.58, 14.89, 0.15899, 2, 42, 19.69, 13.54, 0.56697, 44, -7.3, 12.06, 0.43303, 3, 42, 33.23, 17.74, 0.01477, 44, 6.78, 13.73, 0.89917, 45, -9.46, 11.07, 0.08606, 2, 44, 16.25, 11.61, 0.41582, 45, 0.15, 12.5, 0.58418, 2, 44, 23.92, 6.37, 0.02596, 45, 9.19, 10.35, 0.97404, 1, 45, 17.36, -0.54, 1, 2, 44, 18.13, -9.43, 0.03698, 45, 9.46, -6.47, 0.96302, 2, 44, 12.62, -11, 0.24581, 45, 4.87, -9.91, 0.75419, 3, 42, 32.52, -2.61, 0.02159, 44, 2.37, -6.15, 0.94607, 45, -6.43, -9.06, 0.03233, 2, 42, 18.09, -8.18, 0.9339, 44, -12.83, -9, 0.0661, 1, 42, 5.5, -9.56, 1, 1, 42, -6.38, -5.75, 1, 1, 42, -17.5, 1.87, 1, 1, 42, -23.35, 13.69, 1, 1, 42, -34.5, 36.25, 1, 1, 42, -1.22, 0.86, 1, 1, 42, 16.75, -0.41, 1, 2, 42, 30.1, 3.85, 4.9E-4, 44, 1.17, 0.64, 0.99951, 2, 44, 12.5, 0.22, 0.1112, 45, 0.73, 0.51, 0.8888, 1, 45, 8.18, 0.04, 1, 2, 42, 7.63, 0.24, 0.99994, 44, -21.59, 1.17, 6.0E-5, 1, 42, -9.89, 20.85, 1, 1, 42, -6.28, 12.52, 1 ],
- "hull": 22,
- "edges": [ 38, 36, 36, 34, 34, 32, 32, 30, 30, 28, 22, 24, 22, 20, 20, 18, 18, 16, 8, 6, 0, 42, 2, 0, 2, 4, 4, 6, 46, 48, 48, 50, 28, 50, 50, 20, 24, 26, 26, 28, 24, 52, 52, 50, 26, 52, 52, 22, 18, 48, 48, 30, 16, 46, 46, 32, 12, 44, 44, 36, 12, 14, 14, 16, 44, 54, 54, 46, 14, 54, 54, 34, 4, 56, 8, 56, 38, 40, 40, 42, 56, 40, 44, 58, 58, 56, 38, 58, 8, 10, 10, 12, 58, 10 ],
- "width": 72,
- "height": 67
- }
- },
- "toufa1": {
- "toufa1": {
- "type": "mesh",
- "uvs": [ 0.6179, 0.10736, 0.74141, 0.20662, 1, 0.25731, 1, 0.49483, 1, 0.74514, 0.84507, 0.91119, 0.78792, 1, 0.55642, 1, 0.30869, 1, 0.20178, 0.88007, 0.16462, 0.75895, 0.12032, 0.61455, 0, 0.54697, 0.09869, 0.19418, 0.20591, 0, 0.48432, 0, 0.28832, 0.27662, 0.51232, 0.61938, 0.59632, 0.7449, 0.69814, 0.82697, 0.40278, 0.45176 ],
- "triangles": [ 7, 19, 6, 6, 19, 5, 7, 18, 19, 7, 8, 18, 8, 9, 18, 5, 19, 4, 9, 17, 18, 9, 10, 17, 4, 19, 3, 20, 10, 11, 20, 17, 10, 19, 18, 3, 2, 3, 18, 18, 17, 1, 17, 20, 1, 20, 11, 16, 11, 12, 16, 12, 13, 16, 18, 1, 2, 20, 0, 1, 20, 16, 0, 13, 14, 16, 16, 15, 0, 16, 14, 15 ],
- "vertices": [ 4, 46, 0.84, 19.98, 0.96161, 47, -22.33, 20.56, 0.00357, 48, -19.82, 31.35, 6.9E-4, 49, -19.63, 36.87, 0.03413, 4, 46, 9.18, 23.12, 0.82744, 47, -13.92, 23.48, 0.0373, 48, -10.94, 30.59, 0.01128, 49, -11.17, 34.08, 0.12398, 4, 46, 18.66, 34.11, 0.60181, 47, -4.15, 34.23, 0.08759, 48, 2.35, 36.43, 0.02975, 49, 3.11, 36.7, 0.28084, 4, 46, 30.7, 27.42, 0.3702, 47, 7.71, 27.22, 0.11793, 48, 10.33, 25.2, 0.06124, 49, 8.29, 23.94, 0.45064, 4, 46, 43.39, 20.36, 0.07066, 47, 20.21, 19.84, 0.05565, 48, 18.74, 13.37, 0.04165, 49, 13.74, 10.48, 0.83204, 3, 46, 47.66, 8.23, 6.0E-5, 47, 24.17, 7.6, 0, 49, 9.46, -1.65, 0.99994, 2, 48, 17.79, -5.44, 0.01831, 49, 8.49, -7.6, 0.98169, 4, 46, 44.44, -8.15, 3.8E-4, 47, 20.52, -8.69, 0.12101, 48, 7.41, -12.81, 0.6539, 49, -3.31, -12.38, 0.22471, 4, 46, 37.82, -20.06, 0.07273, 47, 13.59, -20.42, 0.51279, 48, -3.69, -20.71, 0.41395, 49, -15.94, -17.5, 5.4E-4, 3, 46, 28.88, -21.81, 0.22054, 47, 4.61, -21.94, 0.55573, 48, -12.51, -18.44, 0.22373, 3, 46, 21.75, -20.18, 0.46641, 47, -2.47, -20.12, 0.44547, 48, -18.25, -13.9, 0.08812, 3, 46, 13.24, -18.24, 0.8396, 47, -10.92, -17.96, 0.15276, 48, -25.09, -8.48, 0.00764, 2, 46, 6.6, -22.12, 0.95565, 47, -17.67, -21.66, 0.04435, 1, 46, -8.64, -7.42, 1, 1, 46, -15.62, 3.21, 1, 2, 46, -8.17, 16.59, 0.99432, 49, -28.78, 39.88, 0.00568, 1, 46, 0.61, -0.63, 1, 4, 46, 23.97, 0.46, 0.22441, 47, 0.28, 0.46, 0.77293, 48, -7.35, 3.78, 0.00155, 49, -13.86, 7.16, 0.00111, 4, 46, 32.58, 0.96, 2.0E-4, 47, 8.9, 0.73, 0.14026, 48, 0.63, 0.52, 0.85677, 49, -6.84, 2.15, 0.00277, 2, 48, 7.96, -0.12, 0.40194, 49, 0.14, -0.15, 0.59806, 1, 46, 12.55, -0.07, 1 ],
- "hull": 16,
- "edges": [ 24, 22, 18, 16, 2, 4, 34, 36, 36, 38, 22, 32, 32, 30, 26, 32, 24, 26, 28, 30, 26, 28, 18, 34, 34, 2, 16, 36, 36, 4, 14, 16, 14, 38, 4, 6, 38, 6, 18, 20, 20, 22, 32, 40, 40, 34, 20, 40, 2, 0, 0, 30, 40, 0, 12, 14, 10, 38, 12, 10, 6, 8, 10, 8 ],
- "width": 55,
- "height": 58
- }
- },
- "touga3": {
- "touga3": {
- "type": "mesh",
- "uvs": [ 0.41276, 0.18783, 0.71175, 0.2409, 0.81361, 0.08831, 1, 0.13696, 1, 0.40898, 0.93354, 0.66331, 0.77911, 1, 0.70354, 1, 0.70518, 0.80706, 0.62961, 0.59475, 0.66904, 0.34042, 0.43904, 0.27187, 0.19754, 0.30504, 0, 0.48417, 0, 0, 0.31418, 0, 0.82018, 0.79821 ],
- "triangles": [ 11, 0, 1, 12, 14, 15, 12, 15, 0, 12, 0, 11, 10, 11, 1, 1, 2, 3, 4, 1, 3, 10, 1, 4, 13, 14, 12, 9, 10, 4, 5, 9, 4, 16, 9, 5, 8, 9, 16, 6, 8, 16, 7, 8, 6, 6, 16, 5 ],
- "vertices": [ 58.55, -4.11, 55.74, -25.03, 63.66, -32.18, 61.1, -45.22, 46.96, -45.19, 33.74, -40.5, 16.26, -29.65, 16.27, -24.36, 26.3, -24.5, 37.36, -19.24, 50.58, -22.03, 54.18, -5.94, 52.49, 10.97, 43.21, 24.82, 68.39, 24.76, 68.34, 2.77, 26.75, -32.55 ],
- "hull": 16,
- "edges": [ 26, 28, 26, 24, 24, 22, 22, 20, 20, 18, 18, 16, 16, 14, 12, 14, 12, 32, 32, 10, 10, 8, 8, 6, 6, 4, 4, 2, 2, 0, 28, 30, 0, 30, 10, 12 ],
- "width": 70,
- "height": 52
- }
- },
- "waitao2": {
- "waitao2": {
- "type": "mesh",
- "uvs": [ 1, 0.29369, 0.93664, 0.39023, 0.83949, 0.53826, 0.74454, 0.68292, 0.6502, 0.83341, 0.57497, 0.9413, 0.53644, 1, 0.17281, 1, 0, 1, 0, 0.86847, 0, 0.71147, 0.06997, 0.53713, 0.13152, 0.38376, 0.18701, 0.24549, 0.22796, 0.14346, 0.28554, 0, 0.65281, 0, 1, 0, 0.54735, 0.31369, 0.50008, 0.45147, 0.42372, 0.59591, 0.30554, 0.75147, 0.58204, 0.2105, 0.23041, 0.88675 ],
- "triangles": [ 22, 15, 16, 14, 15, 22, 16, 17, 0, 22, 16, 0, 18, 14, 22, 13, 14, 18, 1, 22, 0, 18, 22, 1, 19, 13, 18, 12, 13, 19, 2, 18, 1, 19, 18, 2, 20, 12, 19, 11, 12, 20, 3, 19, 2, 20, 19, 3, 21, 11, 20, 10, 11, 21, 4, 20, 3, 21, 20, 4, 23, 9, 10, 21, 23, 10, 5, 21, 4, 23, 21, 5, 7, 8, 9, 23, 7, 9, 6, 23, 5, 7, 23, 6 ],
- "vertices": [ 3, 2, 1.77, 9.5, 0.73065, 3, -3.28, 9.37, 0.25018, 4, -8.93, 8.61, 0.01918, 4, 2, 5.46, 8.86, 0.43346, 3, 0.43, 8.89, 0.45669, 4, -5.19, 8.45, 0.10735, 5, -11.16, 7.89, 0.00251, 4, 2, 11.12, 7.89, 0.04965, 3, 6.12, 8.14, 0.3714, 4, 0.55, 8.22, 0.47169, 5, -5.42, 7.95, 0.10726, 4, 3, 11.68, 7.4, 0.0514, 4, 6.15, 7.99, 0.3798, 5, 0.19, 8.01, 0.51307, 6, -5.7, 7.68, 0.05573, 4, 3, 17.45, 6.73, 2.0E-5, 4, 11.95, 7.84, 0.04368, 5, 5.99, 8.16, 0.47131, 6, 0.08, 8.18, 0.48499, 3, 4, 16.17, 7.58, 6.6E-4, 5, 10.21, 8.11, 0.17261, 6, 4.3, 8.38, 0.82673, 2, 5, 12.49, 8.13, 0.10579, 6, 6.57, 8.54, 0.89421, 1, 6, 10.06, 1.34, 1, 1, 6, 11.72, -2.08, 1, 2, 5, 12.62, -4.58, 0.00783, 6, 7.46, -4.14, 0.99217, 4, 3, 16.74, -8.21, 4.6E-4, 4, 12.59, -7.11, 0.03066, 5, 7.4, -6.74, 0.2957, 6, 2.37, -6.61, 0.67318, 5, 2, 14.63, -8.67, 2.0E-5, 3, 10.28, -8.28, 0.08204, 4, 6.16, -7.75, 0.37747, 5, 1.01, -7.71, 0.46356, 6, -3.95, -7.96, 0.07691, 5, 2, 8.94, -8.51, 0.078, 3, 4.59, -8.33, 0.40279, 4, 0.5, -8.32, 0.42273, 5, -4.61, -8.57, 0.09645, 6, -9.51, -9.15, 3.0E-5, 4, 2, 3.82, -8.36, 0.49026, 3, -0.53, -8.38, 0.38654, 4, -4.6, -8.83, 0.1183, 5, -9.68, -9.34, 0.0049, 3, 2, 0.04, -8.24, 0.83052, 3, -4.31, -8.42, 0.1481, 4, -8.36, -9.21, 0.02138, 2, 2, -5.28, -8.09, 0.98404, 3, -9.63, -8.47, 0.01596, 1, 2, -6.97, -0.19, 1, 1, 2, -8.57, 7.28, 1, 3, 2, 4.56, -0.09, 0.64359, 3, -0.12, -0.09, 0.35615, 4, -4.93, -0.54, 2.6E-4, 2, 3, 4.94, 0.13, 0.36952, 4, 0.09, 0.14, 0.63048, 2, 4, 5.56, 0.29, 0.50886, 5, -0.01, 0.29, 0.49114, 1, 6, 0.73, 0.07, 1, 3, 2, 0.77, -0.12, 0.99947, 3, -3.91, -0.28, 4.9E-4, 4, -8.68, -1.06, 4.0E-5, 1, 6, 5.84, 0.7, 1 ],
- "hull": 18,
- "edges": [ 0, 34, 30, 32, 32, 34, 36, 38, 38, 40, 40, 42, 12, 14, 14, 16, 20, 42, 42, 8, 20, 22, 22, 40, 6, 8, 40, 6, 22, 24, 24, 38, 4, 6, 38, 4, 0, 2, 2, 4, 2, 36, 24, 26, 36, 26, 32, 44, 44, 36, 0, 44, 26, 28, 28, 30, 44, 28, 16, 18, 18, 20, 14, 46, 46, 42, 18, 46, 8, 10, 10, 12, 46, 10 ],
- "width": 22,
- "height": 36
- }
- },
- "waitao3": {
- "waitao3": {
- "type": "mesh",
- "uvs": [ 0.52584, 0.25791, 1, 0.51518, 1, 1, 0.85667, 1, 0.55538, 0.75326, 0.23193, 0.7187, 0, 0.9107, 0, 0.50366, 0.20683, 0, 0.38996, 0 ],
- "triangles": [ 8, 0, 7, 0, 8, 9, 5, 7, 0, 4, 0, 1, 5, 0, 4, 6, 7, 5, 3, 4, 1, 3, 1, 2 ],
- "vertices": [ 3.79, 2.79, 8.06, 33.99, 20.15, 34.83, 20.8, 25.54, 16.01, 5.57, 16.61, -15.46, 22.45, -30.17, 12.3, -30.88, -1.2, -18.34, -2.03, -6.47 ],
- "hull": 10,
- "edges": [ 18, 0, 4, 2, 0, 2, 12, 10, 10, 8, 4, 6, 8, 6, 12, 14, 16, 18, 14, 16 ],
- "width": 65,
- "height": 25
- }
- },
- "waitaoyou": {
- "waitaoyou": {
- "type": "mesh",
- "uvs": [ 0.62438, 0.11568, 0.67676, 0.18991, 0.74351, 0.28449, 0.81304, 0.38302, 0.88765, 0.48875, 0.97189, 0.58967, 0.99999, 0.70739, 0.78913, 0.8677, 0.65085, 1, 0.51896, 1, 0.46761, 0.84856, 0.4284, 0.70538, 0.39943, 0.59738, 0.35896, 0.4651, 0.24125, 0.37884, 0.11818, 0.2944, 0, 0.18396, 0, 0.10624, 0.29263, 0.04896, 0.54274, 0, 0.4368, 0.27081, 0.51464, 0.38967, 0.57734, 0.49481, 0.64004, 0.59539, 0.70491, 0.71196, 0.3845, 0.19034, 0.59946, 0.48039 ],
- "triangles": [ 24, 7, 8, 8, 9, 10, 8, 10, 24, 7, 24, 6, 24, 11, 23, 24, 10, 11, 24, 5, 6, 24, 4, 5, 24, 23, 4, 23, 12, 22, 23, 11, 12, 22, 13, 21, 22, 12, 13, 22, 26, 23, 23, 3, 4, 23, 26, 3, 22, 21, 26, 26, 2, 3, 26, 21, 2, 13, 20, 21, 13, 14, 20, 21, 1, 2, 21, 20, 1, 14, 25, 20, 14, 15, 25, 15, 18, 25, 18, 15, 17, 20, 0, 1, 20, 25, 0, 25, 19, 0, 25, 18, 19, 15, 16, 17 ],
- "vertices": [ 5, 7, 2.87, 8.85, 0.55052, 8, -0.54, 8.86, 0.38856, 9, -6.83, 8.01, 0.05773, 10, -10.38, 8.71, 0.00314, 11, -14.16, 8.86, 5.0E-5, 5, 7, 6.11, 8.94, 0.25541, 8, 2.7, 8.88, 0.51666, 9, -3.62, 8.47, 0.19432, 10, -7.15, 8.95, 0.02827, 11, -10.92, 9.07, 0.00534, 6, 7, 10.23, 9.05, 0.04773, 8, 6.83, 8.9, 0.35459, 9, 0.47, 9.05, 0.40545, 10, -3.03, 9.27, 0.13103, 11, -6.8, 9.34, 0.05391, 12, -12.09, 8.71, 0.00729, 6, 7, 14.54, 9.17, 9.9E-4, 8, 11.13, 8.93, 0.11373, 9, 4.73, 9.66, 0.35062, 10, 1.26, 9.6, 0.24918, 11, -2.51, 9.62, 0.2028, 12, -7.82, 9.22, 0.08268, 5, 8, 15.75, 8.96, 0.01408, 9, 9.3, 10.31, 0.13497, 10, 5.86, 9.95, 0.16777, 11, 2.1, 9.93, 0.32429, 12, -3.23, 9.77, 0.35889, 5, 8, 20.44, 9.37, 4.0E-5, 9, 13.89, 11.35, 0.0314, 10, 10.51, 10.69, 0.04804, 11, 6.76, 10.62, 0.20583, 12, 1.38, 10.71, 0.71469, 4, 9, 18.01, 10.29, 0.00693, 10, 14.55, 9.37, 0.01188, 11, 10.78, 9.25, 0.10882, 12, 5.47, 9.55, 0.87236, 1, 12, 6.44, -0.01, 1, 3, 10, 16.29, -7.03, 0.00724, 11, 12.34, -7.16, 0.04915, 12, 7.9, -6.75, 0.94361, 3, 10, 13.68, -11.15, 0.0295, 11, 9.69, -11.26, 0.11951, 12, 5.47, -10.98, 0.85099, 4, 9, 12.91, -9.36, 0.01505, 10, 8.18, -9.92, 0.13397, 11, 4.21, -9.96, 0.29112, 12, -0.07, -9.98, 0.55987, 5, 8, 11.78, -9.22, 0.0154, 9, 7.82, -8.24, 0.14674, 10, 3.17, -8.46, 0.3691, 11, -0.79, -8.45, 0.31665, 12, -5.14, -8.74, 0.1521, 6, 7, 11.86, -7.66, 9.4E-4, 8, 8.1, -7.84, 0.12197, 9, 3.98, -7.37, 0.39633, 10, -0.59, -7.35, 0.34823, 11, -4.54, -7.3, 0.11217, 12, -8.95, -7.78, 0.02037, 5, 7, 7.22, -6.22, 0.14245, 8, 3.48, -6.3, 0.50714, 9, -0.8, -6.47, 0.3006, 10, -5.31, -6.13, 0.04673, 11, -9.24, -6.03, 0.00308, 3, 7, 2.24, -8.05, 0.72478, 8, -1.53, -8.01, 0.24925, 9, -5.53, -8.84, 0.02598, 2, 7, -2.8, -10.07, 0.96578, 8, -6.61, -9.93, 0.03422, 2, 7, -8.47, -11.42, 0.9998, 8, -12.32, -11.15, 2.0E-4, 1, 7, -10.7, -9.86, 1, 1, 7, -6.11, 0.15, 1, 3, 7, -2.18, 8.71, 0.86134, 8, -5.59, 8.83, 0.13733, 9, -11.83, 7.3, 0.00133, 2, 7, 3.31, 0.05, 0.81722, 8, -0.29, 0.05, 0.18278, 2, 8, 4.77, -0.1, 0.86544, 9, -0.36, -0.15, 0.13456, 3, 9, 3.99, 0.13, 0.62566, 10, -0.1, 0.14, 0.37401, 11, -3.97, 0.18, 3.3E-4, 4, 9, 8.19, 0.48, 0.00158, 10, 4.11, 0.21, 0.22082, 11, 0.24, 0.21, 0.77754, 12, -4.57, -0.03, 5.0E-5, 3, 9, 12.92, 0.63, 1.0E-5, 11, 4.97, 0, 0.30847, 12, 0.17, 0.01, 0.69152, 1, 7, -0.1, 0.09, 1, 4, 8, 9.19, 0.55, 0.00119, 9, 3.93, 1.09, 0.65852, 10, -0.09, 1.1, 0.33531, 11, -3.95, 1.14, 0.00498 ],
- "hull": 20,
- "edges": [ 16, 18, 10, 12, 32, 34, 34, 36, 36, 38, 40, 42, 42, 44, 44, 46, 46, 48, 12, 14, 14, 16, 48, 14, 26, 28, 28, 40, 40, 2, 28, 30, 30, 32, 36, 50, 50, 40, 30, 50, 2, 0, 0, 38, 50, 0, 26, 42, 2, 4, 42, 4, 24, 26, 24, 44, 4, 6, 52, 6, 22, 24, 22, 46, 6, 8, 8, 10, 46, 8, 18, 20, 20, 22, 20, 48, 48, 10 ],
- "width": 37,
- "height": 35
- }
- },
- "waitaozuo": {
- "waitaozuo": {
- "type": "mesh",
- "uvs": [ 1, 0.18626, 0.68597, 0.32302, 0.5877, 0.36582, 0.4648, 0.44812, 0.3742, 0.5267, 0.28521, 0.61979, 0.20454, 0.72817, 0.15871, 0.83331, 0.10188, 1, 0.03038, 1, 0, 1, 0, 0.7767, 0.03954, 0.64243, 0.09421, 0.52346, 0.17704, 0.37552, 0.25604, 0.26376, 0.3241, 0.18542, 0.38744, 0.12248, 0.5107, 0, 0.8682, 0, 1, 0, 0.55104, 0.22185, 0.38771, 0.37464, 0.28704, 0.46288, 0.19537, 0.57935, 0.13204, 0.68773, 0.07288, 0.80478, 0.47786, 0.29406 ],
- "triangles": [ 19, 20, 0, 21, 18, 19, 17, 18, 21, 27, 17, 21, 16, 17, 27, 1, 21, 19, 1, 19, 0, 2, 21, 1, 27, 21, 2, 22, 16, 27, 15, 16, 22, 23, 14, 15, 3, 22, 27, 3, 27, 2, 22, 23, 15, 24, 13, 14, 4, 23, 22, 4, 22, 3, 23, 24, 14, 5, 24, 23, 5, 23, 4, 12, 13, 24, 25, 12, 24, 6, 24, 5, 25, 24, 6, 11, 12, 25, 26, 11, 25, 7, 26, 25, 6, 7, 25, 10, 11, 26, 9, 10, 26, 26, 8, 9, 7, 8, 26 ],
- "vertices": [ 1, 13, -10.15, 8.91, 1, 1, 13, -0.29, 5.28, 1, 2, 13, 2.79, 4.14, 0.98819, 14, -3.33, 4.06, 0.01181, 3, 13, 7.36, 3.4, 0.29104, 14, 1.26, 3.43, 0.62842, 15, -2.83, 4.02, 0.08054, 2, 14, 5.07, 3.4, 0.22786, 15, 0.91, 3.29, 0.77214, 3, 15, 5.03, 2.87, 0.53495, 16, 0.07, 2.87, 0.40228, 17, -3.91, 3.7, 0.06277, 2, 16, 4.48, 2.87, 0.08872, 17, 0.41, 2.79, 0.91128, 1, 17, 4.24, 2.81, 1, 1, 17, 10.13, 3.29, 1, 1, 17, 10.92, 1.29, 1, 1, 17, 11.25, 0.44, 1, 2, 16, 9.23, -1.35, 0.04669, 17, 4.18, -2.33, 0.95331, 3, 15, 9.83, -2.78, 0.00242, 16, 4.76, -2.87, 0.97149, 17, -0.51, -2.88, 0.02609, 3, 14, 10.93, -2.62, 0.01964, 15, 5.57, -3.71, 0.48031, 16, 0.48, -3.72, 0.50005, 3, 13, 11.52, -4.56, 0.01963, 14, 5.62, -4.42, 0.59176, 15, 0.01, -4.5, 0.38861, 3, 13, 7.13, -5.46, 0.38902, 14, 1.26, -5.43, 0.60257, 15, -4.46, -4.69, 0.00841, 2, 13, 3.79, -5.81, 0.81654, 14, -2.07, -5.87, 0.18346, 2, 13, 0.93, -5.91, 0.97356, 14, -4.93, -6.04, 0.02644, 1, 13, -4.63, -6.1, 1, 1, 13, -12.02, 1.68, 1, 1, 13, -14.74, 4.54, 1, 1, 13, 0, -0.03, 1, 2, 14, 1.13, 0.03, 0.99979, 15, -3.58, 0.7, 2.1E-4, 1, 15, 0.6, -0.1, 1, 3, 14, 10.13, 0.87, 1.1E-4, 15, 5.42, -0.13, 0.04926, 16, 0.4, -0.14, 0.95063, 2, 16, 4.52, 0.3, 0.01192, 17, -0.08, 0.26, 0.98808, 1, 17, 4.27, 0.06, 1, 1, 13, 3.29, 0.07, 1 ],
- "hull": 21,
- "edges": [ 30, 28, 28, 26, 26, 24, 20, 22, 24, 22, 0, 40, 8, 10, 10, 12, 12, 14, 14, 16, 36, 38, 38, 40, 38, 42, 44, 46, 46, 48, 48, 50, 50, 52, 16, 18, 18, 20, 52, 18, 34, 36, 34, 42, 0, 2, 2, 4, 42, 2, 42, 54, 54, 44, 4, 54, 30, 32, 32, 34, 54, 32, 30, 44, 4, 6, 6, 8, 44, 6, 28, 46, 46, 8, 26, 48, 48, 10, 24, 50, 50, 12, 22, 52, 52, 14 ],
- "width": 30,
- "height": 34
- }
- },
- "waitou1": {
- "waitou1": {
- "type": "mesh",
- "uvs": [ 1, 0.43418, 0, 0.42415, 0, 0, 1, 0 ],
- "triangles": [ 1, 2, 3, 1, 3, 0 ],
- "vertices": [ -2.83, 22.2, -0.26, -19.72, -15.06, -20.76, -17.99, 21.14 ],
- "hull": 4,
- "edges": [ 4, 6, 2, 4, 0, 6, 2, 0 ],
- "width": 42,
- "height": 35
- }
- },
- "xin": {
- "xin": { "x": 5.46, "y": -6.61, "width": 77, "height": 67 }
- },
- "xin 4": {
- "xin 4": { "x": -0.21, "y": -1.57, "width": 36, "height": 31 }
- },
- "xin 5": {
- "xin 4": { "x": -0.21, "y": -1.57, "width": 36, "height": 31 }
- },
- "xin xian": {
- "xin xian": { "x": -3.73, "y": -3.12, "width": 83, "height": 73 }
- },
- "youjiao": {
- "youjiao": {
- "type": "mesh",
- "uvs": [ 0.89662, 0.43008, 0.91052, 0.46056, 0.92552, 0.49343, 1, 0.65667, 1, 0.75553, 1, 0.78928, 1, 0.8199, 1, 1, 0, 1, 0, 0.92517, 0, 0.85059, 0.2098, 0.79689, 0.20118, 0.76413, 0.19499, 0.74062, 0.13708, 0.52066, 0.13154, 0.49962, 0.1207, 0.45844, 0, 0, 0.34903, 0, 0.7004, 0, 0.62747, 0.81181, 0.61744, 0.78256, 0.60855, 0.75664, 0.5156, 0.48565, 0.52391, 0.50988, 0.50281, 0.44836 ],
- "triangles": [ 25, 18, 19, 25, 19, 0, 16, 17, 18, 16, 18, 25, 23, 25, 0, 23, 0, 1, 15, 16, 25, 15, 25, 23, 24, 23, 1, 24, 1, 2, 14, 15, 23, 14, 23, 24, 13, 14, 24, 22, 2, 3, 22, 24, 2, 4, 22, 3, 13, 24, 22, 12, 13, 22, 21, 22, 4, 12, 22, 21, 21, 4, 5, 11, 12, 21, 20, 21, 5, 11, 21, 20, 20, 5, 6, 9, 10, 11, 9, 11, 20, 8, 9, 20, 20, 6, 7, 8, 20, 7 ],
- "vertices": [ 3, 36, 23.15, 10.9, 0.58519, 37, -1.13, 10.89, 0.41464, 38, -13.52, -23.09, 1.7E-4, 3, 36, 25.02, 10.98, 0.43656, 37, 0.74, 10.99, 0.56318, 38, -13.41, -21.23, 2.6E-4, 3, 36, 27.03, 11.07, 0.28758, 37, 2.75, 11.09, 0.71204, 38, -13.29, -19.22, 3.8E-4, 3, 36, 37.02, 11.5, 0.00422, 37, 12.73, 11.6, 0.99408, 38, -12.7, -9.23, 0.0017, 2, 37, 18.6, 10.71, 0.99465, 38, -11.17, -3.5, 0.00535, 2, 37, 20.6, 10.41, 0.9837, 38, -10.64, -1.55, 0.0163, 2, 37, 22.42, 10.13, 0.97377, 38, -10.17, 0.23, 0.02623, 2, 37, 33.1, 8.5, 0.60031, 38, -7.37, 10.67, 0.39969, 1, 38, 18.71, 3.69, 1, 1, 38, 17.55, -0.65, 1, 2, 37, 20.17, -16.84, 0.01187, 38, 16.39, -4.97, 0.98813, 2, 37, 17.84, -10.75, 0.31183, 38, 10.09, -6.62, 0.68817, 2, 37, 15.86, -10.69, 0.54073, 38, 9.8, -8.58, 0.45927, 3, 36, 38.54, -10.76, 1.0E-4, 37, 14.44, -10.64, 0.6637, 38, 9.6, -9.99, 0.33621, 3, 36, 25.26, -10.21, 0.42828, 37, 1.16, -10.2, 0.56935, 38, 7.7, -23.14, 0.00237, 3, 36, 23.99, -10.16, 0.53713, 37, -0.11, -10.16, 0.46211, 38, 7.52, -24.4, 7.7E-4, 2, 36, 21.51, -10.06, 0.73437, 37, -2.6, -10.08, 0.26563, 1, 36, -6.17, -8.91, 1, 1, 36, -4.67, 0.4, 1, 1, 36, -3.17, 9.77, 1, 1, 37, 20.42, 0.26, 1, 1, 37, 18.65, 0.26, 1, 1, 37, 17.07, 0.25, 1, 3, 36, 24.81, 0.21, 0.07424, 37, 0.62, 0.22, 0.92576, 38, -2.72, -22.53, 0, 2, 36, 26.28, 0.2, 0.00174, 37, 2.09, 0.22, 0.99826, 2, 36, 22.55, 0.23, 1, 38, -2.96, -24.78, 0 ],
- "hull": 20,
- "edges": [ 14, 16, 22, 20, 34, 36, 36, 38, 16, 18, 18, 20, 40, 18, 22, 40, 12, 14, 40, 12, 22, 24, 42, 40, 24, 42, 10, 12, 42, 10, 24, 26, 44, 42, 26, 44, 6, 8, 8, 10, 44, 8, 30, 46, 46, 2, 26, 28, 28, 30, 44, 48, 48, 46, 28, 48, 2, 4, 4, 6, 48, 4, 30, 32, 32, 34, 36, 50, 50, 46, 32, 50, 2, 0, 0, 38, 50, 0 ],
- "width": 27,
- "height": 60
- }
- },
- "youshou": {
- "youshou": {
- "type": "mesh",
- "uvs": [ 0.65215, 0.31808, 0.54965, 0.39364, 0.57296, 0.41419, 0.59363, 0.43241, 0.79603, 0.61084, 0.82526, 0.6366, 0.85215, 0.6603, 1, 0.76401, 1, 1, 0.63215, 1, 0.5384, 0.78623, 0.5082, 0.75451, 0.48902, 0.73307, 0.3372, 0.55952, 0.31868, 0.53835, 0.29965, 0.5166, 0.18965, 0.53882, 0, 0.31364, 0, 0, 0.23715, 0, 0.72173, 0.71778, 0.69155, 0.68777, 0.66961, 0.66595, 0.4545, 0.44368, 0.47437, 0.46422, 0.49188, 0.48231 ],
- "triangles": [ 23, 17, 18, 18, 19, 23, 0, 1, 19, 1, 23, 19, 24, 23, 1, 24, 1, 2, 25, 24, 2, 25, 2, 3, 15, 17, 23, 14, 15, 23, 14, 23, 24, 16, 17, 15, 13, 14, 24, 13, 24, 25, 22, 3, 4, 25, 3, 22, 21, 22, 4, 21, 4, 5, 20, 21, 5, 20, 5, 6, 12, 13, 25, 12, 25, 22, 11, 12, 22, 11, 22, 21, 10, 11, 21, 10, 21, 20, 9, 10, 20, 20, 6, 7, 8, 20, 7, 9, 20, 8 ],
- "vertices": [ 1, 24, 19.37, 8.32, 1, 2, 24, 21.36, 3.47, 0.92349, 25, -1.98, 3.49, 0.07651, 2, 24, 22.69, 3.59, 0.64156, 25, -0.65, 3.6, 0.35844, 2, 24, 23.87, 3.69, 0.34928, 25, 0.53, 3.69, 0.65072, 2, 25, 12.1, 4.63, 0.94998, 26, -3.85, 4.32, 0.05002, 2, 25, 13.77, 4.76, 0.79513, 26, -2.2, 4.6, 0.20487, 2, 25, 15.31, 4.89, 0.54504, 26, -0.68, 4.85, 0.45496, 2, 25, 22.51, 6.28, 1.7E-4, 26, 6.38, 6.83, 0.99983, 1, 26, 17.98, 1.55, 1, 1, 26, 13.1, -9.17, 1, 2, 25, 16.33, -7.2, 0.37297, 26, 1.35, -7.11, 0.62703, 2, 25, 14.36, -7.2, 0.62447, 26, -0.61, -7.28, 0.37553, 2, 25, 13.05, -7.17, 0.76231, 26, -1.92, -7.36, 0.23769, 2, 24, 25.91, -6.81, 0.21509, 25, 2.5, -6.82, 0.78491, 2, 24, 24.62, -6.77, 0.37406, 25, 1.22, -6.78, 0.62594, 2, 24, 23.3, -6.74, 0.60736, 25, -0.11, -6.74, 0.39264, 2, 24, 22.65, -10.4, 0.84217, 25, -0.78, -10.4, 0.15783, 1, 24, 9.07, -9.83, 1, 1, 24, -5.76, -1.63, 1, 1, 24, -2.08, 5.01, 1, 2, 25, 15.98, -0.27, 0.17075, 26, 0.42, -0.24, 0.82925, 2, 25, 14.09, -0.32, 0.99036, 26, -1.46, -0.44, 0.00964, 2, 25, 12.72, -0.36, 0.9973, 26, -2.82, -0.59, 0.0027, 1, 24, 22.25, -0.5, 1, 2, 24, 23.53, -0.48, 0.36299, 25, 0.16, -0.48, 0.63701, 1, 25, 1.29, -0.47, 1 ],
- "hull": 20,
- "edges": [ 36, 38, 38, 0, 0, 2, 16, 14, 12, 14, 34, 36, 34, 32, 32, 30, 16, 18, 20, 18, 40, 16, 20, 40, 40, 12, 20, 22, 42, 40, 22, 42, 10, 12, 42, 10, 22, 24, 44, 42, 24, 44, 8, 10, 44, 8, 36, 46, 30, 46, 46, 2, 28, 30, 48, 46, 28, 48, 2, 4, 48, 4, 24, 26, 26, 28, 44, 50, 50, 48, 26, 50, 4, 6, 6, 8, 50, 6 ],
- "width": 32,
- "height": 54
- }
- },
- "youshou 1": {
- "youshou 1": {
- "type": "mesh",
- "uvs": [ 1, 0.42246, 1, 1, 0.38779, 1, 0, 0.57472, 0, 0, 0.44117, 0 ],
- "triangles": [ 3, 4, 5, 0, 2, 3, 0, 3, 5, 2, 0, 1 ],
- "vertices": [ 15.89, 10.96, 31.72, 2.58, 25.7, -8.78, 10.24, -9.81, -5.51, -1.47, -1.17, 6.71 ],
- "hull": 6,
- "edges": [ 8, 10, 2, 0, 10, 0, 6, 8, 2, 4, 6, 4 ],
- "width": 21,
- "height": 31
- }
- },
- "youshou 2": {
- "youshou 2": {
- "type": "mesh",
- "uvs": [ 1, 0.51485, 0.62819, 0.83616, 0.59466, 0.86513, 0.54145, 0.91112, 0.4386, 1, 0, 1, 0, 0.87656, 0, 0.29064, 0.34802, 0.11372, 0.40304, 0.08575, 0.43277, 0.07064, 0.57172, 0, 1, 0, 0.44801, 0.5134, 0.49019, 0.47418, 0.52319, 0.44348 ],
- "triangles": [ 13, 3, 4, 4, 5, 6, 2, 3, 13, 13, 4, 6, 6, 7, 13, 1, 2, 14, 2, 13, 14, 14, 15, 1, 1, 15, 0, 15, 12, 0, 14, 13, 8, 13, 7, 8, 15, 14, 9, 15, 11, 12, 14, 8, 9, 9, 10, 15, 15, 10, 11 ],
- "vertices": [ 1, 52, -0.62, 7.3, 1, 2, 52, 12.73, 8.2, 0.76182, 53, -2.02, 8.25, 0.23818, 2, 52, 13.93, 8.28, 0.65156, 53, -0.82, 8.3, 0.34844, 2, 52, 15.84, 8.41, 0.4577, 53, 1.09, 8.38, 0.5423, 2, 52, 19.53, 8.65, 0.17844, 53, 4.79, 8.53, 0.82156, 1, 53, 17.53, 2.63, 1, 1, 53, 16.54, 0.5, 1, 1, 53, 11.86, -9.6, 1, 2, 52, 15.53, -7.96, 0.29588, 53, 0.35, -7.97, 0.70412, 2, 52, 13.7, -7.75, 0.49147, 53, -1.47, -7.71, 0.50853, 2, 52, 12.71, -7.64, 0.59911, 53, -2.46, -7.57, 0.40089, 2, 52, 8.1, -7.11, 0.92627, 53, -7.06, -6.92, 0.07373, 1, 52, -4.49, -1.68, 1, 1, 53, 0.63, 0.27, 1, 1, 52, 14.06, 0.13, 1, 1, 52, 12.86, 0.02, 1 ],
- "hull": 13,
- "edges": [ 0, 24, 8, 10, 22, 24, 10, 12, 12, 14, 26, 12, 14, 16, 16, 26, 6, 8, 26, 6, 16, 18, 28, 26, 18, 28, 4, 6, 28, 4, 18, 20, 20, 22, 24, 30, 30, 28, 20, 30, 0, 2, 2, 4, 30, 2 ],
- "width": 32,
- "height": 19
- }
- },
- "youyan": {
- "youyan": { "x": 6.09, "y": -0.55, "rotation": -88.13, "width": 20, "height": 18 }
- },
- "zuiba1": {
- "zuiba1": { "x": -0.06, "y": -0.98, "rotation": -90.14, "width": 13, "height": 9 }
- },
- "zuiba2": {
- "zuiba2": { "x": -0.06, "y": -0.98, "rotation": -90.14, "width": 13, "height": 9 }
- },
- "zuojiao": {
- "zuojiao": {
- "type": "mesh",
- "uvs": [ 1, 0.47282, 1, 0.49638, 1, 0.53526, 1, 0.81867, 1, 0.84143, 1, 0.86703, 1, 1, 0.54435, 0.99934, 0.48598, 0.99999, 0.42545, 0.99999, 0, 1, 0, 0.95658, 0, 0.85149, 0.10184, 0.8236, 0.13875, 0.8135, 0.17599, 0.8033, 0.23892, 0.78606, 0.24409, 0.76455, 0.25057, 0.73762, 0.30956, 0.49254, 0.31533, 0.46859, 0.32273, 0.43782, 0.42811, 0, 0.72859, 0, 1, 0, 0.60988, 0.8277, 0.61331, 0.80378, 0.61697, 0.77825, 0.65945, 0.48207, 0.65545, 0.50999, 0.66318, 0.4561, 0.36711, 0.87829, 0.42536, 0.86669, 0.31082, 0.88926 ],
- "triangles": [ 7, 25, 6, 25, 5, 6, 10, 33, 9, 10, 11, 33, 33, 31, 9, 9, 31, 8, 31, 32, 8, 8, 32, 7, 7, 32, 25, 11, 13, 33, 11, 12, 13, 13, 14, 33, 33, 14, 31, 14, 15, 31, 31, 15, 32, 5, 25, 4, 25, 26, 4, 15, 16, 32, 32, 16, 25, 4, 26, 3, 26, 27, 3, 16, 17, 25, 25, 17, 26, 3, 27, 2, 27, 29, 2, 17, 18, 26, 26, 18, 27, 18, 19, 27, 27, 19, 29, 29, 28, 2, 28, 1, 2, 19, 20, 29, 29, 20, 28, 28, 30, 1, 30, 0, 1, 20, 21, 28, 28, 21, 30, 30, 23, 0, 23, 24, 0, 21, 22, 30, 30, 22, 23 ],
- "vertices": [ 2, 39, 25.01, 10.57, 0.53607, 40, -1.39, 10.52, 0.46393, 2, 39, 26.38, 10.65, 0.42131, 40, -0.03, 10.66, 0.57869, 2, 39, 28.63, 10.78, 0.25024, 40, 2.22, 10.89, 0.74976, 2, 40, 18.57, 12.57, 0.97831, 41, -13.26, -0.67, 0.02169, 2, 40, 19.88, 12.71, 0.96132, 41, -13.03, 0.63, 0.03868, 2, 40, 21.36, 12.86, 0.93658, 41, -12.77, 2.09, 0.06342, 3, 40, 29.03, 13.65, 0.8245, 41, -11.44, 9.69, 0.17541, 57, -17.67, 7.92, 1.0E-4, 3, 40, 30.44, -0.41, 0.08834, 41, 2.47, 7.21, 0.48247, 57, -3.62, 6.44, 0.42918, 3, 40, 30.66, -2.2, 0.02466, 41, 4.26, 6.93, 0.34605, 57, -1.82, 6.29, 0.62928, 3, 40, 30.85, -4.07, 0.00206, 41, 6.1, 6.6, 0.16585, 57, 0.05, 6.1, 0.83208, 1, 57, 13.17, 4.76, 1, 1, 57, 12.91, 2.25, 1, 3, 40, 23.63, -18.07, 9.3E-4, 41, 17.6, -4.16, 0.00884, 57, 12.29, -3.81, 0.99023, 3, 40, 21.7, -15.1, 0.02715, 41, 14.21, -5.21, 0.06527, 57, 8.98, -5.1, 0.90758, 3, 40, 21, -14.02, 0.05502, 41, 12.99, -5.59, 0.11357, 57, 7.79, -5.57, 0.83141, 3, 40, 20.3, -12.93, 0.10213, 41, 11.75, -5.97, 0.17882, 57, 6.58, -6.04, 0.71905, 3, 40, 19.1, -11.09, 0.26507, 41, 9.65, -6.62, 0.31564, 57, 4.53, -6.83, 0.41929, 3, 40, 17.84, -11.06, 0.40198, 41, 9.28, -7.82, 0.34374, 57, 4.25, -8.06, 0.25429, 3, 40, 16.27, -11.02, 0.53301, 41, 8.81, -9.32, 0.32354, 57, 3.89, -9.59, 0.14346, 3, 39, 27.39, -10.73, 0.33932, 40, 1.94, -10.66, 0.6417, 41, 4.55, -23.01, 0.01898, 3, 39, 26, -10.63, 0.45031, 40, 0.54, -10.62, 0.53791, 41, 4.13, -24.34, 0.01178, 3, 39, 24.2, -10.51, 0.59858, 40, -1.26, -10.58, 0.39559, 41, 3.6, -26.06, 0.00582, 1, 39, -1.34, -8.72, 1, 1, 39, -1.88, 0.58, 1, 1, 39, -2.37, 8.98, 1, 1, 40, 20.33, 0.59, 1, 1, 40, 18.93, 0.56, 1, 1, 40, 17.45, 0.52, 1, 2, 39, 26.16, 0.06, 0.35075, 40, 0.23, 0.07, 0.64925, 1, 40, 1.85, 0.11, 1, 1, 39, 24.65, 0.09, 1, 3, 40, 24.02, -6.59, 0.02529, 41, 6.66, -0.66, 0.30215, 57, 1.13, -1.11, 0.67256, 2, 40, 23.16, -4.86, 0.05881, 41, 4.77, -1.01, 0.94119, 3, 40, 24.83, -8.26, 0.01021, 41, 8.49, -0.34, 0.05562, 57, 2.93, -0.65, 0.93417 ],
- "hull": 25,
- "edges": [ 44, 46, 46, 48, 20, 22, 22, 24, 32, 50, 12, 10, 50, 10, 32, 34, 52, 50, 34, 52, 10, 8, 52, 8, 34, 36, 54, 52, 36, 54, 8, 6, 54, 6, 40, 56, 56, 2, 36, 38, 38, 40, 54, 58, 58, 56, 38, 58, 2, 4, 4, 6, 58, 4, 40, 42, 42, 44, 46, 60, 60, 56, 42, 60, 2, 0, 0, 48, 60, 0, 28, 62, 62, 16, 28, 30, 30, 32, 50, 64, 64, 62, 30, 64, 12, 14, 14, 16, 64, 14, 24, 26, 26, 28, 22, 66, 66, 62, 26, 66, 16, 18, 18, 20, 66, 18 ],
- "width": 31,
- "height": 58
- }
- },
- "zuoshou": {
- "zuoshou": {
- "type": "mesh",
- "uvs": [ 1, 0.37592, 0.84132, 0.57514, 0.72132, 0.55239, 0.70707, 0.56452, 0.6937, 0.5759, 0.48261, 0.75553, 0.46426, 0.79174, 0.45488, 0.81026, 0.35874, 1, 0.04132, 1, 0, 1, 0, 0.73671, 0.17293, 0.64886, 0.19003, 0.63291, 0.20598, 0.61803, 0.40727, 0.43017, 0.41622, 0.42182, 0.42842, 0.41043, 0.32003, 0.31318, 0.76648, 0, 0.86971, 0, 1, 0, 0.5768, 0.47632, 0.33035, 0.74769, 0.36797, 0.70572, 0.3491, 0.72677, 0.55448, 0.50084, 0.56506, 0.48922 ],
- "triangles": [ 9, 23, 8, 8, 23, 7, 23, 9, 11, 23, 11, 12, 11, 9, 10, 23, 25, 7, 7, 25, 6, 25, 24, 6, 6, 24, 5, 5, 26, 4, 5, 24, 26, 12, 13, 23, 23, 13, 25, 13, 14, 25, 25, 14, 24, 24, 15, 26, 24, 14, 15, 26, 27, 4, 4, 27, 3, 1, 2, 0, 27, 22, 3, 3, 22, 2, 2, 22, 0, 15, 16, 26, 26, 16, 27, 16, 17, 27, 27, 17, 22, 0, 22, 20, 22, 19, 20, 22, 17, 19, 17, 18, 19, 20, 21, 0 ],
- "vertices": [ 1, 27, 13.56, 10.79, 1, 1, 27, 24.82, 9.94, 1, 2, 27, 25.11, 6.05, 0.98343, 29, -15.99, 5.11, 0.01657, 2, 27, 25.84, 5.87, 0.96377, 29, -15.23, 5.05, 0.03623, 2, 27, 26.54, 5.7, 0.94306, 29, -14.52, 5, 0.05694, 2, 27, 37.46, 2.97, 0.15761, 29, -3.29, 4.17, 0.84239, 2, 27, 39.39, 3.12, 0.05382, 29, -1.42, 4.65, 0.94618, 2, 27, 40.37, 3.2, 0.02637, 29, -0.46, 4.89, 0.97363, 1, 29, 9.36, 7.38, 1, 1, 29, 14.47, -1.03, 1, 1, 29, 15.14, -2.12, 1, 2, 27, 42.06, -11.3, 0.00173, 29, 3.67, -9.11, 0.99827, 2, 27, 35.92, -7.96, 0.15398, 29, -2.94, -6.86, 0.84602, 2, 27, 34.97, -7.76, 0.21733, 29, -3.91, -6.83, 0.78267, 2, 27, 34.08, -7.58, 0.27977, 29, -4.82, -6.8, 0.72023, 2, 27, 22.88, -5.29, 0.97858, 29, -16.25, -6.45, 0.02142, 2, 27, 22.38, -5.19, 0.98623, 29, -16.76, -6.43, 0.01377, 2, 27, 21.7, -5.05, 0.99413, 29, -17.45, -6.41, 0.00587, 1, 27, 18.32, -10, 1, 1, 27, -1.61, -2.98, 1, 1, 27, -2.79, 0, 1, 1, 27, -4.27, 3.75, 1, 1, 27, 23.14, 0.46, 1, 2, 27, 38.82, -1.57, 0.03932, 29, -1.18, -0.07, 0.96068, 2, 27, 36.4, -1.27, 0.17981, 29, -3.61, -0.18, 0.82019, 2, 27, 37.61, -1.42, 0.10178, 29, -2.39, -0.12, 0.89822, 2, 27, 24.56, 0.28, 0.99962, 29, -15.54, -0.68, 3.8E-4, 1, 27, 23.89, 0.37, 1 ],
- "hull": 22,
- "edges": [ 38, 36, 36, 34, 20, 22, 24, 22, 0, 42, 0, 2, 2, 4, 38, 40, 40, 42, 40, 44, 16, 18, 18, 20, 46, 18, 24, 46, 14, 16, 46, 14, 10, 48, 48, 28, 24, 26, 26, 28, 46, 50, 50, 48, 26, 50, 10, 12, 12, 14, 50, 12, 34, 44, 44, 4, 28, 30, 52, 48, 30, 52, 8, 10, 52, 8, 30, 32, 32, 34, 44, 54, 54, 52, 32, 54, 4, 6, 6, 8, 54, 6 ],
- "width": 31,
- "height": 51
- }
- },
- "zuoshou1": {
- "zuoshou1": {
- "type": "mesh",
- "uvs": [ 1, 0.46095, 0.67368, 1, 0, 1, 0, 0.64582, 0.77368, 0, 1, 0 ],
- "triangles": [ 4, 5, 0, 3, 4, 0, 1, 2, 3, 0, 1, 3 ],
- "vertices": [ 8.01, 8.73, 27.66, 9.75, 37.93, -6.88, 28.29, -12.83, -1.09, -4.6, -4.54, 0.98 ],
- "hull": 6,
- "edges": [ 8, 10, 4, 6, 8, 6, 0, 10, 2, 4, 0, 2 ],
- "width": 29,
- "height": 32
- }
- },
- "zuoshou2": {
- "zuoshou2": {
- "type": "mesh",
- "uvs": [ 1, 0.38351, 1, 1, 0.53507, 1, 0, 0.44441, 0, 0, 0.28567, 0 ],
- "triangles": [ 2, 0, 1, 2, 3, 0, 0, 3, 5, 3, 4, 5 ],
- "vertices": [ 1, 56, 11.69, 9.72, 1, 1, 56, 17.11, -1.36, 1, 2, 55, 18.05, -7.49, 0.24435, 56, 4.58, -7.49, 0.75565, 1, 55, -1.25, -4.58, 1, 2, 55, -5.17, 3.41, 0.99997, 56, -18.62, 3.42, 3.0E-5, 2, 55, 2.53, 7.18, 0.91281, 56, -10.93, 7.19, 0.08719 ],
- "hull": 6,
- "edges": [ 8, 10, 2, 0, 10, 0, 6, 8, 2, 4, 6, 4 ],
- "width": 30,
- "height": 20
- }
- },
- "zuoyan": {
- "zuoyan": { "x": 5.07, "y": 0.31, "rotation": -90, "width": 18, "height": 17 }
- }
- }
- },
- "animations": {
- "stand1": {
- "slots": {
- "biyan": {
- "attachment": [
- { "time": 0.0667, "name": "biyan" },
- { "time": 0.2, "name": null },
- { "time": 1.7, "name": "biyan" },
- { "time": 1.8333, "name": null }
- ]
- },
- "xin": {
- "color": [
- { "time": 1.7333, "color": "ffffff00" },
- { "time": 1.8333, "color": "ffffffff", "curve": "stepped" },
- { "time": 2.2333, "color": "ffffffff" },
- { "time": 2.4, "color": "ffffff00" }
- ],
- "attachment": [
- { "time": 0, "name": null },
- { "time": 1.7333, "name": "xin" }
- ]
- },
- "xin 4": {
- "color": [
- { "time": 0.4333, "color": "ffffff00" },
- { "time": 0.5667, "color": "ffffffff", "curve": "stepped" },
- { "time": 0.6333, "color": "ffffffff" },
- { "time": 0.7333, "color": "ffffff00" }
- ],
- "attachment": [
- { "time": 0.4333, "name": "xin 4" }
- ]
- },
- "xin 5": {
- "color": [
- { "time": 1.0667, "color": "ffffff00" },
- { "time": 1.2333, "color": "ffffffff", "curve": "stepped" },
- { "time": 1.4333, "color": "ffffffff" },
- { "time": 1.5667, "color": "ffffff00" }
- ],
- "attachment": [
- { "time": 1.0667, "name": "xin 4" }
- ]
- },
- "xin xian": {
- "color": [
- { "time": 1.7333, "color": "ffffff00" },
- { "time": 1.9, "color": "ffffffff" },
- { "time": 2.2333, "color": "ffffff00" }
- ],
- "attachment": [
- { "time": 1.7333, "name": "xin xian" }
- ]
- },
- "youshou": {
- "attachment": [
- { "time": 0.2, "name": null }
- ]
- },
- "youshou 1": {
- "attachment": [
- { "time": 0.2, "name": "youshou 1" }
- ]
- },
- "youshou 2": {
- "attachment": [
- { "time": 0.2, "name": "youshou 2" }
- ]
- },
- "youyan": {
- "attachment": [
- { "time": 0.0667, "name": null },
- { "time": 0.2, "name": "youyan" },
- { "time": 1.7, "name": null },
- { "time": 1.8333, "name": "youyan" }
- ]
- },
- "zuiba1": {
- "attachment": [
- { "time": 0, "name": "zuiba1" },
- { "time": 0.2, "name": null }
- ]
- },
- "zuiba2": {
- "attachment": [
- { "time": 0, "name": null },
- { "time": 0.2, "name": "zuiba2" }
- ]
- },
- "zuoshou": {
- "attachment": [
- { "time": 0.2, "name": null }
- ]
- },
- "zuoshou1": {
- "attachment": [
- { "time": 0.2, "name": "zuoshou1" }
- ]
- },
- "zuoshou2": {
- "attachment": [
- { "time": 0, "name": null },
- { "time": 0.2, "name": "zuoshou2" }
- ]
- },
- "zuoyan": {
- "attachment": [
- { "time": 0.0667, "name": null },
- { "time": 0.2, "name": "zuoyan" },
- { "time": 1.7, "name": null },
- { "time": 1.8333, "name": "zuoyan" }
- ]
- }
- },
- "bones": {
- "root": {
- "rotate": [
- { "time": 0, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 0.65, "y": 0.65 }
- ]
- },
- "bone": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.3333, "angle": 0, "curve": "stepped" },
- { "time": 1.5333, "angle": 0, "curve": "stepped" },
- { "time": 1.9333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.1667, "x": 0, "y": -1.09 },
- { "time": 0.3333, "x": 4.63, "y": 0, "curve": "stepped" },
- { "time": 1.5333, "x": 4.63, "y": 0 },
- { "time": 1.9333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9333, "x": 1, "y": 1 }
- ]
- },
- "bone3": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.5333, "angle": 0, "curve": "stepped" },
- { "time": 0.9, "angle": 0, "curve": "stepped" },
- { "time": 1.6667, "angle": 0 },
- { "time": 2.5333, "angle": 8.76 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.5333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.5333, "x": 1, "y": 1 }
- ]
- },
- "bone4": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": 12.76 },
- { "time": 0.5333, "angle": 0 },
- { "time": 0.9, "angle": 12.76 },
- { "time": 1.6667, "angle": 0 },
- { "time": 2.5333, "angle": 4.73 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.5333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.5333, "x": 1, "y": 1 }
- ]
- },
- "bone5": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": 9.69 },
- { "time": 0.5333, "angle": 0 },
- { "time": 0.9, "angle": 9.69 },
- { "time": 1.6667, "angle": 0 },
- { "time": 2.5333, "angle": 1.65 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.5333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.5333, "x": 1, "y": 1 }
- ]
- },
- "bone6": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.5333, "angle": 0, "curve": "stepped" },
- { "time": 0.9, "angle": 0, "curve": "stepped" },
- { "time": 1.6667, "angle": 0 },
- { "time": 2.5333, "angle": -8.03 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.5333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.5333, "x": 1, "y": 1 }
- ]
- },
- "bone7": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": -7.49 },
- { "time": 0.4, "angle": 0, "curve": "stepped" },
- { "time": 0.6333, "angle": 0, "curve": "stepped" },
- { "time": 1.8, "angle": 0, "curve": "stepped" },
- { "time": 2.5333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.5333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.5333, "x": 1, "y": 1 }
- ]
- },
- "bone8": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": -14.4 },
- { "time": 0.4, "angle": 0 },
- { "time": 0.6333, "angle": 1.75 },
- { "time": 0.9667, "angle": -0.23 },
- { "time": 1.8, "angle": 4.91 },
- { "time": 2.5333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.5333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.5333, "x": 1, "y": 1 }
- ]
- },
- "bone9": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.4, "angle": 0 },
- { "time": 0.6333, "angle": 1.75 },
- { "time": 0.9667, "angle": -0.23 },
- { "time": 1.8, "angle": 4.91 },
- { "time": 2.5333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.5333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.5333, "x": 1, "y": 1 }
- ]
- },
- "bone10": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.4, "angle": 0 },
- { "time": 0.6333, "angle": 1.75 },
- { "time": 0.9667, "angle": -0.23 },
- { "time": 1.8, "angle": 4.91 },
- { "time": 2.5333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.5333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.5333, "x": 1, "y": 1 }
- ]
- },
- "bone11": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.4, "angle": 0 },
- { "time": 0.6333, "angle": 1.75 },
- { "time": 0.9667, "angle": -0.23 },
- { "time": 1.8, "angle": 4.91 },
- { "time": 2.5333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.5333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.5333, "x": 1, "y": 1 }
- ]
- },
- "bone12": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.4, "angle": 0 },
- { "time": 0.6333, "angle": 1.75 },
- { "time": 0.9667, "angle": -0.23 },
- { "time": 1.8, "angle": 4.91 },
- { "time": 2.5333, "angle": 0 }
- ]
- },
- "bone13": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": 10.05 },
- { "time": 0.6333, "angle": -1.12 },
- { "time": 0.9667, "angle": 0.12 },
- { "time": 1.1667, "angle": -2.58 },
- { "time": 1.6333, "angle": -1.12 },
- { "time": 2.5333, "angle": 2.15 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.6333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.6333, "x": 1, "y": 1 }
- ]
- },
- "bone14": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": 2.23 },
- { "time": 0.6333, "angle": -1.82 },
- { "time": 0.9667, "angle": -1.14 },
- { "time": 1.1667, "angle": -4.18 },
- { "time": 1.6333, "angle": -1.82 },
- { "time": 2.5333, "angle": 2.29 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.6333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.6333, "x": 1, "y": 1 }
- ]
- },
- "bone15": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": 2.23 },
- { "time": 0.5, "angle": -7.73 },
- { "time": 0.6333, "angle": -9.19 },
- { "time": 0.9667, "angle": -8.73 },
- { "time": 1.1667, "angle": -11.9 },
- { "time": 1.6333, "angle": -9.19 },
- { "time": 2.5333, "angle": -5.43 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.6333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.6333, "x": 1, "y": 1 }
- ]
- },
- "bone16": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": 2.23 },
- { "time": 0.5, "angle": -7.73 },
- { "time": 0.6333, "angle": -1.38 },
- { "time": 0.9667, "angle": 8.14 },
- { "time": 1.1667, "angle": 10.4 },
- { "time": 1.6333, "angle": -1.38 },
- { "time": 2.5333, "angle": 16.87 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.6333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.6333, "x": 1, "y": 1 }
- ]
- },
- "bone17": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": 2.23 },
- { "time": 0.5, "angle": -7.73 },
- { "time": 0.6333, "angle": -10.12 },
- { "time": 0.9667, "angle": -10.74 },
- { "time": 1.1667, "angle": -14.56 },
- { "time": 1.6333, "angle": -10.12 },
- { "time": 2.5333, "angle": -8.1 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.6333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.6333, "x": 1, "y": 1 }
- ]
- },
- "bone22": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.2, "angle": 0 },
- { "time": 0.3333, "angle": -1.74, "curve": "stepped" },
- {
- "time": 0.6333,
- "angle": -1.74,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.7667,
- "angle": -1.31,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 0.9667, "angle": -2.71, "curve": "stepped" },
- {
- "time": 1.5333,
- "angle": -2.71,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 1.9333, "angle": 0.34, "curve": "stepped" },
- { "time": 2.5333, "angle": 0.34 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.2, "x": -1.49, "y": 0.09 },
- { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
- {
- "time": 0.6333,
- "x": 0,
- "y": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.7667,
- "x": 0.67,
- "y": -0.06,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.5333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.5333, "x": 1, "y": 1 }
- ]
- },
- "bone24": {
- "rotate": [
- { "time": 0, "angle": 9.89 },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.2, "angle": 0, "curve": "stepped" },
- { "time": 0.2333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.2333, "x": 8.56, "y": -54.47 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.2333, "x": 1, "y": 1 }
- ]
- },
- "bone25": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.2, "angle": 0, "curve": "stepped" },
- { "time": 0.2333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.2333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.2333, "x": 1, "y": 1 }
- ]
- },
- "bone26": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.2, "angle": 0, "curve": "stepped" },
- { "time": 0.2333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.2333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.2333, "x": 1, "y": 1 }
- ]
- },
- "bone27": {
- "rotate": [
- { "time": 0, "angle": -12.94 },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.2, "angle": 0, "curve": "stepped" },
- { "time": 0.2333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.2333, "x": -4.15, "y": 50.76 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.2333, "x": 1, "y": 1 }
- ]
- },
- "bone30": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- {
- "time": 0.2,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 0.3333, "angle": 2.26, "curve": "stepped" },
- { "time": 0.6333, "angle": 2.26, "curve": "stepped" },
- {
- "time": 0.7667,
- "angle": 2.26,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 0.9667, "angle": 0.18, "curve": "stepped" },
- {
- "time": 1.5333,
- "angle": 0.18,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 1.9333, "angle": 0.1 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- {
- "time": 0.2,
- "x": -1.07,
- "y": -0.02,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.9333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9333, "x": 1, "y": 1 }
- ]
- },
- "bone31": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.0667, "angle": 0, "curve": "stepped" },
- { "time": 0.2, "angle": 0, "curve": "stepped" },
- { "time": 0.3, "angle": 0, "curve": "stepped" },
- { "time": 1.6, "angle": 0, "curve": "stepped" },
- { "time": 1.7, "angle": 0, "curve": "stepped" },
- { "time": 1.8333, "angle": 0, "curve": "stepped" },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.0667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.6, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1 },
- { "time": 0.0667, "x": 0.331, "y": 1, "curve": "stepped" },
- { "time": 0.2, "x": 0.331, "y": 1 },
- { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.6, "x": 1, "y": 1 },
- { "time": 1.7, "x": 0.331, "y": 1, "curve": "stepped" },
- { "time": 1.8333, "x": 0.331, "y": 1 },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone32": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.0667, "angle": 0, "curve": "stepped" },
- { "time": 0.2, "angle": 0, "curve": "stepped" },
- { "time": 0.3, "angle": 0, "curve": "stepped" },
- { "time": 1.6, "angle": 0, "curve": "stepped" },
- { "time": 1.7, "angle": 0, "curve": "stepped" },
- { "time": 1.8333, "angle": 0, "curve": "stepped" },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.0667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.6, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1 },
- { "time": 0.0667, "x": 0.315, "y": 1, "curve": "stepped" },
- { "time": 0.2, "x": 0.315, "y": 1 },
- { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.6, "x": 1, "y": 1 },
- { "time": 1.7, "x": 0.315, "y": 1, "curve": "stepped" },
- { "time": 1.8333, "x": 0.315, "y": 1 },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone33": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.0667, "angle": 0, "curve": "stepped" },
- { "time": 0.2, "angle": 0, "curve": "stepped" },
- { "time": 0.3, "angle": 0, "curve": "stepped" },
- { "time": 1.6, "angle": 0, "curve": "stepped" },
- { "time": 1.7, "angle": 0, "curve": "stepped" },
- { "time": 1.8333, "angle": 0, "curve": "stepped" },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.0667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.6, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.0667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone34": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.0667, "angle": 0, "curve": "stepped" },
- { "time": 0.2, "angle": 0, "curve": "stepped" },
- { "time": 0.3, "angle": 0, "curve": "stepped" },
- { "time": 1.6, "angle": 0, "curve": "stepped" },
- { "time": 1.7, "angle": 0, "curve": "stepped" },
- { "time": 1.8333, "angle": 0, "curve": "stepped" },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.0667, "x": -0.99, "y": 0, "curve": "stepped" },
- { "time": 0.2, "x": -0.99, "y": 0 },
- { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.6, "x": 0, "y": 0 },
- { "time": 1.7, "x": -0.99, "y": 0, "curve": "stepped" },
- { "time": 1.8333, "x": -0.99, "y": 0 },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.0667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone36": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": -9.27 },
- { "time": 0.3333, "angle": -7.96, "curve": "stepped" },
- { "time": 1.5333, "angle": -7.96 },
- { "time": 1.9333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.9333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9333, "x": 1, "y": 1 }
- ]
- },
- "bone37": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": 16.41 },
- { "time": 0.3333, "angle": 0, "curve": "stepped" },
- { "time": 1.5333, "angle": 0, "curve": "stepped" },
- { "time": 1.9333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.9333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9333, "x": 1, "y": 1 }
- ]
- },
- "bone38": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": -9.96 },
- { "time": 0.3333, "angle": 7.26, "curve": "stepped" },
- { "time": 1.5333, "angle": 7.26 },
- { "time": 1.9333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.9333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9333, "x": 1, "y": 1 }
- ]
- },
- "bone39": {
- "rotate": [
- { "time": 0, "angle": 0 },
- {
- "time": 0.1667,
- "angle": -7.79,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 0.3667, "angle": -10.76, "curve": "stepped" },
- { "time": 1.5333, "angle": -10.76 },
- { "time": 1.7, "angle": -10.48 },
- { "time": 1.9333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.9333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9333, "x": 1, "y": 1 }
- ]
- },
- "bone40": {
- "rotate": [
- { "time": 0, "angle": 0 },
- {
- "time": 0.1667,
- "angle": 13.97,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 0.3667, "angle": 35.99, "curve": "stepped" },
- { "time": 1.5333, "angle": 35.99 },
- { "time": 1.7, "angle": 28.99 },
- { "time": 1.9333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5333, "x": 0, "y": 0 },
- { "time": 1.7, "x": -1.99, "y": -0.99 },
- { "time": 1.9333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9333, "x": 1, "y": 1 }
- ]
- },
- "bone41": {
- "rotate": [
- { "time": 0, "angle": 0 },
- {
- "time": 0.1667,
- "angle": -11.01,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 0.3667, "angle": -14.71, "curve": "stepped" },
- { "time": 1.5333, "angle": -14.71 },
- { "time": 1.7, "angle": -7.35 },
- { "time": 1.9333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.9333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9333, "x": 1, "y": 1 }
- ]
- },
- "bone43": {
- "rotate": [
- { "time": 0, "angle": 0 },
- {
- "time": 0.1667,
- "angle": 1.2,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 0.4, "angle": 0, "curve": "stepped" },
- { "time": 0.6333, "angle": 0, "curve": "stepped" },
- { "time": 0.7667, "angle": 0 },
- { "time": 0.9667, "angle": -1.89 },
- { "time": 1.5333, "angle": 0 },
- { "time": 1.9333, "angle": 1.47 },
- { "time": 2.5333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.5333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.5333, "x": 1, "y": 1 }
- ]
- },
- "bone44": {
- "rotate": [
- { "time": 0, "angle": 0 },
- {
- "time": 0.1667,
- "angle": 1.2,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 0.4, "angle": -10.93 },
- { "time": 0.6333, "angle": -2.52 },
- { "time": 0.7667, "angle": 0 },
- { "time": 0.9667, "angle": -8.44 },
- { "time": 1.5333, "angle": 0 },
- { "time": 1.9333, "angle": -3.79 },
- { "time": 2.5333, "angle": 0 }
- ]
- },
- "bone45": {
- "rotate": [
- { "time": 0, "angle": 0 },
- {
- "time": 0.1667,
- "angle": 1.2,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 0.4, "angle": -10.93 },
- { "time": 0.6333, "angle": -2.52 },
- { "time": 0.7667, "angle": 0, "curve": "stepped" },
- { "time": 0.9667, "angle": 0, "curve": "stepped" },
- { "time": 1.5333, "angle": 0, "curve": "stepped" },
- { "time": 1.9333, "angle": 0, "curve": "stepped" },
- { "time": 2.5333, "angle": 0 }
- ]
- },
- "bone46": {
- "rotate": [
- { "time": 0, "angle": 0 },
- {
- "time": 0.1667,
- "angle": -1.62,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 0.4, "angle": 0, "curve": "stepped" },
- { "time": 0.6333, "angle": 0, "curve": "stepped" },
- { "time": 0.7667, "angle": 0, "curve": "stepped" },
- { "time": 0.9667, "angle": 0, "curve": "stepped" },
- { "time": 1.5333, "angle": 0 },
- { "time": 1.9333, "angle": 2.17 },
- { "time": 2.5333, "angle": 0 }
- ]
- },
- "bone47": {
- "rotate": [
- { "time": 0, "angle": 0 },
- {
- "time": 0.1667,
- "angle": -5.11,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 0.4, "angle": 8.88 },
- { "time": 0.6333, "angle": 2.05 },
- { "time": 0.7667, "angle": 0 },
- { "time": 0.9667, "angle": -8.14 },
- { "time": 1.5333, "angle": 0 },
- { "time": 1.9333, "angle": 16.49 },
- { "time": 2.5333, "angle": 0 }
- ]
- },
- "bone48": {
- "rotate": [
- { "time": 0, "angle": 0 },
- {
- "time": 0.1667,
- "angle": -5.11,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 0.4, "angle": 3.97 },
- { "time": 0.6333, "angle": 0.92 },
- { "time": 0.7667, "angle": 0 },
- { "time": 0.9667, "angle": -10.94 },
- { "time": 1.5333, "angle": 0 },
- { "time": 1.9333, "angle": 5.17 },
- { "time": 2.5333, "angle": 0 }
- ]
- },
- "bone49": {
- "rotate": [
- { "time": 0, "angle": 0 },
- {
- "time": 0.1667,
- "angle": -5.11,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 0.4, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4, "x": 1, "y": 1 }
- ]
- },
- "bone54": {
- "rotate": [
- { "time": 0.2, "angle": 9.12 },
- { "time": 0.3333, "angle": 5.34 },
- { "time": 0.4667, "angle": 12.11, "curve": "stepped" },
- { "time": 0.7667, "angle": 12.11 },
- { "time": 0.9667, "angle": -24.63 },
- { "time": 1.0333, "angle": -28.41, "curve": "stepped" },
- { "time": 1.5333, "angle": -28.41 },
- { "time": 1.8333, "angle": 7.83 }
- ],
- "translate": [
- { "time": 0.2, "x": 2.29, "y": -65.1, "curve": "stepped" },
- { "time": 0.3333, "x": 2.29, "y": -65.1, "curve": "stepped" },
- { "time": 0.4667, "x": 2.29, "y": -65.1, "curve": "stepped" },
- { "time": 0.7667, "x": 2.29, "y": -65.1, "curve": "stepped" },
- { "time": 0.9667, "x": 2.29, "y": -65.1, "curve": "stepped" },
- { "time": 1.5333, "x": 2.29, "y": -65.1, "curve": "stepped" },
- { "time": 1.8333, "x": 2.29, "y": -65.1 }
- ],
- "scale": [
- { "time": 0.2, "x": 1, "y": 1 },
- { "time": 0.4667, "x": 0.8, "y": 1, "curve": "stepped" },
- { "time": 0.7667, "x": 0.8, "y": 1 },
- { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5333, "x": 1, "y": 1 },
- { "time": 1.8333, "x": 0.8, "y": 1 }
- ]
- },
- "bone51": {
- "rotate": [
- { "time": 0.2, "angle": -7.63 },
- { "time": 0.3333, "angle": 11.67 },
- { "time": 0.4667, "angle": 20.29, "curve": "stepped" },
- { "time": 0.7667, "angle": 20.29 },
- { "time": 0.9667, "angle": -20.06 },
- { "time": 1.0333, "angle": -24.18, "curve": "stepped" },
- { "time": 1.5333, "angle": -24.18 },
- { "time": 1.8333, "angle": 25.55 }
- ],
- "translate": [
- { "time": 0.2, "x": -2.9, "y": 74.94, "curve": "stepped" },
- { "time": 0.3333, "x": -2.9, "y": 74.94, "curve": "stepped" },
- { "time": 0.4667, "x": -2.9, "y": 74.94, "curve": "stepped" },
- { "time": 0.7667, "x": -2.9, "y": 74.94, "curve": "stepped" },
- { "time": 0.9667, "x": -2.9, "y": 74.94, "curve": "stepped" },
- { "time": 1.5333, "x": -2.9, "y": 74.94, "curve": "stepped" },
- { "time": 1.8333, "x": -2.9, "y": 74.94 }
- ],
- "scale": [
- { "time": 0.3333, "x": 0.9, "y": 1, "curve": "stepped" },
- { "time": 0.4667, "x": 0.9, "y": 1, "curve": "stepped" },
- { "time": 0.7667, "x": 0.9, "y": 1 },
- { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5333, "x": 1, "y": 1 },
- { "time": 1.8333, "x": 0.8, "y": 1 }
- ]
- },
- "bone55": {
- "rotate": [
- { "time": 0.2, "angle": -60.62 },
- { "time": 0.3333, "angle": 3.58 },
- { "time": 0.4667, "angle": 5.75, "curve": "stepped" },
- { "time": 0.7667, "angle": 5.75 },
- { "time": 0.9667, "angle": 32.77, "curve": "stepped" },
- { "time": 1.5333, "angle": 32.77 },
- { "time": 1.8333, "angle": 27.11 }
- ],
- "translate": [
- { "time": 0.3333, "x": 0.69, "y": 0.14, "curve": "stepped" },
- { "time": 0.4667, "x": 0.69, "y": 0.14, "curve": "stepped" },
- { "time": 0.7667, "x": 0.69, "y": 0.14 },
- { "time": 0.9667, "x": 1.37, "y": 1.08, "curve": "stepped" },
- { "time": 1.5333, "x": 1.37, "y": 1.08, "curve": "stepped" },
- { "time": 1.8333, "x": 1.37, "y": 1.08 }
- ],
- "scale": [
- { "time": 0.2, "x": 0.8, "y": 1 },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.9667, "x": 1, "y": 1 }
- ]
- },
- "bone52": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.2, "angle": 63.57 },
- { "time": 0.3333, "angle": -16.07 },
- { "time": 0.4667, "angle": -18.69, "curve": "stepped" },
- { "time": 0.6333, "angle": -18.69, "curve": "stepped" },
- { "time": 0.7667, "angle": -18.69 },
- { "time": 0.9667, "angle": -6.51, "curve": "stepped" },
- { "time": 1.5333, "angle": -6.51 },
- { "time": 1.8333, "angle": -41.13 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.2, "x": 0.8, "y": 1 },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8333, "x": 1, "y": 1 }
- ]
- },
- "bone53": {
- "scale": [
- { "time": 0.2333, "x": 1, "y": 1 },
- { "time": 0.3333, "x": 1.1, "y": 1.1 },
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8667, "x": 1, "y": 1 },
- { "time": 0.9667, "x": 1.1, "y": 1.1 },
- { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.6667, "x": 1, "y": 1 },
- { "time": 1.8, "x": 1.1, "y": 1.1 }
- ]
- },
- "bone56": {
- "scale": [
- { "time": 0.2333, "x": 1, "y": 1 },
- { "time": 0.3333, "x": 1.1, "y": 1.1 },
- { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.6667, "x": 1, "y": 1 },
- { "time": 1.8, "x": 1.1, "y": 1.1 },
- { "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.5333, "x": 1, "y": 1 }
- ]
- },
- "bone57": {
- "rotate": [
- { "time": 0, "angle": 0 },
- {
- "time": 0.1667,
- "angle": 3.19,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 0.3667, "angle": -12.27, "curve": "stepped" },
- { "time": 1.5333, "angle": -12.27 },
- { "time": 1.7, "angle": -6.13 },
- { "time": 1.9333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.9333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9333, "x": 1, "y": 1 }
- ]
- },
- "xin2": {
- "translate": [
- { "time": 0.4333, "x": -276.03, "y": -29.38 }
- ],
- "scale": [
- { "time": 0.4333, "x": 1, "y": 1 },
- { "time": 0.7333, "x": 1.5, "y": 1.5 }
- ]
- },
- "xin5": {
- "translate": [
- { "time": 1.7333, "x": -219.06, "y": -19.79 }
- ],
- "scale": [
- { "time": 1.7333, "x": 0.3, "y": 0.3 },
- { "time": 1.8667, "x": 0.655, "y": 0.654 },
- { "time": 2.2333, "x": 1.153, "y": 1.15 }
- ]
- },
- "xin6": {
- "translate": [
- { "time": 1.7333, "x": -219.65, "y": -20.9 }
- ],
- "scale": [
- { "time": 1.7333, "x": 0.5, "y": 0.5 },
- { "time": 2.4, "x": 1.1, "y": 1.1 }
- ]
- },
- "xin3": {
- "translate": [
- { "time": 1.0667, "x": -291.53, "y": -25.01 }
- ],
- "scale": [
- { "time": 1.0667, "x": 1, "y": 1 },
- { "time": 1.5667, "x": 1.8, "y": 1.8 }
- ]
- }
- },
- "deform": {
- "default": {
- "chenyi": {
- "chenyi": [
- { "time": 0 },
- {
- "time": 0.2,
- "offset": 72,
- "vertices": [ -1.95274, 0.031, -1.95129, -0.0813, 0, 0, 0, 0, -1.95129, -0.0813, -1.95266, -0.03985 ]
- },
- {
- "time": 0.4667,
- "offset": 72,
- "vertices": [ 0.67875, -3.24884, 0.95798, -3.11767, 0, 0, 0, 0, 0.95798, -3.11767, 0.89128, -3.1373 ],
- "curve": "stepped"
- },
- {
- "time": 0.6333,
- "offset": 72,
- "vertices": [ 0.67875, -3.24884, 0.95798, -3.11767, 0, 0, 0, 0, 0.95798, -3.11767, 0.89128, -3.1373 ]
- },
- {
- "time": 0.7667,
- "offset": 72,
- "vertices": [ 1.38647, -2.61829, 1.58079, -2.43323, 0, 0, 0, 0, 1.58079, -2.43323, 1.52852, -2.46624 ]
- },
- {
- "time": 0.9667,
- "offset": 72,
- "vertices": [ 0.88543, 0.01653, 0.82171, 0.1514, 0, 0, 0, 0, 0.82171, 0.1514, 0.82455, 0.13393 ],
- "curve": "stepped"
- },
- {
- "time": 1.5333,
- "offset": 72,
- "vertices": [ 0.88543, 0.01653, 0.82171, 0.1514, 0, 0, 0, 0, 0.82171, 0.1514, 0.82455, 0.13393 ]
- },
- { "time": 1.9333 }
- ]
- },
- "waitao3": {
- "waitao3": [
- { "time": 0 },
- {
- "time": 0.1667,
- "vertices": [ -9.66899, 2.60936, -1.09779, -5.18495, 0, 0, 0, 0, 2.06051, -0.76845, 6.2068, 5.1765, -0.29555, 9.46632, -0.08871, 9.11586 ]
- },
- {
- "time": 0.5,
- "vertices": [ -10.19257, -0.34621, -4.56851, -2.50804, 0, 0, 0, 0, 1.07668, 0.25756, 0.48555, 3.50027, -1.63874, -4.80267, 1.02511, -1.11645 ],
- "curve": "stepped"
- },
- {
- "time": 0.7667,
- "vertices": [ -10.19257, -0.34621, -4.56851, -2.50804, 0, 0, 0, 0, 1.07668, 0.25756, 0.48555, 3.50027, -1.63874, -4.80267, 1.02511, -1.11645 ]
- },
- {
- "time": 0.9667,
- "vertices": [ -10.19257, -0.34621, -4.56851, -2.50804, 0, 0, 0, 0, 2.63575, 0.49766, 2.57644, -2.00054, 0.24247, -1.65113, 1.82135, 0.64623 ]
- },
- {
- "time": 1.1667,
- "vertices": [ -10.19257, -0.34621, -4.56851, -2.50804, 0, 0, 0, 0, 1.07668, 0.25756, 0.48555, 3.50027, -1.63874, -4.80267, 1.02511, -1.11645 ]
- },
- {
- "time": 2.5333,
- "vertices": [ -10.19257, -0.34621, -4.56851, -2.50804, 0, 0, 0, 0, 2.43801, 1.82309, 2.43679, 3.6364, -2.02067, 3.01369, -1.76187, 6.04188 ]
- }
- ]
- }
- }
- }
- },
- "walk1": {
- "slots": {
- "biyan": {
- "attachment": [
- { "time": 1.1, "name": "biyan" },
- { "time": 1.2, "name": null }
- ]
- },
- "youyan": {
- "attachment": [
- { "time": 1.1, "name": null },
- { "time": 1.2, "name": "youyan" }
- ]
- },
- "zuiba2": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "zuoshou2": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "zuoyan": {
- "attachment": [
- { "time": 1.1, "name": null },
- { "time": 1.2, "name": "zuoyan" }
- ]
- }
- },
- "bones": {
- "root": {
- "rotate": [
- { "time": 0, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 0.65, "y": 0.65 }
- ]
- },
- "bone": {
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.1667, "x": 0, "y": 1 },
- { "time": 0.5, "x": 0, "y": 0 },
- { "time": 0.6667, "x": 0, "y": 1 },
- { "time": 1, "x": 0, "y": 0 },
- { "time": 1.1667, "x": 0, "y": 1 },
- { "time": 1.5, "x": 0, "y": 0 },
- { "time": 1.6667, "x": 0, "y": 1 },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone3": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": 5.43 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": 5.43 },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone4": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": 5.43 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": 5.43 },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone5": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": 5.43 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": 5.43 },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone6": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": 5.43 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": 5.43 },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone7": {
- "rotate": [
- {
- "time": 0,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": -7.63,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": -7.63,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone8": {
- "rotate": [
- {
- "time": 0,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": 2.8,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": 2.8,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- {
- "time": 0,
- "x": 0,
- "y": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "x": 0.11,
- "y": -1.54,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "x": 0,
- "y": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "x": 0.11,
- "y": -1.54,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone9": {
- "rotate": [
- {
- "time": 0,
- "angle": 4.97,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": -1.38,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": 4.97,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": -1.38,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": 4.97 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone10": {
- "rotate": [
- {
- "time": 0,
- "angle": 4.97,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": -1.38,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": 4.97,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": -1.38,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": 4.97 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone11": {
- "rotate": [
- {
- "time": 0,
- "angle": 4.97,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": -1.38,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": 4.97,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": -1.38,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": 4.97 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone12": {
- "rotate": [
- {
- "time": 0,
- "angle": 4.97,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": -1.38,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": 4.97,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": -1.38,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": 4.97 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone13": {
- "rotate": [
- {
- "time": 0,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": 18.52,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": 18.52,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- {
- "time": 0,
- "x": 0,
- "y": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "x": 0.68,
- "y": 0.43,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "x": 0,
- "y": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "x": 0.68,
- "y": 0.43,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone14": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.5, "angle": 0, "curve": "stepped" },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone15": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.5, "angle": 0, "curve": "stepped" },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone16": {
- "rotate": [
- {
- "time": 0,
- "angle": -8.69,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": -8.69,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": -8.69 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone17": {
- "rotate": [
- {
- "time": 0,
- "angle": -8.69,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": -8.69,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": -8.69 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone22": {
- "rotate": [
- {
- "time": 0,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": -1.2,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": -1.2,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone24": {
- "rotate": [
- {
- "time": 0,
- "angle": 320.16,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": -3.16,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": 320.16,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": -3.16,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": 320.16 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone25": {
- "rotate": [
- {
- "time": 0,
- "angle": -25.06,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": -11.69,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": -25.06,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": -11.69,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": -25.06 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone26": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.5, "angle": 0, "curve": "stepped" },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone27": {
- "rotate": [
- {
- "time": 0,
- "angle": -314.14,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": 1.34,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": -314.14,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": 1.34,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": -314.14 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone28": {
- "rotate": [
- {
- "time": 0,
- "angle": -14.02,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": -4.8,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": -14.02,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": -4.8,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": -14.02 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone29": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.5, "angle": 0, "curve": "stepped" },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone31": {
- "rotate": [
- { "time": 0, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1 },
- { "time": 1.1, "x": 0.324, "y": 1, "curve": "stepped" },
- { "time": 1.2, "x": 0.324, "y": 1 },
- { "time": 1.3, "x": 1, "y": 1 }
- ]
- },
- "bone32": {
- "rotate": [
- { "time": 0, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1 },
- { "time": 1.1, "x": 0.303, "y": 1, "curve": "stepped" },
- { "time": 1.2, "x": 0.303, "y": 1 },
- { "time": 1.3, "x": 1, "y": 1 }
- ]
- },
- "bone34": {
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0 },
- { "time": 1.1, "x": -1.04, "y": 0, "curve": "stepped" },
- { "time": 1.2, "x": -1.04, "y": 0 },
- { "time": 1.3, "x": 0, "y": 0 }
- ]
- },
- "bone36": {
- "rotate": [
- { "time": 0, "angle": 17.51 },
- { "time": 0.1667, "angle": -18.04 },
- { "time": 0.3333, "angle": -28.11 },
- { "time": 0.5, "angle": -34.16 },
- { "time": 0.6667, "angle": -22.49 },
- { "time": 0.8333, "angle": 0.29 },
- { "time": 1, "angle": 17.51 },
- { "time": 1.1667, "angle": -18.04 },
- { "time": 1.3333, "angle": -28.11 },
- { "time": 1.5, "angle": -34.16 },
- { "time": 1.6667, "angle": -22.49 },
- { "time": 1.8333, "angle": 0.29 },
- { "time": 2, "angle": 17.51 }
- ]
- },
- "bone37": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": 44.43 },
- { "time": 0.3333, "angle": 29.18 },
- { "time": 0.5, "angle": 0 },
- { "time": 0.6667, "angle": 17.06 },
- { "time": 0.8333, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0 },
- { "time": 1.1667, "angle": 44.43 },
- { "time": 1.3333, "angle": 29.18 },
- { "time": 1.5, "angle": 0 },
- { "time": 1.6667, "angle": 17.06 },
- { "time": 1.8333, "angle": 0, "curve": "stepped" },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.1667, "x": -3.63, "y": -0.42 },
- { "time": 0.3333, "x": -1.83, "y": -1 },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0 },
- { "time": 1.1667, "x": -3.63, "y": -0.42 },
- { "time": 1.3333, "x": -1.83, "y": -1 },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ]
- },
- "bone38": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": 6.11 },
- { "time": 0.3333, "angle": 13.69 },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 0.6667, "angle": 0, "curve": "stepped" },
- { "time": 0.8333, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0 },
- { "time": 1.1667, "angle": 6.11 },
- { "time": 1.3333, "angle": 13.69 },
- { "time": 1.5, "angle": 0, "curve": "stepped" },
- { "time": 1.6667, "angle": 0, "curve": "stepped" },
- { "time": 1.8333, "angle": 0, "curve": "stepped" },
- { "time": 2, "angle": 0 }
- ]
- },
- "bone39": {
- "rotate": [
- { "time": 0, "angle": -9.08 },
- { "time": 0.1667, "angle": 3.96 },
- { "time": 0.3333, "angle": 24.65 },
- { "time": 0.5, "angle": 41.51 },
- { "time": 0.6667, "angle": 20.65 },
- { "time": 0.8333, "angle": -11.06 },
- { "time": 1, "angle": -9.08 },
- { "time": 1.1667, "angle": 3.96 },
- { "time": 1.3333, "angle": 24.65 },
- { "time": 1.5, "angle": 41.51 },
- { "time": 1.6667, "angle": 20.65 },
- { "time": 1.8333, "angle": -11.06 },
- { "time": 2, "angle": -9.08 }
- ]
- },
- "bone40": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": 14.04 },
- { "time": 0.3333, "angle": 9.42 },
- { "time": 0.5, "angle": 0 },
- { "time": 0.6667, "angle": 26.45 },
- { "time": 0.8333, "angle": 39.14 },
- { "time": 1, "angle": 0 },
- { "time": 1.1667, "angle": 14.04 },
- { "time": 1.3333, "angle": 9.42 },
- { "time": 1.5, "angle": 0 },
- { "time": 1.6667, "angle": 26.45 },
- { "time": 1.8333, "angle": 39.14 },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0 },
- { "time": 0.6667, "x": -3.75, "y": -1.66 },
- { "time": 0.8333, "x": -2.64, "y": -0.4 },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0 },
- { "time": 1.6667, "x": -3.75, "y": -1.66 },
- { "time": 1.8333, "x": -2.64, "y": -0.4 },
- { "time": 2, "x": 0, "y": 0 }
- ]
- },
- "bone41": {
- "rotate": [
- { "time": 0, "angle": -11.26 },
- { "time": 0.1667, "angle": -22.05 },
- { "time": 0.3333, "angle": -32.46 },
- { "time": 0.5, "angle": 0 },
- { "time": 0.6667, "angle": -14 },
- { "time": 0.8333, "angle": -15.43 },
- { "time": 1, "angle": -11.26 },
- { "time": 1.1667, "angle": -22.05 },
- { "time": 1.3333, "angle": -32.46 },
- { "time": 1.5, "angle": 0 },
- { "time": 1.6667, "angle": -14 },
- { "time": 1.8333, "angle": -15.43 },
- { "time": 2, "angle": 0 }
- ]
- },
- "bone43": {
- "rotate": [
- {
- "time": 0,
- "angle": -4.56,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": -4.56,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": -4.56 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone44": {
- "rotate": [
- {
- "time": 0,
- "angle": -4.56,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": -4.56,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": -4.56 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone45": {
- "rotate": [
- {
- "time": 0,
- "angle": -4.56,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": -4.56,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": -4.56 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone46": {
- "rotate": [
- {
- "time": 0,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": 2.12,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": 2.12,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone47": {
- "rotate": [
- {
- "time": 0,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": -1.26,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": -1.26,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone48": {
- "rotate": [
- {
- "time": 0,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": 6.96,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": 6.96,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone49": {
- "rotate": [
- {
- "time": 0,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": 6.96,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": 6.96,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- }
- },
- "deform": {
- "default": {
- "chenyi": {
- "chenyi": [
- {
- "time": 0,
- "offset": 72,
- "vertices": [ 0.43363, 2.36943, 0.29681, 2.39044, -0.16502, 2.0819, 0, 0, -0.81187, 2.83967, -0.75151, 2.85627 ]
- },
- { "time": 0.5 },
- {
- "time": 1,
- "offset": 72,
- "vertices": [ 0.43363, 2.36943, 0.29681, 2.39044, -0.16502, 2.0819, 0, 0, -0.81187, 2.83967, -0.75151, 2.85627 ]
- },
- { "time": 1.5 },
- {
- "time": 2,
- "offset": 72,
- "vertices": [ 0.43363, 2.36943, 0.29681, 2.39044, -0.16502, 2.0819, 0, 0, -0.81187, 2.83967, -0.75151, 2.85627 ]
- }
- ]
- },
- "waitao3": {
- "waitao3": [
- { "time": 0 },
- {
- "time": 0.5,
- "vertices": [ -9.71647, 14.35248, -0.47939, -2.18065, -7.08562, -1.6311, -0.02927, -1.39139, 0, 0, 1.47324, 11.47031, 3.50285, 9.53489, -0.32743, 8.31334 ]
- },
- { "time": 1 },
- {
- "time": 1.5,
- "vertices": [ -9.71647, 14.35248, -0.47939, -2.18065, -7.08562, -1.6311, -0.02927, -1.39139, 0, 0, 1.47324, 11.47031, 3.50285, 9.53489, -0.32743, 8.31334 ]
- },
- { "time": 2 }
- ]
- }
- }
- }
- }
- }
- }
|