123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262 |
- {
- "skeleton": {
- "hash": "Y7+ma2w0n2doH29O6svC+slC9Vw",
- "spine": "3.8.99",
- "x": -533,
- "y": -36.75,
- "width": 1152,
- "height": 404.62,
- "images": "./images/",
- "audio": "E:/202412/1220/1Spine/5-猫鼬"
- },
- "bones": [
- { "name": "root" },
- { "name": "bone_down", "parent": "root", "y": -50, "color": "a500ffff" },
- { "name": "bone_right", "parent": "root", "x": -421.03, "y": -50, "color": "1bff01ff" },
- { "name": "bone_up", "parent": "root", "x": 502.13, "y": -50, "color": "fdff00ff" },
- { "name": "bone_right2", "parent": "bone_right", "x": 0.97, "y": 79.84, "color": "1bff01ff" },
- { "name": "bone_right3", "parent": "bone_right2", "length": 40.77, "rotation": 103.83, "x": 0.61, "color": "1bff01ff" },
- { "name": "bone_right4", "parent": "bone_right3", "length": 42.67, "rotation": -16.28, "x": 40.77, "color": "1bff01ff" },
- {
- "name": "bone_right5",
- "parent": "bone_right4",
- "length": 124.24,
- "rotation": 2.17,
- "x": 44.68,
- "y": -4.18,
- "color": "1bff01ff"
- },
- {
- "name": "bone_right6",
- "parent": "bone_right5",
- "length": 20.47,
- "rotation": -30.1,
- "x": 136.98,
- "y": 8.59,
- "color": "1bff01ff"
- },
- {
- "name": "bone_right7",
- "parent": "bone_right5",
- "length": 23.69,
- "rotation": -45.76,
- "x": 137.73,
- "y": -20.03,
- "color": "1bff01ff"
- },
- {
- "name": "bone_right8",
- "parent": "bone_right5",
- "length": 40.27,
- "rotation": 86.81,
- "x": 63.02,
- "y": 64.25,
- "color": "1bff01ff"
- },
- {
- "name": "bone_right9",
- "parent": "bone_right5",
- "length": 27.65,
- "rotation": -82.12,
- "x": 78.24,
- "y": -59.3,
- "color": "1bff01ff"
- },
- { "name": "1e1", "parent": "bone_right5", "x": 51.23, "y": -15.58, "color": "1bff01ff" },
- { "name": "1e2", "parent": "bone_right5", "x": 54.52, "y": -64.29, "color": "1bff01ff" },
- {
- "name": "1bizi",
- "parent": "bone_right5",
- "length": 30.08,
- "rotation": -57.96,
- "x": 25.29,
- "y": -64.43,
- "color": "1bff01ff"
- },
- { "name": "1zui", "parent": "bone_right5", "x": 11.13, "y": -33.44, "color": "1bff01ff" },
- {
- "name": "1shou1",
- "parent": "bone_right4",
- "length": 28.63,
- "rotation": 158.62,
- "x": 28.06,
- "y": 28.02,
- "color": "1bff01ff"
- },
- { "name": "1shou2", "parent": "1shou1", "length": 27.48, "rotation": 36.64, "x": 28.63, "color": "1bff01ff" },
- {
- "name": "1shou3",
- "parent": "bone_right4",
- "length": 30.16,
- "rotation": -130.91,
- "x": 32.86,
- "y": -41.26,
- "color": "1bff01ff"
- },
- { "name": "1shou4", "parent": "1shou3", "length": 28.73, "rotation": 22.24, "x": 30.16, "color": "1bff01ff" },
- {
- "name": "1weiba",
- "parent": "bone_right3",
- "length": 30.46,
- "rotation": 77.32,
- "x": 10.37,
- "y": 31.94,
- "color": "1bff01ff"
- },
- { "name": "1weiba2", "parent": "1weiba", "length": 21.52, "rotation": -26.26, "x": 30.46, "color": "1bff01ff" },
- { "name": "1weiba3", "parent": "1weiba2", "length": 23.93, "rotation": -50.14, "x": 21.52, "color": "1bff01ff" },
- {
- "name": "1tui1",
- "parent": "bone_right2",
- "length": 36.41,
- "rotation": -84.92,
- "x": -28.75,
- "y": 7.64,
- "color": "1bff01ff"
- },
- {
- "name": "1tui2",
- "parent": "bone_right2",
- "length": 38.14,
- "rotation": -96.67,
- "x": 29.68,
- "y": 8.45,
- "color": "1bff01ff"
- },
- { "name": "bone_right10", "parent": "bone_right4", "rotation": -87.55, "x": 29.18, "y": 40.93, "color": "1bff01ff" },
- { "name": "bone_right11", "parent": "bone_right3", "rotation": -103.83, "x": 2.18, "y": -48.56, "color": "1bff01ff" },
- { "name": "gun1", "parent": "bone_right", "x": 29.59, "y": 148.5, "color": "1bff01ff" },
- { "name": "ik1", "parent": "gun1", "x": 54.48, "y": -28.55, "color": "ff3f00ff" },
- { "name": "1wuqi", "parent": "ik1", "rotation": 18.6, "x": 13.07, "y": 86.56, "color": "1bff01ff" },
- { "name": "1wuqi2", "parent": "bone_right", "x": 124.23, "y": 194.33, "color": "1bff01ff" },
- { "name": "bone_down2", "parent": "bone_down", "x": -0.42, "y": 80.15, "color": "a500ffff" },
- { "name": "bone_down3", "parent": "bone_down2", "length": 37.47, "rotation": 89.36, "color": "a500ffff" },
- { "name": "bone_down4", "parent": "bone_down3", "length": 46.74, "rotation": 1.68, "x": 37.47, "color": "a500ffff" },
- { "name": "bone_down5", "parent": "bone_down4", "length": 118.73, "rotation": -1.84, "x": 46.74, "color": "a500ffff" },
- {
- "name": "bone_down6",
- "parent": "bone_down5",
- "length": 21.09,
- "rotation": 4.25,
- "x": 124.62,
- "y": 0.93,
- "color": "a500ffff"
- },
- { "name": "bone_down7", "parent": "bone_down6", "length": 19.37, "rotation": -3.43, "x": 21.09, "color": "a500ffff" },
- {
- "name": "2er1",
- "parent": "bone_down5",
- "length": 46.74,
- "rotation": 83.05,
- "x": 61.39,
- "y": 65.29,
- "color": "a500ffff"
- },
- {
- "name": "2er2",
- "parent": "bone_down5",
- "length": 48.05,
- "rotation": -81.13,
- "x": 63.2,
- "y": -62.26,
- "color": "a500ffff"
- },
- {
- "name": "2shou2",
- "parent": "bone_down4",
- "length": 37.1,
- "rotation": 151.24,
- "x": 39.01,
- "y": 38.46,
- "color": "a500ffff"
- },
- { "name": "2shou3", "parent": "2shou2", "length": 39.58, "rotation": 3.89, "x": 37.1, "color": "a500ffff" },
- {
- "name": "2shou1",
- "parent": "bone_down4",
- "length": 46.26,
- "rotation": -167.88,
- "x": 29.47,
- "y": -47.03,
- "color": "a500ffff"
- },
- {
- "name": "2tui1",
- "parent": "bone_down2",
- "length": 40.07,
- "rotation": -86.39,
- "x": -29.71,
- "y": 8.56,
- "color": "a500ffff"
- },
- {
- "name": "2tui2",
- "parent": "bone_down2",
- "length": 36.82,
- "rotation": -95.91,
- "x": 31.33,
- "y": 5.62,
- "color": "a500ffff"
- },
- { "name": "2e1", "parent": "bone_down5", "x": 50, "y": 36.62, "color": "a500ffff" },
- { "name": "2e2", "parent": "bone_down5", "x": 49.81, "y": -35.86, "color": "a500ffff" },
- { "name": "2zui", "parent": "bone_down5", "x": 12.94, "y": 29.02, "color": "a500ffff" },
- { "name": "bone_down8", "parent": "bone_down4", "x": 32.4, "y": 48.67, "color": "a500ffff" },
- { "name": "bone_down9", "parent": "bone_down3", "x": 8.53, "y": -49.27, "color": "a500ffff" },
- { "name": "gun2", "parent": "bone_down", "x": 56.24, "y": 150.03, "color": "a500ffff" },
- { "name": "ik2", "parent": "gun2", "x": 0.76, "y": -47.13, "color": "ff3f00ff" },
- { "name": "2wuqi", "parent": "ik2", "rotation": -176.7, "x": 55.5, "y": 15.59, "color": "a500ffff" },
- { "name": "bone_up2", "parent": "bone_up", "x": 0.58, "y": 84.21, "color": "fdff00ff" },
- { "name": "bone_up3", "parent": "bone_up2", "length": 39.13, "rotation": 88.51, "color": "fdff00ff" },
- { "name": "bone_up4", "parent": "bone_up3", "length": 41.66, "rotation": 1.49, "x": 39.13, "color": "fdff00ff" },
- { "name": "bone_up5", "parent": "bone_up4", "length": 124.46, "x": 41.66, "color": "fdff00ff" },
- { "name": "bone_up6", "parent": "bone_up5", "length": 20.38, "rotation": 4.29, "x": 124.46, "color": "fdff00ff" },
- { "name": "bone_up7", "parent": "bone_up6", "length": 23.37, "rotation": -3.04, "x": 20.38, "color": "fdff00ff" },
- {
- "name": "bone_up8",
- "parent": "bone_up5",
- "length": 34.68,
- "rotation": 84.96,
- "x": 66.04,
- "y": 76.71,
- "color": "fdff00ff"
- },
- {
- "name": "bone_up9",
- "parent": "bone_up5",
- "length": 39.63,
- "rotation": -89.27,
- "x": 70.1,
- "y": -68.58,
- "color": "fdff00ff"
- },
- {
- "name": "3shou1",
- "parent": "bone_up4",
- "length": 41.13,
- "rotation": -154.38,
- "x": 38.61,
- "y": -36.07,
- "color": "fdff00ff"
- },
- { "name": "3shou2", "parent": "3shou1", "length": 36.51, "rotation": -4.41, "x": 41.13, "color": "fdff00ff" },
- {
- "name": "3shou3",
- "parent": "bone_up4",
- "length": 51.8,
- "rotation": 26.82,
- "x": -7.11,
- "y": 37.59,
- "color": "fdff00ff"
- },
- { "name": "3shou4", "parent": "3shou3", "length": 46.84, "rotation": -30.55, "x": 51.8, "color": "fdff00ff" },
- {
- "name": "3tui1",
- "parent": "bone_up2",
- "length": 35.42,
- "rotation": -81.75,
- "x": -33.02,
- "y": 3.05,
- "color": "fdff00ff"
- },
- {
- "name": "3tui2",
- "parent": "bone_up2",
- "length": 38.32,
- "rotation": -96.09,
- "x": 32,
- "y": 5.08,
- "color": "fdff00ff"
- },
- {
- "name": "3weiba",
- "parent": "bone_up3",
- "length": 20.59,
- "rotation": 80.63,
- "x": -3.11,
- "y": -8.35,
- "color": "fdff00ff"
- },
- { "name": "3weiba2", "parent": "3weiba", "length": 20.39, "rotation": -31.94, "x": 20.59, "color": "fdff00ff" },
- { "name": "3weiba3", "parent": "3weiba2", "length": 18.52, "rotation": -25.24, "x": 20.39, "color": "fdff00ff" },
- { "name": "bone_up10", "parent": "bone_up4", "x": 24.45, "y": -45.62, "color": "fdff00ff" },
- { "name": "bone_up11", "parent": "bone_up3", "x": 5.15, "y": 51.2, "color": "fdff00ff" },
- { "name": "gun3", "parent": "bone_up2", "x": -50.42, "y": 29.57, "color": "fdff00ff" },
- { "name": "ik3", "parent": "gun3", "x": -6.5, "y": 95.36, "color": "ff3f00ff" },
- { "name": "3wuqi", "parent": "ik3", "x": -43.97, "y": 71.49, "color": "fdff00ff" },
- { "name": "2touying", "parent": "bone_down", "x": -0.26, "y": 50.06, "color": "a500ffff" },
- { "name": "1touying", "parent": "bone_right", "x": 2.08, "y": 49.08, "color": "1bff01ff" },
- { "name": "3touying", "parent": "bone_up", "x": 3.53, "y": 46.14, "color": "fdff00ff" },
- { "name": "effect_down", "parent": "2wuqi", "x": -0.47, "y": -96.81, "color": "a500ffff" },
- { "name": "effect_right", "parent": "1wuqi", "x": -10.86, "y": 159.69, "color": "1bff01ff" },
- { "name": "effect_up", "parent": "3wuqi", "x": -1.01, "y": 90.33, "color": "fdff00ff" }
- ],
- "slots": [
- { "name": "1touying", "bone": "1touying", "attachment": "1touying" },
- { "name": "1shou2", "bone": "1shou3", "attachment": "1shou2" },
- { "name": "1wuqi", "bone": "1wuqi", "attachment": "1wuqi" },
- { "name": "1wuqi2", "bone": "1wuqi2" },
- { "name": "1weiba", "bone": "1weiba", "attachment": "1weiba" },
- { "name": "1tui2", "bone": "1tui2", "attachment": "1tui2" },
- { "name": "1tui1", "bone": "1tui1", "attachment": "1tui1" },
- { "name": "1body", "bone": "bone_right2", "attachment": "1body" },
- { "name": "1shou1", "bone": "1shou1", "attachment": "1shou1" },
- { "name": "1daizyy", "bone": "bone_right2", "attachment": "1daizyy" },
- { "name": "1daiz", "bone": "bone_right2", "attachment": "1daiz" },
- { "name": "1er2", "bone": "bone_right9", "attachment": "1er2" },
- { "name": "1er1", "bone": "bone_right8", "attachment": "1er1" },
- { "name": "1tou", "bone": "bone_right5", "attachment": "1tou" },
- { "name": "1zui", "bone": "1zui", "attachment": "1zui" },
- { "name": "1bizi", "bone": "1bizi", "attachment": "1bizi" },
- { "name": "1e2", "bone": "1e2", "attachment": "1e2" },
- { "name": "1mm2", "bone": "bone_right5", "attachment": "1mm2" },
- { "name": "1e1", "bone": "1e1", "attachment": "1e1" },
- { "name": "1mm1", "bone": "bone_right5", "attachment": "1mm1" },
- { "name": "1fa", "bone": "bone_right5", "attachment": "1fa" },
- { "name": "2touying", "bone": "2touying", "attachment": "2touying" },
- { "name": "2er2", "bone": "2er2", "attachment": "2er2" },
- { "name": "2er1", "bone": "2er1", "attachment": "2er1" },
- { "name": "2tui2", "bone": "2tui2", "attachment": "2tui2" },
- { "name": "2tui1", "bone": "2tui1", "attachment": "2tui1" },
- { "name": "2shou2", "bone": "2shou2", "attachment": "2shou2" },
- { "name": "2body", "bone": "bone_down2", "attachment": "2body" },
- { "name": "2daiziyy", "bone": "bone_down2", "attachment": "2daiziyy" },
- { "name": "2daizi", "bone": "bone_down2", "attachment": "2daizi" },
- { "name": "2tou", "bone": "bone_down5", "attachment": "2tou" },
- { "name": "2fa", "bone": "bone_down6", "attachment": "2fa" },
- { "name": "2bizi", "bone": "bone_down5", "attachment": "2bizi" },
- { "name": "2e2", "bone": "2e2", "attachment": "2e2" },
- { "name": "2e1", "bone": "2e1", "attachment": "2e1" },
- { "name": "2mm2", "bone": "bone_down5", "attachment": "2mm2" },
- { "name": "2mm1", "bone": "bone_down5", "attachment": "2mm1" },
- { "name": "2shou1", "bone": "2shou1", "attachment": "2shou1" },
- { "name": "2zui", "bone": "2zui", "attachment": "2zui" },
- { "name": "2wuqi", "bone": "2wuqi", "attachment": "2wuqi" },
- { "name": "3touying", "bone": "3touying", "attachment": "3touying" },
- { "name": "3wuqi", "bone": "3wuqi", "attachment": "3wuqi" },
- { "name": "3shou2", "bone": "3shou3", "attachment": "3shou2" },
- { "name": "3shou1", "bone": "3shou1", "attachment": "3shou1" },
- { "name": "3tui2", "bone": "3tui2", "attachment": "3tui2" },
- { "name": "3tui1", "bone": "3tui1", "attachment": "3tui1" },
- { "name": "3body", "bone": "bone_up2", "attachment": "3body" },
- { "name": "3tou", "bone": "bone_up5", "attachment": "3tou" },
- { "name": "3fa", "bone": "bone_up6", "attachment": "3fa" },
- { "name": "3er2", "bone": "bone_up8", "attachment": "3er2" },
- { "name": "3er1", "bone": "bone_up9", "attachment": "3er1" },
- { "name": "3daizi", "bone": "bone_up2", "attachment": "3daizi" },
- { "name": "3weiba", "bone": "3weiba", "attachment": "3weiba" },
- { "name": "effect_down", "bone": "effect_down" },
- { "name": "effect_right", "bone": "effect_right" },
- { "name": "effect_up", "bone": "effect_up" }
- ],
- "ik": [
- {
- "name": "ik1",
- "bones": [ "1shou3", "1shou4" ],
- "target": "ik1"
- },
- {
- "name": "ik2",
- "order": 1,
- "bones": [ "2shou1" ],
- "target": "ik2"
- },
- {
- "name": "ik3",
- "order": 2,
- "bones": [ "3shou3", "3shou4" ],
- "target": "ik3",
- "bendPositive": false
- }
- ],
- "skins": [
- {
- "name": "default",
- "attachments": {
- "1bizi": {
- "1bizi": { "x": 9.98, "y": -0.12, "rotation": -31.76, "width": 42, "height": 36 }
- },
- "1body": {
- "1body": {
- "type": "mesh",
- "uvs": [ 0.84268, 0.07259, 0.92723, 0.25548, 0.98033, 0.41573, 0.99262, 0.62294, 0.95428, 0.81082, 0.83626, 0.93239, 0.67153, 0.99171, 0.28797, 0.99447, 0.0421, 0.9462, 0, 0.70583, 0.00984, 0.4627, 0.03472, 0.26654, 0.06668, 0.11457, 0.29531, 1.0E-5, 0.57362, 1.0E-5, 0.28848, 0.252, 0.61913, 0.2356, 0.28119, 0.48968, 0.65316, 0.48694, 0.28362, 0.74375, 0.67018, 0.74375 ],
- "triangles": [ 18, 1, 2, 18, 2, 3, 9, 10, 17, 18, 19, 17, 9, 17, 19, 20, 18, 3, 4, 20, 3, 5, 20, 4, 8, 9, 19, 6, 20, 5, 20, 7, 19, 20, 19, 18, 7, 20, 6, 8, 19, 7, 16, 14, 0, 15, 12, 13, 16, 0, 1, 11, 12, 15, 18, 16, 1, 17, 11, 15, 10, 11, 17, 15, 13, 14, 16, 15, 14, 17, 15, 16, 16, 18, 17 ],
- "vertices": [ 2, 6, 39.47, -44.4, 0.72714, 5, 66.21, -53.69, 0.27286, 2, 6, 22.14, -54.37, 0.52798, 5, 46.78, -58.4, 0.47202, 2, 6, 6.86, -60.82, 0.33215, 5, 30.3, -60.3, 0.66785, 2, 6, -13.16, -63.02, 0.14636, 5, 10.46, -56.8, 0.85364, 2, 6, -31.55, -59.62, 0.0502, 5, -6.23, -48.38, 0.9498, 2, 6, -43.88, -47.27, 0.01082, 5, -14.61, -33.07, 0.98918, 1, 5, -15.9, -14.26, 1, 2, 6, -52.46, 12.18, 0.00515, 5, -6.17, 26.4, 0.99485, 2, 6, -48.93, 39.15, 0.06019, 5, 4.78, 51.3, 0.93981, 2, 6, -25.83, 44.74, 0.21817, 5, 28.52, 50.18, 0.78183, 2, 6, -2.22, 44.68, 0.5915, 5, 51.16, 43.51, 0.4085, 2, 6, 16.91, 42.78, 0.88353, 5, 68.99, 36.32, 0.11647, 2, 6, 31.78, 39.93, 0.97603, 5, 82.47, 29.42, 0.02397, 1, 6, 43.95, 15.51, 1, 2, 6, 45.25, -14.8, 0.95629, 5, 80.05, -26.89, 0.04371, 2, 6, 19.5, 15.21, 0.98302, 5, 63.75, 9.13, 0.01698, 2, 6, 22.63, -20.73, 0.80659, 5, 56.68, -26.25, 0.19341, 2, 6, -3.57, 15.01, 0.50335, 5, 41.55, 15.41, 0.49665, 2, 6, -1.57, -25.48, 0.28321, 5, 32.12, -24.02, 0.71679, 2, 6, -28.18, 13.69, 0.0515, 5, 17.56, 21.04, 0.9485, 2, 6, -26.38, -28.4, 0.02136, 5, 7.49, -19.87, 0.97864 ],
- "hull": 15,
- "edges": [ 12, 10, 10, 8, 8, 6, 6, 4, 4, 2, 2, 0, 0, 28, 26, 28, 26, 24, 24, 22, 22, 20, 18, 20, 18, 16, 12, 14, 16, 14 ],
- "width": 109,
- "height": 97
- }
- },
- "1daiz": {
- "1daiz": {
- "type": "mesh",
- "uvs": [ 0.17045, 0.0394, 0.30654, 0.10823, 0.41719, 0.1686, 0.50642, 0.22046, 0.5798, 0.10617, 0.74089, 0.19968, 0.8823, 0.3919, 0.84471, 0.46723, 0.91094, 0.52177, 1, 0.5997, 1, 0.71659, 0.95926, 0.88803, 0.88588, 1, 0.76237, 0.89842, 0.68004, 0.80751, 0.63529, 0.86465, 0.37217, 0.63087, 0.39544, 0.50619, 0.32206, 0.44385, 0.20213, 0.32956, 0.09295, 0.24643, 1.0E-5, 0.19426, 0.06147, 0 ],
- "triangles": [ 7, 5, 6, 8, 9, 10, 5, 3, 4, 7, 3, 5, 7, 14, 3, 17, 3, 14, 16, 17, 14, 15, 16, 14, 10, 13, 8, 8, 13, 14, 8, 14, 7, 11, 13, 10, 12, 13, 11, 20, 22, 0, 21, 22, 20, 19, 0, 1, 20, 0, 19, 18, 1, 2, 19, 1, 18, 17, 18, 2, 17, 2, 3 ],
- "vertices": [ 2, 25, 9.12, 5.44, 0.97257, 26, -86.89, 62.21, 0.02743, 2, 25, 25.32, -0.2, 0.81494, 26, -70.69, 56.56, 0.18506, 2, 25, 38.48, -5.15, 0.62658, 26, -57.53, 51.61, 0.37342, 2, 25, 49.1, -9.41, 0.43541, 26, -46.91, 47.36, 0.56459, 2, 25, 57.84, -0.03, 0.33633, 26, -38.18, 56.73, 0.66367, 2, 25, 77.01, -7.7, 0.24291, 26, -19.01, 49.07, 0.75709, 2, 25, 93.83, -23.46, 0.14443, 26, -2.18, 33.3, 0.85557, 2, 25, 89.36, -29.64, 0.11386, 26, -6.65, 27.13, 0.88614, 2, 25, 97.24, -34.11, 0.04447, 26, 1.23, 22.65, 0.95553, 2, 25, 107.84, -40.5, 0.00879, 26, 11.83, 16.26, 0.99121, 2, 25, 107.84, -50.09, 0.00184, 26, 11.83, 6.68, 0.99816, 1, 26, 6.98, -7.38, 1, 2, 25, 94.26, -73.33, 1.2E-4, 26, -1.75, -16.56, 0.99988, 2, 25, 79.56, -65, 0.03192, 26, -16.45, -8.23, 0.96808, 2, 25, 69.76, -57.54, 0.1187, 26, -26.25, -0.78, 0.8813, 2, 25, 64.44, -62.23, 0.15448, 26, -31.57, -5.46, 0.84552, 2, 25, 33.13, -43.06, 0.36355, 26, -62.88, 13.71, 0.63645, 2, 25, 35.9, -32.84, 0.45104, 26, -60.12, 23.93, 0.54896, 2, 25, 27.16, -27.72, 0.62503, 26, -68.85, 29.04, 0.37497, 2, 25, 12.89, -18.35, 0.85451, 26, -83.12, 38.42, 0.14549, 2, 25, -0.1, -11.54, 0.97972, 26, -96.11, 45.23, 0.02028, 1, 25, -11.16, -7.26, 1, 1, 25, -3.85, 8.67, 1 ],
- "hull": 23,
- "edges": [ 42, 40, 40, 38, 38, 36, 36, 34, 34, 32, 32, 30, 30, 28, 28, 26, 26, 24, 24, 22, 22, 20, 20, 18, 18, 16, 16, 14, 14, 12, 12, 10, 10, 8, 8, 6, 6, 4, 4, 2, 2, 0, 0, 44, 44, 42 ],
- "width": 119,
- "height": 82
- }
- },
- "1daizyy": {
- "1daizyy": {
- "type": "mesh",
- "uvs": [ 0.61176, 0.32719, 0.91932, 0.65837, 1, 0.83245, 1, 1, 0.77363, 1, 0.44665, 0.7815, 0.25887, 0.47155, 0, 0.19557, 0, 0, 0.25887, 0 ],
- "triangles": [ 4, 2, 3, 4, 1, 2, 4, 5, 1, 5, 0, 1, 5, 6, 0, 7, 9, 6, 6, 9, 0, 7, 8, 9 ],
- "vertices": [ 2, 25, 48.78, -22.29, 0.66667, 26, -47.23, 34.48, 0.33333, 2, 25, 73.38, -42.49, 0.33333, 26, -22.63, 14.28, 0.66667, 2, 25, 79.84, -53.11, 0.11111, 26, -16.17, 3.66, 0.88889, 2, 25, 79.84, -63.33, 0.11111, 26, -16.17, -6.56, 0.88889, 2, 25, 61.73, -63.33, 0.33333, 26, -34.28, -6.56, 0.66667, 2, 25, 35.57, -50, 0.66667, 26, -60.44, 6.77, 0.33333, 2, 25, 20.55, -31.09, 0.88889, 26, -75.46, 25.68, 0.11111, 1, 25, -0.16, -14.26, 1, 1, 25, -0.16, -2.33, 1, 2, 25, 20.55, -2.33, 0.88889, 26, -75.46, 54.44, 0.11111 ],
- "hull": 10,
- "edges": [ 14, 16, 14, 12, 12, 10, 6, 8, 10, 8, 16, 18, 18, 0, 0, 2, 6, 4, 2, 4 ],
- "width": 80,
- "height": 61
- }
- },
- "1e1": {
- "1e1": { "x": 1.46, "y": -0.27, "rotation": -89.72, "width": 24, "height": 33 }
- },
- "1e2": {
- "1e2": { "x": -0.08, "y": 0.45, "rotation": -89.72, "width": 16, "height": 24 }
- },
- "1er1": {
- "1er1": { "x": 13.3, "y": -5.49, "rotation": -176.53, "width": 66, "height": 89 }
- },
- "1er2": {
- "1er2": { "x": 11.02, "y": -3.82, "rotation": -7.59, "width": 44, "height": 53 }
- },
- "1fa": {
- "1fa": {
- "type": "mesh",
- "uvs": [ 0.96686, 0.11268, 0.95026, 0.32702, 0.89863, 0.52528, 0.99078, 0.65121, 0.99494, 0.75128, 0.93876, 0.88136, 0.86767, 0.98234, 0.7179, 1, 0.622, 0.87894, 0.49107, 0.79321, 0.31772, 0.76374, 0.11671, 0.75838, 0, 0.71015, 0.07245, 0.54672, 0.14068, 0.37525, 0.22541, 0.21438, 0.31208, 0.08034, 0.41011, 1.0E-5, 0.48746, 0.06989, 0.50242, 0.23845, 0.59995, 0.16336, 0.73826, 0.08578, 0.88018, 0.04555 ],
- "triangles": [ 10, 11, 13, 9, 10, 19, 8, 9, 2, 6, 8, 5, 7, 8, 6, 8, 2, 5, 12, 13, 11, 1, 22, 0, 1, 21, 22, 2, 21, 1, 20, 2, 19, 2, 20, 21, 2, 9, 19, 4, 5, 2, 4, 2, 3, 16, 17, 18, 16, 18, 19, 15, 16, 19, 10, 15, 19, 14, 15, 10, 10, 13, 14 ],
- "vertices": [ 2, 8, 46.63, -35.81, 0.00134, 9, 33.54, -2.46, 0.99866, 1, 9, 24.74, -9.75, 1, 1, 9, 14.58, -14.55, 1, 2, 9, 15.06, -24.28, 0.88889, 7, 130.84, -47.76, 0.11111, 2, 9, 11.6, -28.32, 0.66667, 7, 125.54, -48.1, 0.33333, 2, 9, 3.7, -30.28, 0.33333, 7, 118.62, -43.81, 0.66667, 2, 9, -3.95, -30.33, 0.11111, 7, 113.24, -38.36, 0.88889, 1, 7, 112.25, -26.84, 1, 1, 7, 118.63, -19.42, 1, 1, 7, 123.13, -9.32, 1, 1, 7, 124.62, 4.04, 1, 2, 8, -16, 3.36, 0.11111, 7, 124.83, 19.52, 0.88889, 2, 8, -18.33, 12.41, 0.33333, 7, 127.34, 28.52, 0.66667, 2, 8, -8.04, 11.97, 0.66667, 7, 136.03, 22.98, 0.33333, 2, 8, 2.46, 12.04, 0.88889, 7, 145.15, 17.77, 0.11111, 1, 8, 13.11, 10.72, 1, 2, 8, 22.61, 8.56, 0.99841, 9, -1.56, 33.77, 0.00159, 2, 8, 30.1, 4.2, 0.95958, 9, 6.83, 31.6, 0.04042, 2, 8, 29.92, -2.81, 0.82876, 9, 8.54, 24.8, 0.17124, 2, 8, 22.8, -8.33, 0.59133, 9, 3.17, 17.57, 0.40867, 2, 8, 30.03, -12.79, 0.31728, 9, 11.34, 15.22, 0.68272, 2, 8, 38.96, -19.9, 0.11612, 9, 21.86, 10.79, 0.88388, 2, 8, 46.33, -28.25, 0.0218, 9, 31.21, 4.74, 0.9782 ],
- "hull": 23,
- "edges": [ 24, 22, 22, 20, 20, 18, 18, 16, 16, 14, 12, 14, 12, 10, 10, 8, 8, 6, 6, 4, 4, 2, 2, 0, 0, 44, 44, 42, 42, 40, 40, 38, 38, 36, 36, 34, 34, 32, 32, 30, 30, 28, 28, 26, 26, 24 ],
- "width": 77,
- "height": 53
- }
- },
- "1mm1": {
- "1mm1": { "x": 64.22, "y": -19.79, "rotation": -89.72, "width": 30, "height": 26 }
- },
- "1mm2": {
- "1mm2": { "x": 66.42, "y": -61.28, "rotation": -89.72, "width": 19, "height": 20 }
- },
- "1shou1": {
- "1shou1": {
- "type": "mesh",
- "uvs": [ 0.97933, 0.15936, 0.91258, 0.31866, 0.88847, 0.46936, 0.93669, 0.61144, 0.96211, 0.79873, 0.82647, 0.9279, 0.61636, 0.99139, 0.26847, 0.98278, 0.10314, 0.90422, 0.01033, 0.74922, 0.02411, 0.5447, 0.09969, 0.35741, 0.23403, 0.16797, 0.4028, 1.0E-5, 0.82647, 0 ],
- "triangles": [ 1, 14, 0, 1, 13, 14, 1, 12, 13, 1, 11, 12, 2, 11, 1, 10, 2, 3, 2, 10, 11, 7, 9, 6, 3, 9, 10, 9, 7, 8, 4, 5, 3, 6, 9, 3, 5, 6, 3 ],
- "vertices": [ 2, 17, -15.07, 28.69, 0.00219, 16, -0.59, 14.02, 0.99781, 2, 17, -4.56, 23.22, 0.0967, 16, 11.12, 15.91, 0.9033, 2, 17, 5.78, 19.76, 0.49434, 16, 21.48, 19.3, 0.50566, 2, 17, 16.24, 19.6, 0.85734, 16, 29.96, 25.42, 0.14266, 2, 17, 29.64, 17.73, 0.99033, 16, 41.83, 31.92, 0.00967, 1, 17, 37.36, 9.72, 1, 1, 17, 39.72, -0.51, 1, 1, 17, 35.65, -15.64, 1, 1, 17, 28.48, -21.64, 1, 1, 17, 16.68, -23.24, 1, 2, 17, 2.45, -19.38, 0.91166, 16, 42.16, -14.08, 0.08834, 2, 17, -9.94, -13.07, 0.32742, 16, 28.45, -16.42, 0.67258, 2, 17, -21.9, -4.15, 0.00193, 16, 13.53, -16.4, 0.99807, 1, 16, -0.6, -14.34, 1, 1, 16, -8.3, 3.09, 1 ],
- "hull": 15,
- "edges": [ 12, 10, 10, 8, 8, 6, 6, 4, 4, 2, 2, 0, 0, 28, 26, 28, 26, 24, 24, 22, 22, 20, 18, 20, 18, 16, 12, 14, 16, 14 ],
- "width": 45,
- "height": 72
- }
- },
- "1shou2": {
- "1shou2": {
- "type": "mesh",
- "uvs": [ 0.4495, 0.13588, 0.64395, 0.24022, 0.79083, 0.26851, 0.96008, 0.33814, 1, 0.58019, 0.94076, 0.82224, 0.81622, 0.96353, 0.5708, 1, 0.35641, 0.79903, 0.14484, 0.53709, 0.00282, 0.27182, 0.04796, 0.01658, 0.27178, 0 ],
- "triangles": [ 4, 5, 2, 4, 2, 3, 5, 1, 2, 7, 8, 1, 6, 7, 1, 5, 6, 1, 12, 10, 11, 9, 12, 0, 9, 10, 12, 8, 9, 0, 8, 0, 1 ],
- "vertices": [ 2, 18, 12.45, 16.95, 0.81334, 19, -9.98, 22.39, 0.18666, 2, 18, 26, 21.57, 0.24059, 19, 4.32, 21.53, 0.75941, 2, 18, 34.26, 27.15, 0.03348, 19, 14.08, 23.58, 0.96652, 2, 18, 45.23, 32.05, 1.0E-5, 19, 26.09, 23.96, 0.99999, 1, 19, 33.55, 12.06, 1, 1, 19, 34.82, -2.24, 1, 1, 19, 29.94, -12.76, 1, 2, 18, 52.18, -13.28, 0.03354, 19, 15.35, -20.63, 0.96646, 2, 18, 33.87, -14.82, 0.55994, 19, -2.17, -15.12, 0.44006, 1, 18, 13.31, -13.7, 1, 1, 18, -3.99, -9.24, 1, 1, 18, -11.78, 3.42, 1, 2, 18, -1.53, 14.4, 0.99119, 19, -23.88, 25.32, 0.00881 ],
- "hull": 13,
- "edges": [ 20, 22, 20, 18, 18, 16, 16, 14, 12, 14, 12, 10, 22, 24, 24, 0, 4, 6, 10, 8, 6, 8, 0, 2, 2, 4 ],
- "width": 67,
- "height": 57
- }
- },
- "1tou": {
- "1tou": {
- "type": "mesh",
- "uvs": [ 0.70209, 0.04424, 0.81346, 0.11878, 0.88187, 0.26969, 0.93307, 0.42212, 0.99523, 0.58969, 0.99523, 0.74036, 0.94267, 0.87491, 0.82653, 0.95854, 0.68335, 1, 0.45426, 1, 0.3063, 0.97127, 0.16789, 0.94764, 0.05176, 0.87491, 0, 0.77127, 0, 0.61696, 0.05597, 0.50242, 0.08143, 0.34424, 0.13711, 0.16242, 0.24529, 0.07151, 0.3662, 0, 0.57482, 0 ],
- "triangles": [ 11, 12, 13, 13, 14, 11, 4, 7, 3, 5, 7, 4, 18, 16, 17, 16, 10, 15, 10, 11, 15, 11, 14, 15, 18, 19, 20, 18, 20, 16, 20, 0, 16, 1, 2, 0, 2, 9, 10, 5, 6, 7, 0, 2, 10, 9, 2, 3, 10, 16, 0, 3, 8, 9, 7, 8, 3 ],
- "vertices": [ 127.49, -37.05, 116.11, -56.71, 92.93, -68.86, 69.5, -77.99, 43.74, -89.05, 20.54, -89.17, -0.22, -80.02, -13.2, -59.64, -19.71, -34.47, -19.91, 5.84, -15.61, 31.91, -12.09, 56.28, -0.99, 76.78, 14.92, 85.97, 38.69, 86.08, 56.37, 76.32, 80.76, 71.96, 108.8, 62.29, 122.9, 43.32, 134.01, 22.1, 134.19, -14.62 ],
- "hull": 21,
- "edges": [ 26, 24, 24, 22, 22, 20, 20, 18, 16, 18, 16, 14, 14, 12, 12, 10, 26, 28, 28, 30, 30, 32, 32, 34, 34, 36, 36, 38, 38, 40, 40, 0, 0, 2, 2, 4, 4, 6, 10, 8, 6, 8 ],
- "width": 176,
- "height": 154
- }
- },
- "1touying": {
- "1touying": { "x": -0.25, "y": 0.92, "scaleX": 1.36, "scaleY": 2, "width": 158, "height": 26 }
- },
- "1tui1": {
- "1tui1": {
- "type": "mesh",
- "uvs": [ 0.85814, 0.09655, 1, 0.26059, 1, 0.54898, 0.95028, 0.84267, 0.84569, 1, 0.36947, 1, 0.23251, 0.91702, 0.14535, 0.68947, 0.07065, 0.41431, 0, 0.13348, 0.14844, 0.07009, 0.40991, 0, 0.6415, 0 ],
- "triangles": [ 8, 9, 10, 0, 1, 2, 11, 7, 8, 0, 2, 12, 10, 11, 8, 12, 6, 7, 12, 7, 11, 12, 2, 6, 2, 5, 6, 3, 5, 2, 4, 5, 3 ],
- "vertices": [ -0.23, 18.67, 8.25, 25.18, 22.04, 23.96, 35.85, 20.18, 42.9, 14.2, 40.75, -9.99, 36.17, -16.59, 24.9, -20.06, 11.4, -22.68, -2.34, -25.08, -4.7, -17.27, -6.87, -3.69, -5.83, 8.08 ],
- "hull": 13,
- "edges": [ 18, 20, 20, 22, 22, 24, 24, 0, 0, 2, 2, 4, 4, 6, 6, 8, 18, 16, 16, 14, 14, 12, 8, 10, 12, 10 ],
- "width": 51,
- "height": 48
- }
- },
- "1tui2": {
- "1tui2": {
- "type": "mesh",
- "uvs": [ 0.79105, 0.06204, 0.95867, 0.13696, 0.94536, 0.38754, 0.91878, 0.60546, 0.86722, 0.80621, 0.7758, 0.99999, 0.32127, 1, 0.05887, 0.95508, 0.02756, 0.73242, 0.0223, 0.5756, 0.02382, 0.41133, 0.02292, 0.29238, 0.23443, 0.12921, 0.50998, 1.0E-5 ],
- "triangles": [ 2, 0, 1, 10, 11, 12, 2, 13, 0, 2, 12, 13, 3, 12, 2, 10, 12, 3, 9, 10, 3, 4, 8, 9, 3, 4, 9, 8, 6, 7, 8, 4, 6, 4, 5, 6 ],
- "vertices": [ -6.1, 11.34, -3.4, 19.25, 8.61, 20.06, 19.14, 20.09, 28.98, 18.9, 38.7, 15.9, 41.08, -4.42, 40.31, -16.4, 29.86, -19.04, 22.41, -20.15, 14.57, -21, 8.9, -21.7, 0.02, -13.16, -7.58, -1.56 ],
- "hull": 14,
- "edges": [ 12, 14, 14, 16, 20, 22, 22, 24, 24, 26, 26, 0, 0, 2, 2, 4, 4, 6, 6, 8, 10, 12, 8, 10, 16, 8, 16, 18, 18, 20, 6, 18 ],
- "width": 45,
- "height": 48
- }
- },
- "1weiba": {
- "1weiba": {
- "type": "mesh",
- "uvs": [ 0.19049, 0.16707, 0.27699, 0.29991, 0.44108, 0.30506, 0.62561, 0.23813, 0.76629, 0.16975, 0.92967, 0.36025, 0.97921, 0.54623, 0.97921, 0.82859, 0.87602, 0.965, 0.65968, 1, 0.41067, 0.95175, 0.2167, 0.86216, 0.0804, 0.69534, 0, 0.47291, 0, 0.22268, 0.07515, 0, 0.13806, 0 ],
- "triangles": [ 7, 8, 9, 9, 3, 6, 7, 9, 6, 6, 3, 5, 9, 10, 3, 3, 10, 2, 3, 4, 5, 10, 11, 2, 11, 1, 2, 11, 12, 1, 1, 12, 13, 1, 13, 0, 0, 15, 16, 14, 15, 0, 0, 13, 14 ],
- "vertices": [ 2, 22, 15.92, -5.7, 0.98498, 21, 27.35, -15.87, 0.01502, 3, 22, 7.27, -9.33, 0.55393, 21, 19.02, -11.56, 0.43366, 20, 42.4, -18.78, 0.01241, 3, 22, 4.24, -19.73, 0.0501, 21, 9.1, -15.89, 0.67016, 20, 31.58, -18.28, 0.27973, 3, 22, 4.76, -32.46, 5.0E-5, 21, -0.34, -24.46, 0.23187, 20, 19.33, -21.78, 0.76808, 2, 21, -7.12, -31.86, 0.10178, 20, 9.97, -25.42, 0.89822, 2, 21, -21.42, -26.78, 0.01916, 20, -0.6, -14.54, 0.98084, 2, 21, -28.8, -18.74, 1.9E-4, 20, -3.66, -4.06, 0.99981, 1, 20, -3.34, 11.74, 1, 1, 20, 3.62, 19.25, 1, 2, 21, -20.49, 13.22, 0.00351, 20, 17.93, 20.92, 0.99649, 2, 21, -4.46, 17.75, 0.36942, 20, 34.31, 17.89, 0.63058, 2, 21, 9.26, 18.64, 0.89492, 20, 47.01, 12.62, 0.10508, 3, 22, -10.84, 8.86, 0.058, 21, 21.37, 14, 0.94165, 20, 55.82, 3.1, 3.5E-4, 2, 22, 2.55, 10.82, 0.82555, 21, 31.46, 4.97, 0.17445, 1, 22, 16.11, 7.25, 1, 1, 22, 26.9, -0.72, 1, 1, 22, 25.85, -4.73, 1 ],
- "hull": 17,
- "edges": [ 26, 24, 24, 22, 22, 20, 20, 18, 16, 18, 16, 14, 14, 12, 12, 10, 10, 8, 8, 6, 6, 4, 4, 2, 2, 0, 0, 32, 30, 32, 26, 28, 30, 28 ],
- "width": 66,
- "height": 56
- }
- },
- "1wuqi": {
- "1wuqi": { "x": -9.73, "y": 41.28, "rotation": 38.17, "width": 245, "height": 266 }
- },
- "1wuqi2": {
- "1wuqi": { "x": 15.3, "y": 37.67, "width": 245, "height": 266 }
- },
- "1zui": {
- "1zui": { "x": 0.17, "y": -1.61, "rotation": -89.72, "width": 28, "height": 18 }
- },
- "2bizi": {
- "2bizi": { "x": 30.67, "y": -0.9, "rotation": -89.19, "width": 53, "height": 34 }
- },
- "2body": {
- "2body": {
- "type": "mesh",
- "uvs": [ 0.70812, 0.03977, 0.84776, 0.09664, 0.92976, 0.25534, 0.96759, 0.38048, 0.9873, 0.53754, 0.9873, 0.71006, 0.95489, 0.88309, 0.86418, 0.92863, 0.69063, 0.97062, 0.44393, 1, 0.22408, 0.9496, 0.06129, 0.89553, 0.00722, 0.75856, 0.00433, 0.54423, 0.03229, 0.36434, 0.07471, 0.21773, 0.1603, 0.07251, 0.32944, 0.0115, 0.58615, 0.00289, 0.35653, 0.22453, 0.64917, 0.22031, 0.35282, 0.45862, 0.65843, 0.4544, 0.34727, 0.72434, 0.67696, 0.71169 ],
- "triangles": [ 10, 23, 9, 9, 23, 24, 9, 24, 8, 22, 23, 21, 23, 22, 24, 8, 24, 7, 10, 11, 23, 6, 7, 5, 11, 12, 23, 5, 7, 24, 12, 13, 23, 23, 13, 21, 5, 24, 4, 4, 24, 22, 22, 21, 20, 21, 19, 20, 13, 14, 21, 22, 3, 4, 14, 15, 21, 21, 15, 19, 22, 2, 3, 2, 20, 1, 1, 20, 0, 20, 2, 22, 15, 16, 19, 16, 17, 19, 19, 18, 20, 19, 17, 18, 20, 18, 0 ],
- "vertices": [ 2, 33, 42.92, -25.21, 0.99759, 32, 81.11, -23.94, 0.00241, 2, 33, 36.89, -41.16, 0.96198, 32, 75.54, -40.06, 0.03802, 2, 33, 20.69, -50.3, 0.83788, 32, 59.62, -49.67, 0.16212, 2, 33, 7.97, -54.42, 0.68576, 32, 47.03, -54.16, 0.31424, 2, 33, -7.93, -56.4, 0.46548, 32, 31.2, -56.61, 0.53452, 2, 33, -25.35, -56.09, 0.2557, 32, 13.77, -56.8, 0.7443, 2, 33, -42.76, -52.05, 0.13831, 32, -3.74, -53.27, 0.86169, 2, 33, -47.17, -41.53, 0.0993, 32, -8.46, -42.89, 0.9007, 2, 33, -51.05, -21.5, 0.02175, 32, -12.93, -22.98, 0.97825, 2, 33, -53.5, 6.92, 7.5E-4, 32, -16.21, 5.35, 0.99925, 2, 33, -47.96, 32.11, 0.06347, 32, -11.41, 30.69, 0.93653, 2, 33, -42.16, 50.73, 0.14167, 32, -6.15, 49.47, 0.85833, 2, 33, -28.22, 56.69, 0.21882, 32, 7.61, 55.84, 0.78118, 2, 33, -6.57, 56.64, 0.43619, 32, 29.25, 56.42, 0.56381, 2, 33, 11.54, 53.09, 0.67518, 32, 47.45, 53.41, 0.32482, 2, 33, 26.26, 47.95, 0.84279, 32, 62.32, 48.7, 0.15721, 2, 33, 40.75, 37.84, 0.95091, 32, 77.09, 39.02, 0.04909, 2, 33, 46.56, 18.28, 0.99756, 32, 83.47, 19.64, 0.00244, 1, 33, 46.89, -11.25, 1, 2, 33, 24.99, 15.56, 0.97089, 32, 61.99, 16.28, 0.02911, 2, 33, 24.81, -18.1, 0.98904, 32, 62.8, -17.37, 0.01096, 2, 33, 1.36, 16.41, 0.59794, 32, 38.35, 16.44, 0.40206, 2, 33, 1.15, -18.74, 0.65376, 32, 39.17, -18.7, 0.34624, 2, 33, -25.47, 17.53, 0.07401, 32, 11.5, 16.78, 0.92599, 2, 33, -24.87, -20.4, 0.09798, 32, 13.21, -21.12, 0.90202 ],
- "hull": 19,
- "edges": [ 24, 22, 22, 20, 20, 18, 18, 16, 16, 14, 14, 12, 12, 10, 24, 26, 26, 28, 28, 30, 30, 32, 32, 34, 34, 36, 36, 0, 0, 2, 2, 4, 4, 6, 10, 8, 6, 8 ],
- "width": 115,
- "height": 101
- }
- },
- "2daizi": {
- "2daizi": {
- "type": "mesh",
- "uvs": [ 0.23893, 0.1198, 0.33809, 0.19813, 0.43893, 0.25956, 0.49022, 0.19274, 0.63554, 0.27109, 0.76677, 0.42069, 0.75661, 0.47396, 0.85783, 0.52001, 0.96373, 0.57513, 0.98989, 0.69703, 0.97809, 0.87713, 0.89542, 1, 0.77916, 0.95087, 0.66119, 0.87943, 0.58254, 0.81952, 0.54151, 0.87022, 0.27369, 0.63446, 0.30103, 0.54531, 0.21154, 0.44622, 0.10725, 0.29874, 0.00342, 0.12591, 0.03419, 0.02074, 0.1329, 0 ],
- "triangles": [ 11, 12, 10, 10, 12, 9, 9, 12, 7, 12, 13, 7, 13, 6, 7, 13, 14, 6, 8, 9, 7, 14, 15, 17, 15, 16, 17, 17, 2, 14, 14, 2, 4, 14, 4, 6, 4, 2, 3, 6, 4, 5, 17, 1, 2, 17, 18, 1, 18, 0, 1, 18, 19, 0, 19, 20, 22, 19, 22, 0, 22, 20, 21 ],
- "vertices": [ 2, 47, 0.53, -16.88, 0.92897, 48, 60.93, 82.01, 0.07103, 2, 47, -6.89, -29.05, 0.77146, 48, 53.86, 69.63, 0.22854, 2, 47, -12.77, -41.45, 0.56772, 48, 48.35, 57.07, 0.43228, 2, 47, -6.74, -47.92, 0.49645, 48, 54.57, 50.78, 0.50355, 2, 47, -14.27, -65.81, 0.3777, 48, 47.57, 32.68, 0.6223, 2, 47, -28.32, -81.83, 0.2329, 48, 33.99, 16.25, 0.7671, 2, 47, -33.2, -80.48, 0.19278, 48, 29.07, 17.46, 0.80722, 2, 47, -37.66, -92.95, 0.06492, 48, 24.98, 4.86, 0.93508, 2, 47, -42.97, -105.99, 0.0134, 48, 20.05, -8.33, 0.9866, 2, 47, -54.24, -109.03, 0.00149, 48, 8.87, -11.7, 0.99851, 1, 48, -7.71, -10.42, 1, 2, 47, -81.9, -96.82, 5.3E-4, 48, -19.13, -0.3, 0.99947, 2, 47, -77.12, -82.48, 0.02664, 48, -14.77, 14.17, 0.97336, 2, 47, -70.28, -67.98, 0.1174, 48, -8.36, 28.87, 0.8826, 2, 47, -64.6, -58.33, 0.228, 48, -2.96, 38.68, 0.772, 2, 47, -69.17, -53.15, 0.26822, 48, -7.68, 43.72, 0.73178, 2, 47, -46.88, -20.34, 0.5184, 48, 13.63, 77.17, 0.4816, 2, 47, -38.74, -23.88, 0.57936, 48, 21.87, 73.87, 0.42064, 2, 47, -29.43, -12.95, 0.77004, 48, 30.86, 85.07, 0.22996, 2, 47, -15.63, -0.26, 0.94442, 48, 44.29, 98.15, 0.05557, 1, 47, 0.5, 12.32, 1, 1, 47, 10.1, 8.33, 1, 2, 47, 11.79, -3.94, 0.99956, 48, 71.8, 95.28, 4.4E-4 ],
- "hull": 23,
- "edges": [ 40, 42, 40, 38, 38, 36, 36, 34, 34, 32, 32, 30, 30, 28, 28, 26, 26, 24, 24, 22, 22, 20, 20, 18, 18, 16, 16, 14, 14, 12, 12, 10, 10, 8, 8, 6, 6, 4, 4, 2, 2, 0, 42, 44, 0, 44 ],
- "width": 124,
- "height": 92
- }
- },
- "2daiziyy": {
- "2daiziyy": {
- "type": "mesh",
- "uvs": [ 0.26533, 0.23271, 0.52224, 0.48778, 0.77605, 0.6441, 1, 0.75518, 0.90914, 1, 0.69557, 0.93619, 0.39533, 0.70993, 0.14462, 0.42195, 0, 0.16689, 0, 0, 0.06724, 0 ],
- "triangles": [ 6, 7, 1, 5, 1, 2, 4, 5, 2, 6, 1, 5, 3, 4, 2, 8, 9, 10, 8, 10, 0, 7, 8, 0, 1, 7, 0 ],
- "vertices": [ 2, 47, -20.95, -23.73, 0.66667, 48, 39.65, 74.54, 0.33333, 2, 47, -41.59, -50.34, 0.33333, 48, 19.8, 47.34, 0.66667, 2, 47, -54.42, -76.76, 0.11111, 48, 7.76, 20.55, 0.88889, 1, 48, -0.76, -3.06, 1, 1, 48, -20.2, 6.26, 1, 2, 47, -77.33, -67.9, 0.11111, 48, -15.41, 28.74, 0.88889, 2, 47, -58.89, -36.7, 0.33333, 48, 2.11, 60.46, 0.66667, 2, 47, -35.67, -10.79, 0.66667, 48, 24.56, 87.04, 0.33333, 2, 47, -15.25, 4.03, 0.88889, 48, 44.54, 102.45, 0.11111, 1, 47, -2.07, 3.79, 1, 2, 47, -2.2, -3.27, 0.88889, 48, 57.8, 95.54, 0.11111 ],
- "hull": 11,
- "edges": [ 16, 18, 16, 14, 14, 12, 12, 10, 10, 8, 8, 6, 6, 4, 4, 2, 2, 0, 18, 20, 0, 20 ],
- "width": 105,
- "height": 79
- }
- },
- "2e1": {
- "2e1": { "x": 0.65, "y": -0.73, "rotation": -89.19, "width": 22, "height": 31 }
- },
- "2e2": {
- "2e2": { "x": 1.86, "y": -0.25, "rotation": -89.19, "width": 22, "height": 31 }
- },
- "2er1": {
- "2er1": { "x": 22.97, "y": -3.77, "rotation": -172.23, "width": 57, "height": 77 }
- },
- "2er2": {
- "2er2": { "x": 24.41, "y": 3.45, "rotation": -8.06, "width": 60, "height": 77 }
- },
- "2fa": {
- "2fa": {
- "type": "mesh",
- "uvs": [ 0.80019, 0.16818, 0.93845, 0.37569, 1, 0.68291, 0.81401, 0.85538, 0.5444, 1, 0.20912, 0.85538, 0.00346, 0.70716, 0.02765, 0.44845, 0.16419, 0.17896, 0.3543, 0, 0.61008, 0 ],
- "triangles": [ 6, 7, 5, 3, 5, 1, 3, 1, 2, 4, 5, 3, 1, 5, 7, 7, 8, 1, 8, 9, 10, 10, 0, 8, 0, 1, 8 ],
- "vertices": [ 3, 36, 14.06, -15.07, 0.78017, 35, 34.22, -15.88, 0.10872, 34, 159.92, -12.38, 0.11111, 3, 36, 1.82, -21.43, 0.5153, 35, 21.62, -21.5, 0.15137, 34, 147.77, -18.91, 0.33333, 3, 36, -16.31, -24.26, 0.23398, 35, 3.36, -23.24, 0.09935, 34, 129.68, -22, 0.66667, 3, 36, -26.48, -15.7, 0.06378, 35, -6.29, -14.09, 0.04733, 34, 119.39, -13.59, 0.88889, 1, 34, 110.68, -1.31, 1, 3, 36, -26.48, 12.12, 0.06463, 35, -4.62, 13.69, 0.04648, 34, 118.99, 14.23, 0.88889, 3, 36, -17.74, 21.58, 0.23917, 35, 4.67, 22.61, 0.09416, 34, 127.6, 23.82, 0.66667, 3, 36, -2.47, 20.47, 0.52482, 35, 19.84, 20.58, 0.14184, 34, 142.88, 22.92, 0.33333, 3, 36, 13.43, 14.19, 0.79232, 35, 35.34, 13.36, 0.09657, 34, 158.87, 16.87, 0.11111, 2, 36, 23.98, 5.44, 0.94642, 35, 45.35, 4, 0.05358, 2, 36, 23.98, -6.32, 0.94209, 35, 44.65, -7.75, 0.05791 ],
- "hull": 11,
- "edges": [ 12, 10, 10, 8, 8, 6, 6, 4, 4, 2, 2, 0, 0, 20, 18, 20, 18, 16, 12, 14, 16, 14 ],
- "width": 46,
- "height": 59
- }
- },
- "2mm1": {
- "2mm1": { "x": 64.18, "y": 33.58, "rotation": -89.19, "width": 39, "height": 26 }
- },
- "2mm2": {
- "2mm2": { "x": 65.13, "y": -33.42, "rotation": -89.19, "width": 39, "height": 26 }
- },
- "2shou1": {
- "2shou1": {
- "type": "mesh",
- "uvs": [ 0.76985, 0.15972, 0.9043, 0.33695, 0.97068, 0.60233, 0.94136, 0.81745, 0.76057, 0.95789, 0.34801, 0.9785, 0.04657, 0.84472, 0.03853, 0.57789, 0.05012, 0.29828, 0.08373, 0.08239, 0.54444, 0 ],
- "triangles": [ 8, 1, 7, 2, 6, 7, 8, 9, 10, 0, 8, 10, 1, 2, 7, 1, 8, 0, 3, 4, 2, 2, 5, 6, 4, 5, 2 ],
- "vertices": [ 7.87, 18.06, 18.54, 21.65, 33.16, 21.23, 44.18, 17.33, 49.75, 7.86, 46.7, -10.07, 36.65, -21.34, 22.54, -18.41, 7.95, -14.48, -3.06, -10.38, -2.78, 10.37 ],
- "hull": 11,
- "edges": [ 18, 20, 20, 0, 0, 2, 2, 4, 18, 16, 16, 14, 14, 12, 12, 10, 10, 8, 4, 6, 8, 6 ],
- "width": 44,
- "height": 54
- }
- },
- "2shou2": {
- "2shou2": {
- "type": "mesh",
- "uvs": [ 0.97507, 0.13111, 0.9439, 0.3778, 0.8808, 0.60709, 0.77662, 0.82279, 0.57657, 0.98478, 0.18383, 0.97608, 0.04363, 0.86923, 0.00935, 0.71638, 0.12295, 0.48492, 0.27312, 0.28771, 0.43653, 0.13672, 0.67503, 0 ],
- "triangles": [ 8, 9, 2, 3, 8, 2, 7, 8, 3, 5, 6, 7, 7, 4, 5, 3, 4, 7, 0, 10, 11, 1, 10, 0, 1, 9, 10, 2, 9, 1 ],
- "vertices": [ 1, 39, -3, 10.45, 1, 2, 39, 16.65, 18.67, 0.9998, 40, -19.14, 20.01, 2.0E-4, 2, 39, 35.86, 24.49, 0.72877, 40, 0.43, 24.52, 0.27123, 2, 39, 55.19, 27.59, 0.21332, 40, 19.92, 26.3, 0.78668, 2, 39, 73.11, 23.45, 0.03257, 40, 37.52, 20.95, 0.96743, 1, 40, 46.36, -0.9, 1, 1, 40, 41.35, -12.31, 1, 1, 40, 30.16, -19.51, 1, 2, 39, 47.72, -20.64, 0.04742, 40, 9.2, -21.32, 0.95258, 2, 39, 28.51, -20.56, 0.68222, 40, -9.96, -19.93, 0.31778, 2, 39, 12.46, -17.92, 0.9791, 40, -25.8, -16.21, 0.0209, 1, 39, -4.61, -10.73, 1 ],
- "hull": 12,
- "edges": [ 8, 6, 6, 4, 4, 2, 2, 0, 0, 22, 22, 20, 20, 18, 18, 16, 16, 14, 12, 14, 8, 10, 12, 10 ],
- "width": 60,
- "height": 86
- }
- },
- "2tou": {
- "2tou": {
- "type": "mesh",
- "uvs": [ 0.74342, 0.06627, 0.85992, 0.1717, 0.92546, 0.35513, 0.94689, 0.53085, 0.99999, 0.68454, 0.9532, 0.85101, 0.84858, 0.94811, 0.71624, 1, 0.28518, 1, 0.14401, 0.94349, 0.04948, 0.84022, 0, 0.72461, 0, 0.65176, 0.05067, 0.55157, 0.06958, 0.41593, 0.11117, 0.23867, 0.1931, 0.11535, 0.31157, 0.03828, 0.41871, 0, 0.60399, 1.0E-5 ],
- "triangles": [ 11, 12, 13, 10, 11, 13, 5, 3, 4, 15, 17, 14, 14, 8, 13, 9, 13, 8, 10, 13, 9, 2, 3, 19, 2, 0, 1, 2, 19, 0, 6, 3, 5, 16, 17, 15, 14, 18, 8, 17, 18, 14, 18, 3, 8, 3, 18, 19, 3, 7, 8, 6, 7, 3 ],
- "vertices": [ 125.91, -45.79, 109.67, -68.39, 81.06, -81.38, 53.53, -85.89, 29.55, -96.43, 3.29, -87.81, -12.24, -67.95, -20.75, -42.65, -21.92, 40.1, -13.43, 67.33, 2.52, 85.71, 20.53, 95.46, 31.97, 95.63, 47.84, 86.12, 69.18, 82.79, 97.12, 75.2, 116.7, 59.75, 129.12, 37.18, 135.43, 16.69, 135.93, -18.88 ],
- "hull": 20,
- "edges": [ 22, 20, 20, 18, 18, 16, 14, 16, 14, 12, 12, 10, 10, 8, 22, 24, 24, 26, 26, 28, 28, 30, 30, 32, 32, 34, 34, 36, 36, 38, 38, 0, 0, 2, 2, 4, 4, 6, 6, 8 ],
- "width": 192,
- "height": 157
- }
- },
- "2touying": {
- "2touying": { "x": 0.26, "y": -0.06, "scaleX": 1.36, "scaleY": 2, "width": 159, "height": 26 }
- },
- "2tui1": {
- "2tui1": {
- "type": "mesh",
- "uvs": [ 0.95125, 0.20317, 0.98848, 0.39631, 0.9808, 0.71707, 0.91284, 0.97586, 0.33286, 0.98276, 0.18307, 0.74121, 0.0832, 0.48598, 1.0E-5, 0.16178, 0.24068, 0.02759, 0.67854, 0.02759 ],
- "triangles": [ 6, 7, 8, 1, 9, 0, 9, 5, 6, 5, 9, 2, 1, 2, 9, 8, 9, 6, 3, 4, 2, 2, 4, 5 ],
- "vertices": [ 4.79, 17.72, 14.34, 18.75, 30.01, 17.43, 42.47, 13.64, 41.2, -11.85, 28.98, -17.68, 16.22, -21.28, 0.13, -23.93, -5.76, -12.94, -4.55, 6.28 ],
- "hull": 10,
- "edges": [ 14, 12, 12, 10, 10, 8, 6, 8, 6, 4, 4, 2, 2, 0, 0, 18, 16, 18, 16, 14 ],
- "width": 44,
- "height": 49
- }
- },
- "2tui2": {
- "2tui2": {
- "type": "mesh",
- "uvs": [ 0.99717, 0.09593, 0.90955, 0.41099, 0.80653, 0.69065, 0.67693, 0.98764, 0.12305, 0.97527, 0.07101, 0.62531, 0.05185, 0.34304, 0.0782, 0, 0.56778, 0.00618 ],
- "triangles": [ 1, 8, 0, 8, 5, 6, 2, 8, 1, 7, 8, 6, 2, 5, 8, 5, 3, 4, 2, 3, 5 ],
- "vertices": [ -2.48, 23.82, 11.74, 21.06, 24.49, 17.41, 38.13, 12.57, 40.33, -13.93, 25.27, -18, 13.01, -20.2, -2.14, -20.49, -4.28, 2.91 ],
- "hull": 9,
- "edges": [ 14, 12, 12, 10, 10, 8, 6, 8, 6, 4, 4, 2, 2, 0, 14, 16, 0, 16 ],
- "width": 48,
- "height": 44
- }
- },
- "2wuqi": {
- "2wuqi": {
- "type": "mesh",
- "uvs": [ 1, 1, 0, 1, 0, 0.5, 0, 0, 0.42032, 0, 0.58911, 0, 1, 0, 1, 0.5, 0.49744, 0.2187, 0.07306, 0.20633, 0.18236, 0.09031, 0.85059, 0.10166, 0.92115, 0.20633, 0.02603, 0.35891, 0.97787, 0.38161, 0.23217, 0.8192, 0.04678, 0.70697, 0.4978, 0.51403, 0.76896, 0.83307, 0.96265, 0.67922 ],
- "triangles": [ 10, 3, 4, 11, 5, 6, 12, 11, 6, 9, 3, 10, 8, 4, 5, 8, 5, 11, 10, 4, 8, 13, 3, 9, 14, 12, 6, 13, 2, 3, 14, 6, 7, 8, 14, 17, 12, 8, 11, 14, 8, 12, 17, 14, 7, 19, 17, 7, 13, 17, 2, 16, 2, 17, 9, 8, 17, 8, 9, 10, 9, 17, 13, 15, 16, 17, 18, 17, 19, 15, 17, 18, 1, 2, 16, 1, 16, 15, 19, 7, 0, 18, 19, 0, 1, 15, 18, 0, 1, 18 ],
- "vertices": [ 102.5, -126.49, -103.5, -126.49, -103.5, -13.49, -103.5, 99.51, -16.91, 99.51, 17.86, 99.51, 102.5, 99.51, 102.5, -13.49, -1.03, 50.08, -88.45, 52.88, -65.93, 79.1, 71.72, 76.54, 86.26, 52.88, -98.14, 18.4, 97.94, 13.27, -55.67, -85.63, -93.86, -60.26, -0.95, -16.66, 54.91, -88.76, 94.81, -53.99 ],
- "hull": 8,
- "edges": [ 0, 2, 2, 4, 4, 6, 12, 14, 14, 0, 6, 8, 8, 10, 10, 12 ],
- "width": 206,
- "height": 226
- }
- },
- "2zui": {
- "2zui": { "x": 0.82, "y": -1.66, "rotation": -89.19, "width": 26, "height": 19 }
- },
- "3body": {
- "3body": {
- "type": "mesh",
- "uvs": [ 0.84127, 0.08733, 0.92219, 0.201, 0.971, 0.3715, 1, 0.52818, 1, 0.71405, 0.96458, 0.86458, 0.89522, 0.90606, 0.74108, 0.94446, 0.62933, 1, 0.4585, 1, 0.31078, 0.97364, 0.17334, 0.90606, 0.03847, 0.87994, 0, 0.68947, 0.02691, 0.39608, 0.06159, 0.23172, 0.12453, 0.08733, 0.31849, 0, 0.75778, 0, 0.34641, 0.26134, 0.65961, 0.25832, 0.34135, 0.48486, 0.67982, 0.48184, 0.34135, 0.71443, 0.68992, 0.6963 ],
- "triangles": [ 20, 18, 0, 20, 17, 18, 16, 17, 19, 7, 8, 24, 10, 23, 9, 8, 9, 24, 24, 23, 22, 24, 9, 23, 20, 22, 21, 10, 11, 23, 7, 24, 6, 5, 6, 4, 23, 11, 13, 11, 12, 13, 4, 6, 24, 13, 21, 23, 22, 23, 21, 24, 3, 4, 24, 22, 3, 13, 14, 21, 22, 2, 3, 21, 14, 19, 19, 14, 15, 21, 19, 20, 2, 20, 1, 1, 20, 0, 20, 2, 22, 15, 16, 19, 19, 17, 20 ],
- "vertices": [ 3, 54, 32.2, -38.87, 0.2649, 53, 72.33, -38.02, 0.06843, 55, -9.46, -38.87, 0.66667, 3, 54, 21.17, -48.25, 0.45486, 53, 61.55, -47.69, 0.21181, 55, -20.48, -48.25, 0.33333, 2, 54, 4.63, -53.92, 0.57507, 53, 45.16, -53.78, 0.42493, 2, 54, -10.56, -57.28, 0.37141, 53, 30.06, -57.53, 0.62859, 2, 54, -28.59, -57.28, 0.21724, 53, 12.03, -58, 0.78276, 2, 54, -43.19, -53.17, 0.12452, 53, -2.67, -54.27, 0.87548, 2, 54, -47.22, -45.12, 0.07097, 53, -6.9, -46.33, 0.92903, 2, 54, -50.94, -27.24, 0.03561, 53, -11.09, -28.56, 0.96439, 2, 54, -56.33, -14.28, 0.00812, 53, -16.81, -15.74, 0.99188, 2, 54, -56.33, 5.54, 4.2E-4, 53, -17.33, 4.07, 0.99958, 2, 54, -53.77, 22.67, 2.0E-5, 53, -15.22, 21.27, 0.99998, 2, 54, -47.22, 38.61, 0.00127, 53, -9.08, 37.37, 0.99873, 2, 54, -44.68, 54.26, 0.01583, 53, -6.95, 53.08, 0.98417, 2, 54, -26.21, 58.72, 0.11052, 53, 11.4, 58.02, 0.88948, 2, 54, 2.25, 55.6, 0.27337, 53, 39.93, 55.64, 0.72663, 3, 54, 18.19, 51.58, 0.25882, 53, 55.98, 52.03, 0.40785, 55, -23.46, 51.58, 0.33333, 3, 54, 32.2, 44.28, 0.1641, 53, 70.17, 45.1, 0.16923, 55, -9.46, 44.28, 0.66667, 1, 55, -0.99, 21.78, 1, 1, 55, -0.99, -29.18, 1, 2, 54, 15.32, 18.54, 0.72352, 53, 53.96, 18.93, 0.27648, 2, 54, 15.61, -17.79, 0.9218, 53, 55.2, -17.38, 0.0782, 2, 54, -6.36, 19.12, 0.162, 53, 32.27, 18.95, 0.838, 2, 54, -6.07, -20.14, 0.37278, 53, 33.59, -20.29, 0.62722, 2, 54, -28.63, 19.12, 0.00301, 53, 10.01, 18.37, 0.99699, 2, 54, -26.87, -21.31, 0.06835, 53, 12.82, -22, 0.93165 ],
- "hull": 19,
- "edges": [ 26, 24, 24, 22, 22, 20, 20, 18, 16, 18, 16, 14, 14, 12, 12, 10, 10, 8, 8, 6, 6, 4, 4, 2, 2, 0, 0, 36, 34, 36, 34, 32, 32, 30, 30, 28, 28, 26 ],
- "width": 116,
- "height": 97
- }
- },
- "3daizi": {
- "3daizi": {
- "type": "mesh",
- "uvs": [ 0.90759, 0.21458, 0.78703, 0.40029, 0.64025, 0.586, 0.48311, 0.74346, 0.30853, 0.90058, 0.10558, 1, 0.02735, 0.947, 1.0E-5, 0.54849, 0.18193, 0.44436, 0.34044, 0.34999, 0.49872, 0.23779, 0.61404, 0.15267, 0.80537, 0, 1, 0 ],
- "triangles": [ 2, 3, 9, 2, 9, 10, 3, 4, 8, 3, 8, 9, 5, 6, 7, 8, 5, 7, 4, 5, 8, 0, 12, 13, 1, 11, 12, 1, 12, 0, 2, 11, 1, 10, 11, 2 ],
- "vertices": [ 2, 69, -10.8, -4.2, 0.98526, 70, 48.91, -100.65, 0.01474, 2, 69, -26.4, 10.75, 0.84132, 70, 32.93, -86.11, 0.15868, 2, 69, -42, 28.95, 0.58572, 70, 16.86, -68.32, 0.41428, 2, 69, -55.23, 48.44, 0.31803, 70, 3.13, -49.19, 0.68197, 2, 69, -68.43, 70.08, 0.09584, 70, -10.62, -27.89, 0.90416, 2, 69, -76.78, 95.25, 0.00266, 70, -19.63, -2.95, 0.99734, 1, 70, -15.43, 6.87, 1, 2, 69, -38.85, 108.34, 0.00656, 70, 17.95, 11.12, 0.99344, 2, 69, -30.11, 85.78, 0.10829, 70, 27.28, -11.2, 0.89171, 2, 69, -22.18, 66.13, 0.32016, 70, 35.71, -30.64, 0.67984, 2, 69, -12.75, 46.5, 0.59061, 70, 45.64, -50.02, 0.40939, 2, 69, -5.6, 32.2, 0.78185, 70, 53.16, -64.13, 0.21815, 2, 69, 7.22, 8.48, 0.98563, 70, 66.6, -87.51, 0.01437, 1, 69, 7.22, -15.66, 1 ],
- "hull": 14,
- "edges": [ 10, 12, 10, 8, 8, 6, 6, 4, 4, 2, 2, 0, 0, 26, 12, 14, 14, 16, 16, 18, 18, 20, 20, 22, 24, 26, 22, 24 ],
- "width": 124,
- "height": 84
- }
- },
- "3er1": {
- "3er1": {
- "type": "mesh",
- "uvs": [ 0.66447, 0.18351, 0.90909, 0.37431, 1, 0.55098, 0.91419, 0.76651, 0.77659, 0.92905, 0.56256, 1, 0.26188, 0.84071, 0.08861, 0.59691, 0, 0.28951, 0, 0, 0.27207, 0 ],
- "triangles": [ 5, 6, 4, 6, 7, 3, 7, 8, 0, 8, 9, 10, 4, 6, 3, 3, 7, 2, 7, 1, 2, 7, 0, 1, 8, 10, 0 ],
- "vertices": [ 1, 59, 29.55, 22.77, 1, 1, 59, 42.08, 8.3, 1, 1, 59, 46.64, -5.01, 1, 1, 59, 41.97, -21.12, 1, 2, 59, 34.66, -33.22, 0.66667, 55, 37.34, -103.66, 0.33333, 1, 55, 32.01, -92.53, 1, 1, 55, 43.96, -76.9, 1, 1, 55, 62.25, -67.89, 1, 1, 55, 85.3, -63.28, 1, 2, 59, -4.83, 36.97, 0.33333, 55, 107.01, -63.28, 0.66667, 2, 59, 9.32, 36.79, 0.66667, 55, 107.01, -77.43, 0.33333 ],
- "hull": 11,
- "edges": [ 16, 18, 16, 14, 14, 12, 12, 10, 10, 8, 8, 6, 6, 4, 4, 2, 2, 0, 18, 20, 0, 20 ],
- "width": 52,
- "height": 75
- }
- },
- "3er2": {
- "3er2": {
- "type": "mesh",
- "uvs": [ 0.92927, 0.4153, 0.76666, 0.75022, 0.59297, 0.99384, 0.37543, 0.99589, 0.14543, 0.84654, 0.03215, 0.6486, 0.03215, 0.46557, 0.23327, 0.27876, 0.50681, 0.11746, 0.83019, 0, 0.98538, 0.01232 ],
- "triangles": [ 8, 9, 0, 1, 7, 0, 2, 3, 1, 0, 9, 10, 1, 5, 6, 0, 7, 8, 1, 6, 7, 4, 5, 1, 1, 3, 4 ],
- "vertices": [ 1, 55, 76.28, 68.4, 1, 1, 55, 51.5, 76.86, 1, 2, 58, 6.28, 33.25, 0.33333, 55, 33.47, 85.89, 0.66667, 2, 58, 17.54, 34.4, 0.66667, 55, 33.32, 97.2, 0.33333, 1, 58, 30.42, 24.44, 1, 1, 58, 37.58, 10.37, 1, 1, 58, 38.77, -3.13, 1, 1, 58, 29.56, -17.82, 1, 2, 58, 16.44, -30.96, 0.66667, 55, 98.32, 90.37, 0.33333, 2, 58, 0.46, -41.09, 0.33333, 55, 107.01, 73.55, 0.66667, 1, 55, 106.1, 65.48, 1 ],
- "hull": 11,
- "edges": [ 10, 8, 8, 6, 4, 6, 4, 2, 2, 0, 0, 20, 18, 20, 18, 16, 16, 14, 10, 12, 14, 12 ],
- "width": 52,
- "height": 74
- }
- },
- "3fa": {
- "3fa": {
- "type": "mesh",
- "uvs": [ 0.82479, 0.2116, 0.95096, 0.47701, 0.98365, 0.80878, 0.65314, 1, 0.22401, 1, 0, 0.80141, 0.02043, 0.54705, 0.17905, 0.20423, 0.37114, 0, 0.63271, 0 ],
- "triangles": [ 6, 3, 4, 5, 6, 4, 3, 1, 2, 1, 3, 6, 6, 7, 1, 8, 9, 0, 0, 7, 8, 0, 1, 7 ],
- "vertices": [ 2, 57, 15.1, -16.08, 0.98917, 56, 34.6, -16.85, 0.01083, 2, 57, 1.44, -21.58, 0.67671, 56, 20.67, -21.63, 0.32329, 1, 55, 129.77, -21.53, 1, 1, 55, 120.01, -6.32, 1, 1, 55, 120.01, 13.42, 1, 1, 55, 130.14, 23.72, 1, 2, 57, -1.2, 21.29, 0.49642, 56, 20.31, 21.32, 0.50358, 2, 57, 16.12, 13.61, 0.99441, 56, 37.19, 12.74, 0.00559, 1, 57, 26.34, 4.55, 1, 1, 57, 26.08, -7.48, 1 ],
- "hull": 10,
- "edges": [ 10, 8, 6, 8, 6, 4, 10, 12, 12, 14, 14, 16, 16, 18, 18, 0, 4, 2, 0, 2 ],
- "width": 46,
- "height": 51
- }
- },
- "3shou1": {
- "3shou1": {
- "type": "mesh",
- "uvs": [ 0.52822, 0.11643, 0.68942, 0.26759, 0.83365, 0.43268, 0.94395, 0.61766, 1, 0.81656, 0.85204, 0.98655, 0.46882, 1, 0.29208, 0.83248, 0.16904, 0.63556, 0.08471, 0.43415, 0.05474, 0.23091, 0.05046, 0.07885, 0.32874, 0 ],
- "triangles": [ 10, 11, 12, 0, 9, 10, 0, 10, 12, 9, 0, 1, 8, 9, 1, 8, 1, 2, 8, 2, 3, 7, 8, 3, 7, 3, 4, 4, 6, 7, 5, 6, 4 ],
- "vertices": [ 2, 61, -33.27, 15.31, 0.00197, 60, 9.13, 17.82, 0.99803, 2, 61, -16.71, 19.95, 0.15295, 60, 26, 21.17, 0.84705, 2, 61, 0.64, 23.12, 0.72891, 60, 43.54, 23, 0.27109, 2, 61, 18.88, 23.61, 0.99602, 60, 61.77, 22.09, 0.00398, 1, 61, 37.05, 20.41, 1, 1, 61, 48.05, 5.98, 1, 1, 61, 40.32, -17.32, 1, 2, 61, 22.01, -22.35, 0.99811, 60, 61.36, -23.98, 0.00189, 2, 61, 2.46, -23.21, 0.72019, 60, 41.79, -23.33, 0.27981, 2, 61, -16.58, -21.61, 0.13526, 60, 22.93, -20.28, 0.86474, 2, 61, -34.52, -16.71, 0.00111, 60, 5.43, -14.01, 0.99889, 1, 60, -7.17, -8.27, 1, 1, 60, -5.94, 10.89, 1 ],
- "hull": 13,
- "edges": [ 24, 22, 22, 20, 20, 18, 18, 16, 16, 14, 14, 12, 24, 0, 0, 2, 2, 4, 4, 6, 6, 8, 10, 12, 8, 10 ],
- "width": 64,
- "height": 91
- }
- },
- "3shou2": {
- "3shou2": {
- "type": "mesh",
- "uvs": [ 0.92047, 0.12865, 0.9381, 0.27927, 0.89099, 0.42546, 0.88918, 0.56776, 0.91797, 0.6959, 1, 0.81483, 0.97642, 0.95834, 0.7329, 1, 0.45378, 0.91257, 0.19255, 0.76974, 0.02982, 0.57455, 0.00969, 0.37829, 0.046, 0.19456, 0.22889, 0.01765, 0.60782, 0 ],
- "triangles": [ 2, 3, 10, 9, 3, 4, 3, 9, 10, 8, 9, 4, 8, 4, 5, 5, 7, 8, 6, 7, 5, 14, 1, 13, 1, 14, 0, 1, 2, 13, 2, 10, 11, 2, 12, 13, 11, 12, 2 ],
- "vertices": [ 2, 63, 41.63, -25.05, 0.99999, 62, 74.92, -42.73, 1.0E-5, 2, 63, 25.77, -27.09, 0.9701, 62, 60.22, -36.43, 0.0299, 2, 63, 10.13, -25.42, 0.73653, 62, 47.6, -27.04, 0.26347, 2, 63, -4.93, -26.3, 0.24393, 62, 34.19, -20.14, 0.75607, 2, 63, -18.38, -28.82, 0.02369, 62, 21.33, -15.48, 0.97631, 1, 62, 7.97, -13.97, 1, 1, 62, -5, -5.9, 1, 1, 62, -2.68, 8.48, 1, 1, 62, 12.77, 18.49, 1, 2, 63, -28.88, 11.93, 0.00247, 62, 32.99, 24.95, 0.99753, 2, 63, -8.83, 22.53, 0.34429, 62, 55.64, 23.9, 0.65571, 2, 63, 11.85, 25.03, 0.93089, 62, 74.73, 15.54, 0.06911, 1, 63, 31.42, 24.24, 1, 1, 63, 50.81, 15.05, 1, 1, 63, 54.08, -6.38, 1 ],
- "hull": 15,
- "edges": [ 20, 18, 18, 16, 12, 14, 16, 14, 12, 10, 2, 0, 0, 28, 26, 28, 26, 24, 20, 22, 22, 24, 2, 4, 4, 6, 6, 8, 8, 10 ],
- "width": 57,
- "height": 106
- }
- },
- "3tou": {
- "3tou": {
- "type": "mesh",
- "uvs": [ 0.7271, 0.05727, 0.8316, 0.12221, 0.9076, 0.25497, 0.93491, 0.43823, 0.96935, 0.58254, 1, 0.7066, 0.9551, 0.8408, 0.85298, 0.9548, 0.6986, 1, 0.29674, 1, 0.13286, 0.93171, 0.04974, 0.85234, 0, 0.71957, 0.02543, 0.55207, 0.06581, 0.38323, 0.12518, 0.19852, 0.20593, 0.1004, 0.31043, 0.04123, 0.41137, 0, 0.61666, 0 ],
- "triangles": [ 3, 4, 8, 6, 4, 5, 10, 11, 13, 12, 13, 11, 15, 17, 14, 14, 9, 13, 9, 10, 13, 3, 0, 2, 2, 0, 1, 6, 7, 4, 16, 17, 15, 17, 9, 14, 18, 19, 0, 3, 9, 17, 17, 18, 3, 0, 3, 18, 4, 7, 8, 3, 8, 9 ],
- "vertices": [ 1, 55, 127.96, -42.88, 1, 1, 55, 117.7, -62.95, 1, 1, 55, 96.73, -77.54, 1, 1, 55, 67.77, -82.78, 1, 1, 55, 44.97, -89.39, 1, 1, 55, 25.37, -95.28, 1, 1, 55, 4.17, -86.66, 1, 2, 55, -13.84, -67.05, 0.66667, 54, 27.81, -67.05, 0.33333, 2, 55, -20.99, -37.41, 0.33333, 54, 20.67, -37.41, 0.66667, 2, 55, -20.99, 39.75, 0.33333, 54, 20.67, 39.75, 0.66667, 2, 55, -10.2, 71.21, 0.66667, 54, 31.46, 71.21, 0.33333, 1, 55, 2.34, 87.17, 1, 1, 55, 23.32, 96.72, 1, 1, 55, 49.79, 91.84, 1, 1, 55, 76.46, 84.09, 1, 1, 55, 105.65, 72.69, 1, 1, 55, 121.15, 57.18, 1, 1, 55, 130.5, 37.12, 1, 1, 55, 137.01, 17.74, 1, 1, 55, 137.01, -21.68, 1 ],
- "hull": 20,
- "edges": [ 24, 22, 22, 20, 20, 18, 16, 18, 16, 14, 14, 12, 12, 10, 10, 8, 8, 6, 6, 4, 4, 2, 2, 0, 0, 38, 24, 26, 26, 28, 28, 30, 30, 32, 32, 34, 36, 38, 34, 36 ],
- "width": 192,
- "height": 158
- }
- },
- "3touying": {
- "3touying": { "x": 0.91, "y": -0.84, "scaleX": 1.36, "scaleY": 2, "width": 158, "height": 26 }
- },
- "3tui1": {
- "3tui1": {
- "type": "mesh",
- "uvs": [ 0.95195, 0.389, 0.94921, 0.72953, 0.90739, 0.95558, 0.57104, 0.98511, 0.29452, 0.9478, 0.21835, 0.73394, 0.12024, 0.47711, 0.00291, 0.21146, 0.30078, 0.03034, 0.70565, 0, 0.94326, 0.12507 ],
- "triangles": [ 6, 7, 8, 10, 0, 9, 6, 0, 5, 9, 6, 8, 9, 0, 6, 1, 5, 0, 3, 4, 5, 5, 1, 3, 2, 3, 1 ],
- "vertices": [ 14.82, 20.19, 29.96, 17.87, 39.75, 14.5, 38.85, -1, 35.36, -13.35, 25.34, -15.44, 13.25, -18.24, 0.65, -21.87, -5.45, -7.14, -4.13, 11.49, 3, 21.5 ],
- "hull": 11,
- "edges": [ 14, 12, 12, 10, 10, 8, 8, 6, 6, 4, 4, 2, 2, 0, 0, 20, 14, 16, 18, 20, 16, 18, 10, 2 ],
- "width": 46,
- "height": 45
- }
- },
- "3tui2": {
- "3tui2": {
- "type": "mesh",
- "uvs": [ 0.77078, 0.07029, 0.99999, 0.25381, 0.9233, 0.51444, 0.8276, 0.78306, 0.75941, 0.98138, 0.10601, 0.99202, 0.04351, 0.69795, 0.01136, 0.37349, 0, 0.07561, 0.40998, 0 ],
- "triangles": [ 2, 9, 0, 2, 0, 1, 7, 8, 9, 5, 6, 4, 4, 6, 3, 2, 3, 9, 7, 9, 3, 3, 6, 7 ],
- "vertices": [ 1, 53, 8.58, -42, 1, 2, 65, 4.04, 20.84, 0.33333, 53, 0.22, -52.31, 0.66667, 2, 65, 16.57, 18.78, 0.66667, 53, -12.12, -49.25, 0.33333, 1, 65, 29.58, 15.93, 1, 1, 65, 39.16, 13.94, 1, 1, 65, 42.71, -14.6, 1, 1, 65, 29.26, -18.8, 1, 2, 65, 14.24, -21.82, 0.66667, 53, -6.54, -8.97, 0.33333, 2, 65, 0.38, -23.8, 0.33333, 53, 7.44, -8.1, 0.66667, 1, 53, 11.47, -26.05, 1 ],
- "hull": 10,
- "edges": [ 10, 12, 12, 14, 8, 10, 8, 6, 6, 4, 4, 2, 2, 0, 0, 18, 14, 16, 18, 16 ],
- "width": 44,
- "height": 47
- }
- },
- "3weiba": {
- "3weiba": {
- "type": "mesh",
- "uvs": [ 0.29221, 0.20787, 0.44051, 0.34359, 0.60285, 0.45519, 0.86152, 0.46791, 0.97498, 0.59163, 0.98845, 0.75723, 0.9153, 0.90039, 0.7327, 0.98776, 0.55451, 0.98164, 0.30907, 0.87219, 0.12194, 0.63411, 0.00771, 0.35607, 0.06249, 0.02988, 0.14605, 0.02016 ],
- "triangles": [ 3, 6, 7, 3, 7, 2, 2, 7, 8, 8, 9, 2, 5, 3, 4, 5, 6, 3, 9, 1, 2, 9, 10, 1, 10, 0, 1, 10, 11, 0, 0, 12, 13, 12, 0, 11 ],
- "vertices": [ 2, 68, 7.88, -7.16, 0.8683, 67, 24.46, -9.84, 0.1317, 3, 68, -1.35, -11.92, 0.14952, 67, 14.08, -10.2, 0.79264, 66, 27.14, -16.1, 0.05784, 3, 68, -9.75, -17.81, 4.3E-4, 67, 3.97, -11.95, 0.40412, 66, 17.64, -12.25, 0.59545, 2, 67, -6.52, -20.8, 0.00356, 66, 4.05, -14.2, 0.99644, 1, 66, -3.02, -9.26, 1, 1, 66, -5.28, -1.26, 1, 1, 66, -2.82, 6.5, 1, 1, 66, 5.86, 12.61, 1, 2, 67, -12.03, 9.1, 0.05558, 66, 15.2, 14.09, 0.94442, 2, 67, 1.23, 13.93, 0.76588, 66, 29, 11.16, 0.23412, 2, 68, -8.51, 9.18, 0.02044, 67, 16.6, 11.93, 0.97956, 2, 68, 6.65, 9.59, 0.95693, 67, 30.49, 5.84, 0.04307, 1, 68, 20.69, 0.8, 1, 1, 68, 19.48, -3.49, 1 ],
- "hull": 14,
- "edges": [ 22, 24, 22, 20, 20, 18, 18, 16, 14, 16, 14, 12, 12, 10, 10, 8, 8, 6, 6, 4, 4, 2, 2, 0, 24, 26, 0, 26 ],
- "width": 53,
- "height": 50
- }
- },
- "3wuqi": {
- "3wuqi": {
- "type": "mesh",
- "uvs": [ 1, 0.32617, 1, 1, 0, 1, 0, 0.33322, 0, 0, 0.50084, 0, 1, 0, 0.51029, 0.49467, 0.50537, 0.1725, 0.25777, 0.21417, 0.74158, 0.21001 ],
- "triangles": [ 10, 8, 5, 6, 10, 5, 9, 4, 5, 9, 5, 8, 10, 6, 0, 3, 4, 9, 7, 8, 10, 9, 8, 7, 7, 2, 3, 7, 3, 9, 7, 10, 0, 1, 7, 0, 2, 7, 1 ],
- "vertices": [ 106.18, 46.09, 106.18, -115.63, -99.82, -115.63, -99.82, 44.39, -99.82, 124.37, 3.35, 124.37, 106.18, 124.37, 5.3, 5.65, 4.29, 82.97, -46.72, 72.97, 52.94, 73.97 ],
- "hull": 7,
- "edges": [ 2, 4, 4, 6, 6, 8, 2, 0, 0, 12, 8, 10, 10, 12 ],
- "width": 206,
- "height": 240
- }
- }
- }
- }
- ],
- "events": {
- "effect": {},
- "fire": {}
- },
- "animations": {
- "atk_down": {
- "slots": {
- "1bizi": {
- "attachment": [
- { "name": null }
- ]
- },
- "1body": {
- "attachment": [
- { "name": null }
- ]
- },
- "1daiz": {
- "attachment": [
- { "name": null }
- ]
- },
- "1daizyy": {
- "attachment": [
- { "name": null }
- ]
- },
- "1e1": {
- "attachment": [
- { "name": null }
- ]
- },
- "1e2": {
- "attachment": [
- { "name": null }
- ]
- },
- "1er1": {
- "attachment": [
- { "name": null }
- ]
- },
- "1er2": {
- "attachment": [
- { "name": null }
- ]
- },
- "1fa": {
- "attachment": [
- { "name": null }
- ]
- },
- "1mm1": {
- "attachment": [
- { "name": null }
- ]
- },
- "1mm2": {
- "attachment": [
- { "name": null }
- ]
- },
- "1shou1": {
- "attachment": [
- { "name": null }
- ]
- },
- "1shou2": {
- "attachment": [
- { "name": null }
- ]
- },
- "1tou": {
- "attachment": [
- { "name": null }
- ]
- },
- "1touying": {
- "attachment": [
- { "name": null }
- ]
- },
- "1tui1": {
- "attachment": [
- { "name": null }
- ]
- },
- "1tui2": {
- "attachment": [
- { "name": null }
- ]
- },
- "1weiba": {
- "attachment": [
- { "name": null }
- ]
- },
- "1wuqi": {
- "attachment": [
- { "name": null }
- ]
- },
- "1zui": {
- "attachment": [
- { "name": null }
- ]
- },
- "3body": {
- "attachment": [
- { "name": null }
- ]
- },
- "3daizi": {
- "attachment": [
- { "name": null }
- ]
- },
- "3er1": {
- "attachment": [
- { "name": null }
- ]
- },
- "3er2": {
- "attachment": [
- { "name": null }
- ]
- },
- "3fa": {
- "attachment": [
- { "name": null }
- ]
- },
- "3shou1": {
- "attachment": [
- { "name": null }
- ]
- },
- "3shou2": {
- "attachment": [
- { "name": null }
- ]
- },
- "3tou": {
- "attachment": [
- { "name": null }
- ]
- },
- "3touying": {
- "attachment": [
- { "name": null }
- ]
- },
- "3tui1": {
- "attachment": [
- { "name": null }
- ]
- },
- "3tui2": {
- "attachment": [
- { "name": null }
- ]
- },
- "3weiba": {
- "attachment": [
- { "name": null }
- ]
- },
- "3wuqi": {
- "attachment": [
- { "name": null }
- ]
- }
- },
- "bones": {
- "bone_down5": {
- "rotate": [
- { "angle": -0.6, "curve": 0.381, "c2": 0.55, "c3": 0.742 },
- { "time": 0.2, "angle": 5.95 },
- { "time": 0.2333, "angle": -3.32, "curve": 0.339, "c2": 0.35, "c3": 0.674, "c4": 0.69 },
- { "time": 0.3667, "angle": -16.59, "curve": 0.345, "c2": 0.38, "c3": 0.68, "c4": 0.71 },
- { "time": 0.4667, "angle": -9.32, "curve": 0.375, "c2": 0.62, "c3": 0.716 },
- { "time": 0.5667, "angle": -6.76, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "angle": -0.6 }
- ],
- "translate": [
- { "x": 1.25, "y": -0.02, "curve": "stepped" },
- { "time": 0.2, "x": 1.25, "y": -0.02 },
- { "time": 0.2333, "x": -0.89, "y": -2.97, "curve": 0.381, "c2": 0.55, "c3": 0.742 },
- { "time": 0.5667, "x": -5.2, "y": -3.72, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "x": 1.25, "y": -0.02 }
- ]
- },
- "2tui2": {
- "rotate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.2333, "angle": 14.73 },
- { "time": 0.3333, "angle": 6.02, "curve": 0.25, "c3": 0.75 },
- { "time": 0.5, "angle": 9.95, "curve": 0.25, "c3": 0.75 },
- { "time": 0.7 }
- ],
- "translate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.2333, "x": -5.38, "y": 4.48 },
- { "time": 0.3333, "y": 4.3, "curve": 0.25, "c3": 0.75 },
- { "time": 0.5, "y": 2.11, "curve": 0.25, "c3": 0.75 },
- { "time": 0.7 }
- ],
- "scale": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.2333, "x": 1.032, "y": 1.032 },
- { "time": 0.3333, "x": 0.848, "curve": 0.25, "c3": 0.75 },
- { "time": 0.5, "x": 0.842, "y": 0.957, "curve": 0.25, "c3": 0.75 },
- { "time": 0.7 }
- ]
- },
- "bone_down3": {
- "rotate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.2333, "angle": -1.13 },
- { "time": 0.3333, "angle": -4.38, "curve": 0.25, "c3": 0.75 },
- { "time": 0.5, "angle": -5.83, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333 }
- ],
- "translate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.2333, "x": 3.75, "y": 4.48 },
- { "time": 0.3333, "x": 5.15, "y": -1.72, "curve": 0.25, "c3": 0.75 },
- { "time": 0.5, "x": 5.15, "y": -3.65, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333 }
- ]
- },
- "2shou2": {
- "rotate": [
- { "angle": -2.95, "curve": 0.25, "c3": 0.75 },
- { "time": 0.1, "angle": -16.67, "curve": 0.25, "c3": 0.75 },
- { "time": 0.2333, "angle": -11.78 },
- { "time": 0.3333, "angle": -12.52, "curve": 0.381, "c2": 0.55, "c3": 0.742 },
- { "time": 0.5, "angle": -32.33, "curve": 0.25, "c3": 0.75 },
- { "time": 0.7, "angle": -1.59, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "angle": -2.95 }
- ]
- },
- "2er1": {
- "rotate": [
- { "angle": -6.16, "curve": 0.363, "c2": 0.44, "c3": 0.755 },
- { "time": 0.2333, "angle": -17.66 },
- { "time": 0.3333, "angle": -6.16, "curve": 0.363, "c2": 0.44, "c3": 0.755 },
- { "time": 0.5, "angle": 7.43, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "angle": -6.16 }
- ]
- },
- "2wuqi": {
- "rotate": [
- { "angle": 355.77, "curve": 0.25, "c3": 0.75 },
- { "time": 0.1, "angle": 354.69, "curve": "stepped" },
- { "time": 0.1667, "angle": 7.38, "curve": "stepped" },
- { "time": 0.2, "angle": 190.17, "curve": "stepped" },
- { "time": 0.2333, "angle": -175.5, "curve": 0.265, "c3": 0.618, "c4": 0.43 },
- { "time": 0.2667, "angle": 173.08, "curve": 0.325, "c2": 0.31, "c3": 0.675, "c4": 0.69 },
- { "time": 0.4, "angle": 175.71, "curve": 0.356, "c2": 0.42, "c3": 0.696, "c4": 0.78 },
- { "time": 0.5, "angle": -175.07, "curve": 0.366, "c2": 0.63, "c3": 0.703 },
- { "time": 0.6, "angle": 174.05, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "angle": 186.69 }
- ],
- "translate": [
- { "y": 8.02, "curve": 0.372, "c2": 0.48, "c3": 0.752 },
- { "time": 0.1, "x": 13.83, "y": 87.36 },
- { "time": 0.1667, "x": -4.01, "y": 86.35, "curve": "stepped" },
- { "time": 0.2, "x": -16.93, "y": 42.8, "curve": "stepped" },
- {
- "time": 0.2333,
- "x": -15.05,
- "y": 13.2,
- "curve": 0.337,
- "c2": 0.34,
- "c3": 0.677,
- "c4": 0.7
- },
- {
- "time": 0.2667,
- "x": -7.29,
- "y": -38.13,
- "curve": 0.352,
- "c2": 0.4,
- "c3": 0.689,
- "c4": 0.75
- },
- {
- "time": 0.4,
- "x": 6.53,
- "y": 44.84,
- "curve": 0.353,
- "c2": 0.45,
- "c3": 0.688,
- "c4": 0.8
- },
- { "time": 0.5, "x": 26.31, "y": 69.89, "curve": 0.352, "c2": 0.65, "c3": 0.686 },
- { "time": 0.6, "x": 32.48, "y": -32.47, "curve": 0.243, "c3": 0.649, "c4": 0.6 },
- { "time": 0.7, "x": 7.18, "y": -22.36, "curve": 0.382, "c2": 0.57, "c3": 0.735 },
- { "time": 0.8333, "y": 8.02 }
- ],
- "scale": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.1, "x": 0.884, "y": 1.298 },
- { "time": 0.1667, "x": 1.317, "y": 1.179, "curve": "stepped" },
- { "time": 0.2, "x": 1.143, "y": 0.73, "curve": "stepped" },
- { "time": 0.2333, "x": 0.865, "y": 1.055, "curve": 0.258, "c3": 0.619, "c4": 0.45 },
- {
- "time": 0.2667,
- "x": 0.929,
- "y": 0.967,
- "curve": 0.333,
- "c2": 0.33,
- "c3": 0.68,
- "c4": 0.71
- },
- {
- "time": 0.4,
- "x": 1.05,
- "y": 0.966,
- "curve": 0.352,
- "c2": 0.41,
- "c3": 0.689,
- "c4": 0.75
- },
- { "time": 0.5, "x": 1.078, "y": 0.927, "curve": 0.369, "c2": 0.63, "c3": 0.706 },
- { "time": 0.6, "x": 0.913, "y": 1.171, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333 }
- ],
- "shear": [
- {},
- { "time": 0.1, "x": 7.64, "y": 2.01 },
- { "time": 0.2, "x": -0.86, "y": 1.86 },
- { "time": 0.2333, "x": -3.65, "y": 1.76 },
- { "time": 0.8333 }
- ]
- },
- "bone_down6": {
- "rotate": [
- { "angle": -2.21, "curve": 0.25, "c3": 0.75 },
- { "time": 0.1, "angle": -19.03, "curve": 0.25, "c3": 0.75 },
- { "time": 0.2333, "angle": 9.43 },
- { "time": 0.3333, "angle": 8.12, "curve": 0.363, "c2": 0.44, "c3": 0.755 },
- { "time": 0.5, "angle": -14.53, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "angle": -2.21 }
- ],
- "translate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.1, "x": 1.1, "y": -3.88, "curve": 0.25, "c3": 0.75 },
- { "time": 0.2333, "curve": "stepped" },
- { "time": 0.3333 },
- { "time": 0.5, "x": -0.4, "y": -3.33, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333 }
- ]
- },
- "bone_down4": {
- "rotate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.2, "angle": 5.59 },
- { "time": 0.2333, "angle": -5.53, "curve": 0.243, "c3": 0.649, "c4": 0.6 },
- { "time": 0.4667, "angle": 1.4, "curve": 0.382, "c2": 0.57, "c3": 0.735 },
- { "time": 0.5667, "angle": -7.13, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333 }
- ],
- "translate": [
- { "x": 0.66, "y": 0.01, "curve": 0.375, "c2": 0.62, "c3": 0.716 },
- { "time": 0.2, "x": 1.64, "y": 1.75 },
- {
- "time": 0.2333,
- "x": -0.45,
- "y": -6.99,
- "curve": 0.345,
- "c2": 0.39,
- "c3": 0.679,
- "c4": 0.72
- },
- {
- "time": 0.3667,
- "x": -7.91,
- "y": -5.6,
- "curve": 0.348,
- "c2": 0.43,
- "c3": 0.682,
- "c4": 0.77
- },
- { "time": 0.4667, "x": 6.82, "y": -0.91, "curve": 0.352, "c2": 0.65, "c3": 0.687 },
- { "time": 0.5667, "x": -6.86, "y": -7.55, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "x": 0.66, "y": 0.01 }
- ]
- },
- "bone_down7": {
- "rotate": [
- { "angle": -9.14, "curve": 0.25, "c3": 0.75 },
- { "time": 0.0667, "angle": 8.02, "curve": 0.25, "c3": 0.75 },
- { "time": 0.1333, "angle": -6.4, "curve": 0.25, "c3": 0.75 },
- { "time": 0.2333, "angle": 5.37 },
- { "time": 0.3333, "angle": 9.43, "curve": 0.32, "c2": 0.29, "c3": 0.757 },
- { "time": 0.6, "angle": -21.61, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "angle": -9.14 }
- ],
- "translate": [
- { "x": 2.19, "y": -3.08, "curve": 0.25, "c3": 0.75 },
- { "time": 0.0667, "x": 1.5, "y": -0.36, "curve": 0.25, "c3": 0.75 },
- { "time": 0.1333, "x": 1.58, "y": -5.19, "curve": 0.25, "c3": 0.75 },
- { "time": 0.2333, "x": 2.97, "y": 1.59 },
- { "time": 0.3333, "x": 3.55, "y": 1.45, "curve": 0.32, "c2": 0.29, "c3": 0.757 },
- { "time": 0.6, "x": 2.85, "y": -4.43, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "x": 2.19, "y": -3.08 }
- ]
- },
- "2shou1": {
- "rotate": [
- { "angle": -0.02, "curve": 0.25, "c3": 0.75 },
- { "time": 0.2333, "angle": 2.22 },
- { "time": 0.3333, "angle": -0.02, "curve": 0.25, "c3": 0.75 },
- { "time": 0.5, "angle": -12.77, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "angle": -0.02 }
- ],
- "translate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.2333, "x": -0.59, "y": 8.59 },
- { "time": 0.3333 }
- ]
- },
- "2e2": {
- "scale": [
- { "time": 0.2333 },
- { "time": 0.3333, "x": 0.226, "curve": 0.258, "c3": 0.619, "c4": 0.45 },
- { "time": 0.4667 }
- ]
- },
- "2tui1": {
- "rotate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.2333, "angle": -4.57, "curve": "stepped" },
- { "time": 0.5, "angle": -4.57, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333 }
- ],
- "translate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.2333, "x": 6.01, "y": 2.58, "curve": "stepped" },
- { "time": 0.5, "x": 6.01, "y": 2.58, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333 }
- ]
- },
- "2zui": {
- "scale": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.2333, "x": 1.437, "y": 1.437 },
- { "time": 0.3333, "curve": 0.25, "c3": 0.75 },
- { "time": 0.5, "x": 0.773, "y": 0.773, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333 }
- ]
- },
- "2e1": {
- "scale": [
- { "time": 0.2333 },
- { "time": 0.3333, "x": 0.226, "curve": 0.258, "c3": 0.619, "c4": 0.45 },
- { "time": 0.4667 }
- ]
- },
- "ik2": {
- "translate": [
- { "y": 7.49, "curve": 0.355, "c2": 0.42, "c3": 0.694, "c4": 0.77 },
- {
- "time": 0.1333,
- "x": 10.36,
- "y": 47.31,
- "curve": 0.354,
- "c2": 0.48,
- "c3": 0.689,
- "c4": 0.82
- },
- { "time": 0.2, "x": 4.32, "y": 83.21, "curve": 0.348, "c2": 0.66, "c3": 0.681 },
- { "time": 0.2333, "x": 22.01, "y": 26.38 },
- { "time": 0.3333, "y": -19.72, "curve": 0.382, "c2": 0.57, "c3": 0.735 },
- { "time": 0.6, "y": -37.11, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "y": 7.49 }
- ]
- },
- "2er2": {
- "rotate": [
- { "angle": 7.43, "curve": 0.363, "c2": 0.44, "c3": 0.755 },
- { "time": 0.2333, "angle": 18.47 },
- { "time": 0.3333, "angle": 7.43, "curve": 0.363, "c2": 0.44, "c3": 0.755 },
- { "time": 0.5, "angle": -12.44, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "angle": 7.43 }
- ]
- },
- "2shou3": {
- "rotate": [
- { "angle": -2.85, "curve": 0.25, "c3": 0.75 },
- { "time": 0.1333, "angle": 0.96, "curve": 0.25, "c3": 0.75 },
- { "time": 0.2333, "angle": 47.24 },
- { "time": 0.3333, "angle": 9.8, "curve": 0.363, "c2": 0.44, "c3": 0.755 },
- { "time": 0.6, "angle": -9.92, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "angle": -2.85 }
- ],
- "translate": [
- { "x": -0.08, "y": -2.15, "curve": 0.25, "c3": 0.75 },
- { "time": 0.2333, "x": 2.65, "y": 1.19 },
- { "time": 0.3333, "x": 2.8, "y": 0.56, "curve": 0.363, "c2": 0.44, "c3": 0.755 },
- { "time": 0.6, "x": 2.39, "y": -0.65, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "x": -0.08, "y": -2.15 }
- ]
- }
- },
- "deform": {
- "default": {
- "2wuqi": {
- "2wuqi": [
- {},
- {
- "time": 0.1,
- "vertices": [ -4.96167, 2.7446, 7.58875, 7.69252, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11.0397, -39.94226, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11.80167, -9.20959, 0, 0, 10.99259, -50.73877, -15.7357, -6.84401 ],
- "curve": "stepped"
- },
- {
- "time": 0.2,
- "vertices": [ -5.61459, -51.70123, -5.61459, -51.70123, 0, -1.73699, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1.73699, 2.16259, 13.92091, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6.57592, -12.00348, 0.28949, -1.544, -4.88473, -3.26337, -6.57592, -12.00348, -0.8685, -2.316 ]
- },
- {
- "time": 0.6,
- "offset": 5,
- "vertices": [ -10.42195, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10.42195, 5.43814, 9.37433, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -2.0E-5, -9.84299, 1.73697, -9.26402, -4.04197, 3.48142, -2.0E-5, -9.84299, -5.211, -13.89601 ]
- },
- { "time": 0.8333 }
- ]
- }
- }
- },
- "drawOrder": [
- {
- "time": 0.2,
- "offsets": [
- { "slot": "2shou2", "offset": 2 },
- { "slot": "2shou1", "offset": -7 }
- ]
- },
- {
- "time": 0.6,
- "offsets": [
- { "slot": "2shou1", "offset": -7 }
- ]
- },
- { "time": 0.8333 }
- ],
- "events": [
- { "time": 0.2, "name": "effect" },
- { "time": 0.2667, "name": "fire" },
- { "time": 0.4667, "name": "effect" },
- { "time": 0.5333, "name": "fire" }
- ]
- },
- "atk_left": {
- "slots": {
- "2bizi": {
- "attachment": [
- { "name": null }
- ]
- },
- "2body": {
- "attachment": [
- { "name": null }
- ]
- },
- "2daizi": {
- "attachment": [
- { "name": null }
- ]
- },
- "2daiziyy": {
- "attachment": [
- { "name": null }
- ]
- },
- "2e1": {
- "attachment": [
- { "name": null }
- ]
- },
- "2e2": {
- "attachment": [
- { "name": null }
- ]
- },
- "2er1": {
- "attachment": [
- { "name": null }
- ]
- },
- "2er2": {
- "attachment": [
- { "name": null }
- ]
- },
- "2fa": {
- "attachment": [
- { "name": null }
- ]
- },
- "2mm1": {
- "attachment": [
- { "name": null }
- ]
- },
- "2mm2": {
- "attachment": [
- { "name": null }
- ]
- },
- "2shou1": {
- "attachment": [
- { "name": null }
- ]
- },
- "2shou2": {
- "attachment": [
- { "name": null }
- ]
- },
- "2tou": {
- "attachment": [
- { "name": null }
- ]
- },
- "2touying": {
- "attachment": [
- { "name": null }
- ]
- },
- "2tui1": {
- "attachment": [
- { "name": null }
- ]
- },
- "2tui2": {
- "attachment": [
- { "name": null }
- ]
- },
- "2wuqi": {
- "attachment": [
- { "name": null }
- ]
- },
- "2zui": {
- "attachment": [
- { "name": null }
- ]
- },
- "3body": {
- "attachment": [
- { "name": null }
- ]
- },
- "3daizi": {
- "attachment": [
- { "name": null }
- ]
- },
- "3er1": {
- "attachment": [
- { "name": null }
- ]
- },
- "3er2": {
- "attachment": [
- { "name": null }
- ]
- },
- "3fa": {
- "attachment": [
- { "name": null }
- ]
- },
- "3shou1": {
- "attachment": [
- { "name": null }
- ]
- },
- "3shou2": {
- "attachment": [
- { "name": null }
- ]
- },
- "3tou": {
- "attachment": [
- { "name": null }
- ]
- },
- "3touying": {
- "attachment": [
- { "name": null }
- ]
- },
- "3tui1": {
- "attachment": [
- { "name": null }
- ]
- },
- "3tui2": {
- "attachment": [
- { "name": null }
- ]
- },
- "3weiba": {
- "attachment": [
- { "name": null }
- ]
- },
- "3wuqi": {
- "attachment": [
- { "name": null }
- ]
- }
- },
- "bones": {
- "bone_right5": {
- "rotate": [
- { "angle": -0.89, "curve": 0.246, "c3": 0.633, "c4": 0.54 },
- { "time": 0.1333, "angle": -0.33, "curve": 0.38, "c2": 0.53, "c3": 0.745 },
- { "time": 0.2, "angle": -3.84 },
- { "time": 0.2667, "angle": 8.17, "curve": 0.341, "c2": 0.36, "c3": 0.68, "c4": 0.71 },
- { "time": 0.4, "angle": -14.28, "curve": 0.381, "c2": 0.59, "c3": 0.728 },
- { "time": 0.6, "angle": 2.45, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "angle": -0.89 }
- ],
- "translate": [
- { "x": 1.66, "y": 0.07, "curve": 0.25, "c3": 0.75 },
- { "time": 0.2, "x": 1.29, "y": -9.24 },
- {
- "time": 0.2667,
- "x": 1.66,
- "y": 0.07,
- "curve": 0.341,
- "c2": 0.36,
- "c3": 0.68,
- "c4": 0.71
- },
- { "time": 0.4, "x": -7.75, "y": -2.86, "curve": 0.381, "c2": 0.59, "c3": 0.728 },
- { "time": 0.6, "x": 2.97, "y": 2.55, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "x": 1.66, "y": 0.07 }
- ],
- "shear": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.2, "y": 3.78 },
- { "time": 0.2667 }
- ]
- },
- "bone_right8": {
- "rotate": [
- { "angle": -5.75, "curve": 0.351, "c2": 0.4, "c3": 0.757 },
- { "time": 0.2, "angle": 3.09 },
- { "time": 0.2667, "angle": -5.75, "curve": 0.351, "c2": 0.4, "c3": 0.757 },
- { "time": 0.5, "angle": -13.12, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "angle": -5.75 }
- ],
- "translate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.2, "x": -1, "y": -0.52 },
- { "time": 0.2667, "curve": 0.25, "c3": 0.75 },
- { "time": 0.5, "x": 3.07, "y": -1.19, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333 }
- ],
- "scale": [
- { "x": 0.955 }
- ]
- },
- "1e1": {
- "translate": [
- { "time": 0.2 },
- { "time": 0.2667, "x": 3.81, "y": -2.68, "curve": 0.261, "c3": 0.618, "c4": 0.44 },
- { "time": 0.5 }
- ],
- "scale": [
- { "time": 0.2 },
- { "time": 0.2667, "x": 0.415, "curve": 0.261, "c3": 0.618, "c4": 0.44 },
- { "time": 0.5, "x": 0.8, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333 }
- ]
- },
- "bone_right9": {
- "rotate": [
- { "angle": 7.34, "curve": 0.351, "c2": 0.4, "c3": 0.757 },
- { "time": 0.2, "angle": 17.14 },
- { "time": 0.2667, "angle": 7.34, "curve": 0.351, "c2": 0.4, "c3": 0.757 },
- { "time": 0.5, "angle": 0.04, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "angle": 7.34 }
- ],
- "scale": [
- { "x": 0.944 }
- ]
- },
- "bone_right": {
- "translate": [
- { "x": 421.03 }
- ],
- "scale": [
- { "x": -1 }
- ]
- },
- "1shou2": {
- "rotate": [
- { "angle": -9.18, "curve": 0.351, "c2": 0.4, "c3": 0.757 },
- { "time": 0.2, "angle": 7.99 },
- { "time": 0.2333, "angle": 7.68 },
- { "time": 0.2667, "angle": -21.83, "curve": 0.351, "c2": 0.4, "c3": 0.757 },
- { "time": 0.5, "angle": -34.75, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "angle": -9.18 }
- ],
- "translate": [
- { "x": 0.41, "y": -1.84, "curve": 0.351, "c2": 0.4, "c3": 0.757 },
- { "time": 0.2, "x": -1.39, "y": 4.01 },
- { "time": 0.2333, "x": 1.74, "y": 4.47 },
- {
- "time": 0.2667,
- "x": 2.65,
- "y": -3.84,
- "curve": 0.324,
- "c2": 0.3,
- "c3": 0.666,
- "c4": 0.66
- },
- { "time": 0.5, "x": 1.66, "y": -2.96, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "x": 0.41, "y": -1.84 }
- ]
- },
- "1shou4": {
- "rotate": [
- { "angle": -9.13 },
- { "time": 0.2, "angle": 18.23 },
- { "time": 0.2667, "angle": 2.98 },
- { "time": 0.5, "angle": 13.18, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "angle": -9.13 }
- ]
- },
- "1shou1": {
- "rotate": [
- { "angle": -4.14, "curve": 0.378, "c2": 0.52, "c3": 0.748 },
- { "time": 0.2, "angle": 14.46 },
- { "time": 0.2333, "angle": 9.88 },
- { "time": 0.2667, "angle": -14.74, "curve": 0.378, "c2": 0.52, "c3": 0.748 },
- { "time": 0.5, "angle": -27.66, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "angle": -4.14 }
- ],
- "translate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.2, "x": 0.23, "y": -6.31 },
- { "time": 0.2667 }
- ]
- },
- "1weiba": {
- "rotate": [
- { "angle": -2.99, "curve": 0.378, "c2": 0.52, "c3": 0.748 },
- { "time": 0.2, "angle": -19.4 },
- { "time": 0.2667, "angle": 7.64, "curve": 0.378, "c2": 0.52, "c3": 0.748 },
- { "time": 0.4667, "angle": 21.98, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "angle": -2.99 }
- ],
- "translate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.2, "x": -2.03, "y": -8.38 },
- { "time": 0.2667 }
- ]
- },
- "1weiba2": {
- "rotate": [
- { "angle": -5.71, "curve": 0.25, "c3": 0.75 },
- { "time": 0.0667, "angle": 10.82, "curve": 0.25, "c3": 0.75 },
- { "time": 0.2, "angle": -22.12 },
- { "time": 0.2667, "angle": -21.51, "curve": 0.32, "c2": 0.29, "c3": 0.757 },
- { "time": 0.5, "angle": 18.09, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "angle": -5.71 }
- ],
- "translate": [
- { "x": 0.32, "y": -2.94, "curve": "stepped" },
- { "time": 0.2, "x": 0.32, "y": -2.94 },
- {
- "time": 0.2667,
- "x": 4.31,
- "y": 1.47,
- "curve": 0.306,
- "c2": 0.24,
- "c3": 0.652,
- "c4": 0.62
- },
- { "time": 0.5, "x": 2.69, "y": -0.32, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "x": 0.32, "y": -2.94 }
- ]
- },
- "1tui1": {
- "rotate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.2, "angle": 6.56 },
- { "time": 0.2667, "angle": -17.54, "curve": 0.261, "c3": 0.618, "c4": 0.44 },
- { "time": 0.5, "angle": -31.11, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333 }
- ],
- "translate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.2, "x": 2.06 },
- { "time": 0.2333, "x": 6.05, "y": 0.91 },
- { "time": 0.2667, "x": 5.48, "y": 1.83, "curve": 0.261, "c3": 0.618, "c4": 0.44 },
- { "time": 0.5, "x": 9.18, "y": 3.67, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333 }
- ]
- },
- "1tui2": {
- "rotate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.2, "angle": 27.15 },
- { "time": 0.2333 }
- ],
- "translate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.2, "x": -7.72, "y": 6.96 },
- { "time": 0.2333 }
- ]
- },
- "bone_right6": {
- "rotate": [
- { "angle": 7.4, "curve": 0.351, "c2": 0.4, "c3": 0.757 },
- { "time": 0.2, "angle": 33.17 },
- { "time": 0.2667, "angle": 7.4, "curve": 0.351, "c2": 0.4, "c3": 0.757 },
- { "time": 0.6, "angle": -1.14, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "angle": 7.4 }
- ],
- "translate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.2, "x": -0.99, "y": 6.11 },
- { "time": 0.2667, "curve": 0.25, "c3": 0.75 },
- { "time": 0.6, "x": -0.64, "y": -6.22, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333 }
- ]
- },
- "bone_right10": {
- "translate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.2, "x": 0.31, "y": -8.64 },
- { "time": 0.2667 }
- ]
- },
- "bone_right7": {
- "rotate": [
- { "angle": 8.98, "curve": 0.32, "c2": 0.29, "c3": 0.757 },
- { "time": 0.2, "angle": 34.76 },
- { "time": 0.2667, "angle": 8.98, "curve": 0.32, "c2": 0.29, "c3": 0.757 },
- { "time": 0.5, "angle": 0.45, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "angle": 8.98 }
- ],
- "translate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.2, "x": -0.99, "y": 6.11 },
- { "time": 0.2667, "curve": 0.25, "c3": 0.75 },
- { "time": 0.5, "x": -0.64, "y": -6.22, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333 }
- ]
- },
- "1e2": {
- "translate": [
- { "time": 0.2, "curve": 0.25, "c3": 0.75 },
- { "time": 0.2667, "x": 4.05, "y": 0.71, "curve": 0.261, "c3": 0.618, "c4": 0.44 },
- { "time": 0.5 }
- ],
- "scale": [
- { "time": 0.2, "curve": 0.25, "c3": 0.75 },
- { "time": 0.2667, "x": 0.491, "curve": 0.261, "c3": 0.618, "c4": 0.44 },
- { "time": 0.5, "x": 0.8, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333 }
- ]
- },
- "1shou3": {
- "rotate": [
- { "angle": 4.73 },
- { "time": 0.2, "angle": 146.23 },
- { "time": 0.2667, "angle": 51.66 },
- { "time": 0.5, "angle": 33.04, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "angle": 4.73 }
- ],
- "translate": [
- {},
- { "time": 0.2, "x": -0.38, "y": 10.52 },
- { "time": 0.2667 },
- { "time": 0.5, "x": 1.11, "y": -2.05, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333 }
- ]
- },
- "1weiba3": {
- "rotate": [
- { "angle": -6.11, "curve": 0.25, "c3": 0.75 },
- { "time": 0.1333, "angle": 32.44, "curve": 0.25, "c3": 0.75 },
- { "time": 0.2, "angle": -22.52 },
- { "time": 0.2667, "angle": -21.65 },
- { "time": 0.4333, "angle": 0.61, "curve": 0.357, "c2": 0.65, "c3": 0.692 },
- { "time": 0.6, "angle": 43.89, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "angle": -6.11 }
- ],
- "translate": [
- { "x": 3.49, "y": -4.29, "curve": "stepped" },
- { "time": 0.2, "x": 3.49, "y": -4.29 },
- {
- "time": 0.2667,
- "x": 4.94,
- "y": 1.79,
- "curve": 0.344,
- "c2": 0.4,
- "c3": 0.677,
- "c4": 0.73
- },
- { "time": 0.6, "x": 4.15, "y": -1.55, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "x": 3.49, "y": -4.29 }
- ]
- },
- "1wuqi": {
- "rotate": [
- {},
- { "time": 0.0667, "angle": -93.17 },
- { "time": 0.1333, "angle": -106.31 },
- { "time": 0.2333, "angle": -111.29 },
- { "time": 0.2667, "angle": -122.39 },
- { "time": 0.3, "angle": -98.43 },
- { "time": 0.3667, "angle": -88.91 },
- { "time": 0.5, "angle": -72.16 },
- { "time": 0.6, "angle": -72.75 },
- { "time": 0.6667, "angle": -77.92 },
- { "time": 0.7333, "angle": -15.69 },
- { "time": 0.8333 }
- ],
- "translate": [
- { "x": -8.91, "y": -5.93, "curve": 0.363, "c2": 0.44, "c3": 0.755 },
- { "time": 0.0667, "x": -38.39, "y": 43.13, "curve": 0.38, "c2": 0.6, "c3": 0.725 },
- { "time": 0.1333, "x": -28.31, "y": 3.16 },
- { "time": 0.2333, "x": -38.34, "y": 0.72 },
- {
- "time": 0.2667,
- "x": 22.42,
- "y": -27.36,
- "curve": 0.331,
- "c2": 0.33,
- "c3": 0.671,
- "c4": 0.68
- },
- { "time": 0.3, "x": 10.98, "y": -19.54, "curve": 0.284, "c3": 0.625, "c4": 0.38 },
- {
- "time": 0.3667,
- "x": -29.77,
- "y": -2.33,
- "curve": 0.324,
- "c2": 0.3,
- "c3": 0.658,
- "c4": 0.63
- },
- {
- "time": 0.5,
- "x": -41.82,
- "y": -5.47,
- "curve": 0.324,
- "c2": 0.3,
- "c3": 0.658,
- "c4": 0.63
- },
- {
- "time": 0.6,
- "x": -23.12,
- "y": -7.28,
- "curve": 0.327,
- "c2": 0.31,
- "c3": 0.661,
- "c4": 0.65
- },
- {
- "time": 0.6667,
- "x": -35.76,
- "y": -2.13,
- "curve": 0.35,
- "c2": 0.43,
- "c3": 0.684,
- "c4": 0.77
- },
- { "time": 0.7333, "x": -36.21, "y": 32.62, "curve": 0.356, "c2": 0.65, "c3": 0.691 },
- { "time": 0.8333, "x": -8.91, "y": -5.93 }
- ]
- },
- "ik1": {
- "rotate": [
- { "time": 0.2667 },
- { "time": 0.4, "angle": -22.22 },
- { "time": 0.6, "angle": -47.01 },
- { "time": 0.8333 }
- ],
- "translate": [
- { "x": 1.51, "y": 12.15, "curve": 0.341, "c2": 0.36, "c3": 0.676, "c4": 0.7 },
- {
- "time": 0.0667,
- "x": -1.65,
- "y": 77.93,
- "curve": 0.348,
- "c2": 0.39,
- "c3": 0.683,
- "c4": 0.73
- },
- { "time": 0.1333, "x": -20.38, "y": 67.76, "curve": 0.372, "c2": 0.62, "c3": 0.711 },
- { "time": 0.2, "x": -6.16, "y": 33.74, "curve": 0.381, "c2": 0.55, "c3": 0.742 },
- { "time": 0.2333, "x": 8.12, "y": 18.93, "curve": 0.381, "c2": 0.55, "c3": 0.742 },
- {
- "time": 0.2667,
- "x": 31.89,
- "y": 18.83,
- "curve": 0.345,
- "c2": 0.37,
- "c3": 0.682,
- "c4": 0.72
- },
- {
- "time": 0.3,
- "x": 48.41,
- "y": -4.48,
- "curve": 0.36,
- "c2": 0.46,
- "c3": 0.698,
- "c4": 0.81
- },
- {
- "time": 0.3333,
- "x": 40.96,
- "y": -8.98,
- "curve": 0.344,
- "c2": 0.44,
- "c3": 0.677,
- "c4": 0.77
- },
- { "time": 0.4, "x": -11.22, "y": 30.39, "curve": 0.345, "c2": 0.66, "c3": 0.679 },
- { "time": 0.5333, "x": -21.65, "y": 42.25, "curve": 0.355, "c2": 0.65, "c3": 0.69 },
- { "time": 0.6, "x": 47.17, "y": 2.2, "curve": 0.255, "c3": 0.62, "c4": 0.47 },
- { "time": 0.7333, "x": 20.36, "y": 5.43, "curve": 0.381, "c2": 0.59, "c3": 0.729 },
- { "time": 0.8333, "x": 1.51, "y": 12.15 }
- ]
- },
- "bone_right4": {
- "rotate": [
- { "angle": 0.57, "curve": 0.25, "c3": 0.75 },
- { "time": 0.0667, "angle": 9.49, "curve": 0.25, "c3": 0.75 },
- { "time": 0.2, "angle": 23.64 },
- { "time": 0.2333, "angle": 25.25 },
- { "time": 0.2667, "angle": 17.3, "curve": 0.345, "c2": 0.38, "c3": 0.68, "c4": 0.72 },
- { "time": 0.3667, "angle": -9.51, "curve": 0.35, "c2": 0.42, "c3": 0.685, "c4": 0.77 },
- { "time": 0.5333, "angle": 24.09, "curve": 0.357, "c2": 0.65, "c3": 0.692 },
- { "time": 0.6, "angle": -15.67, "curve": 0.243, "c3": 0.649, "c4": 0.6 },
- { "time": 0.8333, "angle": 0.57 }
- ],
- "translate": [
- { "time": 0.2 },
- { "time": 0.2333, "x": 6.26, "y": 1.8 },
- { "time": 0.2667, "x": 3.02, "y": 2.34, "curve": 0.265, "c3": 0.618, "c4": 0.43 },
- {
- "time": 0.3667,
- "x": 2.3,
- "y": -8.85,
- "curve": 0.325,
- "c2": 0.31,
- "c3": 0.675,
- "c4": 0.69
- },
- { "time": 0.5333, "x": 2.56, "y": -2.06, "curve": 0.382, "c2": 0.57, "c3": 0.735 },
- { "time": 0.6, "x": 2.7, "y": -10.92, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333 }
- ]
- },
- "bone_right3": {
- "rotate": [
- { "angle": -0.18, "curve": 0.38, "c2": 0.59, "c3": 0.727 },
- { "time": 0.2, "angle": -8.13 },
- { "time": 0.2333, "angle": -14.19 },
- { "time": 0.2667, "angle": -28.12, "curve": 0.342, "c2": 0.37, "c3": 0.676, "c4": 0.7 },
- { "time": 0.3333, "angle": -24.83, "curve": 0.346, "c2": 0.39, "c3": 0.68, "c4": 0.73 },
- { "time": 0.4, "angle": -0.29, "curve": 0.35, "c2": 0.45, "c3": 0.684, "c4": 0.79 },
- { "time": 0.5333, "angle": -17.61, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "angle": -0.18 }
- ],
- "translate": [
- { "time": 0.2 },
- { "time": 0.2667, "x": 3.6, "y": 0.6, "curve": 0.25, "c3": 0.75 },
- { "time": 0.5333, "x": 5.15, "y": 0.6, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333 }
- ]
- }
- },
- "deform": {
- "default": {
- "1body": {
- "1body": [
- {},
- {
- "time": 0.2,
- "offset": 30,
- "vertices": [ -0.20528, -3.02543, -1.01675, -2.85685, -0.51932, -1.81185, -0.99048, -1.60357, -0.53873, -0.57136, -0.67331, -0.40416, -0.46355, 0.43621, -0.32816, 0.54543, -0.33421, 1.22511, 0.00995, 1.26985 ]
- },
- { "time": 0.2667 }
- ]
- }
- }
- },
- "events": [
- { "time": 0.2, "name": "effect" },
- { "time": 0.2667, "name": "fire" },
- { "time": 0.4667, "name": "effect" },
- { "time": 0.5333, "name": "fire" }
- ]
- },
- "atk_right": {
- "slots": {
- "2bizi": {
- "attachment": [
- { "name": null }
- ]
- },
- "2body": {
- "attachment": [
- { "name": null }
- ]
- },
- "2daizi": {
- "attachment": [
- { "name": null }
- ]
- },
- "2daiziyy": {
- "attachment": [
- { "name": null }
- ]
- },
- "2e1": {
- "attachment": [
- { "name": null }
- ]
- },
- "2e2": {
- "attachment": [
- { "name": null }
- ]
- },
- "2er1": {
- "attachment": [
- { "name": null }
- ]
- },
- "2er2": {
- "attachment": [
- { "name": null }
- ]
- },
- "2fa": {
- "attachment": [
- { "name": null }
- ]
- },
- "2mm1": {
- "attachment": [
- { "name": null }
- ]
- },
- "2mm2": {
- "attachment": [
- { "name": null }
- ]
- },
- "2shou1": {
- "attachment": [
- { "name": null }
- ]
- },
- "2shou2": {
- "attachment": [
- { "name": null }
- ]
- },
- "2tou": {
- "attachment": [
- { "name": null }
- ]
- },
- "2touying": {
- "attachment": [
- { "name": null }
- ]
- },
- "2tui1": {
- "attachment": [
- { "name": null }
- ]
- },
- "2tui2": {
- "attachment": [
- { "name": null }
- ]
- },
- "2wuqi": {
- "attachment": [
- { "name": null }
- ]
- },
- "2zui": {
- "attachment": [
- { "name": null }
- ]
- },
- "3body": {
- "attachment": [
- { "name": null }
- ]
- },
- "3daizi": {
- "attachment": [
- { "name": null }
- ]
- },
- "3er1": {
- "attachment": [
- { "name": null }
- ]
- },
- "3er2": {
- "attachment": [
- { "name": null }
- ]
- },
- "3fa": {
- "attachment": [
- { "name": null }
- ]
- },
- "3shou1": {
- "attachment": [
- { "name": null }
- ]
- },
- "3shou2": {
- "attachment": [
- { "name": null }
- ]
- },
- "3tou": {
- "attachment": [
- { "name": null }
- ]
- },
- "3touying": {
- "attachment": [
- { "name": null }
- ]
- },
- "3tui1": {
- "attachment": [
- { "name": null }
- ]
- },
- "3tui2": {
- "attachment": [
- { "name": null }
- ]
- },
- "3weiba": {
- "attachment": [
- { "name": null }
- ]
- },
- "3wuqi": {
- "attachment": [
- { "name": null }
- ]
- }
- },
- "bones": {
- "1wuqi": {
- "rotate": [
- {},
- { "time": 0.0667, "angle": -93.17 },
- { "time": 0.1333, "angle": -106.31 },
- { "time": 0.2333, "angle": -111.29 },
- { "time": 0.2667, "angle": -122.39 },
- { "time": 0.3, "angle": -98.43 },
- { "time": 0.3667, "angle": -88.91 },
- { "time": 0.5, "angle": -72.16 },
- { "time": 0.6, "angle": -72.75 },
- { "time": 0.6667, "angle": -77.92 },
- { "time": 0.7333, "angle": -15.69 },
- { "time": 0.8333 }
- ],
- "translate": [
- { "x": -8.91, "y": -5.93, "curve": 0.363, "c2": 0.44, "c3": 0.755 },
- { "time": 0.0667, "x": -38.39, "y": 43.13, "curve": 0.38, "c2": 0.6, "c3": 0.725 },
- { "time": 0.1333, "x": -28.31, "y": 3.16 },
- { "time": 0.2333, "x": -38.34, "y": 0.72 },
- {
- "time": 0.2667,
- "x": 22.42,
- "y": -27.36,
- "curve": 0.331,
- "c2": 0.33,
- "c3": 0.671,
- "c4": 0.68
- },
- { "time": 0.3, "x": 10.98, "y": -19.54, "curve": 0.284, "c3": 0.625, "c4": 0.38 },
- {
- "time": 0.3667,
- "x": -29.77,
- "y": -2.33,
- "curve": 0.324,
- "c2": 0.3,
- "c3": 0.658,
- "c4": 0.63
- },
- {
- "time": 0.5,
- "x": -41.82,
- "y": -5.47,
- "curve": 0.324,
- "c2": 0.3,
- "c3": 0.658,
- "c4": 0.63
- },
- {
- "time": 0.6,
- "x": -23.12,
- "y": -7.28,
- "curve": 0.327,
- "c2": 0.31,
- "c3": 0.661,
- "c4": 0.65
- },
- {
- "time": 0.6667,
- "x": -35.76,
- "y": -2.13,
- "curve": 0.35,
- "c2": 0.43,
- "c3": 0.684,
- "c4": 0.77
- },
- { "time": 0.7333, "x": -36.21, "y": 32.62, "curve": 0.356, "c2": 0.65, "c3": 0.691 },
- { "time": 0.8333, "x": -8.91, "y": -5.93 }
- ]
- },
- "bone_right8": {
- "rotate": [
- { "angle": -5.75, "curve": 0.351, "c2": 0.4, "c3": 0.757 },
- { "time": 0.2, "angle": 3.09 },
- { "time": 0.2667, "angle": -5.75, "curve": 0.351, "c2": 0.4, "c3": 0.757 },
- { "time": 0.5, "angle": -13.12, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "angle": -5.75 }
- ],
- "translate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.2, "x": -1, "y": -0.52 },
- { "time": 0.2667, "curve": 0.25, "c3": 0.75 },
- { "time": 0.5, "x": 3.07, "y": -1.19, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333 }
- ],
- "scale": [
- { "x": 0.955 }
- ]
- },
- "1e1": {
- "translate": [
- { "time": 0.2 },
- { "time": 0.2667, "x": 3.81, "y": -2.68, "curve": 0.261, "c3": 0.618, "c4": 0.44 },
- { "time": 0.5 }
- ],
- "scale": [
- { "time": 0.2 },
- { "time": 0.2667, "x": 0.415, "curve": 0.261, "c3": 0.618, "c4": 0.44 },
- { "time": 0.5, "x": 0.8, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333 }
- ]
- },
- "bone_right9": {
- "rotate": [
- { "angle": 7.34, "curve": 0.351, "c2": 0.4, "c3": 0.757 },
- { "time": 0.2, "angle": 17.14 },
- { "time": 0.2667, "angle": 7.34, "curve": 0.351, "c2": 0.4, "c3": 0.757 },
- { "time": 0.5, "angle": 0.04, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "angle": 7.34 }
- ],
- "scale": [
- { "x": 0.944 }
- ]
- },
- "bone_right7": {
- "rotate": [
- { "angle": 8.98, "curve": 0.32, "c2": 0.29, "c3": 0.757 },
- { "time": 0.2, "angle": 34.76 },
- { "time": 0.2667, "angle": 8.98, "curve": 0.32, "c2": 0.29, "c3": 0.757 },
- { "time": 0.5, "angle": 0.45, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "angle": 8.98 }
- ],
- "translate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.2, "x": -0.99, "y": 6.11 },
- { "time": 0.2667, "curve": 0.25, "c3": 0.75 },
- { "time": 0.5, "x": -0.64, "y": -6.22, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333 }
- ]
- },
- "1e2": {
- "translate": [
- { "time": 0.2, "curve": 0.25, "c3": 0.75 },
- { "time": 0.2667, "x": 4.05, "y": 0.71, "curve": 0.261, "c3": 0.618, "c4": 0.44 },
- { "time": 0.5 }
- ],
- "scale": [
- { "time": 0.2, "curve": 0.25, "c3": 0.75 },
- { "time": 0.2667, "x": 0.491, "curve": 0.261, "c3": 0.618, "c4": 0.44 },
- { "time": 0.5, "x": 0.8, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333 }
- ]
- },
- "bone_right4": {
- "rotate": [
- { "angle": 0.57, "curve": 0.25, "c3": 0.75 },
- { "time": 0.0667, "angle": 9.49, "curve": 0.25, "c3": 0.75 },
- { "time": 0.2, "angle": 23.64 },
- { "time": 0.2333, "angle": 25.25 },
- { "time": 0.2667, "angle": 17.3, "curve": 0.345, "c2": 0.38, "c3": 0.68, "c4": 0.72 },
- { "time": 0.3667, "angle": -9.51, "curve": 0.35, "c2": 0.42, "c3": 0.685, "c4": 0.77 },
- { "time": 0.5333, "angle": 24.09, "curve": 0.357, "c2": 0.65, "c3": 0.692 },
- { "time": 0.6, "angle": -15.67, "curve": 0.243, "c3": 0.649, "c4": 0.6 },
- { "time": 0.8333, "angle": 0.57 }
- ],
- "translate": [
- { "time": 0.2 },
- { "time": 0.2333, "x": 6.26, "y": 1.8 },
- { "time": 0.2667, "x": 3.02, "y": 2.34, "curve": 0.265, "c3": 0.618, "c4": 0.43 },
- {
- "time": 0.3667,
- "x": 2.3,
- "y": -8.85,
- "curve": 0.325,
- "c2": 0.31,
- "c3": 0.675,
- "c4": 0.69
- },
- { "time": 0.5333, "x": 2.56, "y": -2.06, "curve": 0.382, "c2": 0.57, "c3": 0.735 },
- { "time": 0.6, "x": 2.7, "y": -10.92, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333 }
- ]
- },
- "1shou2": {
- "rotate": [
- { "angle": -9.18, "curve": 0.351, "c2": 0.4, "c3": 0.757 },
- { "time": 0.2, "angle": 7.99 },
- { "time": 0.2333, "angle": 7.68 },
- { "time": 0.2667, "angle": -21.83, "curve": 0.351, "c2": 0.4, "c3": 0.757 },
- { "time": 0.5, "angle": -34.75, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "angle": -9.18 }
- ],
- "translate": [
- { "x": 0.41, "y": -1.84, "curve": 0.351, "c2": 0.4, "c3": 0.757 },
- { "time": 0.2, "x": -1.39, "y": 4.01 },
- { "time": 0.2333, "x": 1.74, "y": 4.47 },
- {
- "time": 0.2667,
- "x": 2.65,
- "y": -3.84,
- "curve": 0.324,
- "c2": 0.3,
- "c3": 0.666,
- "c4": 0.66
- },
- { "time": 0.5, "x": 1.66, "y": -2.96, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "x": 0.41, "y": -1.84 }
- ]
- },
- "1shou4": {
- "rotate": [
- { "angle": -9.13 },
- { "time": 0.2, "angle": 18.23 },
- { "time": 0.2667, "angle": 2.98 },
- { "time": 0.5, "angle": 13.18, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "angle": -9.13 }
- ]
- },
- "1shou1": {
- "rotate": [
- { "angle": -4.14, "curve": 0.378, "c2": 0.52, "c3": 0.748 },
- { "time": 0.2, "angle": 14.46 },
- { "time": 0.2333, "angle": 9.88 },
- { "time": 0.2667, "angle": -14.74, "curve": 0.378, "c2": 0.52, "c3": 0.748 },
- { "time": 0.5, "angle": -27.66, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "angle": -4.14 }
- ],
- "translate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.2, "x": 0.23, "y": -6.31 },
- { "time": 0.2667 }
- ]
- },
- "1shou3": {
- "rotate": [
- { "angle": 4.73 },
- { "time": 0.2, "angle": 146.23 },
- { "time": 0.2667, "angle": 51.66 },
- { "time": 0.5, "angle": 33.04, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "angle": 4.73 }
- ],
- "translate": [
- {},
- { "time": 0.2, "x": -0.38, "y": 10.52 },
- { "time": 0.2667 },
- { "time": 0.5, "x": 1.11, "y": -2.05, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333 }
- ]
- },
- "1weiba3": {
- "rotate": [
- { "angle": -6.11, "curve": 0.25, "c3": 0.75 },
- { "time": 0.1333, "angle": 32.44, "curve": 0.25, "c3": 0.75 },
- { "time": 0.2, "angle": -22.52 },
- { "time": 0.2667, "angle": -21.65 },
- { "time": 0.4333, "angle": 0.61, "curve": 0.357, "c2": 0.65, "c3": 0.692 },
- { "time": 0.6, "angle": 43.89, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "angle": -6.11 }
- ],
- "translate": [
- { "x": 3.49, "y": -4.29, "curve": "stepped" },
- { "time": 0.2, "x": 3.49, "y": -4.29 },
- {
- "time": 0.2667,
- "x": 4.94,
- "y": 1.79,
- "curve": 0.344,
- "c2": 0.4,
- "c3": 0.677,
- "c4": 0.73
- },
- { "time": 0.6, "x": 4.15, "y": -1.55, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "x": 3.49, "y": -4.29 }
- ]
- },
- "1weiba": {
- "rotate": [
- { "angle": -2.99, "curve": 0.378, "c2": 0.52, "c3": 0.748 },
- { "time": 0.2, "angle": -19.4 },
- { "time": 0.2667, "angle": 7.64, "curve": 0.378, "c2": 0.52, "c3": 0.748 },
- { "time": 0.4667, "angle": 21.98, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "angle": -2.99 }
- ],
- "translate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.2, "x": -2.03, "y": -8.38 },
- { "time": 0.2667 }
- ]
- },
- "1weiba2": {
- "rotate": [
- { "angle": -5.71, "curve": 0.25, "c3": 0.75 },
- { "time": 0.0667, "angle": 10.82, "curve": 0.25, "c3": 0.75 },
- { "time": 0.2, "angle": -22.12 },
- { "time": 0.2667, "angle": -21.51, "curve": 0.32, "c2": 0.29, "c3": 0.757 },
- { "time": 0.5, "angle": 18.09, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "angle": -5.71 }
- ],
- "translate": [
- { "x": 0.32, "y": -2.94, "curve": "stepped" },
- { "time": 0.2, "x": 0.32, "y": -2.94 },
- {
- "time": 0.2667,
- "x": 4.31,
- "y": 1.47,
- "curve": 0.306,
- "c2": 0.24,
- "c3": 0.652,
- "c4": 0.62
- },
- { "time": 0.5, "x": 2.69, "y": -0.32, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "x": 0.32, "y": -2.94 }
- ]
- },
- "1tui1": {
- "rotate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.2, "angle": 6.56 },
- { "time": 0.2667, "angle": -17.54, "curve": 0.261, "c3": 0.618, "c4": 0.44 },
- { "time": 0.5, "angle": -31.11, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333 }
- ],
- "translate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.2, "x": 2.06 },
- { "time": 0.2333, "x": 6.05, "y": 0.91 },
- { "time": 0.2667, "x": 5.48, "y": 1.83, "curve": 0.261, "c3": 0.618, "c4": 0.44 },
- { "time": 0.5, "x": 9.18, "y": 3.67, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333 }
- ]
- },
- "1tui2": {
- "rotate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.2, "angle": 27.15 },
- { "time": 0.2333 }
- ],
- "translate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.2, "x": -7.72, "y": 6.96 },
- { "time": 0.2333 }
- ]
- },
- "bone_right10": {
- "translate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.2, "x": 0.31, "y": -8.64 },
- { "time": 0.2667 }
- ]
- },
- "bone_right6": {
- "rotate": [
- { "angle": 7.4, "curve": 0.351, "c2": 0.4, "c3": 0.757 },
- { "time": 0.2, "angle": 33.17 },
- { "time": 0.2667, "angle": 7.4, "curve": 0.351, "c2": 0.4, "c3": 0.757 },
- { "time": 0.6, "angle": -1.14, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "angle": 7.4 }
- ],
- "translate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.2, "x": -0.99, "y": 6.11 },
- { "time": 0.2667, "curve": 0.25, "c3": 0.75 },
- { "time": 0.6, "x": -0.64, "y": -6.22, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333 }
- ]
- },
- "bone_right5": {
- "rotate": [
- { "angle": -0.89, "curve": 0.246, "c3": 0.633, "c4": 0.54 },
- { "time": 0.1333, "angle": -0.33, "curve": 0.38, "c2": 0.53, "c3": 0.745 },
- { "time": 0.2, "angle": -3.84 },
- { "time": 0.2667, "angle": 8.17, "curve": 0.341, "c2": 0.36, "c3": 0.68, "c4": 0.71 },
- { "time": 0.4, "angle": -14.28, "curve": 0.381, "c2": 0.59, "c3": 0.728 },
- { "time": 0.6, "angle": 2.45, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "angle": -0.89 }
- ],
- "translate": [
- { "x": 1.66, "y": 0.07, "curve": 0.25, "c3": 0.75 },
- { "time": 0.2, "x": 1.29, "y": -9.24 },
- {
- "time": 0.2667,
- "x": 1.66,
- "y": 0.07,
- "curve": 0.341,
- "c2": 0.36,
- "c3": 0.68,
- "c4": 0.71
- },
- { "time": 0.4, "x": -7.75, "y": -2.86, "curve": 0.381, "c2": 0.59, "c3": 0.728 },
- { "time": 0.6, "x": 2.97, "y": 2.55, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "x": 1.66, "y": 0.07 }
- ],
- "shear": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.2, "y": 3.78 },
- { "time": 0.2667 }
- ]
- },
- "bone_right": {
- "translate": [
- { "x": 421.03 }
- ]
- },
- "ik1": {
- "rotate": [
- { "time": 0.2667 },
- { "time": 0.4, "angle": -22.22 },
- { "time": 0.6, "angle": -47.01 },
- { "time": 0.8333 }
- ],
- "translate": [
- { "x": 1.51, "y": 12.15, "curve": 0.341, "c2": 0.36, "c3": 0.676, "c4": 0.7 },
- {
- "time": 0.0667,
- "x": -1.65,
- "y": 77.93,
- "curve": 0.348,
- "c2": 0.39,
- "c3": 0.683,
- "c4": 0.73
- },
- { "time": 0.1333, "x": -20.38, "y": 67.76, "curve": 0.372, "c2": 0.62, "c3": 0.711 },
- { "time": 0.2, "x": -6.16, "y": 33.74, "curve": 0.381, "c2": 0.55, "c3": 0.742 },
- { "time": 0.2333, "x": 8.12, "y": 18.93, "curve": 0.381, "c2": 0.55, "c3": 0.742 },
- {
- "time": 0.2667,
- "x": 31.89,
- "y": 18.83,
- "curve": 0.345,
- "c2": 0.37,
- "c3": 0.682,
- "c4": 0.72
- },
- {
- "time": 0.3,
- "x": 48.41,
- "y": -4.48,
- "curve": 0.36,
- "c2": 0.46,
- "c3": 0.698,
- "c4": 0.81
- },
- {
- "time": 0.3333,
- "x": 40.96,
- "y": -8.98,
- "curve": 0.344,
- "c2": 0.44,
- "c3": 0.677,
- "c4": 0.77
- },
- { "time": 0.4, "x": -11.22, "y": 30.39, "curve": 0.345, "c2": 0.66, "c3": 0.679 },
- { "time": 0.5333, "x": -21.65, "y": 42.25, "curve": 0.355, "c2": 0.65, "c3": 0.69 },
- { "time": 0.6, "x": 47.17, "y": 2.2, "curve": 0.255, "c3": 0.62, "c4": 0.47 },
- { "time": 0.7333, "x": 20.36, "y": 5.43, "curve": 0.381, "c2": 0.59, "c3": 0.729 },
- { "time": 0.8333, "x": 1.51, "y": 12.15 }
- ]
- },
- "bone_right3": {
- "rotate": [
- { "angle": -0.18, "curve": 0.38, "c2": 0.59, "c3": 0.727 },
- { "time": 0.2, "angle": -8.13 },
- { "time": 0.2333, "angle": -14.19 },
- { "time": 0.2667, "angle": -28.12, "curve": 0.342, "c2": 0.37, "c3": 0.676, "c4": 0.7 },
- { "time": 0.3333, "angle": -24.83, "curve": 0.346, "c2": 0.39, "c3": 0.68, "c4": 0.73 },
- { "time": 0.4, "angle": -0.29, "curve": 0.35, "c2": 0.45, "c3": 0.684, "c4": 0.79 },
- { "time": 0.5333, "angle": -17.61, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "angle": -0.18 }
- ],
- "translate": [
- { "time": 0.2 },
- { "time": 0.2667, "x": 3.6, "y": 0.6, "curve": 0.25, "c3": 0.75 },
- { "time": 0.5333, "x": 5.15, "y": 0.6, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333 }
- ]
- }
- },
- "deform": {
- "default": {
- "1body": {
- "1body": [
- {},
- {
- "time": 0.2,
- "offset": 30,
- "vertices": [ -0.20528, -3.02543, -1.01675, -2.85685, -0.51932, -1.81185, -0.99048, -1.60357, -0.53873, -0.57136, -0.67331, -0.40416, -0.46355, 0.43621, -0.32816, 0.54543, -0.33421, 1.22511, 0.00995, 1.26985 ]
- },
- { "time": 0.2667 }
- ]
- }
- }
- },
- "events": [
- { "time": 0.2, "name": "effect" },
- { "time": 0.2667, "name": "fire" },
- { "time": 0.4667, "name": "effect" },
- { "time": 0.5333, "name": "fire" }
- ]
- },
- "atk_up": {
- "slots": {
- "1bizi": {
- "attachment": [
- { "name": null }
- ]
- },
- "1body": {
- "attachment": [
- { "name": null }
- ]
- },
- "1daiz": {
- "attachment": [
- { "name": null }
- ]
- },
- "1daizyy": {
- "attachment": [
- { "name": null }
- ]
- },
- "1e1": {
- "attachment": [
- { "name": null }
- ]
- },
- "1e2": {
- "attachment": [
- { "name": null }
- ]
- },
- "1er1": {
- "attachment": [
- { "name": null }
- ]
- },
- "1er2": {
- "attachment": [
- { "name": null }
- ]
- },
- "1fa": {
- "attachment": [
- { "name": null }
- ]
- },
- "1mm1": {
- "attachment": [
- { "name": null }
- ]
- },
- "1mm2": {
- "attachment": [
- { "name": null }
- ]
- },
- "1shou1": {
- "attachment": [
- { "name": null }
- ]
- },
- "1shou2": {
- "attachment": [
- { "name": null }
- ]
- },
- "1tou": {
- "attachment": [
- { "name": null }
- ]
- },
- "1touying": {
- "attachment": [
- { "name": null }
- ]
- },
- "1tui1": {
- "attachment": [
- { "name": null }
- ]
- },
- "1tui2": {
- "attachment": [
- { "name": null }
- ]
- },
- "1weiba": {
- "attachment": [
- { "name": null }
- ]
- },
- "1wuqi": {
- "attachment": [
- { "name": null }
- ]
- },
- "1zui": {
- "attachment": [
- { "name": null }
- ]
- },
- "2bizi": {
- "attachment": [
- { "name": null }
- ]
- },
- "2body": {
- "attachment": [
- { "name": null }
- ]
- },
- "2daizi": {
- "attachment": [
- { "name": null }
- ]
- },
- "2daiziyy": {
- "attachment": [
- { "name": null }
- ]
- },
- "2e1": {
- "attachment": [
- { "name": null }
- ]
- },
- "2e2": {
- "attachment": [
- { "name": null }
- ]
- },
- "2er1": {
- "attachment": [
- { "name": null }
- ]
- },
- "2er2": {
- "attachment": [
- { "name": null }
- ]
- },
- "2fa": {
- "attachment": [
- { "name": null }
- ]
- },
- "2mm1": {
- "attachment": [
- { "name": null }
- ]
- },
- "2mm2": {
- "attachment": [
- { "name": null }
- ]
- },
- "2shou1": {
- "attachment": [
- { "name": null }
- ]
- },
- "2shou2": {
- "attachment": [
- { "name": null }
- ]
- },
- "2tou": {
- "attachment": [
- { "name": null }
- ]
- },
- "2touying": {
- "attachment": [
- { "name": null }
- ]
- },
- "2tui1": {
- "attachment": [
- { "name": null }
- ]
- },
- "2tui2": {
- "attachment": [
- { "name": null }
- ]
- },
- "2wuqi": {
- "attachment": [
- { "name": null }
- ]
- },
- "2zui": {
- "attachment": [
- { "name": null }
- ]
- }
- },
- "bones": {
- "3tui1": {
- "rotate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.2333, "angle": -2.43, "curve": 0.25, "c3": 0.75 },
- { "time": 0.2667, "angle": -2.14, "curve": "stepped" },
- { "time": 0.5, "angle": -2.14, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333 }
- ],
- "translate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.2333, "x": -6.04, "curve": 0.25, "c3": 0.75 },
- { "time": 0.2667, "x": 3.86, "y": 2.41, "curve": "stepped" },
- { "time": 0.5, "x": 3.86, "y": 2.41, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333 }
- ],
- "scale": [
- { "time": 0.2333 },
- { "time": 0.2667, "x": 1.06, "curve": "stepped" },
- { "time": 0.5, "x": 1.06, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333 }
- ]
- },
- "3tui2": {
- "rotate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.2333, "angle": 8.86 },
- { "time": 0.2667 }
- ],
- "translate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.2333, "x": -5.06, "y": -0.35 },
- { "time": 0.2667 }
- ]
- },
- "3wuqi": {
- "rotate": [
- { "angle": -4.84, "curve": 0.25, "c3": 0.75 },
- { "time": 0.1333, "angle": 0.27, "curve": 0.25, "c3": 0.75 },
- { "time": 0.2, "angle": -2.79, "curve": 0.25, "c3": 0.75 },
- { "time": 0.2667, "angle": 3.95, "curve": 0.25, "c3": 0.75 },
- { "time": 0.3333, "angle": -5.7, "curve": 0.254, "c3": 0.621, "c4": 0.47 },
- { "time": 0.5333, "angle": 4.47, "curve": 0.25, "c3": 0.75 },
- { "time": 0.6667, "angle": -5.41, "curve": 0.603, "c3": 0.84, "c4": 0.84 },
- { "time": 0.8333, "angle": -4.84 }
- ],
- "translate": [
- { "x": 63.25, "y": -1.94, "curve": 0.372, "c2": 0.48, "c3": 0.752 },
- { "time": 0.1333, "x": 73.17, "y": 78.67, "curve": 0.25, "c3": 0.75 },
- { "time": 0.2, "x": 45.24, "y": 15.63, "curve": 0.25, "c3": 0.75 },
- { "time": 0.2667, "x": 35.77, "y": 19.54, "curve": 0.25, "c3": 0.75 },
- { "time": 0.3333, "x": 48.03, "y": 39.72, "curve": 0.269, "c3": 0.618, "c4": 0.42 },
- {
- "time": 0.4667,
- "x": 58.03,
- "y": 7.98,
- "curve": 0.323,
- "c2": 0.3,
- "c3": 0.66,
- "c4": 0.64
- },
- {
- "time": 0.5333,
- "x": 42.44,
- "y": 25.35,
- "curve": 0.335,
- "c2": 0.34,
- "c3": 0.676,
- "c4": 0.69
- },
- { "time": 0.6667, "x": 62.55, "y": 27.18, "curve": 0.367, "c2": 0.63, "c3": 0.705 },
- { "time": 0.8333, "x": 63.25, "y": -1.94 }
- ],
- "scale": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.2, "y": 0.948 },
- { "time": 0.2667 }
- ]
- },
- "3weiba": {
- "rotate": [
- { "angle": -1.89, "curve": 0.25, "c3": 0.75 },
- { "time": 0.0667, "angle": 3.02, "curve": 0.25, "c3": 0.75 },
- { "time": 0.2333, "angle": -3.71 },
- { "time": 0.3333, "angle": 2.45, "curve": 0.25, "c3": 0.75 },
- { "time": 0.4, "angle": 26.69, "curve": 0.25, "c3": 0.75 },
- { "time": 0.6333, "angle": -4.41, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "angle": -1.89 }
- ]
- },
- "3weiba2": {
- "rotate": [
- { "angle": -1.66, "curve": 0.25, "c3": 0.75 },
- { "time": 0.1, "angle": -1.36, "curve": 0.25, "c3": 0.75 },
- { "time": 0.2333, "angle": -15.68 },
- { "time": 0.3333, "angle": -10.94, "curve": 0.25, "c3": 0.75 },
- { "time": 0.5, "angle": 30.73, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "angle": -1.66 }
- ],
- "translate": [
- { "x": 0.23, "y": -1.14, "curve": 0.25, "c3": 0.75 },
- { "time": 0.1, "x": -0.62, "y": 0.19, "curve": 0.25, "c3": 0.75 },
- { "time": 0.2333, "x": -2.88, "y": -4.35 },
- { "time": 0.3333, "x": -0.34, "y": -4.71, "curve": 0.25, "c3": 0.75 },
- { "time": 0.5, "x": 2.47, "y": 4.87, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "x": 0.23, "y": -1.14 }
- ]
- },
- "3weiba3": {
- "rotate": [
- { "angle": -10.6, "curve": 0.25, "c3": 0.75 },
- { "time": 0.1, "angle": 20.14, "curve": 0.25, "c3": 0.75 },
- { "time": 0.3333, "angle": -28.13, "curve": 0.25, "c3": 0.75 },
- { "time": 0.6, "angle": 23.98, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "angle": -10.6 }
- ],
- "translate": [
- { "x": 0.02, "y": -3.65, "curve": 0.32, "c2": 0.29, "c3": 0.757 },
- { "time": 0.2333, "x": 0.88, "y": 1.4 },
- { "time": 0.3333, "x": -2.9, "y": -6.47, "curve": 0.25, "c3": 0.75 },
- { "time": 0.6, "x": 2.78, "y": 2.87, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "x": 0.02, "y": -3.65 }
- ]
- },
- "bone_up": {
- "translate": [
- { "x": -502.13 }
- ]
- },
- "bone_down": {
- "translate": [
- { "x": 565.18 }
- ]
- },
- "bone_up3": {
- "rotate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.2, "angle": 15.61 },
- { "time": 0.2667, "angle": -0.83, "curve": 0.252, "c2": 0.28, "c3": 0.598, "c4": 0.63 },
- { "time": 0.3333, "angle": 10.19, "curve": 0.291, "c2": 0.34, "c3": 0.662, "c4": 0.73 },
- { "time": 0.4667, "angle": 10.7, "curve": 0.386, "c2": 0.6, "c3": 0.744 },
- { "time": 0.5333, "angle": -0.88, "curve": 0.25, "c3": 0.75 },
- { "time": 0.6667, "angle": -2.06, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333 }
- ],
- "translate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.2, "x": -6.76, "y": -5.98 },
- {
- "time": 0.2667,
- "x": 2.22,
- "y": 6.1,
- "curve": 0.245,
- "c2": 0.27,
- "c3": 0.595,
- "c4": 0.63
- },
- { "time": 0.3333, "x": 5.39, "y": 6.1, "curve": 0.317, "c2": 0.46, "c3": 0.764 },
- { "time": 0.5333, "x": 2.22, "y": 6.1, "curve": 0.25, "c3": 0.75 },
- { "time": 0.6667, "y": -0.96, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333 }
- ]
- },
- "bone_up4": {
- "rotate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.0667, "angle": -3.48, "curve": 0.25, "c3": 0.75 },
- { "time": 0.2, "angle": 9.01 },
- { "time": 0.2667, "angle": -25.68, "curve": 0.327, "c2": 0.33, "c3": 0.661, "c4": 0.67 },
- { "time": 0.3333, "angle": -7.8, "curve": 0.326, "c2": 0.34, "c3": 0.662, "c4": 0.68 },
- { "time": 0.4667, "angle": -2.71, "curve": 0.335, "c2": 0.36, "c3": 0.674, "c4": 0.71 },
- { "time": 0.5333, "angle": -11.94, "curve": 0.386, "c2": 0.6, "c3": 0.744 },
- { "time": 0.6667, "angle": -7.65, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333 }
- ],
- "translate": [
- { "x": 1.47, "y": 0.04, "curve": 0.25, "c3": 0.75 },
- { "time": 0.0667, "x": 2.09, "y": -0.67, "curve": 0.25, "c3": 0.75 },
- { "time": 0.2, "x": -4.2, "y": 0.77 },
- {
- "time": 0.2667,
- "x": 5.58,
- "y": -1.95,
- "curve": 0.316,
- "c2": 0.36,
- "c3": 0.67,
- "c4": 0.73
- },
- { "time": 0.5333, "x": 6.3, "y": -2.53, "curve": 0.386, "c2": 0.6, "c3": 0.744 },
- { "time": 0.6667, "x": 13.91, "y": -1.65, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "x": 1.47, "y": 0.04 }
- ]
- },
- "bone_up5": {
- "rotate": [
- { "angle": -1.81, "curve": 0.25, "c3": 0.75 },
- { "time": 0.1, "angle": -2.14, "curve": 0.25, "c3": 0.75 },
- { "time": 0.2, "angle": -3.72 },
- { "time": 0.2667, "angle": 18.56, "curve": 0.327, "c2": 0.33, "c3": 0.661, "c4": 0.67 },
- { "time": 0.3333, "angle": -13.85, "curve": 0.326, "c2": 0.34, "c3": 0.663, "c4": 0.68 },
- { "time": 0.4667, "angle": -7.25, "curve": 0.333, "c2": 0.34, "c3": 0.667, "c4": 0.68 },
- { "time": 0.5333, "angle": -3.16, "curve": 0.34, "c2": 0.37, "c3": 0.677, "c4": 0.71 },
- { "time": 0.7, "angle": -6.04, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "angle": -1.81 }
- ],
- "translate": [
- { "x": 1.72, "curve": 0.25, "c3": 0.75 },
- { "time": 0.1, "x": -1.21, "y": -1.36, "curve": 0.25, "c3": 0.75 },
- { "time": 0.2, "x": -8.99, "y": -2.31 },
- {
- "time": 0.2667,
- "x": 0.75,
- "y": -1.21,
- "curve": 0.203,
- "c2": 0.26,
- "c3": 0.617,
- "c4": 0.7
- },
- { "time": 0.5333, "x": 9.59, "y": -6.77, "curve": 0.384, "c2": 0.59, "c3": 0.749 },
- { "time": 0.7, "x": 0.75, "y": -1.21, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "x": 1.72 }
- ]
- },
- "bone_up6": {
- "rotate": [
- { "angle": -1.71, "curve": 0.25, "c3": 0.75 },
- { "time": 0.0667, "angle": -7.18, "curve": 0.25, "c3": 0.75 },
- { "time": 0.2333, "angle": 15.78 },
- { "time": 0.2667, "angle": 2.08 },
- { "time": 0.3333, "angle": -11.74, "curve": 0.203, "c2": 0.32, "c3": 0.75 },
- { "time": 0.5, "angle": -17.59, "curve": 0.25, "c3": 0.75 },
- { "time": 0.7, "angle": -0.6, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "angle": -1.71 }
- ],
- "translate": [
- { "x": 2.2, "y": 0.08 }
- ]
- },
- "bone_up7": {
- "rotate": [
- { "angle": -7.04, "curve": 0.25, "c3": 0.75 },
- { "time": 0.1333, "angle": -19.92, "curve": 0.25, "c3": 0.75 },
- { "time": 0.2333, "angle": 2.11 },
- { "time": 0.2667, "angle": 18.31 },
- { "time": 0.3333, "angle": 18.17, "curve": 0.25, "c3": 0.75 },
- { "time": 0.6, "angle": -20.79, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "angle": -7.04 }
- ],
- "translate": [
- { "x": 1.15, "y": -2.09, "curve": "stepped" },
- { "time": 0.2333, "x": 1.15, "y": -2.09 },
- { "time": 0.3333, "x": 0.91, "y": 2.04, "curve": 0.25, "c3": 0.75 },
- { "time": 0.6, "x": 2.65, "y": -5.89, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "x": 1.15, "y": -2.09 }
- ]
- },
- "bone_up8": {
- "rotate": [
- { "curve": 0.255, "c3": 0.62, "c4": 0.47 },
- { "time": 0.1, "angle": -9.2, "curve": 0.367, "c2": 0.46, "c3": 0.754 },
- { "time": 0.2333, "angle": 11.36, "curve": 0.25, "c3": 0.75 },
- { "time": 0.3333, "curve": 0.25, "c3": 0.75 },
- { "time": 0.5, "angle": -12.94, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333 }
- ],
- "scale": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.1, "x": 1.099, "y": 1.099, "curve": 0.25, "c3": 0.75 },
- { "time": 0.2333, "x": 0.987, "y": 0.987, "curve": 0.25, "c3": 0.75 },
- { "time": 0.3333, "curve": 0.25, "c3": 0.75 },
- { "time": 0.5, "x": 1.103, "y": 1.103, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333 }
- ]
- },
- "bone_up9": {
- "rotate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.1, "angle": 0.66, "curve": 0.25, "c3": 0.75 },
- { "time": 0.2333, "angle": 9.02, "curve": 0.25, "c3": 0.75 },
- { "time": 0.3333, "angle": -5.33, "curve": 0.25, "c3": 0.75 },
- { "time": 0.6333, "angle": -0.63, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333 }
- ],
- "scale": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.1, "x": 1.064, "y": 1.064, "curve": 0.25, "c3": 0.75 },
- { "time": 0.2333, "x": 0.935, "y": 0.935, "curve": 0.25, "c3": 0.75 },
- { "time": 0.3333, "curve": 0.25, "c3": 0.75 },
- { "time": 0.6333, "x": 1.131, "y": 1.026, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333 }
- ]
- },
- "3shou1": {
- "rotate": [
- { "angle": 3.37, "curve": 0.25, "c3": 0.75 },
- { "time": 0.0667, "curve": 0.25, "c3": 0.75 },
- { "time": 0.2333, "angle": -14.41, "curve": "stepped" },
- { "time": 0.2667, "angle": -14.41, "curve": 0.25, "c3": 0.75 },
- { "time": 0.3333, "angle": -3.57, "curve": 0.25, "c3": 0.75 },
- { "time": 0.5, "angle": 3.23, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "angle": 3.37 }
- ]
- },
- "3shou2": {
- "rotate": [
- { "angle": 9.95, "curve": 0.25, "c3": 0.75 },
- { "time": 0.1, "angle": 3.05, "curve": 0.25, "c3": 0.75 },
- { "time": 0.2333, "angle": -24.48 },
- { "time": 0.2667, "angle": -20.98, "curve": 0.25, "c3": 0.75 },
- { "time": 0.4, "angle": 9.62, "curve": 0.25, "c3": 0.75 },
- { "time": 0.6, "angle": 23.03, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "angle": 9.95 }
- ],
- "translate": [
- { "x": 0.87, "y": 4.18, "curve": 0.25, "c3": 0.75 },
- { "time": 0.2333, "x": 4.16, "y": -6.94, "curve": "stepped" },
- { "time": 0.2667, "x": 4.16, "y": -6.94, "curve": 0.25, "c3": 0.75 },
- { "time": 0.4, "x": 0.94, "y": 3.85, "curve": 0.25, "c3": 0.75 },
- { "time": 0.6, "x": 0.87, "y": 4.18 }
- ]
- },
- "3shou3": {
- "rotate": [
- { "angle": 0.09, "curve": 0.25, "c3": 0.75 },
- { "time": 0.2, "angle": -3.66 },
- { "time": 0.2667, "angle": 0.09 }
- ],
- "translate": [
- { "x": 22.54, "y": -5.29, "curve": 0.246, "c3": 0.633, "c4": 0.54 },
- { "time": 0.1333, "x": 30.05, "y": -7.65, "curve": 0.38, "c2": 0.53, "c3": 0.745 },
- { "time": 0.2, "x": 23.41, "y": -8.76 },
- { "time": 0.2667, "x": 11.27, "y": -11.04, "curve": 0.33, "c3": 0.663, "c4": 0.34 },
- {
- "time": 0.3333,
- "x": 17.26,
- "y": -11.51,
- "curve": 0.33,
- "c2": 0.22,
- "c3": 0.663,
- "c4": 0.56
- },
- {
- "time": 0.4,
- "x": 25.5,
- "y": -19.85,
- "curve": 0.327,
- "c2": 0.22,
- "c3": 0.66,
- "c4": 0.56
- },
- {
- "time": 0.5333,
- "x": 19.16,
- "y": -11.34,
- "curve": 0.328,
- "c2": 0.27,
- "c3": 0.661,
- "c4": 0.6
- },
- {
- "time": 0.6667,
- "x": 25.49,
- "y": -21.71,
- "curve": 0.327,
- "c2": 0.28,
- "c3": 0.66,
- "c4": 0.61
- },
- { "time": 0.8333, "x": 22.54, "y": -5.29 }
- ],
- "scale": [
- { "curve": 0.243, "c3": 0.649, "c4": 0.6 },
- { "time": 0.1333, "x": 0.87, "y": 0.77, "curve": 0.382, "c2": 0.57, "c3": 0.735 },
- { "time": 0.2, "x": 0.679, "y": 0.679 },
- { "time": 0.2667, "curve": 0.301, "c3": 0.637, "c4": 0.36 },
- { "time": 0.3333, "x": 0.799, "curve": 0.312, "c2": 0.24, "c3": 0.648, "c4": 0.58 },
- { "time": 0.4, "x": 0.876, "curve": 0.33, "c2": 0.32, "c3": 0.758 },
- { "time": 0.8333 }
- ]
- },
- "3shou4": {
- "rotate": [
- { "angle": -0.16, "curve": 0.25, "c3": 0.75 },
- { "time": 0.2333, "angle": 7.36, "curve": "stepped" },
- { "time": 0.2667, "angle": 7.36 },
- { "time": 0.3333, "angle": 30.55, "curve": "stepped" },
- { "time": 0.5, "angle": 30.55, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "angle": -0.16 }
- ]
- },
- "ik3": {
- "translate": [
- { "x": -20.26, "y": 15.53, "curve": 0.246, "c3": 0.633, "c4": 0.54 },
- { "time": 0.1333, "x": -50.77, "y": -39.75, "curve": 0.38, "c2": 0.53, "c3": 0.745 },
- { "time": 0.2, "x": -39.15, "y": -78.88 },
- {
- "time": 0.2667,
- "x": 13.72,
- "y": 39.56,
- "curve": 0.276,
- "c2": 0.29,
- "c3": 0.616,
- "c4": 0.63
- },
- {
- "time": 0.3333,
- "x": -7.98,
- "y": 0.42,
- "curve": 0.324,
- "c2": 0.33,
- "c3": 0.658,
- "c4": 0.66
- },
- {
- "time": 0.4,
- "x": -27.39,
- "y": -9.19,
- "curve": 0.326,
- "c2": 0.33,
- "c3": 0.66,
- "c4": 0.66
- },
- {
- "time": 0.4667,
- "x": -37.98,
- "y": -23.87,
- "curve": 0.341,
- "c2": 0.37,
- "c3": 0.674,
- "c4": 0.7
- },
- {
- "time": 0.5333,
- "x": 3.17,
- "y": 30.99,
- "curve": 0.347,
- "c2": 0.42,
- "c3": 0.681,
- "c4": 0.76
- },
- { "time": 0.6667, "x": -11.09, "y": 2.41, "curve": 0.356, "c2": 0.65, "c3": 0.69 },
- { "time": 0.8333, "x": -20.26, "y": 15.53 }
- ],
- "scale": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.2, "x": 1.05, "y": 1.05 },
- { "time": 0.2667 }
- ]
- }
- },
- "deform": {
- "default": {
- "3wuqi": {
- "3wuqi": [
- {},
- {
- "time": 0.2,
- "offset": 8,
- "vertices": [ 1.11513, -10.75742, 0, 0, 1.11513, -10.75742, 0.09235, -15.37325, 5.24827, -3.90154, 9.17911, -1.89841, 9.17911, -1.89841 ]
- },
- {
- "time": 0.2667,
- "offset": 8,
- "vertices": [ 6.40444, -11.56406, 2.34355, -15.3264, -6.40389, -8.66929, -3.3361, -1.72784, 3.90882, 2.61269, 11.27181, 4.88814, 5.00182, 5.1167 ]
- },
- {
- "time": 0.3333,
- "offset": 8,
- "vertices": [ 13.45686, -12.63959, -1.78857, -10.85765, -16.42925, -5.88513, -6.27315, -19.6138, -4.34293, 7.55898, 9.31575, 2.48477, -2.32212, 5.6122 ]
- },
- { "time": 0.8333 }
- ]
- }
- }
- },
- "events": [
- { "time": 0.2, "name": "effect" },
- { "time": 0.2667, "name": "fire" },
- { "time": 0.4667, "name": "effect" },
- { "time": 0.5333, "name": "fire" }
- ]
- },
- "idle_down": {
- "slots": {
- "1bizi": {
- "attachment": [
- { "name": null }
- ]
- },
- "1body": {
- "attachment": [
- { "name": null }
- ]
- },
- "1daiz": {
- "attachment": [
- { "name": null }
- ]
- },
- "1daizyy": {
- "attachment": [
- { "name": null }
- ]
- },
- "1e1": {
- "attachment": [
- { "name": null }
- ]
- },
- "1e2": {
- "attachment": [
- { "name": null }
- ]
- },
- "1er1": {
- "attachment": [
- { "name": null }
- ]
- },
- "1er2": {
- "attachment": [
- { "name": null }
- ]
- },
- "1fa": {
- "attachment": [
- { "name": null }
- ]
- },
- "1mm1": {
- "attachment": [
- { "name": null }
- ]
- },
- "1mm2": {
- "attachment": [
- { "name": null }
- ]
- },
- "1shou1": {
- "attachment": [
- { "name": null }
- ]
- },
- "1shou2": {
- "attachment": [
- { "name": null }
- ]
- },
- "1tou": {
- "attachment": [
- { "name": null }
- ]
- },
- "1touying": {
- "attachment": [
- { "name": null }
- ]
- },
- "1tui1": {
- "attachment": [
- { "name": null }
- ]
- },
- "1tui2": {
- "attachment": [
- { "name": null }
- ]
- },
- "1weiba": {
- "attachment": [
- { "name": null }
- ]
- },
- "1wuqi": {
- "attachment": [
- { "name": null }
- ]
- },
- "1zui": {
- "attachment": [
- { "name": null }
- ]
- },
- "3body": {
- "attachment": [
- { "name": null }
- ]
- },
- "3daizi": {
- "attachment": [
- { "name": null }
- ]
- },
- "3er1": {
- "attachment": [
- { "name": null }
- ]
- },
- "3er2": {
- "attachment": [
- { "name": null }
- ]
- },
- "3fa": {
- "attachment": [
- { "name": null }
- ]
- },
- "3shou1": {
- "attachment": [
- { "name": null }
- ]
- },
- "3shou2": {
- "attachment": [
- { "name": null }
- ]
- },
- "3tou": {
- "attachment": [
- { "name": null }
- ]
- },
- "3touying": {
- "attachment": [
- { "name": null }
- ]
- },
- "3tui1": {
- "attachment": [
- { "name": null }
- ]
- },
- "3tui2": {
- "attachment": [
- { "name": null }
- ]
- },
- "3weiba": {
- "attachment": [
- { "name": null }
- ]
- },
- "3wuqi": {
- "attachment": [
- { "name": null }
- ]
- }
- },
- "bones": {
- "bone_down3": {
- "rotate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.5, "angle": -0.53, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ],
- "translate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.5, "y": 5.3, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ]
- },
- "bone_down4": {
- "rotate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.5, "angle": 1.61, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ],
- "translate": [
- { "x": 0.66, "y": 0.01, "curve": 0.375, "c2": 0.62, "c3": 0.716 },
- { "time": 0.1, "curve": 0.25, "c3": 0.75 },
- { "time": 0.6, "x": 5.07, "y": 0.06, "curve": 0.243, "c3": 0.68, "c4": 0.71 },
- { "time": 1, "x": 0.66, "y": 0.01 }
- ]
- },
- "bone_down5": {
- "rotate": [
- { "angle": -0.6, "curve": 0.381, "c2": 0.55, "c3": 0.742 },
- { "time": 0.2, "curve": 0.25, "c3": 0.75 },
- { "time": 0.7, "angle": -1.62, "curve": 0.245, "c3": 0.637, "c4": 0.56 },
- { "time": 1, "angle": -0.6 }
- ],
- "translate": [
- { "x": 1.25, "y": -0.02, "curve": 0.381, "c2": 0.55, "c3": 0.742 },
- { "time": 0.2, "curve": 0.25, "c3": 0.75 },
- { "time": 0.7, "x": 3.41, "y": -0.06, "curve": 0.245, "c3": 0.637, "c4": 0.56 },
- { "time": 1, "x": 1.25, "y": -0.02 }
- ]
- },
- "bone_down6": {
- "rotate": [
- { "angle": -2.21, "curve": 0.363, "c2": 0.44, "c3": 0.755 },
- { "time": 0.3, "angle": 5.59, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8, "angle": -6.76, "curve": 0.258, "c3": 0.619, "c4": 0.45 },
- { "time": 1, "angle": -2.21 }
- ]
- },
- "bone_down7": {
- "rotate": [
- { "angle": -9.14, "curve": 0.32, "c2": 0.29, "c3": 0.757 },
- { "time": 0.4, "angle": 13.75, "curve": 0.25, "c3": 0.75 },
- { "time": 0.9, "angle": -12.56, "curve": 0.284, "c3": 0.625, "c4": 0.38 },
- { "time": 1, "angle": -9.14 }
- ],
- "translate": [
- { "x": 2.19, "y": -3.08, "curve": 0.32, "c2": 0.29, "c3": 0.757 },
- { "time": 0.4, "x": 1.32, "y": 2.69, "curve": 0.25, "c3": 0.75 },
- { "time": 0.9, "x": 2.32, "y": -3.94, "curve": 0.284, "c3": 0.625, "c4": 0.38 },
- { "time": 1, "x": 2.19, "y": -3.08 }
- ]
- },
- "2er1": {
- "rotate": [
- { "angle": -6.16, "curve": 0.363, "c2": 0.44, "c3": 0.755 },
- { "time": 0.3, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8, "angle": -9.74, "curve": 0.258, "c3": 0.619, "c4": 0.45 },
- { "time": 1, "angle": -6.16 }
- ]
- },
- "2er2": {
- "rotate": [
- { "angle": 7.43, "curve": 0.363, "c2": 0.44, "c3": 0.755 },
- { "time": 0.3, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8, "angle": 11.75, "curve": 0.258, "c3": 0.619, "c4": 0.45 },
- { "time": 1, "angle": 7.43 }
- ]
- },
- "2shou2": {
- "rotate": [
- { "angle": -2.95, "curve": 0.381, "c2": 0.55, "c3": 0.742 },
- { "time": 0.2, "curve": 0.25, "c3": 0.75 },
- { "time": 0.7, "angle": -8.03, "curve": 0.245, "c3": 0.637, "c4": 0.56 },
- { "time": 1, "angle": -2.95 }
- ]
- },
- "2shou3": {
- "rotate": [
- { "angle": -2.85, "curve": 0.363, "c2": 0.44, "c3": 0.755 },
- { "time": 0.3, "angle": 15.44, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8, "angle": -13.49, "curve": 0.258, "c3": 0.619, "c4": 0.45 },
- { "time": 1, "angle": -2.85 }
- ],
- "translate": [
- { "x": -0.08, "y": -2.15, "curve": 0.363, "c2": 0.44, "c3": 0.755 },
- { "time": 0.3, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8, "x": -0.13, "y": -3.41, "curve": 0.258, "c3": 0.619, "c4": 0.45 },
- { "time": 1, "x": -0.08, "y": -2.15 }
- ]
- },
- "2shou1": {
- "rotate": [
- { "angle": -0.02 }
- ]
- },
- "2tui1": {
- "translate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.5, "y": 4.54, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ],
- "scale": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.5, "x": 1.071, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ]
- },
- "2tui2": {
- "translate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.5, "y": 6.35, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ],
- "scale": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.5, "x": 1.123, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ]
- },
- "2e1": {
- "scale": [
- { "time": 0.4, "curve": 0.33, "c2": 0.32, "c3": 0.665, "c4": 0.66 },
- { "time": 0.5, "x": 0.292, "curve": 0.335, "c2": 0.34, "c3": 0.67, "c4": 0.68 },
- { "time": 0.6 }
- ]
- },
- "2e2": {
- "scale": [
- { "time": 0.4, "curve": 0.33, "c2": 0.32, "c3": 0.665, "c4": 0.66 },
- { "time": 0.5, "x": 0.292, "curve": 0.335, "c2": 0.34, "c3": 0.67, "c4": 0.68 },
- { "time": 0.6 }
- ]
- },
- "ik2": {
- "translate": [
- { "y": 7.49, "curve": 0.382, "c2": 0.57, "c3": 0.735 },
- { "time": 0.1667, "curve": 0.25, "c3": 0.75 },
- { "time": 0.6667, "y": 26.4, "curve": 0.243, "c3": 0.649, "c4": 0.6 },
- { "time": 1, "y": 7.49 }
- ]
- },
- "2wuqi": {
- "rotate": [
- { "curve": 0.106, "c2": 0.1, "c3": 0.75 },
- { "time": 0.2, "angle": -1.1, "curve": 0.25, "c3": 0.75 },
- { "time": 0.5333, "angle": -3.2, "curve": 0.25, "c3": 0.75 },
- { "time": 0.7333, "angle": -1.52, "curve": 0.25, "c3": 0.875, "c4": 0.88 },
- { "time": 1 }
- ],
- "translate": [
- { "x": 1.51, "y": 12.15, "curve": 0.381, "c2": 0.55, "c3": 0.742 },
- { "time": 0.2, "x": 1.42, "y": 17.62, "curve": 0.25, "c3": 0.75 },
- { "time": 0.5333, "x": -1.77, "y": 6.73, "curve": 0.25, "c3": 0.75 },
- { "time": 0.7333, "x": -2.33, "y": 5.26, "curve": 0.245, "c3": 0.637, "c4": 0.56 },
- { "time": 1, "x": 1.51, "y": 12.15 }
- ]
- }
- }
- },
- "idle_left": {
- "slots": {
- "2bizi": {
- "attachment": [
- { "name": null }
- ]
- },
- "2body": {
- "attachment": [
- { "name": null }
- ]
- },
- "2daizi": {
- "attachment": [
- { "name": null }
- ]
- },
- "2daiziyy": {
- "attachment": [
- { "name": null }
- ]
- },
- "2e1": {
- "attachment": [
- { "name": null }
- ]
- },
- "2e2": {
- "attachment": [
- { "name": null }
- ]
- },
- "2er1": {
- "attachment": [
- { "name": null }
- ]
- },
- "2er2": {
- "attachment": [
- { "name": null }
- ]
- },
- "2fa": {
- "attachment": [
- { "name": null }
- ]
- },
- "2mm1": {
- "attachment": [
- { "name": null }
- ]
- },
- "2mm2": {
- "attachment": [
- { "name": null }
- ]
- },
- "2shou1": {
- "attachment": [
- { "name": null }
- ]
- },
- "2shou2": {
- "attachment": [
- { "name": null }
- ]
- },
- "2tou": {
- "attachment": [
- { "name": null }
- ]
- },
- "2touying": {
- "attachment": [
- { "name": null }
- ]
- },
- "2tui1": {
- "attachment": [
- { "name": null }
- ]
- },
- "2tui2": {
- "attachment": [
- { "name": null }
- ]
- },
- "2wuqi": {
- "attachment": [
- { "name": null }
- ]
- },
- "2zui": {
- "attachment": [
- { "name": null }
- ]
- },
- "3body": {
- "attachment": [
- { "name": null }
- ]
- },
- "3daizi": {
- "attachment": [
- { "name": null }
- ]
- },
- "3er1": {
- "attachment": [
- { "name": null }
- ]
- },
- "3er2": {
- "attachment": [
- { "name": null }
- ]
- },
- "3fa": {
- "attachment": [
- { "name": null }
- ]
- },
- "3shou1": {
- "attachment": [
- { "name": null }
- ]
- },
- "3shou2": {
- "attachment": [
- { "name": null }
- ]
- },
- "3tou": {
- "attachment": [
- { "name": null }
- ]
- },
- "3touying": {
- "attachment": [
- { "name": null }
- ]
- },
- "3tui1": {
- "attachment": [
- { "name": null }
- ]
- },
- "3tui2": {
- "attachment": [
- { "name": null }
- ]
- },
- "3weiba": {
- "attachment": [
- { "name": null }
- ]
- },
- "3wuqi": {
- "attachment": [
- { "name": null }
- ]
- }
- },
- "bones": {
- "bone_right": {
- "translate": [
- { "x": 421.03 }
- ],
- "scale": [
- { "x": -1 }
- ]
- },
- "bone_down": {
- "translate": [
- { "x": -500 }
- ]
- },
- "bone_right3": {
- "rotate": [
- { "angle": -0.18, "curve": 0.38, "c2": 0.59, "c3": 0.727 },
- { "time": 0.1333, "curve": 0.25, "c3": 0.75 },
- { "time": 0.6333, "angle": -0.88, "curve": 0.242, "c3": 0.663, "c4": 0.65 },
- { "time": 1, "angle": -0.18 }
- ],
- "translate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.5, "y": 3.05, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ]
- },
- "bone_right4": {
- "rotate": [
- { "angle": 0.57, "curve": 0.38, "c2": 0.59, "c3": 0.727 },
- { "time": 0.1333, "curve": 0.25, "c3": 0.75 },
- { "time": 0.6333, "angle": 2.83, "curve": 0.242, "c3": 0.663, "c4": 0.65 },
- { "time": 1, "angle": 0.57 }
- ],
- "translate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.5, "x": 4.14, "y": -1.02, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ]
- },
- "bone_right5": {
- "rotate": [
- { "angle": -0.89, "curve": 0.378, "c2": 0.52, "c3": 0.748 },
- { "time": 0.2333, "curve": 0.25, "c3": 0.75 },
- { "time": 0.7333, "angle": -1.95, "curve": 0.248, "c3": 0.628, "c4": 0.52 },
- { "time": 1, "angle": -0.89 }
- ],
- "translate": [
- { "x": 1.66, "y": 0.07, "curve": 0.378, "c2": 0.52, "c3": 0.748 },
- { "time": 0.2333, "curve": 0.25, "c3": 0.75 },
- { "time": 0.7333, "x": 3.65, "y": 0.16, "curve": 0.248, "c3": 0.628, "c4": 0.52 },
- { "time": 1, "x": 1.66, "y": 0.07 }
- ]
- },
- "bone_right6": {
- "rotate": [
- { "angle": 7.4, "curve": 0.351, "c2": 0.4, "c3": 0.757 },
- { "time": 0.3333, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "angle": 10.33, "curve": 0.265, "c3": 0.618, "c4": 0.43 },
- { "time": 1, "angle": 7.4 }
- ]
- },
- "bone_right7": {
- "rotate": [
- { "angle": 8.98, "curve": 0.32, "c2": 0.29, "c3": 0.757 },
- { "time": 0.4, "curve": 0.25, "c3": 0.75 },
- { "time": 0.9, "angle": 10.33, "curve": 0.284, "c3": 0.625, "c4": 0.38 },
- { "time": 1, "angle": 8.98 }
- ]
- },
- "bone_right8": {
- "rotate": [
- { "angle": -5.75, "curve": 0.351, "c2": 0.4, "c3": 0.757 },
- { "time": 0.3333, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "angle": -8.03, "curve": 0.265, "c3": 0.618, "c4": 0.43 },
- { "time": 1, "angle": -5.75 }
- ],
- "scale": [
- { "x": 0.955, "curve": 0.351, "c2": 0.4, "c3": 0.757 },
- { "time": 0.3333, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "x": 0.936, "curve": 0.265, "c3": 0.618, "c4": 0.43 },
- { "time": 1, "x": 0.955 }
- ]
- },
- "bone_right9": {
- "rotate": [
- { "angle": 7.34, "curve": 0.351, "c2": 0.4, "c3": 0.757 },
- { "time": 0.3333, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "angle": 10.25, "curve": 0.265, "c3": 0.618, "c4": 0.43 },
- { "time": 1, "angle": 7.34 }
- ],
- "scale": [
- { "x": 0.944, "curve": 0.351, "c2": 0.4, "c3": 0.757 },
- { "time": 0.3333, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "x": 0.922, "curve": 0.265, "c3": 0.618, "c4": 0.43 },
- { "time": 1, "x": 0.944 }
- ]
- },
- "1e1": {
- "scale": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.5, "x": 0.924, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ]
- },
- "1e2": {
- "scale": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.5, "x": 0.862, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ]
- },
- "1shou1": {
- "rotate": [
- { "angle": -4.14, "curve": 0.378, "c2": 0.52, "c3": 0.748 },
- { "time": 0.2333, "curve": 0.25, "c3": 0.75 },
- { "time": 0.7333, "angle": -9.08, "curve": 0.248, "c3": 0.628, "c4": 0.52 },
- { "time": 1, "angle": -4.14 }
- ]
- },
- "1shou2": {
- "rotate": [
- { "angle": -9.18, "curve": 0.351, "c2": 0.4, "c3": 0.757 },
- { "time": 0.3333, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "angle": -12.81, "curve": 0.265, "c3": 0.618, "c4": 0.43 },
- { "time": 1, "angle": -9.18 }
- ],
- "translate": [
- { "x": 0.41, "y": -1.84, "curve": 0.351, "c2": 0.4, "c3": 0.757 },
- { "time": 0.3333, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "x": 0.57, "y": -2.57, "curve": 0.265, "c3": 0.618, "c4": 0.43 },
- { "time": 1, "x": 0.41, "y": -1.84 }
- ]
- },
- "1weiba": {
- "rotate": [
- { "angle": -2.99, "curve": 0.378, "c2": 0.52, "c3": 0.748 },
- { "time": 0.2333, "curve": 0.25, "c3": 0.75 },
- { "time": 0.7333, "angle": -6.57, "curve": 0.248, "c3": 0.628, "c4": 0.52 },
- { "time": 1, "angle": -2.99 }
- ]
- },
- "1weiba2": {
- "rotate": [
- { "angle": -5.71, "curve": 0.32, "c2": 0.29, "c3": 0.757 },
- { "time": 0.4, "curve": 0.25, "c3": 0.75 },
- { "time": 0.9, "angle": -6.57, "curve": 0.284, "c3": 0.625, "c4": 0.38 },
- { "time": 1, "angle": -5.71 }
- ],
- "translate": [
- { "x": 0.32, "y": -2.94, "curve": 0.32, "c2": 0.29, "c3": 0.757 },
- { "time": 0.4, "curve": 0.25, "c3": 0.75 },
- { "time": 0.9, "x": 0.37, "y": -3.38, "curve": 0.284, "c3": 0.625, "c4": 0.38 },
- { "time": 1, "x": 0.32, "y": -2.94 }
- ]
- },
- "1weiba3": {
- "rotate": [
- { "angle": -6.11, "curve": 0.366, "c2": 0.63, "c3": 0.703 },
- { "time": 0.0667, "angle": -6.57, "curve": 0.25, "c3": 0.75 },
- { "time": 0.5667, "curve": 0.244, "c3": 0.7, "c4": 0.79 },
- { "time": 1, "angle": -6.11 }
- ],
- "translate": [
- { "x": 3.49, "y": -4.29, "curve": 0.366, "c2": 0.63, "c3": 0.703 },
- { "time": 0.0667, "x": 3.76, "y": -4.62, "curve": 0.25, "c3": 0.75 },
- { "time": 0.5667, "curve": 0.244, "c3": 0.7, "c4": 0.79 },
- { "time": 1, "x": 3.49, "y": -4.29 }
- ]
- },
- "1tui1": {
- "translate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.5, "y": 2.82, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ],
- "scale": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.5, "x": 1.058, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ]
- },
- "1tui2": {
- "translate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.5, "y": 3.76, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ],
- "scale": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.5, "x": 1.063, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ]
- },
- "ik1": {
- "rotate": [
- { "curve": 0.106, "c2": 0.1, "c3": 0.75 },
- { "time": 0.2, "angle": -0.74, "curve": 0.25, "c3": 0.75 },
- { "time": 0.5333, "angle": -5.41, "curve": 0.25, "c3": 0.75 },
- { "time": 0.7333, "angle": -3.97, "curve": 0.25, "c3": 0.875, "c4": 0.88 },
- { "time": 1 }
- ],
- "translate": [
- { "x": 1.51, "y": 12.15, "curve": 0.381, "c2": 0.55, "c3": 0.742 },
- { "time": 0.2, "x": -0.1, "y": 7.53, "curve": 0.25, "c3": 0.75 },
- { "time": 0.5333, "x": -1.77, "y": 9.11, "curve": 0.25, "c3": 0.75 },
- { "time": 0.7333, "x": -0.22, "y": 10.85, "curve": 0.245, "c3": 0.637, "c4": 0.56 },
- { "time": 1, "x": 1.51, "y": 12.15 }
- ]
- },
- "1shou3": {
- "rotate": [
- { "angle": 4.73 }
- ]
- },
- "1shou4": {
- "rotate": [
- { "angle": -9.13 }
- ]
- }
- }
- },
- "idle_right": {
- "slots": {
- "2bizi": {
- "attachment": [
- { "name": null }
- ]
- },
- "2body": {
- "attachment": [
- { "name": null }
- ]
- },
- "2daizi": {
- "attachment": [
- { "name": null }
- ]
- },
- "2daiziyy": {
- "attachment": [
- { "name": null }
- ]
- },
- "2e1": {
- "attachment": [
- { "name": null }
- ]
- },
- "2e2": {
- "attachment": [
- { "name": null }
- ]
- },
- "2er1": {
- "attachment": [
- { "name": null }
- ]
- },
- "2er2": {
- "attachment": [
- { "name": null }
- ]
- },
- "2fa": {
- "attachment": [
- { "name": null }
- ]
- },
- "2mm1": {
- "attachment": [
- { "name": null }
- ]
- },
- "2mm2": {
- "attachment": [
- { "name": null }
- ]
- },
- "2shou1": {
- "attachment": [
- { "name": null }
- ]
- },
- "2shou2": {
- "attachment": [
- { "name": null }
- ]
- },
- "2tou": {
- "attachment": [
- { "name": null }
- ]
- },
- "2touying": {
- "attachment": [
- { "name": null }
- ]
- },
- "2tui1": {
- "attachment": [
- { "name": null }
- ]
- },
- "2tui2": {
- "attachment": [
- { "name": null }
- ]
- },
- "2wuqi": {
- "attachment": [
- { "name": null }
- ]
- },
- "2zui": {
- "attachment": [
- { "name": null }
- ]
- },
- "3body": {
- "attachment": [
- { "name": null }
- ]
- },
- "3daizi": {
- "attachment": [
- { "name": null }
- ]
- },
- "3er1": {
- "attachment": [
- { "name": null }
- ]
- },
- "3er2": {
- "attachment": [
- { "name": null }
- ]
- },
- "3fa": {
- "attachment": [
- { "name": null }
- ]
- },
- "3shou1": {
- "attachment": [
- { "name": null }
- ]
- },
- "3shou2": {
- "attachment": [
- { "name": null }
- ]
- },
- "3tou": {
- "attachment": [
- { "name": null }
- ]
- },
- "3touying": {
- "attachment": [
- { "name": null }
- ]
- },
- "3tui1": {
- "attachment": [
- { "name": null }
- ]
- },
- "3tui2": {
- "attachment": [
- { "name": null }
- ]
- },
- "3weiba": {
- "attachment": [
- { "name": null }
- ]
- },
- "3wuqi": {
- "attachment": [
- { "name": null }
- ]
- }
- },
- "bones": {
- "bone_right": {
- "translate": [
- { "x": 421.03 }
- ]
- },
- "bone_down": {
- "translate": [
- { "x": -500 }
- ]
- },
- "bone_right3": {
- "rotate": [
- { "angle": -0.18, "curve": 0.38, "c2": 0.59, "c3": 0.727 },
- { "time": 0.1333, "curve": 0.25, "c3": 0.75 },
- { "time": 0.6333, "angle": -0.88, "curve": 0.242, "c3": 0.663, "c4": 0.65 },
- { "time": 1, "angle": -0.18 }
- ],
- "translate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.5, "y": 3.05, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ]
- },
- "bone_right4": {
- "rotate": [
- { "angle": 0.57, "curve": 0.38, "c2": 0.59, "c3": 0.727 },
- { "time": 0.1333, "curve": 0.25, "c3": 0.75 },
- { "time": 0.6333, "angle": 2.83, "curve": 0.242, "c3": 0.663, "c4": 0.65 },
- { "time": 1, "angle": 0.57 }
- ],
- "translate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.5, "x": 4.14, "y": -1.02, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ]
- },
- "bone_right5": {
- "rotate": [
- { "angle": -0.89, "curve": 0.378, "c2": 0.52, "c3": 0.748 },
- { "time": 0.2333, "curve": 0.25, "c3": 0.75 },
- { "time": 0.7333, "angle": -1.95, "curve": 0.248, "c3": 0.628, "c4": 0.52 },
- { "time": 1, "angle": -0.89 }
- ],
- "translate": [
- { "x": 1.66, "y": 0.07, "curve": 0.378, "c2": 0.52, "c3": 0.748 },
- { "time": 0.2333, "curve": 0.25, "c3": 0.75 },
- { "time": 0.7333, "x": 3.65, "y": 0.16, "curve": 0.248, "c3": 0.628, "c4": 0.52 },
- { "time": 1, "x": 1.66, "y": 0.07 }
- ]
- },
- "bone_right6": {
- "rotate": [
- { "angle": 7.4, "curve": 0.351, "c2": 0.4, "c3": 0.757 },
- { "time": 0.3333, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "angle": 10.33, "curve": 0.265, "c3": 0.618, "c4": 0.43 },
- { "time": 1, "angle": 7.4 }
- ]
- },
- "bone_right7": {
- "rotate": [
- { "angle": 8.98, "curve": 0.32, "c2": 0.29, "c3": 0.757 },
- { "time": 0.4, "curve": 0.25, "c3": 0.75 },
- { "time": 0.9, "angle": 10.33, "curve": 0.284, "c3": 0.625, "c4": 0.38 },
- { "time": 1, "angle": 8.98 }
- ]
- },
- "bone_right8": {
- "rotate": [
- { "angle": -5.75, "curve": 0.351, "c2": 0.4, "c3": 0.757 },
- { "time": 0.3333, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "angle": -8.03, "curve": 0.265, "c3": 0.618, "c4": 0.43 },
- { "time": 1, "angle": -5.75 }
- ],
- "scale": [
- { "x": 0.955, "curve": 0.351, "c2": 0.4, "c3": 0.757 },
- { "time": 0.3333, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "x": 0.936, "curve": 0.265, "c3": 0.618, "c4": 0.43 },
- { "time": 1, "x": 0.955 }
- ]
- },
- "bone_right9": {
- "rotate": [
- { "angle": 7.34, "curve": 0.351, "c2": 0.4, "c3": 0.757 },
- { "time": 0.3333, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "angle": 10.25, "curve": 0.265, "c3": 0.618, "c4": 0.43 },
- { "time": 1, "angle": 7.34 }
- ],
- "scale": [
- { "x": 0.944, "curve": 0.351, "c2": 0.4, "c3": 0.757 },
- { "time": 0.3333, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "x": 0.922, "curve": 0.265, "c3": 0.618, "c4": 0.43 },
- { "time": 1, "x": 0.944 }
- ]
- },
- "1e1": {
- "scale": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.5, "x": 0.924, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ]
- },
- "1e2": {
- "scale": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.5, "x": 0.862, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ]
- },
- "1shou1": {
- "rotate": [
- { "angle": -4.14, "curve": 0.378, "c2": 0.52, "c3": 0.748 },
- { "time": 0.2333, "curve": 0.25, "c3": 0.75 },
- { "time": 0.7333, "angle": -9.08, "curve": 0.248, "c3": 0.628, "c4": 0.52 },
- { "time": 1, "angle": -4.14 }
- ]
- },
- "1shou2": {
- "rotate": [
- { "angle": -9.18, "curve": 0.351, "c2": 0.4, "c3": 0.757 },
- { "time": 0.3333, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "angle": -12.81, "curve": 0.265, "c3": 0.618, "c4": 0.43 },
- { "time": 1, "angle": -9.18 }
- ],
- "translate": [
- { "x": 0.41, "y": -1.84, "curve": 0.351, "c2": 0.4, "c3": 0.757 },
- { "time": 0.3333, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "x": 0.57, "y": -2.57, "curve": 0.265, "c3": 0.618, "c4": 0.43 },
- { "time": 1, "x": 0.41, "y": -1.84 }
- ]
- },
- "1weiba": {
- "rotate": [
- { "angle": -2.99, "curve": 0.378, "c2": 0.52, "c3": 0.748 },
- { "time": 0.2333, "curve": 0.25, "c3": 0.75 },
- { "time": 0.7333, "angle": -6.57, "curve": 0.248, "c3": 0.628, "c4": 0.52 },
- { "time": 1, "angle": -2.99 }
- ]
- },
- "1weiba2": {
- "rotate": [
- { "angle": -5.71, "curve": 0.32, "c2": 0.29, "c3": 0.757 },
- { "time": 0.4, "curve": 0.25, "c3": 0.75 },
- { "time": 0.9, "angle": -6.57, "curve": 0.284, "c3": 0.625, "c4": 0.38 },
- { "time": 1, "angle": -5.71 }
- ],
- "translate": [
- { "x": 0.32, "y": -2.94, "curve": 0.32, "c2": 0.29, "c3": 0.757 },
- { "time": 0.4, "curve": 0.25, "c3": 0.75 },
- { "time": 0.9, "x": 0.37, "y": -3.38, "curve": 0.284, "c3": 0.625, "c4": 0.38 },
- { "time": 1, "x": 0.32, "y": -2.94 }
- ]
- },
- "1weiba3": {
- "rotate": [
- { "angle": -6.11, "curve": 0.366, "c2": 0.63, "c3": 0.703 },
- { "time": 0.0667, "angle": -6.57, "curve": 0.25, "c3": 0.75 },
- { "time": 0.5667, "curve": 0.244, "c3": 0.7, "c4": 0.79 },
- { "time": 1, "angle": -6.11 }
- ],
- "translate": [
- { "x": 3.49, "y": -4.29, "curve": 0.366, "c2": 0.63, "c3": 0.703 },
- { "time": 0.0667, "x": 3.76, "y": -4.62, "curve": 0.25, "c3": 0.75 },
- { "time": 0.5667, "curve": 0.244, "c3": 0.7, "c4": 0.79 },
- { "time": 1, "x": 3.49, "y": -4.29 }
- ]
- },
- "1tui1": {
- "translate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.5, "y": 2.82, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ],
- "scale": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.5, "x": 1.058, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ]
- },
- "1tui2": {
- "translate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.5, "y": 3.76, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ],
- "scale": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.5, "x": 1.063, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ]
- },
- "1shou3": {
- "rotate": [
- { "angle": 4.73 }
- ]
- },
- "1shou4": {
- "rotate": [
- { "angle": -9.13 }
- ]
- },
- "1wuqi": {
- "translate": [
- { "x": -6.25, "y": 6.01 }
- ]
- },
- "ik1": {
- "rotate": [
- { "curve": 0.106, "c2": 0.1, "c3": 0.75 },
- { "time": 0.2, "angle": -0.74, "curve": 0.25, "c3": 0.75 },
- { "time": 0.5333, "angle": -5.41, "curve": 0.25, "c3": 0.75 },
- { "time": 0.7333, "angle": -3.97, "curve": 0.25, "c3": 0.875, "c4": 0.88 },
- { "time": 1 }
- ],
- "translate": [
- { "x": 1.51, "y": 12.15, "curve": 0.381, "c2": 0.55, "c3": 0.742 },
- { "time": 0.2, "x": -0.1, "y": 7.53, "curve": 0.25, "c3": 0.75 },
- { "time": 0.5333, "x": -1.77, "y": 9.11, "curve": 0.25, "c3": 0.75 },
- { "time": 0.7333, "x": -0.22, "y": 10.85, "curve": 0.245, "c3": 0.637, "c4": 0.56 },
- { "time": 1, "x": 1.51, "y": 12.15 }
- ]
- }
- }
- },
- "idle_up": {
- "slots": {
- "1bizi": {
- "attachment": [
- { "name": null }
- ]
- },
- "1body": {
- "attachment": [
- { "name": null }
- ]
- },
- "1daiz": {
- "attachment": [
- { "name": null }
- ]
- },
- "1daizyy": {
- "attachment": [
- { "name": null }
- ]
- },
- "1e1": {
- "attachment": [
- { "name": null }
- ]
- },
- "1e2": {
- "attachment": [
- { "name": null }
- ]
- },
- "1er1": {
- "attachment": [
- { "name": null }
- ]
- },
- "1er2": {
- "attachment": [
- { "name": null }
- ]
- },
- "1fa": {
- "attachment": [
- { "name": null }
- ]
- },
- "1mm1": {
- "attachment": [
- { "name": null }
- ]
- },
- "1mm2": {
- "attachment": [
- { "name": null }
- ]
- },
- "1shou1": {
- "attachment": [
- { "name": null }
- ]
- },
- "1shou2": {
- "attachment": [
- { "name": null }
- ]
- },
- "1tou": {
- "attachment": [
- { "name": null }
- ]
- },
- "1touying": {
- "attachment": [
- { "name": null }
- ]
- },
- "1tui1": {
- "attachment": [
- { "name": null }
- ]
- },
- "1tui2": {
- "attachment": [
- { "name": null }
- ]
- },
- "1weiba": {
- "attachment": [
- { "name": null }
- ]
- },
- "1wuqi": {
- "attachment": [
- { "name": null }
- ]
- },
- "1zui": {
- "attachment": [
- { "name": null }
- ]
- },
- "2bizi": {
- "attachment": [
- { "name": null }
- ]
- },
- "2body": {
- "attachment": [
- { "name": null }
- ]
- },
- "2daizi": {
- "attachment": [
- { "name": null }
- ]
- },
- "2daiziyy": {
- "attachment": [
- { "name": null }
- ]
- },
- "2e1": {
- "attachment": [
- { "name": null }
- ]
- },
- "2e2": {
- "attachment": [
- { "name": null }
- ]
- },
- "2er1": {
- "attachment": [
- { "name": null }
- ]
- },
- "2er2": {
- "attachment": [
- { "name": null }
- ]
- },
- "2fa": {
- "attachment": [
- { "name": null }
- ]
- },
- "2mm1": {
- "attachment": [
- { "name": null }
- ]
- },
- "2mm2": {
- "attachment": [
- { "name": null }
- ]
- },
- "2shou1": {
- "attachment": [
- { "name": null }
- ]
- },
- "2shou2": {
- "attachment": [
- { "name": null }
- ]
- },
- "2tou": {
- "attachment": [
- { "name": null }
- ]
- },
- "2touying": {
- "attachment": [
- { "name": null }
- ]
- },
- "2tui1": {
- "attachment": [
- { "name": null }
- ]
- },
- "2tui2": {
- "attachment": [
- { "name": null }
- ]
- },
- "2wuqi": {
- "attachment": [
- { "name": null }
- ]
- },
- "2zui": {
- "attachment": [
- { "name": null }
- ]
- }
- },
- "bones": {
- "bone_up": {
- "translate": [
- { "x": -502.13 }
- ]
- },
- "bone_down": {
- "translate": [
- { "x": 565.18 }
- ]
- },
- "bone_up3": {
- "rotate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.5, "angle": -1.98, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ],
- "translate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.5, "y": 4.84, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ]
- },
- "bone_up4": {
- "rotate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.5, "angle": 6.32, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ],
- "translate": [
- { "x": 1.47, "y": 0.04, "curve": 0.38, "c2": 0.59, "c3": 0.727 },
- { "time": 0.1333, "curve": 0.25, "c3": 0.75 },
- { "time": 0.6333, "x": 7.26, "y": 0.19, "curve": 0.242, "c3": 0.663, "c4": 0.65 },
- { "time": 1, "x": 1.47, "y": 0.04 }
- ]
- },
- "bone_up5": {
- "rotate": [
- { "angle": -1.81, "curve": 0.382, "c2": 0.57, "c3": 0.735 },
- { "time": 0.1667, "curve": 0.25, "c3": 0.75 },
- { "time": 0.6667, "angle": -6.36, "curve": 0.243, "c3": 0.649, "c4": 0.6 },
- { "time": 1, "angle": -1.81 }
- ],
- "translate": [
- { "x": 1.72, "curve": 0.382, "c2": 0.57, "c3": 0.735 },
- { "time": 0.1667, "curve": 0.25, "c3": 0.75 },
- { "time": 0.6667, "x": 6.05, "curve": 0.243, "c3": 0.649, "c4": 0.6 },
- { "time": 1, "x": 1.72 }
- ]
- },
- "bone_up6": {
- "rotate": [
- { "angle": -1.71, "curve": 0.372, "c2": 0.48, "c3": 0.752 },
- { "time": 0.2667, "angle": 7.7, "curve": 0.25, "c3": 0.75 },
- { "time": 0.7667, "angle": -9.6, "curve": 0.252, "c3": 0.622, "c4": 0.48 },
- { "time": 1, "angle": -1.71 }
- ],
- "translate": [
- { "x": 2.2, "y": 0.08, "curve": 0.372, "c2": 0.48, "c3": 0.752 },
- { "time": 0.2667, "curve": 0.25, "c3": 0.75 },
- { "time": 0.7667, "x": 4.04, "y": 0.14, "curve": 0.252, "c3": 0.622, "c4": 0.48 },
- { "time": 1, "x": 2.2, "y": 0.08 }
- ]
- },
- "bone_up7": {
- "rotate": [
- { "angle": -7.04, "curve": 0.337, "c2": 0.35, "c3": 0.758 },
- { "time": 0.3667, "angle": 9.85, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8667, "angle": -11.33, "curve": 0.273, "c3": 0.62, "c4": 0.41 },
- { "time": 1, "angle": -7.04 }
- ],
- "translate": [
- { "x": 1.15, "y": -2.09, "curve": 0.337, "c2": 0.35, "c3": 0.758 },
- { "time": 0.3667, "x": 0.21, "y": 0.99, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8667, "x": 1.39, "y": -2.88, "curve": 0.273, "c3": 0.62, "c4": 0.41 },
- { "time": 1, "x": 1.15, "y": -2.09 }
- ]
- },
- "bone_up8": {
- "rotate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.5, "angle": -8.88, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ]
- },
- "bone_up9": {
- "rotate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.5, "angle": 14.46, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ]
- },
- "3shou1": {
- "rotate": [
- { "angle": 3.37, "curve": 0.378, "c2": 0.52, "c3": 0.748 },
- { "time": 0.2333, "angle": -2.31, "curve": 0.25, "c3": 0.75 },
- { "time": 0.7333, "angle": 10.14, "curve": 0.248, "c3": 0.628, "c4": 0.52 },
- { "time": 1, "angle": 3.37 }
- ]
- },
- "3shou2": {
- "rotate": [
- { "angle": 9.95, "curve": 0.351, "c2": 0.4, "c3": 0.757 },
- { "time": 0.3333, "angle": -6.98, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "angle": 16.67, "curve": 0.265, "c3": 0.618, "c4": 0.43 },
- { "time": 1, "angle": 9.95 }
- ],
- "translate": [
- { "x": 0.87, "y": 4.18, "curve": 0.351, "c2": 0.4, "c3": 0.757 },
- { "time": 0.3333, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "x": 1.22, "y": 5.83, "curve": 0.265, "c3": 0.618, "c4": 0.43 },
- { "time": 1, "x": 0.87, "y": 4.18 }
- ]
- },
- "3shou3": {
- "rotate": [
- { "angle": 0.09 }
- ]
- },
- "3shou4": {
- "rotate": [
- { "angle": -0.16 }
- ]
- },
- "3tui1": {
- "translate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.5, "y": 4.21, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ],
- "scale": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.5, "x": 1.115, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ]
- },
- "3tui2": {
- "translate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.5, "y": 3.79, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ],
- "scale": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.5, "x": 1.091, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ]
- },
- "3weiba": {
- "rotate": [
- { "angle": -1.89, "curve": 0.38, "c2": 0.59, "c3": 0.727 },
- { "time": 0.1333, "curve": 0.25, "c3": 0.75 },
- { "time": 0.6333, "angle": -9.31, "curve": 0.242, "c3": 0.663, "c4": 0.65 },
- { "time": 1, "angle": -1.89 }
- ]
- },
- "3weiba2": {
- "rotate": [
- { "angle": -1.66, "curve": 0.372, "c2": 0.48, "c3": 0.752 },
- { "time": 0.2667, "angle": 5.1, "curve": 0.25, "c3": 0.75 },
- { "time": 0.7667, "angle": -7.32, "curve": 0.252, "c3": 0.622, "c4": 0.48 },
- { "time": 1, "angle": -1.66 }
- ],
- "translate": [
- { "x": 0.23, "y": -1.14, "curve": 0.372, "c2": 0.48, "c3": 0.752 },
- { "time": 0.2667, "x": 0.24, "y": 1.78, "curve": 0.25, "c3": 0.75 },
- { "time": 0.7667, "x": 0.23, "y": -3.58, "curve": 0.252, "c3": 0.622, "c4": 0.48 },
- { "time": 1, "x": 0.23, "y": -1.14 }
- ]
- },
- "3weiba3": {
- "rotate": [
- { "angle": -10.6, "curve": 0.32, "c2": 0.29, "c3": 0.757 },
- { "time": 0.4, "angle": 9.98, "curve": 0.25, "c3": 0.75 },
- { "time": 0.9, "angle": -13.67, "curve": 0.284, "c3": 0.625, "c4": 0.38 },
- { "time": 1, "angle": -10.6 }
- ],
- "translate": [
- { "x": 0.02, "y": -3.65, "curve": 0.32, "c2": 0.29, "c3": 0.757 },
- { "time": 0.4, "x": -0.49, "y": 2.49, "curve": 0.25, "c3": 0.75 },
- { "time": 0.9, "x": 0.09, "y": -4.57, "curve": 0.284, "c3": 0.625, "c4": 0.38 },
- { "time": 1, "x": 0.02, "y": -3.65 }
- ]
- },
- "3wuqi": {
- "rotate": [
- { "angle": -4.84 }
- ],
- "translate": [
- { "x": 63.25, "y": -1.94 }
- ]
- },
- "ik3": {
- "rotate": [
- { "curve": 0.106, "c2": 0.1, "c3": 0.75 },
- { "time": 0.2, "angle": -0.74, "curve": 0.25, "c3": 0.75 },
- { "time": 0.5333, "angle": -5.41, "curve": 0.25, "c3": 0.75 },
- { "time": 0.7333, "angle": -3.97, "curve": 0.25, "c3": 0.875, "c4": 0.88 },
- { "time": 1 }
- ],
- "translate": [
- { "x": -8.68, "y": -0.3, "curve": 0.381, "c2": 0.55, "c3": 0.742 },
- { "time": 0.2, "x": -13.68, "y": -3.79, "curve": 0.25, "c3": 0.75 },
- { "time": 0.5333, "x": -16.48, "y": -2.21, "curve": 0.25, "c3": 0.75 },
- { "time": 0.7333, "x": -16.94, "y": 2.06, "curve": 0.245, "c3": 0.637, "c4": 0.56 },
- { "time": 1, "x": -8.68, "y": -0.3 }
- ]
- }
- }
- },
- "show": {
- "slots": {
- "1touying": {
- "color": [
- { "color": "ffffff00" },
- { "time": 0.1333, "color": "ffffffff" }
- ]
- },
- "2bizi": {
- "attachment": [
- { "name": null }
- ]
- },
- "2body": {
- "attachment": [
- { "name": null }
- ]
- },
- "2daizi": {
- "attachment": [
- { "name": null }
- ]
- },
- "2daiziyy": {
- "attachment": [
- { "name": null }
- ]
- },
- "2e1": {
- "attachment": [
- { "name": null }
- ]
- },
- "2e2": {
- "attachment": [
- { "name": null }
- ]
- },
- "2er1": {
- "attachment": [
- { "name": null }
- ]
- },
- "2er2": {
- "attachment": [
- { "name": null }
- ]
- },
- "2fa": {
- "attachment": [
- { "name": null }
- ]
- },
- "2mm1": {
- "attachment": [
- { "name": null }
- ]
- },
- "2mm2": {
- "attachment": [
- { "name": null }
- ]
- },
- "2shou1": {
- "attachment": [
- { "name": null }
- ]
- },
- "2shou2": {
- "attachment": [
- { "name": null }
- ]
- },
- "2tou": {
- "attachment": [
- { "name": null }
- ]
- },
- "2touying": {
- "attachment": [
- { "name": null }
- ]
- },
- "2tui1": {
- "attachment": [
- { "name": null }
- ]
- },
- "2tui2": {
- "attachment": [
- { "name": null }
- ]
- },
- "2wuqi": {
- "attachment": [
- { "name": null }
- ]
- },
- "2zui": {
- "attachment": [
- { "name": null }
- ]
- },
- "3body": {
- "attachment": [
- { "name": null }
- ]
- },
- "3daizi": {
- "attachment": [
- { "name": null }
- ]
- },
- "3er1": {
- "attachment": [
- { "name": null }
- ]
- },
- "3er2": {
- "attachment": [
- { "name": null }
- ]
- },
- "3fa": {
- "attachment": [
- { "name": null }
- ]
- },
- "3shou1": {
- "attachment": [
- { "name": null }
- ]
- },
- "3shou2": {
- "attachment": [
- { "name": null }
- ]
- },
- "3tou": {
- "attachment": [
- { "name": null }
- ]
- },
- "3touying": {
- "attachment": [
- { "name": null }
- ]
- },
- "3tui1": {
- "attachment": [
- { "name": null }
- ]
- },
- "3tui2": {
- "attachment": [
- { "name": null }
- ]
- },
- "3weiba": {
- "attachment": [
- { "name": null }
- ]
- },
- "3wuqi": {
- "attachment": [
- { "name": null }
- ]
- }
- },
- "bones": {
- "bone_right2": {
- "translate": [
- { "y": 92.7 },
- { "time": 0.1, "y": 4.45 },
- { "time": 0.1333, "y": -3.46 },
- { "time": 0.1667 }
- ]
- },
- "bone_right": {
- "translate": [
- { "x": 421.03 }
- ]
- },
- "bone_down": {
- "translate": [
- { "x": -500 }
- ]
- },
- "ik1": {
- "rotate": [
- { "angle": 12 },
- { "time": 0.1333, "angle": 16.99 },
- { "time": 0.2, "angle": 1.53 },
- { "time": 0.2667, "angle": -9.18 },
- { "time": 0.3333 }
- ],
- "translate": [
- { "y": 122.4 },
- { "time": 0.1333, "x": -7.08, "y": 28.3 },
- { "time": 0.2, "x": 0.9, "y": 16.33 },
- { "time": 0.3333, "x": 1.51, "y": 12.15 }
- ]
- },
- "1wuqi": {
- "translate": [
- {},
- { "time": 0.3333, "x": -6.25, "y": 6.01 }
- ]
- },
- "1wuqi2": {
- "translate": [
- { "y": 122.4 },
- { "time": 0.1333, "y": -3.47 },
- { "time": 0.2, "y": 20.01 },
- { "time": 0.3333 }
- ]
- },
- "1weiba2": {
- "rotate": [
- { "angle": -14.14 },
- { "time": 0.1333, "angle": 16.38 },
- { "time": 0.2, "angle": 15.95 },
- { "time": 0.2667, "angle": -4.53 },
- { "time": 0.3333, "angle": -5.71 }
- ],
- "translate": [
- {},
- { "time": 0.3333, "x": 0.32, "y": -2.94 }
- ]
- },
- "1weiba3": {
- "rotate": [
- { "angle": -14.14 },
- { "time": 0.1333, "angle": 16.22 },
- { "time": 0.2, "angle": 15.71 },
- { "time": 0.2667, "angle": 37.45 },
- { "time": 0.3333, "angle": -6.11 }
- ],
- "translate": [
- {},
- { "time": 0.3333, "x": 3.49, "y": -4.29 }
- ]
- },
- "1shou3": {
- "rotate": [
- { "angle": -24.71 },
- { "time": 0.3333, "angle": 4.73 }
- ]
- },
- "1shou4": {
- "rotate": [
- { "angle": -22.24 },
- { "time": 0.3333, "angle": -9.13 }
- ]
- },
- "bone_right3": {
- "rotate": [
- {},
- { "time": 0.3333, "angle": -0.18 }
- ],
- "translate": [
- {},
- { "time": 0.1667, "y": -2.34 },
- { "time": 0.2333, "y": -0.47 },
- { "time": 0.3333 }
- ]
- },
- "bone_right4": {
- "rotate": [
- {},
- { "time": 0.3333, "angle": 0.57 }
- ],
- "translate": [
- {},
- { "time": 0.1667, "x": -4.09, "y": 1 },
- { "time": 0.2333, "x": 2.55, "y": -0.62 },
- { "time": 0.3333 }
- ]
- },
- "bone_right5": {
- "rotate": [
- {},
- { "time": 0.3333, "angle": -0.89 }
- ],
- "translate": [
- {},
- { "time": 0.1667, "x": -3.38, "y": -0.13 },
- { "time": 0.2667, "x": 1.52, "y": 0.06 },
- { "time": 0.3333, "x": 1.66, "y": 0.07 }
- ]
- },
- "bone_right6": {
- "rotate": [
- {},
- { "time": 0.1333, "angle": -17.43 },
- { "time": 0.2333, "angle": 18.75 },
- { "time": 0.3333, "angle": 7.4 }
- ]
- },
- "bone_right7": {
- "rotate": [
- {},
- { "time": 0.1333, "angle": -16.79 },
- { "time": 0.2333, "angle": 19.86 },
- { "time": 0.3333, "angle": 8.98 }
- ]
- },
- "bone_right8": {
- "rotate": [
- {},
- { "time": 0.3333, "angle": -5.75 }
- ],
- "scale": [
- {},
- { "time": 0.3333, "x": 0.955 }
- ]
- },
- "bone_right9": {
- "rotate": [
- {},
- { "time": 0.3333, "angle": 7.34 }
- ],
- "scale": [
- {},
- { "time": 0.3333, "x": 0.944 }
- ]
- },
- "1e1": {
- "scale": [
- { "time": 0.1 },
- { "time": 0.1667, "x": 0.302 },
- { "time": 0.2333, "x": 0.994 },
- { "time": 0.3333 }
- ]
- },
- "1e2": {
- "scale": [
- { "time": 0.1 },
- { "time": 0.1667, "x": 0.302 },
- { "time": 0.2333, "x": 0.994 },
- { "time": 0.3333 }
- ]
- },
- "1shou1": {
- "rotate": [
- { "angle": -16.34 },
- { "time": 0.1333, "angle": 9.65 },
- { "time": 0.2, "angle": -10.78 },
- { "time": 0.3333, "angle": -4.14 }
- ]
- },
- "1shou2": {
- "rotate": [
- { "angle": -25.53 },
- { "time": 0.1333, "angle": -3.19, "curve": 0.25, "c3": 0.75 },
- { "time": 0.2667, "angle": -12.51, "curve": 0.25, "c3": 0.75 },
- { "time": 0.3333, "angle": -9.18 }
- ],
- "translate": [
- {},
- { "time": 0.1333, "x": 2.55, "y": 2.2, "curve": 0.25, "c3": 0.75 },
- { "time": 0.2667, "x": 0.41, "y": -1.84 }
- ]
- },
- "1weiba": {
- "rotate": [
- { "angle": -14.14 },
- { "time": 0.1333, "angle": 17.47 },
- { "time": 0.2, "angle": -3.92 },
- { "time": 0.2667, "angle": -13.11 },
- { "time": 0.3333, "angle": -2.99 }
- ]
- }
- }
- }
- }
- }
|