123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908 |
- {
- "skeleton": {
- "hash": "+2nB++OIw/NjGhcEeg0oFyqYVAo",
- "spine": "3.8.99",
- "x": -587.91,
- "y": -85.71,
- "width": 1021.96,
- "height": 432.04,
- "images": "./images/",
- "audio": "E:/202412/1220/1Spine/熊"
- },
- "bones": [
- { "name": "root" },
- { "name": "bone_down", "parent": "root", "rotation": -0.71, "x": 0.04, "y": -50, "color": "8d00ffff" },
- { "name": "bone_down2", "parent": "bone_down", "rotation": 0.71, "x": 3.61, "y": 80.93, "color": "8d00ffff" },
- {
- "name": "2shenti",
- "parent": "bone_down2",
- "length": 90.59,
- "rotation": 90.71,
- "x": -1.29,
- "y": 1.74,
- "color": "8d00ffff"
- },
- {
- "name": "2tou",
- "parent": "2shenti",
- "length": 123.58,
- "rotation": -2,
- "x": 89.61,
- "y": 0.43,
- "color": "8d00ffff"
- },
- {
- "name": "2tou3",
- "parent": "2tou",
- "length": 52.2,
- "rotation": 1.29,
- "x": 122.1,
- "y": -0.06,
- "color": "8d00ffff"
- },
- { "name": "2tou2", "parent": "2tou", "rotation": -17.08, "x": 79.9, "y": 47.67, "color": "8d00ffff" },
- { "name": "2tou4", "parent": "2tou", "rotation": 18.46, "x": 82.58, "y": -41.95, "color": "8d00ffff" },
- {
- "name": "2erduo2",
- "parent": "2tou",
- "length": 46.95,
- "rotation": 35.75,
- "x": 108.99,
- "y": 61.44,
- "color": "8d00ffff"
- },
- {
- "name": "2erduo1",
- "parent": "2tou",
- "length": 45.59,
- "rotation": -35.14,
- "x": 114.8,
- "y": -56.62,
- "color": "8d00ffff"
- },
- {
- "name": "2youshou1",
- "parent": "2shenti",
- "length": 83.1,
- "rotation": -169.56,
- "x": 76.95,
- "y": 73.22,
- "scaleY": 1.2322,
- "color": "8d00ffff"
- },
- {
- "name": "2zuoshou",
- "parent": "2shenti",
- "length": 59.1,
- "rotation": -178.91,
- "x": 76.5,
- "y": -66.97,
- "color": "8d00ffff"
- },
- { "name": "gun2", "parent": "bone_down2", "x": 2.6, "y": 53.55, "color": "8d00ffff" },
- {
- "name": "2qiang",
- "parent": "gun2",
- "length": 163.37,
- "rotation": -89.05,
- "x": 0.77,
- "y": -7.63,
- "color": "8d00ffff"
- },
- { "name": "ik_r_down", "parent": "gun2", "x": 38.7, "y": -41.93, "color": "8d00ffff" },
- {
- "name": "2tui2",
- "parent": "bone_down2",
- "length": 38.69,
- "rotation": -91.88,
- "x": -33.86,
- "y": 4.09,
- "color": "8d00ffff"
- },
- {
- "name": "2tui1",
- "parent": "bone_down2",
- "length": 37.77,
- "rotation": -87.11,
- "x": 33.66,
- "y": 3.78,
- "color": "8d00ffff"
- },
- { "name": "bone_right", "parent": "root", "x": -450, "y": -50.29, "color": "06ff00ff" },
- { "name": "bone_right2", "parent": "bone_right", "x": 18.5, "y": 75.5, "color": "06ff00ff" },
- {
- "name": "3shenti",
- "parent": "bone_right2",
- "length": 76.38,
- "rotation": 90.88,
- "x": -0.57,
- "y": 4.88,
- "color": "06ff00ff"
- },
- {
- "name": "3tou",
- "parent": "3shenti",
- "length": 130.67,
- "rotation": -1.41,
- "x": 77.03,
- "y": -0.05,
- "color": "06ff00ff"
- },
- {
- "name": "3erduo",
- "parent": "3tou",
- "length": 40.97,
- "rotation": 35.66,
- "x": 118.71,
- "y": 71.95,
- "color": "06ff00ff"
- },
- {
- "name": "3tou2",
- "parent": "3tou",
- "length": 45.7,
- "rotation": -22.05,
- "x": 133.58,
- "y": 13.34,
- "color": "06ff00ff"
- },
- { "name": "3tou5", "parent": "3tou", "rotation": -10.24, "x": 90.81, "y": 39.84, "color": "06ff00ff" },
- {
- "name": "3shou1",
- "parent": "3shenti",
- "length": 70.55,
- "rotation": -155.84,
- "x": 68.96,
- "y": 83.48,
- "color": "06ff00ff"
- },
- { "name": "gun1", "parent": "bone_right2", "x": 1.05, "y": 55.65, "color": "06ff00ff" },
- {
- "name": "3qiang",
- "parent": "gun1",
- "length": 150.75,
- "rotation": 9.81,
- "x": 31.25,
- "y": 5.87,
- "color": "06ff00ff"
- },
- {
- "name": "3tui2",
- "parent": "bone_right2",
- "length": 40.38,
- "rotation": -93.22,
- "x": -53.99,
- "y": 8.21,
- "color": "06ff00ff"
- },
- {
- "name": "3tui1",
- "parent": "bone_right2",
- "length": 34.72,
- "rotation": -86.06,
- "x": 21.31,
- "y": 2.28,
- "color": "06ff00ff"
- },
- { "name": "bone_up", "parent": "root", "x": 331.6, "y": -49.72, "color": "ffc600ff" },
- { "name": "bone_up2", "parent": "bone_up", "x": -0.42, "y": 80.76, "color": "ffc600ff" },
- {
- "name": "1shenti1",
- "parent": "bone_up2",
- "length": 80.9,
- "rotation": 91.11,
- "x": -0.72,
- "y": -2.24,
- "color": "ffc600ff"
- },
- {
- "name": "1tou1",
- "parent": "1shenti1",
- "length": 144.17,
- "rotation": -0.22,
- "x": 81.56,
- "y": 0.36,
- "color": "ffc600ff"
- },
- {
- "name": "1erduo2",
- "parent": "1tou1",
- "length": 45.38,
- "rotation": 37.7,
- "x": 122.28,
- "y": 58.1,
- "color": "ffc600ff"
- },
- {
- "name": "1erduo1",
- "parent": "1tou1",
- "length": 45.15,
- "rotation": -36.32,
- "x": 119.77,
- "y": -57.99,
- "color": "ffc600ff"
- },
- {
- "name": "1tui2",
- "parent": "bone_up2",
- "length": 36.55,
- "rotation": -87.37,
- "x": -37.97,
- "y": 1.55,
- "color": "ffc600ff"
- },
- {
- "name": "1tui1",
- "parent": "bone_up2",
- "length": 37.52,
- "rotation": -90,
- "x": 33.19,
- "y": 1.71,
- "color": "ffc600ff"
- },
- { "name": "gun3", "parent": "bone_up2", "x": -4.67, "y": 81.87, "color": "ffc600ff" },
- {
- "name": "1qiang1",
- "parent": "gun3",
- "length": 196.45,
- "rotation": 90,
- "x": -0.66,
- "y": 28.74,
- "color": "ffc600ff"
- },
- {
- "name": "3erduo2",
- "parent": "3tou",
- "length": 40.97,
- "rotation": -40.55,
- "x": 123.62,
- "y": -39.29,
- "color": "06ff00ff"
- },
- { "name": "3tou6", "parent": "3tou", "rotation": -10.24, "x": 92.63, "y": -42.99, "color": "06ff00ff" },
- {
- "name": "3shou3",
- "parent": "3shenti",
- "length": 32.23,
- "rotation": -68.68,
- "x": 42.42,
- "y": -31.5,
- "color": "06ff00ff"
- },
- { "name": "3shou4", "parent": "3shou3", "length": 35.34, "rotation": -1.26, "x": 32.23, "color": "06ff00ff" },
- {
- "name": "3shenti2",
- "parent": "3shenti",
- "length": 36.82,
- "rotation": 137.56,
- "x": 91.22,
- "y": 79.14,
- "color": "06ff00ff"
- },
- { "name": "3shenti3", "parent": "3shenti2", "length": 36.44, "rotation": -2.48, "x": 36.82, "color": "06ff00ff" },
- { "name": "3shenti4", "parent": "3shenti3", "length": 25.91, "rotation": 1.12, "x": 36.44, "color": "06ff00ff" },
- {
- "name": "3shenti5",
- "parent": "3shenti",
- "length": 34.97,
- "rotation": 164.86,
- "x": 73.52,
- "y": 46.43,
- "color": "06ff00ff"
- },
- { "name": "3shenti6", "parent": "3shenti5", "length": 33.02, "rotation": -4.96, "x": 34.97, "color": "06ff00ff" },
- { "name": "3shenti7", "parent": "3shenti6", "length": 23.17, "rotation": -1.38, "x": 33.02, "color": "06ff00ff" },
- {
- "name": "target1",
- "parent": "3qiang",
- "rotation": -25.76,
- "x": 52.51,
- "y": -14.64,
- "scaleX": 0.9487,
- "scaleY": 0.9487,
- "color": "ff3f00ff"
- },
- {
- "name": "1fa",
- "parent": "1tou1",
- "length": 35.27,
- "rotation": -2.6,
- "x": 143.91,
- "y": 2.59,
- "color": "ffc600ff"
- },
- {
- "name": "1shou1",
- "parent": "1shenti1",
- "length": 66.44,
- "rotation": 15.49,
- "x": 67.39,
- "y": -60.94,
- "color": "ffc600ff"
- },
- {
- "name": "1wei2",
- "parent": "1shenti1",
- "length": 39.45,
- "rotation": -164.6,
- "x": 77.98,
- "y": -11.98,
- "color": "ffc600ff"
- },
- { "name": "1wei3", "parent": "1wei2", "length": 26.06, "rotation": 11.52, "x": 39.45, "color": "ffc600ff" },
- { "name": "1wei4", "parent": "1wei3", "length": 22.44, "rotation": 2, "x": 26.06, "color": "ffc600ff" },
- {
- "name": "1shenti2",
- "parent": "1shenti1",
- "length": 73.71,
- "rotation": -1.5,
- "x": 51.25,
- "y": 71.85,
- "color": "ffc600ff"
- },
- { "name": "target2", "parent": "1qiang1", "rotation": -90.05, "x": 30.06, "y": 47.21, "color": "ff3f00ff" },
- {
- "name": "effect_right",
- "parent": "3qiang",
- "rotation": -0.05,
- "x": 151.99,
- "y": -1.75,
- "scaleX": 2,
- "scaleY": 2
- },
- {
- "name": "effect_down",
- "parent": "2qiang",
- "rotation": -1,
- "x": 151.04,
- "y": 0.39,
- "scaleX": 2,
- "scaleY": 2
- },
- {
- "name": "effect_up",
- "parent": "1qiang1",
- "rotation": -0.05,
- "x": 203.47,
- "y": -0.11,
- "scaleX": 2,
- "scaleY": 2
- },
- { "name": "2qiang2", "parent": "2qiang", "rotation": 89.05, "x": 30.53, "y": -33.26, "color": "8d00ffff" },
- { "name": "3qiang2", "parent": "3qiang", "rotation": -10.18, "x": -72.48, "y": -26.47, "color": "06ff00ff" },
- { "name": "1qiang2", "parent": "1qiang1", "x": 37.95, "y": -36.25, "color": "ffc600ff" }
- ],
- "slots": [
- { "name": "3yy", "bone": "bone_right", "attachment": "3yy" },
- { "name": "3shou2", "bone": "3shou3", "attachment": "3shou2" },
- { "name": "3tui2", "bone": "3tui1", "attachment": "3tui2" },
- { "name": "3wei2", "bone": "3shenti", "attachment": "3wei2" },
- { "name": "3body", "bone": "3shenti", "attachment": "3body" },
- { "name": "3tui1", "bone": "3tui2", "attachment": "3tui1" },
- { "name": "3er2", "bone": "3erduo2", "attachment": "3er2" },
- { "name": "3er1", "bone": "3erduo", "attachment": "3er1" },
- { "name": "3tou", "bone": "3tou", "attachment": "3tou" },
- { "name": "3wei1", "bone": "3shenti", "attachment": "3wei1" },
- { "name": "3shou1", "bone": "3shou1", "attachment": "3shou1" },
- { "name": "3eye2", "bone": "3tou6", "attachment": "3eye2" },
- { "name": "3zui", "bone": "3tou", "attachment": "3zui" },
- { "name": "3eye1", "bone": "3tou5", "attachment": "3eye1" },
- { "name": "3fa", "bone": "3tou2", "attachment": "3fa" },
- { "name": "3wuqi", "bone": "3qiang", "attachment": "3wuqi" },
- { "name": "3shou3", "bone": "target1", "attachment": "3shou3" },
- { "name": "2yy", "bone": "bone_down", "color": "ffffff80", "attachment": "2yy" },
- { "name": "2tui2", "bone": "2tui1", "attachment": "2tui2" },
- { "name": "2tui1", "bone": "2tui2", "attachment": "2tui1" },
- { "name": "2body", "bone": "2shenti", "attachment": "2body" },
- { "name": "2er2", "bone": "2erduo1", "attachment": "2er2" },
- { "name": "2shou2", "bone": "2youshou1", "attachment": "2shou2" },
- { "name": "2er1", "bone": "2erduo2", "attachment": "2er1" },
- { "name": "2tou", "bone": "2tou", "attachment": "2tou" },
- { "name": "2shou1", "bone": "2zuoshou", "attachment": "2shou1" },
- { "name": "2wei", "bone": "2shenti", "attachment": "2wei" },
- { "name": "2eye2", "bone": "2tou2", "attachment": "2eye2" },
- { "name": "2eye1", "bone": "2tou4", "attachment": "2eye1" },
- { "name": "2zui", "bone": "2tou", "attachment": "2zui" },
- { "name": "2fa", "bone": "2tou3", "attachment": "2fa" },
- { "name": "2wuqi", "bone": "2qiang", "attachment": "2wuqi" },
- { "name": "1yy", "bone": "bone_up", "attachment": "1yy" },
- { "name": "1wuqi", "bone": "1qiang1", "attachment": "1wuqi" },
- { "name": "1shou2", "bone": "1shenti2", "attachment": "1shou2" },
- { "name": "1tui2", "bone": "1tui1", "attachment": "1tui2" },
- { "name": "1tui1", "bone": "1tui2", "attachment": "1tui1" },
- { "name": "1shou1", "bone": "1shou1", "attachment": "1shou1" },
- { "name": "1body", "bone": "1shenti1", "attachment": "1body" },
- { "name": "1fa", "bone": "1fa", "attachment": "1fa" },
- { "name": "1tou", "bone": "1tou1", "attachment": "1tou" },
- { "name": "1wei2", "bone": "1wei2", "attachment": "1wei2" },
- { "name": "1wei1", "bone": "1shenti1", "attachment": "1wei1" },
- { "name": "1er2", "bone": "1erduo1", "attachment": "1er2" },
- { "name": "1er1", "bone": "1erduo2", "attachment": "1er1" },
- { "name": "effect_right", "bone": "effect_right" },
- { "name": "effect_up2", "bone": "effect_up" },
- { "name": "effect_down", "bone": "effect_down" },
- { "name": "effect_right2", "bone": "effect_right", "color": "ffffff4d", "blend": "additive" },
- { "name": "effect_up", "bone": "effect_up", "color": "ffffff4d", "blend": "additive" },
- { "name": "effect_down2", "bone": "effect_down", "color": "ffffff4d", "blend": "additive" }
- ],
- "ik": [
- {
- "name": "ik_r_down",
- "bones": [ "2zuoshou" ],
- "target": "ik_r_down",
- "compress": true,
- "stretch": true
- },
- {
- "name": "target1",
- "order": 1,
- "bones": [ "3shou3", "3shou4" ],
- "target": "target1",
- "bendPositive": false
- },
- {
- "name": "target2",
- "order": 2,
- "bones": [ "1shenti2" ],
- "target": "target2",
- "compress": true
- },
- {
- "name": "target4",
- "order": 3,
- "bones": [ "2youshou1" ],
- "target": "2qiang2"
- },
- {
- "name": "target5",
- "order": 4,
- "bones": [ "3shou1" ],
- "target": "3qiang2",
- "compress": true,
- "stretch": true
- },
- {
- "name": "target6",
- "order": 5,
- "bones": [ "1shou1" ],
- "target": "1qiang2"
- }
- ],
- "skins": [
- {
- "name": "default",
- "attachments": {
- "1body": {
- "1body": { "x": 32.28, "y": 3.25, "rotation": -91.16, "width": 165, "height": 104 }
- },
- "1er1": {
- "1er1": {
- "type": "mesh",
- "uvs": [ 0.77464, 0.05861, 0.83497, 0.11333, 0.89382, 0.18897, 0.95415, 0.30001, 0.99651, 0.41136, 0.99564, 0.46059, 0.93029, 0.61034, 0.71126, 0.84564, 0.4875, 0.97834, 0.26842, 0.98753, 0.13517, 0.88603, 0.05277, 0.7782, 0, 0.66072, 0, 0, 0.63633, 0, 0.11103, 0.59453, 0.14046, 0.69753, 0.2155, 0.79248, 0.32144, 0.85846, 0.62285, 0.13514, 0.71987, 0.182, 0.8008, 0.25429, 0.85758, 0.36689, 0.88658, 0.45523 ],
- "triangles": [ 19, 13, 14, 19, 14, 0, 20, 19, 0, 20, 0, 1, 21, 20, 1, 21, 1, 2, 21, 2, 3, 22, 21, 3, 22, 3, 4, 23, 22, 4, 5, 23, 4, 15, 13, 19, 6, 23, 5, 12, 13, 15, 17, 16, 15, 12, 15, 16, 11, 12, 16, 15, 18, 17, 22, 7, 19, 20, 22, 19, 22, 20, 21, 7, 22, 23, 7, 23, 6, 19, 18, 15, 7, 18, 19, 17, 10, 11, 17, 11, 16, 8, 18, 7, 9, 17, 18, 9, 18, 8, 10, 17, 9 ],
- "vertices": [ 1, 33, 28.33, -32.81, 1, 1, 33, 22.96, -33.93, 1, 2, 33, 16.6, -34.12, 0.84267, 32, 156.28, 41.25, 0.15733, 2, 33, 8.42, -32.98, 0.68533, 32, 149.11, 37.15, 0.31467, 2, 33, 1, -30.85, 0.528, 32, 141.93, 34.3, 0.472, 2, 33, -1.42, -28.83, 0.528, 32, 138.79, 34.41, 0.472, 2, 33, -6.05, -19.27, 0.528, 32, 129.28, 39.14, 0.472, 2, 33, -8.24, 2.1, 0.528, 32, 114.47, 54.72, 0.472, 2, 33, -5.1, 19.64, 0.528, 32, 106.24, 70.52, 0.472, 2, 33, 4.02, 31.99, 0.528, 32, 105.9, 85.87, 0.472, 2, 33, 14.92, 35.22, 0.68533, 32, 112.55, 95.09, 0.31467, 2, 33, 23.91, 35.41, 0.84267, 32, 119.55, 100.74, 0.15733, 1, 33, 32.09, 33.6, 1, 1, 33, 65.12, 7.2, 1, 1, 33, 37.31, -27.59, 1, 1, 33, 30.55, 24.89, 1, 2, 33, 24.11, 27.39, 0.84267, 32, 124.61, 94.52, 0.15733, 2, 33, 16.09, 27.09, 0.68533, 32, 118.45, 89.36, 0.31467, 2, 33, 8.16, 23.93, 0.528, 32, 114.1, 82.02, 0.472, 1, 33, 31.14, -21.46, 1, 1, 33, 24.56, -24.89, 1, 2, 33, 17.41, -26.42, 0.84267, 32, 152.21, 47.83, 0.15733, 2, 33, 9.29, -25.03, 0.68533, 32, 144.94, 43.98, 0.31467, 2, 33, 3.61, -23.08, 0.528, 32, 139.25, 42.04, 0.472 ],
- "hull": 15,
- "edges": [ 24, 26, 24, 22, 22, 20, 20, 18, 16, 18, 16, 14, 14, 12, 30, 32, 32, 34, 34, 36, 36, 18, 8, 6, 6, 4, 4, 2, 2, 0, 26, 28, 0, 28, 38, 40, 40, 42, 42, 44, 44, 46, 8, 10, 10, 12, 46, 10 ],
- "width": 70,
- "height": 64
- }
- },
- "1er2": {
- "1er2": {
- "type": "mesh",
- "uvs": [ 0.73374, 0.07562, 0.89364, 0.21015, 1, 0.44078, 1, 0.64209, 0.94128, 0.78623, 0.84991, 0.90731, 0.69704, 1, 0.60901, 0.97903, 0.4774, 0.94767, 0.2806, 0.86695, 0.12597, 0.74779, 0, 0.59981, 0, 0.46377, 0, 0.37928, 0.08008, 0.1967, 0.19078, 0.08908, 0.34892, 0, 0.52639, 0, 0.11503, 0.46377, 0.18007, 0.30186, 0.27203, 0.19638, 0.39539, 0.13995, 0.69817, 0.86362, 0.80134, 0.78758, 0.86414, 0.67473, 0.89106, 0.53736 ],
- "triangles": [ 21, 16, 17, 20, 15, 16, 21, 20, 16, 14, 15, 20, 19, 14, 20, 13, 14, 19, 18, 12, 13, 19, 18, 13, 25, 0, 1, 25, 1, 2, 11, 12, 18, 25, 2, 3, 21, 17, 0, 24, 25, 3, 9, 10, 18, 11, 18, 10, 4, 24, 3, 25, 24, 22, 23, 24, 4, 21, 0, 25, 24, 23, 22, 22, 21, 25, 21, 19, 20, 9, 21, 22, 9, 19, 21, 9, 18, 19, 5, 23, 4, 22, 23, 5, 8, 9, 22, 7, 8, 22, 6, 7, 22, 6, 22, 5 ],
- "vertices": [ 1, 34, 51.12, 0.77, 1, 1, 34, 50.58, -13.34, 1, 1, 34, 42.86, -27.96, 1, 1, 34, 32.35, -35.41, 1, 2, 34, 22.45, -37.4, 0.84, 32, 115.7, -101.42, 0.16, 2, 34, 12.43, -36.68, 0.68, 32, 108.06, -94.9, 0.32, 2, 34, 1.4, -31.38, 0.52, 32, 102.31, -84.1, 0.48, 2, 34, -1.07, -25.58, 0.52, 32, 103.75, -77.96, 0.48, 2, 34, -4.77, -16.91, 0.52, 32, 105.91, -68.78, 0.48, 2, 34, -8.53, -2.69, 0.52, 32, 111.3, -55.09, 0.48, 2, 34, -8.58, 10.55, 0.52, 32, 119.1, -44.4, 0.48, 2, 34, -5.97, 23.23, 0.52, 32, 128.72, -35.74, 0.48, 2, 34, 1.13, 28.27, 0.52, 32, 137.42, -35.88, 0.48, 2, 34, 5.54, 31.4, 0.68, 32, 142.83, -35.97, 0.32, 2, 34, 18.32, 33.59, 0.84, 32, 154.42, -41.77, 0.16, 1, 34, 28.42, 31.26, 1, 1, 34, 39.48, 25.54, 1, 1, 34, 46.67, 15.41, 1, 2, 34, 5.8, 21.7, 0.68, 32, 137.29, -43.93, 0.32, 2, 34, 16.88, 23.99, 0.84, 32, 147.58, -48.65, 0.16, 1, 34, 26.11, 22.65, 1, 1, 34, 34.05, 17.7, 1, 2, 34, 8.56, -26.4, 0.52, 32, 111.03, -84.32, 0.48, 2, 34, 16.71, -29.47, 0.68, 32, 115.78, -91.63, 0.32, 2, 34, 25.15, -28.87, 0.84, 32, 122.93, -96.14, 0.16, 1, 34, 33.4, -25.32, 1 ],
- "hull": 18,
- "edges": [ 22, 20, 20, 18, 18, 16, 12, 10, 10, 8, 8, 6, 26, 28, 28, 30, 30, 32, 32, 34, 34, 0, 0, 2, 6, 4, 2, 4, 22, 24, 24, 26, 24, 36, 36, 38, 38, 40, 40, 42, 12, 14, 14, 16, 14, 44, 44, 46, 46, 48, 48, 50 ],
- "width": 70,
- "height": 64
- }
- },
- "1fa": {
- "1fa": { "x": 14.8, "y": 1.36, "rotation": -88.34, "width": 47, "height": 52 }
- },
- "1shou1": {
- "1shou1": {
- "type": "mesh",
- "uvs": [ 0.74946, 0.08867, 0.82039, 0.12809, 0.91192, 0.26089, 0.92129, 0.42455, 0.87165, 0.67036, 0.79802, 0.82961, 0.68749, 0.93465, 0.56936, 0.99051, 0.5397, 0.92755, 0.27183, 0.89517, 0.12346, 0.82462, 0.07721, 0.78734, 0.03848, 0.6662, 0.00679, 0.37401, 0.07495, 0.18152, 0.16177, 0.08922, 0.26771, 0.01929, 0.55653, 0.01972 ],
- "triangles": [ 15, 12, 13, 0, 2, 3, 2, 0, 1, 14, 15, 13, 12, 3, 11, 15, 16, 17, 15, 17, 0, 3, 15, 0, 15, 3, 12, 4, 11, 3, 10, 11, 4, 4, 9, 10, 4, 8, 9, 5, 8, 4, 6, 8, 5, 7, 8, 6 ],
- "vertices": [ 60.06, -22.77, 55.68, -27.54, 41.78, -33.03, 25.25, -32.37, 0.8, -26.81, -14.81, -20.23, -24.74, -11.44, -29.68, -2.51, -23.17, -0.89, -18.36, 18.07, -10.4, 28.14, -6.37, 31.16, 6.05, 32.95, 35.64, 32.85, 54.63, 26.39, 63.42, 19.41, 69.84, 11.24, 68.12, -9.48 ],
- "hull": 18,
- "edges": [ 0, 34, 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 20, 22, 22, 24, 24, 26, 26, 28, 28, 30, 30, 32, 32, 34 ],
- "width": 72,
- "height": 101
- }
- },
- "1shou2": {
- "1shou2": { "x": 38.93, "y": -0.74, "rotation": -89.65, "width": 67, "height": 93 }
- },
- "1tou": {
- "1tou": {
- "type": "mesh",
- "uvs": [ 0.62424, 0.02402, 0.6537, 0.03319, 0.68191, 0.04196, 0.71731, 0.05297, 0.92019, 0.23784, 0.94731, 0.29898, 0.95816, 0.35866, 0.95708, 0.43727, 1, 0.55664, 1, 1, 0, 1, 0, 0.55373, 0.05314, 0.4067, 0.05954, 0.3343, 0.07138, 0.2826, 0.09408, 0.23516, 0.2929, 0.05297, 0.33521, 0.03405, 0.38094, 0.01541, 0.41875, 0, 0.54698, 0, 0.89307, 0.28006, 0.90934, 0.31645, 0.91802, 0.37904, 0.91368, 0.42999, 0.69996, 0.10683, 0.66741, 0.09227, 0.62618, 0.07626, 0.57845, 0.06461, 0.53831, 0.05734, 0.30865, 0.10079, 0.34495, 0.08493, 0.38801, 0.06907, 0.4277, 0.05661, 0.11805, 0.26715, 0.10127, 0.3085, 0.08902, 0.35028, 0.08734, 0.40707 ],
- "triangles": [ 33, 19, 20, 18, 19, 33, 29, 33, 20, 28, 29, 20, 0, 28, 20, 32, 18, 33, 17, 18, 32, 27, 0, 1, 28, 0, 27, 31, 17, 32, 30, 16, 17, 26, 1, 2, 27, 1, 26, 31, 30, 17, 25, 2, 3, 26, 2, 25, 34, 15, 16, 25, 3, 4, 30, 34, 16, 21, 25, 4, 14, 15, 34, 21, 4, 5, 35, 14, 34, 22, 21, 5, 13, 14, 35, 36, 13, 35, 22, 5, 6, 23, 22, 6, 12, 13, 36, 37, 12, 36, 23, 21, 22, 7, 23, 6, 24, 23, 7, 11, 12, 37, 10, 11, 37, 24, 7, 8, 9, 24, 8, 24, 21, 23, 25, 21, 24, 26, 25, 24, 27, 26, 24, 28, 27, 24, 29, 28, 24, 32, 33, 29, 29, 37, 32, 37, 31, 32, 36, 35, 30, 35, 34, 30, 36, 30, 31, 31, 37, 36, 37, 29, 24, 10, 37, 24, 10, 24, 9 ],
- "vertices": [ 1, 32, 149.47, -26.41, 1, 2, 32, 147.92, -32.64, 0.92267, 34, 7.67, 37.1, 0.07733, 2, 32, 146.43, -38.59, 0.84533, 34, 10, 31.42, 0.15467, 2, 32, 144.57, -46.07, 0.768, 34, 12.93, 24.29, 0.232, 2, 32, 114.66, -88.59, 0.768, 34, 14.01, -27.69, 0.232, 2, 32, 104.9, -94.18, 0.84533, 34, 9.46, -37.97, 0.15467, 2, 32, 95.44, -96.33, 0.92267, 34, 3.1, -45.31, 0.07733, 1, 32, 83.02, -95.89, 1, 1, 32, 64.01, -104.68, 1, 1, 32, -6.03, -103.53, 1, 1, 32, -2.54, 108.44, 1, 1, 32, 67.96, 107.28, 1, 1, 32, 91.01, 95.64, 1, 2, 32, 102.42, 94.09, 0.936, 33, 6.3, 40.63, 0.064, 2, 32, 110.55, 91.45, 0.872, 33, 11.11, 33.56, 0.128, 2, 32, 117.96, 86.51, 0.808, 33, 13.96, 25.12, 0.192, 2, 32, 146.05, 43.89, 0.808, 33, 10.12, -25.77, 0.192, 2, 32, 148.89, 34.88, 0.872, 33, 6.86, -34.65, 0.128, 2, 32, 151.68, 25.13, 0.936, 33, 3.1, -44.06, 0.064, 1, 32, 153.98, 17.08, 1, 1, 32, 153.53, -10.1, 1, 2, 32, 108.08, -82.73, 0.768, 34, 5.24, -26.86, 0.232, 2, 32, 102.28, -86.09, 0.84533, 34, 2.55, -33, 0.15467, 2, 32, 92.36, -87.77, 0.92267, 34, -4.45, -40.23, 0.07733, 1, 32, 84.32, -86.71, 1, 2, 32, 136.12, -42.25, 0.768, 34, 3.86, 22.36, 0.232, 2, 32, 138.53, -35.39, 0.84533, 34, 1.74, 29.32, 0.15467, 2, 32, 141.21, -26.69, 0.92267, 34, -1.26, 37.91, 0.07733, 1, 32, 143.21, -16.6, 1, 1, 32, 144.5, -8.11, 1, 2, 32, 138.44, 40.68, 0.808, 33, 2.14, -23.66, 0.192, 2, 32, 140.82, 32.94, 0.872, 33, -0.71, -31.24, 0.128, 2, 32, 143.18, 23.77, 0.936, 33, -4.45, -39.93, 0.064, 1, 32, 145.01, 15.33, 1, 2, 32, 112.83, 81.51, 0.808, 33, 6.84, 24.31, 0.192, 2, 32, 106.35, 85.18, 0.872, 33, 3.96, 31.17, 0.128, 2, 32, 99.79, 87.88, 0.936, 33, 0.42, 37.32, 0.064, 1, 32, 90.83, 88.39, 1 ],
- "hull": 21,
- "edges": [ 18, 20, 30, 32, 32, 34, 38, 36, 36, 34, 30, 28, 28, 26, 26, 24, 20, 22, 24, 22, 38, 40, 6, 8, 8, 10, 10, 12, 12, 14, 8, 42, 42, 44, 44, 46, 46, 48, 18, 16, 14, 16, 6, 50, 50, 52, 52, 54, 54, 56, 56, 58, 4, 6, 2, 4, 40, 0, 0, 2, 32, 60, 60, 62, 62, 64, 64, 66, 30, 68, 68, 70, 70, 72, 72, 74 ],
- "width": 212,
- "height": 158
- }
- },
- "1tui1": {
- "1tui1": { "x": 17.07, "y": 0.06, "rotation": 87.33, "width": 56, "height": 45 }
- },
- "1tui2": {
- "1tui2": { "x": 15.77, "y": -2.32, "rotation": 89.95, "width": 56, "height": 48 }
- },
- "1wei1": {
- "1wei1": {
- "type": "mesh",
- "uvs": [ 1, 0.1382, 1, 0.22109, 0.94646, 0.4615, 0.8971, 0.66046, 0.8158, 0.77237, 0.72144, 0.8677, 0.5661, 1, 0.47754, 1, 0.35124, 0.93402, 0.22348, 0.84698, 0.10879, 0.69776, 0.04636, 0.46564, 0, 0.25425, 0, 0, 0.06598, 0, 0.13019, 0.11811, 0.22126, 0.20477, 0.32867, 0.26477, 0.44542, 0.3081, 0.57268, 0.29811, 0.67659, 0.25811, 0.76182, 0.20477, 0.8377, 0.13477, 0.89024, 0.07144, 0.94792, 0 ],
- "triangles": [ 7, 18, 19, 8, 17, 18, 9, 16, 17, 16, 11, 15, 15, 12, 14, 15, 11, 12, 12, 13, 14, 19, 20, 5, 4, 20, 21, 21, 22, 3, 22, 23, 2, 0, 1, 23, 1, 2, 23, 23, 24, 0, 9, 17, 8, 10, 16, 9, 16, 10, 11, 5, 6, 19, 6, 7, 19, 4, 5, 20, 4, 21, 3, 3, 22, 2, 8, 18, 7 ],
- "vertices": [ 1, 32, 24.55, -97.03, 1, 1, 32, 18.83, -96.94, 1, 2, 31, 83.65, -85.77, 0.704, 32, 2.42, -86.12, 0.296, 1, 31, 70.12, -75.77, 1, 1, 31, 62.72, -59.6, 1, 1, 31, 56.52, -40.88, 1, 1, 31, 48.02, -10.1, 1, 1, 31, 48.37, 7.35, 1, 1, 31, 53.42, 32.13, 1, 1, 31, 59.94, 57.17, 1, 1, 31, 70.69, 79.55, 1, 2, 31, 86.95, 91.52, 0.64, 32, 5.05, 91.18, 0.36, 1, 32, 19.78, 100.08, 1, 1, 32, 37.33, 99.79, 1, 1, 32, 37.11, 86.79, 1, 1, 32, 28.76, 74.28, 1, 1, 32, 22.48, 56.44, 1, 1, 32, 17.99, 35.35, 1, 1, 32, 14.62, 12.4, 1, 1, 32, 14.9, -12.68, 1, 1, 32, 17.32, -33.19, 1, 1, 32, 20.73, -50.04, 1, 1, 32, 25.31, -65.07, 1, 1, 32, 29.51, -75.49, 1, 1, 32, 34.25, -86.93, 1 ],
- "hull": 25,
- "edges": [ 24, 26, 24, 22, 22, 20, 20, 18, 18, 16, 16, 14, 12, 14, 12, 10, 10, 8, 8, 6, 6, 4, 4, 2, 2, 0, 48, 0, 26, 28, 28, 30, 30, 32, 32, 34, 34, 36, 36, 38, 38, 40, 40, 42, 42, 44, 44, 46, 46, 48 ],
- "width": 197,
- "height": 69
- }
- },
- "1wei2": {
- "1wei2": {
- "type": "mesh",
- "uvs": [ 0.75927, 0.20474, 0.79976, 0.35602, 0.84531, 0.49242, 0.92376, 0.63626, 0.99694, 0.75276, 0.88474, 0.84302, 0.67845, 0.94741, 0.48184, 0.991, 0.35184, 1, 0.24809, 0.90658, 0.15445, 0.7677, 0.08669, 0.62218, 0.03861, 0.45602, 0, 0.25018, 0, 0.1353, 0.29054, 1.0E-5, 0.71372, 0 ],
- "triangles": [ 13, 14, 15, 12, 13, 15, 0, 11, 12, 0, 10, 11, 15, 16, 0, 12, 15, 0, 1, 10, 0, 3, 6, 2, 5, 3, 4, 7, 9, 10, 7, 10, 2, 2, 10, 1, 5, 6, 3, 2, 6, 7, 8, 9, 7 ],
- "vertices": [ 3, 54, -32.26, 40.75, 0.03824, 53, -7.6, 39.6, 0.14841, 52, 24.1, 37.29, 0.81335, 3, 54, -17.18, 36.6, 0.18523, 53, 7.62, 35.98, 0.35142, 52, 39.73, 36.78, 0.46335, 3, 54, -3.14, 33.63, 0.50332, 53, 21.75, 33.5, 0.34773, 52, 54.08, 37.17, 0.14895, 3, 54, 13.16, 33.08, 0.87879, 53, 38.06, 33.52, 0.10664, 52, 70.05, 40.44, 0.01457, 3, 54, 26.84, 33.45, 0.97853, 53, 51.72, 34.36, 0.02146, 52, 83.26, 43.99, 0, 2, 54, 29.14, 19.41, 0.99624, 53, 54.51, 20.41, 0.00376, 2, 54, 28.04, -3.32, 0.99988, 52, 93.03, 8.53, 1.2E-4, 3, 54, 22.16, -22.18, 0.96777, 53, 48.98, -21.39, 0.00217, 52, 91.72, -11.18, 0.03006, 3, 54, 16.56, -33.65, 0.89703, 53, 43.78, -33.05, 0.02882, 52, 88.95, -23.65, 0.07415, 3, 54, 3.38, -37.77, 0.72872, 53, 30.75, -37.63, 0.10434, 52, 77.1, -30.73, 0.16694, 3, 54, -13.24, -38.75, 0.40886, 53, 14.18, -39.19, 0.1816, 52, 61.17, -35.57, 0.40954, 3, 54, -29.16, -37.21, 0.1645, 53, -1.78, -38.2, 0.11322, 52, 45.33, -37.79, 0.72228, 3, 54, -45.9, -32.96, 0.03656, 53, -18.66, -34.54, 0.01341, 52, 28.06, -37.57, 0.95003, 2, 54, -65.61, -25.92, 7.1E-4, 52, 7.25, -35.33, 0.99929, 1, 52, -3.76, -32.06, 1, 1, 52, -8.62, -0.91, 1, 3, 54, -52.22, 47.14, 3.7E-4, 53, -27.77, 45.3, 0.02226, 52, 3.2, 38.84, 0.97737 ],
- "hull": 17,
- "edges": [ 26, 24, 24, 22, 22, 20, 20, 18, 18, 16, 14, 16, 14, 12, 12, 10, 10, 8, 8, 6, 6, 4, 4, 2, 2, 0, 0, 32, 26, 28, 30, 32, 28, 30 ],
- "width": 98,
- "height": 100
- }
- },
- "1wuqi": {
- "1wuqi": { "x": 94.14, "y": -1.26, "rotation": -90.05, "width": 101, "height": 221 }
- },
- "1yy": {
- "1yy": { "x": -2.07, "y": 43.22, "rotation": -0.05, "width": 209, "height": 45 }
- },
- "2body": {
- "2body": { "x": 28.34, "y": 1.42, "rotation": -90.76, "width": 165, "height": 108 }
- },
- "2er1": {
- "2er1": {
- "type": "mesh",
- "uvs": [ 0.90377, 0.18787, 0.95537, 0.31073, 0.98806, 0.40057, 0.99623, 0.48762, 0.90377, 0.58102, 0.66543, 0.73118, 0.4492, 0.89772, 0.34846, 1, 0.24034, 0.94959, 0.12486, 0.86495, 0, 0.73937, 0, 0, 0.74866, 1.0E-5, 0.8792, 0.48273, 0.8448, 0.36534, 0.78091, 0.24521, 0.31651, 0.86495, 0.1912, 0.78305, 0.11994, 0.66838 ],
- "triangles": [ 8, 16, 7, 7, 16, 6, 4, 13, 3, 13, 2, 3, 6, 16, 5, 5, 13, 4, 16, 17, 5, 10, 18, 9, 9, 18, 17, 17, 18, 5, 10, 11, 18, 5, 14, 13, 5, 15, 14, 5, 18, 15, 15, 11, 12, 15, 18, 11, 14, 0, 1, 14, 15, 0, 15, 12, 0, 9, 17, 8, 14, 1, 2, 8, 17, 16, 13, 14, 2 ],
- "vertices": [ 1, 8, 18.24, -32.77, 1, 2, 8, 9.81, -31.36, 0.704, 4, 135.28, 41.72, 0.296, 2, 8, 3.85, -30.04, 0.512, 4, 129.67, 39.32, 0.488, 2, 8, -0.99, -27.4, 0.512, 4, 124.2, 38.63, 0.488, 2, 8, -2.17, -18.74, 0.512, 4, 118.18, 44.97, 0.488, 1, 8, -0.51, 0.37, 1, 2, 8, -0.58, 18.79, 0.712, 4, 97.54, 76.35, 0.288, 2, 8, -1.9, 28.25, 0.712, 4, 90.95, 83.26, 0.288, 2, 8, 5, 32.69, 0.712, 4, 93.96, 90.9, 0.288, 2, 8, 13.98, 36.33, 0.904, 4, 99.12, 99.09, 0.096, 1, 8, 25.45, 39.05, 1, 1, 8, 63.83, 12.66, 1, 1, 8, 34.14, -30.53, 1, 2, 8, 3.91, -20.83, 0.512, 4, 124.33, 46.82, 0.488, 2, 8, 11.36, -23.03, 0.704, 4, 131.67, 49.39, 0.296, 1, 8, 20.13, -23.64, 1, 2, 8, 6.38, 25.27, 0.712, 4, 99.41, 85.68, 0.288, 2, 8, 15.6, 29.58, 0.904, 4, 104.38, 94.56, 0.096, 1, 8, 24.38, 29.59, 1 ],
- "hull": 13,
- "edges": [ 14, 12, 12, 10, 10, 8, 8, 6, 8, 26, 26, 28, 28, 30, 6, 4, 4, 2, 2, 0, 22, 24, 0, 24, 12, 32, 32, 34, 34, 36, 14, 16, 16, 18, 20, 22, 18, 20 ],
- "width": 70,
- "height": 63
- }
- },
- "2er2": {
- "2er2": {
- "type": "mesh",
- "uvs": [ 1, 0.66341, 0.94851, 0.80959, 0.87947, 0.92296, 0.74081, 0.99999, 0.57262, 0.97767, 0.30767, 0.84713, 0.09312, 0.64103, 0.01149, 0.54555, 0.02297, 0.37924, 0.06629, 0.26288, 0.12511, 0.17188, 0.23567, 0.07273, 0.39604, 1.0E-5, 1, 0, 0.67489, 0.90804, 0.80019, 0.83346, 0.86668, 0.71114, 0.89737, 0.60673, 0.11999, 0.49336, 0.15068, 0.37701, 0.19415, 0.28155 ],
- "triangles": [ 4, 14, 3, 3, 15, 2, 3, 14, 15, 4, 5, 14, 2, 15, 1, 15, 14, 16, 6, 18, 5, 18, 19, 5, 19, 20, 5, 17, 5, 20, 16, 14, 5, 12, 20, 11, 15, 16, 1, 17, 16, 5, 1, 16, 0, 16, 17, 0, 12, 17, 20, 6, 7, 18, 0, 17, 13, 17, 12, 13, 7, 8, 18, 18, 8, 19, 8, 9, 19, 19, 9, 20, 9, 10, 20, 20, 10, 11 ],
- "vertices": [ 1, 9, 28.74, -35.02, 1, 2, 9, 19.54, -37.32, 0.83467, 4, 109.3, -98.39, 0.16533, 2, 9, 11.2, -37.46, 0.66933, 4, 102.4, -93.7, 0.33067, 2, 9, 1.72, -32.39, 0.504, 4, 97.57, -84.1, 0.496, 2, 9, -4.18, -22.12, 0.504, 4, 98.65, -72.3, 0.496, 2, 9, -8.88, -2.54, 0.504, 4, 106.08, -53.59, 0.496, 2, 9, -7.83, 16.89, 0.504, 4, 118.12, -38.31, 0.496, 2, 9, -6.6, 24.88, 0.504, 4, 123.72, -32.47, 0.496, 2, 9, 1.91, 30.16, 0.66933, 4, 133.72, -33.06, 0.33067, 2, 9, 9.33, 31.85, 0.83467, 4, 140.76, -35.94, 0.16533, 1, 9, 16.17, 31.78, 1, 1, 9, 25.55, 29.08, 1, 1, 9, 35.72, 22.62, 1, 1, 9, 60.79, -11.41, 1, 2, 9, 3.43, -25.4, 0.504, 4, 102.98, -79.37, 0.496, 2, 9, 12.23, -29.81, 0.66933, 4, 107.64, -88.04, 0.33067, 2, 9, 20.9, -29.21, 0.83467, 4, 115.08, -92.53, 0.16533, 1, 9, 27.22, -27.22, 1, 2, 9, 0.42, 20.63, 0.66933, 4, 127.02, -40, 0.33067, 2, 9, 7.32, 23.04, 0.83467, 4, 134.04, -41.99, 0.16533, 1, 9, 13.73, 23.98, 1 ],
- "hull": 14,
- "edges": [ 14, 12, 12, 10, 10, 8, 6, 8, 6, 4, 4, 2, 0, 26, 2, 0, 8, 28, 28, 30, 30, 32, 32, 34, 12, 36, 36, 38, 38, 40, 14, 16, 16, 18, 18, 20, 20, 22, 24, 26, 22, 24 ],
- "width": 70,
- "height": 60
- }
- },
- "2eye1": {
- "2eye1": { "x": 1.62, "y": -0.09, "rotation": -107.22, "width": 58, "height": 57 }
- },
- "2eye2": {
- "2eye2": { "x": 2.59, "y": -0.47, "rotation": -71.69, "width": 58, "height": 57 }
- },
- "2fa": {
- "2fa": {
- "type": "mesh",
- "uvs": [ 0.73011, 0.11964, 0.88288, 0.28304, 0.96336, 0.5176, 0.95003, 0.73456, 0.83803, 0.85589, 0.66237, 0.93867, 0.50582, 0.99241, 0.28794, 0.99999, 0.14892, 0.94526, 0.03489, 0.82663, 0.02268, 0.65478, 0.15965, 0.56034, 0.24973, 0.39812, 0.26526, 0.25212, 0.27458, 0.08449, 0.3839, 0.01215, 0.52101, 0.00759 ],
- "triangles": [ 9, 10, 11, 6, 7, 11, 8, 11, 7, 8, 9, 11, 5, 6, 11, 11, 12, 5, 5, 12, 1, 1, 12, 13, 2, 4, 5, 13, 0, 1, 3, 4, 2, 13, 16, 0, 15, 16, 13, 13, 14, 15, 1, 2, 5 ],
- "vertices": [ 1, 5, 44.18, -11.98, 1, 1, 5, 35.35, -19.16, 1, 1, 5, 22.68, -22.93, 1, 1, 5, 10.97, -22.29, 1, 1, 5, 4.42, -17.02, 1, 1, 5, -0.04, -8.76, 1, 1, 4, 119.2, -1.53, 1, 1, 4, 118.57, 8.7, 1, 1, 4, 121.38, 15.3, 1, 1, 4, 127.67, 20.79, 1, 1, 4, 136.93, 21.57, 1, 2, 5, 20.41, 14.85, 0.77064, 4, 142.17, 15.24, 0.22936, 2, 5, 29.16, 10.61, 0.97737, 4, 151.02, 11.2, 0.02263, 2, 5, 37.05, 9.87, 0.99972, 4, 158.92, 10.64, 2.8E-4, 1, 5, 46.1, 9.43, 1, 1, 5, 50, 4.28, 1, 1, 5, 50.24, -2.16, 1 ],
- "hull": 17,
- "edges": [ 20, 22, 22, 24, 24, 26, 26, 28, 28, 30, 30, 32, 32, 0, 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 18, 20, 16, 18 ],
- "width": 47,
- "height": 54
- }
- },
- "2shou1": {
- "2shou1": { "x": 33.89, "y": -0.45, "rotation": 87.79, "width": 67, "height": 91 }
- },
- "2shou2": {
- "2shou2": {
- "type": "mesh",
- "uvs": [ 0.31819, 0.00679, 0.57812, 0.04972, 0.73112, 0.26033, 0.78842, 0.37065, 0.87898, 0.54503, 0.97426, 0.72854, 0.9742, 0.87993, 0.89308, 0.94838, 0.77129, 0.97876, 0.51135, 0.97854, 0.24538, 0.86743, 0.1173, 0.76009, 0.0579, 0.66171, 0.02717, 0.54251, 0.01189, 0.374, 0.04193, 0.1605, 0.18357, 0.04294, 0.47075, 0.46028, 0.27528, 0.53809, 0.64079, 0.41231, 0.54831, 0.65546, 0.327, 0.71986, 0.39814, 0.28583, 0.19738, 0.32471, 0.55781, 0.26043, 0.7369, 0.59756 ],
- "triangles": [ 25, 3, 4, 20, 19, 25, 18, 17, 20, 12, 13, 18, 21, 18, 20, 12, 18, 21, 25, 4, 5, 11, 12, 21, 10, 11, 21, 25, 5, 8, 6, 7, 5, 8, 20, 25, 9, 21, 20, 8, 9, 20, 10, 21, 9, 8, 5, 7, 1, 22, 0, 24, 1, 2, 24, 22, 1, 16, 0, 22, 23, 15, 16, 22, 23, 16, 14, 15, 23, 19, 24, 2, 19, 2, 3, 17, 22, 24, 17, 24, 19, 17, 18, 23, 17, 23, 22, 13, 14, 23, 18, 13, 23, 25, 19, 3, 20, 17, 19 ],
- "vertices": [ 1, 10, -6.76, 11.73, 1, 1, 10, 2.31, 21.11, 1, 1, 10, 23.34, 30.19, 1, 1, 10, 35.91, 32.86, 1, 1, 10, 54.56, 32.57, 1, 1, 10, 72.83, 27.07, 1, 1, 10, 83.74, 20.4, 1, 1, 10, 85.73, 12.57, 1, 1, 10, 83.51, 3.99, 1, 1, 10, 74.07, -11.47, 1, 1, 10, 57.79, -22.03, 1, 1, 10, 48.42, -25.26, 1, 1, 10, 42.24, -25.82, 1, 1, 10, 21.56, -22.59, 1, 1, 10, 4.2, -17.21, 1, 1, 10, -10.59, -7.07, 1, 1, 10, -11.42, 5.05, 1, 1, 10, 37.28, 8.17, 1, 1, 10, 38.82, -7.44, 1, 1, 10, 36.7, 21.36, 1, 1, 10, 54.32, 7.12, 1, 1, 10, 52.24, -10.16, 1, 1, 10, 21.3, 6.24, 1, 1, 10, 24.54, -5.05, 1, 1, 10, 21.52, 17.76, 1, 1, 10, 54.81, 21.25, 1 ],
- "hull": 17,
- "edges": [ 0, 32, 0, 2, 2, 4, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 20, 22, 26, 28, 28, 30, 30, 32, 22, 24, 24, 26, 24, 36, 36, 34, 4, 6, 6, 38, 38, 34, 6, 8, 8, 10 ],
- "width": 76,
- "height": 92
- }
- },
- "2tou": {
- "2tou": {
- "type": "mesh",
- "uvs": [ 0.58877, 0.02653, 0.62981, 0.04889, 0.66243, 0.06249, 0.70259, 0.07922, 0.89189, 0.22611, 0.92192, 0.27213, 0.93989, 0.32109, 1, 0.55979, 1, 1, 0, 1, 0, 0.52143, 0.04482, 0.33016, 0.06879, 0.26437, 0.10114, 0.21693, 0.28205, 0.07769, 0.32758, 0.0578, 0.3803, 0.0425, 0.4414, 0.02653, 0.94468, 0.37465, 0.94588, 0.43585, 0.12624, 0.23658, 0.11055, 0.26863, 0.0955, 0.29748, 0.08295, 0.33433, 0.07855, 0.37439, 0.07918, 0.41125, 0.29688, 0.12201, 0.34267, 0.09958, 0.38722, 0.08676, 0.43991, 0.07576, 0.48007, 0.07096, 0.57177, 0.07176, 0.61631, 0.08858, 0.65395, 0.103, 0.6872, 0.12223, 0.86193, 0.25188, 0.88828, 0.29194, 0.90459, 0.32959, 0.90898, 0.36965, 0.90396, 0.42333 ],
- "triangles": [ 30, 17, 0, 31, 30, 0, 29, 16, 17, 29, 17, 30, 28, 16, 29, 27, 15, 16, 32, 0, 1, 31, 0, 32, 28, 27, 16, 33, 1, 2, 33, 2, 3, 32, 1, 33, 26, 14, 15, 26, 15, 27, 34, 33, 3, 20, 13, 14, 35, 34, 3, 26, 20, 14, 4, 35, 3, 21, 13, 20, 12, 13, 21, 36, 35, 4, 36, 4, 5, 22, 12, 21, 37, 36, 5, 37, 5, 6, 11, 12, 22, 23, 11, 22, 38, 37, 6, 24, 11, 23, 6, 7, 18, 38, 6, 18, 25, 24, 23, 38, 39, 36, 38, 36, 37, 18, 7, 19, 25, 10, 11, 25, 11, 24, 9, 10, 25, 39, 19, 7, 39, 38, 18, 19, 39, 18, 8, 39, 7, 35, 36, 39, 34, 35, 39, 32, 33, 34, 34, 30, 32, 30, 31, 32, 34, 39, 30, 29, 30, 39, 25, 28, 29, 26, 27, 28, 28, 25, 26, 21, 20, 26, 21, 23, 22, 21, 26, 23, 26, 25, 23, 25, 29, 39, 9, 25, 39, 9, 39, 8 ],
- "vertices": [ 2, 4, 141.7, -16.09, 0.96711, 9, -1.33, 48.63, 0.03289, 2, 4, 138.18, -24.87, 0.90133, 9, 0.85, 39.42, 0.09867, 2, 4, 136.07, -31.83, 0.80267, 9, 3.13, 32.51, 0.19733, 2, 4, 133.48, -40.41, 0.72867, 9, 5.94, 24.01, 0.27133, 2, 4, 109.97, -81.05, 0.72867, 9, 10.11, -22.76, 0.27133, 2, 4, 102.47, -87.58, 0.81089, 9, 7.74, -32.42, 0.18911, 2, 4, 94.42, -91.57, 0.93217, 9, 3.45, -40.31, 0.06783, 2, 4, 55.08, -105.16, 0.9815, 9, -20.89, -74.07, 0.0185, 1, 4, -17.97, -106.74, 1, 1, 4, -22.55, 105.21, 1, 2, 4, 56.87, 106.92, 0.95556, 8, -15.73, 67.36, 0.04444, 2, 4, 88.82, 98.11, 0.86667, 8, 5.05, 41.54, 0.13333, 2, 4, 99.85, 93.27, 0.73333, 8, 11.17, 31.17, 0.26667, 2, 4, 107.87, 86.58, 0.63333, 8, 13.77, 21.06, 0.36667, 2, 4, 131.81, 48.73, 0.63333, 8, 11.09, -23.64, 0.36667, 2, 4, 135.32, 39.15, 0.73333, 8, 8.34, -33.47, 0.26667, 2, 4, 138.1, 28.04, 0.86667, 8, 4.1, -44.12, 0.13333, 2, 4, 141.03, 15.14, 0.95556, 8, -1.05, -56.29, 0.04444, 2, 4, 85.56, -92.78, 0.97533, 9, -3.1, -46.4, 0.02467, 1, 4, 75.41, -93.25, 1, 2, 4, 104.72, 81.19, 0.6, 8, 8.07, 18.52, 0.4, 2, 4, 99.33, 84.4, 0.64444, 8, 5.57, 24.27, 0.35556, 2, 4, 94.48, 87.49, 0.73333, 8, 3.43, 29.62, 0.26667, 2, 4, 88.3, 90.01, 0.86667, 8, -0.1, 35.27, 0.13333, 2, 4, 81.64, 90.8, 0.95556, 8, -5.05, 39.81, 0.04444, 1, 4, 75.52, 90.53, 1, 2, 4, 124.52, 45.43, 0.64444, 8, 3.25, -22.07, 0.35556, 2, 4, 128.45, 35.81, 0.73333, 8, 0.81, -32.18, 0.26667, 2, 4, 130.78, 26.41, 0.86667, 8, -2.78, -41.16, 0.13333, 2, 4, 132.85, 15.28, 0.95556, 8, -7.61, -51.4, 0.04444, 1, 4, 133.83, 6.79, 1, 2, 4, 134.12, -12.65, 0.95067, 9, -9.51, 47.07, 0.04933, 2, 4, 131.53, -22.15, 0.90133, 9, -6.16, 37.81, 0.09867, 2, 4, 129.31, -30.18, 0.80267, 9, -3.35, 29.97, 0.19733, 2, 4, 126.27, -37.3, 0.73689, 9, -1.74, 22.4, 0.26311, 2, 4, 105.55, -74.8, 0.73689, 9, 2.9, -20.19, 0.26311, 2, 4, 99.03, -80.52, 0.80267, 9, 0.86, -28.63, 0.19733, 2, 4, 92.85, -84.12, 0.90133, 9, -2.12, -35.12, 0.09867, 2, 4, 86.22, -85.19, 0.96711, 9, -6.92, -39.81, 0.03289, 1, 4, 77.29, -84.32, 1 ],
- "hull": 18,
- "edges": [ 16, 18, 18, 20, 20, 22, 22, 24, 24, 26, 26, 28, 28, 30, 30, 32, 32, 34, 34, 0, 6, 8, 8, 10, 10, 12, 12, 36, 36, 38, 16, 14, 38, 14, 26, 40, 40, 42, 42, 44, 44, 46, 46, 48, 48, 50, 28, 52, 52, 54, 54, 56, 56, 58, 58, 60, 62, 64, 64, 66, 66, 68, 68, 6, 4, 6, 0, 2, 2, 4, 8, 70, 70, 72, 72, 74, 74, 76, 76, 78, 12, 14 ],
- "width": 212,
- "height": 166
- }
- },
- "2tui1": {
- "2tui1": {
- "type": "mesh",
- "uvs": [ 1, 0.34427, 0.97196, 0.73632, 0.89702, 0.97551, 0.14004, 0.9694, 0.04298, 0.6818, 0.00467, 0.39322, 0, 0, 0.93418, 1.0E-5 ],
- "triangles": [ 5, 6, 7, 5, 7, 0, 4, 5, 0, 1, 4, 0, 3, 4, 1, 2, 3, 1 ],
- "vertices": [ 2, 15, 13.61, 26.73, 0.472, 3, -12.05, 6.45, 0.528, 1, 15, 30.12, 25.71, 1, 1, 15, 40.29, 21.91, 1, 1, 15, 41.36, -19.71, 1, 1, 15, 29.46, -25.43, 1, 2, 15, 17.41, -27.92, 0.472, 3, -13.38, 61.22, 0.528, 2, 15, 0.91, -28.7, 0.232, 3, 3.13, 61.25, 0.768, 2, 15, -0.73, 22.65, 0.232, 3, 2.45, 9.88, 0.768 ],
- "hull": 8,
- "edges": [ 12, 14, 10, 12, 6, 8, 8, 10, 4, 6, 4, 2, 2, 0, 0, 14 ],
- "width": 55,
- "height": 42
- }
- },
- "2tui2": {
- "2tui2": {
- "type": "mesh",
- "uvs": [ 0.99245, 0.21609, 0.96979, 0.48802, 0.92226, 0.78681, 0.83918, 0.97314, 0.1241, 0.9765, 0.04605, 0.78345, 0.0126, 0.58202, 0.01259, 0.26309, 0.0705, 1.0E-5, 0.96979, 1.0E-5 ],
- "triangles": [ 0, 8, 9, 0, 1, 8, 7, 8, 1, 6, 7, 1, 2, 5, 6, 1, 2, 6, 3, 5, 2, 4, 5, 3 ],
- "vertices": [ 1, 3, -7.51, -57.19, 1, 1, 16, 21.29, 20, 1, 1, 16, 33.68, 16.7, 1, 1, 16, 41.26, 11.66, 1, 1, 16, 39.35, -28.34, 1, 1, 16, 31.03, -32.29, 1, 1, 16, 22.48, -33.73, 1, 1, 3, -8.76, -2.3, 1, 1, 3, 2.25, -5.69, 1, 1, 3, 1.58, -56.04, 1 ],
- "hull": 10,
- "edges": [ 16, 18, 14, 16, 12, 14, 12, 10, 10, 8, 6, 8, 6, 4, 4, 2, 2, 0, 0, 18 ],
- "width": 56,
- "height": 42
- }
- },
- "2wei": {
- "2wei": {
- "type": "mesh",
- "uvs": [ 1, 0.17943, 0.94014, 0.42009, 0.90437, 0.66414, 0.81958, 0.78278, 0.69901, 0.91159, 0.55858, 1, 0.45126, 1, 0.3148, 0.91498, 0.20351, 0.82346, 0.09487, 0.65398, 0, 0.24383, 0, 0, 0.06175, 0, 0.13859, 0.11503, 0.23663, 0.1896, 0.35587, 0.24383, 0.47379, 0.27434, 0.55725, 0.27095, 0.67252, 0.2235, 0.75863, 0.17604, 0.84872, 0.11164, 0.94014, 0, 1, 0 ],
- "triangles": [ 10, 11, 12, 13, 10, 12, 9, 13, 14, 9, 10, 13, 8, 14, 15, 7, 15, 16, 21, 22, 0, 0, 20, 21, 0, 1, 20, 1, 19, 20, 3, 18, 19, 17, 18, 4, 16, 17, 5, 2, 19, 1, 8, 9, 14, 6, 7, 16, 3, 19, 2, 3, 4, 18, 5, 6, 16, 4, 5, 17, 7, 8, 15 ],
- "vertices": [ 2, 3, 98.22, -98.02, 0.264, 4, 12.03, -98.09, 0.736, 2, 3, 79.85, -85.98, 0.512, 4, -6.75, -86.7, 0.488, 1, 3, 61.15, -78.69, 1, 1, 3, 52.24, -61.86, 1, 1, 3, 42.63, -37.98, 1, 1, 3, 36.19, -10.23, 1, 1, 3, 36.47, 10.91, 1, 1, 3, 43.37, 37.7, 1, 1, 3, 50.71, 59.53, 1, 1, 3, 64.04, 80.76, 1, 2, 3, 95.87, 99.03, 0.224, 4, 2.82, 98.75, 0.776, 1, 4, 21.59, 99.16, 1, 1, 4, 21.85, 87, 1, 1, 4, 13.32, 71.67, 1, 1, 4, 8, 52.24, 1, 1, 4, 4.33, 28.66, 1, 1, 4, 2.49, 5.39, 1, 1, 4, 3.1, -11.04, 1, 1, 4, 7.25, -33.67, 1, 1, 4, 11.26, -50.55, 1, 1, 4, 16.61, -68.19, 1, 1, 4, 25.59, -86.01, 1, 1, 4, 25.84, -97.79, 1 ],
- "hull": 23,
- "edges": [ 20, 22, 20, 18, 18, 16, 16, 14, 14, 12, 10, 12, 10, 8, 8, 6, 6, 4, 4, 2, 0, 44, 2, 0, 22, 24, 24, 26, 26, 28, 28, 30, 30, 32, 32, 34, 34, 36, 36, 38, 38, 40, 42, 44, 40, 42 ],
- "width": 197,
- "height": 77
- }
- },
- "2wuqi": {
- "2wuqi": { "x": 64, "y": 1.08, "rotation": 89, "width": 102, "height": 197 }
- },
- "2yy": {
- "2yy": { "x": 1.49, "y": 43.5, "rotation": -0.05, "width": 209, "height": 45 }
- },
- "2zui": {
- "2zui": { "x": 43.7, "y": 1.61, "rotation": -88.76, "width": 88, "height": 64 }
- },
- "3body": {
- "3body": {
- "type": "mesh",
- "uvs": [ 0.41264, 0.02609, 0.51958, 0.03531, 0.63737, 0.03531, 0.76016, 0.03794, 0.8497, 0.08013, 0.91062, 0.16836, 0.95633, 0.27748, 0.98693, 0.39727, 0.99837, 0.59103, 0.97797, 0.73988, 0.92618, 0.85844, 0.81758, 0.9546, 0.69395, 1, 0.60064, 1, 0.45206, 0.97984, 0.33595, 0.89949, 0.18475, 0.89026, 0.09954, 0.86655, 0.04673, 0.83331, 0.03169, 0.69367, 0.0225, 0.5817, 0.02, 0.44997, 0.02306, 0.32748, 0.03419, 0.18081, 0.04533, 0.05522, 0.09936, 0, 0.25516, 0, 0.0859, 0.16551, 0.07447, 0.34219, 0.07066, 0.46118, 0.07752, 0.58739, 0.08433, 0.71871, 0.30918, 0.82928, 0.34576, 0.81005, 0.44485, 0.899, 0.57163, 0.92051, 0.67452, 0.91931, 0.77754, 0.89767, 0.85452, 0.84239, 0.91398, 0.76186, 0.94446, 0.6657, 0.95422, 0.55581, 0.93669, 0.41759, 0.9062, 0.30822, 0.86581, 0.20606, 0.81017, 0.12793, 0.77206, 0.09067 ],
- "triangles": [ 16, 32, 15, 15, 32, 33, 33, 32, 30, 30, 29, 33, 28, 33, 29, 29, 21, 28, 21, 22, 28, 22, 23, 28, 28, 23, 27, 23, 24, 27, 27, 24, 25, 12, 37, 11, 13, 36, 12, 12, 36, 37, 14, 35, 13, 13, 35, 36, 15, 34, 14, 14, 34, 35, 11, 38, 10, 11, 37, 38, 2, 36, 35, 37, 36, 43, 46, 36, 2, 46, 2, 3, 1, 2, 35, 1, 35, 34, 34, 33, 1, 42, 38, 37, 45, 36, 46, 38, 39, 10, 10, 39, 9, 38, 40, 39, 43, 45, 44, 36, 45, 43, 1, 33, 0, 39, 40, 9, 41, 40, 38, 43, 42, 37, 9, 40, 8, 26, 0, 28, 40, 41, 8, 42, 41, 38, 41, 7, 8, 41, 42, 7, 42, 6, 7, 42, 43, 6, 43, 5, 6, 43, 44, 5, 45, 4, 44, 44, 4, 5, 45, 46, 4, 46, 3, 4, 15, 33, 34, 33, 28, 0, 27, 26, 28, 27, 25, 26, 32, 16, 31, 18, 31, 17, 16, 17, 31, 18, 19, 31, 19, 30, 31, 30, 32, 31, 19, 20, 30, 20, 29, 30, 20, 21, 29 ],
- "vertices": [ 1, 19, 75.54, 21.97, 1, 1, 19, 74.3, 4.45, 1, 1, 19, 73.99, -14.86, 1, 1, 19, 73.39, -34.99, 1, 1, 19, 68.77, -49.6, 1, 1, 19, 59.43, -59.44, 1, 1, 19, 47.96, -66.76, 1, 1, 19, 35.42, -71.57, 1, 1, 19, 15.24, -73.12, 1, 1, 19, -0.18, -69.53, 1, 1, 19, -12.37, -60.84, 1, 1, 19, -22.08, -42.87, 1, 1, 19, -26.48, -22.52, 1, 1, 19, -26.23, -7.22, 1, 1, 19, -23.74, 17.11, 1, 2, 19, -15.07, 36.02, 0.824, 27, 17.93, 18.68, 0.176, 2, 19, -13.71, 60.8, 0.824, 27, 18.35, -6.13, 0.176, 2, 19, -11.02, 74.73, 0.824, 27, 16.66, -20.22, 0.176, 2, 19, -7.43, 83.33, 0.824, 27, 13.68, -29.06, 0.176, 2, 19, 7.13, 85.56, 0.888, 27, -0.68, -32.33, 0.112, 1, 19, 18.8, 86.88, 1, 1, 19, 32.51, 87.07, 1, 1, 19, 45.24, 86.36, 1, 1, 19, 60.46, 84.29, 1, 1, 19, 73.49, 82.25, 1, 1, 19, 79.09, 73.3, 1, 1, 19, 78.67, 47.75, 1, 1, 19, 61.91, 75.79, 1, 1, 19, 43.57, 77.96, 1, 1, 19, 31.21, 78.78, 1, 1, 19, 18.07, 77.87, 1, 2, 19, 4.39, 76.97, 0.888, 27, 1.44, -23.56, 0.112, 2, 19, -7.7, 40.29, 0.824, 27, 10.88, 13.89, 0.176, 2, 19, -5.8, 34.26, 0.824, 27, 8.56, 19.77, 0.176, 1, 19, -15.31, 18.16, 1, 1, 19, -17.89, -2.59, 1, 1, 19, -18.03, -19.47, 1, 1, 19, -16.06, -36.4, 1, 1, 19, -10.51, -49.11, 1, 1, 19, -2.3, -59, 1, 1, 19, 7.62, -64.16, 1, 1, 19, 19.02, -65.94, 1, 1, 19, 33.44, -63.3, 1, 1, 19, 44.9, -58.49, 1, 1, 19, 55.63, -52.03, 1, 1, 19, 63.9, -43.04, 1, 1, 19, 67.87, -36.85, 1 ],
- "hull": 27,
- "edges": [ 50, 48, 48, 46, 46, 44, 44, 42, 42, 40, 40, 38, 38, 36, 36, 34, 34, 32, 32, 30, 30, 28, 28, 26, 24, 26, 24, 22, 22, 20, 20, 18, 18, 16, 16, 14, 14, 12, 12, 10, 10, 8, 8, 6, 6, 4, 4, 2, 2, 0, 50, 52, 0, 52, 50, 54, 54, 56, 56, 58, 58, 60, 60, 62, 62, 34, 30, 64, 64, 66, 66, 68, 68, 70, 70, 72, 72, 74, 74, 76, 76, 78, 78, 80, 80, 82, 82, 84, 84, 86, 86, 88, 88, 90, 90, 92, 92, 6 ],
- "width": 164,
- "height": 104
- }
- },
- "3er1": {
- "3er1": {
- "type": "mesh",
- "uvs": [ 0.81849, 0.07236, 0.89569, 0.14311, 0.95369, 0.23347, 0.988, 0.36711, 0.992, 0.47486, 0.9808, 0.55335, 0.88626, 0.64089, 0.43969, 0.94705, 0.38969, 1, 0.29369, 1, 0.18369, 0.92159, 0.08369, 0.81765, 0, 0.65856, 0, 0, 0.67769, 0, 0.88969, 0.5122, 0.88169, 0.42311, 0.83969, 0.30432, 0.79769, 0.22796, 0.32369, 0.88553, 0.22569, 0.80705, 0.14569, 0.70523, 0.11769, 0.5822 ],
- "triangles": [ 7, 8, 19, 8, 9, 19, 9, 10, 19, 7, 19, 6, 10, 20, 19, 6, 19, 15, 15, 19, 20, 6, 15, 5, 5, 15, 4, 15, 16, 4, 16, 3, 4, 10, 11, 20, 11, 21, 20, 11, 12, 21, 12, 22, 21, 15, 20, 21, 17, 15, 22, 17, 22, 18, 21, 22, 15, 12, 13, 22, 17, 16, 15, 22, 14, 18, 22, 13, 14, 16, 17, 3, 17, 2, 3, 17, 18, 2, 18, 1, 2, 18, 0, 1, 18, 14, 0 ],
- "vertices": [ 1, 21, 26.09, -33.75, 1, 1, 21, 19.16, -35.48, 1, 2, 21, 11.95, -35.36, 0.784, 20, 149.04, 50.18, 0.216, 2, 21, 3.36, -32.25, 0.568, 20, 140.24, 47.7, 0.432, 2, 21, -2.62, -28.38, 0.352, 20, 133.13, 47.36, 0.648, 2, 21, -6.4, -24.76, 0.352, 20, 127.95, 48.1, 0.648, 2, 21, -7.31, -16.02, 0.352, 20, 122.11, 54.67, 0.648, 2, 21, -5.82, 21.17, 0.352, 20, 101.64, 85.76, 0.648, 2, 21, -6.66, 26.05, 0.352, 20, 98.12, 89.23, 0.648, 2, 21, -2.79, 31.54, 0.352, 20, 98.06, 95.95, 0.648, 2, 21, 5.87, 34.86, 0.568, 20, 103.17, 103.69, 0.432, 2, 21, 15.51, 36.63, 0.784, 20, 109.97, 110.75, 0.216, 1, 21, 27.47, 35.37, 1, 1, 21, 63, 10.33, 1, 1, 21, 35.68, -28.45, 1, 2, 21, -0.51, -21.11, 0.352, 20, 130.61, 54.5, 0.648, 2, 21, 4.62, -24.04, 0.568, 20, 136.48, 55.11, 0.432, 2, 21, 12.73, -26.15, 0.784, 20, 144.3, 58.12, 0.216, 1, 21, 18.54, -26.65, 1, 2, 21, 2.17, 25.47, 0.352, 20, 105.63, 93.91, 0.648, 2, 21, 10.36, 28.1, 0.568, 20, 110.75, 100.81, 0.432, 2, 21, 19.08, 28.8, 0.784, 20, 117.42, 106.47, 0.216, 1, 21, 26.84, 25.73, 1 ],
- "hull": 15,
- "edges": [ 24, 26, 24, 22, 22, 20, 20, 18, 16, 18, 16, 14, 14, 12, 12, 10, 12, 30, 30, 32, 32, 34, 34, 36, 2, 4, 4, 6, 6, 8, 8, 10, 14, 38, 38, 40, 40, 42, 42, 44, 2, 0, 26, 28, 0, 28 ],
- "width": 70,
- "height": 66
- }
- },
- "3er2": {
- "3er2": {
- "type": "mesh",
- "uvs": [ 0.9655, 0.53648, 0.95537, 0.7262, 0.90145, 0.84718, 0.81777, 0.94374, 0.67171, 0.99999, 0.49018, 0.94884, 0.17195, 0.77236, 0.01968, 0.6019, 0.01346, 0.41846, 0.05198, 0.2593, 0.10777, 0.13434, 0.24216, 0, 0.862, 0.02254, 0.66309, 0.8841, 0.77973, 0.79038, 0.83805, 0.65406, 0.16355, 0.59442, 0.1458, 0.43538, 0.16355, 0.31894 ],
- "triangles": [ 18, 10, 11, 9, 10, 18, 8, 9, 18, 17, 8, 18, 15, 16, 17, 12, 18, 11, 15, 12, 0, 15, 18, 12, 15, 17, 18, 1, 15, 0, 2, 14, 15, 1, 2, 15, 15, 14, 13, 16, 15, 13, 7, 17, 16, 6, 16, 5, 7, 16, 6, 13, 14, 3, 13, 5, 16, 4, 13, 3, 5, 13, 4, 7, 8, 17, 3, 14, 2 ],
- "vertices": [ 1, 39, 34.52, -21.74, 1, 2, 20, 126.23, -77.76, 0.15467, 39, 26.99, -27.54, 0.84533, 2, 20, 120.15, -74.79, 0.44, 39, 20.44, -29.23, 0.56, 2, 20, 115.29, -70.15, 0.72533, 39, 13.73, -28.87, 0.27467, 2, 20, 112.4, -62, 0.856, 39, 6.24, -24.54, 0.144, 2, 20, 114.87, -51.81, 0.856, 39, 1.49, -15.2, 0.144, 2, 20, 123.55, -33.91, 0.856, 39, -3.55, 4.04, 0.144, 2, 20, 132, -25.31, 0.72533, 39, -2.72, 16.07, 0.27467, 2, 20, 141.17, -24.89, 0.44, 39, 3.97, 22.35, 0.56, 2, 20, 149.14, -26.98, 0.15467, 39, 11.38, 25.95, 0.84533, 1, 39, 18.15, 27.69, 1, 1, 39, 28.16, 26.43, 1, 1, 39, 50.1, -0.49, 1, 2, 20, 118.19, -61.46, 0.72533, 39, 10.29, -20.37, 0.27467, 2, 20, 122.94, -67.95, 0.44, 39, 18.11, -22.23, 0.56, 2, 20, 129.78, -71.16, 0.232, 39, 25.4, -20.21, 0.768, 2, 20, 132.44, -33.37, 0.72533, 39, 2.85, 10.24, 0.27467, 2, 20, 140.38, -32.3, 0.44, 39, 8.19, 16.21, 0.56, 2, 20, 146.21, -33.25, 0.232, 39, 13.24, 19.28, 0.768 ],
- "hull": 13,
- "edges": [ 14, 12, 12, 10, 10, 8, 10, 26, 26, 28, 28, 30, 12, 32, 32, 34, 34, 36, 14, 16, 16, 18, 18, 20, 22, 24, 20, 22, 8, 6, 6, 4, 4, 2, 0, 24, 2, 0 ],
- "width": 56,
- "height": 50
- }
- },
- "3eye1": {
- "3eye1": { "x": -1.13, "y": 4.47, "rotation": -79.28, "width": 62, "height": 60 }
- },
- "3eye2": {
- "3eye2": { "x": -0.06, "y": 0.95, "rotation": -79.28, "width": 57, "height": 53 }
- },
- "3fa": {
- "3fa": {
- "type": "mesh",
- "uvs": [ 0.80911, 0.16817, 0.92715, 0.34731, 0.96757, 0.5346, 0.9514, 0.70831, 0.84145, 0.82095, 0.66681, 0.89831, 0.31915, 0.93088, 0.10085, 0.88881, 0.02102, 0.73138, 0.04264, 0.63774, 0.15422, 0.56038, 0.22375, 0.44503, 0.26579, 0.30796, 0.25932, 0.1356, 0.3046, 0, 0.54715, 0 ],
- "triangles": [ 10, 8, 9, 6, 7, 8, 10, 6, 8, 5, 6, 10, 15, 12, 13, 12, 1, 11, 1, 12, 0, 3, 4, 2, 15, 13, 14, 0, 12, 15, 2, 11, 1, 2, 4, 11, 4, 5, 11, 10, 11, 5 ],
- "vertices": [ 1, 22, 45.38, -5.6, 1, 1, 22, 38.24, -14.57, 1, 1, 22, 29.28, -20.34, 1, 2, 22, 20, -23.37, 0.88889, 20, 143.35, -15.83, 0.11111, 2, 22, 12.19, -21.01, 0.66667, 20, 136.99, -10.72, 0.33333, 2, 22, 5.05, -15.09, 0.33333, 20, 132.59, -2.55, 0.66667, 2, 22, -2.9, -0.7, 0.11111, 20, 130.63, 13.78, 0.88889, 1, 20, 132.9, 24.06, 1, 2, 22, 2.05, 16.53, 0.11111, 20, 141.68, 27.89, 0.88889, 2, 22, 7.28, 17.6, 0.33333, 20, 146.93, 26.91, 0.66667, 2, 22, 13.29, 14.41, 0.66667, 20, 151.31, 21.71, 0.33333, 2, 22, 20.51, 13.87, 0.88889, 20, 157.8, 18.49, 0.11111, 1, 22, 28.36, 14.99, 1, 1, 22, 37.16, 18.97, 1, 1, 22, 44.99, 19.91, 1, 1, 22, 49.36, 9.38, 1 ],
- "hull": 16,
- "edges": [ 16, 14, 14, 12, 12, 10, 10, 8, 8, 6, 6, 4, 4, 2, 2, 0, 0, 30, 28, 30, 28, 26, 26, 24, 24, 22, 22, 20, 20, 18, 18, 16 ],
- "width": 47,
- "height": 56
- }
- },
- "3shou1": {
- "3shou1": {
- "type": "mesh",
- "uvs": [ 0.36838, 0.0303, 0.49886, 0.03004, 0.63545, 0.09723, 0.68597, 0.1355, 0.79793, 0.22034, 0.89259, 0.37313, 0.97638, 0.50837, 0.99355, 0.68573, 0.97903, 0.77267, 0.94971, 0.85649, 0.92027, 0.90652, 0.7913, 0.96947, 0.64796, 0.96943, 0.50134, 0.92786, 0.41878, 0.85437, 0.33272, 0.72171, 0.26018, 0.50786, 0.26006, 0.17466, 0.30088, 0.10441, 0.53538, 0.36611, 0.33358, 0.50636, 0.45472, 0.74583, 0.66613, 0.87481, 0.88904, 0.79188, 0.79848, 0.85553, 0.90637, 0.63303, 0.81391, 0.39219, 0.76935, 0.29561, 0.70224, 0.69313, 0.60541, 0.53525, 0.38265, 0.6416 ],
- "triangles": [ 19, 18, 0, 0, 1, 19, 19, 1, 2, 3, 19, 2, 12, 22, 11, 11, 24, 10, 11, 22, 24, 12, 13, 22, 14, 21, 13, 13, 21, 22, 24, 23, 10, 10, 23, 9, 22, 28, 24, 22, 21, 28, 9, 23, 8, 24, 28, 23, 14, 15, 21, 23, 25, 8, 23, 28, 25, 8, 25, 7, 15, 30, 21, 21, 29, 28, 21, 30, 29, 15, 20, 30, 15, 16, 20, 28, 26, 25, 28, 29, 26, 25, 6, 7, 30, 19, 29, 30, 20, 19, 26, 5, 25, 25, 5, 6, 29, 27, 26, 27, 19, 3, 19, 27, 29, 16, 17, 20, 20, 17, 19, 5, 26, 4, 26, 27, 4, 27, 3, 4, 18, 19, 17 ],
- "vertices": [ 2, 24, -10.35, -2.54, 0.1533, 19, 74.55, 92.58, 0.8467, 2, 24, -3.2, 7.75, 0.30472, 19, 76.7, 80.23, 0.69528, 2, 24, 7.88, 16.02, 0.78991, 19, 74.62, 66.55, 0.21009, 2, 24, 12.69, 18.57, 0.87824, 19, 72.99, 61.34, 0.12176, 2, 24, 23.36, 24.24, 0.92171, 19, 69.39, 49.79, 0.07829, 2, 24, 36.7, 26.02, 0.98438, 19, 61.14, 39.12, 0.01562, 2, 24, 48.51, 27.6, 0.99813, 19, 53.83, 29.67, 0.00187, 1, 24, 58.91, 22.36, 1, 1, 24, 62.75, 17.99, 1, 1, 24, 65.62, 12.56, 1, 1, 24, 66.67, 8.38, 1, 1, 24, 62.95, -4.11, 1, 1, 24, 55.08, -15.4, 1, 1, 24, 44.82, -25.41, 1, 1, 24, 36.37, -29.18, 1, 1, 24, 24.57, -31.03, 1, 2, 24, 9.19, -28.8, 0.79738, 19, 42.16, 97.48, 0.20262, 2, 24, -8.59, -16.43, 0.3949, 19, 63.52, 101.22, 0.6051, 2, 24, -10.1, -10.61, 0.17518, 19, 68.69, 98.14, 0.82482, 1, 24, 16.73, -1.86, 1, 1, 24, 13.13, -22.96, 1, 1, 24, 32.55, -22.32, 1, 1, 24, 51.03, -10.46, 1, 1, 24, 58.84, 10.18, 1, 1, 24, 57.27, 0.69, 1, 1, 24, 51.32, 17.45, 1, 1, 24, 33.4, 19.11, 1, 2, 24, 25.8, 19.19, 0.98915, 19, 64.09, 51.65, 0.01085, 1, 24, 43.32, -0.86, 1, 1, 24, 29.59, -2.62, 1, 1, 24, 23.04, -24.12, 1 ],
- "hull": 19,
- "edges": [ 0, 36, 0, 2, 2, 4, 12, 14, 14, 16, 16, 18, 18, 20, 20, 22, 22, 24, 24, 26, 26, 28, 28, 30, 30, 32, 32, 34, 34, 36, 8, 10, 10, 12, 4, 6, 6, 8 ],
- "width": 96,
- "height": 65
- }
- },
- "3shou2": {
- "3shou2": {
- "type": "mesh",
- "uvs": [ 0.88873, 0.09444, 0.97853, 0.24322, 0.98747, 0.42079, 0.93328, 0.59597, 0.83879, 0.74282, 0.66175, 0.87768, 0.42584, 0.9633, 0.19171, 1, 0.05368, 0.90502, 0, 0.43303, 0.10399, 0.31689, 0.21061, 0.21946, 0.3592, 0.11292, 0.52529, 0.0367, 0.72759, 0.01727 ],
- "triangles": [ 0, 2, 14, 2, 0, 1, 14, 3, 13, 2, 3, 14, 4, 5, 13, 3, 4, 13, 12, 13, 5, 11, 12, 5, 8, 9, 10, 6, 11, 5, 10, 11, 6, 8, 10, 6, 7, 8, 6 ],
- "vertices": [ 1, 42, 40.31, 13.26, 1, 1, 42, 43.33, 2.06, 1, 2, 41, 71.99, -9.51, 4.0E-5, 42, 39.96, -8.63, 0.99996, 2, 41, 64, -18.16, 0.01831, 42, 32.16, -17.46, 0.98169, 2, 41, 53.85, -24.01, 0.11416, 42, 22.14, -23.52, 0.88584, 2, 41, 38.18, -26.77, 0.47818, 42, 6.53, -26.64, 0.52182, 2, 41, 19.54, -24.98, 0.94888, 42, -12.14, -25.25, 0.05112, 1, 41, 2.2, -20.38, 1, 1, 41, -5.25, -10.87, 1, 1, 41, 2.24, 18.2, 1, 2, 41, 12.32, 21.97, 0.97539, 42, -20.39, 21.53, 0.02461, 2, 41, 22.14, 24.59, 0.82831, 42, -10.63, 24.36, 0.17169, 2, 41, 35.14, 26.52, 0.42445, 42, 2.32, 26.58, 0.57555, 2, 41, 48.64, 26.19, 0.10055, 42, 15.83, 26.54, 0.89945, 2, 41, 63.33, 21.5, 0.00217, 42, 30.62, 22.18, 0.99783 ],
- "hull": 15,
- "edges": [ 14, 16, 12, 14, 12, 10, 10, 8, 8, 6, 6, 4, 4, 2, 2, 0, 0, 28, 26, 28, 26, 24, 24, 22, 22, 20, 16, 18, 20, 18 ],
- "width": 76,
- "height": 63
- }
- },
- "3shou3": {
- "3shou3": { "x": -8.87, "y": -12.88, "rotation": 18.48, "width": 44, "height": 45 }
- },
- "3tou": {
- "3tou": {
- "type": "mesh",
- "uvs": [ 0.63688, 0.02118, 0.68128, 0.04041, 0.71693, 0.05893, 0.75439, 0.08306, 0.87689, 0.19182, 0.91783, 0.25665, 0.9395, 0.34094, 0.94792, 0.42523, 1, 0.61812, 1, 0.81631, 0.74205, 1, 0.20076, 0.99822, 0.03268, 0.73603, 0, 0.60309, 7.2E-4, 0.45136, 0.01755, 0.38227, 0.04143, 0.3217, 0.06319, 0.27485, 0.08959, 0.23021, 0.27321, 0.06373, 0.33659, 0.03652, 0.46054, 0, 0.58315, 0, 0.1161, 0.2629, 0.0926, 0.30142, 0.06911, 0.35044, 0.04017, 0.45727, 0.03432, 0.53884, 0.08204, 0.73825, 0.29127, 0.1153, 0.34525, 0.09195, 0.44902, 0.05803, 0.49839, 0.05582, 0.74506, 0.12568, 0.71013, 0.10244, 0.67343, 0.08436, 0.6247, 0.07295, 0.58931, 0.06265, 0.85102, 0.22757, 0.87812, 0.27896, 0.90394, 0.33948, 0.90681, 0.39098, 0.90107, 0.44892, 0.05211, 0.40056 ],
- "triangles": [ 29, 23, 19, 29, 19, 20, 23, 18, 19, 10, 11, 30, 30, 28, 29, 10, 30, 32, 30, 31, 32, 32, 37, 10, 37, 36, 10, 10, 36, 42, 36, 33, 42, 9, 10, 8, 39, 42, 38, 38, 42, 33, 36, 34, 33, 35, 34, 36, 12, 28, 11, 28, 30, 11, 28, 24, 23, 29, 28, 23, 10, 42, 8, 28, 13, 27, 27, 26, 28, 26, 43, 28, 43, 25, 28, 28, 25, 24, 28, 12, 13, 42, 7, 8, 13, 14, 27, 27, 14, 26, 43, 26, 15, 26, 14, 15, 42, 41, 7, 41, 39, 40, 41, 42, 39, 41, 6, 7, 43, 15, 25, 41, 40, 6, 15, 16, 25, 25, 16, 24, 40, 5, 6, 40, 39, 5, 16, 17, 24, 23, 24, 18, 5, 39, 4, 24, 17, 18, 39, 38, 4, 38, 33, 4, 33, 3, 4, 33, 34, 3, 30, 29, 20, 34, 2, 3, 34, 35, 2, 30, 20, 31, 35, 1, 2, 1, 35, 0, 35, 36, 0, 36, 37, 0, 32, 22, 37, 37, 22, 0, 31, 21, 32, 31, 20, 21, 32, 21, 22 ],
- "vertices": [ 1, 20, 148.78, -17.26, 1, 1, 20, 145.92, -26.44, 1, 2, 20, 143.15, -33.8, 0.8, 39, 11.27, 16.86, 0.2, 2, 20, 139.52, -41.55, 0.712, 39, 13.55, 8.62, 0.288, 2, 20, 123.1, -66.93, 0.712, 39, 17.57, -21.34, 0.288, 2, 20, 113.25, -75.44, 0.84, 39, 15.62, -34.21, 0.16, 1, 20, 100.39, -80.02, 1, 1, 20, 87.51, -81.86, 1, 1, 20, 58.09, -92.84, 1, 1, 20, 27.77, -93.1, 1, 1, 20, -0.79, -40.2, 1, 1, 20, -1.46, 71.3, 1, 1, 20, 38.35, 106.27, 1, 1, 20, 58.64, 113.17, 1, 1, 20, 81.85, 113.22, 1, 1, 20, 92.45, 109.84, 1, 1, 20, 101.76, 105, 1, 2, 20, 108.97, 100.58, 0.8, 21, 8.77, 28.95, 0.2, 2, 20, 115.84, 95.2, 0.48, 21, 11.22, 20.57, 0.52, 2, 20, 141.64, 57.59, 0.192, 21, 10.26, -25.02, 0.808, 2, 20, 145.91, 44.57, 0.936, 21, 6.14, -38.09, 0.064, 1, 20, 151.71, 19.09, 1, 1, 20, 151.93, -6.17, 1, 2, 20, 110.89, 89.7, 0.48, 21, 3.99, 18.99, 0.52, 2, 20, 104.95, 94.49, 0.8, 21, 1.96, 26.34, 0.2, 1, 20, 97.41, 99.26, 1, 1, 20, 81.02, 105.08, 1, 1, 20, 68.53, 106.18, 1, 1, 20, 38.1, 96.09, 1, 2, 20, 133.78, 53.81, 0.192, 21, 1.66, -23.52, 0.808, 2, 20, 137.44, 42.72, 0.936, 21, -1.82, -34.67, 0.064, 1, 20, 142.81, 21.38, 1, 1, 20, 143.24, 11.22, 1, 2, 20, 132.99, -39.69, 0.712, 39, 7.37, 5.79, 0.288, 2, 20, 136.48, -32.46, 0.8, 39, 5.33, 13.55, 0.2, 1, 20, 139.18, -24.88, 1, 1, 20, 140.84, -14.82, 1, 1, 20, 142.36, -7.52, 1, 2, 20, 117.58, -61.64, 0.712, 39, 9.94, -20.91, 0.288, 2, 20, 109.77, -67.29, 0.84, 39, 7.68, -30.28, 0.16, 1, 20, 100.55, -72.69, 1, 1, 20, 92.68, -73.35, 1, 1, 20, 83.8, -72.24, 1, 1, 20, 89.71, 102.7, 1 ],
- "hull": 23,
- "edges": [ 36, 46, 46, 48, 48, 50, 52, 54, 54, 56, 26, 28, 26, 24, 24, 22, 36, 38, 38, 58, 58, 60, 60, 62, 62, 64, 38, 40, 40, 42, 42, 44, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 20, 22, 16, 18, 20, 18, 6, 66, 66, 68, 68, 70, 70, 72, 72, 74, 4, 6, 2, 4, 44, 0, 0, 2, 8, 76, 76, 78, 78, 80, 80, 82, 82, 84, 32, 34, 34, 36, 28, 30, 30, 32, 50, 86, 86, 52 ],
- "width": 206,
- "height": 153
- }
- },
- "3tui1": {
- "3tui1": {
- "type": "mesh",
- "uvs": [ 0.83581, 0.07306, 0.92813, 0.17973, 0.98422, 0.34402, 0.96194, 0.59698, 0.93489, 0.8004, 0.85825, 0.97131, 0.14283, 0.96727, 0.08058, 0.81358, 0.04322, 0.61241, 0.01659, 0.35163, 0.02948, 0.08465, 0.14415, 0.05242, 0.54848, 0, 0.14414, 0.22784, 0.14896, 0.42831, 0.1658, 0.60929, 0.19709, 0.74606, 0.85655, 0.295, 0.84933, 0.45928, 0.8397, 0.60128, 0.82285, 0.73492 ],
- "triangles": [ 13, 10, 11, 17, 0, 1, 17, 1, 2, 9, 10, 13, 12, 13, 11, 14, 13, 12, 9, 13, 14, 17, 12, 0, 18, 17, 2, 12, 17, 18, 14, 12, 18, 8, 9, 14, 3, 18, 2, 19, 18, 3, 18, 15, 14, 8, 14, 15, 19, 20, 18, 20, 15, 18, 16, 15, 20, 3, 20, 19, 4, 20, 3, 16, 7, 8, 16, 8, 15, 6, 7, 16, 5, 20, 4, 16, 20, 5, 6, 16, 5 ],
- "vertices": [ 1, 19, 5.76, 36.47, 1, 1, 19, 0.23, 31.11, 1, 2, 27, 10.5, 26.25, 0.33333, 19, -8.2, 27.93, 0.66667, 2, 27, 23.45, 25.65, 0.66667, 19, -21.08, 29.46, 0.33333, 1, 27, 33.9, 24.63, 1, 1, 27, 42.85, 20.6, 1, 1, 27, 44.98, -21.56, 1, 1, 27, 37.36, -25.66, 1, 2, 27, 27.24, -28.43, 0.76267, 19, -20.99, 83.67, 0.23733, 2, 27, 14.04, -30.73, 0.39733, 19, -7.67, 85.02, 0.60267, 2, 27, 0.41, -30.72, 0.112, 19, 5.93, 84.04, 0.888, 2, 27, -1.61, -24.06, 0.096, 19, 7.47, 77.25, 0.904, 1, 19, 9.76, 53.35, 1, 2, 27, 7.32, -23.56, 0.232, 19, -1.48, 77.4, 0.768, 2, 27, 17.52, -22.72, 0.46933, 19, -11.7, 77.28, 0.53067, 2, 27, 26.68, -21.21, 0.76267, 19, -20.95, 76.43, 0.23733, 1, 27, 33.54, -18.98, 1, 2, 27, 8.42, 18.59, 0.33333, 19, -5.58, 35.42, 0.66667, 2, 27, 16.81, 18.63, 0.66667, 19, -13.95, 35.99, 0.33333, 1, 27, 24.07, 18.46, 1, 1, 27, 30.93, 17.85, 1 ],
- "hull": 13,
- "edges": [ 18, 16, 12, 10, 10, 8, 8, 6, 6, 4, 4, 2, 12, 14, 14, 16, 18, 20, 20, 22, 22, 26, 26, 28, 28, 30, 30, 32, 2, 34, 34, 36, 36, 38, 38, 40, 22, 24, 2, 0, 24, 0 ],
- "width": 59,
- "height": 51
- }
- },
- "3tui2": {
- "3tui2": { "x": 20.53, "y": -0.67, "rotation": 86.02, "width": 55, "height": 38 }
- },
- "3wei1": {
- "3wei1": {
- "type": "mesh",
- "uvs": [ 0.16495, 0.10346, 0.27556, 0.19858, 0.4301, 0.28273, 0.60434, 0.27175, 0.75283, 0.21321, 0.88919, 0.11809, 0.95889, 0.07053, 1, 0.1876, 1, 0.30468, 0.96192, 0.45102, 0.92101, 0.68882, 0.83465, 0.82053, 0.73465, 0.92297, 0.65586, 1, 0.56798, 1, 0.47859, 0.94126, 0.39071, 0.85712, 0.29677, 0.72541, 0.19828, 0.6998, 0.09828, 0.61199, 0.04071, 0.46931, 0, 0.33029, 0, 0.19858, 0.06495, 0, 0.08919, 0 ],
- "triangles": [ 21, 22, 0, 12, 4, 11, 16, 17, 2, 12, 13, 3, 3, 13, 14, 16, 2, 15, 14, 15, 3, 11, 4, 10, 18, 1, 17, 18, 19, 1, 19, 20, 0, 0, 20, 21, 15, 2, 3, 12, 3, 4, 17, 1, 2, 10, 4, 9, 9, 4, 5, 22, 24, 0, 19, 0, 1, 24, 22, 23, 9, 5, 8, 7, 8, 5, 5, 6, 7 ],
- "vertices": [ 1, 20, 29.71, 79.26, 1, 1, 20, 22.1, 57.3, 1, 1, 20, 15.46, 26.64, 1, 1, 20, 16.66, -7.85, 1, 1, 20, 21.71, -37.21, 1, 1, 20, 29.73, -64.14, 1, 1, 20, 33.75, -77.91, 1, 1, 20, 24.22, -86.13, 1, 1, 20, 14.62, -86.21, 1, 2, 20, 2.56, -78.77, 0.52867, 19, 77.64, -78.86, 0.47133, 1, 19, 58.28, -70.45, 1, 1, 19, 47.75, -53.17, 1, 1, 19, 39.68, -33.24, 1, 1, 19, 33.61, -17.54, 1, 1, 19, 33.89, -0.14, 1, 1, 19, 39, 17.48, 1, 1, 19, 46.18, 34.76, 1, 1, 19, 57.28, 53.19, 1, 1, 19, 59.69, 72.65, 1, 1, 19, 67.21, 92.33, 1, 1, 19, 79.09, 103.54, 1, 1, 19, 90.62, 111.42, 1, 1, 19, 101.42, 111.24, 1, 1, 20, 38.03, 99.13, 1, 1, 20, 38.07, 94.33, 1 ],
- "hull": 25,
- "edges": [ 42, 40, 40, 38, 38, 36, 36, 34, 34, 32, 32, 30, 30, 28, 26, 28, 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, 48, 46, 48, 42, 44, 46, 44 ],
- "width": 198,
- "height": 82
- }
- },
- "3wei2": {
- "3wei2": {
- "type": "mesh",
- "uvs": [ 0.82853, 0.04477, 1, 0.17994, 0.98718, 0.3196, 0.95825, 0.47995, 0.92369, 0.63767, 0.87916, 0.8104, 0.83322, 0.9855, 0.64438, 0.99999, 0.44484, 0.94876, 0.27804, 0.89028, 0.11883, 0.79673, 0.0228, 0.71478, 1.0E-5, 0.61489, 0.11466, 0.488, 0.25469, 0.35255, 0.39357, 0.21487, 0.51238, 0.09194, 0.61877, 3.0E-5, 0.25713, 0.57446, 0.45863, 0.6905, 0.67845, 0.76716, 0.38739, 0.41698, 0.58279, 0.4978, 0.7619, 0.57653, 0.51359, 0.27194, 0.6642, 0.32581, 0.82704, 0.39834, 0.61739, 0.13726, 0.74358, 0.18699, 0.88606, 0.26158 ],
- "triangles": [ 6, 7, 20, 7, 8, 20, 6, 20, 5, 8, 19, 20, 20, 23, 5, 5, 23, 4, 19, 22, 20, 20, 22, 23, 4, 23, 3, 23, 22, 26, 23, 26, 3, 26, 22, 25, 3, 26, 2, 25, 28, 26, 26, 29, 2, 26, 28, 29, 2, 29, 1, 1, 29, 0, 29, 28, 0, 8, 9, 19, 10, 18, 9, 9, 18, 19, 10, 11, 18, 18, 12, 13, 18, 11, 12, 13, 14, 18, 18, 21, 19, 19, 21, 22, 18, 14, 21, 21, 24, 22, 21, 14, 15, 22, 24, 25, 21, 15, 24, 24, 27, 25, 25, 27, 28, 15, 16, 24, 24, 16, 27, 28, 27, 0, 27, 17, 0, 27, 16, 17 ],
- "vertices": [ 2, 43, -11.42, 14.42, 0.55128, 46, -12.08, -18.15, 0.44872, 1, 46, -2.29, 4.31, 1, 1, 46, 13.09, 6.71, 1, 2, 46, 31.15, 7.92, 0.86093, 47, -4.49, 7.56, 0.13907, 1, 47, 13.33, 9.62, 1, 2, 47, 33.09, 11.17, 0.48443, 48, -0.2, 11.16, 0.51557, 1, 48, 19.82, 13.13, 1, 4, 44, 41.91, 71, 0.00842, 45, 6.85, 70.88, 0.03553, 47, 61.68, -6.98, 6.0E-4, 48, 28.82, -6.29, 0.95545, 4, 44, 53.48, 50.83, 0.0614, 45, 18.03, 50.48, 0.31982, 47, 63.72, -30.14, 0.03886, 48, 31.41, -29.4, 0.57992, 4, 44, 61.91, 32.76, 0.04313, 45, 26.1, 32.25, 0.66444, 47, 63.78, -50.08, 0.02675, 48, 31.95, -49.32, 0.26568, 4, 44, 66.93, 12.6, 2.2E-4, 45, 30.73, 12.01, 0.94693, 47, 59.88, -70.48, 0.00321, 48, 28.54, -69.82, 0.04964, 2, 45, 31.45, -2.14, 0.99991, 48, 23.84, -83.17, 9.0E-5, 1, 45, 25.08, -11.57, 1, 2, 44, 42.61, -11.54, 0.08536, 45, 5.94, -11.66, 0.91464, 2, 44, 20.8, -10.6, 0.99977, 45, -15.84, -10.29, 2.3E-4, 2, 43, 35.3, -9.87, 0.65932, 44, -1.09, -9.92, 0.34068, 1, 43, 16.18, -8.86, 1, 1, 43, 0.58, -6.62, 1, 4, 44, 38.33, 6.71, 0.27789, 45, 2.02, 6.67, 0.6882, 47, 31.44, -63.83, 0.01229, 48, -0.04, -63.85, 0.02161, 6, 43, 69.96, 30.63, 0.00343, 44, 31.78, 32.04, 0.28605, 45, -4.04, 32.12, 0.27563, 46, 67.67, -41.07, 7.0E-4, 47, 36.13, -38.09, 0.17696, 48, 4.02, -38, 0.25722, 5, 43, 59.87, 54.87, 0.00192, 44, 20.65, 55.82, 0.05144, 45, -14.7, 56.11, 0.0376, 47, 36, -11.83, 0.34564, 48, 3.27, -11.76, 0.5634, 6, 43, 52.56, 4.48, 0.00338, 44, 15.53, 5.16, 0.96289, 45, -20.81, 5.56, 0.00213, 46, 40.21, -56.33, 0.00321, 47, 10.1, -55.67, 0.02294, 48, -21.58, -56.2, 0.00546, 6, 43, 44.64, 26.96, 0.14762, 44, 6.65, 27.27, 0.37276, 45, -29.26, 27.85, 0.02088, 46, 43.49, -32.72, 0.08528, 47, 11.32, -31.86, 0.33662, 48, -20.93, -32.38, 0.03684, 6, 43, 37.77, 47.91, 0.03022, 44, -1.12, 47.9, 0.05211, 45, -36.63, 48.63, 0.00371, 46, 46.99, -10.96, 0.03465, 47, 12.92, -9.88, 0.87387, 48, -19.86, -10.36, 0.00545, 5, 43, 31.05, 4.49, 0.93378, 44, -5.96, 4.23, 0.03192, 46, 21.11, -46.46, 0.02137, 47, -9.79, -47.49, 0.01291, 48, -41.66, -48.5, 1.0E-5, 5, 43, 24.25, 21.19, 0.52702, 44, -13.48, 20.63, 0.06976, 46, 22.72, -28.49, 0.31098, 47, -9.74, -29.45, 0.0922, 48, -42.04, -30.47, 4.0E-5, 4, 43, 18.08, 40.31, 0.08276, 44, -20.47, 39.46, 0.01352, 46, 26.01, -8.68, 0.84859, 47, -8.18, -9.42, 0.05513, 3, 43, 12.09, 3.36, 0.97097, 46, 3.73, -38.76, 0.02844, 47, -27.77, -41.32, 5.9E-4, 4, 43, 6.77, 17.7, 0.59801, 44, -30.79, 16.38, 8.0E-5, 46, 5.58, -23.58, 0.39941, 47, -27.24, -26.04, 0.0025, 3, 43, 2.29, 35.24, 0.07396, 44, -36.02, 33.71, 3.0E-5, 46, 9.65, -5.94, 0.92601 ],
- "hull": 18,
- "edges": [ 22, 20, 20, 18, 18, 16, 16, 14, 12, 14, 12, 10, 10, 8, 8, 6, 6, 4, 4, 2, 2, 0, 0, 34, 34, 32, 32, 30, 30, 28, 28, 26, 22, 24, 26, 24 ],
- "width": 113,
- "height": 111
- }
- },
- "3wuqi": {
- "3wuqi": { "x": 58.68, "y": 22.35, "rotation": -12.64, "width": 268, "height": 186 }
- },
- "3yy": {
- "3yy": { "x": 7.54, "y": 43.78, "rotation": -0.05, "width": 209, "height": 45 }
- },
- "3zui": {
- "3zui": { "x": 53.96, "y": -10.37, "rotation": -89.51, "width": 85, "height": 64 }
- },
- "effect_down": {
- "qk_00": { "x": 44.84, "y": 9.98, "width": 138, "height": 118 },
- "qk_01": { "x": 44.84, "y": 9.98, "width": 138, "height": 118 },
- "qk_02": { "x": 44.84, "y": 9.98, "width": 138, "height": 118 },
- "qk_03": { "x": 44.84, "y": 9.98, "width": 138, "height": 118 },
- "qk_04": { "x": 44.84, "y": 9.98, "width": 138, "height": 118 },
- "qk_05": { "x": 44.84, "y": 9.98, "width": 138, "height": 118 }
- },
- "effect_down2": {
- "qk_00": { "x": 44.84, "y": 9.98, "width": 138, "height": 118 },
- "qk_01": { "x": 44.84, "y": 9.98, "width": 138, "height": 118 },
- "qk_02": { "x": 44.84, "y": 9.98, "width": 138, "height": 118 },
- "qk_03": { "x": 44.84, "y": 9.98, "width": 138, "height": 118 },
- "qk_04": { "x": 44.84, "y": 9.98, "width": 138, "height": 118 },
- "qk_05": { "x": 44.84, "y": 9.98, "width": 138, "height": 118 }
- },
- "effect_right": {
- "qk_00": { "x": 39.56, "y": 7.94, "width": 138, "height": 118 },
- "qk_01": { "x": 39.56, "y": 7.94, "width": 138, "height": 118 },
- "qk_02": { "x": 39.56, "y": 7.94, "width": 138, "height": 118 },
- "qk_03": { "x": 39.56, "y": 7.94, "width": 138, "height": 118 },
- "qk_04": { "x": 39.56, "y": 7.94, "width": 138, "height": 118 },
- "qk_05": { "x": 39.56, "y": 7.94, "width": 138, "height": 118 }
- },
- "effect_right2": {
- "qk_00": { "x": 39.56, "y": 7.94, "width": 138, "height": 118 },
- "qk_01": { "x": 39.56, "y": 7.94, "width": 138, "height": 118 },
- "qk_02": { "x": 39.56, "y": 7.94, "width": 138, "height": 118 },
- "qk_03": { "x": 39.56, "y": 7.94, "width": 138, "height": 118 },
- "qk_04": { "x": 39.56, "y": 7.94, "width": 138, "height": 118 },
- "qk_05": { "x": 39.56, "y": 7.94, "width": 138, "height": 118 }
- },
- "effect_up": {
- "qk_00": { "x": 46.83, "y": 8.42, "width": 138, "height": 118 },
- "qk_01": { "x": 46.83, "y": 8.42, "width": 138, "height": 118 },
- "qk_02": { "x": 46.83, "y": 8.42, "width": 138, "height": 118 },
- "qk_03": { "x": 46.83, "y": 8.42, "width": 138, "height": 118 },
- "qk_04": { "x": 46.83, "y": 8.42, "width": 138, "height": 118 },
- "qk_05": { "x": 46.83, "y": 8.42, "width": 138, "height": 118 }
- },
- "effect_up2": {
- "qk_00": { "x": 46.83, "y": 8.42, "width": 138, "height": 118 },
- "qk_01": { "x": 46.83, "y": 8.42, "width": 138, "height": 118 },
- "qk_02": { "x": 46.83, "y": 8.42, "width": 138, "height": 118 },
- "qk_03": { "x": 46.83, "y": 8.42, "width": 138, "height": 118 },
- "qk_04": { "x": 46.83, "y": 8.42, "width": 138, "height": 118 },
- "qk_05": { "x": 46.83, "y": 8.42, "width": 138, "height": 118 }
- }
- }
- }
- ],
- "events": {
- "effect": {},
- "fire": {}
- },
- "animations": {
- "atk_down": {
- "slots": {
- "1body": {
- "attachment": [
- { "name": null }
- ]
- },
- "1er1": {
- "attachment": [
- { "name": null }
- ]
- },
- "1er2": {
- "attachment": [
- { "name": null }
- ]
- },
- "1fa": {
- "attachment": [
- { "name": null }
- ]
- },
- "1shou1": {
- "attachment": [
- { "name": null }
- ]
- },
- "1shou2": {
- "attachment": [
- { "name": null }
- ]
- },
- "1tou": {
- "attachment": [
- { "name": null }
- ]
- },
- "1tui1": {
- "attachment": [
- { "name": null }
- ],
- "attachment": [
- { "name": null }
- ]
- },
- "1tui2": {
- "attachment": [
- { "name": null }
- ],
- "attachment": [
- { "name": null }
- ]
- },
- "1wei1": {
- "attachment": [
- { "name": null }
- ]
- },
- "1wei2": {
- "attachment": [
- { "name": null }
- ]
- },
- "1wuqi": {
- "attachment": [
- { "name": null }
- ]
- },
- "1yy": {
- "attachment": [
- { "name": null }
- ]
- },
- "3body": {
- "attachment": [
- { "name": null }
- ]
- },
- "3er1": {
- "attachment": [
- { "name": null }
- ]
- },
- "3er2": {
- "attachment": [
- { "name": null }
- ]
- },
- "3eye1": {
- "attachment": [
- { "name": null }
- ]
- },
- "3eye2": {
- "attachment": [
- { "name": null }
- ]
- },
- "3fa": {
- "attachment": [
- { "name": null }
- ]
- },
- "3shou1": {
- "attachment": [
- { "name": null }
- ]
- },
- "3shou2": {
- "attachment": [
- { "name": null }
- ]
- },
- "3shou3": {
- "attachment": [
- { "name": null }
- ]
- },
- "3tou": {
- "attachment": [
- { "name": null }
- ]
- },
- "3tui1": {
- "attachment": [
- { "name": null }
- ],
- "attachment": [
- { "name": null }
- ]
- },
- "3tui2": {
- "attachment": [
- { "name": null }
- ],
- "attachment": [
- { "name": null }
- ]
- },
- "3wei1": {
- "attachment": [
- { "name": null }
- ]
- },
- "3wei2": {
- "attachment": [
- { "name": null }
- ]
- },
- "3wuqi": {
- "attachment": [
- { "name": null }
- ]
- },
- "3yy": {
- "attachment": [
- { "name": null }
- ]
- },
- "3zui": {
- "attachment": [
- { "name": null }
- ]
- },
- "effect_down": {
- "attachment": [
- { "time": 0.2, "name": "qk_00" },
- { "time": 0.2333, "name": "qk_01" },
- { "time": 0.2667, "name": "qk_02" },
- { "time": 0.3, "name": "qk_03" },
- { "time": 0.3333, "name": "qk_04" },
- { "time": 0.3667, "name": "qk_05" },
- { "time": 0.4, "name": null }
- ]
- },
- "effect_down2": {
- "attachment": [
- { "time": 0.2, "name": "qk_00" },
- { "time": 0.2333, "name": "qk_01" },
- { "time": 0.2667, "name": "qk_02" },
- { "time": 0.3, "name": "qk_03" },
- { "time": 0.3333, "name": "qk_04" },
- { "time": 0.3667, "name": "qk_05" },
- { "time": 0.4, "name": null }
- ]
- }
- },
- "bones": {
- "2shenti": {
- "rotate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.1667, "angle": -5.05 },
- { "time": 0.2, "angle": -0.06 },
- { "time": 0.2667, "angle": -1.66 },
- { "time": 0.3333, "angle": -0.07 },
- { "time": 0.4667 }
- ],
- "translate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.1667, "x": 4.05, "y": -2.96 },
- { "time": 0.2, "x": -0.5, "y": 2.87 },
- { "time": 0.2667, "x": -0.84, "y": 0.7 },
- { "time": 0.3333, "x": -2.05, "y": -2.68 },
- { "time": 0.4, "x": 1.21, "y": -0.06 },
- { "time": 0.4667 }
- ],
- "scale": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.1667, "x": 0.926, "y": 1.045 },
- { "time": 0.2, "x": 0.952, "y": 1.059 },
- { "time": 0.2667, "x": 0.992, "y": 1.006 },
- { "time": 0.3333, "x": 1.056, "y": 1.033 },
- { "time": 0.4667 }
- ],
- "shear": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.1667, "y": 3.38 },
- { "time": 0.2, "x": 2.07, "y": 3 },
- { "time": 0.2667, "x": 4.97, "y": 2.25 },
- { "time": 0.3667, "x": 0.22, "y": 1.13 },
- { "time": 0.4667 }
- ]
- },
- "2tou": {
- "rotate": [
- { "angle": 0.5, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
- { "time": 0.1333, "angle": -1.45 },
- { "time": 0.2667, "angle": -1.95 },
- { "time": 0.3667, "angle": 6.94 },
- { "time": 0.4667, "angle": 0.5 }
- ],
- "translate": [
- { "x": -0.34, "y": -0.37, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
- { "time": 0.1333, "x": -1.77, "y": 0.04 },
- { "time": 0.2, "x": -3.22, "y": -0.36 },
- { "time": 0.2667, "x": -0.54, "y": 1.61 },
- { "time": 0.3667, "x": -0.73, "y": 0.31 },
- { "time": 0.4667, "x": -0.34, "y": -0.37 }
- ],
- "scale": [
- { "x": 0.978, "y": 1.017, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
- { "time": 0.1333, "x": 0.949 },
- { "time": 0.2, "x": 0.925, "y": 1.032 },
- { "time": 0.2667, "x": 1.197, "y": 1.005 },
- { "time": 0.4667, "x": 0.978, "y": 1.017 }
- ],
- "shear": [
- { "y": -1.12, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
- { "time": 0.1333 },
- { "time": 0.2667, "y": 2.4 },
- { "time": 0.4667, "y": -1.12 }
- ]
- },
- "2tou3": {
- "rotate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.1667, "angle": 13.88 },
- { "time": 0.2667, "angle": -3.31 },
- { "time": 0.3667, "angle": 35.99 },
- { "time": 0.4667 }
- ],
- "translate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.1667, "x": 6.43, "y": -2.9 },
- { "time": 0.2667, "x": 0.71, "y": -0.62 },
- { "time": 0.3667, "x": 5.41, "y": -2.5 },
- { "time": 0.4667 }
- ],
- "scale": [
- {},
- { "time": 0.1667, "x": 1.054, "y": 0.968 },
- { "time": 0.2667, "x": 0.711, "y": 1.119 },
- { "time": 0.3667, "x": 0.989, "y": 0.933 },
- { "time": 0.4667 }
- ]
- },
- "ik_r_down": {
- "translate": [
- {},
- { "time": 0.1667, "x": -7.39, "y": -0.07 },
- { "time": 0.2333, "x": -0.03, "y": 19.53 },
- { "time": 0.3333, "x": 4.55, "y": 19.61 },
- { "time": 0.4667 }
- ]
- },
- "2qiang": {
- "rotate": [
- {},
- { "time": 0.1667, "angle": -0.54 },
- { "time": 0.3, "angle": -1.44 },
- { "time": 0.4667 }
- ],
- "translate": [
- {},
- { "time": 0.1667, "x": -2.89, "y": -4.67 },
- { "time": 0.2333, "x": -7.77, "y": 31.46 },
- { "time": 0.3, "x": 4, "y": 15.53 },
- { "time": 0.4667 }
- ],
- "scale": [
- {},
- { "time": 0.1667, "x": 0.906, "y": 1.081 },
- { "time": 0.2333, "x": 0.771, "y": 1.251 },
- { "time": 0.3, "x": 0.974, "y": 1.025 },
- { "time": 0.4667 }
- ]
- },
- "2erduo2": {
- "rotate": [
- {},
- { "time": 0.2, "angle": -12.28 },
- { "time": 0.2667, "angle": 32.36 },
- { "time": 0.4, "angle": -3.93 },
- { "time": 0.4667 }
- ],
- "translate": [
- {},
- { "time": 0.2, "x": 2.88, "y": 1.13 },
- { "time": 0.2667, "x": -3.72, "y": 0.48 },
- { "time": 0.4667 }
- ]
- },
- "2erduo1": {
- "rotate": [
- {},
- { "time": 0.2, "angle": 17.89 },
- { "time": 0.2667, "angle": 17.05 },
- { "time": 0.3667, "angle": -13.15 },
- { "time": 0.4667 }
- ],
- "translate": [
- {},
- { "time": 0.2, "x": 3.88, "y": 4.11 },
- { "time": 0.2667, "x": -2.5, "y": 2.47 },
- { "time": 0.3667, "x": 0.47, "y": -1.47 },
- { "time": 0.4667 }
- ]
- },
- "2tui1": {
- "rotate": [
- {},
- { "time": 0.3, "angle": -3.03 },
- { "time": 0.4667 }
- ],
- "translate": [
- {},
- { "time": 0.1667, "y": -3.1 },
- { "time": 0.3, "x": 1.03, "y": -1.72 },
- { "time": 0.4667 }
- ],
- "scale": [
- {},
- { "time": 0.1667, "x": 0.962 },
- { "time": 0.4667 }
- ]
- },
- "2tou4": {
- "translate": [
- {},
- { "time": 0.1667, "x": -1.74, "y": 4.11 },
- { "time": 0.2333 },
- { "time": 0.3, "x": 6.14, "y": -1.85 },
- { "time": 0.4667 }
- ],
- "scale": [
- {},
- { "time": 0.1667, "x": 1.413 },
- { "time": 0.2333 },
- { "time": 0.3, "x": 0.155 },
- { "time": 0.4667 }
- ]
- },
- "2youshou1": {
- "rotate": [
- { "angle": 1.39 }
- ],
- "translate": [
- {},
- { "time": 0.1667, "x": 2.91, "y": 0.19 },
- { "time": 0.2333, "x": 1.39, "y": -3.71 },
- { "time": 0.4667 }
- ]
- },
- "2tui2": {
- "rotate": [
- {},
- { "time": 0.1667, "angle": 7.24 },
- { "time": 0.2333, "angle": 11.15 },
- { "time": 0.3333, "angle": 7.34 },
- { "time": 0.4667 }
- ],
- "translate": [
- {},
- { "time": 0.1667, "x": -4.44, "y": -0.87 },
- { "time": 0.2333, "x": -4.57, "y": -0.6 },
- { "time": 0.3333, "x": -6.23, "y": -1.88 },
- { "time": 0.4667 }
- ],
- "scale": [
- { "time": 0.1667 },
- { "time": 0.2333, "x": 1.043, "y": 1.105 },
- { "time": 0.3333, "x": 0.92, "y": 1.141 },
- { "time": 0.4667 }
- ],
- "shear": [
- {},
- { "time": 0.1667, "y": -5.24 },
- { "time": 0.4667 }
- ]
- },
- "2qiang2": {
- "translate": [
- {},
- { "time": 0.1667, "x": 8.43, "y": 0.85 },
- { "time": 0.2333, "x": 26.86, "y": 13.18 },
- { "time": 0.4667 }
- ]
- }
- },
- "events": [
- { "time": 0.1667, "name": "effect" },
- { "time": 0.2333, "name": "fire" }
- ]
- },
- "atk_left": {
- "slots": {
- "1body": {
- "attachment": [
- { "name": null }
- ]
- },
- "1er1": {
- "attachment": [
- { "name": null }
- ]
- },
- "1er2": {
- "attachment": [
- { "name": null }
- ]
- },
- "1fa": {
- "attachment": [
- { "name": null }
- ]
- },
- "1shou1": {
- "attachment": [
- { "name": null }
- ]
- },
- "1shou2": {
- "attachment": [
- { "name": null }
- ]
- },
- "1tou": {
- "attachment": [
- { "name": null }
- ]
- },
- "1tui1": {
- "attachment": [
- { "name": null }
- ],
- "attachment": [
- { "name": null }
- ]
- },
- "1tui2": {
- "attachment": [
- { "name": null }
- ],
- "attachment": [
- { "name": null }
- ]
- },
- "1wei1": {
- "attachment": [
- { "name": null }
- ]
- },
- "1wei2": {
- "attachment": [
- { "name": null }
- ]
- },
- "1wuqi": {
- "attachment": [
- { "name": null }
- ]
- },
- "1yy": {
- "attachment": [
- { "name": null }
- ]
- },
- "2body": {
- "attachment": [
- { "name": null }
- ]
- },
- "2er1": {
- "attachment": [
- { "name": null }
- ]
- },
- "2er2": {
- "attachment": [
- { "name": null }
- ]
- },
- "2eye1": {
- "attachment": [
- { "name": null }
- ]
- },
- "2eye2": {
- "attachment": [
- { "name": null }
- ]
- },
- "2fa": {
- "attachment": [
- { "name": null }
- ]
- },
- "2shou1": {
- "attachment": [
- { "name": null }
- ]
- },
- "2shou2": {
- "attachment": [
- { "name": null }
- ]
- },
- "2tou": {
- "attachment": [
- { "name": null }
- ],
- "attachment": [
- { "name": null }
- ]
- },
- "2tui1": {
- "attachment": [
- { "name": null }
- ],
- "attachment": [
- { "name": null }
- ]
- },
- "2tui2": {
- "attachment": [
- { "name": null }
- ],
- "attachment": [
- { "name": null }
- ]
- },
- "2wei": {
- "attachment": [
- { "name": null }
- ]
- },
- "2wuqi": {
- "attachment": [
- { "name": null }
- ]
- },
- "2yy": {
- "attachment": [
- { "name": null }
- ]
- },
- "2zui": {
- "attachment": [
- { "name": null }
- ]
- },
- "effect_right": {
- "attachment": [
- { "time": 0.2, "name": "qk_00" },
- { "time": 0.2333, "name": "qk_01" },
- { "time": 0.2667, "name": "qk_02" },
- { "time": 0.3, "name": "qk_03" },
- { "time": 0.3333, "name": "qk_04" },
- { "time": 0.3667, "name": "qk_05" },
- { "time": 0.4, "name": null }
- ]
- },
- "effect_right2": {
- "attachment": [
- { "time": 0.2, "name": "qk_00" },
- { "time": 0.2333, "name": "qk_01" },
- { "time": 0.2667, "name": "qk_02" },
- { "time": 0.3, "name": "qk_03" },
- { "time": 0.3333, "name": "qk_04" },
- { "time": 0.3667, "name": "qk_05" },
- { "time": 0.4, "name": null }
- ]
- }
- },
- "bones": {
- "3shenti": {
- "rotate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.1667, "angle": -3.31 },
- { "time": 0.2333, "angle": 7.03 },
- { "time": 0.3, "angle": 7.35 },
- { "time": 0.4, "angle": 0.99 },
- { "time": 0.4667 }
- ],
- "translate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.1667, "x": 1.37, "y": -3.21 },
- { "time": 0.2333, "x": -4.32, "y": 1.56 },
- { "time": 0.3, "x": -2.29, "y": -3.05 },
- { "time": 0.4, "x": -0.77, "y": -0.99 },
- { "time": 0.4667 }
- ],
- "shear": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.1667, "y": 2.14 },
- { "time": 0.2333, "y": -3.68 },
- { "time": 0.3, "x": 3.22, "y": 7.17 },
- { "time": 0.4, "x": 1.29, "y": -1.9 },
- { "time": 0.4667 }
- ]
- },
- "3qiang": {
- "rotate": [
- { "angle": 3.1, "curve": 0.25, "c3": 0.75 },
- { "time": 0.1667, "angle": 0.76 },
- { "time": 0.2333, "angle": 4.79 },
- { "time": 0.3667, "angle": -2.52 },
- { "time": 0.4667, "angle": 3.1 }
- ],
- "translate": [
- { "x": -2.29, "y": -0.76, "curve": 0.25, "c3": 0.75 },
- { "time": 0.1667, "x": -2.32, "y": 0.34 },
- { "time": 0.2333, "x": -30.84, "y": 6.17 },
- { "time": 0.3, "x": -32.11, "y": -7.29 },
- { "time": 0.3667, "x": -2.38, "y": -11.45 },
- { "time": 0.4667, "x": -2.29, "y": -0.76 }
- ],
- "scale": [
- { "time": 0.1667 },
- { "time": 0.2333, "x": 0.843, "y": 1.259 },
- { "time": 0.3, "x": 0.968, "y": 0.966 },
- { "time": 0.4667 }
- ],
- "shear": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.1667, "y": 8.23 },
- { "time": 0.2333, "y": 6.43 },
- { "time": 0.3, "y": 12.05 },
- { "time": 0.4667 }
- ]
- },
- "3tou": {
- "rotate": [
- { "angle": -2.48, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
- { "time": 0.1333, "angle": -9.3 },
- { "time": 0.2333, "angle": -15.38 },
- { "time": 0.3333, "angle": 2.11 },
- { "time": 0.4667, "angle": -2.48 }
- ],
- "translate": [
- { "x": 2.81, "y": -1.47, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
- { "time": 0.1333, "x": -1.48, "y": -2.26 },
- { "time": 0.2333, "x": 2.08, "y": 5.9 },
- { "time": 0.3333, "x": 3.98, "y": 2.06 },
- { "time": 0.4, "x": 0.02, "y": -2.34 },
- { "time": 0.4667, "x": 2.81, "y": -1.47 }
- ],
- "scale": [
- { "x": 0.999, "y": 0.998, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
- { "time": 0.1333, "x": 0.997, "y": 1.012 },
- { "time": 0.2333, "x": 1.038, "y": 0.843 },
- { "time": 0.3333, "x": 1.034, "y": 0.998 },
- { "time": 0.4667, "x": 0.999, "y": 0.998 }
- ],
- "shear": [
- {},
- { "time": 0.1333, "y": 5.05 },
- { "time": 0.2333, "y": 5.06 },
- { "time": 0.3333, "x": 4.94, "y": 4.28 },
- { "time": 0.4667 }
- ]
- },
- "3tou2": {
- "rotate": [
- { "angle": -0.7, "curve": 0.382, "c2": 0.55, "c3": 0.741 },
- { "time": 0.1667, "angle": 5.29 },
- { "time": 0.2333, "angle": -13.12 },
- { "time": 0.3667, "angle": -3.33 },
- { "time": 0.4667, "angle": -0.7 }
- ],
- "translate": [
- { "x": 0.02, "y": 1.44, "curve": 0.382, "c2": 0.55, "c3": 0.741 },
- { "time": 0.1667, "x": -0.72, "y": 6.01 },
- { "time": 0.2333, "x": 4.42, "y": -1.61 },
- { "time": 0.3667, "x": 1.4, "y": 16.24 },
- { "time": 0.4667, "x": 0.02, "y": 1.44 }
- ],
- "scale": [
- { "x": 1.073, "y": 0.983, "curve": 0.382, "c2": 0.55, "c3": 0.741 },
- { "time": 0.1667 },
- { "time": 0.2333, "y": 0.823 },
- { "time": 0.4667, "x": 1.073, "y": 0.983 }
- ],
- "shear": [
- { "time": 0.1667 },
- { "time": 0.2333, "x": -2.02, "y": -12.69 },
- { "time": 0.4667 }
- ]
- },
- "3erduo": {
- "rotate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.1667, "angle": 12.61 },
- { "time": 0.2333, "angle": -6.75 },
- { "time": 0.3, "angle": -9.08 },
- { "time": 0.4, "angle": 18.42 },
- { "time": 0.4667 }
- ],
- "translate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.1667, "x": -3.82, "y": 2.51 },
- { "time": 0.2333, "x": -3.75, "y": 7.05 },
- { "time": 0.3, "x": 0.63, "y": 4.95 },
- { "time": 0.4, "x": -1.49, "y": 3.43 },
- { "time": 0.4667 }
- ],
- "scale": [
- {},
- { "time": 0.1667, "x": 1.165 },
- { "time": 0.2333, "x": 1.104, "y": 1.047 },
- { "time": 0.3, "x": 1.125, "y": 0.989 },
- { "time": 0.4667 }
- ]
- },
- "3tui2": {
- "rotate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.1667, "angle": -2.86 },
- { "time": 0.2333, "angle": 1.86 },
- { "time": 0.3667, "angle": 11.21 },
- { "time": 0.4667 }
- ],
- "translate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.1667, "x": 6.65, "y": -0.55 },
- { "time": 0.2333, "x": -10.48, "y": 0.59 },
- { "time": 0.3667, "x": -12.38, "y": -0.37 },
- { "time": 0.4667 }
- ],
- "scale": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.1667, "x": 1.044, "y": 1.056 },
- { "time": 0.2333, "x": 1.02, "y": 1.109 },
- { "time": 0.3667, "x": 1.009, "y": 1.016 },
- { "time": 0.4667 }
- ],
- "shear": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.1667, "x": -9.65 },
- { "time": 0.2333, "x": 15.64, "y": 8.94 },
- { "time": 0.3667, "x": 6.7, "y": -4.77 },
- { "time": 0.4667 }
- ]
- },
- "3tui1": {
- "rotate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.1667, "angle": -8.94 },
- { "time": 0.2333, "angle": 11.72 },
- { "time": 0.3, "angle": 9.77 },
- { "time": 0.4667 }
- ],
- "translate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.1667, "x": 4.82, "y": -0.53 },
- { "time": 0.2333, "x": -5.7, "y": -0.14 },
- { "time": 0.3, "x": -4.59, "y": 0.07 },
- { "time": 0.4667 }
- ],
- "scale": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.1667, "x": 0.987, "y": 1.048 },
- { "time": 0.2333, "x": 1.039, "y": 1.054 },
- { "time": 0.3, "x": 1.061, "y": 1.057 },
- { "time": 0.4667 }
- ],
- "shear": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.1667, "y": 5.71 },
- { "time": 0.2333, "y": -10.88 },
- { "time": 0.3, "y": -5.55 },
- { "time": 0.4667 }
- ]
- },
- "bone_right": {
- "translate": [
- { "x": 450.04, "y": 0.09 }
- ],
- "scale": [
- { "x": -1 }
- ]
- },
- "bone_down": {
- "translate": [
- { "x": -608.55, "y": -0.51 }
- ]
- },
- "3erduo2": {
- "rotate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.1667, "angle": 12.61 },
- { "time": 0.2333, "angle": -6.75 },
- { "time": 0.3, "angle": -9.08 },
- { "time": 0.4, "angle": 18.42 },
- { "time": 0.4667 }
- ],
- "translate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.1667, "x": -3.82, "y": 2.51 },
- { "time": 0.2333, "x": -3.75, "y": 7.05 },
- { "time": 0.3, "x": 0.63, "y": 4.95 },
- { "time": 0.4, "x": -1.49, "y": 3.43 },
- { "time": 0.4667 }
- ],
- "scale": [
- {},
- { "time": 0.1667, "x": 1.165 },
- { "time": 0.2333, "x": 1.104, "y": 1.047 },
- { "time": 0.3, "x": 1.125, "y": 0.989 },
- { "time": 0.4667 }
- ]
- },
- "3tou6": {
- "rotate": [
- { "time": 0.2 },
- { "time": 0.3, "angle": -4.36 },
- { "time": 0.4667 }
- ],
- "scale": [
- { "time": 0.2 },
- { "time": 0.3, "x": 0.091 },
- { "time": 0.4667 }
- ]
- },
- "3shou1": {
- "rotate": [
- { "angle": 5.51, "curve": 0.337, "c2": 0.35, "c3": 0.758 },
- { "time": 0.1667, "angle": 11.31, "curve": 0.25, "c3": 0.75 },
- { "time": 0.2667, "angle": -13.36, "curve": 0.25, "c3": 0.75 },
- { "time": 0.4667, "angle": 5.51 }
- ]
- },
- "3shenti2": {
- "rotate": [
- { "angle": 4.77, "curve": 0.277, "c2": 0.12, "c3": 0.754 },
- { "time": 0.1667, "angle": 25.47, "curve": 0.265, "c3": 0.618, "c4": 0.43 },
- { "time": 0.2333, "angle": 10.45, "curve": 0.325, "c2": 0.31, "c3": 0.675, "c4": 0.69 },
- { "time": 0.3, "angle": -18.35, "curve": 0.382, "c2": 0.57, "c3": 0.735 },
- { "time": 0.3667, "angle": -17.69, "curve": 0.25, "c3": 0.75 },
- { "time": 0.4667, "angle": 4.77 }
- ]
- },
- "3shenti3": {
- "rotate": [
- { "angle": 4.04, "curve": 0.345, "c2": 0.41, "c3": 0.679, "c4": 0.74 },
- { "time": 0.0667, "angle": -3.34, "curve": 0.355, "c2": 0.65, "c3": 0.69 },
- { "time": 0.1667, "angle": -1.16, "curve": 0.38, "c2": 0.53, "c3": 0.745 },
- { "time": 0.2333, "angle": 18.37, "curve": 0.25, "c3": 0.625, "c4": 0.5 },
- { "time": 0.3, "angle": 9.91, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
- { "time": 0.3667, "angle": -18.8, "curve": 0.25, "c3": 0.75 },
- { "time": 0.4667, "angle": 4.04 }
- ],
- "translate": [
- { "x": 0.52, "y": 2.06 }
- ]
- },
- "3shenti4": {
- "rotate": [
- { "angle": 0.7, "curve": 0.382, "c2": 0.57, "c3": 0.735 },
- { "time": 0.1667, "angle": -22.53, "curve": 0.38, "c2": 0.53, "c3": 0.745 },
- { "time": 0.2333, "angle": 32.49, "curve": 0.282, "c3": 0.624, "c4": 0.39 },
- { "time": 0.3, "angle": 27.44, "curve": 0.312, "c2": 0.26, "c3": 0.652, "c4": 0.62 },
- { "time": 0.3667, "angle": -34.33, "curve": 0.367, "c2": 0.46, "c3": 0.754 },
- { "time": 0.4667, "angle": 0.7 }
- ],
- "translate": [
- { "x": 1.68, "y": 0.75 }
- ]
- },
- "3shenti5": {
- "rotate": [
- { "angle": 4.77, "curve": 0.277, "c2": 0.12, "c3": 0.754 },
- { "time": 0.1667, "angle": 22.4, "curve": 0.25, "c3": 0.625, "c4": 0.5 },
- { "time": 0.2333, "angle": -3.6, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
- { "time": 0.3, "angle": -22.3, "curve": 0.258, "c3": 0.619, "c4": 0.45 },
- { "time": 0.3667, "angle": -20.66, "curve": 0.363, "c2": 0.44, "c3": 0.755 },
- { "time": 0.4667, "angle": 4.77 }
- ]
- },
- "3shenti6": {
- "rotate": [
- { "angle": 4.04, "curve": 0.366, "c2": 0.63, "c3": 0.703 },
- { "time": 0.0667, "angle": -8.73, "curve": 0.363, "c2": 0.44, "c3": 0.755 },
- { "time": 0.1667, "angle": 1.02, "curve": 0.25, "c3": 0.625, "c4": 0.5 },
- { "time": 0.2333, "angle": 9.4, "curve": 0.351, "c2": 0.39, "c3": 0.701, "c4": 0.78 },
- { "time": 0.3, "angle": 7.64, "curve": 0.371, "c2": 0.63, "c3": 0.71 },
- { "time": 0.3667, "angle": -27.77, "curve": 0.32, "c2": 0.29, "c3": 0.757 },
- { "time": 0.4667, "angle": 4.04 }
- ],
- "translate": [
- { "x": 0.61, "y": 2.03 }
- ]
- },
- "3shenti7": {
- "rotate": [
- { "angle": 0.7, "curve": 0.382, "c2": 0.57, "c3": 0.735 },
- { "time": 0.0667, "angle": -11.74, "curve": 0.363, "c2": 0.44, "c3": 0.755 },
- { "time": 0.1667, "angle": -16.91, "curve": 0.25, "c3": 0.625, "c4": 0.5 },
- { "time": 0.2333, "angle": 22.85, "curve": 0.351, "c2": 0.39, "c3": 0.701, "c4": 0.78 },
- { "time": 0.3, "angle": 18.46, "curve": 0.371, "c2": 0.63, "c3": 0.71 },
- { "time": 0.3667, "angle": -10.7, "curve": 0.25, "c3": 0.75 },
- { "time": 0.4667, "angle": 0.7 }
- ],
- "translate": [
- { "x": 1.71, "y": 0.68 }
- ]
- },
- "3qiang2": {
- "translate": [
- {},
- { "time": 0.1667, "x": 12.8, "y": 6.18 },
- { "time": 0.2333, "x": 0.75, "y": 3.24 },
- { "time": 0.3, "x": 21.4, "y": -4.77 },
- { "time": 0.4667 }
- ]
- }
- },
- "events": [
- { "time": 0.1667, "name": "effect" },
- { "time": 0.2333, "name": "fire" }
- ]
- },
- "atk_right": {
- "slots": {
- "1body": {
- "attachment": [
- { "name": null }
- ]
- },
- "1er1": {
- "attachment": [
- { "name": null }
- ]
- },
- "1er2": {
- "attachment": [
- { "name": null }
- ]
- },
- "1fa": {
- "attachment": [
- { "name": null }
- ]
- },
- "1shou1": {
- "attachment": [
- { "name": null }
- ]
- },
- "1shou2": {
- "attachment": [
- { "name": null }
- ]
- },
- "1tou": {
- "attachment": [
- { "name": null }
- ]
- },
- "1tui1": {
- "attachment": [
- { "name": null }
- ],
- "attachment": [
- { "name": null }
- ]
- },
- "1tui2": {
- "attachment": [
- { "name": null }
- ],
- "attachment": [
- { "name": null }
- ]
- },
- "1wei1": {
- "attachment": [
- { "name": null }
- ]
- },
- "1wei2": {
- "attachment": [
- { "name": null }
- ]
- },
- "1wuqi": {
- "attachment": [
- { "name": null }
- ]
- },
- "1yy": {
- "attachment": [
- { "name": null }
- ]
- },
- "2body": {
- "attachment": [
- { "name": null }
- ]
- },
- "2er1": {
- "attachment": [
- { "name": null }
- ]
- },
- "2er2": {
- "attachment": [
- { "name": null }
- ]
- },
- "2eye1": {
- "attachment": [
- { "name": null }
- ]
- },
- "2eye2": {
- "attachment": [
- { "name": null }
- ]
- },
- "2fa": {
- "attachment": [
- { "name": null }
- ]
- },
- "2shou1": {
- "attachment": [
- { "name": null }
- ]
- },
- "2shou2": {
- "attachment": [
- { "name": null }
- ]
- },
- "2tou": {
- "attachment": [
- { "name": null }
- ],
- "attachment": [
- { "name": null }
- ]
- },
- "2tui1": {
- "attachment": [
- { "name": null }
- ],
- "attachment": [
- { "name": null }
- ]
- },
- "2tui2": {
- "attachment": [
- { "name": null }
- ],
- "attachment": [
- { "name": null }
- ]
- },
- "2wei": {
- "attachment": [
- { "name": null }
- ]
- },
- "2wuqi": {
- "attachment": [
- { "name": null }
- ]
- },
- "2yy": {
- "attachment": [
- { "name": null }
- ]
- },
- "2zui": {
- "attachment": [
- { "name": null }
- ]
- },
- "effect_right": {
- "attachment": [
- { "time": 0.2, "name": "qk_00" },
- { "time": 0.2333, "name": "qk_01" },
- { "time": 0.2667, "name": "qk_02" },
- { "time": 0.3, "name": "qk_03" },
- { "time": 0.3333, "name": "qk_04" },
- { "time": 0.3667, "name": "qk_05" },
- { "time": 0.4, "name": null }
- ]
- },
- "effect_right2": {
- "attachment": [
- { "time": 0.2, "name": "qk_00" },
- { "time": 0.2333, "name": "qk_01" },
- { "time": 0.2667, "name": "qk_02" },
- { "time": 0.3, "name": "qk_03" },
- { "time": 0.3333, "name": "qk_04" },
- { "time": 0.3667, "name": "qk_05" },
- { "time": 0.4, "name": null }
- ]
- }
- },
- "bones": {
- "3shenti": {
- "rotate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.1667, "angle": -3.31 },
- { "time": 0.2333, "angle": 7.03 },
- { "time": 0.3, "angle": 7.35 },
- { "time": 0.4, "angle": 0.99 },
- { "time": 0.4667 }
- ],
- "translate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.1667, "x": 1.37, "y": -3.21 },
- { "time": 0.2333, "x": -4.32, "y": 1.56 },
- { "time": 0.3, "x": -2.29, "y": -3.05 },
- { "time": 0.4, "x": -0.77, "y": -0.99 },
- { "time": 0.4667 }
- ],
- "shear": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.1667, "y": 2.14 },
- { "time": 0.2333, "y": -3.68 },
- { "time": 0.3, "x": 3.22, "y": 7.17 },
- { "time": 0.4, "x": 1.29, "y": -1.9 },
- { "time": 0.4667 }
- ]
- },
- "3qiang": {
- "rotate": [
- { "angle": 3.1, "curve": 0.25, "c3": 0.75 },
- { "time": 0.1667, "angle": 0.76 },
- { "time": 0.2333, "angle": 4.79 },
- { "time": 0.3667, "angle": -2.52 },
- { "time": 0.4667, "angle": 3.1 }
- ],
- "translate": [
- { "x": -2.29, "y": -0.76, "curve": 0.25, "c3": 0.75 },
- { "time": 0.1667, "x": -2.32, "y": 0.34 },
- { "time": 0.2333, "x": -30.84, "y": 6.17 },
- { "time": 0.3, "x": -32.11, "y": -7.29 },
- { "time": 0.3667, "x": -2.38, "y": -11.45 },
- { "time": 0.4667, "x": -2.29, "y": -0.76 }
- ],
- "scale": [
- { "time": 0.1667 },
- { "time": 0.2333, "x": 0.843, "y": 1.259 },
- { "time": 0.3, "x": 0.968, "y": 0.966 },
- { "time": 0.4667 }
- ],
- "shear": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.1667, "y": 8.23 },
- { "time": 0.2333, "y": 6.43 },
- { "time": 0.3, "y": 12.05 },
- { "time": 0.4667 }
- ]
- },
- "3tou": {
- "rotate": [
- { "angle": -2.48, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
- { "time": 0.1333, "angle": -9.3 },
- { "time": 0.2333, "angle": -15.38 },
- { "time": 0.3333, "angle": 2.11 },
- { "time": 0.4667, "angle": -2.48 }
- ],
- "translate": [
- { "x": 2.81, "y": -1.47, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
- { "time": 0.1333, "x": -1.48, "y": -2.26 },
- { "time": 0.2333, "x": 2.08, "y": 5.9 },
- { "time": 0.3333, "x": 3.98, "y": 2.06 },
- { "time": 0.4, "x": 0.02, "y": -2.34 },
- { "time": 0.4667, "x": 2.81, "y": -1.47 }
- ],
- "scale": [
- { "x": 0.999, "y": 0.998, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
- { "time": 0.1333, "x": 0.997, "y": 1.012 },
- { "time": 0.2333, "x": 1.038, "y": 0.843 },
- { "time": 0.3333, "x": 1.034, "y": 0.998 },
- { "time": 0.4667, "x": 0.999, "y": 0.998 }
- ],
- "shear": [
- {},
- { "time": 0.1333, "y": 5.05 },
- { "time": 0.2333, "y": 5.06 },
- { "time": 0.3333, "x": 4.94, "y": 4.28 },
- { "time": 0.4667 }
- ]
- },
- "3tou2": {
- "rotate": [
- { "angle": -0.7, "curve": 0.382, "c2": 0.55, "c3": 0.741 },
- { "time": 0.1667, "angle": 5.29 },
- { "time": 0.2333, "angle": -13.12 },
- { "time": 0.3667, "angle": -3.33 },
- { "time": 0.4667, "angle": -0.7 }
- ],
- "translate": [
- { "x": 0.02, "y": 1.44, "curve": 0.382, "c2": 0.55, "c3": 0.741 },
- { "time": 0.1667, "x": -0.72, "y": 6.01 },
- { "time": 0.2333, "x": 4.42, "y": -1.61 },
- { "time": 0.3667, "x": 1.4, "y": 16.24 },
- { "time": 0.4667, "x": 0.02, "y": 1.44 }
- ],
- "scale": [
- { "x": 1.073, "y": 0.983, "curve": 0.382, "c2": 0.55, "c3": 0.741 },
- { "time": 0.1667 },
- { "time": 0.2333, "y": 0.823 },
- { "time": 0.4667, "x": 1.073, "y": 0.983 }
- ],
- "shear": [
- { "time": 0.1667 },
- { "time": 0.2333, "x": -2.02, "y": -12.69 },
- { "time": 0.4667 }
- ]
- },
- "3erduo": {
- "rotate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.1667, "angle": 12.61 },
- { "time": 0.2333, "angle": -6.75 },
- { "time": 0.3, "angle": -9.08 },
- { "time": 0.4, "angle": 18.42 },
- { "time": 0.4667 }
- ],
- "translate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.1667, "x": -3.82, "y": 2.51 },
- { "time": 0.2333, "x": -3.75, "y": 7.05 },
- { "time": 0.3, "x": 0.63, "y": 4.95 },
- { "time": 0.4, "x": -1.49, "y": 3.43 },
- { "time": 0.4667 }
- ],
- "scale": [
- {},
- { "time": 0.1667, "x": 1.165 },
- { "time": 0.2333, "x": 1.104, "y": 1.047 },
- { "time": 0.3, "x": 1.125, "y": 0.989 },
- { "time": 0.4667 }
- ]
- },
- "3tui2": {
- "rotate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.1667, "angle": -2.86 },
- { "time": 0.2333, "angle": 1.86 },
- { "time": 0.3667, "angle": 11.21 },
- { "time": 0.4667 }
- ],
- "translate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.1667, "x": 6.65, "y": -0.55 },
- { "time": 0.2333, "x": -10.48, "y": 0.59 },
- { "time": 0.3667, "x": -12.38, "y": -0.37 },
- { "time": 0.4667 }
- ],
- "scale": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.1667, "x": 1.044, "y": 1.056 },
- { "time": 0.2333, "x": 1.02, "y": 1.109 },
- { "time": 0.3667, "x": 1.009, "y": 1.016 },
- { "time": 0.4667 }
- ],
- "shear": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.1667, "x": -9.65 },
- { "time": 0.2333, "x": 15.64, "y": 8.94 },
- { "time": 0.3667, "x": 6.7, "y": -4.77 },
- { "time": 0.4667 }
- ]
- },
- "3tui1": {
- "rotate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.1667, "angle": -8.94 },
- { "time": 0.2333, "angle": 11.72 },
- { "time": 0.3, "angle": 9.77 },
- { "time": 0.4667 }
- ],
- "translate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.1667, "x": 4.82, "y": -0.53 },
- { "time": 0.2333, "x": -5.7, "y": -0.14 },
- { "time": 0.3, "x": -4.59, "y": 0.07 },
- { "time": 0.4667 }
- ],
- "scale": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.1667, "x": 0.987, "y": 1.048 },
- { "time": 0.2333, "x": 1.039, "y": 1.054 },
- { "time": 0.3, "x": 1.061, "y": 1.057 },
- { "time": 0.4667 }
- ],
- "shear": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.1667, "y": 5.71 },
- { "time": 0.2333, "y": -10.88 },
- { "time": 0.3, "y": -5.55 },
- { "time": 0.4667 }
- ]
- },
- "bone_right": {
- "translate": [
- { "x": 450.04, "y": 0.09 }
- ]
- },
- "bone_down": {
- "translate": [
- { "x": -608.55, "y": -0.51 }
- ]
- },
- "3erduo2": {
- "rotate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.1667, "angle": 12.61 },
- { "time": 0.2333, "angle": -6.75 },
- { "time": 0.3, "angle": -9.08 },
- { "time": 0.4, "angle": 18.42 },
- { "time": 0.4667 }
- ],
- "translate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.1667, "x": -3.82, "y": 2.51 },
- { "time": 0.2333, "x": -3.75, "y": 7.05 },
- { "time": 0.3, "x": 0.63, "y": 4.95 },
- { "time": 0.4, "x": -1.49, "y": 3.43 },
- { "time": 0.4667 }
- ],
- "scale": [
- {},
- { "time": 0.1667, "x": 1.165 },
- { "time": 0.2333, "x": 1.104, "y": 1.047 },
- { "time": 0.3, "x": 1.125, "y": 0.989 },
- { "time": 0.4667 }
- ]
- },
- "3tou6": {
- "rotate": [
- { "time": 0.2 },
- { "time": 0.3, "angle": -4.36 },
- { "time": 0.4667 }
- ],
- "scale": [
- { "time": 0.2 },
- { "time": 0.3, "x": 0.091 },
- { "time": 0.4667 }
- ]
- },
- "3shenti2": {
- "rotate": [
- { "angle": 4.77, "curve": 0.277, "c2": 0.12, "c3": 0.754 },
- { "time": 0.1667, "angle": 25.47, "curve": 0.265, "c3": 0.618, "c4": 0.43 },
- { "time": 0.2333, "angle": 10.45, "curve": 0.325, "c2": 0.31, "c3": 0.675, "c4": 0.69 },
- { "time": 0.3, "angle": -18.35, "curve": 0.382, "c2": 0.57, "c3": 0.735 },
- { "time": 0.3667, "angle": -17.69, "curve": 0.25, "c3": 0.75 },
- { "time": 0.4667, "angle": 4.77 }
- ]
- },
- "3shenti3": {
- "rotate": [
- { "angle": 4.04, "curve": 0.345, "c2": 0.41, "c3": 0.679, "c4": 0.74 },
- { "time": 0.0667, "angle": -3.34, "curve": 0.355, "c2": 0.65, "c3": 0.69 },
- { "time": 0.1667, "angle": -1.16, "curve": 0.38, "c2": 0.53, "c3": 0.745 },
- { "time": 0.2333, "angle": 18.37, "curve": 0.25, "c3": 0.625, "c4": 0.5 },
- { "time": 0.3, "angle": 9.91, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
- { "time": 0.3667, "angle": -18.8, "curve": 0.25, "c3": 0.75 },
- { "time": 0.4667, "angle": 4.04 }
- ],
- "translate": [
- { "x": 0.52, "y": 2.06 }
- ]
- },
- "3shenti4": {
- "rotate": [
- { "angle": 0.7, "curve": 0.382, "c2": 0.57, "c3": 0.735 },
- { "time": 0.1667, "angle": -22.53, "curve": 0.38, "c2": 0.53, "c3": 0.745 },
- { "time": 0.2333, "angle": 32.49, "curve": 0.282, "c3": 0.624, "c4": 0.39 },
- { "time": 0.3, "angle": 27.44, "curve": 0.312, "c2": 0.26, "c3": 0.652, "c4": 0.62 },
- { "time": 0.3667, "angle": -34.33, "curve": 0.367, "c2": 0.46, "c3": 0.754 },
- { "time": 0.4667, "angle": 0.7 }
- ],
- "translate": [
- { "x": 1.68, "y": 0.75 }
- ]
- },
- "3shenti5": {
- "rotate": [
- { "angle": 4.77, "curve": 0.277, "c2": 0.12, "c3": 0.754 },
- { "time": 0.1667, "angle": 22.4, "curve": 0.25, "c3": 0.625, "c4": 0.5 },
- { "time": 0.2333, "angle": -3.6, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
- { "time": 0.3, "angle": -22.3, "curve": 0.258, "c3": 0.619, "c4": 0.45 },
- { "time": 0.3667, "angle": -20.66, "curve": 0.363, "c2": 0.44, "c3": 0.755 },
- { "time": 0.4667, "angle": 4.77 }
- ]
- },
- "3shenti6": {
- "rotate": [
- { "angle": 4.04, "curve": 0.366, "c2": 0.63, "c3": 0.703 },
- { "time": 0.0667, "angle": -8.73, "curve": 0.363, "c2": 0.44, "c3": 0.755 },
- { "time": 0.1667, "angle": 1.02, "curve": 0.25, "c3": 0.625, "c4": 0.5 },
- { "time": 0.2333, "angle": 9.4, "curve": 0.351, "c2": 0.39, "c3": 0.701, "c4": 0.78 },
- { "time": 0.3, "angle": 7.64, "curve": 0.371, "c2": 0.63, "c3": 0.71 },
- { "time": 0.3667, "angle": -27.77, "curve": 0.32, "c2": 0.29, "c3": 0.757 },
- { "time": 0.4667, "angle": 4.04 }
- ],
- "translate": [
- { "x": 0.61, "y": 2.03 }
- ]
- },
- "3shenti7": {
- "rotate": [
- { "angle": 0.7, "curve": 0.382, "c2": 0.57, "c3": 0.735 },
- { "time": 0.0667, "angle": -11.74, "curve": 0.363, "c2": 0.44, "c3": 0.755 },
- { "time": 0.1667, "angle": -16.91, "curve": 0.25, "c3": 0.625, "c4": 0.5 },
- { "time": 0.2333, "angle": 22.85, "curve": 0.351, "c2": 0.39, "c3": 0.701, "c4": 0.78 },
- { "time": 0.3, "angle": 18.46, "curve": 0.371, "c2": 0.63, "c3": 0.71 },
- { "time": 0.3667, "angle": -10.7, "curve": 0.25, "c3": 0.75 },
- { "time": 0.4667, "angle": 0.7 }
- ],
- "translate": [
- { "x": 1.71, "y": 0.68 }
- ]
- },
- "3qiang2": {
- "translate": [
- {},
- { "time": 0.1667, "x": 12.8, "y": 6.18 },
- { "time": 0.2333, "x": 0.75, "y": 3.24 },
- { "time": 0.3, "x": 21.4, "y": -4.77 },
- { "time": 0.4667 }
- ]
- }
- },
- "events": [
- { "time": 0.1667, "name": "effect" },
- { "time": 0.2333, "name": "fire" }
- ]
- },
- "atk_up": {
- "slots": {
- "2body": {
- "attachment": [
- { "name": null }
- ]
- },
- "2er1": {
- "attachment": [
- { "name": null }
- ]
- },
- "2er2": {
- "attachment": [
- { "name": null }
- ]
- },
- "2eye1": {
- "attachment": [
- { "name": null }
- ]
- },
- "2eye2": {
- "attachment": [
- { "name": null }
- ]
- },
- "2fa": {
- "attachment": [
- { "name": null }
- ]
- },
- "2shou1": {
- "attachment": [
- { "name": null }
- ]
- },
- "2shou2": {
- "attachment": [
- { "name": null }
- ]
- },
- "2tou": {
- "attachment": [
- { "name": null }
- ],
- "attachment": [
- { "name": null }
- ]
- },
- "2tui1": {
- "attachment": [
- { "name": null }
- ],
- "attachment": [
- { "name": null }
- ]
- },
- "2tui2": {
- "attachment": [
- { "name": null }
- ],
- "attachment": [
- { "name": null }
- ]
- },
- "2wei": {
- "attachment": [
- { "name": null }
- ]
- },
- "2wuqi": {
- "attachment": [
- { "name": null }
- ]
- },
- "2yy": {
- "attachment": [
- { "name": null }
- ]
- },
- "2zui": {
- "attachment": [
- { "name": null }
- ]
- },
- "3body": {
- "attachment": [
- { "name": null }
- ]
- },
- "3er1": {
- "attachment": [
- { "name": null }
- ]
- },
- "3er2": {
- "attachment": [
- { "name": null }
- ]
- },
- "3eye1": {
- "attachment": [
- { "name": null }
- ]
- },
- "3eye2": {
- "attachment": [
- { "name": null }
- ]
- },
- "3fa": {
- "attachment": [
- { "name": null }
- ]
- },
- "3shou1": {
- "attachment": [
- { "name": null }
- ]
- },
- "3shou2": {
- "attachment": [
- { "name": null }
- ]
- },
- "3shou3": {
- "attachment": [
- { "name": null }
- ]
- },
- "3tou": {
- "attachment": [
- { "name": null }
- ]
- },
- "3tui1": {
- "attachment": [
- { "name": null }
- ],
- "attachment": [
- { "name": null }
- ]
- },
- "3tui2": {
- "attachment": [
- { "name": null }
- ],
- "attachment": [
- { "name": null }
- ]
- },
- "3wei1": {
- "attachment": [
- { "name": null }
- ]
- },
- "3wei2": {
- "attachment": [
- { "name": null }
- ]
- },
- "3wuqi": {
- "attachment": [
- { "name": null }
- ]
- },
- "3yy": {
- "attachment": [
- { "name": null }
- ]
- },
- "3zui": {
- "attachment": [
- { "name": null }
- ]
- },
- "effect_up": {
- "attachment": [
- { "time": 0.2, "name": "qk_00" },
- { "time": 0.2333, "name": "qk_01" },
- { "time": 0.2667, "name": "qk_02" },
- { "time": 0.3, "name": "qk_03" },
- { "time": 0.3333, "name": "qk_04" },
- { "time": 0.3667, "name": "qk_05" },
- { "time": 0.4, "name": null }
- ]
- },
- "effect_up2": {
- "attachment": [
- { "time": 0.2, "name": "qk_00" },
- { "time": 0.2333, "name": "qk_01" },
- { "time": 0.2667, "name": "qk_02" },
- { "time": 0.3, "name": "qk_03" },
- { "time": 0.3333, "name": "qk_04" },
- { "time": 0.3667, "name": "qk_05" },
- { "time": 0.4, "name": null }
- ]
- }
- },
- "bones": {
- "1tui2": {
- "rotate": [
- {},
- { "time": 0.1333, "angle": 5.21 },
- { "time": 0.2, "angle": -4.09 },
- { "time": 0.3333, "angle": -5.52 },
- { "time": 0.4667 }
- ],
- "translate": [
- {},
- { "time": 0.1333, "x": -4.5, "y": -2.57 },
- { "time": 0.2, "x": -0.05, "y": 0.07 },
- { "time": 0.3333, "x": 1.14, "y": 1.61 },
- { "time": 0.4667 }
- ],
- "scale": [
- {},
- { "time": 0.1333, "y": 1.121 },
- { "time": 0.2, "x": 1.032, "y": 1.141 },
- { "time": 0.3333, "x": 1.016, "y": 1.078 },
- { "time": 0.4667 }
- ],
- "shear": [
- { "time": 0.1333 },
- { "time": 0.2, "y": 6.41 },
- { "time": 0.3333, "y": 1.79 },
- { "time": 0.4667 }
- ]
- },
- "1qiang1": {
- "rotate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.1333, "angle": 2.25 },
- { "time": 0.2, "angle": -1.03 },
- { "time": 0.2667, "angle": 3.09 },
- { "time": 0.4667 }
- ],
- "translate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.1333, "x": 4.2, "y": 3.96 },
- { "time": 0.2, "x": 12.26, "y": 0.41 },
- { "time": 0.2667, "x": 10.05, "y": -0.58 },
- { "time": 0.4667 }
- ],
- "scale": [
- { "time": 0.1333 },
- { "time": 0.2, "x": 0.842, "y": 1.216 },
- { "time": 0.2667, "x": 0.747, "y": 1.239 },
- { "time": 0.3667, "x": 0.967, "y": 1.053 },
- { "time": 0.4667 }
- ]
- },
- "1erduo2": {
- "rotate": [
- {},
- { "time": 0.1667, "angle": 10.01 },
- { "time": 0.2333, "angle": -17.68 },
- { "time": 0.3, "angle": 8.22 },
- { "time": 0.4667 }
- ],
- "translate": [
- {},
- { "time": 0.1667, "x": -0.02, "y": 1.27 },
- { "time": 0.2333, "x": 0.21, "y": -2.5 },
- { "time": 0.3, "x": -0.48, "y": 2.73 },
- { "time": 0.4667 }
- ],
- "scale": [
- {},
- { "time": 0.1667, "x": 1.102, "y": 0.967 },
- { "time": 0.2333, "x": 0.947, "y": 0.932 },
- { "time": 0.3, "x": 0.999, "y": 0.951 },
- { "time": 0.4667 }
- ]
- },
- "1erduo1": {
- "rotate": [
- {},
- { "time": 0.1667, "angle": 13.23 },
- { "time": 0.2333, "angle": -0.88 },
- { "time": 0.3, "angle": -10.02 },
- { "time": 0.4667 }
- ],
- "translate": [
- {},
- { "time": 0.1667, "x": 2.55, "y": 2.07 },
- { "time": 0.2333, "x": 0.26, "y": 1.58 },
- { "time": 0.3, "x": -1.9, "y": -0.88 },
- { "time": 0.4667 }
- ],
- "scale": [
- {},
- { "time": 0.1667, "x": 1.145 },
- { "time": 0.2333, "x": 1.076 },
- { "time": 0.3, "x": 1.125, "y": 0.988 },
- { "time": 0.4667 }
- ]
- },
- "1shenti1": {
- "rotate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.1333, "angle": 2.67 },
- { "time": 0.2, "angle": -7.72 },
- { "time": 0.2667, "angle": -1.53 },
- { "time": 0.3333, "angle": 0.48 },
- { "time": 0.4667 }
- ],
- "translate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.1333, "x": 3.42, "y": -7.13 },
- { "time": 0.2, "x": -2.28, "y": -6.62 },
- { "time": 0.2667, "x": -1.28, "y": -7.94 },
- { "time": 0.3333, "x": -2.73, "y": 2.8 },
- { "time": 0.4667 }
- ],
- "scale": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.1333, "x": 1.061, "y": 0.945 },
- { "time": 0.2, "x": 1.037, "y": 1.073 },
- { "time": 0.2667, "x": 0.959, "y": 1.06 },
- { "time": 0.3333, "x": 1.137, "y": 0.901 },
- { "time": 0.4667 }
- ],
- "shear": [
- { "time": 0.1333 },
- { "time": 0.2, "x": 5.07, "y": 6.17 },
- { "time": 0.2667, "x": 2.26, "y": -2.31 },
- { "time": 0.3333, "x": -0.63, "y": 1.76 },
- { "time": 0.4667 }
- ]
- },
- "1tou1": {
- "rotate": [
- { "angle": -1.26, "curve": 0.372, "c2": 0.48, "c3": 0.752 },
- { "time": 0.1333, "angle": -7.16 },
- { "time": 0.2, "angle": -6.42 },
- { "time": 0.2667, "angle": 1.73 },
- { "time": 0.3333, "angle": 1.28 },
- { "time": 0.4667, "angle": -1.26 }
- ],
- "translate": [
- { "x": 4.48, "y": 0.43, "curve": 0.372, "c2": 0.48, "c3": 0.752 },
- { "time": 0.1333, "x": 9.23, "y": 1.76 },
- { "time": 0.2, "x": -2.86, "y": -3.28 },
- { "time": 0.2667, "x": 10.97, "y": 4.95 },
- { "time": 0.3333, "x": -2.53, "y": 3.51 },
- { "time": 0.4667, "x": 4.48, "y": 0.43 }
- ],
- "scale": [
- { "x": 0.993, "curve": 0.372, "c2": 0.48, "c3": 0.752 },
- { "time": 0.1333, "x": 0.945, "y": 1.012 },
- { "time": 0.2, "x": 1.038, "y": 0.961 },
- { "time": 0.2667, "x": 1.062, "y": 0.999 },
- { "time": 0.3333, "x": 0.823, "y": 1.1 },
- { "time": 0.4667, "x": 0.993 }
- ],
- "shear": [
- { "y": 0.78, "curve": 0.372, "c2": 0.48, "c3": 0.752 },
- { "time": 0.1333, "y": 3.61 },
- { "time": 0.2, "y": 2.67 },
- { "time": 0.2667, "x": 2.65, "y": -2.42 },
- { "time": 0.3333, "x": 2, "y": -0.37 },
- { "time": 0.4667, "y": 0.78 }
- ]
- },
- "bone_up": {
- "translate": [
- { "x": -331.56 }
- ]
- },
- "bone_down": {
- "translate": [
- { "x": 440.68, "y": 0.37 }
- ]
- },
- "1fa": {
- "rotate": [
- {},
- { "time": 0.1667, "angle": 13.23 },
- { "time": 0.2333, "angle": -0.88 },
- { "time": 0.3, "angle": -10.02 },
- { "time": 0.4667 }
- ],
- "translate": [
- {},
- { "time": 0.1667, "x": 2.55, "y": 2.07 },
- { "time": 0.2333, "x": 0.26, "y": 1.58 },
- { "time": 0.3, "x": -1.9, "y": -0.88 },
- { "time": 0.4667 }
- ],
- "scale": [
- {},
- { "time": 0.1667, "x": 1.145 },
- { "time": 0.2333, "x": 1.076 },
- { "time": 0.3, "x": 1.125, "y": 0.988 },
- { "time": 0.4667 }
- ]
- },
- "1shou1": {
- "rotate": [
- { "angle": -3.12, "curve": 0.337, "c2": 0.35, "c3": 0.758 },
- { "time": 0.1667, "angle": 1.56, "curve": 0.25, "c3": 0.75 },
- { "time": 0.2667, "angle": 4.94, "curve": 0.25, "c3": 0.75 },
- { "time": 0.4667, "angle": -3.12 }
- ],
- "scale": [
- {},
- { "time": 0.1667, "x": 0.999 },
- { "time": 0.2667, "x": 0.853 },
- { "time": 0.4667 }
- ]
- },
- "1wei2": {
- "rotate": [
- { "angle": -3.22, "curve": 0.306, "c2": 0.24, "c3": 0.652, "c4": 0.62 },
- { "time": 0.1667, "angle": -11.47, "curve": 0.34, "c2": 0.35, "c3": 0.681, "c4": 0.71 },
- { "time": 0.2667, "angle": 6.5, "curve": 0.381, "c2": 0.59, "c3": 0.729 },
- { "time": 0.4667, "angle": -3.22 }
- ]
- },
- "1wei3": {
- "rotate": [
- { "angle": -5.41, "curve": 0.338, "c2": 0.35, "c3": 0.671, "c4": 0.69 },
- { "time": 0.0667, "angle": -0.5, "curve": 0.341, "c2": 0.37, "c3": 0.675, "c4": 0.71 },
- { "time": 0.1667, "angle": -13.66, "curve": 0.346, "c2": 0.42, "c3": 0.68, "c4": 0.75 },
- { "time": 0.3, "angle": 4.98, "curve": 0.354, "c2": 0.65, "c3": 0.688 },
- { "time": 0.4667, "angle": -5.41 }
- ],
- "translate": [
- { "x": 0.18, "y": -2.96 }
- ]
- },
- "1wei4": {
- "rotate": [
- { "angle": 1.29, "curve": 0.33, "c2": 0.32, "c3": 0.666, "c4": 0.66 },
- { "time": 0.1, "angle": 7.11, "curve": 0.336, "c2": 0.34, "c3": 0.67, "c4": 0.68 },
- { "time": 0.1667, "angle": -6.96, "curve": 0.347, "c2": 0.38, "c3": 0.685, "c4": 0.73 },
- { "time": 0.3333, "angle": 11.21, "curve": 0.376, "c2": 0.61, "c3": 0.718 },
- { "time": 0.4667, "angle": 1.29 }
- ],
- "translate": [
- { "x": 0.28, "y": -1.34 }
- ]
- }
- },
- "events": [
- { "time": 0.1667, "name": "effect" },
- { "time": 0.2333, "name": "fire" }
- ]
- },
- "idle_down": {
- "slots": {
- "1body": {
- "attachment": [
- { "name": null }
- ]
- },
- "1er1": {
- "attachment": [
- { "name": null }
- ]
- },
- "1er2": {
- "attachment": [
- { "name": null }
- ]
- },
- "1fa": {
- "attachment": [
- { "name": null }
- ]
- },
- "1shou1": {
- "attachment": [
- { "name": null }
- ]
- },
- "1shou2": {
- "attachment": [
- { "name": null }
- ]
- },
- "1tou": {
- "attachment": [
- { "name": null }
- ]
- },
- "1tui1": {
- "attachment": [
- { "name": null }
- ],
- "attachment": [
- { "name": null }
- ]
- },
- "1tui2": {
- "attachment": [
- { "name": null }
- ],
- "attachment": [
- { "name": null }
- ]
- },
- "1wei1": {
- "attachment": [
- { "name": null }
- ]
- },
- "1wei2": {
- "attachment": [
- { "name": null }
- ]
- },
- "1wuqi": {
- "attachment": [
- { "name": null }
- ]
- },
- "1yy": {
- "attachment": [
- { "name": null }
- ]
- },
- "3body": {
- "attachment": [
- { "name": null }
- ]
- },
- "3er1": {
- "attachment": [
- { "name": null }
- ]
- },
- "3er2": {
- "attachment": [
- { "name": null }
- ]
- },
- "3eye1": {
- "attachment": [
- { "name": null }
- ]
- },
- "3eye2": {
- "attachment": [
- { "name": null }
- ]
- },
- "3fa": {
- "attachment": [
- { "name": null }
- ]
- },
- "3shou1": {
- "attachment": [
- { "name": null }
- ]
- },
- "3shou2": {
- "attachment": [
- { "name": null }
- ]
- },
- "3shou3": {
- "attachment": [
- { "name": null }
- ]
- },
- "3tou": {
- "attachment": [
- { "name": null }
- ]
- },
- "3tui1": {
- "attachment": [
- { "name": null }
- ],
- "attachment": [
- { "name": null }
- ]
- },
- "3tui2": {
- "attachment": [
- { "name": null }
- ],
- "attachment": [
- { "name": null }
- ]
- },
- "3wei1": {
- "attachment": [
- { "name": null }
- ]
- },
- "3wei2": {
- "attachment": [
- { "name": null }
- ]
- },
- "3wuqi": {
- "attachment": [
- { "name": null }
- ]
- },
- "3yy": {
- "attachment": [
- { "name": null }
- ]
- },
- "3zui": {
- "attachment": [
- { "name": null }
- ]
- }
- },
- "bones": {
- "2shenti": {
- "rotate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.5, "angle": -0.33, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ],
- "translate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.2667, "x": -1.54, "y": -2.67, "curve": 0.25, "c3": 0.75 },
- { "time": 0.5, "x": 0.14, "y": -5.36, "curve": 0.25, "c3": 0.75 },
- { "time": 0.7667, "x": 1.23, "y": -1.23, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ],
- "scale": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.5, "x": 0.982, "y": 1.01, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ],
- "shear": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.2667, "y": 2.81, "curve": 0.25, "c3": 0.75 },
- { "time": 0.7667, "y": -1.16, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ]
- },
- "2tou": {
- "rotate": [
- { "angle": 0.5, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
- { "time": 0.3, "angle": 2.78, "curve": 0.25, "c3": 0.75 },
- { "time": 0.7, "angle": -1.78, "curve": 0.25, "c3": 0.625, "c4": 0.5 },
- { "time": 1, "angle": 0.5 }
- ],
- "translate": [
- { "x": -0.34, "y": -0.37, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
- { "time": 0.3, "x": 1.34, "y": -0.78, "curve": 0.25, "c3": 0.75 },
- { "time": 0.7, "x": -2.03, "y": 0.04, "curve": 0.25, "c3": 0.625, "c4": 0.5 },
- { "time": 1, "x": -0.34, "y": -0.37 }
- ],
- "scale": [
- { "x": 0.978, "y": 1.017, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
- { "time": 0.3, "x": 0.96, "y": 1.02, "curve": 0.25, "c3": 0.75 },
- { "time": 0.7, "x": 0.996, "y": 1.013, "curve": 0.25, "c3": 0.625, "c4": 0.5 },
- { "time": 1, "x": 0.978, "y": 1.017 }
- ],
- "shear": [
- { "y": -1.12, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
- { "time": 0.3, "y": -0.51, "curve": 0.25, "c3": 0.75 },
- { "time": 0.7, "y": -1.73, "curve": 0.25, "c3": 0.625, "c4": 0.5 },
- { "time": 1, "y": -1.12 }
- ]
- },
- "2tou4": {
- "scale": [
- { "time": 0.3667 },
- { "time": 0.5, "x": 0.063, "y": 1.093 },
- { "time": 0.6333 }
- ]
- },
- "2tou2": {
- "scale": [
- { "time": 0.3667 },
- { "time": 0.5, "x": 0.063, "y": 1.093 },
- { "time": 0.6333 }
- ]
- },
- "ik_r_down": {
- "translate": [
- {},
- { "time": 0.2667, "x": 1.93, "y": 1.54 },
- { "time": 0.5, "x": 3.03, "y": 4.87 },
- { "time": 0.7667, "x": 3.25, "y": -0.23 },
- { "time": 1 }
- ]
- },
- "2qiang": {
- "rotate": [
- {},
- { "time": 0.5, "angle": 1.49 },
- { "time": 1 }
- ],
- "translate": [
- {},
- { "time": 0.2667, "x": -2.84, "y": -1.83 },
- { "time": 0.5, "x": -1.24, "y": -2.65 },
- { "time": 0.7667, "x": 0.42, "y": -2.21 },
- { "time": 1 }
- ],
- "scale": [
- {},
- { "time": 0.5, "x": 0.881, "y": 1.027 },
- { "time": 1 }
- ]
- },
- "2tou3": {
- "rotate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.1333, "angle": -1.98, "curve": 0.25, "c3": 0.75 },
- { "time": 0.6667, "angle": 5.34, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ],
- "translate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.4, "x": 4.34, "y": -0.02, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ],
- "scale": [
- {},
- { "time": 0.1333, "x": 0.999, "y": 0.967 },
- { "time": 0.7333, "x": 0.896, "y": 1.062 },
- { "time": 1 }
- ]
- },
- "2erduo2": {
- "rotate": [
- {},
- { "time": 0.3333, "angle": 10.64 },
- { "time": 0.7667, "angle": -12.7 },
- { "time": 1 }
- ]
- },
- "2erduo1": {
- "rotate": [
- {},
- { "time": 0.5333, "angle": 15.21 },
- { "time": 1 }
- ],
- "translate": [
- {},
- { "time": 0.5333, "x": -2.43, "y": 0.69 },
- { "time": 1 }
- ]
- },
- "2tui1": {
- "rotate": [
- {},
- { "time": 0.2, "angle": 1.48 },
- { "time": 0.3333, "angle": 2.57 },
- { "time": 0.6667, "angle": -2.41 },
- { "time": 1 }
- ],
- "translate": [
- {},
- { "time": 0.2, "x": -0.44 },
- { "time": 0.3333, "x": -0.75, "y": -0.71 },
- { "time": 0.6667, "x": 1.51, "y": -0.1 },
- { "time": 1 }
- ],
- "scale": [
- {},
- { "time": 0.3333, "x": 0.978, "y": 1.032 },
- { "time": 0.6667, "x": 0.998, "y": 1.002 },
- { "time": 1 }
- ]
- },
- "2tui2": {
- "rotate": [
- {},
- { "time": 0.4667, "angle": -1.47 },
- { "time": 1 }
- ],
- "translate": [
- {},
- { "time": 0.4667, "x": 1.11, "y": -0.74 },
- { "time": 1 }
- ],
- "scale": [
- {},
- { "time": 0.4667, "x": 0.966, "y": 1.077 },
- { "time": 1 }
- ]
- },
- "2youshou1": {
- "rotate": [
- { "angle": 1.39, "curve": 0.38, "c2": 0.59, "c3": 0.727 },
- { "time": 0.1333, "angle": 2.76, "curve": 0.25, "c3": 0.75 },
- { "time": 0.6333, "angle": -4.03, "curve": 0.242, "c3": 0.663, "c4": 0.65 },
- { "time": 1, "angle": 1.39 }
- ]
- }
- }
- },
- "idle_left": {
- "slots": {
- "1body": {
- "attachment": [
- { "name": null }
- ]
- },
- "1er1": {
- "attachment": [
- { "name": null }
- ]
- },
- "1er2": {
- "attachment": [
- { "name": null }
- ]
- },
- "1fa": {
- "attachment": [
- { "name": null }
- ]
- },
- "1shou1": {
- "attachment": [
- { "name": null }
- ]
- },
- "1shou2": {
- "attachment": [
- { "name": null }
- ]
- },
- "1tou": {
- "attachment": [
- { "name": null }
- ]
- },
- "1tui1": {
- "attachment": [
- { "name": null }
- ],
- "attachment": [
- { "name": null }
- ]
- },
- "1tui2": {
- "attachment": [
- { "name": null }
- ],
- "attachment": [
- { "name": null }
- ]
- },
- "1wei1": {
- "attachment": [
- { "name": null }
- ]
- },
- "1wei2": {
- "attachment": [
- { "name": null }
- ]
- },
- "1wuqi": {
- "attachment": [
- { "name": null }
- ]
- },
- "1yy": {
- "attachment": [
- { "name": null }
- ]
- },
- "2body": {
- "attachment": [
- { "name": null }
- ]
- },
- "2er1": {
- "attachment": [
- { "name": null }
- ]
- },
- "2er2": {
- "attachment": [
- { "name": null }
- ]
- },
- "2eye1": {
- "attachment": [
- { "name": null }
- ]
- },
- "2eye2": {
- "attachment": [
- { "name": null }
- ]
- },
- "2fa": {
- "attachment": [
- { "name": null }
- ]
- },
- "2shou1": {
- "attachment": [
- { "name": null }
- ]
- },
- "2shou2": {
- "attachment": [
- { "name": null }
- ]
- },
- "2tou": {
- "attachment": [
- { "name": null }
- ],
- "attachment": [
- { "name": null }
- ]
- },
- "2tui1": {
- "attachment": [
- { "name": null }
- ],
- "attachment": [
- { "name": null }
- ]
- },
- "2tui2": {
- "attachment": [
- { "name": null }
- ],
- "attachment": [
- { "name": null }
- ]
- },
- "2wei": {
- "attachment": [
- { "name": null }
- ]
- },
- "2wuqi": {
- "attachment": [
- { "name": null }
- ]
- },
- "2yy": {
- "attachment": [
- { "name": null }
- ]
- },
- "2zui": {
- "attachment": [
- { "name": null }
- ]
- }
- },
- "bones": {
- "3shenti": {
- "rotate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.5, "angle": 2.94, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ],
- "translate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.2667, "x": -2, "y": -3.11, "curve": 0.25, "c3": 0.75 },
- { "time": 0.5, "y": -4.45, "curve": 0.25, "c3": 0.75 },
- { "time": 0.7333, "x": 2.22, "y": -2.37, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ],
- "scale": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.5, "x": 0.972, "y": 1.028, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ],
- "shear": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.2667, "y": -1.37, "curve": 0.25, "c3": 0.75 },
- { "time": 0.7333, "y": 1.36, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ]
- },
- "3shou1": {
- "rotate": [
- { "angle": 5.51, "curve": 0.337, "c2": 0.35, "c3": 0.758 },
- { "time": 0.3667, "angle": -9.66, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8667, "angle": 9.37, "curve": 0.273, "c3": 0.62, "c4": 0.41 },
- { "time": 1, "angle": 5.51 }
- ]
- },
- "3qiang": {
- "rotate": [
- { "angle": 3.1, "curve": 0.25, "c3": 0.75 },
- { "time": 0.2667, "angle": 5.37, "curve": 0.25, "c3": 0.75 },
- { "time": 0.5, "angle": 6.02, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8, "angle": 5.37, "curve": 0.25, "c3": 0.75 },
- { "time": 1, "angle": 3.1 }
- ],
- "translate": [
- { "x": -2.29, "y": -0.76, "curve": 0.25, "c3": 0.75 },
- { "time": 0.2, "x": -5.01, "y": -2.17, "curve": 0.25, "c3": 0.75 },
- { "time": 0.5, "x": -7.95, "y": -8.16, "curve": 0.25, "c3": 0.75 },
- { "time": 0.7333, "x": -1.18, "y": -10.17, "curve": 0.25, "c3": 0.75 },
- { "time": 1, "x": -2.29, "y": -0.76 }
- ],
- "shear": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.5, "x": -5.9, "y": 3.46, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ]
- },
- "3tou": {
- "rotate": [
- { "angle": -2.48, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
- { "time": 0.2667, "angle": 1.93, "curve": 0.25, "c3": 0.75 },
- { "time": 0.7333, "angle": -6.89, "curve": 0.25, "c3": 0.625, "c4": 0.5 },
- { "time": 1, "angle": -2.48 }
- ],
- "translate": [
- { "x": 2.81, "y": -1.47, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
- { "time": 0.2667, "x": 4.56, "y": -0.96, "curve": 0.25, "c3": 0.75 },
- { "time": 0.7333, "x": 1.07, "y": -1.99, "curve": 0.25, "c3": 0.625, "c4": 0.5 },
- { "time": 1, "x": 2.81, "y": -1.47 }
- ],
- "scale": [
- { "x": 0.999, "y": 0.998, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
- { "time": 0.2667, "x": 1.068, "y": 0.978, "curve": 0.25, "c3": 0.75 },
- { "time": 0.7333, "x": 0.929, "y": 1.019, "curve": 0.25, "c3": 0.625, "c4": 0.5 },
- { "time": 1, "x": 0.999, "y": 0.998 }
- ]
- },
- "3tou5": {
- "scale": [
- { "time": 0.3667, "curve": 0.25, "c3": 0.75 },
- { "time": 0.5, "x": 0.082, "y": 1.06, "curve": 0.25, "c3": 0.75 },
- { "time": 0.6333 }
- ]
- },
- "3tou2": {
- "rotate": [
- { "angle": -0.7, "curve": 0.382, "c2": 0.55, "c3": 0.741 },
- { "time": 0.1667, "angle": 1.24, "curve": 0.25, "c3": 0.75 },
- { "time": 0.7333, "angle": -4.33, "curve": 0.245, "c3": 0.64, "c4": 0.57 },
- { "time": 1, "angle": -0.7 }
- ],
- "translate": [
- { "x": 0.02, "y": 1.44, "curve": 0.382, "c2": 0.55, "c3": 0.741 },
- { "time": 0.1667, "x": -1.45, "y": 0.61, "curve": 0.25, "c3": 0.75 },
- { "time": 0.7333, "x": 2.77, "y": 2.99, "curve": 0.245, "c3": 0.64, "c4": 0.57 },
- { "time": 1, "x": 0.02, "y": 1.44 }
- ],
- "scale": [
- { "x": 1.073, "y": 0.983, "curve": 0.382, "c2": 0.55, "c3": 0.741 },
- { "time": 0.1667, "x": 1.079, "curve": 0.25, "c3": 0.75 },
- { "time": 0.7333, "x": 1.06, "y": 0.952, "curve": 0.245, "c3": 0.64, "c4": 0.57 },
- { "time": 1, "x": 1.073, "y": 0.983 }
- ]
- },
- "3erduo": {
- "rotate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.2667, "angle": 8.05, "curve": 0.25, "c3": 0.75 },
- { "time": 0.6667, "angle": -1.84, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ],
- "translate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.2667, "x": -3.15, "y": 2.35, "curve": 0.25, "c3": 0.75 },
- { "time": 0.6667, "x": 1.69, "y": 1.66, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ],
- "shear": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.2667, "x": -1.4, "curve": 0.25, "c3": 0.75 },
- { "time": 0.4667, "x": 11.25, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ]
- },
- "3tui2": {
- "rotate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.3333, "angle": 3.3, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ],
- "translate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.3333, "x": -5.2, "y": -0.08, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ],
- "scale": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.3333, "y": 1.026, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ],
- "shear": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.3333, "x": 3.19, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ]
- },
- "3tui1": {
- "rotate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.6667, "angle": 2.31, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ],
- "translate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.6667, "x": -3.15, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ],
- "scale": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.6667, "x": 0.996, "y": 1.042, "curve": 0.25, "c3": 0.75 },
- { "time": 1, "x": 0.994, "y": 0.994 }
- ],
- "shear": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.6667, "x": 3.06, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ]
- },
- "bone_right": {
- "translate": [
- { "x": 450.04, "y": 0.09 }
- ],
- "scale": [
- { "x": -1 }
- ]
- },
- "bone_down": {
- "translate": [
- { "x": -608.55, "y": -0.51 }
- ]
- },
- "3tou6": {
- "scale": [
- { "time": 0.3667, "curve": 0.25, "c3": 0.75 },
- { "time": 0.5, "x": 0.082, "y": 1.06, "curve": 0.25, "c3": 0.75 },
- { "time": 0.6333 }
- ]
- },
- "3erduo2": {
- "rotate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.2667, "angle": 8.05, "curve": 0.25, "c3": 0.75 },
- { "time": 0.6667, "angle": -1.84, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ],
- "translate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.2667, "x": -3.15, "y": 2.35, "curve": 0.25, "c3": 0.75 },
- { "time": 0.6667, "x": 1.69, "y": 1.66, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ],
- "shear": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.2667, "x": -1.4, "curve": 0.25, "c3": 0.75 },
- { "time": 0.4667, "x": 11.25, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ]
- },
- "3shenti5": {
- "rotate": [
- { "angle": 4.77, "curve": 0.277, "c2": 0.12, "c3": 0.754 },
- { "time": 0.4667, "angle": -10.49, "curve": 0.25, "c3": 0.75 },
- { "time": 0.9667, "angle": 5.13, "curve": 0.313, "c3": 0.648, "c4": 0.35 },
- { "time": 1, "angle": 4.77 }
- ]
- },
- "3shenti6": {
- "rotate": [
- { "angle": 4.04, "curve": 0.366, "c2": 0.63, "c3": 0.703 },
- { "time": 0.0667, "angle": 5.13, "curve": 0.273, "c3": 0.62, "c4": 0.41 },
- { "time": 0.5667, "angle": -10.49, "curve": 0.244, "c3": 0.7, "c4": 0.79 },
- { "time": 1, "angle": 4.04 }
- ],
- "translate": [
- { "x": 0.61, "y": 2.03, "curve": 0.366, "c2": 0.63, "c3": 0.703 },
- { "time": 0.0667, "x": 0.64, "y": 2.49, "curve": 0.273, "c3": 0.62, "c4": 0.41 },
- { "time": 0.5667, "x": 0.19, "y": -4.07, "curve": 0.244, "c3": 0.7, "c4": 0.79 },
- { "time": 1, "x": 0.61, "y": 2.03 }
- ]
- },
- "3shenti7": {
- "rotate": [
- { "angle": 0.7, "curve": 0.382, "c2": 0.57, "c3": 0.735 },
- { "time": 0.1667, "angle": 5.13, "curve": 0.313, "c3": 0.648, "c4": 0.35 },
- { "time": 0.6667, "angle": -10.49, "curve": 0.243, "c3": 0.649, "c4": 0.6 },
- { "time": 1, "angle": 0.7 }
- ],
- "translate": [
- { "x": 1.71, "y": 0.68, "curve": 0.382, "c2": 0.57, "c3": 0.735 },
- { "time": 0.1667, "x": 2.18, "y": 2.72, "curve": 0.313, "c3": 0.648, "c4": 0.35 },
- { "time": 0.6667, "x": 0.53, "y": -4.47, "curve": 0.243, "c3": 0.649, "c4": 0.6 },
- { "time": 1, "x": 1.71, "y": 0.68 }
- ]
- },
- "3shenti2": {
- "rotate": [
- { "angle": 4.77, "curve": 0.277, "c2": 0.12, "c3": 0.754 },
- { "time": 0.4667, "angle": -10.49, "curve": 0.25, "c3": 0.75 },
- { "time": 0.9667, "angle": 5.13, "curve": 0.313, "c3": 0.648, "c4": 0.35 },
- { "time": 1, "angle": 4.77 }
- ]
- },
- "3shenti3": {
- "rotate": [
- { "angle": 4.04, "curve": 0.366, "c2": 0.63, "c3": 0.703 },
- { "time": 0.0667, "angle": 5.13, "curve": 0.273, "c3": 0.62, "c4": 0.41 },
- { "time": 0.5667, "angle": -10.49, "curve": 0.244, "c3": 0.7, "c4": 0.79 },
- { "time": 1, "angle": 4.04 }
- ],
- "translate": [
- { "x": 0.52, "y": 2.06, "curve": 0.366, "c2": 0.63, "c3": 0.703 },
- { "time": 0.0667, "x": 0.53, "y": 2.52, "curve": 0.273, "c3": 0.62, "c4": 0.41 },
- { "time": 0.5667, "x": 0.37, "y": -4.06, "curve": 0.244, "c3": 0.7, "c4": 0.79 },
- { "time": 1, "x": 0.52, "y": 2.06 }
- ]
- },
- "3shenti4": {
- "rotate": [
- { "angle": 0.7, "curve": 0.382, "c2": 0.57, "c3": 0.735 },
- { "time": 0.1667, "angle": 5.13, "curve": 0.313, "c3": 0.648, "c4": 0.35 },
- { "time": 0.6667, "angle": -10.49, "curve": 0.243, "c3": 0.649, "c4": 0.6 },
- { "time": 1, "angle": 0.7 }
- ],
- "translate": [
- { "x": 1.68, "y": 0.75, "curve": 0.382, "c2": 0.57, "c3": 0.735 },
- { "time": 0.1667, "x": 2.06, "y": 2.81, "curve": 0.313, "c3": 0.648, "c4": 0.35 },
- { "time": 0.6667, "x": 0.72, "y": -4.44, "curve": 0.243, "c3": 0.649, "c4": 0.6 },
- { "time": 1, "x": 1.68, "y": 0.75 }
- ]
- },
- "3qiang2": {
- "translate": [
- {},
- { "time": 0.2333, "x": 1.63, "y": -4.1 },
- { "time": 0.5, "x": -1.32, "y": -8.97 },
- { "time": 0.7667, "x": -4.77, "y": -0.65 },
- { "time": 1 }
- ]
- }
- }
- },
- "idle_right": {
- "slots": {
- "1body": {
- "attachment": [
- { "name": null }
- ]
- },
- "1er1": {
- "attachment": [
- { "name": null }
- ]
- },
- "1er2": {
- "attachment": [
- { "name": null }
- ]
- },
- "1fa": {
- "attachment": [
- { "name": null }
- ]
- },
- "1shou1": {
- "attachment": [
- { "name": null }
- ]
- },
- "1shou2": {
- "attachment": [
- { "name": null }
- ]
- },
- "1tou": {
- "attachment": [
- { "name": null }
- ]
- },
- "1tui1": {
- "attachment": [
- { "name": null }
- ],
- "attachment": [
- { "name": null }
- ]
- },
- "1tui2": {
- "attachment": [
- { "name": null }
- ],
- "attachment": [
- { "name": null }
- ]
- },
- "1wei1": {
- "attachment": [
- { "name": null }
- ]
- },
- "1wei2": {
- "attachment": [
- { "name": null }
- ]
- },
- "1wuqi": {
- "attachment": [
- { "name": null }
- ]
- },
- "1yy": {
- "attachment": [
- { "name": null }
- ]
- },
- "2body": {
- "attachment": [
- { "name": null }
- ]
- },
- "2er1": {
- "attachment": [
- { "name": null }
- ]
- },
- "2er2": {
- "attachment": [
- { "name": null }
- ]
- },
- "2eye1": {
- "attachment": [
- { "name": null }
- ]
- },
- "2eye2": {
- "attachment": [
- { "name": null }
- ]
- },
- "2fa": {
- "attachment": [
- { "name": null }
- ]
- },
- "2shou1": {
- "attachment": [
- { "name": null }
- ]
- },
- "2shou2": {
- "attachment": [
- { "name": null }
- ]
- },
- "2tou": {
- "attachment": [
- { "name": null }
- ],
- "attachment": [
- { "name": null }
- ]
- },
- "2tui1": {
- "attachment": [
- { "name": null }
- ],
- "attachment": [
- { "name": null }
- ]
- },
- "2tui2": {
- "attachment": [
- { "name": null }
- ],
- "attachment": [
- { "name": null }
- ]
- },
- "2wei": {
- "attachment": [
- { "name": null }
- ]
- },
- "2wuqi": {
- "attachment": [
- { "name": null }
- ]
- },
- "2yy": {
- "attachment": [
- { "name": null }
- ]
- },
- "2zui": {
- "attachment": [
- { "name": null }
- ]
- }
- },
- "bones": {
- "3shenti": {
- "rotate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.5, "angle": 2.94, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ],
- "translate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.2667, "x": -2, "y": -3.11, "curve": 0.25, "c3": 0.75 },
- { "time": 0.5, "y": -4.45, "curve": 0.25, "c3": 0.75 },
- { "time": 0.7333, "x": 2.22, "y": -2.37, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ],
- "scale": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.5, "x": 0.972, "y": 1.028, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ],
- "shear": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.2667, "y": -1.37, "curve": 0.25, "c3": 0.75 },
- { "time": 0.7333, "y": 1.36, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ]
- },
- "3shou1": {
- "rotate": [
- { "angle": 5.51, "curve": 0.337, "c2": 0.35, "c3": 0.758 },
- { "time": 0.3667, "angle": -9.66, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8667, "angle": 9.37, "curve": 0.273, "c3": 0.62, "c4": 0.41 },
- { "time": 1, "angle": 5.51 }
- ]
- },
- "3qiang": {
- "rotate": [
- { "angle": 3.1, "curve": 0.25, "c3": 0.75 },
- { "time": 0.2667, "angle": 5.37, "curve": 0.25, "c3": 0.75 },
- { "time": 0.5, "angle": 6.02, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8, "angle": 5.37, "curve": 0.25, "c3": 0.75 },
- { "time": 1, "angle": 3.1 }
- ],
- "translate": [
- { "x": -2.29, "y": -0.76, "curve": 0.25, "c3": 0.75 },
- { "time": 0.2, "x": -5.01, "y": -2.17, "curve": 0.25, "c3": 0.75 },
- { "time": 0.5, "x": -7.95, "y": -8.16, "curve": 0.25, "c3": 0.75 },
- { "time": 0.7333, "x": -1.18, "y": -10.17, "curve": 0.25, "c3": 0.75 },
- { "time": 1, "x": -2.29, "y": -0.76 }
- ],
- "shear": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.5, "x": -5.9, "y": 3.46, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ]
- },
- "3tou": {
- "rotate": [
- { "angle": -2.48, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
- { "time": 0.2667, "angle": 1.93, "curve": 0.25, "c3": 0.75 },
- { "time": 0.7333, "angle": -6.89, "curve": 0.25, "c3": 0.625, "c4": 0.5 },
- { "time": 1, "angle": -2.48 }
- ],
- "translate": [
- { "x": 2.81, "y": -1.47, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
- { "time": 0.2667, "x": 4.56, "y": -0.96, "curve": 0.25, "c3": 0.75 },
- { "time": 0.7333, "x": 1.07, "y": -1.99, "curve": 0.25, "c3": 0.625, "c4": 0.5 },
- { "time": 1, "x": 2.81, "y": -1.47 }
- ],
- "scale": [
- { "x": 0.999, "y": 0.998, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
- { "time": 0.2667, "x": 1.068, "y": 0.978, "curve": 0.25, "c3": 0.75 },
- { "time": 0.7333, "x": 0.929, "y": 1.019, "curve": 0.25, "c3": 0.625, "c4": 0.5 },
- { "time": 1, "x": 0.999, "y": 0.998 }
- ]
- },
- "3tou5": {
- "scale": [
- { "time": 0.3667, "curve": 0.25, "c3": 0.75 },
- { "time": 0.5, "x": 0.082, "y": 1.06, "curve": 0.25, "c3": 0.75 },
- { "time": 0.6333 }
- ]
- },
- "3tou2": {
- "rotate": [
- { "angle": -0.7, "curve": 0.382, "c2": 0.55, "c3": 0.741 },
- { "time": 0.1667, "angle": 1.24, "curve": 0.25, "c3": 0.75 },
- { "time": 0.7333, "angle": -4.33, "curve": 0.245, "c3": 0.64, "c4": 0.57 },
- { "time": 1, "angle": -0.7 }
- ],
- "translate": [
- { "x": 0.02, "y": 1.44, "curve": 0.382, "c2": 0.55, "c3": 0.741 },
- { "time": 0.1667, "x": -1.45, "y": 0.61, "curve": 0.25, "c3": 0.75 },
- { "time": 0.7333, "x": 2.77, "y": 2.99, "curve": 0.245, "c3": 0.64, "c4": 0.57 },
- { "time": 1, "x": 0.02, "y": 1.44 }
- ],
- "scale": [
- { "x": 1.073, "y": 0.983, "curve": 0.382, "c2": 0.55, "c3": 0.741 },
- { "time": 0.1667, "x": 1.079, "curve": 0.25, "c3": 0.75 },
- { "time": 0.7333, "x": 1.06, "y": 0.952, "curve": 0.245, "c3": 0.64, "c4": 0.57 },
- { "time": 1, "x": 1.073, "y": 0.983 }
- ]
- },
- "3erduo": {
- "rotate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.2667, "angle": 8.05, "curve": 0.25, "c3": 0.75 },
- { "time": 0.6667, "angle": -1.84, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ],
- "translate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.2667, "x": -3.15, "y": 2.35, "curve": 0.25, "c3": 0.75 },
- { "time": 0.6667, "x": 1.69, "y": 1.66, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ],
- "shear": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.2667, "x": -1.4, "curve": 0.25, "c3": 0.75 },
- { "time": 0.4667, "x": 11.25, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ]
- },
- "3tui2": {
- "rotate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.3333, "angle": 3.3, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ],
- "translate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.3333, "x": -5.2, "y": -0.08, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ],
- "scale": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.3333, "y": 1.026, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ],
- "shear": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.3333, "x": 3.19, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ]
- },
- "3tui1": {
- "rotate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.6667, "angle": 2.31, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ],
- "translate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.6667, "x": -3.15, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ],
- "scale": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.6667, "x": 0.996, "y": 1.042, "curve": 0.25, "c3": 0.75 },
- { "time": 1, "x": 0.994, "y": 0.994 }
- ],
- "shear": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.6667, "x": 3.06, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ]
- },
- "bone_right": {
- "translate": [
- { "x": 450.04, "y": 0.09 }
- ]
- },
- "bone_down": {
- "translate": [
- { "x": -608.55, "y": -0.51 }
- ]
- },
- "3tou6": {
- "scale": [
- { "time": 0.3667, "curve": 0.25, "c3": 0.75 },
- { "time": 0.5, "x": 0.082, "y": 1.06, "curve": 0.25, "c3": 0.75 },
- { "time": 0.6333 }
- ]
- },
- "3erduo2": {
- "rotate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.2667, "angle": 8.05, "curve": 0.25, "c3": 0.75 },
- { "time": 0.6667, "angle": -1.84, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ],
- "translate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.2667, "x": -3.15, "y": 2.35, "curve": 0.25, "c3": 0.75 },
- { "time": 0.6667, "x": 1.69, "y": 1.66, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ],
- "shear": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.2667, "x": -1.4, "curve": 0.25, "c3": 0.75 },
- { "time": 0.4667, "x": 11.25, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ]
- },
- "3shenti5": {
- "rotate": [
- { "angle": 4.77, "curve": 0.277, "c2": 0.12, "c3": 0.754 },
- { "time": 0.4667, "angle": -10.49, "curve": 0.25, "c3": 0.75 },
- { "time": 0.9667, "angle": 5.13, "curve": 0.313, "c3": 0.648, "c4": 0.35 },
- { "time": 1, "angle": 4.77 }
- ]
- },
- "3shenti6": {
- "rotate": [
- { "angle": 4.04, "curve": 0.366, "c2": 0.63, "c3": 0.703 },
- { "time": 0.0667, "angle": 5.13, "curve": 0.273, "c3": 0.62, "c4": 0.41 },
- { "time": 0.5667, "angle": -10.49, "curve": 0.244, "c3": 0.7, "c4": 0.79 },
- { "time": 1, "angle": 4.04 }
- ],
- "translate": [
- { "x": 0.61, "y": 2.03, "curve": 0.366, "c2": 0.63, "c3": 0.703 },
- { "time": 0.0667, "x": 0.64, "y": 2.49, "curve": 0.273, "c3": 0.62, "c4": 0.41 },
- { "time": 0.5667, "x": 0.19, "y": -4.07, "curve": 0.244, "c3": 0.7, "c4": 0.79 },
- { "time": 1, "x": 0.61, "y": 2.03 }
- ]
- },
- "3shenti7": {
- "rotate": [
- { "angle": 0.7, "curve": 0.382, "c2": 0.57, "c3": 0.735 },
- { "time": 0.1667, "angle": 5.13, "curve": 0.313, "c3": 0.648, "c4": 0.35 },
- { "time": 0.6667, "angle": -10.49, "curve": 0.243, "c3": 0.649, "c4": 0.6 },
- { "time": 1, "angle": 0.7 }
- ],
- "translate": [
- { "x": 1.71, "y": 0.68, "curve": 0.382, "c2": 0.57, "c3": 0.735 },
- { "time": 0.1667, "x": 2.18, "y": 2.72, "curve": 0.313, "c3": 0.648, "c4": 0.35 },
- { "time": 0.6667, "x": 0.53, "y": -4.47, "curve": 0.243, "c3": 0.649, "c4": 0.6 },
- { "time": 1, "x": 1.71, "y": 0.68 }
- ]
- },
- "3shenti2": {
- "rotate": [
- { "angle": 4.77, "curve": 0.277, "c2": 0.12, "c3": 0.754 },
- { "time": 0.4667, "angle": -10.49, "curve": 0.25, "c3": 0.75 },
- { "time": 0.9667, "angle": 5.13, "curve": 0.313, "c3": 0.648, "c4": 0.35 },
- { "time": 1, "angle": 4.77 }
- ]
- },
- "3shenti3": {
- "rotate": [
- { "angle": 4.04, "curve": 0.366, "c2": 0.63, "c3": 0.703 },
- { "time": 0.0667, "angle": 5.13, "curve": 0.273, "c3": 0.62, "c4": 0.41 },
- { "time": 0.5667, "angle": -10.49, "curve": 0.244, "c3": 0.7, "c4": 0.79 },
- { "time": 1, "angle": 4.04 }
- ],
- "translate": [
- { "x": 0.52, "y": 2.06, "curve": 0.366, "c2": 0.63, "c3": 0.703 },
- { "time": 0.0667, "x": 0.53, "y": 2.52, "curve": 0.273, "c3": 0.62, "c4": 0.41 },
- { "time": 0.5667, "x": 0.37, "y": -4.06, "curve": 0.244, "c3": 0.7, "c4": 0.79 },
- { "time": 1, "x": 0.52, "y": 2.06 }
- ]
- },
- "3shenti4": {
- "rotate": [
- { "angle": 0.7, "curve": 0.382, "c2": 0.57, "c3": 0.735 },
- { "time": 0.1667, "angle": 5.13, "curve": 0.313, "c3": 0.648, "c4": 0.35 },
- { "time": 0.6667, "angle": -10.49, "curve": 0.243, "c3": 0.649, "c4": 0.6 },
- { "time": 1, "angle": 0.7 }
- ],
- "translate": [
- { "x": 1.68, "y": 0.75, "curve": 0.382, "c2": 0.57, "c3": 0.735 },
- { "time": 0.1667, "x": 2.06, "y": 2.81, "curve": 0.313, "c3": 0.648, "c4": 0.35 },
- { "time": 0.6667, "x": 0.72, "y": -4.44, "curve": 0.243, "c3": 0.649, "c4": 0.6 },
- { "time": 1, "x": 1.68, "y": 0.75 }
- ]
- },
- "3qiang2": {
- "translate": [
- {},
- { "time": 0.2333, "x": 1.63, "y": -4.1 },
- { "time": 0.5, "x": -1.32, "y": -8.97 },
- { "time": 0.7667, "x": -4.77, "y": -0.65 },
- { "time": 1 }
- ]
- }
- }
- },
- "idle_up": {
- "slots": {
- "2body": {
- "attachment": [
- { "name": null }
- ]
- },
- "2er1": {
- "attachment": [
- { "name": null }
- ]
- },
- "2er2": {
- "attachment": [
- { "name": null }
- ]
- },
- "2eye1": {
- "attachment": [
- { "name": null }
- ]
- },
- "2eye2": {
- "attachment": [
- { "name": null }
- ]
- },
- "2fa": {
- "attachment": [
- { "name": null }
- ]
- },
- "2shou1": {
- "attachment": [
- { "name": null }
- ]
- },
- "2shou2": {
- "attachment": [
- { "name": null }
- ]
- },
- "2tou": {
- "attachment": [
- { "name": null }
- ],
- "attachment": [
- { "name": null }
- ]
- },
- "2tui1": {
- "attachment": [
- { "name": null }
- ],
- "attachment": [
- { "name": null }
- ]
- },
- "2tui2": {
- "attachment": [
- { "name": null }
- ],
- "attachment": [
- { "name": null }
- ]
- },
- "2wei": {
- "attachment": [
- { "name": null }
- ]
- },
- "2wuqi": {
- "attachment": [
- { "name": null }
- ]
- },
- "2yy": {
- "attachment": [
- { "name": null }
- ]
- },
- "2zui": {
- "attachment": [
- { "name": null }
- ]
- },
- "3body": {
- "attachment": [
- { "name": null }
- ]
- },
- "3er1": {
- "attachment": [
- { "name": null }
- ]
- },
- "3er2": {
- "attachment": [
- { "name": null }
- ]
- },
- "3eye1": {
- "attachment": [
- { "name": null }
- ]
- },
- "3eye2": {
- "attachment": [
- { "name": null }
- ]
- },
- "3fa": {
- "attachment": [
- { "name": null }
- ]
- },
- "3shou1": {
- "attachment": [
- { "name": null }
- ]
- },
- "3shou2": {
- "attachment": [
- { "name": null }
- ]
- },
- "3shou3": {
- "attachment": [
- { "name": null }
- ]
- },
- "3tou": {
- "attachment": [
- { "name": null }
- ]
- },
- "3tui1": {
- "attachment": [
- { "name": null }
- ],
- "attachment": [
- { "name": null }
- ]
- },
- "3tui2": {
- "attachment": [
- { "name": null }
- ],
- "attachment": [
- { "name": null }
- ]
- },
- "3wei1": {
- "attachment": [
- { "name": null }
- ]
- },
- "3wei2": {
- "attachment": [
- { "name": null }
- ]
- },
- "3wuqi": {
- "attachment": [
- { "name": null }
- ]
- },
- "3yy": {
- "attachment": [
- { "name": null }
- ]
- },
- "3zui": {
- "attachment": [
- { "name": null }
- ]
- }
- },
- "bones": {
- "1shenti1": {
- "rotate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.5, "angle": -2.27, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ],
- "translate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.2667, "x": 2, "y": -2.76, "curve": 0.25, "c3": 0.75 },
- { "time": 0.5, "y": -5.17, "curve": 0.25, "c3": 0.75 },
- { "time": 0.7667, "x": -2, "y": -2.41, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ],
- "scale": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.5, "x": 0.967, "y": 1.017, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ],
- "shear": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.2667, "y": 2.62, "curve": 0.25, "c3": 0.75 },
- { "time": 0.7667, "y": -1.76, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ]
- },
- "1erduo2": {
- "rotate": [
- {},
- { "time": 0.5333, "angle": -12.84 },
- { "time": 1 }
- ],
- "translate": [
- {},
- { "time": 0.5333, "x": 0.9, "y": -0.79 },
- { "time": 1 }
- ]
- },
- "1tui2": {
- "rotate": [
- {},
- { "time": 0.3333, "angle": -3.64 },
- { "time": 0.6667, "angle": 1 },
- { "time": 1 }
- ],
- "translate": [
- {},
- { "time": 0.3333, "x": 1.15, "y": 0.54 },
- { "time": 0.6667, "x": -2.08 },
- { "time": 1 }
- ],
- "scale": [
- {},
- { "time": 0.3333, "y": 1.059 },
- { "time": 0.6667, "y": 1.061 },
- { "time": 1 }
- ]
- },
- "1tui1": {
- "rotate": [
- {},
- { "time": 0.4667, "angle": -0.56 },
- { "time": 1 }
- ],
- "translate": [
- {},
- { "time": 0.4667, "x": 1.34, "y": -0.67 },
- { "time": 1 }
- ],
- "scale": [
- {},
- { "time": 0.4667, "y": 1.06 },
- { "time": 1 }
- ]
- },
- "1tou1": {
- "rotate": [
- { "angle": -1.26, "curve": 0.372, "c2": 0.48, "c3": 0.752 },
- { "time": 0.2667, "angle": -2.58, "curve": 0.25, "c3": 0.75 },
- { "time": 0.7667, "angle": -0.16, "curve": 0.252, "c3": 0.622, "c4": 0.48 },
- { "time": 1, "angle": -1.26 }
- ],
- "translate": [
- { "x": 4.48, "y": 0.43, "curve": 0.372, "c2": 0.48, "c3": 0.752 },
- { "time": 0.2667, "x": 3.66, "y": -0.51, "curve": 0.25, "c3": 0.75 },
- { "time": 0.7667, "x": 5.16, "y": 1.22, "curve": 0.252, "c3": 0.622, "c4": 0.48 },
- { "time": 1, "x": 4.48, "y": 0.43 }
- ],
- "scale": [
- { "x": 0.993, "curve": 0.372, "c2": 0.48, "c3": 0.752 },
- { "time": 0.2667, "x": 0.997, "y": 0.97, "curve": 0.25, "c3": 0.75 },
- { "time": 0.7667, "x": 0.989, "y": 1.026, "curve": 0.252, "c3": 0.622, "c4": 0.48 },
- { "time": 1, "x": 0.993 }
- ],
- "shear": [
- { "y": 0.78, "curve": 0.372, "c2": 0.48, "c3": 0.752 },
- { "time": 0.2667, "y": 0.28, "curve": 0.25, "c3": 0.75 },
- { "time": 0.7667, "y": 1.2, "curve": 0.252, "c3": 0.622, "c4": 0.48 },
- { "time": 1, "y": 0.78 }
- ]
- },
- "1qiang1": {
- "rotate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.3333, "angle": 2.36, "curve": 0.25, "c3": 0.75 },
- { "time": 0.6667, "angle": 2.54, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ],
- "translate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.3333, "x": 4.82, "y": -2.68, "curve": 0.25, "c3": 0.75 },
- { "time": 0.6667, "x": -0.94, "y": -1.73, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ],
- "scale": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.3333, "x": 0.943, "y": 0.999, "curve": 0.25, "c3": 0.75 },
- { "time": 0.6667, "x": 0.98, "y": 0.997, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ]
- },
- "1erduo1": {
- "rotate": [
- {},
- { "time": 0.3333, "angle": -9.9 },
- { "time": 0.7667, "angle": 7.31 },
- { "time": 1 }
- ],
- "translate": [
- {},
- { "time": 0.3333, "x": -1.58, "y": -3.99 },
- { "time": 0.7667, "x": 3.92, "y": 0.17 },
- { "time": 1 }
- ]
- },
- "bone_up": {
- "translate": [
- { "x": -331.56 }
- ]
- },
- "bone_down": {
- "translate": [
- { "x": 440.68, "y": 0.37 }
- ]
- },
- "1shou1": {
- "rotate": [
- { "angle": -3.12, "curve": 0.337, "c2": 0.35, "c3": 0.758 },
- { "time": 0.3667, "angle": 6.59, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8667, "angle": -5.59, "curve": 0.273, "c3": 0.62, "c4": 0.41 },
- { "time": 1, "angle": -3.12 }
- ]
- },
- "1wei2": {
- "rotate": [
- { "angle": -3.22, "curve": 0.32, "c2": 0.29, "c3": 0.757 },
- { "time": 0.4, "curve": 0.25, "c3": 0.75 },
- { "time": 0.9, "angle": -3.7, "curve": 0.284, "c3": 0.625, "c4": 0.38 },
- { "time": 1, "angle": -3.22 }
- ]
- },
- "1wei3": {
- "rotate": [
- { "angle": -5.41, "curve": 0.375, "c2": 0.62, "c3": 0.716 },
- { "time": 0.1, "angle": -6.82, "curve": 0.25, "c3": 0.75 },
- { "time": 0.6, "angle": 3.98, "curve": 0.243, "c3": 0.68, "c4": 0.71 },
- { "time": 1, "angle": -5.41 }
- ],
- "translate": [
- { "x": 0.18, "y": -2.96, "curve": 0.375, "c2": 0.62, "c3": 0.716 },
- { "time": 0.1, "x": 0.21, "y": -3.4, "curve": 0.25, "c3": 0.75 },
- { "time": 0.6, "curve": 0.243, "c3": 0.68, "c4": 0.71 },
- { "time": 1, "x": 0.18, "y": -2.96 }
- ]
- },
- "1wei4": {
- "rotate": [
- { "angle": 1.29, "curve": 0.363, "c2": 0.44, "c3": 0.755 },
- { "time": 0.3, "angle": -9.79, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8, "angle": 7.74, "curve": 0.258, "c3": 0.619, "c4": 0.45 },
- { "time": 1, "angle": 1.29 }
- ],
- "translate": [
- { "x": 0.28, "y": -1.34, "curve": 0.363, "c2": 0.44, "c3": 0.755 },
- { "time": 0.3, "x": 0.77, "y": -3.64, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8, "curve": 0.258, "c3": 0.619, "c4": 0.45 },
- { "time": 1, "x": 0.28, "y": -1.34 }
- ]
- }
- }
- },
- "show": {
- "slots": {
- "1body": {
- "attachment": [
- { "name": null }
- ]
- },
- "1er1": {
- "attachment": [
- { "name": null }
- ]
- },
- "1er2": {
- "attachment": [
- { "name": null }
- ]
- },
- "1fa": {
- "attachment": [
- { "name": null }
- ]
- },
- "1shou1": {
- "attachment": [
- { "name": null }
- ]
- },
- "1shou2": {
- "attachment": [
- { "name": null }
- ]
- },
- "1tou": {
- "attachment": [
- { "name": null }
- ]
- },
- "1tui1": {
- "attachment": [
- { "name": null }
- ],
- "attachment": [
- { "name": null }
- ]
- },
- "1tui2": {
- "attachment": [
- { "name": null }
- ],
- "attachment": [
- { "name": null }
- ]
- },
- "1wei1": {
- "attachment": [
- { "name": null }
- ]
- },
- "1wei2": {
- "attachment": [
- { "name": null }
- ]
- },
- "1wuqi": {
- "attachment": [
- { "name": null }
- ]
- },
- "1yy": {
- "attachment": [
- { "name": null }
- ]
- },
- "2body": {
- "attachment": [
- { "name": null }
- ]
- },
- "2er1": {
- "attachment": [
- { "name": null }
- ]
- },
- "2er2": {
- "attachment": [
- { "name": null }
- ]
- },
- "2eye1": {
- "attachment": [
- { "name": null }
- ]
- },
- "2eye2": {
- "attachment": [
- { "name": null }
- ]
- },
- "2fa": {
- "attachment": [
- { "name": null }
- ]
- },
- "2shou1": {
- "attachment": [
- { "name": null }
- ]
- },
- "2shou2": {
- "attachment": [
- { "name": null }
- ]
- },
- "2tou": {
- "attachment": [
- { "name": null }
- ],
- "attachment": [
- { "name": null }
- ]
- },
- "2tui1": {
- "attachment": [
- { "name": null }
- ],
- "attachment": [
- { "name": null }
- ]
- },
- "2tui2": {
- "attachment": [
- { "name": null }
- ],
- "attachment": [
- { "name": null }
- ]
- },
- "2wei": {
- "attachment": [
- { "name": null }
- ]
- },
- "2wuqi": {
- "attachment": [
- { "name": null }
- ]
- },
- "2yy": {
- "attachment": [
- { "name": null }
- ]
- },
- "2zui": {
- "attachment": [
- { "name": null }
- ]
- },
- "3yy": {
- "color": [
- { "color": "ffffff00" },
- { "time": 0.1333, "color": "ffffffff" }
- ]
- }
- },
- "bones": {
- "bone_right": {
- "translate": [
- { "x": 450.04, "y": 0.09 }
- ]
- },
- "bone_right2": {
- "translate": [
- { "y": 91.88 },
- { "time": 0.1, "y": 12.51 },
- { "time": 0.1333, "y": -3.47 },
- { "time": 0.2 }
- ]
- },
- "3shenti": {
- "rotate": [
- {},
- { "time": 0.1, "angle": 0.88 },
- { "time": 0.1667, "angle": -1.89 },
- { "time": 0.2667, "angle": 4.62 },
- { "time": 0.3333 }
- ],
- "translate": [
- {},
- { "time": 0.1, "y": 20.33 },
- { "time": 0.1667, "x": 4.9, "y": -6.24 },
- { "time": 0.2667, "x": 0.65, "y": 2.73 },
- { "time": 0.3333 }
- ],
- "scale": [
- {},
- { "time": 0.1, "x": 1.081 },
- { "time": 0.1667, "x": 0.947, "y": 1.087 },
- { "time": 0.3333 }
- ]
- },
- "3tou": {
- "rotate": [
- {},
- { "time": 0.0667, "angle": 2.18 },
- { "time": 0.1333, "angle": 1.04 },
- { "time": 0.2, "angle": -9.78 },
- { "time": 0.2667, "angle": -5.8 },
- { "time": 0.3333, "angle": -2.48 }
- ],
- "translate": [
- {},
- { "time": 0.1333, "x": 5.23, "y": -0.15 },
- { "time": 0.2, "x": -1.62, "y": 1.33 },
- { "time": 0.3333, "x": 2.81, "y": -1.47 }
- ],
- "scale": [
- {},
- { "time": 0.1333, "x": 0.963, "y": 1.007 },
- { "time": 0.2, "x": 0.898, "y": 0.959 },
- { "time": 0.3333, "x": 0.999, "y": 0.998 }
- ],
- "shear": [
- {},
- { "time": 0.0667, "y": 2.21 },
- { "time": 0.1333, "y": 7 },
- { "time": 0.2, "y": -1.21 },
- { "time": 0.2667, "y": -5.73 },
- { "time": 0.3333 }
- ]
- },
- "3qiang": {
- "rotate": [
- {},
- { "time": 0.1, "angle": 15.3 },
- { "time": 0.1667, "angle": -10.15 },
- { "time": 0.2667, "angle": 0.55 },
- { "time": 0.3333, "angle": 3.1 }
- ],
- "translate": [
- {},
- { "time": 0.1, "x": -4.24, "y": 21.73 },
- { "time": 0.1667, "x": 1.18, "y": -8.95 },
- { "time": 0.2667, "x": 0.38, "y": 8.33 },
- { "time": 0.3333, "x": -2.29, "y": -0.76 }
- ],
- "scale": [
- { "time": 0.1 },
- { "time": 0.1667, "y": 0.838 },
- { "time": 0.2667, "x": 0.967, "y": 1.108 },
- { "time": 0.3333 }
- ],
- "shear": [
- {},
- { "time": 0.1, "y": 6.23 },
- { "time": 0.1667, "y": 15.59 },
- { "time": 0.2667, "y": 1.83 },
- { "time": 0.3333 }
- ]
- },
- "3tui2": {
- "rotate": [
- {},
- { "time": 0.1, "angle": 14.5 },
- { "time": 0.1333, "angle": 8.98 },
- { "time": 0.2, "angle": 8.23 },
- { "time": 0.2667, "angle": 3.51 },
- { "time": 0.3333 }
- ],
- "translate": [
- {},
- { "time": 0.1, "x": -6.1, "y": -0.76 },
- { "time": 0.1333, "x": -5.12, "y": -1.89 },
- { "time": 0.3333 }
- ],
- "scale": [
- {},
- { "time": 0.1, "x": 1.144 },
- { "time": 0.1333, "x": 0.863, "y": 1.061 },
- { "time": 0.2, "x": 0.89, "y": 1.114 },
- { "time": 0.3333 }
- ],
- "shear": [
- {},
- { "time": 0.1, "y": -6.67 },
- { "time": 0.1333, "y": -2.07 },
- { "time": 0.2, "y": 2.46 },
- { "time": 0.2667, "y": -0.65 },
- { "time": 0.3333 }
- ]
- },
- "3tou5": {
- "translate": [
- { "time": 0.1333 },
- { "time": 0.2, "x": 5.74, "y": 2.02 },
- { "time": 0.3333 }
- ],
- "scale": [
- { "time": 0.1333 },
- { "time": 0.2, "x": 0.12 },
- { "time": 0.3333 }
- ]
- },
- "3erduo": {
- "rotate": [
- {},
- { "time": 0.1, "angle": -12.73 },
- { "time": 0.1667, "angle": 42.11 },
- { "time": 0.2667, "angle": -6.7 },
- { "time": 0.3333 }
- ],
- "translate": [
- {},
- { "time": 0.1667, "x": -3.51, "y": 2.31 },
- { "time": 0.2667, "x": 3.43, "y": -0.53 },
- { "time": 0.3333 }
- ],
- "scale": [
- {},
- { "time": 0.1, "x": 1.232, "y": 0.949 },
- { "time": 0.1667, "x": 1.122, "y": 1.008 },
- { "time": 0.2667, "x": 0.987, "y": 1.078 },
- { "time": 0.3333 }
- ],
- "shear": [
- { "time": 0.1 },
- { "time": 0.1667, "y": -12.06 },
- { "time": 0.3333 }
- ]
- },
- "3tou2": {
- "rotate": [
- {},
- { "time": 0.1, "angle": -17.83 },
- { "time": 0.1667, "angle": 7.8 },
- { "time": 0.2333, "angle": -5.85 },
- { "time": 0.2667, "angle": -6.81 },
- { "time": 0.3333, "angle": -0.7 }
- ],
- "translate": [
- {},
- { "time": 0.1, "x": 8.53, "y": 6.23 },
- { "time": 0.3333, "x": 0.02, "y": 1.44 }
- ],
- "scale": [
- {},
- { "time": 0.1, "x": 1.153 },
- { "time": 0.1667, "x": 1.041, "y": 0.895 },
- { "time": 0.2333, "x": 1.162, "y": 0.937 },
- { "time": 0.2667, "x": 0.956, "y": 0.958 },
- { "time": 0.3333, "x": 1.073, "y": 0.983 }
- ],
- "shear": [
- {},
- { "time": 0.2667, "y": -16.77 },
- { "time": 0.3333 }
- ]
- },
- "3tui1": {
- "rotate": [
- {},
- { "time": 0.1667, "angle": 13.1 },
- { "time": 0.3333 }
- ],
- "translate": [
- {},
- { "time": 0.1, "x": -3.13, "y": 4.31 },
- { "time": 0.1667, "x": 3.63, "y": -0.79 },
- { "time": 0.3333 }
- ],
- "scale": [
- {},
- { "time": 0.1667, "y": 1.09 },
- { "time": 0.3333 }
- ],
- "shear": [
- {},
- { "time": 0.1667, "y": -12.69 },
- { "time": 0.3333 }
- ]
- },
- "bone_down": {
- "translate": [
- { "time": 0.3333, "x": -608.55, "y": -0.51 }
- ]
- },
- "3shenti2": {
- "rotate": [
- { "angle": -9.55, "curve": 0.271, "c3": 0.619, "c4": 0.41 },
- { "time": 0.1, "angle": 2.57, "curve": 0.319, "c2": 0.29, "c3": 0.681, "c4": 0.71 },
- { "time": 0.1667, "angle": 31.79, "curve": 0.381, "c2": 0.59, "c3": 0.729 },
- { "time": 0.2333, "angle": 12.22, "curve": 0.25, "c3": 0.75 },
- { "time": 0.3333, "angle": 4.77 }
- ]
- },
- "3shenti3": {
- "rotate": [
- { "angle": -9.55, "curve": 0.271, "c3": 0.619, "c4": 0.41 },
- { "time": 0.1, "angle": -6.95, "curve": 0.319, "c2": 0.29, "c3": 0.681, "c4": 0.71 },
- { "time": 0.1667, "angle": -0.64, "curve": 0.381, "c2": 0.59, "c3": 0.729 },
- { "time": 0.2333, "angle": 22.27, "curve": 0.25, "c3": 0.75 },
- { "time": 0.3333, "angle": 4.04 }
- ],
- "translate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.3333, "x": 0.52, "y": 2.06 }
- ]
- },
- "3shou1": {
- "rotate": [
- { "angle": -14.79 },
- { "time": 0.1667, "angle": 10.17, "curve": 0.337, "c2": 0.35, "c3": 0.758 },
- { "time": 0.3333, "angle": 5.51 }
- ]
- },
- "3erduo2": {
- "rotate": [
- {},
- { "time": 0.1, "angle": -12.73 },
- { "time": 0.1667, "angle": 42.11 },
- { "time": 0.2667, "angle": -6.7 },
- { "time": 0.3333 }
- ],
- "translate": [
- {},
- { "time": 0.1667, "x": -3.51, "y": 2.31 },
- { "time": 0.2667, "x": 3.43, "y": -0.53 },
- { "time": 0.3333 }
- ],
- "scale": [
- {},
- { "time": 0.1, "x": 1.232, "y": 0.949 },
- { "time": 0.1667, "x": 1.122, "y": 1.008 },
- { "time": 0.2667, "x": 0.987, "y": 1.078 },
- { "time": 0.3333 }
- ],
- "shear": [
- { "time": 0.1 },
- { "time": 0.1667, "y": -12.06 },
- { "time": 0.3333 }
- ]
- },
- "3shenti5": {
- "rotate": [
- { "curve": 0.258, "c3": 0.619, "c4": 0.45 },
- { "time": 0.0667, "angle": -0.67, "curve": 0.363, "c2": 0.44, "c3": 0.755 },
- { "time": 0.1667, "angle": 25.04, "curve": 0.245, "c3": 0.637, "c4": 0.56 },
- { "time": 0.2667, "angle": -5, "curve": 0.381, "c2": 0.55, "c3": 0.742 },
- { "time": 0.3333, "angle": 4.77 }
- ]
- },
- "3shenti6": {
- "rotate": [
- { "curve": 0.258, "c3": 0.619, "c4": 0.45 },
- { "time": 0.0667, "angle": -21.79, "curve": 0.363, "c2": 0.44, "c3": 0.755 },
- { "time": 0.1667, "angle": -14.28, "curve": 0.245, "c3": 0.637, "c4": 0.56 },
- { "time": 0.2667, "angle": 11.47, "curve": 0.381, "c2": 0.55, "c3": 0.742 },
- { "time": 0.3333, "angle": 4.04 }
- ],
- "translate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.3333, "x": 0.61, "y": 2.03 }
- ]
- },
- "3shenti7": {
- "rotate": [
- { "curve": 0.258, "c3": 0.619, "c4": 0.45 },
- { "time": 0.0667, "angle": -9.11, "curve": 0.363, "c2": 0.44, "c3": 0.755 },
- { "time": 0.1667, "angle": -14.19, "curve": 0.245, "c3": 0.637, "c4": 0.56 },
- { "time": 0.2667, "angle": 31.65, "curve": 0.381, "c2": 0.55, "c3": 0.742 },
- { "time": 0.3333, "angle": 0.7 }
- ],
- "translate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.3333, "x": 1.71, "y": 0.68 }
- ]
- },
- "3tou6": {
- "scale": [
- { "time": 0.1333 },
- { "time": 0.2, "x": 0.12 },
- { "time": 0.3333 }
- ]
- },
- "3shenti4": {
- "rotate": [
- { "angle": -9.55, "curve": 0.271, "c3": 0.619, "c4": 0.41 },
- { "time": 0.1, "angle": -11.77, "curve": 0.319, "c2": 0.29, "c3": 0.681, "c4": 0.71 },
- { "time": 0.1667, "angle": -17.08, "curve": 0.381, "c2": 0.59, "c3": 0.729 },
- { "time": 0.2333, "angle": 20.6, "curve": 0.25, "c3": 0.75 },
- { "time": 0.3333, "angle": 0.7 }
- ],
- "translate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.3333, "x": 1.68, "y": 0.75 }
- ]
- }
- }
- }
- }
- }
|