123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950 |
- {
- "skeleton": {
- "hash": "tSQ/hiXHpfwUTJZoIPgWSv0TNrk",
- "spine": "3.8.99",
- "x": -550.04,
- "y": -17.17,
- "width": 1155.15,
- "height": 257.28,
- "images": "./images/",
- "audio": "E:/zhj_spine/小小领主/spine/最终版本/zongxiong"
- },
- "bones": [
- { "name": "root" },
- { "name": "all", "parent": "root" },
- { "name": "bone_left", "parent": "all", "x": 0.68, "y": -48.04, "color": "7efc02ff" },
- { "name": "bone_left2", "parent": "bone_left", "x": -9.06, "y": 97.23, "color": "7efc02ff" },
- { "name": "gun", "parent": "bone_left2", "length": 112.56, "x": 62.24, "y": 55.32, "color": "7efc02ff" },
- { "name": "K2", "parent": "gun", "x": -119.43, "y": -42.02, "color": "fc0101ff" },
- {
- "name": "body",
- "parent": "bone_left2",
- "length": 39.14,
- "rotation": 92.44,
- "x": 4.16,
- "y": 18.3,
- "color": "7efc02ff"
- },
- { "name": "bone_left4", "parent": "gun", "rotation": -0.76, "x": -51.92, "y": -45.73, "color": "fc0c01ff" },
- {
- "name": "head",
- "parent": "body",
- "length": 49.09,
- "rotation": -2.44,
- "x": 45.79,
- "y": -0.28,
- "color": "7efc02ff"
- },
- {
- "name": "ear1",
- "parent": "head",
- "length": 18.25,
- "rotation": -27.25,
- "x": 80.7,
- "y": -32.45,
- "color": "7efc02ff"
- },
- {
- "name": "ear2",
- "parent": "head",
- "length": 23.56,
- "rotation": 47.86,
- "x": 65.73,
- "y": 33.28,
- "color": "7efc02ff"
- },
- {
- "name": "eye1",
- "parent": "head",
- "length": 17.31,
- "rotation": -54.78,
- "x": 56.58,
- "y": -9.15,
- "color": "7efc02ff"
- },
- {
- "name": "eye2",
- "parent": "head",
- "length": 16.85,
- "rotation": 57.09,
- "x": 43.26,
- "y": 40.77,
- "color": "7efc02ff"
- },
- {
- "name": "hair",
- "parent": "head",
- "length": 27,
- "rotation": 33.69,
- "x": 75.71,
- "y": 8.32,
- "color": "7efc02ff"
- },
- {
- "name": "left arm2",
- "parent": "body",
- "length": 32,
- "rotation": 154.73,
- "x": 32.21,
- "y": 42.2,
- "color": "7efc02ff"
- },
- { "name": "left hand", "parent": "left arm2", "x": 33.81, "y": -0.9, "color": "7efc02ff" },
- {
- "name": "left feet",
- "parent": "bone_left2",
- "length": 30.33,
- "rotation": -88.15,
- "x": -24.3,
- "y": -14.74,
- "color": "7efc02ff"
- },
- { "name": "mouth", "parent": "head", "x": 36.61, "y": 19.97, "color": "7efc02ff" },
- {
- "name": "right arm2",
- "parent": "body",
- "length": 31.7,
- "rotation": -160.9,
- "x": 37.5,
- "y": -34.14,
- "color": "7efc02ff"
- },
- {
- "name": "right arm1",
- "parent": "right arm2",
- "length": 26.89,
- "rotation": -65.37,
- "x": 31.13,
- "y": -1.44,
- "color": "7efc02ff"
- },
- {
- "name": "right hand",
- "parent": "right arm1",
- "length": 13.75,
- "rotation": -29.78,
- "x": 26.31,
- "y": -1.63,
- "color": "7efc02ff"
- },
- {
- "name": "right feet",
- "parent": "bone_left2",
- "length": 36.29,
- "rotation": -75.96,
- "x": 36.83,
- "y": -10.34,
- "color": "7efc02ff"
- },
- { "name": "shown", "parent": "all", "x": -2.06, "y": -4.93, "color": "060606ff" },
- { "name": "tx", "parent": "bone_left4", "rotation": 90.32, "x": -129.33, "y": 26.12, "color": "7efc02ff" },
- {
- "name": "weijjin2",
- "parent": "head",
- "length": 28.69,
- "rotation": -150.46,
- "x": 1.66,
- "y": -52.42,
- "color": "7efc02ff"
- },
- { "name": "weijjin3", "parent": "weijjin2", "length": 29.26, "rotation": -14.71, "x": 28.69, "color": "7efc02ff" },
- { "name": "weijjin4", "parent": "weijjin3", "length": 21.63, "rotation": 7.79, "x": 29.26, "color": "7efc02ff" },
- { "name": "bone_back", "parent": "all", "x": -451.91, "y": -52.75, "color": "0342faff" },
- { "name": "body-back", "parent": "bone_back", "x": -1.94, "y": 117.61, "color": "0342faff" },
- {
- "name": "body-back2",
- "parent": "body-back",
- "length": 49.64,
- "rotation": 88.7,
- "x": -3.38,
- "y": 18.05,
- "color": "0342faff"
- },
- {
- "name": "head-back",
- "parent": "body-back2",
- "length": 69.95,
- "rotation": 0.38,
- "x": 57.49,
- "y": 2.43,
- "color": "0342faff"
- },
- {
- "name": "ear1-back",
- "parent": "head-back",
- "length": 41.01,
- "rotation": 32.43,
- "x": 61.47,
- "y": 35.96,
- "color": "0342faff"
- },
- {
- "name": "ear2-back",
- "parent": "head-back",
- "length": 28.89,
- "rotation": -50.42,
- "x": 56.17,
- "y": -55.5,
- "color": "0342faff"
- },
- {
- "name": "hair-back",
- "parent": "head-back",
- "length": 27.1,
- "rotation": 13.81,
- "x": 70.2,
- "y": -15.79,
- "color": "0342faff"
- },
- {
- "name": "weijjin2-back",
- "parent": "body-back2",
- "length": 37.5,
- "rotation": 174.39,
- "x": 38.65,
- "y": 37.14,
- "color": "0342faff"
- },
- { "name": "weijjin2-back2", "parent": "weijjin2-back", "length": 32.1, "rotation": -11.52, "x": 37.5, "color": "0342faff" },
- { "name": "weijjin2-back3", "parent": "weijjin2-back2", "length": 22.22, "rotation": -5.53, "x": 32.1, "color": "0342faff" },
- {
- "name": "right arm2-back",
- "parent": "body-back2",
- "length": 36.49,
- "rotation": 35.38,
- "x": 18.15,
- "y": 44.63,
- "color": "0342faff"
- },
- {
- "name": "left hand-back",
- "parent": "right arm2-back",
- "length": 30.65,
- "rotation": -17.22,
- "x": 42.4,
- "y": -0.78,
- "color": "0342faff"
- },
- {
- "name": "left arm2-back",
- "parent": "body-back2",
- "length": 34.67,
- "rotation": -156.08,
- "x": 18.16,
- "y": -38.53,
- "color": "0342faff"
- },
- {
- "name": "left arm1-back",
- "parent": "left arm2-back",
- "length": 20.62,
- "rotation": 149.95,
- "x": 35.08,
- "y": 5.61,
- "color": "0342faff"
- },
- {
- "name": "right feet-back",
- "parent": "body-back",
- "length": 35.83,
- "rotation": -104.93,
- "x": -24.13,
- "y": -27.68,
- "color": "0342faff"
- },
- {
- "name": "left feet-back",
- "parent": "body-back",
- "length": 34.79,
- "rotation": -84.29,
- "x": 35.88,
- "y": -33.45,
- "color": "0342faff"
- },
- { "name": "gun2", "parent": "body-back", "length": 44.8, "x": 5.59, "y": 50.06, "color": "0342faff" },
- { "name": "K3", "parent": "gun2", "rotation": 6.42, "x": 62.2, "y": 37.35, "color": "fa1503ff" },
- { "name": "tx2", "parent": "K3", "rotation": -5.55, "x": 18.63, "y": 173.87, "color": "fa1503ff" },
- { "name": "bone_front", "parent": "all", "x": 510.69, "y": -55.11, "color": "e203fdff" },
- { "name": "body-front", "parent": "bone_front", "x": -3.38, "y": 102.53, "color": "e203fdff" },
- { "name": "body-front2", "parent": "body-front", "length": 56.51, "rotation": 90.84, "y": 23.27, "color": "e203fdff" },
- {
- "name": "head-front",
- "parent": "body-front2",
- "length": 70.81,
- "rotation": 3.2,
- "x": 68.99,
- "y": 0.65,
- "color": "e203fdff"
- },
- {
- "name": "eye2-front",
- "parent": "head-front",
- "length": 21.61,
- "rotation": 63.34,
- "x": 37.63,
- "y": 25.67,
- "color": "e203fdff"
- },
- {
- "name": "eye1-front",
- "parent": "head-front",
- "length": 24.94,
- "rotation": -64.06,
- "x": 37.67,
- "y": -20.99,
- "color": "e203fdff"
- },
- {
- "name": "ear1-front",
- "parent": "head-front",
- "length": 29.51,
- "rotation": -36.39,
- "x": 60.9,
- "y": -45.95,
- "color": "e203fdff"
- },
- {
- "name": "ear2-front",
- "parent": "head-front",
- "length": 27.03,
- "rotation": 40.96,
- "x": 60.24,
- "y": 39.07,
- "color": "e203fdff"
- },
- {
- "name": "hair-front",
- "parent": "head-front",
- "length": 26.45,
- "rotation": 42.24,
- "x": 70.4,
- "y": -5.8,
- "color": "e203fdff"
- },
- {
- "name": "weijjin2-front",
- "parent": "body-front2",
- "length": 36.9,
- "rotation": -173.08,
- "x": 59.94,
- "y": -49.92,
- "color": "e203fdff"
- },
- { "name": "weijjin2-front2", "parent": "weijjin2-front", "length": 34.88, "rotation": 4.62, "x": 36.9, "color": "e203fdff" },
- { "name": "weijjin2-front3", "parent": "weijjin2-front2", "length": 25.65, "rotation": 12.52, "x": 34.88, "color": "e203fdff" },
- {
- "name": "left arm2-front",
- "parent": "body-front2",
- "length": 38.57,
- "rotation": 156.85,
- "x": 51.77,
- "y": 47.95,
- "color": "e203fdff"
- },
- {
- "name": "left hand-front",
- "parent": "left arm2-front",
- "length": 32.35,
- "rotation": 67.31,
- "x": 47.77,
- "y": -3.15,
- "color": "e203fdff"
- },
- {
- "name": "right arm2-front",
- "parent": "body-front2",
- "length": 26.91,
- "rotation": 161.34,
- "x": 36.6,
- "y": -42.51,
- "color": "e203fdff"
- },
- {
- "name": "right arm1-front",
- "parent": "right arm2-front",
- "length": 25.37,
- "rotation": -46.54,
- "x": 31.27,
- "y": 1.4,
- "color": "e203fdff"
- },
- {
- "name": "right hand-front",
- "parent": "right arm1-front",
- "length": 33.07,
- "rotation": -11.22,
- "x": 29.93,
- "y": -3.2,
- "color": "e203fdff"
- },
- {
- "name": "gun3",
- "parent": "body-front",
- "length": 182.46,
- "rotation": -90,
- "x": -31.14,
- "y": 8.63,
- "color": "e203fdff"
- },
- { "name": "K4", "parent": "gun3", "rotation": 90, "x": -13, "y": 2.93, "color": "fd1603ff" },
- { "name": "K5", "parent": "gun3", "rotation": 90, "x": 0.71, "y": -13.51, "color": "fcf702ff" },
- {
- "name": "left feet-front",
- "parent": "body-front",
- "length": 27.27,
- "rotation": -91.4,
- "x": -31.54,
- "y": -9.35,
- "color": "e203fdff"
- },
- {
- "name": "right feet-front",
- "parent": "body-front",
- "length": 35.99,
- "rotation": -73.91,
- "x": 26.31,
- "y": -1.37,
- "color": "e203fdff"
- },
- { "name": "tx3", "parent": "K4", "rotation": 179.26, "x": -11.74, "y": -116.53, "color": "fd1603ff" }
- ],
- "slots": [
- { "name": "shadow", "bone": "shown", "attachment": "shadow" },
- { "name": "right feet", "bone": "right feet", "attachment": "right feet" },
- { "name": "left feet", "bone": "left feet", "attachment": "left feet" },
- { "name": "left arm2", "bone": "left arm2", "attachment": "left arm2" },
- { "name": "body", "bone": "body", "attachment": "body" },
- { "name": "trousers", "bone": "bone_left2", "attachment": "trousers" },
- { "name": "weijjin2", "bone": "weijjin2", "attachment": "weijjin2" },
- { "name": "right arm2", "bone": "right arm2", "attachment": "right arm2" },
- { "name": "ear2", "bone": "ear2", "attachment": "ear2" },
- { "name": "head", "bone": "head", "attachment": "head" },
- { "name": "hair", "bone": "hair", "attachment": "hair" },
- { "name": "ear1", "bone": "ear1", "attachment": "ear1" },
- { "name": "eye2", "bone": "eye2", "attachment": "eye2" },
- { "name": "mouth", "bone": "mouth", "attachment": "mouth" },
- { "name": "eye1", "bone": "eye1", "attachment": "eye1" },
- { "name": "gun-back", "bone": "K3", "attachment": "gun-back" },
- { "name": "left arm1-back", "bone": "left arm1-back", "attachment": "left arm1-back" },
- { "name": "left arm2-back", "bone": "left arm2-back", "attachment": "left arm2-back" },
- { "name": "left arm1", "bone": "K2", "attachment": "left arm1" },
- { "name": "weijin1", "bone": "body", "attachment": "weijin1" },
- { "name": "gun", "bone": "bone_left4", "attachment": "gun" },
- { "name": "left hand", "bone": "K2", "attachment": "left hand" },
- { "name": "right hand", "bone": "right hand", "attachment": "right hand" },
- { "name": "right arm1", "bone": "right arm1", "attachment": "right arm1" },
- { "name": "tx", "bone": "tx", "blend": "additive" },
- { "name": "left hand-back", "bone": "left hand-back", "attachment": "left hand-back" },
- { "name": "right arm2-back", "bone": "right arm2-back", "attachment": "right arm2-back" },
- { "name": "head-back", "bone": "head-back", "attachment": "head-back" },
- { "name": "ear1-back", "bone": "ear1-back", "attachment": "ear1-back" },
- { "name": "ear2-back", "bone": "ear2-back", "attachment": "ear2-back" },
- { "name": "hair-back", "bone": "hair-back", "attachment": "hair-back" },
- { "name": "left feet-back", "bone": "left feet-back", "attachment": "left feet-back" },
- { "name": "body-back", "bone": "body-back", "attachment": "body-back" },
- { "name": "right feet-back", "bone": "right feet-back", "attachment": "right feet-back" },
- { "name": "trousers-back", "bone": "body-back", "attachment": "trousers-back" },
- { "name": "weijjin2-back", "bone": "weijjin2-back", "attachment": "weijjin2-back" },
- { "name": "weijin1-back", "bone": "body-back2", "attachment": "weijin1-back" },
- { "name": "tx2", "bone": "tx2", "blend": "additive" },
- { "name": "weijjin2-front", "bone": "weijjin2-front", "attachment": "weijjin2-front" },
- { "name": "right feet-front", "bone": "right feet-front", "attachment": "right feet-front" },
- { "name": "body-front", "bone": "body-front", "attachment": "body-front" },
- { "name": "duqi-front", "bone": "body-front2", "attachment": "duqi-front" },
- { "name": "head-front", "bone": "head-front", "attachment": "head-front" },
- { "name": "ear1-front", "bone": "ear1-front", "attachment": "ear1-front" },
- { "name": "ear2-front", "bone": "ear2-front", "attachment": "ear2-front" },
- { "name": "hair-front", "bone": "hair-front", "attachment": "hair-front" },
- { "name": "eye2-front", "bone": "eye2-front", "attachment": "eye2-front" },
- { "name": "eye1-front", "bone": "eye1-front", "attachment": "eye1-front" },
- { "name": "left arm2-front", "bone": "left arm2-front", "attachment": "left arm2-front" },
- { "name": "left feet-front", "bone": "left feet-front", "attachment": "left feet-front" },
- { "name": "mouth-front", "bone": "head-front", "attachment": "mouth-front" },
- { "name": "trousers-front", "bone": "body-front", "attachment": "trousers-front" },
- { "name": "left hand-front", "bone": "left hand-front", "attachment": "left hand-front" },
- { "name": "right hand-front", "bone": "right hand-front", "attachment": "right hand-front" },
- { "name": "right arm1-front", "bone": "right arm1-front", "attachment": "right arm1-front" },
- { "name": "right arm2-front", "bone": "right arm2-front", "attachment": "right arm2-front" },
- { "name": "weijin1-front", "bone": "head-front", "attachment": "weijin1-front" },
- { "name": "gun-front", "bone": "K4", "attachment": "gun-front" },
- { "name": "tx3", "bone": "tx3", "blend": "additive" }
- ],
- "ik": [
- {
- "name": "K1",
- "bones": [ "right arm1", "right hand" ],
- "target": "bone_left4",
- "bendPositive": false
- },
- {
- "name": "K2",
- "order": 1,
- "bones": [ "left arm2", "left hand" ],
- "target": "K2"
- },
- {
- "name": "K3",
- "order": 2,
- "bones": [ "left arm2-back", "left arm1-back" ],
- "target": "K3"
- },
- {
- "name": "K4",
- "order": 3,
- "bones": [ "right arm1-front", "right hand-front" ],
- "target": "K4",
- "bendPositive": false
- },
- {
- "name": "K5",
- "order": 4,
- "bones": [ "left arm2-front", "left hand-front" ],
- "target": "K5"
- }
- ],
- "skins": [
- {
- "name": "default",
- "attachments": {
- "body": {
- "body": {
- "type": "mesh",
- "uvs": [ 0.09584, 0.15079, 0.21482, 0.05061, 0.38138, 0, 0.67485, 0, 0.9009, 0.09279, 0.98022, 0.27734, 1, 0.49879, 0.99079, 0.77977, 0.88639, 0.92651, 0.7104, 1, 0.5523, 1, 0.29876, 0.99789, 0.11382, 0.94634, 0, 0.7996, 0, 0.55371, 0.00345, 0.28403, 0.2391, 0.72821, 0.18242, 0.51802, 0.21523, 0.29196, 0.42404, 0.16109, 0.68057, 0.20471, 0.73128, 0.51802, 0.72233, 0.7877, 0.48668, 0.83132, 0.34648, 0.4387, 0.48071, 0.36731, 0.36438, 0.61717, 0.62688, 0.57751, 0.89832, 0.73614, 0.86253, 0.50215 ],
- "triangles": [ 8, 28, 7, 8, 22, 28, 22, 21, 28, 21, 29, 28, 22, 27, 21, 7, 28, 6, 28, 29, 6, 17, 24, 26, 26, 25, 27, 26, 24, 25, 27, 25, 21, 14, 15, 17, 29, 21, 20, 17, 18, 24, 17, 15, 18, 21, 25, 20, 29, 5, 6, 29, 20, 5, 24, 18, 25, 18, 19, 25, 25, 19, 20, 15, 0, 18, 0, 1, 18, 18, 1, 19, 20, 4, 5, 19, 3, 20, 20, 3, 4, 1, 2, 19, 19, 2, 3, 8, 9, 22, 11, 23, 10, 9, 10, 22, 10, 23, 22, 12, 16, 11, 11, 16, 23, 12, 13, 16, 16, 26, 23, 23, 27, 22, 23, 26, 27, 16, 14, 17, 16, 13, 14, 16, 17, 26 ],
- "vertices": [ 2, 3, -37.59, 51.05, 0.13419, 6, 34.49, 40.32, 0.86581, 2, 3, -23.67, 59.87, 0.04372, 6, 42.71, 26.04, 0.95628, 2, 3, -4.18, 64.32, 0.00126, 6, 46.33, 6.38, 0.99874, 1, 6, 44.87, -27.93, 1, 2, 3, 56.6, 56.15, 0.01587, 6, 35.59, -54.01, 0.98413, 2, 3, 65.88, 39.91, 0.06198, 6, 18.97, -62.59, 0.93802, 2, 3, 68.2, 20.43, 0.16948, 6, -0.6, -64.07, 0.83052, 2, 3, 67.12, -4.3, 0.3473, 6, -25.26, -61.94, 0.6527, 2, 3, 54.91, -17.21, 0.46606, 6, -37.64, -49.19, 0.53394, 2, 3, 34.31, -23.68, 0.67522, 6, -43.23, -28.34, 0.32478, 2, 3, 15.82, -23.68, 0.89452, 6, -42.44, -9.86, 0.10548, 2, 3, -13.85, -23.5, 0.99786, 6, -41, 19.77, 0.00214, 2, 3, -35.49, -18.96, 0.91644, 6, -35.54, 41.19, 0.08356, 2, 3, -48.8, -6.05, 0.79406, 6, -22.08, 53.95, 0.20594, 2, 3, -48.8, 15.59, 0.53072, 6, -0.46, 53.03, 0.46928, 2, 3, -48.4, 39.32, 0.24506, 6, 23.24, 51.62, 0.75494, 2, 3, -20.83, 0.24, 0.81645, 6, -16.99, 25.73, 0.18355, 2, 3, -27.46, 18.73, 0.43099, 6, 1.77, 31.57, 0.56901, 2, 3, -23.62, 38.63, 0.13101, 6, 21.49, 26.89, 0.86899, 2, 3, 0.81, 50.14, 6.1E-4, 6, 31.95, 1.99, 0.99939, 2, 3, 30.82, 46.3, 0.00485, 6, 26.84, -27.83, 0.99515, 2, 3, 36.76, 18.73, 0.16901, 6, -0.96, -32.59, 0.83099, 2, 3, 35.71, -5, 0.5211, 6, -24.62, -30.53, 0.4789, 2, 3, 8.14, -8.84, 0.93771, 6, -27.29, -2.82, 0.06229, 2, 3, -8.26, 25.71, 0.11209, 6, 7.93, 12.1, 0.88791, 1, 6, 13.54, -3.86, 1, 2, 3, -6.17, 10.01, 0.52785, 6, -7.85, 10.67, 0.47215, 2, 3, 24.54, 13.5, 0.23196, 6, -5.67, -20.16, 0.76804, 2, 3, 56.3, -0.46, 0.35191, 6, -20.97, -51.3, 0.64809, 2, 3, 52.11, 20.13, 0.16743, 6, -0.21, -47.99, 0.83257 ],
- "hull": 16,
- "edges": [ 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, 0, 30 ],
- "width": 117,
- "height": 88
- }
- },
- "body-back": {
- "body-back": {
- "type": "mesh",
- "uvs": [ 0.10267, 0.07898, 0.30306, 0, 0.68193, 0, 0.92303, 0.12935, 1, 0.34763, 1, 0.71704, 0.91364, 0.93952, 0.779, 1, 0.51911, 1, 0.35571, 1, 0.15277, 1, 0.00874, 0.85137, 0, 0.61629, 0, 0.26368, 0.20541, 0.68088, 0.57802, 0.78162, 0.8379, 0.69347, 0.85982, 0.37863, 0.67508, 0.21492, 0.22733, 0.36184, 0.36197, 0.22751, 0.42146, 0.4458, 0.66256, 0.38703, 0.38389, 0.73545 ],
- "triangles": [ 15, 21, 22, 23, 14, 21, 16, 22, 17, 14, 19, 21, 14, 12, 19, 12, 13, 19, 19, 20, 21, 21, 20, 22, 22, 18, 17, 22, 20, 18, 17, 3, 4, 17, 18, 3, 20, 19, 0, 19, 13, 0, 0, 1, 20, 18, 20, 2, 18, 2, 3, 2, 20, 1, 16, 6, 7, 7, 8, 15, 15, 8, 23, 8, 9, 23, 9, 10, 23, 10, 14, 23, 10, 11, 14, 7, 15, 16, 6, 16, 5, 11, 12, 14, 23, 21, 15, 15, 22, 16, 16, 17, 5, 17, 4, 5 ],
- "vertices": [ 2, 28, -41.68, 56.67, 0.00564, 29, 37.75, 39.16, 0.99436, 1, 29, 45.49, 14.88, 1, 2, 28, 28.99, 63.86, 0.08452, 29, 46.54, -31.33, 0.91548, 2, 28, 58.41, 52.09, 0.27083, 29, 35.44, -61, 0.72917, 2, 28, 67.8, 32.23, 0.41749, 29, 15.79, -70.84, 0.58251, 2, 28, 67.8, -1.39, 0.71756, 29, -17.82, -71.6, 0.28244, 2, 28, 57.26, -21.64, 0.85601, 29, -38.3, -61.53, 0.14399, 2, 28, 40.84, -27.14, 0.9224, 29, -44.17, -45.23, 0.0776, 1, 28, 9.13, -27.14, 1, 2, 28, -10.81, -27.14, 0.97883, 29, -45.34, 6.39, 0.02117, 2, 28, -35.57, -27.14, 0.81159, 29, -45.91, 31.15, 0.18841, 2, 28, -53.14, -13.61, 0.63261, 29, -32.78, 49.02, 0.36739, 2, 28, -54.2, 7.78, 0.38485, 29, -11.42, 50.57, 0.61515, 2, 28, -54.2, 39.87, 0.0587, 29, 20.66, 51.3, 0.9413, 2, 28, -29.14, 1.9, 0.53623, 29, -16.73, 25.38, 0.46377, 2, 28, 16.32, -7.27, 0.93909, 29, -24.86, -20.27, 0.06091, 2, 28, 48.02, 0.76, 0.73135, 29, -16.12, -51.79, 0.26865, 2, 28, 50.7, 29.41, 0.399, 29, 12.58, -53.81, 0.601, 2, 28, 28.16, 44.3, 0.14001, 29, 26.97, -30.94, 0.85999, 2, 28, -26.47, 30.93, 0.04901, 29, 12.36, 23.37, 0.95099, 1, 29, 24.95, 7.23, 1, 2, 28, -2.78, 23.29, 0.00129, 29, 5.26, -0.48, 0.99871, 2, 28, 26.63, 28.64, 0.26956, 29, 11.27, -29.77, 0.73044, 2, 28, -7.37, -3.06, 0.91642, 29, -21.2, 3.5, 0.08358 ],
- "hull": 14,
- "edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 20, 22, 22, 24, 24, 26, 0, 26, 16, 18, 18, 20 ],
- "width": 122,
- "height": 91
- }
- },
- "body-front": {
- "body-front": { "x": 0.25, "y": 40.77, "width": 122, "height": 91 }
- },
- "duqi-front": {
- "duqi-front": { "x": -3.05, "y": -1.43, "rotation": -90.84, "width": 21, "height": 26 }
- },
- "ear1": {
- "ear1": {
- "type": "mesh",
- "uvs": [ 0.00868, 0.55296, 0.05955, 0.71942, 0.19096, 0.87161, 0.35205, 0.98576, 0.77172, 1, 0.92433, 0.91442, 0.99215, 0.72893, 1, 0.43405, 0.91161, 0.16296, 0.74204, 0.05357, 0.55128, 0, 0.28422, 0, 0.08074, 0.12491, 2.0E-4, 0.33418, 0.21215, 0.61479, 0.27574, 0.36271, 0.47922, 0.80979, 0.31813, 0.71942, 0.69965, 0.61003, 0.84378, 0.36271, 0.46226, 0.44832, 0.62335, 0.22003, 0.33933, 0.16771, 0.72933, 0.87637 ],
- "triangles": [ 2, 17, 3, 3, 16, 4, 2, 1, 14, 1, 0, 14, 2, 14, 17, 3, 17, 16, 16, 23, 4, 4, 23, 5, 5, 23, 6, 16, 18, 23, 23, 18, 6, 18, 16, 20, 6, 18, 7, 7, 18, 19, 16, 17, 20, 17, 14, 20, 14, 15, 20, 14, 0, 15, 18, 20, 19, 19, 20, 21, 0, 13, 15, 15, 22, 20, 20, 22, 21, 19, 8, 7, 13, 12, 15, 15, 12, 22, 19, 21, 8, 8, 21, 9, 22, 10, 21, 21, 10, 9, 12, 11, 22, 22, 11, 10 ],
- "vertices": [ 2, 9, -4.4, 19.24, 0.168, 8, 85.6, -13.33, 0.832, 2, 9, -9.66, 14.3, 0.192, 8, 78.66, -15.31, 0.808, 2, 9, -12.87, 6.23, 0.096, 8, 72.11, -21.02, 0.904, 2, 9, -14.1, -2.45, 0.096, 8, 67.05, -28.17, 0.904, 2, 9, -6.71, -20.29, 0.224, 8, 65.45, -47.42, 0.776, 1, 9, -0.63, -25.26, 1, 1, 9, 7.58, -24.98, 1, 1, 9, 18.76, -20.35, 1, 1, 9, 27.23, -12.08, 1, 1, 9, 28.11, -3.13, 1, 1, 9, 26.52, 5.78, 1, 1, 9, 21.47, 16.98, 1, 1, 9, 12.96, 23.41, 1, 1, 9, 3.62, 23.27, 1, 2, 9, -2.87, 9.66, 0.472, 8, 82.57, -22.55, 0.528, 1, 9, 7.75, 11.23, 1, 2, 9, -5.12, -4.82, 0.448, 8, 73.94, -34.39, 0.552, 2, 9, -4.78, 3.45, 0.456, 8, 78.03, -27.19, 0.544, 1, 9, 6.51, -10.71, 1, 1, 9, 18.48, -12.6, 1, 1, 9, 8.07, 1.97, 1, 1, 9, 19.65, -0.95, 1, 1, 9, 16.24, 11.85, 1, 2, 9, -2.89, -16.44, 0.416, 8, 70.61, -45.74, 0.584 ],
- "hull": 14,
- "edges": [ 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, 0, 26 ],
- "width": 46,
- "height": 41
- }
- },
- "ear1-back": {
- "ear1-back": {
- "type": "mesh",
- "uvs": [ 0.15841, 1, 0, 0.78155, 0, 0.42155, 0.07591, 0.14155, 0.30278, 0, 0.61216, 0, 0.72216, 0.19155, 0.78403, 0.42155, 0.72903, 0.65155, 0.62591, 0.85155, 0.41278, 0.93155, 0.30966, 0.66156, 0.46091, 0.51156, 0.56403, 0.26156, 0.21341, 0.36156, 0.37153, 0.17156 ],
- "triangles": [ 0, 1, 11, 15, 4, 5, 3, 4, 15, 13, 15, 5, 6, 13, 5, 14, 3, 15, 2, 3, 14, 13, 6, 7, 12, 15, 13, 12, 13, 7, 14, 15, 12, 11, 14, 12, 11, 1, 2, 11, 2, 14, 11, 12, 9, 10, 0, 11, 10, 11, 9, 9, 12, 8, 8, 12, 7 ],
- "vertices": [ 1, 30, 42.03, 56.79, 1, 2, 30, 51.48, 67.09, 0.256, 31, 8.26, 31.62, 0.744, 1, 31, 21.76, 23.35, 1, 1, 31, 29.73, 12.77, 1, 1, 31, 27.45, -2.87, 1, 1, 31, 17.11, -19.75, 1, 2, 30, 78.18, 21.29, 0.144, 31, 6.24, -21.35, 0.856, 1, 30, 68.13, 17.17, 1, 1, 30, 57.95, 20.53, 1, 2, 30, 49.05, 26.98, 0.984, 31, -15.3, -0.92, 0.016, 1, 30, 45.31, 40.56, 1, 2, 30, 57.08, 47.35, 0.136, 31, 2.4, 11.97, 0.864, 2, 30, 63.83, 37.78, 0.264, 31, 2.97, 0.27, 0.736, 2, 30, 74.94, 31.36, 0.136, 31, 8.9, -11.11, 0.864, 1, 31, 16.88, 10.32, 1, 1, 31, 18.72, -2.68, 1 ],
- "hull": 11,
- "edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 0, 20 ],
- "width": 64,
- "height": 44
- }
- },
- "ear1-front": {
- "ear1-front": { "x": 10.02, "y": -3.28, "rotation": -57.65, "width": 48, "height": 44 }
- },
- "ear2": {
- "ear2": { "x": 9.02, "y": 2.73, "rotation": -137.86, "width": 39, "height": 43 }
- },
- "ear2-back": {
- "ear2-back": {
- "type": "mesh",
- "uvs": [ 0, 0.21165, 0.11573, 0.07076, 0.25255, 3.1E-4, 0.46462, 0, 0.71773, 0.05155, 0.86823, 0.15402, 0.96401, 0.34614, 0.99821, 0.53827, 0.94348, 0.78804, 0.76562, 0.94814, 0.56723, 1, 0.33464, 0.91612, 0.11573, 0.7304, 0, 0.51906, 0.17731, 0.35254, 0.35517, 0.18603, 0.53987, 0.32052, 0.30728, 0.55748, 0.77246, 0.4422, 0.61512, 0.63433, 0.45094, 0.79443 ],
- "triangles": [ 15, 2, 3, 16, 3, 4, 16, 4, 5, 15, 3, 16, 18, 16, 5, 15, 14, 1, 15, 1, 2, 0, 1, 14, 6, 18, 5, 13, 0, 14, 18, 6, 7, 16, 17, 14, 16, 14, 15, 13, 14, 17, 19, 16, 18, 17, 16, 19, 8, 18, 7, 19, 18, 8, 20, 17, 19, 12, 17, 20, 9, 19, 8, 20, 19, 9, 10, 20, 9, 11, 12, 20, 12, 13, 17, 11, 20, 10 ],
- "vertices": [ 2, 30, 72.94, -40.94, 0.152, 32, -0.54, 22.19, 0.848, 1, 32, 7.58, 24.18, 1, 1, 32, 14.35, 23.01, 1, 1, 32, 21.64, 17.19, 1, 1, 32, 28.82, 8.34, 1, 1, 32, 30.99, 0.45, 1, 1, 32, 28.64, -9.24, 1, 1, 32, 24.17, -17.23, 1, 1, 32, 14.96, -24.89, 1, 2, 30, 38.87, -75.19, 0.16, 32, 4.14, -25.88, 0.84, 2, 30, 36.29, -66.5, 0.896, 32, -4.19, -22.33, 0.104, 1, 30, 40.07, -56.2, 1, 1, 30, 48.64, -46.43, 1, 1, 30, 58.49, -41.18, 1, 2, 30, 66.44, -48.85, 0.16, 32, 1.42, 12.15, 0.84, 1, 32, 12.42, 13.37, 1, 1, 32, 14.82, 3.36, 1, 2, 30, 56.9, -54.73, 0.096, 32, -0.13, 1.06, 0.904, 1, 32, 19.23, -7.5, 1, 1, 32, 8.19, -10.23, 1, 2, 30, 45.87, -61.23, 0.176, 32, -2.15, -11.59, 0.824 ],
- "hull": 14,
- "edges": [ 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, 0, 26 ],
- "width": 44,
- "height": 47
- }
- },
- "ear2-front": {
- "ear2-front": { "x": 11.9, "y": 1.83, "rotation": -135, "width": 44, "height": 47 }
- },
- "eye1": {
- "eye1": { "x": 1.9, "y": -1.73, "rotation": -35.22, "width": 26, "height": 22 }
- },
- "eye1-front": {
- "eye1-front": { "x": 9.58, "y": -2.74, "rotation": -29.98, "width": 27, "height": 23 }
- },
- "eye2": {
- "eye2": { "x": 6.54, "y": 0.07, "rotation": -147.09, "width": 18, "height": 15 }
- },
- "eye2-front": {
- "eye2-front": { "x": 7.77, "y": 0.46, "rotation": -157.38, "width": 22, "height": 18 }
- },
- "gun": {
- "gun": { "x": -34.73, "y": 18.92, "width": 154, "height": 71 }
- },
- "gun-back": {
- "gun-back": { "x": -0.57, "y": 20.24, "width": 54, "height": 124 }
- },
- "gun-front": {
- "gun-front": { "x": -4.54, "y": 11.31, "width": 64, "height": 103 }
- },
- "hair": {
- "hair": {
- "type": "mesh",
- "uvs": [ 0.15615, 0, 0.40347, 0.02315, 0.54362, 0.13581, 0.69201, 0.03119, 0.90635, 0.04729, 0.98054, 0.24848, 1, 0.47381, 1, 0.74743, 0.8981, 0.91643, 0.74971, 1, 0.48591, 1, 0.14791, 0.94862, 0, 0.76353, 0, 0.57843, 0, 0.26457, 0.38699, 0.77158, 0.30455, 0.54624, 0.2386, 0.24043, 0.5766, 0.32091, 0.68377, 0.49796, 0.75796, 0.72329 ],
- "triangles": [ 9, 10, 20, 8, 9, 20, 8, 20, 7, 20, 6, 7, 17, 0, 1, 17, 1, 2, 14, 0, 17, 18, 2, 3, 17, 2, 18, 18, 5, 19, 3, 5, 18, 4, 5, 3, 19, 5, 6, 16, 17, 18, 16, 18, 19, 13, 14, 17, 13, 17, 16, 20, 19, 6, 12, 13, 16, 15, 16, 19, 15, 19, 20, 12, 16, 15, 11, 12, 15, 10, 15, 20, 11, 15, 10 ],
- "vertices": [ 1, 13, 37.94, 1.84, 1, 1, 13, 31.5, -6.06, 1, 1, 13, 24.38, -8.21, 1, 1, 13, 24.66, -15.71, 1, 1, 13, 19.22, -22.65, 1, 1, 13, 10.5, -20.49, 1, 2, 13, 2.19, -15.91, 0.216, 8, 86.36, -3.7, 0.784, 2, 13, -7.37, -9.53, 0.024, 8, 74.86, -3.7, 0.976, 2, 13, -10.96, -2.12, 0.104, 8, 67.77, 0.48, 0.896, 2, 13, -10.51, 4.89, 0.08, 8, 64.26, 6.56, 0.92, 2, 13, -4.51, 13.89, 0.24, 8, 64.26, 17.38, 0.76, 1, 13, 4.97, 24.22, 1, 1, 13, 14.81, 24.96, 1, 1, 13, 21.27, 20.64, 1, 1, 13, 32.24, 13.33, 1, 1, 13, 5.72, 11.94, 1, 1, 13, 15.47, 9.51, 1, 1, 13, 27.66, 4.63, 1, 1, 13, 17.16, -5.02, 1, 1, 13, 8.54, -4.56, 1, 1, 13, -1.03, -1.84, 1 ],
- "hull": 15,
- "edges": [ 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, 0, 28 ],
- "width": 41,
- "height": 42
- }
- },
- "hair-back": {
- "hair-back": {
- "type": "mesh",
- "uvs": [ 0, 0.53671, 0.11716, 0.39687, 0.14295, 0.21817, 0.20742, 0.01617, 0.37504, 0.03171, 0.48463, 0.14048, 0.58133, 0.02394, 0.76829, 0, 0.91657, 0.1871, 0.98748, 0.45125, 1, 0.70764, 0.96814, 0.90187, 0.77474, 1, 0.59423, 1, 0.32346, 0.96402, 0.18163, 0.83971, 0, 0.73871, 0.27189, 0.65326, 0.42017, 0.34249, 0.62647, 0.7698, 0.63291, 0.38134, 0.77474, 0.30364, 0.81343, 0.69987, 0.80053, 0.52118, 0.62002, 0.55226, 0.42662, 0.50564, 0.43951, 0.73872 ],
- "triangles": [ 13, 26, 19, 14, 15, 26, 15, 17, 26, 15, 16, 17, 16, 0, 17, 0, 1, 17, 14, 26, 13, 13, 19, 12, 12, 22, 11, 11, 22, 10, 12, 19, 22, 17, 25, 26, 17, 1, 25, 26, 24, 19, 19, 24, 22, 26, 25, 24, 10, 23, 9, 24, 23, 22, 10, 22, 23, 1, 18, 25, 24, 20, 23, 24, 25, 20, 18, 2, 5, 2, 3, 4, 20, 21, 23, 23, 21, 9, 25, 18, 20, 21, 8, 9, 21, 20, 5, 20, 18, 5, 5, 2, 4, 5, 6, 21, 6, 7, 21, 21, 7, 8, 18, 1, 2 ],
- "vertices": [ 2, 33, 2.24, 26.54, 0.21035, 30, 73.11, 10.68, 0.78965, 1, 33, 7.91, 21.26, 1, 1, 33, 14.93, 20.34, 1, 1, 33, 22.92, 17.64, 1, 1, 33, 22.65, 9.75, 1, 1, 33, 18.62, 4.42, 1, 1, 33, 23.35, 0.07, 1, 1, 33, 24.65, -8.67, 1, 1, 33, 17.65, -15.93, 1, 1, 33, 7.5, -19.69, 1, 2, 33, -2.47, -20.7, 0.176, 30, 67.2, -36.42, 0.824, 1, 30, 59.61, -35.04, 1, 1, 30, 55.63, -26.02, 1, 2, 33, -14.65, -2.12, 0.01215, 30, 55.5, -17.53, 0.98785, 1, 30, 56.69, -4.79, 1, 1, 30, 61.43, 1.96, 1, 1, 30, 65.23, 10.56, 1, 2, 33, -1.77, 13.58, 0.06979, 30, 68.77, -2.17, 0.93021, 1, 33, 10.63, 7.12, 1, 2, 33, -5.62, -3.26, 0.6769, 30, 64.5, -18.9, 0.3231, 1, 33, 9.53, -2.93, 1, 1, 33, 12.83, -9.46, 1, 2, 33, -2.53, -11.92, 0.424, 30, 67.37, -27.65, 0.576, 1, 33, 4.41, -11.03, 1, 1, 33, 2.84, -2.6, 1, 1, 33, 4.28, 6.56, 1, 2, 33, -4.78, 5.57, 0.55921, 30, 65.57, -10.1, 0.44079 ],
- "hull": 17,
- "edges": [ 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, 0, 32 ],
- "width": 47,
- "height": 39
- }
- },
- "hair-front": {
- "hair-front": { "x": 9.99, "y": 0.82, "rotation": -136.27, "width": 47, "height": 47 }
- },
- "head": {
- "head": { "x": 33.26, "y": -7.2, "rotation": -90, "width": 133, "height": 122 }
- },
- "head-back": {
- "head-back": { "x": 9.75, "y": -7.33, "rotation": 92.01, "width": 138, "height": 126 }
- },
- "head-front": {
- "head-front": { "x": 23.62, "y": -2.5, "rotation": -94.04, "width": 138, "height": 126 }
- },
- "left arm1": {
- "left arm1": { "x": 0.37, "y": 3.1, "rotation": -0.76, "width": 45, "height": 29 }
- },
- "left arm1-back": {
- "left arm1-back": { "x": 17.32, "y": 0.14, "rotation": -118.88, "width": 45, "height": 45 }
- },
- "left arm2": {
- "left arm2": {
- "type": "mesh",
- "uvs": [ 0.15222, 0.29437, 0.2961, 0.10771, 0.48377, 0, 0.65894, 0.0089, 0.8904, 0.08576, 1, 0.19555, 1, 0.35476, 0.93419, 0.54141, 0.85912, 0.75002, 0.70898, 1, 0.49003, 1, 0.14596, 0.9202, 0, 0.75002, 0.03961, 0.492, 0.30861, 0.68414, 0.45249, 0.45357, 0.57761, 0.20653, 0.57761, 0.79943, 0.70273, 0.50298, 0.84036, 0.28888 ],
- "triangles": [ 11, 14, 10, 11, 12, 14, 12, 13, 14, 10, 17, 9, 9, 17, 8, 10, 14, 17, 14, 15, 17, 17, 18, 8, 17, 15, 18, 8, 18, 7, 14, 13, 15, 15, 13, 0, 18, 19, 7, 7, 19, 6, 15, 16, 18, 18, 16, 19, 0, 1, 15, 15, 1, 16, 19, 5, 6, 16, 3, 19, 19, 4, 5, 19, 3, 4, 1, 2, 16, 16, 2, 3 ],
- "vertices": [ 2, 14, 15.82, -14.91, 0.91711, 15, -17.62, -14.49, 0.08289, 2, 14, 4.99, -12.76, 0.99738, 15, -28.5, -12.62, 0.00262, 1, 14, -3.01, -7.37, 1, 1, 14, -5.53, -0.26, 1, 1, 14, -5.92, 10.37, 1, 1, 14, -2.79, 16.8, 1, 1, 14, 4.4, 19.83, 1, 1, 14, 13.93, 20.77, 1, 2, 14, 24.6, 21.76, 0.99035, 15, -9.81, 22.41, 0.00965, 2, 14, 38.39, 20.57, 0.85148, 15, 4.01, 21.58, 0.14852, 2, 14, 42.05, 11.89, 0.61649, 15, 7.89, 13, 0.38351, 2, 14, 44.19, -3.26, 2.5E-4, 15, 10.43, -2.09, 0.99975, 2, 14, 38.94, -12.28, 0.02239, 15, 5.42, -11.25, 0.97761, 2, 14, 26.62, -15.62, 0.5656, 15, -6.8, -14.91, 0.4344, 2, 14, 30.81, -1.3, 0.85064, 15, -2.99, -0.49, 0.14936, 1, 14, 18, 0.01, 1, 1, 14, 4.75, 0.27, 1, 2, 14, 31.53, 11.55, 0.90071, 15, -2.61, 12.38, 0.09929, 1, 14, 16.05, 10.87, 1, 1, 14, 4.09, 12.25, 1 ],
- "hull": 14,
- "edges": [ 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, 0, 26 ],
- "width": 43,
- "height": 49
- }
- },
- "left arm2-back": {
- "left arm2-back": {
- "type": "mesh",
- "uvs": [ 0.0266, 0.143, 0.089, 0.04616, 0.2042, 0, 0.4106, 0, 0.6362, 0.10089, 0.8474, 0.33668, 1, 0.58931, 0.9578, 0.81247, 0.7658, 0.97668, 0.521, 1, 0.3386, 0.94721, 0.2426, 0.77458, 0.1226, 0.54721, 0.0218, 0.30721 ],
- "triangles": [ 8, 9, 11, 8, 6, 7, 11, 9, 10, 5, 6, 8, 12, 5, 11, 5, 8, 11, 5, 12, 4, 4, 12, 3, 2, 3, 13, 3, 12, 13, 2, 13, 0, 2, 0, 1 ],
- "vertices": [ 1, 40, 18.66, 5.78, 1, 2, 40, 21.33, 0.03, 0.99989, 39, 56.14, 9, 1.1E-4, 2, 40, 20.12, -6.18, 0.93142, 39, 55.92, 2.68, 0.06858, 2, 40, 14.11, -14.58, 0.55967, 39, 51.31, -6.56, 0.44033, 2, 40, 2.87, -20.4, 0.07568, 39, 41.13, -14.08, 0.92432, 1, 39, 24.39, -17.53, 1, 1, 39, 8.1, -17.93, 1, 1, 39, -2.34, -10.37, 1, 2, 40, -41.5, 3.39, 2.6E-4, 39, -6.43, 2.4, 0.99974, 2, 40, -35.45, 14.11, 0.02923, 39, -2.16, 13.95, 0.97077, 2, 40, -27.7, 19.78, 0.09209, 39, 4.61, 20.77, 0.90791, 2, 40, -16.9, 17.95, 0.27887, 39, 15.56, 20.67, 0.72113, 2, 40, -2.87, 15.29, 0.82492, 39, 29.83, 20.25, 0.17508, 1, 40, 11.18, 11.42, 1 ],
- "hull": 14,
- "edges": [ 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, 0, 26 ],
- "width": 50,
- "height": 57
- }
- },
- "left arm2-front": {
- "left arm2-front": { "x": 25.68, "y": 1.66, "rotation": 112.31, "width": 50, "height": 57 }
- },
- "left feet": {
- "left feet": { "x": 16.92, "y": -1.05, "rotation": 88.15, "width": 40, "height": 44 }
- },
- "left feet-back": {
- "left feet-back": { "x": 18.99, "y": 0.6, "rotation": 84.29, "width": 43, "height": 49 }
- },
- "left feet-front": {
- "left feet-front": { "x": 16.31, "y": -0.89, "rotation": 91.4, "width": 43, "height": 49 }
- },
- "left hand": {
- "left hand": { "x": -3.47, "y": 6.06, "rotation": -2.94, "width": 52, "height": 34 }
- },
- "left hand-back": {
- "left hand-back": { "x": 13.27, "y": -4.57, "rotation": -106.86, "width": 52, "height": 55 }
- },
- "left hand-front": {
- "left hand-front": { "x": 15.24, "y": 1.19, "rotation": 45, "width": 62, "height": 65 }
- },
- "mouth": {
- "mouth": { "x": -0.85, "y": 0.33, "rotation": -90, "width": 50, "height": 39 }
- },
- "mouth-front": {
- "mouth-front": { "x": 19.32, "y": 5.9, "rotation": -94.04, "width": 54, "height": 41 }
- },
- "right arm1": {
- "right arm1": { "x": 13.13, "y": 2.81, "rotation": 133.83, "width": 41, "height": 40 }
- },
- "right arm1-front": {
- "right arm1-front": {
- "type": "mesh",
- "uvs": [ 0.06065, 0.13552, 0.21345, 0.06747, 0.46248, 0, 0.68886, 0.09221, 0.90958, 0.20975, 1, 0.37059, 0.94354, 0.61803, 0.77375, 0.717, 0.63792, 0.82835, 0.47945, 0.94589, 0.21911, 0.98919, 0.10592, 0.84072, 0.02103, 0.56854, 0, 0.27779, 0.14716, 0.47843, 0.33489, 0.36442, 0.51289, 0.22722, 0.26052, 0.76989, 0.43539, 0.61445, 0.64224, 0.47763 ],
- "triangles": [ 12, 13, 14, 12, 14, 17, 1, 2, 16, 15, 1, 16, 0, 1, 15, 13, 0, 15, 19, 16, 3, 19, 3, 4, 19, 4, 5, 15, 16, 19, 14, 13, 15, 18, 15, 19, 14, 15, 18, 6, 19, 5, 7, 19, 6, 18, 19, 7, 17, 14, 18, 8, 18, 7, 11, 12, 17, 9, 18, 8, 17, 18, 9, 10, 11, 17, 10, 17, 9, 16, 2, 3 ],
- "vertices": [ 3, 60, 30.69, -25.49, 0.1438, 61, 18.84, -19.2, 0.47675, 62, -2.89, -19.25, 0.37945, 3, 60, 26.89, -18.73, 0.28442, 61, 11.34, -17.19, 0.51551, 62, -10.49, -20.76, 0.20006, 3, 60, 22.55, -7.48, 0.79829, 61, 0.26, -12.44, 0.17817, 62, -22.53, -21.4, 0.02354, 3, 60, 25.15, 3.57, 0.70642, 61, -5.83, -2.86, 0.29358, 62, -32.23, -15.49, 0, 2, 60, 28.86, 14.5, 0.02886, 61, -11.05, 7.43, 0.97114, 2, 60, 35.19, 19.58, 2.0E-5, 61, -10.27, 15.51, 0.99998, 1, 61, -1.73, 22.39, 1, 1, 61, 7.2, 20.97, 1, 1, 61, 15.18, 20.93, 1, 2, 61, 24.17, 20.47, 0.99387, 62, -15.62, 18.69, 0.00613, 3, 60, 66.18, -13.5, 0, 61, 35.05, 14.57, 0.89457, 62, -3.25, 18.21, 0.10543, 3, 60, 60.51, -19.58, 0, 61, 35.44, 6.27, 0.71456, 62, 0.76, 10.93, 0.28544, 3, 60, 49.4, -25, 0.00117, 61, 31.56, -5.47, 0.00121, 62, 2.47, -1.32, 0.99763, 3, 60, 37.12, -27.55, 0.07849, 61, 24.8, -16.04, 0.39032, 62, 1.07, -13.78, 0.53119, 3, 60, 44.81, -19.61, 0.01109, 61, 24.49, -4.98, 0.55109, 62, -4.09, -4, 0.43782, 3, 60, 38.84, -11.47, 0.03759, 61, 14.5, -3.57, 0.92231, 62, -13.68, -7.14, 0.0401, 3, 60, 31.94, -3.9, 0.23887, 61, 4.27, -3.22, 0.75676, 62, -23.01, -11.35, 0.00437, 3, 60, 56.58, -12.75, 0, 61, 27.81, 8.22, 0.90924, 62, -6.95, 9.31, 0.09076, 1, 61, 17.22, 7.86, 1, 1, 61, 5.92, 9.03, 1 ],
- "hull": 14,
- "edges": [ 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, 0, 26 ],
- "width": 47,
- "height": 43
- }
- },
- "right arm2": {
- "right arm2": { "x": 15.8, "y": -1.91, "rotation": 68.46, "width": 39, "height": 43 }
- },
- "right arm2-back": {
- "right arm2-back": {
- "type": "mesh",
- "uvs": [ 0.05492, 0.08884, 0.20158, 8.4E-4, 0.37413, 0, 0.60276, 0.10351, 0.82276, 0.26851, 1, 0.47751, 0.95648, 0.75251, 0.81413, 0.92484, 0.69335, 1, 0.51648, 0.96517, 0.29217, 0.78184, 0.08943, 0.54351, 0, 0.30151, 0.71491, 0.76718, 0.84864, 0.54351, 0.3957, 0.62418, 0.66746, 0.40418, 0.22746, 0.37118, 0.49491, 0.22084 ],
- "triangles": [ 0, 1, 17, 17, 1, 2, 7, 8, 13, 10, 15, 9, 8, 9, 13, 9, 15, 13, 7, 13, 6, 10, 11, 15, 15, 16, 13, 13, 14, 6, 13, 16, 14, 6, 14, 5, 11, 17, 15, 15, 18, 16, 15, 17, 18, 5, 14, 4, 11, 12, 17, 14, 16, 4, 18, 3, 16, 16, 3, 4, 12, 0, 17, 17, 2, 18, 18, 2, 3 ],
- "vertices": [ 2, 37, 48.41, 5.63, 0.07708, 38, 3.84, 7.89, 0.92292, 2, 37, 48.59, -3.53, 0.00121, 38, 6.72, -0.8, 0.99879, 2, 37, 43.7, -10.85, 0.29789, 38, 4.22, -9.23, 0.70211, 2, 37, 32.02, -17.02, 0.88486, 38, -5.11, -18.59, 0.11514, 2, 37, 17.54, -20.77, 0.99917, 38, -17.84, -26.46, 8.3E-4, 1, 37, 2.08, -21.23, 1, 1, 37, -10.34, -10.15, 1, 1, 37, -14.84, 1.66, 1, 1, 37, -15.12, 9.29, 1, 1, 37, -8.33, 15.59, 1, 1, 37, 7.19, 18.9, 1, 2, 37, 24.82, 19.45, 0.99567, 38, -22.78, 14.12, 0.00433, 2, 37, 39.41, 15.09, 0.73793, 38, -7.56, 14.28, 0.26207, 1, 37, -4.16, 0.55, 1, 1, 37, 3.13, -12.62, 1, 1, 37, 12.06, 9.23, 1, 1, 37, 15.23, -9.65, 1, 2, 37, 29.44, 7.83, 0.98504, 38, -14.93, 4.39, 0.01496, 2, 37, 29.27, -8.52, 0.94391, 38, -10.25, -11.28, 0.05609 ],
- "hull": 13,
- "edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 20, 22, 22, 24, 0, 24 ],
- "width": 51,
- "height": 60
- }
- },
- "right arm2-front": {
- "right arm2-front": {
- "type": "mesh",
- "uvs": [ 0.03101, 0.746, 0.18356, 0.90753, 0.38098, 1, 0.60532, 0.9853, 0.85659, 0.79984, 0.96427, 0.5067, 1, 0.18963, 0.85659, 0.10588, 0.67711, 0.03409, 0.4079, 0, 0.16561, 0.14776, 0.10508, 0.32159, 0.04896, 0.48277, 0.31816, 0.59643, 0.56943, 0.72206, 0.4079, 0.38705, 0.42585, 0.18364, 0.7489, 0.27936, 0.7489, 0.44687 ],
- "triangles": [ 3, 2, 14, 3, 14, 4, 2, 1, 13, 1, 0, 13, 14, 2, 13, 14, 18, 4, 4, 18, 5, 0, 12, 13, 13, 15, 14, 14, 15, 18, 12, 11, 13, 13, 11, 15, 18, 17, 5, 5, 17, 6, 17, 7, 6, 18, 15, 17, 11, 10, 15, 15, 16, 17, 15, 10, 16, 16, 8, 17, 17, 8, 7, 10, 9, 16, 16, 9, 8 ],
- "vertices": [ 2, 60, 32.37, -6.88, 0.36072, 61, 6.69, -5, 0.63928, 2, 60, 38.93, 1.68, 0, 61, 5.15, 5.68, 1, 2, 60, 41.65, 10.43, 0.00591, 61, 0.79, 13.74, 0.99409, 2, 60, 38.24, 18.29, 0.10149, 61, -7.21, 16.79, 0.89851, 2, 60, 25.26, 24.15, 0.4917, 61, -20.47, 11.59, 0.5083, 2, 60, 8.1, 22.93, 0.89747, 61, -31.59, -1.53, 0.10253, 2, 60, -9.52, 18.69, 0.99832, 61, -40.87, -17.1, 0.00168, 1, 60, -12.4, 12.04, 1, 1, 60, -14.21, 4.3, 1, 1, 60, -12.93, -6.03, 1, 1, 60, -2.09, -12.22, 1, 1, 60, 8.04, -11.38, 1, 1, 60, 17.44, -10.6, 1, 2, 60, 20.48, 1.12, 0.99087, 61, -7.34, -7.91, 0.00913, 2, 60, 24.38, 12.4, 0.55356, 61, -12.69, 2.76, 0.44644, 2, 60, 8.08, 0.72, 0.99964, 61, -15.71, -17.07, 3.6E-4, 1, 60, -3.17, -2.18, 1, 2, 60, -1.73, 11.17, 0.99405, 61, -30.05, -16.78, 0.00595, 2, 60, 7.36, 14.1, 0.94338, 61, -25.79, -8.24, 0.05662 ],
- "hull": 13,
- "edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 0, 24, 20, 22, 22, 24 ],
- "width": 38,
- "height": 57
- }
- },
- "right feet": {
- "right feet": { "x": 19.58, "y": -3.48, "rotation": 75.96, "width": 44, "height": 49 }
- },
- "right feet-back": {
- "right feet-back": { "x": 20.72, "y": 1.87, "rotation": 104.93, "width": 46, "height": 51 }
- },
- "right feet-front": {
- "right feet-front": { "x": 21.08, "y": -0.83, "rotation": 73.91, "width": 45, "height": 50 }
- },
- "right hand": {
- "right hand": { "x": 6.02, "y": 0.38, "rotation": 163.61, "width": 45, "height": 39 }
- },
- "right hand-front": {
- "right hand-front": { "x": 11.32, "y": 2.29, "rotation": 174.48, "width": 52, "height": 44 }
- },
- "shadow": {
- "shadow": { "x": 1.96, "y": -0.24, "width": 102, "height": 24 }
- },
- "trousers": {
- "trousers": {
- "type": "mesh",
- "uvs": [ 0.04676, 0.04928, 0.10798, 0.11335, 0.24106, 0.20305, 0.3518, 0.21921, 0.50455, 0.2415, 0.74409, 0.20305, 0.85705, 0.08308, 0.92507, 0.01083, 1, 0, 1, 0.18071, 0.99155, 0.40108, 0.99155, 0.58108, 0.98947, 0.81608, 0.9136, 0.9348, 0.75225, 1, 0.46351, 1, 0.38708, 0.96205, 0.24554, 0.98931, 0.0304, 0.88028, 0.01059, 0.53954, 0, 0.28057, 0, 0.06931, 0.24679, 0.57962, 0.49594, 0.55036, 0.37136, 0.7186, 0.75725, 0.55768, 0.88486, 0.54305, 0.48682, 0.75518, 0.35921, 0.41138, 0.23463, 0.74786, 0.23159, 0.38212, 0.36529, 0.53573 ],
- "triangles": [ 9, 5, 6, 30, 2, 3, 15, 27, 14, 14, 27, 25, 14, 25, 13, 25, 27, 23, 15, 16, 27, 18, 29, 17, 17, 29, 16, 29, 24, 16, 16, 24, 27, 13, 25, 12, 12, 25, 26, 18, 19, 29, 12, 26, 11, 27, 24, 23, 29, 22, 24, 29, 19, 22, 22, 31, 24, 24, 31, 23, 26, 10, 11, 19, 30, 22, 31, 30, 28, 31, 22, 30, 23, 4, 25, 25, 5, 26, 4, 23, 28, 26, 5, 10, 19, 20, 30, 23, 31, 28, 30, 3, 28, 28, 3, 4, 10, 5, 9, 30, 20, 2, 20, 1, 2, 1, 21, 0, 1, 20, 21, 6, 7, 9, 7, 8, 9, 4, 5, 25 ],
- "vertices": [ 2, 3, -51.26, 11.89, 0.888, 6, -4.05, 55.64, 0.112, 2, 3, -43.3, 8.43, 0.824, 6, -7.85, 47.84, 0.176, 2, 3, -26, 3.59, 0.152, 6, -13.42, 30.76, 0.848, 2, 3, -11.61, 2.71, 0.168, 6, -14.91, 16.41, 0.832, 2, 3, 8.25, 1.51, 0.448, 6, -16.95, -3.37, 0.552, 2, 3, 39.39, 3.59, 0.192, 6, -16.2, -34.57, 0.808, 2, 3, 54.08, 10.06, 0.416, 6, -10.35, -49.52, 0.584, 2, 3, 62.92, 13.97, 0.52, 6, -6.83, -58.52, 0.48, 2, 3, 72.66, 14.55, 0.544, 6, -6.66, -68.28, 0.456, 2, 3, 72.66, 4.79, 0.872, 6, -16.41, -67.86, 0.128, 2, 3, 71.56, -7.11, 0.928, 6, -28.25, -66.26, 0.072, 1, 3, 71.56, -16.83, 1, 1, 3, 71.29, -29.52, 1, 1, 3, 61.43, -35.93, 1, 1, 3, 40.45, -39.45, 1, 1, 3, 2.92, -39.45, 1, 1, 3, -7.02, -37.4, 1, 1, 3, -25.42, -38.87, 1, 1, 3, -53.39, -32.98, 1, 2, 3, -55.96, -14.58, 0.984, 6, -30.3, 61.47, 0.016, 2, 3, -57.34, -0.6, 0.952, 6, -16.27, 62.25, 0.048, 2, 3, -57.34, 10.81, 0.816, 6, -4.88, 61.76, 0.184, 2, 3, -25.26, -16.75, 0.976, 6, -33.77, 30.88, 0.024, 2, 3, 7.13, -15.17, 0.904, 6, -33.57, -1.55, 0.096, 1, 3, -9.06, -24.25, 1, 2, 3, 41.1, -15.56, 0.92, 6, -35.41, -35.47, 0.08, 2, 3, 57.69, -14.77, 0.888, 6, -35.32, -52.08, 0.112, 1, 3, 5.95, -26.23, 1, 2, 3, -10.64, -7.66, 0.888, 6, -25.32, 15.89, 0.112, 1, 3, -26.84, -25.83, 1, 2, 3, -27.23, -6.08, 0.928, 6, -23.03, 32.4, 0.072, 2, 3, -9.85, -14.38, 0.928, 6, -32.06, 15.39, 0.072 ],
- "hull": 22,
- "edges": [ 0, 2, 2, 4, 8, 10, 14, 16, 16, 18, 18, 20, 20, 22, 22, 24, 24, 26, 26, 28, 28, 30, 30, 32, 32, 34, 34, 36, 36, 38, 38, 40, 40, 42, 0, 42, 4, 6, 6, 8, 10, 12, 12, 14 ],
- "width": 130,
- "height": 54
- }
- },
- "trousers-back": {
- "trousers-back": { "x": 4.28, "y": -23, "width": 135, "height": 55 }
- },
- "trousers-front": {
- "trousers-front": { "x": -0.06, "y": 1.23, "width": 135, "height": 55 }
- },
- "tx": {
- "baodian_02_00": { "width": 165, "height": 247 },
- "baodian_02_01": { "width": 165, "height": 247 },
- "baodian_02_02": { "width": 165, "height": 247 },
- "baodian_02_03": { "width": 165, "height": 247 }
- },
- "tx2": {
- "baodian_02_00": { "x": 0.5, "y": 0.5, "width": 165, "height": 247 },
- "baodian_02_01": { "x": 0.5, "y": 0.5, "width": 165, "height": 247 },
- "baodian_02_02": { "x": 0.5, "y": 0.5, "width": 165, "height": 247 },
- "baodian_02_03": { "x": 0.5, "y": 0.5, "width": 165, "height": 247 }
- },
- "tx3": {
- "baodian_02_00": { "x": 0.5, "y": 0.5, "width": 165, "height": 247 },
- "baodian_02_01": { "x": 0.5, "y": 0.5, "width": 165, "height": 247 },
- "baodian_02_02": { "x": 0.5, "y": 0.5, "width": 165, "height": 247 },
- "baodian_02_03": { "x": 0.5, "y": 0.5, "width": 165, "height": 247 }
- },
- "weijin1": {
- "weijin1": { "x": 41.74, "y": -7.32, "rotation": -92.44, "width": 133, "height": 56 }
- },
- "weijin1-back": {
- "weijin1-back": {
- "type": "mesh",
- "uvs": [ 1, 0.48753, 1, 1, 0.74277, 1, 0.47483, 1, 0.21433, 1, 0, 1, 0, 0.41066, 0, 0, 0.19572, 0, 0.48599, 0, 0.78371, 0, 1, 0, 0.18456, 0.4192, 0.47483, 0.44482, 0.79487, 0.47899 ],
- "triangles": [ 13, 10, 14, 13, 12, 9, 10, 13, 9, 9, 12, 8, 12, 6, 8, 6, 7, 8, 14, 10, 11, 14, 11, 0, 5, 6, 12, 2, 14, 1, 14, 0, 1, 2, 3, 14, 14, 3, 13, 3, 4, 13, 13, 4, 12, 4, 5, 12 ],
- "vertices": [ 2, 29, 33.53, -74.7, 0.536, 30, -24.46, -76.98, 0.464, 1, 29, 2.28, -75.41, 1, 1, 29, 1.46, -39.41, 1, 1, 29, 0.61, -1.91, 1, 1, 29, -0.22, 34.55, 1, 1, 29, -0.9, 64.55, 1, 2, 29, 35.04, 65.37, 0.38275, 30, -22.03, 63.08, 0.61725, 2, 29, 60.09, 65.94, 0.24747, 30, 3.02, 63.49, 0.75253, 2, 29, 60.71, 38.54, 0.22201, 30, 3.46, 36.09, 0.77799, 2, 29, 61.63, -2.08, 0.19876, 30, 4.11, -4.54, 0.80124, 2, 29, 62.58, -43.75, 0.06362, 30, 4.79, -46.22, 0.93638, 2, 29, 63.27, -74.03, 0.056, 30, 5.27, -76.5, 0.944, 2, 29, 35.11, 39.53, 0.61283, 30, -22.13, 37.24, 0.38717, 2, 29, 34.47, -1.14, 0.6, 30, -23.04, -3.42, 0.4, 2, 29, 33.4, -45.98, 0.592, 30, -24.4, -48.25, 0.408 ],
- "hull": 12,
- "edges": [ 10, 12, 12, 14, 2, 0, 0, 22, 8, 10, 6, 8, 2, 4, 4, 6, 14, 16, 16, 18, 18, 20, 20, 22 ],
- "width": 140,
- "height": 61
- }
- },
- "weijin1-front": {
- "weijin1-front": {
- "type": "mesh",
- "uvs": [ 1, 0.41976, 1, 0.62315, 1, 1, 0.78351, 1, 0.5009, 1, 0.24003, 1, 0, 1, 0, 0.71637, 0, 0.42837, 0, 0, 0.24727, 0, 0.5009, 0, 0.7509, 0, 1, 0, 0.24365, 0.33501, 0.25452, 0.69095, 0.77264, 0.36891, 0.76177, 0.6062, 0.51177, 0.58078, 0.49365, 0.27569 ],
- "triangles": [ 16, 13, 0, 16, 12, 13, 14, 19, 18, 12, 19, 11, 19, 12, 16, 8, 9, 14, 14, 10, 19, 14, 9, 10, 19, 10, 11, 3, 1, 2, 4, 17, 3, 3, 17, 1, 5, 15, 4, 4, 18, 17, 4, 15, 18, 15, 5, 7, 5, 6, 7, 7, 8, 15, 8, 14, 15, 15, 14, 18, 17, 0, 1, 17, 16, 0, 17, 18, 16, 18, 19, 16 ],
- "vertices": [ 2, 48, 59.53, -71.32, 0.67972, 49, -13.46, -71.33, 0.32028, 2, 48, 47.53, -71.15, 0.75035, 49, -25.43, -70.49, 0.24965, 1, 48, 25.3, -70.82, 1, 1, 48, 25.74, -40.95, 1, 1, 48, 26.31, -1.95, 1, 1, 48, 26.84, 34.05, 1, 1, 48, 27.33, 67.17, 1, 2, 48, 44.06, 66.92, 0.64247, 49, -21.2, 67.56, 0.35753, 2, 48, 61.05, 66.67, 0.51261, 49, -4.25, 66.36, 0.48739, 1, 49, 20.96, 64.58, 1, 1, 49, 18.56, 30.54, 1, 2, 48, 85.3, -2.82, 0.00606, 49, 16.1, -4.37, 0.99394, 1, 49, 13.67, -38.78, 1, 1, 49, 11.25, -73.08, 1, 2, 48, 66.06, 32.97, 0.42771, 49, -1.12, 32.43, 0.57229, 2, 48, 45.04, 31.78, 0.75541, 49, -22.17, 32.42, 0.24459, 2, 48, 62.99, -39.99, 0.61585, 49, -8.26, -40.24, 0.38415, 2, 48, 49.01, -38.29, 0.77837, 49, -22.12, -37.76, 0.22163, 2, 48, 51.02, -3.81, 0.856, 49, -18.19, -3.45, 0.144, 2, 48, 69.05, -1.58, 0.04234, 49, -0.06, -2.23, 0.95766 ],
- "hull": 14,
- "edges": [ 16, 18, 0, 26, 12, 14, 14, 16, 0, 2, 2, 4, 18, 20, 20, 22, 8, 10, 10, 12, 22, 24, 24, 26, 4, 6, 6, 8 ],
- "width": 138,
- "height": 59
- }
- },
- "weijjin2": {
- "weijjin2": {
- "type": "mesh",
- "uvs": [ 0, 0.15766, 0.02146, 0.04627, 0.12437, 0, 0.33019, 0, 0.49742, 0.07938, 0.64535, 0.19379, 0.72824, 0.28197, 0.78685, 0.34432, 0.85791, 0.44998, 0.89619, 0.5069, 0.94933, 0.6097, 0.99267, 0.69355, 0.98624, 0.8772, 0.90906, 0.96752, 0.70967, 1, 0.61319, 0.93441, 0.51671, 0.74775, 0.47619, 0.69084, 0.4376, 0.63665, 0.38808, 0.56711, 0.32842, 0.4917, 0.25944, 0.40453, 0.18949, 0.33511, 0.09865, 0.24497 ],
- "triangles": [ 16, 17, 10, 16, 10, 11, 11, 15, 16, 12, 15, 11, 13, 15, 12, 14, 15, 13, 20, 21, 6, 20, 6, 7, 19, 20, 7, 19, 7, 8, 18, 19, 8, 18, 8, 9, 17, 18, 9, 17, 9, 10, 2, 0, 1, 23, 0, 2, 23, 2, 3, 23, 3, 4, 22, 23, 4, 22, 4, 5, 21, 22, 5, 21, 5, 6 ],
- "vertices": [ 1, 24, 1.99, -11.15, 1, 1, 24, -6.65, -5.16, 1, 1, 24, -8.2, 0.92, 1, 1, 24, -3.74, 8.8, 1, 1, 24, 6.38, 11.52, 1, 2, 24, 18.95, 11.89, 0.99326, 25, -12.44, 9.02, 0.00674, 2, 24, 27.96, 10.97, 0.6746, 25, -3.49, 10.43, 0.3254, 2, 24, 34.33, 10.33, 0.20618, 25, 2.83, 11.42, 0.79382, 3, 24, 44.51, 8.15, 1.8E-4, 25, 13.23, 11.9, 0.99891, 26, -14.27, 13.96, 9.1E-4, 2, 25, 18.84, 12.16, 0.96255, 26, -8.68, 13.46, 0.03745, 2, 25, 28.78, 11.95, 0.50771, 26, 1.14, 11.9, 0.49229, 2, 25, 36.88, 11.77, 0.07608, 26, 9.15, 10.63, 0.92392, 1, 26, 24.97, 3.73, 1, 1, 26, 31.5, -2.67, 1, 1, 26, 30.95, -11.94, 1, 1, 26, 23.62, -13.49, 1, 2, 25, 36.45, -9.78, 0.08538, 26, 5.8, -10.66, 0.91462, 2, 25, 30.82, -10.13, 0.43936, 26, 0.17, -10.25, 0.56064, 2, 25, 25.46, -10.47, 0.84969, 26, -5.18, -9.86, 0.15031, 3, 24, 43.9, -15.26, 0.00131, 25, 18.59, -10.9, 0.9968, 26, -12.06, -9.35, 0.00189, 2, 24, 36.44, -14.05, 0.07465, 25, 11.06, -11.63, 0.92535, 2, 24, 27.81, -12.65, 0.50836, 25, 2.36, -12.46, 0.49164, 2, 24, 20.62, -12.12, 0.90053, 25, -4.73, -13.77, 0.09947, 2, 24, 11.27, -11.42, 0.99987, 25, -13.95, -15.46, 1.3E-4 ],
- "hull": 24,
- "edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 22, 24, 24, 26, 26, 28, 28, 30, 30, 32, 0, 46, 46, 8, 42, 44, 44, 46, 44, 10, 10, 12, 12, 14, 42, 12, 38, 40, 40, 42, 40, 14, 14, 16, 16, 18, 38, 16, 36, 38, 36, 18, 32, 34, 34, 36, 18, 20, 20, 22, 34, 20, 32, 22 ],
- "width": 44,
- "height": 94
- }
- },
- "weijjin2-back": {
- "weijjin2-back": {
- "type": "mesh",
- "uvs": [ 0.42989, 0, 0.71063, 0, 0.96019, 0.05792, 0.99762, 0.21372, 0.99859, 0.31247, 1, 0.45692, 0.98848, 0.57058, 0.97266, 0.72672, 0.90129, 0.85911, 0.83541, 0.98132, 0.54843, 1, 0.21777, 0.95472, 0, 0.84452, 0, 0.75332, 0.16162, 0.62412, 0.22968, 0.48111, 0.2864, 0.36192, 0.33447, 0.24479, 0.37998, 0.13392, 0.34879, 0.70772, 0.63577, 0.72292, 0.48604, 0.38472, 0.82293, 0.41132, 0.53595, 0.14532, 0.84789, 0.16432, 0.44861, 0.51392, 0.74807, 0.55192, 0.27392, 0.82172, 0.63577, 0.84452, 0.52971, 0.26312, 0.83541, 0.29732 ],
- "triangles": [ 14, 15, 19, 27, 14, 19, 13, 14, 27, 12, 13, 27, 28, 19, 20, 8, 28, 20, 11, 12, 27, 9, 28, 8, 10, 19, 28, 10, 28, 9, 27, 19, 10, 11, 27, 10, 25, 16, 21, 15, 16, 25, 26, 21, 22, 25, 21, 26, 6, 22, 5, 26, 22, 6, 19, 15, 25, 20, 25, 26, 19, 25, 20, 7, 26, 6, 20, 26, 7, 7, 8, 20, 23, 0, 1, 18, 0, 23, 24, 1, 2, 24, 2, 3, 29, 18, 23, 17, 18, 29, 24, 23, 1, 30, 24, 3, 24, 29, 23, 30, 29, 24, 30, 3, 4, 21, 17, 29, 16, 17, 21, 22, 29, 30, 21, 29, 22, 22, 4, 5, 4, 22, 30 ],
- "vertices": [ 1, 34, -7.01, -19.31, 1, 1, 34, -9.27, -0.64, 1, 1, 34, -4.96, 16.73, 1, 2, 34, 11.76, 21.28, 0.9991, 35, -29.47, 15.71, 9.0E-4, 2, 34, 22.53, 22.65, 0.94266, 35, -19.19, 19.2, 0.05734, 3, 34, 38.29, 24.66, 0.52696, 35, -4.14, 24.32, 0.47245, 36, -38.42, 20.71, 5.9E-4, 3, 34, 50.8, 25.39, 0.16501, 35, 7.96, 27.54, 0.79811, 36, -26.68, 25.09, 0.03687, 3, 34, 67.98, 26.41, 0.00719, 35, 24.59, 31.97, 0.70152, 36, -10.56, 31.09, 0.29128, 2, 35, 39.92, 32.03, 0.32533, 36, 4.69, 32.64, 0.67467, 2, 35, 54.07, 32.1, 0.12046, 36, 18.77, 34.06, 0.87954, 2, 35, 62.1, 14.51, 0.00984, 36, 28.46, 17.33, 0.99016, 1, 36, 32.9, -4.94, 1, 2, 35, 57.49, -25.76, 0.00161, 36, 27.75, -23.19, 0.99839, 2, 35, 47.97, -28.93, 0.02858, 36, 18.58, -27.27, 0.97142, 3, 34, 63.31, -28.89, 0.00496, 35, 31.07, -23.15, 0.39925, 36, 1.2, -23.15, 0.59579, 3, 34, 47.15, -26.26, 0.15201, 35, 14.7, -23.8, 0.75213, 36, -15.03, -25.37, 0.09586, 3, 34, 33.67, -24.07, 0.5632, 35, 1.06, -24.34, 0.43248, 36, -28.55, -27.22, 0.00431, 2, 34, 20.5, -22.42, 0.91066, 35, -12.18, -25.36, 0.08934, 2, 34, 8.02, -20.86, 0.99625, 35, -24.71, -26.33, 0.00375, 2, 35, 35.83, -8.35, 0.15966, 36, 4.51, -7.95, 0.84034, 2, 35, 31.33, 10.42, 0.58995, 36, -1.77, 10.3, 0.41005, 3, 34, 34.55, -10.48, 0.63373, 35, -0.79, -10.86, 0.36622, 36, -31.69, -13.98, 5.0E-5, 2, 34, 34.74, 12.28, 0.71774, 35, -5.15, 11.48, 0.28226, 2, 34, 8.01, -10.33, 0.99981, 35, -26.83, -16.02, 1.9E-4, 1, 34, 7.57, 10.67, 1, 3, 34, 48.96, -11.26, 0.06184, 35, 13.49, -8.75, 0.91431, 36, -17.69, -10.5, 0.02385, 3, 34, 50.7, 9.16, 0.06527, 35, 11.11, 11.61, 0.92694, 36, -22.02, 9.53, 0.00779, 2, 35, 49.31, -9.14, 8.3E-4, 36, 18.01, -7.44, 0.99917, 2, 35, 44.02, 14.65, 0.12177, 36, 10.45, 15.73, 0.87823, 2, 34, 20.92, -9.19, 0.97544, 35, -14.4, -12.31, 0.02456, 2, 34, 22.19, 11.6, 0.9863, 35, -17.31, 8.31, 0.0137 ],
- "hull": 19,
- "edges": [ 0, 2, 2, 4, 4, 6, 18, 20, 20, 22, 22, 24, 24, 26, 26, 28, 0, 36, 28, 30, 30, 32, 10, 12, 12, 14, 14, 16, 16, 18, 32, 34, 34, 36, 6, 8, 8, 10 ],
- "width": 67,
- "height": 110
- }
- },
- "weijjin2-front": {
- "weijjin2-front": {
- "type": "mesh",
- "uvs": [ 0.07426, 0.04009, 0.23756, 0.0022, 0.44751, 0, 0.65747, 0.03062, 0.66524, 0.16323, 0.7119, 0.29585, 0.81299, 0.5232, 0.90151, 0.62879, 0.99962, 0.74581, 0.98407, 0.86895, 0.76633, 0.96368, 0.45529, 1, 0.14424, 0.98262, 0.07426, 0.87842, 0.03537, 0.71471, 0, 0.56582, 0, 0.31006, 0.05093, 0.15376, 0.43197, 0.86895, 0.36198, 0.53741, 0.31532, 0.29585, 0.30755, 0.13481, 0.46307, 0.11587, 0.54083, 0.28638, 0.58749, 0.53267, 0.70413, 0.79317, 0.40864, 0.66529, 0.59526, 0.63213 ],
- "triangles": [ 12, 18, 11, 11, 25, 10, 11, 18, 25, 12, 13, 18, 10, 25, 9, 18, 13, 26, 9, 25, 8, 8, 25, 7, 18, 27, 25, 18, 26, 27, 25, 6, 7, 25, 27, 6, 13, 14, 26, 14, 19, 26, 19, 15, 20, 19, 14, 15, 26, 24, 27, 26, 19, 24, 27, 24, 6, 19, 23, 24, 24, 5, 6, 24, 23, 5, 20, 16, 17, 17, 21, 20, 17, 0, 21, 20, 15, 16, 19, 20, 23, 0, 1, 21, 23, 4, 5, 20, 22, 23, 20, 21, 22, 23, 22, 4, 22, 3, 4, 21, 2, 22, 21, 1, 2, 22, 2, 3 ],
- "vertices": [ 1, 55, -0.86, -13.23, 1, 1, 55, -3.52, -1.82, 1, 1, 55, -1.85, 12.15, 1, 2, 55, 3.38, 25.63, 0.99757, 56, -31.35, 28.24, 0.00243, 2, 55, 17.91, 24.17, 0.91653, 56, -16.99, 25.62, 0.08347, 3, 55, 32.78, 25.3, 0.54201, 56, -2.07, 25.55, 0.45502, 57, -30.53, 32.95, 0.00296, 3, 55, 58.48, 28.63, 0.01558, 56, 23.81, 26.8, 0.68411, 57, -5, 28.57, 0.3003, 2, 56, 36.43, 30.11, 0.30892, 57, 8.04, 29.05, 0.69108, 2, 56, 50.41, 33.77, 0.07248, 57, 22.48, 29.6, 0.92752, 2, 56, 63.42, 29.84, 0.00864, 57, 34.33, 22.95, 0.99136, 1, 57, 37.63, 5.33, 1, 1, 57, 32.48, -15.26, 1, 2, 56, 63.56, -27.8, 0.02853, 57, 21.97, -33.36, 0.97147, 2, 56, 51.36, -29.92, 0.12718, 57, 9.6, -32.78, 0.87282, 2, 56, 33.22, -28.6, 0.57747, 57, -7.83, -27.56, 0.42253, 3, 55, 55.76, -25.97, 0.03916, 56, 16.71, -27.41, 0.89531, 57, -23.68, -22.81, 0.06553, 2, 55, 27.89, -22.17, 0.75006, 56, -10.77, -21.37, 0.24994, 2, 55, 11.31, -16.47, 0.99566, 56, -26.83, -14.35, 0.00434, 2, 56, 55.48, -6.29, 0.00283, 57, 18.75, -10.6, 0.99717, 1, 56, 18.86, -3.05, 1, 1, 55, 29.19, -1.03, 1, 1, 55, 11.57, 0.85, 1, 2, 55, 10.92, 11.46, 0.99359, 56, -24.98, 13.51, 0.00641, 2, 55, 30.2, 14.08, 0.71005, 56, -5.54, 14.58, 0.28995, 3, 55, 57.47, 13.52, 0.00712, 56, 21.59, 11.82, 0.88143, 57, -10.41, 14.42, 0.11145, 2, 56, 51.25, 13.31, 0.02073, 57, 18.87, 9.45, 0.97927, 2, 56, 33.27, -3.01, 0.83353, 57, -2.23, -2.59, 0.16647, 2, 56, 32.39, 9.99, 0.55594, 57, -0.27, 10.29, 0.44406 ],
- "hull": 18,
- "edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 16, 18, 18, 20, 20, 22, 22, 24, 24, 26, 30, 32, 32, 34, 0, 34, 26, 28, 28, 30, 12, 14, 14, 16 ],
- "width": 67,
- "height": 110
- }
- }
- }
- }
- ],
- "events": {
- "fire1": {}
- },
- "animations": {
- "atk_down": {
- "slots": {
- "body": {
- "attachment": [
- { "name": null },
- { "time": 0.4, "name": null }
- ]
- },
- "body-back": {
- "attachment": [
- { "name": null },
- { "time": 0.4, "name": null }
- ]
- },
- "ear1": {
- "attachment": [
- { "name": null },
- { "time": 0.4, "name": null }
- ]
- },
- "ear1-back": {
- "attachment": [
- { "name": null },
- { "time": 0.4, "name": null }
- ]
- },
- "ear2": {
- "attachment": [
- { "name": null },
- { "time": 0.4, "name": null }
- ]
- },
- "ear2-back": {
- "attachment": [
- { "name": null },
- { "time": 0.4, "name": null }
- ]
- },
- "eye1": {
- "attachment": [
- { "name": null },
- { "time": 0.4, "name": null }
- ]
- },
- "eye2": {
- "attachment": [
- { "name": null },
- { "time": 0.4, "name": null }
- ]
- },
- "gun": {
- "attachment": [
- { "name": null },
- { "time": 0.4, "name": null }
- ]
- },
- "gun-back": {
- "attachment": [
- { "name": null },
- { "time": 0.4, "name": null }
- ]
- },
- "hair": {
- "attachment": [
- { "name": null },
- { "time": 0.4, "name": null }
- ]
- },
- "hair-back": {
- "attachment": [
- { "name": null },
- { "time": 0.4, "name": null }
- ]
- },
- "head": {
- "attachment": [
- { "name": null },
- { "time": 0.4, "name": null }
- ]
- },
- "head-back": {
- "attachment": [
- { "name": null },
- { "time": 0.4, "name": null }
- ]
- },
- "left arm1": {
- "attachment": [
- { "name": null },
- { "time": 0.4, "name": null }
- ]
- },
- "left arm1-back": {
- "attachment": [
- { "name": null },
- { "time": 0.4, "name": null }
- ]
- },
- "left arm2": {
- "attachment": [
- { "name": null },
- { "time": 0.4, "name": null }
- ]
- },
- "left arm2-back": {
- "attachment": [
- { "name": null },
- { "time": 0.4, "name": null }
- ]
- },
- "left feet": {
- "attachment": [
- { "name": null },
- { "time": 0.4, "name": null }
- ]
- },
- "left feet-back": {
- "attachment": [
- { "name": null },
- { "time": 0.4, "name": null }
- ]
- },
- "left hand": {
- "attachment": [
- { "name": null },
- { "time": 0.4, "name": null }
- ]
- },
- "left hand-back": {
- "attachment": [
- { "name": null },
- { "time": 0.4, "name": null }
- ]
- },
- "mouth": {
- "attachment": [
- { "name": null },
- { "time": 0.4, "name": null }
- ]
- },
- "right arm1": {
- "attachment": [
- { "name": null },
- { "time": 0.4, "name": null }
- ]
- },
- "right arm2": {
- "attachment": [
- { "name": null },
- { "time": 0.4, "name": null }
- ]
- },
- "right arm2-back": {
- "attachment": [
- { "name": null },
- { "time": 0.4, "name": null }
- ]
- },
- "right feet": {
- "attachment": [
- { "name": null },
- { "time": 0.4, "name": null }
- ]
- },
- "right feet-back": {
- "attachment": [
- { "name": null },
- { "time": 0.4, "name": null }
- ]
- },
- "right hand": {
- "attachment": [
- { "name": null },
- { "time": 0.4, "name": null }
- ]
- },
- "trousers": {
- "attachment": [
- { "name": null },
- { "time": 0.4, "name": null }
- ]
- },
- "trousers-back": {
- "attachment": [
- { "name": null },
- { "time": 0.4, "name": null }
- ]
- },
- "tx3": {
- "color": [
- { "time": 0.2333, "color": "ffffffff" }
- ],
- "attachment": [
- { "time": 0.2333, "name": "baodian_02_00" },
- { "time": 0.2667, "name": "baodian_02_01" },
- { "time": 0.3, "name": "baodian_02_02" },
- { "time": 0.3333, "name": "baodian_02_03" },
- { "time": 0.3667, "name": null }
- ]
- },
- "weijin1": {
- "attachment": [
- { "name": null },
- { "time": 0.4, "name": null }
- ]
- },
- "weijin1-back": {
- "attachment": [
- { "name": null },
- { "time": 0.4, "name": null }
- ]
- },
- "weijjin2": {
- "attachment": [
- { "name": null },
- { "time": 0.4, "name": null }
- ]
- },
- "weijjin2-back": {
- "attachment": [
- { "name": null },
- { "time": 0.4, "name": null }
- ]
- }
- },
- "bones": {
- "body-front": {
- "rotate": [
- { "curve": "stepped" },
- { "time": 0.4 }
- ],
- "translate": [
- { "curve": "stepped" },
- { "time": 0.4 }
- ],
- "scale": [
- { "curve": "stepped" },
- { "time": 0.4 }
- ]
- },
- "body-front2": {
- "rotate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.0667, "angle": 0.32, "curve": 0.25, "c3": 0.75 },
- { "time": 0.1333, "curve": 0.25, "c3": 0.75 },
- { "time": 0.2333, "angle": -8.66, "curve": 0.25, "c3": 0.75 },
- { "time": 0.3333, "angle": 9.21, "curve": 0.25, "c3": 0.75 },
- { "time": 0.4 }
- ],
- "translate": [
- { "y": -0.2, "curve": 0.25, "c3": 0.75 },
- { "time": 0.1333, "x": -1.09, "y": -4.57, "curve": 0.25, "c3": 0.75 },
- { "time": 0.2333, "x": -3.27, "y": 7.44, "curve": 0.25, "c3": 0.75 },
- { "time": 0.3333, "x": -4.36, "y": -5.66, "curve": 0.25, "c3": 0.75 },
- { "time": 0.4, "y": -0.2 }
- ],
- "scale": [
- { "curve": "stepped" },
- { "time": 0.4 }
- ]
- },
- "head-front": {
- "rotate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.0667, "angle": 0.32, "curve": 0.25, "c3": 0.75 },
- { "time": 0.1333, "curve": 0.25, "c3": 0.75 },
- { "time": 0.2333, "angle": -12.29, "curve": 0.25, "c3": 0.75 },
- { "time": 0.3333, "angle": 3.43, "curve": 0.25, "c3": 0.75 },
- { "time": 0.4 }
- ],
- "translate": [
- { "x": -0.42, "y": 0.01, "curve": 0.25, "c3": 0.75 },
- { "time": 0.1333, "x": -6.95, "y": 1.19, "curve": 0.25, "c3": 0.75 },
- { "time": 0.2333, "x": 1.5, "y": -4.25, "curve": 0.25, "c3": 0.75 },
- { "time": 0.3333, "x": -7.97, "y": -1.47, "curve": 0.25, "c3": 0.75 },
- { "time": 0.4, "x": -0.42, "y": 0.01 }
- ],
- "scale": [
- { "curve": "stepped" },
- { "time": 0.4 }
- ]
- },
- "eye2-front": {
- "rotate": [
- { "angle": 30.63 },
- { "time": 0.0667, "angle": 1.32 },
- { "time": 0.2, "angle": 25.83 },
- { "time": 0.3, "angle": 1.32 },
- { "time": 0.4, "angle": 30.63 }
- ],
- "translate": [
- { "curve": "stepped" },
- { "time": 0.0667, "curve": "stepped" },
- { "time": 0.4 }
- ],
- "scale": [
- { "curve": "stepped" },
- { "time": 0.0667, "curve": "stepped" },
- { "time": 0.4 }
- ]
- },
- "eye1-front": {
- "rotate": [
- { "angle": -24.18 },
- { "time": 0.0667, "angle": -1.92 },
- { "time": 0.2, "angle": -30.88 },
- { "time": 0.3, "angle": -1.92 },
- { "time": 0.4, "angle": -24.18 }
- ],
- "translate": [
- { "curve": "stepped" },
- { "time": 0.0667, "curve": "stepped" },
- { "time": 0.4 }
- ],
- "scale": [
- { "curve": "stepped" },
- { "time": 0.0667, "curve": "stepped" },
- { "time": 0.4 }
- ]
- },
- "ear1-front": {
- "rotate": [
- { "angle": 9.23 },
- { "time": 0.0667, "angle": -17.7 },
- { "time": 0.1333, "angle": 2.85 },
- { "time": 0.2667, "angle": -13 },
- { "time": 0.3667, "angle": 22.69 },
- { "time": 0.4, "angle": 9.23 }
- ],
- "translate": [
- { "curve": "stepped" },
- { "time": 0.1333, "curve": "stepped" },
- { "time": 0.4 }
- ],
- "scale": [
- { "curve": "stepped" },
- { "time": 0.1333, "curve": "stepped" },
- { "time": 0.4 }
- ]
- },
- "ear2-front": {
- "rotate": [
- { "angle": 3.22 },
- { "time": 0.0333, "angle": 18.99 },
- { "time": 0.1, "angle": -6.75 },
- { "time": 0.2333, "angle": 6.56 },
- { "time": 0.3333, "angle": -5.34 },
- { "time": 0.4, "angle": 3.22 }
- ],
- "translate": [
- { "curve": "stepped" },
- { "time": 0.1, "curve": "stepped" },
- { "time": 0.4 }
- ],
- "scale": [
- { "curve": "stepped" },
- { "time": 0.1, "curve": "stepped" },
- { "time": 0.4 }
- ]
- },
- "hair-front": {
- "rotate": [
- { "angle": 2.58 },
- { "time": 0.0333, "angle": 12.09 },
- { "time": 0.1, "angle": -3.04 },
- { "time": 0.2333, "angle": 13.96 },
- { "time": 0.3333, "angle": -16.42 },
- { "time": 0.4, "angle": 2.58 }
- ],
- "translate": [
- { "curve": "stepped" },
- { "time": 0.1, "curve": "stepped" },
- { "time": 0.4 }
- ],
- "scale": [
- { "curve": "stepped" },
- { "time": 0.1, "curve": "stepped" },
- { "time": 0.4 }
- ]
- },
- "weijjin2-front": {
- "rotate": [
- { "angle": -3.38, "curve": 0.382, "c2": 0.57, "c3": 0.735 },
- { "time": 0.0667, "angle": -6.48 },
- { "time": 0.2667, "angle": 4.45, "curve": 0.243, "c3": 0.649, "c4": 0.6 },
- { "time": 0.4, "angle": -3.38 }
- ],
- "translate": [
- { "curve": "stepped" },
- { "time": 0.0667, "curve": "stepped" },
- { "time": 0.4 }
- ],
- "scale": [
- { "curve": "stepped" },
- { "time": 0.0667, "curve": "stepped" },
- { "time": 0.4 }
- ]
- },
- "weijjin2-front2": {
- "rotate": [
- { "angle": 4.39, "curve": 0.311, "c2": 0.25, "c3": 0.757 },
- { "time": 0.1667, "angle": -5.49 },
- { "time": 0.3667, "angle": 5.44, "curve": 0.29, "c3": 0.629, "c4": 0.38 },
- { "time": 0.4, "angle": 4.39 }
- ],
- "translate": [
- { "curve": "stepped" },
- { "time": 0.1667, "curve": "stepped" },
- { "time": 0.4 }
- ],
- "scale": [
- { "curve": "stepped" },
- { "time": 0.1667, "curve": "stepped" },
- { "time": 0.4 }
- ]
- },
- "weijjin2-front3": {
- "rotate": [
- { "angle": 1.61, "curve": 0.382, "c2": 0.57, "c3": 0.735 },
- { "time": 0.0667, "angle": 4.71, "curve": 0.25, "c3": 0.75 },
- { "time": 0.2667, "angle": -6.21, "curve": 0.243, "c3": 0.649, "c4": 0.6 },
- { "time": 0.4, "angle": 1.61 }
- ],
- "translate": [
- { "curve": "stepped" },
- { "time": 0.2667, "curve": "stepped" },
- { "time": 0.4 }
- ],
- "scale": [
- { "curve": "stepped" },
- { "time": 0.2667, "curve": "stepped" },
- { "time": 0.4 }
- ]
- },
- "left arm2-front": {
- "rotate": [
- { "angle": 2.5 },
- { "time": 0.2, "angle": -10.5 },
- { "time": 0.4, "angle": 2.5 }
- ],
- "translate": [
- {},
- { "time": 0.2, "x": 15.01, "y": -17.23 },
- { "time": 0.2667, "x": -11.12, "y": -2.26 },
- { "time": 0.3333, "x": 17.03, "y": -28.33 },
- { "time": 0.4 }
- ],
- "scale": [
- { "curve": "stepped" },
- { "time": 0.4 }
- ]
- },
- "left hand-front": {
- "rotate": [
- { "angle": -1.63, "curve": "stepped" },
- { "time": 0.4, "angle": -1.63 }
- ],
- "translate": [
- { "curve": "stepped" },
- { "time": 0.4 }
- ],
- "scale": [
- { "curve": "stepped" },
- { "time": 0.4 }
- ]
- },
- "right arm2-front": {
- "rotate": [
- { "curve": "stepped" },
- { "time": 0.4 }
- ],
- "translate": [
- {},
- { "time": 0.2667, "x": -5.28, "y": 1.83 },
- { "time": 0.3333, "x": 4.81, "y": -4.63 },
- { "time": 0.4 }
- ],
- "scale": [
- { "curve": "stepped" },
- { "time": 0.4 }
- ]
- },
- "right arm1-front": {
- "rotate": [
- { "angle": -3.16, "curve": "stepped" },
- { "time": 0.4, "angle": -3.16 }
- ],
- "translate": [
- { "curve": "stepped" },
- { "time": 0.4 }
- ],
- "scale": [
- { "curve": "stepped" },
- { "time": 0.4 }
- ]
- },
- "right hand-front": {
- "rotate": [
- { "angle": -10.96, "curve": "stepped" },
- { "time": 0.4, "angle": -10.96 }
- ],
- "translate": [
- { "curve": "stepped" },
- { "time": 0.4 }
- ],
- "scale": [
- { "curve": "stepped" },
- { "time": 0.4 }
- ]
- },
- "gun3": {
- "rotate": [
- { "curve": "stepped" },
- { "time": 0.4 }
- ],
- "translate": [
- { "curve": "stepped" },
- { "time": 0.4 }
- ],
- "scale": [
- { "curve": "stepped" },
- { "time": 0.4 }
- ]
- },
- "K4": {
- "rotate": [
- {},
- { "time": 0.2, "angle": -8.57 },
- { "time": 0.2667, "angle": -11.43 },
- { "time": 0.4 }
- ],
- "translate": [
- {},
- { "time": 0.1333, "x": -8.63, "y": 0.86 },
- { "time": 0.2, "x": -28.91, "y": -2.8 },
- { "time": 0.2667, "x": 17.65, "y": -6 },
- { "time": 0.3333, "x": -4.46, "y": -5.25 },
- { "time": 0.4 }
- ],
- "scale": [
- { "curve": "stepped" },
- { "time": 0.4 }
- ]
- },
- "K5": {
- "rotate": [
- { "curve": "stepped" },
- { "time": 0.4 }
- ],
- "translate": [
- {},
- { "time": 0.1333, "x": -1.53, "y": 1.38 },
- { "time": 0.2, "x": -33.87, "y": -1.73 },
- { "time": 0.2667, "x": 13.83, "y": -7.53 },
- { "time": 0.3333, "x": -5.68, "y": 0.72 },
- { "time": 0.4 }
- ],
- "scale": [
- { "curve": "stepped" },
- { "time": 0.4 }
- ]
- },
- "left feet-front": {
- "rotate": [
- { "curve": "stepped" },
- { "time": 0.4 }
- ],
- "translate": [
- { "curve": "stepped" },
- { "time": 0.4 }
- ],
- "scale": [
- { "curve": "stepped" },
- { "time": 0.4 }
- ]
- },
- "right feet-front": {
- "rotate": [
- { "curve": "stepped" },
- { "time": 0.4 }
- ],
- "translate": [
- { "curve": "stepped" },
- { "time": 0.4 }
- ],
- "scale": [
- { "curve": "stepped" },
- { "time": 0.4 }
- ]
- },
- "bone_left": {
- "translate": [
- { "x": 918.63, "y": 47.79, "curve": "stepped" },
- { "time": 0.4, "x": 918.63, "y": 47.79 }
- ]
- },
- "bone_front": {
- "translate": [
- { "x": -515.07, "y": -10.62, "curve": "stepped" },
- { "time": 0.4, "x": -515.07, "y": -10.62 }
- ]
- },
- "tx3": {
- "translate": [
- { "time": 0.2333, "x": -3.58, "y": 0.53 },
- { "time": 0.3, "x": -1.19, "y": -15.29 },
- { "time": 0.3667, "x": 1.84, "y": -40.97 }
- ],
- "shear": [
- { "time": 0.2333, "x": 23.73, "y": 2.57 }
- ]
- }
- },
- "events": [
- { "time": 0.2, "name": "fire1" }
- ]
- },
- "atk_left": {
- "slots": {
- "body-back": {
- "attachment": [
- { "name": null }
- ]
- },
- "body-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "duqi-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "ear1-back": {
- "attachment": [
- { "name": null }
- ]
- },
- "ear1-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "ear2-back": {
- "attachment": [
- { "name": null }
- ]
- },
- "ear2-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "eye1-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "eye2-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "gun-back": {
- "attachment": [
- { "name": null }
- ]
- },
- "gun-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "hair-back": {
- "attachment": [
- { "name": null }
- ]
- },
- "hair-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "head-back": {
- "attachment": [
- { "name": null }
- ]
- },
- "head-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "left arm1-back": {
- "attachment": [
- { "name": null }
- ]
- },
- "left arm2-back": {
- "attachment": [
- { "name": null }
- ]
- },
- "left arm2-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "left feet-back": {
- "attachment": [
- { "name": null }
- ]
- },
- "left feet-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "left hand-back": {
- "attachment": [
- { "name": null }
- ]
- },
- "left hand-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "mouth-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "right arm1-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "right arm2-back": {
- "attachment": [
- { "name": null }
- ]
- },
- "right arm2-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "right feet-back": {
- "attachment": [
- { "name": null }
- ]
- },
- "right feet-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "right hand-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "trousers-back": {
- "attachment": [
- { "name": null }
- ]
- },
- "trousers-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "tx": {
- "color": [
- { "time": 0.2, "color": "fffffffe" }
- ],
- "attachment": [
- { "time": 0.2, "name": "baodian_02_00" },
- { "time": 0.2333, "name": "baodian_02_01" },
- { "time": 0.2667, "name": "baodian_02_02" },
- { "time": 0.3, "name": "baodian_02_03" },
- { "time": 0.3333, "name": null }
- ]
- },
- "weijin1-back": {
- "attachment": [
- { "name": null }
- ]
- },
- "weijin1-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "weijjin2-back": {
- "attachment": [
- { "name": null }
- ]
- },
- "weijjin2-front": {
- "attachment": [
- { "name": null }
- ]
- }
- },
- "bones": {
- "bone_left2": {
- "translate": [
- {}
- ]
- },
- "left feet": {
- "translate": [
- {}
- ]
- },
- "right feet": {
- "translate": [
- {}
- ]
- },
- "body": {
- "rotate": [
- { "angle": 0.07, "curve": "stepped" },
- { "time": 0.1667, "angle": 0.07 },
- { "time": 0.2333, "angle": -5.67 },
- { "time": 0.3, "angle": 8.94 },
- { "time": 0.3667, "angle": 0.07 }
- ],
- "translate": [
- {},
- { "time": 0.1667, "y": 2.34 },
- { "time": 0.2333, "x": 7.43, "y": 2.93 },
- { "time": 0.3, "x": -7.83, "y": 5.07 },
- { "time": 0.3667 }
- ]
- },
- "head": {
- "rotate": [
- { "angle": 0.44, "curve": 0.382, "c2": 0.57, "c3": 0.735 },
- { "time": 0.1667, "angle": -0.98 },
- { "time": 0.2333, "angle": -8.73 },
- { "time": 0.3333, "angle": -0.54 },
- { "time": 0.3667, "angle": 0.44 }
- ],
- "translate": [
- {},
- { "time": 0.1333, "x": 1.56, "y": -0.07 },
- { "time": 0.3, "x": 1.88, "y": 3.03 },
- { "time": 0.3667 }
- ]
- },
- "eye1": {
- "rotate": [
- { "angle": 6.31 },
- { "time": 0.0667 },
- { "time": 0.2333, "angle": 3.63 },
- { "time": 0.3, "angle": -5.55 },
- { "time": 0.3667, "angle": 6.31 }
- ],
- "translate": [
- {}
- ]
- },
- "eye2": {
- "rotate": [
- { "angle": -6.4 },
- { "time": 0.0667 },
- { "time": 0.2333, "angle": -12.31 },
- { "time": 0.3, "angle": 5.76 },
- { "time": 0.3667, "angle": -6.4 }
- ],
- "translate": [
- {}
- ]
- },
- "ear2": {
- "rotate": [
- { "angle": 5.57 },
- { "time": 0.0333, "angle": -5.26 },
- { "time": 0.1, "angle": -0.85, "curve": 0.25, "c3": 0.75 },
- { "time": 0.2667, "angle": -10.76 },
- { "time": 0.3333, "angle": 16.4 },
- { "time": 0.3667, "angle": 5.57 }
- ]
- },
- "hair": {
- "rotate": [
- { "angle": 0.8 },
- { "time": 0.0333, "angle": -5.38 },
- { "time": 0.1, "angle": -0.62, "curve": 0.25, "c3": 0.75 },
- { "time": 0.2667, "angle": -6.96 },
- { "time": 0.3333, "angle": 6.98 },
- { "time": 0.3667, "angle": 0.8 }
- ]
- },
- "ear1": {
- "rotate": [
- { "angle": 1.15 },
- { "time": 0.0333, "angle": 7.67 },
- { "time": 0.1, "angle": 1.34, "curve": 0.375, "c2": 0.62, "c3": 0.716 },
- { "time": 0.2667, "angle": 7.31 },
- { "time": 0.3333, "angle": -5.38 },
- { "time": 0.3667, "angle": 1.15 }
- ]
- },
- "weijjin2": {
- "rotate": [
- { "angle": 1.81 },
- { "time": 0.1667, "angle": -2.9 },
- { "time": 0.2333, "angle": 1.46 },
- { "time": 0.3, "angle": -2.76 },
- { "time": 0.3667, "angle": 1.81 }
- ]
- },
- "weijjin3": {
- "rotate": [
- { "angle": -6.85, "curve": 0.25, "c3": 0.75 },
- { "time": 0.0667, "angle": 0.84, "curve": 0.25, "c3": 0.75 },
- { "time": 0.2333, "angle": -6.18, "curve": 0.25, "c3": 0.75 },
- { "time": 0.3, "angle": 0.35, "curve": 0.25, "c3": 0.75 },
- { "time": 0.3667, "angle": -6.85 }
- ]
- },
- "weijjin4": {
- "rotate": [
- { "angle": -12.95 },
- { "time": 0.0333, "angle": -18.64 },
- { "time": 0.1, "angle": -12.9 },
- { "time": 0.2667, "angle": -19.8 },
- { "time": 0.3333, "angle": -7.26 },
- { "time": 0.3667, "angle": -12.95 }
- ]
- },
- "K2": {
- "rotate": [
- { "curve": "stepped" },
- { "time": 0.1333, "curve": "stepped" },
- { "time": 0.2, "curve": "stepped" },
- { "time": 0.2667, "curve": "stepped" },
- { "time": 0.3667 }
- ],
- "translate": [
- { "curve": 0.29, "c3": 0.629, "c4": 0.38 },
- { "time": 0.1333, "y": 3.12, "curve": 0.321, "c2": 0.28, "c3": 0.655, "c4": 0.62 },
- {
- "time": 0.2,
- "x": 24.15,
- "y": -21.01,
- "curve": 0.325,
- "c2": 0.3,
- "c3": 0.659,
- "c4": 0.64
- },
- {
- "time": 0.2667,
- "x": -10.63,
- "y": 15.49,
- "curve": 0.327,
- "c2": 0.31,
- "c3": 0.662,
- "c4": 0.65
- },
- { "time": 0.3667 }
- ]
- },
- "bone_left4": {
- "rotate": [
- { "curve": "stepped" },
- { "time": 0.1333, "curve": "stepped" },
- { "time": 0.2, "curve": "stepped" },
- { "time": 0.2667, "curve": "stepped" },
- { "time": 0.3667 }
- ],
- "translate": [
- { "curve": 0.261, "c3": 0.618, "c4": 0.44 },
- { "time": 0.1333, "y": 3.12, "curve": 0.327, "c2": 0.31, "c3": 0.665, "c4": 0.66 },
- {
- "time": 0.2,
- "x": 24.15,
- "y": -21.35,
- "curve": 0.342,
- "c2": 0.36,
- "c3": 0.681,
- "c4": 0.71
- },
- { "time": 0.2667, "x": -11.43, "y": 14.98, "curve": 0.381, "c2": 0.59, "c3": 0.727 },
- { "time": 0.3667 }
- ]
- },
- "right hand": {
- "translate": [
- { "curve": "stepped" },
- { "time": 0.3667 }
- ]
- },
- "tx": {
- "rotate": [
- { "time": 0.2, "angle": -5.03 }
- ],
- "translate": [
- { "time": 0.2, "x": -70.7, "y": 13.8 },
- { "time": 0.2667, "x": -94.89, "y": 14.58 },
- { "time": 0.3333, "x": -131.24, "y": 20.69 }
- ]
- }
- },
- "events": [
- { "time": 0.2, "name": "fire1" }
- ]
- },
- "atk_right": {
- "slots": {
- "body-back": {
- "attachment": [
- { "name": null }
- ]
- },
- "body-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "duqi-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "ear1-back": {
- "attachment": [
- { "name": null }
- ]
- },
- "ear1-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "ear2-back": {
- "attachment": [
- { "name": null }
- ]
- },
- "ear2-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "eye1-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "eye2-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "gun-back": {
- "attachment": [
- { "name": null }
- ]
- },
- "gun-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "hair-back": {
- "attachment": [
- { "name": null }
- ]
- },
- "hair-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "head-back": {
- "attachment": [
- { "name": null }
- ]
- },
- "head-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "left arm1-back": {
- "attachment": [
- { "name": null }
- ]
- },
- "left arm2-back": {
- "attachment": [
- { "name": null }
- ]
- },
- "left arm2-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "left feet-back": {
- "attachment": [
- { "name": null }
- ]
- },
- "left feet-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "left hand-back": {
- "attachment": [
- { "name": null }
- ]
- },
- "left hand-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "mouth-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "right arm1-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "right arm2-back": {
- "attachment": [
- { "name": null }
- ]
- },
- "right arm2-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "right feet-back": {
- "attachment": [
- { "name": null }
- ]
- },
- "right feet-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "right hand-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "trousers-back": {
- "attachment": [
- { "name": null }
- ]
- },
- "trousers-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "tx": {
- "color": [
- { "time": 0.2, "color": "fffffffe" }
- ],
- "attachment": [
- { "time": 0.2, "name": "baodian_02_00" },
- { "time": 0.2333, "name": "baodian_02_01" },
- { "time": 0.2667, "name": "baodian_02_02" },
- { "time": 0.3, "name": "baodian_02_03" },
- { "time": 0.3333, "name": null }
- ]
- },
- "weijin1-back": {
- "attachment": [
- { "name": null }
- ]
- },
- "weijin1-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "weijjin2-back": {
- "attachment": [
- { "name": null }
- ]
- },
- "weijjin2-front": {
- "attachment": [
- { "name": null }
- ]
- }
- },
- "bones": {
- "bone_left2": {
- "translate": [
- {}
- ],
- "scale": [
- { "x": -1 }
- ]
- },
- "left feet": {
- "translate": [
- {}
- ]
- },
- "right feet": {
- "translate": [
- {}
- ]
- },
- "body": {
- "rotate": [
- { "angle": 0.07, "curve": "stepped" },
- { "time": 0.1667, "angle": 0.07 },
- { "time": 0.2333, "angle": -5.67 },
- { "time": 0.3, "angle": 8.94 },
- { "time": 0.3667, "angle": 0.07 }
- ],
- "translate": [
- {},
- { "time": 0.1667, "y": 2.34 },
- { "time": 0.2333, "x": 7.43, "y": 2.93 },
- { "time": 0.3, "x": -7.83, "y": 5.07 },
- { "time": 0.3667 }
- ]
- },
- "head": {
- "rotate": [
- { "angle": 0.44, "curve": 0.382, "c2": 0.57, "c3": 0.735 },
- { "time": 0.1667, "angle": -0.98 },
- { "time": 0.2333, "angle": -8.73 },
- { "time": 0.3333, "angle": -0.54 },
- { "time": 0.3667, "angle": 0.44 }
- ],
- "translate": [
- {},
- { "time": 0.1333, "x": 1.56, "y": -0.07 },
- { "time": 0.3, "x": 1.88, "y": 3.03 },
- { "time": 0.3667 }
- ]
- },
- "eye1": {
- "rotate": [
- { "angle": 6.31 },
- { "time": 0.0667 },
- { "time": 0.2333, "angle": 3.63 },
- { "time": 0.3, "angle": -5.55 },
- { "time": 0.3667, "angle": 6.31 }
- ],
- "translate": [
- {}
- ]
- },
- "eye2": {
- "rotate": [
- { "angle": -6.4 },
- { "time": 0.0667 },
- { "time": 0.2333, "angle": -12.31 },
- { "time": 0.3, "angle": 5.76 },
- { "time": 0.3667, "angle": -6.4 }
- ],
- "translate": [
- {}
- ]
- },
- "ear2": {
- "rotate": [
- { "angle": 5.57 },
- { "time": 0.0333, "angle": -5.26 },
- { "time": 0.1, "angle": -0.85, "curve": 0.25, "c3": 0.75 },
- { "time": 0.2667, "angle": -10.76 },
- { "time": 0.3333, "angle": 16.4 },
- { "time": 0.3667, "angle": 5.57 }
- ]
- },
- "hair": {
- "rotate": [
- { "angle": 0.8 },
- { "time": 0.0333, "angle": -5.38 },
- { "time": 0.1, "angle": -0.62, "curve": 0.25, "c3": 0.75 },
- { "time": 0.2667, "angle": -6.96 },
- { "time": 0.3333, "angle": 6.98 },
- { "time": 0.3667, "angle": 0.8 }
- ]
- },
- "ear1": {
- "rotate": [
- { "angle": 1.15 },
- { "time": 0.0333, "angle": 7.67 },
- { "time": 0.1, "angle": 1.34, "curve": 0.375, "c2": 0.62, "c3": 0.716 },
- { "time": 0.2667, "angle": 7.31 },
- { "time": 0.3333, "angle": -5.38 },
- { "time": 0.3667, "angle": 1.15 }
- ]
- },
- "weijjin2": {
- "rotate": [
- { "angle": 1.81 },
- { "time": 0.1667, "angle": -2.9 },
- { "time": 0.2333, "angle": 1.46 },
- { "time": 0.3, "angle": -2.76 },
- { "time": 0.3667, "angle": 1.81 }
- ]
- },
- "weijjin3": {
- "rotate": [
- { "angle": -6.85, "curve": 0.25, "c3": 0.75 },
- { "time": 0.0667, "angle": 0.84, "curve": 0.25, "c3": 0.75 },
- { "time": 0.2333, "angle": -6.18, "curve": 0.25, "c3": 0.75 },
- { "time": 0.3, "angle": 0.35, "curve": 0.25, "c3": 0.75 },
- { "time": 0.3667, "angle": -6.85 }
- ]
- },
- "weijjin4": {
- "rotate": [
- { "angle": -12.95 },
- { "time": 0.0333, "angle": -18.64 },
- { "time": 0.1, "angle": -12.9 },
- { "time": 0.2667, "angle": -19.8 },
- { "time": 0.3333, "angle": -7.26 },
- { "time": 0.3667, "angle": -12.95 }
- ]
- },
- "K2": {
- "rotate": [
- { "curve": "stepped" },
- { "time": 0.1333, "curve": "stepped" },
- { "time": 0.2, "curve": "stepped" },
- { "time": 0.2667, "curve": "stepped" },
- { "time": 0.3667 }
- ],
- "translate": [
- { "curve": 0.29, "c3": 0.629, "c4": 0.38 },
- { "time": 0.1333, "y": 3.12, "curve": 0.321, "c2": 0.28, "c3": 0.655, "c4": 0.62 },
- {
- "time": 0.2,
- "x": 24.15,
- "y": -21.01,
- "curve": 0.325,
- "c2": 0.3,
- "c3": 0.659,
- "c4": 0.64
- },
- {
- "time": 0.2667,
- "x": -10.63,
- "y": 15.49,
- "curve": 0.327,
- "c2": 0.31,
- "c3": 0.662,
- "c4": 0.65
- },
- { "time": 0.3667 }
- ]
- },
- "bone_left4": {
- "rotate": [
- { "curve": "stepped" },
- { "time": 0.1333, "curve": "stepped" },
- { "time": 0.2, "curve": "stepped" },
- { "time": 0.2667, "curve": "stepped" },
- { "time": 0.3667 }
- ],
- "translate": [
- { "curve": 0.261, "c3": 0.618, "c4": 0.44 },
- { "time": 0.1333, "y": 3.12, "curve": 0.327, "c2": 0.31, "c3": 0.665, "c4": 0.66 },
- {
- "time": 0.2,
- "x": 24.15,
- "y": -21.35,
- "curve": 0.342,
- "c2": 0.36,
- "c3": 0.681,
- "c4": 0.71
- },
- { "time": 0.2667, "x": -11.43, "y": 14.98, "curve": 0.381, "c2": 0.59, "c3": 0.727 },
- { "time": 0.3667 }
- ]
- },
- "right hand": {
- "translate": [
- { "curve": "stepped" },
- { "time": 0.3667 }
- ]
- },
- "tx": {
- "rotate": [
- { "time": 0.2, "angle": -5.03 }
- ],
- "translate": [
- { "time": 0.2, "x": -70.7, "y": 13.8 },
- { "time": 0.2667, "x": -94.89, "y": 14.58 },
- { "time": 0.3333, "x": -131.24, "y": 20.69 }
- ]
- }
- },
- "events": [
- { "time": 0.2, "name": "fire1" }
- ]
- },
- "atk_up": {
- "slots": {
- "body": {
- "attachment": [
- { "name": null },
- { "time": 0.4, "name": null }
- ]
- },
- "body-back": {
- "attachment": [
- { "name": "body-back" },
- { "time": 0.4, "name": "body-back" }
- ]
- },
- "body-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "duqi-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "ear1": {
- "attachment": [
- { "name": null },
- { "time": 0.4, "name": null }
- ]
- },
- "ear1-back": {
- "attachment": [
- { "name": "ear1-back" },
- { "time": 0.4, "name": "ear1-back" }
- ]
- },
- "ear1-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "ear2": {
- "attachment": [
- { "name": null },
- { "time": 0.4, "name": null }
- ]
- },
- "ear2-back": {
- "attachment": [
- { "name": "ear2-back" },
- { "time": 0.4, "name": "ear2-back" }
- ]
- },
- "ear2-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "eye1": {
- "attachment": [
- { "name": null },
- { "time": 0.4, "name": null }
- ]
- },
- "eye1-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "eye2": {
- "attachment": [
- { "name": null },
- { "time": 0.4, "name": null }
- ]
- },
- "eye2-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "gun": {
- "attachment": [
- { "name": null },
- { "time": 0.4, "name": null }
- ]
- },
- "gun-back": {
- "attachment": [
- { "name": "gun-back" },
- { "time": 0.4, "name": "gun-back" }
- ]
- },
- "gun-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "hair": {
- "attachment": [
- { "name": null },
- { "time": 0.4, "name": null }
- ]
- },
- "hair-back": {
- "attachment": [
- { "name": "hair-back" },
- { "time": 0.4, "name": "hair-back" }
- ]
- },
- "hair-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "head": {
- "attachment": [
- { "name": null },
- { "time": 0.4, "name": null }
- ]
- },
- "head-back": {
- "attachment": [
- { "name": "head-back" },
- { "time": 0.4, "name": "head-back" }
- ]
- },
- "head-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "left arm1": {
- "attachment": [
- { "name": null },
- { "time": 0.4, "name": null }
- ]
- },
- "left arm1-back": {
- "attachment": [
- { "name": "left arm1-back" },
- { "time": 0.4, "name": "left arm1-back" }
- ]
- },
- "left arm2": {
- "attachment": [
- { "name": null },
- { "time": 0.4, "name": null }
- ]
- },
- "left arm2-back": {
- "attachment": [
- { "name": "left arm2-back" },
- { "time": 0.4, "name": "left arm2-back" }
- ]
- },
- "left arm2-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "left feet": {
- "attachment": [
- { "name": null },
- { "time": 0.4, "name": null }
- ]
- },
- "left feet-back": {
- "attachment": [
- { "name": "left feet-back" },
- { "time": 0.4, "name": "left feet-back" }
- ]
- },
- "left feet-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "left hand": {
- "attachment": [
- { "name": null },
- { "time": 0.4, "name": null }
- ]
- },
- "left hand-back": {
- "attachment": [
- { "name": "left hand-back" },
- { "time": 0.4, "name": "left hand-back" }
- ]
- },
- "left hand-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "mouth": {
- "attachment": [
- { "name": null },
- { "time": 0.4, "name": null }
- ]
- },
- "mouth-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "right arm1": {
- "attachment": [
- { "name": null },
- { "time": 0.4, "name": null }
- ]
- },
- "right arm1-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "right arm2": {
- "attachment": [
- { "name": null },
- { "time": 0.4, "name": null }
- ]
- },
- "right arm2-back": {
- "attachment": [
- { "name": "right arm2-back" },
- { "time": 0.4, "name": "right arm2-back" }
- ]
- },
- "right arm2-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "right feet": {
- "attachment": [
- { "name": null },
- { "time": 0.4, "name": null }
- ]
- },
- "right feet-back": {
- "attachment": [
- { "name": "right feet-back" },
- { "time": 0.4, "name": "right feet-back" }
- ]
- },
- "right feet-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "right hand": {
- "attachment": [
- { "name": null },
- { "time": 0.4, "name": null }
- ]
- },
- "right hand-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "trousers": {
- "attachment": [
- { "name": null },
- { "time": 0.4, "name": null }
- ]
- },
- "trousers-back": {
- "attachment": [
- { "name": "trousers-back" },
- { "time": 0.4, "name": "trousers-back" }
- ]
- },
- "trousers-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "tx2": {
- "color": [
- { "time": 0.2, "color": "ffffffff" }
- ],
- "attachment": [
- { "time": 0.2, "name": "baodian_02_00" },
- { "time": 0.2333, "name": "baodian_02_01" },
- { "time": 0.2667, "name": "baodian_02_02" },
- { "time": 0.3, "name": "baodian_02_03" },
- { "time": 0.3333, "name": null }
- ]
- },
- "weijin1": {
- "attachment": [
- { "name": null },
- { "time": 0.4, "name": null }
- ]
- },
- "weijin1-back": {
- "attachment": [
- { "name": "weijin1-back" },
- { "time": 0.4, "name": "weijin1-back" }
- ]
- },
- "weijin1-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "weijjin2": {
- "attachment": [
- { "name": null },
- { "time": 0.4, "name": null }
- ]
- },
- "weijjin2-back": {
- "attachment": [
- { "name": "weijjin2-back" },
- { "time": 0.4, "name": "weijjin2-back" }
- ]
- },
- "weijjin2-front": {
- "attachment": [
- { "name": null }
- ]
- }
- },
- "bones": {
- "K3": {
- "rotate": [
- {},
- { "time": 0.1333, "angle": 5.79 },
- { "time": 0.2, "angle": 4.34 },
- { "time": 0.2667, "angle": 9.97 },
- { "time": 0.4 }
- ],
- "translate": [
- {},
- { "time": 0.1333, "x": -34.52, "y": 48.96 },
- { "time": 0.2, "x": -41.05, "y": -22.07 },
- { "time": 0.2667, "x": -44.31, "y": 60.25 },
- { "time": 0.4 }
- ],
- "scale": [
- { "curve": "stepped" },
- { "time": 0.1333, "curve": "stepped" },
- { "time": 0.4 }
- ]
- },
- "left arm1-back": {
- "rotate": [
- { "angle": -140.87, "curve": "stepped" },
- { "time": 0.4, "angle": -140.87 }
- ],
- "translate": [
- { "curve": "stepped" },
- { "time": 0.4 }
- ],
- "scale": [
- { "curve": "stepped" },
- { "time": 0.4 }
- ]
- },
- "left arm2-back": {
- "rotate": [
- { "angle": 116.54 },
- { "time": 0.1333, "angle": 149.63 },
- { "time": 0.2, "angle": 136.11 },
- { "time": 0.2667, "angle": 152.42 },
- { "time": 0.4, "angle": 116.54 }
- ],
- "translate": [
- { "curve": "stepped" },
- { "time": 0.1333, "curve": "stepped" },
- { "time": 0.2 },
- { "time": 0.2667, "x": 11.98, "y": 2.79 },
- { "time": 0.4 }
- ],
- "scale": [
- { "curve": "stepped" },
- { "time": 0.1333, "curve": "stepped" },
- { "time": 0.4 }
- ]
- },
- "left hand-back": {
- "rotate": [
- {},
- { "time": 0.1333, "angle": -5.36 },
- { "time": 0.2, "angle": -6.46 },
- { "time": 0.2667, "angle": 8.29 },
- { "time": 0.4 }
- ],
- "translate": [
- { "curve": "stepped" },
- { "time": 0.4 }
- ],
- "scale": [
- { "curve": "stepped" },
- { "time": 0.4 }
- ]
- },
- "right arm2-back": {
- "rotate": [
- {},
- { "time": 0.1333, "angle": -10.04 },
- { "time": 0.2, "angle": -10.15 },
- { "time": 0.2667, "angle": 21.85 },
- { "time": 0.4 }
- ],
- "translate": [
- {},
- { "time": 0.2, "x": -6.66, "y": -8.3 },
- { "time": 0.4 }
- ],
- "scale": [
- { "curve": "stepped" },
- { "time": 0.4 }
- ]
- },
- "head-back": {
- "rotate": [
- { "curve": "stepped" },
- { "time": 0.1667 },
- { "time": 0.2333, "angle": -8.93 },
- { "time": 0.3, "angle": 5.88 },
- { "time": 0.4 }
- ],
- "translate": [
- {},
- { "time": 0.1667, "x": 3.45, "y": 0.08 },
- { "time": 0.2333, "x": -7.04, "y": -0.78 },
- { "time": 0.3, "x": 6.58, "y": -1.03 },
- { "time": 0.4 }
- ],
- "scale": [
- { "curve": "stepped" },
- { "time": 0.4 }
- ]
- },
- "ear1-back": {
- "rotate": [
- { "angle": -12.72 },
- { "time": 0.1 },
- { "time": 0.3, "angle": -25.43 },
- { "time": 0.4, "angle": -12.72 }
- ],
- "translate": [
- { "curve": "stepped" },
- { "time": 0.4 }
- ],
- "scale": [
- { "curve": "stepped" },
- { "time": 0.4 }
- ]
- },
- "ear2-back": {
- "rotate": [
- { "angle": -12.72 },
- { "time": 0.1 },
- { "time": 0.3, "angle": -25.43 },
- { "time": 0.4, "angle": -12.72 }
- ],
- "translate": [
- { "curve": "stepped" },
- { "time": 0.4 }
- ],
- "scale": [
- { "curve": "stepped" },
- { "time": 0.4 }
- ]
- },
- "hair-back": {
- "rotate": [
- { "angle": 10.84, "curve": 0.351, "c2": 0.4, "c3": 0.757 },
- { "time": 0.1333 },
- { "time": 0.3333, "angle": 15.13, "curve": 0.265, "c3": 0.618, "c4": 0.43 },
- { "time": 0.4, "angle": 10.84 }
- ],
- "translate": [
- { "curve": "stepped" },
- { "time": 0.4 }
- ],
- "scale": [
- { "curve": "stepped" },
- { "time": 0.4 }
- ]
- },
- "left feet-back": {
- "rotate": [
- { "curve": "stepped" },
- { "time": 0.4 }
- ],
- "translate": [
- { "curve": "stepped" },
- { "time": 0.4 }
- ],
- "scale": [
- { "curve": "stepped" },
- { "time": 0.4 }
- ]
- },
- "body-back": {
- "rotate": [
- { "curve": "stepped" },
- { "time": 0.4 }
- ],
- "translate": [
- { "curve": "stepped" },
- { "time": 0.4 }
- ],
- "scale": [
- { "curve": "stepped" },
- { "time": 0.4 }
- ]
- },
- "right feet-back": {
- "rotate": [
- { "curve": "stepped" },
- { "time": 0.4 }
- ],
- "translate": [
- { "curve": "stepped" },
- { "time": 0.4 }
- ],
- "scale": [
- { "curve": "stepped" },
- { "time": 0.4 }
- ]
- },
- "weijjin2-back": {
- "rotate": [
- { "angle": 3.27, "curve": 0.382, "c2": 0.57, "c3": 0.735 },
- { "time": 0.0667, "angle": 7.18 },
- { "time": 0.2667, "angle": -6.61, "curve": 0.243, "c3": 0.649, "c4": 0.6 },
- { "time": 0.4, "angle": 3.27 }
- ],
- "translate": [
- { "curve": "stepped" },
- { "time": 0.4 }
- ],
- "scale": [
- { "curve": "stepped" },
- { "time": 0.4 }
- ]
- },
- "body-back2": {
- "rotate": [
- { "curve": "stepped" },
- { "time": 0.1667 },
- { "time": 0.2333, "angle": -9.86 },
- { "time": 0.3, "angle": 11.28 },
- { "time": 0.4 }
- ],
- "translate": [
- {},
- { "time": 0.1667, "y": 3.45 },
- { "time": 0.2333, "y": -6.03 },
- { "time": 0.3, "x": -1.72, "y": 8.62 },
- { "time": 0.4 }
- ],
- "scale": [
- { "curve": "stepped" },
- { "time": 0.4 }
- ]
- },
- "bone_left": {
- "translate": [
- { "x": 349.66, "curve": "stepped" },
- { "time": 0.4, "x": 349.66 }
- ]
- },
- "bone_back": {
- "translate": [
- { "x": 448.45, "y": 1.57, "curve": "stepped" },
- { "time": 0.4, "x": 448.45, "y": 1.57 }
- ]
- },
- "weijjin2-back2": {
- "rotate": [
- { "angle": -5.28, "curve": 0.311, "c2": 0.25, "c3": 0.757 },
- { "time": 0.1667, "angle": 7.18 },
- { "time": 0.3667, "angle": -6.61, "curve": 0.29, "c3": 0.629, "c4": 0.38 },
- { "time": 0.4, "angle": -5.28 }
- ],
- "translate": [
- { "curve": "stepped" },
- { "time": 0.4 }
- ],
- "scale": [
- { "curve": "stepped" },
- { "time": 0.4 }
- ]
- },
- "weijjin2-back3": {
- "rotate": [
- { "angle": -2.01 },
- { "time": 0.0667, "angle": -6.61, "curve": 0.25, "c3": 0.75 },
- { "time": 0.2667, "angle": 7.18 },
- { "time": 0.4, "angle": -2.01 }
- ],
- "translate": [
- { "curve": "stepped" },
- { "time": 0.2667, "curve": "stepped" },
- { "time": 0.4 }
- ],
- "scale": [
- { "curve": "stepped" },
- { "time": 0.2667, "curve": "stepped" },
- { "time": 0.4 }
- ]
- },
- "tx2": {
- "rotate": [
- { "time": 0.2, "angle": -7.94 }
- ],
- "translate": [
- { "time": 0.2, "x": 6.18, "y": -10.77 },
- { "time": 0.2333, "x": 8.98, "y": 6.56 }
- ]
- }
- },
- "drawOrder": [
- {
- "time": 0.2,
- "offsets": [
- { "slot": "tx2", "offset": -12 }
- ]
- }
- ],
- "events": [
- { "time": 0.2, "name": "fire1" }
- ]
- },
- "idle_down": {
- "slots": {
- "body": {
- "attachment": [
- { "name": null }
- ]
- },
- "body-back": {
- "attachment": [
- { "name": null }
- ]
- },
- "ear1": {
- "attachment": [
- { "name": null }
- ]
- },
- "ear1-back": {
- "attachment": [
- { "name": null }
- ]
- },
- "ear2": {
- "attachment": [
- { "name": null }
- ]
- },
- "ear2-back": {
- "attachment": [
- { "name": null }
- ]
- },
- "eye1": {
- "attachment": [
- { "name": null }
- ]
- },
- "eye2": {
- "attachment": [
- { "name": null }
- ]
- },
- "gun": {
- "attachment": [
- { "name": null }
- ]
- },
- "gun-back": {
- "attachment": [
- { "name": null }
- ]
- },
- "hair": {
- "attachment": [
- { "name": null }
- ]
- },
- "hair-back": {
- "attachment": [
- { "name": null }
- ]
- },
- "head": {
- "attachment": [
- { "name": null }
- ]
- },
- "head-back": {
- "attachment": [
- { "name": null }
- ]
- },
- "left arm1": {
- "attachment": [
- { "name": null }
- ]
- },
- "left arm1-back": {
- "attachment": [
- { "name": null }
- ]
- },
- "left arm2": {
- "attachment": [
- { "name": null }
- ]
- },
- "left arm2-back": {
- "attachment": [
- { "name": null }
- ]
- },
- "left feet": {
- "attachment": [
- { "name": null }
- ]
- },
- "left feet-back": {
- "attachment": [
- { "name": null }
- ]
- },
- "left hand": {
- "attachment": [
- { "name": null }
- ]
- },
- "left hand-back": {
- "attachment": [
- { "name": null }
- ]
- },
- "mouth": {
- "attachment": [
- { "name": null }
- ]
- },
- "right arm1": {
- "attachment": [
- { "name": null }
- ]
- },
- "right arm2": {
- "attachment": [
- { "name": null }
- ]
- },
- "right arm2-back": {
- "attachment": [
- { "name": null }
- ]
- },
- "right feet": {
- "attachment": [
- { "name": null }
- ]
- },
- "right feet-back": {
- "attachment": [
- { "name": null }
- ]
- },
- "right hand": {
- "attachment": [
- { "name": null }
- ]
- },
- "trousers": {
- "attachment": [
- { "name": null }
- ]
- },
- "trousers-back": {
- "attachment": [
- { "name": null }
- ]
- },
- "weijin1": {
- "attachment": [
- { "name": null }
- ]
- },
- "weijin1-back": {
- "attachment": [
- { "name": null }
- ]
- },
- "weijjin2": {
- "attachment": [
- { "name": null }
- ]
- },
- "weijjin2-back": {
- "attachment": [
- { "name": null }
- ]
- }
- },
- "bones": {
- "body-front": {
- "rotate": [
- { "curve": "stepped" },
- { "time": 1 }
- ],
- "translate": [
- { "curve": "stepped" },
- { "time": 1 }
- ],
- "scale": [
- { "curve": "stepped" },
- { "time": 1 }
- ]
- },
- "body-front2": {
- "rotate": [
- { "curve": "stepped" },
- { "time": 1 }
- ],
- "translate": [
- { "y": -0.2, "curve": 0.366, "c2": 0.63, "c3": 0.703 },
- { "time": 0.0667 },
- { "time": 0.5667, "y": -2.9, "curve": 0.244, "c3": 0.7, "c4": 0.79 },
- { "time": 1, "y": -0.2 }
- ],
- "scale": [
- { "curve": "stepped" },
- { "time": 1 }
- ]
- },
- "head-front": {
- "rotate": [
- { "curve": "stepped" },
- { "time": 0.1, "curve": "stepped" },
- { "time": 1 }
- ],
- "translate": [
- { "x": -0.42, "y": 0.01 },
- { "time": 0.1 },
- { "time": 0.6, "x": -2.12, "y": 0.03 },
- { "time": 1, "x": -0.42, "y": 0.01 }
- ],
- "scale": [
- { "curve": "stepped" },
- { "time": 1 }
- ]
- },
- "eye2-front": {
- "rotate": [
- { "angle": 1.32 },
- { "time": 0.1333 },
- { "time": 0.6333, "angle": 4.96 },
- { "time": 1, "angle": 1.32 }
- ],
- "translate": [
- { "curve": "stepped" },
- { "time": 0.1333, "curve": "stepped" },
- { "time": 1 }
- ],
- "scale": [
- { "curve": "stepped" },
- { "time": 0.1333, "curve": "stepped" },
- { "time": 1 }
- ]
- },
- "eye1-front": {
- "rotate": [
- { "angle": -1.92 },
- { "time": 0.1333 },
- { "time": 0.6333, "angle": -7.2 },
- { "time": 1, "angle": -1.92 }
- ],
- "translate": [
- { "curve": "stepped" },
- { "time": 0.1333, "curve": "stepped" },
- { "time": 1 }
- ],
- "scale": [
- { "curve": "stepped" },
- { "time": 0.1333, "curve": "stepped" },
- { "time": 1 }
- ]
- },
- "ear1-front": {
- "rotate": [
- { "angle": 2.85 },
- { "time": 0.1667 },
- { "time": 0.6667, "angle": 8.54 },
- { "time": 1, "angle": 2.85 }
- ],
- "translate": [
- { "curve": "stepped" },
- { "time": 0.1667, "curve": "stepped" },
- { "time": 1 }
- ],
- "scale": [
- { "curve": "stepped" },
- { "time": 0.1667, "curve": "stepped" },
- { "time": 1 }
- ]
- },
- "ear2-front": {
- "rotate": [
- { "angle": -2.41 },
- { "time": 0.1667 },
- { "time": 0.6667, "angle": -7.22 },
- { "time": 1, "angle": -2.41 }
- ],
- "translate": [
- { "curve": "stepped" },
- { "time": 0.1667, "curve": "stepped" },
- { "time": 1 }
- ],
- "scale": [
- { "curve": "stepped" },
- { "time": 0.1667, "curve": "stepped" },
- { "time": 1 }
- ]
- },
- "hair-front": {
- "rotate": [
- { "angle": -3.04 },
- { "time": 0.1667 },
- { "time": 0.6667, "angle": -9.11 },
- { "time": 1, "angle": -3.04 }
- ],
- "translate": [
- { "curve": "stepped" },
- { "time": 0.1667, "curve": "stepped" },
- { "time": 1 }
- ],
- "scale": [
- { "curve": "stepped" },
- { "time": 0.1667, "curve": "stepped" },
- { "time": 1 }
- ]
- },
- "weijjin2-front": {
- "rotate": [
- { "angle": -2.77 },
- { "time": 0.1333 },
- { "time": 0.6333, "angle": -10.39 },
- { "time": 1, "angle": -2.77 }
- ],
- "translate": [
- { "curve": "stepped" },
- { "time": 0.1333, "curve": "stepped" },
- { "time": 1 }
- ],
- "scale": [
- { "curve": "stepped" },
- { "time": 0.1333, "curve": "stepped" },
- { "time": 1 }
- ]
- },
- "weijjin2-front2": {
- "rotate": [
- { "angle": -1.78 },
- { "time": 0.2 },
- { "time": 0.7, "angle": -4.45 },
- { "time": 1, "angle": -1.78 }
- ],
- "translate": [
- { "curve": "stepped" },
- { "time": 0.2, "curve": "stepped" },
- { "time": 1 }
- ],
- "scale": [
- { "curve": "stepped" },
- { "time": 0.2, "curve": "stepped" },
- { "time": 1 }
- ]
- },
- "weijjin2-front3": {
- "rotate": [
- { "angle": -2.51 },
- { "time": 0.3 },
- { "time": 0.8, "angle": -4.18 },
- { "time": 1, "angle": -2.51 }
- ],
- "translate": [
- { "curve": "stepped" },
- { "time": 0.3, "curve": "stepped" },
- { "time": 1 }
- ],
- "scale": [
- { "curve": "stepped" },
- { "time": 0.3, "curve": "stepped" },
- { "time": 1 }
- ]
- },
- "left arm2-front": {
- "rotate": [
- { "angle": 2.5, "curve": "stepped" },
- { "time": 1, "angle": 2.5 }
- ],
- "translate": [
- { "curve": "stepped" },
- { "time": 1 }
- ],
- "scale": [
- { "curve": "stepped" },
- { "time": 1 }
- ]
- },
- "left hand-front": {
- "rotate": [
- { "angle": -1.63, "curve": "stepped" },
- { "time": 1, "angle": -1.63 }
- ],
- "translate": [
- { "curve": "stepped" },
- { "time": 1 }
- ],
- "scale": [
- { "curve": "stepped" },
- { "time": 1 }
- ]
- },
- "right arm2-front": {
- "rotate": [
- { "curve": "stepped" },
- { "time": 1 }
- ],
- "translate": [
- { "curve": "stepped" },
- { "time": 1 }
- ],
- "scale": [
- { "curve": "stepped" },
- { "time": 1 }
- ]
- },
- "right arm1-front": {
- "rotate": [
- { "angle": -3.16, "curve": "stepped" },
- { "time": 1, "angle": -3.16 }
- ],
- "translate": [
- { "curve": "stepped" },
- { "time": 1 }
- ],
- "scale": [
- { "curve": "stepped" },
- { "time": 1 }
- ]
- },
- "right hand-front": {
- "rotate": [
- { "angle": -10.96, "curve": "stepped" },
- { "time": 1, "angle": -10.96 }
- ],
- "translate": [
- { "curve": "stepped" },
- { "time": 1 }
- ],
- "scale": [
- { "curve": "stepped" },
- { "time": 1 }
- ]
- },
- "gun3": {
- "rotate": [
- {}
- ],
- "translate": [
- {}
- ],
- "scale": [
- {}
- ]
- },
- "K4": {
- "rotate": [
- { "curve": "stepped" },
- { "time": 1 }
- ],
- "translate": [
- {},
- { "time": 0.5, "x": 5.57, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ],
- "scale": [
- { "curve": "stepped" },
- { "time": 1 }
- ]
- },
- "K5": {
- "rotate": [
- { "curve": "stepped" },
- { "time": 1 }
- ],
- "translate": [
- {},
- { "time": 0.5, "x": 3.18, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ],
- "scale": [
- { "curve": "stepped" },
- { "time": 1 }
- ]
- },
- "left feet-front": {
- "rotate": [
- { "curve": "stepped" },
- { "time": 1 }
- ],
- "translate": [
- {},
- { "time": 0.5 },
- { "time": 1 }
- ],
- "scale": [
- { "curve": "stepped" },
- { "time": 1 }
- ]
- },
- "right feet-front": {
- "rotate": [
- { "curve": "stepped" },
- { "time": 1 }
- ],
- "translate": [
- { "curve": "stepped" },
- { "time": 0.5, "curve": "stepped" },
- { "time": 1 }
- ],
- "scale": [
- { "curve": "stepped" },
- { "time": 1 }
- ]
- },
- "bone_left": {
- "translate": [
- { "x": 918.63, "y": 47.79 }
- ]
- },
- "bone_front": {
- "translate": [
- { "x": -515.07, "y": -10.62 }
- ]
- }
- }
- },
- "idle_left": {
- "slots": {
- "body-back": {
- "attachment": [
- { "name": null }
- ]
- },
- "body-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "duqi-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "ear1-back": {
- "attachment": [
- { "name": null }
- ]
- },
- "ear1-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "ear2-back": {
- "attachment": [
- { "name": null }
- ]
- },
- "ear2-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "eye1-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "eye2-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "gun-back": {
- "attachment": [
- { "name": null }
- ]
- },
- "gun-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "hair-back": {
- "attachment": [
- { "name": null }
- ]
- },
- "hair-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "head-back": {
- "attachment": [
- { "name": null }
- ]
- },
- "head-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "left arm1-back": {
- "attachment": [
- { "name": null }
- ]
- },
- "left arm2-back": {
- "attachment": [
- { "name": null }
- ]
- },
- "left arm2-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "left feet-back": {
- "attachment": [
- { "name": null }
- ]
- },
- "left feet-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "left hand-back": {
- "attachment": [
- { "name": null }
- ]
- },
- "left hand-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "mouth-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "right arm1-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "right arm2-back": {
- "attachment": [
- { "name": null }
- ]
- },
- "right arm2-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "right feet-back": {
- "attachment": [
- { "name": null }
- ]
- },
- "right feet-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "right hand-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "trousers-back": {
- "attachment": [
- { "name": null }
- ]
- },
- "trousers-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "weijin1-back": {
- "attachment": [
- { "name": null }
- ]
- },
- "weijin1-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "weijjin2-back": {
- "attachment": [
- { "name": null }
- ]
- },
- "weijjin2-front": {
- "attachment": [
- { "name": null }
- ]
- }
- },
- "bones": {
- "bone_left2": {
- "translate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.5, "y": -2.98, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ]
- },
- "left feet": {
- "translate": [
- {},
- { "time": 0.5, "y": 2.71 },
- { "time": 1 }
- ]
- },
- "right feet": {
- "translate": [
- {},
- { "time": 0.5, "y": 2.98, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ]
- },
- "body": {
- "rotate": [
- { "angle": 0.07, "curve": 0.366, "c2": 0.63, "c3": 0.703 },
- { "time": 0.0667, "curve": 0.25, "c3": 0.75 },
- { "time": 0.5667, "angle": 1.06, "curve": 0.244, "c3": 0.7, "c4": 0.79 },
- { "time": 1, "angle": 0.07 }
- ]
- },
- "head": {
- "rotate": [
- { "angle": 0.44, "curve": 0.382, "c2": 0.57, "c3": 0.735 },
- { "time": 0.1667, "curve": 0.25, "c3": 0.75 },
- { "time": 0.6667, "angle": 1.57, "curve": 0.243, "c3": 0.649, "c4": 0.6 },
- { "time": 1, "angle": 0.44 }
- ]
- },
- "eye1": {
- "rotate": [
- {},
- { "time": 0.5, "angle": 5.17 },
- { "time": 1 }
- ],
- "translate": [
- {},
- { "time": 0.5, "x": 1.66, "y": -0.06 },
- { "time": 1 }
- ]
- },
- "eye2": {
- "rotate": [
- {},
- { "time": 0.5, "angle": -5.8 },
- { "time": 1 }
- ],
- "translate": [
- {},
- { "time": 0.5, "x": 1.66, "y": -0.06 },
- { "time": 1 }
- ]
- },
- "ear2": {
- "rotate": [
- { "angle": -0.85, "curve": 0.375, "c2": 0.62, "c3": 0.716 },
- { "time": 0.1, "curve": 0.25, "c3": 0.75 },
- { "time": 0.6, "angle": -6.55, "curve": 0.243, "c3": 0.68, "c4": 0.71 },
- { "time": 1, "angle": -0.85 }
- ]
- },
- "hair": {
- "rotate": [
- { "angle": -0.62, "curve": 0.366, "c2": 0.63, "c3": 0.703 },
- { "time": 0.0667, "curve": 0.25, "c3": 0.75 },
- { "time": 0.5667, "angle": -8.99, "curve": 0.244, "c3": 0.7, "c4": 0.79 },
- { "time": 1, "angle": -0.62 }
- ]
- },
- "ear1": {
- "rotate": [
- { "angle": 1.34, "curve": 0.375, "c2": 0.62, "c3": 0.716 },
- { "time": 0.1, "curve": 0.25, "c3": 0.75 },
- { "time": 0.6, "angle": 10.29, "curve": 0.243, "c3": 0.68, "c4": 0.71 },
- { "time": 1, "angle": 1.34 }
- ]
- },
- "weijjin2": {
- "rotate": [
- { "angle": -0.86, "curve": 0.382, "c2": 0.57, "c3": 0.735 },
- { "time": 0.1667, "curve": 0.25, "c3": 0.75 },
- { "time": 0.6667, "angle": -3.04, "curve": 0.243, "c3": 0.649, "c4": 0.6 },
- { "time": 1, "angle": -0.86 }
- ]
- },
- "weijjin3": {
- "rotate": [
- { "angle": -3.81, "curve": 0.372, "c2": 0.48, "c3": 0.752 },
- { "time": 0.2667, "curve": 0.25, "c3": 0.75 },
- { "time": 0.7667, "angle": -7.01, "curve": 0.252, "c3": 0.622, "c4": 0.48 },
- { "time": 1, "angle": -3.81 }
- ]
- },
- "weijjin4": {
- "rotate": [
- { "angle": -14.36, "curve": 0.337, "c2": 0.35, "c3": 0.758 },
- { "time": 0.3667, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8667, "angle": -18.01, "curve": 0.273, "c3": 0.62, "c4": 0.41 },
- { "time": 1, "angle": -14.36 }
- ]
- },
- "K2": {
- "rotate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.5, "angle": 2.6, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ],
- "translate": [
- { "curve": 0.252, "c3": 0.622, "c4": 0.48 },
- {
- "time": 0.5,
- "x": 2.81,
- "y": -5.44,
- "curve": 0.361,
- "c2": 0.43,
- "c3": 0.729,
- "c4": 0.89
- },
- { "time": 1 }
- ]
- },
- "bone_left4": {
- "translate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.5, "x": 2.81, "y": -5.44, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ]
- }
- }
- },
- "idle_right": {
- "slots": {
- "body-back": {
- "attachment": [
- { "name": null }
- ]
- },
- "body-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "duqi-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "ear1-back": {
- "attachment": [
- { "name": null }
- ]
- },
- "ear1-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "ear2-back": {
- "attachment": [
- { "name": null }
- ]
- },
- "ear2-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "eye1-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "eye2-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "gun-back": {
- "attachment": [
- { "name": null }
- ]
- },
- "gun-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "hair-back": {
- "attachment": [
- { "name": null }
- ]
- },
- "hair-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "head-back": {
- "attachment": [
- { "name": null }
- ]
- },
- "head-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "left arm1-back": {
- "attachment": [
- { "name": null }
- ]
- },
- "left arm2-back": {
- "attachment": [
- { "name": null }
- ]
- },
- "left arm2-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "left feet-back": {
- "attachment": [
- { "name": null }
- ]
- },
- "left feet-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "left hand-back": {
- "attachment": [
- { "name": null }
- ]
- },
- "left hand-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "mouth-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "right arm1-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "right arm2-back": {
- "attachment": [
- { "name": null }
- ]
- },
- "right arm2-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "right feet-back": {
- "attachment": [
- { "name": null }
- ]
- },
- "right feet-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "right hand-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "trousers-back": {
- "attachment": [
- { "name": null }
- ]
- },
- "trousers-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "weijin1-back": {
- "attachment": [
- { "name": null }
- ]
- },
- "weijin1-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "weijjin2-back": {
- "attachment": [
- { "name": null }
- ]
- },
- "weijjin2-front": {
- "attachment": [
- { "name": null }
- ]
- }
- },
- "bones": {
- "bone_left2": {
- "translate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.5, "y": -2.98, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ]
- },
- "left feet": {
- "translate": [
- {},
- { "time": 0.5, "y": 2.71 },
- { "time": 1 }
- ]
- },
- "right feet": {
- "translate": [
- {},
- { "time": 0.5, "y": 2.98, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ]
- },
- "body": {
- "rotate": [
- { "angle": 0.07, "curve": 0.366, "c2": 0.63, "c3": 0.703 },
- { "time": 0.0667, "curve": 0.25, "c3": 0.75 },
- { "time": 0.5667, "angle": 1.06, "curve": 0.244, "c3": 0.7, "c4": 0.79 },
- { "time": 1, "angle": 0.07 }
- ]
- },
- "head": {
- "rotate": [
- { "angle": 0.44, "curve": 0.382, "c2": 0.57, "c3": 0.735 },
- { "time": 0.1667, "curve": 0.25, "c3": 0.75 },
- { "time": 0.6667, "angle": 1.57, "curve": 0.243, "c3": 0.649, "c4": 0.6 },
- { "time": 1, "angle": 0.44 }
- ]
- },
- "eye1": {
- "rotate": [
- {},
- { "time": 0.5, "angle": 5.17 },
- { "time": 1 }
- ],
- "translate": [
- {},
- { "time": 0.5, "x": 1.66, "y": -0.06 },
- { "time": 1 }
- ]
- },
- "eye2": {
- "rotate": [
- {},
- { "time": 0.5, "angle": -5.8 },
- { "time": 1 }
- ],
- "translate": [
- {},
- { "time": 0.5, "x": 1.66, "y": -0.06 },
- { "time": 1 }
- ]
- },
- "ear2": {
- "rotate": [
- { "angle": -0.85, "curve": 0.375, "c2": 0.62, "c3": 0.716 },
- { "time": 0.1, "curve": 0.25, "c3": 0.75 },
- { "time": 0.6, "angle": -6.55, "curve": 0.243, "c3": 0.68, "c4": 0.71 },
- { "time": 1, "angle": -0.85 }
- ]
- },
- "hair": {
- "rotate": [
- { "angle": -0.62, "curve": 0.366, "c2": 0.63, "c3": 0.703 },
- { "time": 0.0667, "curve": 0.25, "c3": 0.75 },
- { "time": 0.5667, "angle": -8.99, "curve": 0.244, "c3": 0.7, "c4": 0.79 },
- { "time": 1, "angle": -0.62 }
- ]
- },
- "ear1": {
- "rotate": [
- { "angle": 1.34, "curve": 0.375, "c2": 0.62, "c3": 0.716 },
- { "time": 0.1, "curve": 0.25, "c3": 0.75 },
- { "time": 0.6, "angle": 10.29, "curve": 0.243, "c3": 0.68, "c4": 0.71 },
- { "time": 1, "angle": 1.34 }
- ]
- },
- "weijjin2": {
- "rotate": [
- { "angle": -0.86, "curve": 0.382, "c2": 0.57, "c3": 0.735 },
- { "time": 0.1667, "curve": 0.25, "c3": 0.75 },
- { "time": 0.6667, "angle": -3.04, "curve": 0.243, "c3": 0.649, "c4": 0.6 },
- { "time": 1, "angle": -0.86 }
- ]
- },
- "weijjin3": {
- "rotate": [
- { "angle": -3.81, "curve": 0.372, "c2": 0.48, "c3": 0.752 },
- { "time": 0.2667, "curve": 0.25, "c3": 0.75 },
- { "time": 0.7667, "angle": -7.01, "curve": 0.252, "c3": 0.622, "c4": 0.48 },
- { "time": 1, "angle": -3.81 }
- ]
- },
- "weijjin4": {
- "rotate": [
- { "angle": -14.36, "curve": 0.337, "c2": 0.35, "c3": 0.758 },
- { "time": 0.3667, "curve": 0.25, "c3": 0.75 },
- { "time": 0.8667, "angle": -18.01, "curve": 0.273, "c3": 0.62, "c4": 0.41 },
- { "time": 1, "angle": -14.36 }
- ]
- },
- "K2": {
- "rotate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.5, "angle": 2.6, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ],
- "translate": [
- { "curve": 0.252, "c3": 0.622, "c4": 0.48 },
- {
- "time": 0.5,
- "x": 2.81,
- "y": -5.44,
- "curve": 0.361,
- "c2": 0.43,
- "c3": 0.729,
- "c4": 0.89
- },
- { "time": 1 }
- ]
- },
- "bone_left4": {
- "translate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.5, "x": 2.81, "y": -5.44, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ]
- },
- "bone_left": {
- "scale": [
- { "x": -1 }
- ]
- }
- }
- },
- "idle_up": {
- "slots": {
- "body": {
- "attachment": [
- { "name": null }
- ]
- },
- "body-back": {
- "attachment": [
- { "name": "body-back" },
- { "time": 1, "name": "body-back" }
- ]
- },
- "body-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "duqi-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "ear1": {
- "attachment": [
- { "name": null }
- ]
- },
- "ear1-back": {
- "attachment": [
- { "name": "ear1-back" },
- { "time": 1, "name": "ear1-back" }
- ]
- },
- "ear1-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "ear2": {
- "attachment": [
- { "name": null }
- ]
- },
- "ear2-back": {
- "attachment": [
- { "name": "ear2-back" },
- { "time": 1, "name": "ear2-back" }
- ]
- },
- "ear2-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "eye1": {
- "attachment": [
- { "name": null }
- ]
- },
- "eye1-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "eye2": {
- "attachment": [
- { "name": null }
- ]
- },
- "eye2-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "gun": {
- "attachment": [
- { "name": null }
- ]
- },
- "gun-back": {
- "attachment": [
- { "name": "gun-back" },
- { "time": 1, "name": "gun-back" }
- ]
- },
- "gun-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "hair": {
- "attachment": [
- { "name": null }
- ]
- },
- "hair-back": {
- "attachment": [
- { "name": "hair-back" },
- { "time": 1, "name": "hair-back" }
- ]
- },
- "hair-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "head": {
- "attachment": [
- { "name": null }
- ]
- },
- "head-back": {
- "attachment": [
- { "name": "head-back" },
- { "time": 1, "name": "head-back" }
- ]
- },
- "head-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "left arm1": {
- "attachment": [
- { "name": null }
- ]
- },
- "left arm1-back": {
- "attachment": [
- { "name": "left arm1-back" },
- { "time": 1, "name": "left arm1-back" }
- ]
- },
- "left arm2": {
- "attachment": [
- { "name": null }
- ]
- },
- "left arm2-back": {
- "attachment": [
- { "name": "left arm2-back" },
- { "time": 1, "name": "left arm2-back" }
- ]
- },
- "left arm2-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "left feet": {
- "attachment": [
- { "name": null }
- ]
- },
- "left feet-back": {
- "attachment": [
- { "name": "left feet-back" },
- { "time": 1, "name": "left feet-back" }
- ]
- },
- "left feet-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "left hand": {
- "attachment": [
- { "name": null }
- ]
- },
- "left hand-back": {
- "attachment": [
- { "name": "left hand-back" },
- { "time": 1, "name": "left hand-back" }
- ]
- },
- "left hand-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "mouth": {
- "attachment": [
- { "name": null }
- ]
- },
- "mouth-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "right arm1": {
- "attachment": [
- { "name": null }
- ]
- },
- "right arm1-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "right arm2": {
- "attachment": [
- { "name": null }
- ]
- },
- "right arm2-back": {
- "attachment": [
- { "name": "right arm2-back" },
- { "time": 1, "name": "right arm2-back" }
- ]
- },
- "right arm2-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "right feet": {
- "attachment": [
- { "name": null }
- ]
- },
- "right feet-back": {
- "attachment": [
- { "name": "right feet-back" },
- { "time": 1, "name": "right feet-back" }
- ]
- },
- "right feet-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "right hand": {
- "attachment": [
- { "name": null }
- ]
- },
- "right hand-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "trousers": {
- "attachment": [
- { "name": null }
- ]
- },
- "trousers-back": {
- "attachment": [
- { "name": "trousers-back" },
- { "time": 1, "name": "trousers-back" }
- ]
- },
- "trousers-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "weijin1": {
- "attachment": [
- { "name": null }
- ]
- },
- "weijin1-back": {
- "attachment": [
- { "name": "weijin1-back" },
- { "time": 1, "name": "weijin1-back" }
- ]
- },
- "weijin1-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "weijjin2": {
- "attachment": [
- { "name": null }
- ]
- },
- "weijjin2-back": {
- "attachment": [
- { "name": "weijjin2-back" },
- { "time": 1, "name": "weijjin2-back" }
- ]
- },
- "weijjin2-front": {
- "attachment": [
- { "name": null }
- ]
- }
- },
- "bones": {
- "K3": {
- "rotate": [
- { "curve": "stepped" },
- { "time": 1 }
- ],
- "translate": [
- {},
- { "time": 0.5, "x": 1.57, "y": -8.62 },
- { "time": 1 }
- ],
- "scale": [
- { "curve": "stepped" },
- { "time": 1 }
- ]
- },
- "left arm1-back": {
- "rotate": [
- { "angle": -140.87, "curve": "stepped" },
- { "time": 1, "angle": -140.87 }
- ],
- "translate": [
- { "curve": "stepped" },
- { "time": 1 }
- ],
- "scale": [
- { "curve": "stepped" },
- { "time": 1 }
- ]
- },
- "left arm2-back": {
- "rotate": [
- { "angle": 116.54, "curve": "stepped" },
- { "time": 1, "angle": 116.54 }
- ],
- "translate": [
- {},
- { "time": 0.5, "x": -1.57, "y": -0.04 },
- { "time": 1 }
- ],
- "scale": [
- { "curve": "stepped" },
- { "time": 1 }
- ]
- },
- "left hand-back": {
- "rotate": [
- {},
- { "time": 0.5, "angle": -17.64 },
- { "time": 1 }
- ],
- "translate": [
- { "curve": "stepped" },
- { "time": 1 }
- ],
- "scale": [
- { "curve": "stepped" },
- { "time": 1 }
- ]
- },
- "right arm2-back": {
- "rotate": [
- {},
- { "time": 0.5, "angle": 13.72 },
- { "time": 1 }
- ],
- "translate": [
- {},
- { "time": 0.5, "x": -3.76, "y": -7.14 },
- { "time": 1 }
- ],
- "scale": [
- { "curve": "stepped" },
- { "time": 1 }
- ]
- },
- "head-back": {
- "rotate": [
- { "curve": "stepped" },
- { "time": 1 }
- ],
- "translate": [
- {},
- { "time": 0.5, "x": -3.9, "y": -0.87, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ],
- "scale": [
- { "curve": "stepped" },
- { "time": 1 }
- ]
- },
- "ear1-back": {
- "rotate": [
- {},
- { "time": 0.5, "angle": 14.6, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ],
- "translate": [
- { "curve": "stepped" },
- { "time": 1 }
- ],
- "scale": [
- { "curve": "stepped" },
- { "time": 1 }
- ]
- },
- "ear2-back": {
- "rotate": [
- {},
- { "time": 0.5, "angle": -24.71, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ],
- "translate": [
- { "curve": "stepped" },
- { "time": 1 }
- ],
- "scale": [
- { "curve": "stepped" },
- { "time": 1 }
- ]
- },
- "hair-back": {
- "rotate": [
- {},
- { "time": 0.5, "angle": 12.26, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ],
- "translate": [
- { "curve": "stepped" },
- { "time": 1 }
- ],
- "scale": [
- { "curve": "stepped" },
- { "time": 1 }
- ]
- },
- "left feet-back": {
- "rotate": [
- { "curve": "stepped" },
- { "time": 1 }
- ],
- "translate": [
- {},
- { "time": 0.5, "y": 1.43, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ],
- "scale": [
- { "curve": "stepped" },
- { "time": 1 }
- ]
- },
- "body-back": {
- "rotate": [
- { "curve": "stepped" },
- { "time": 1 }
- ],
- "translate": [
- {},
- { "time": 0.5, "y": -1.43, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ],
- "scale": [
- { "curve": "stepped" },
- { "time": 1 }
- ]
- },
- "right feet-back": {
- "rotate": [
- { "curve": "stepped" },
- { "time": 1 }
- ],
- "translate": [
- {},
- { "time": 0.5, "y": 1.43, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ],
- "scale": [
- { "curve": "stepped" },
- { "time": 1 }
- ]
- },
- "weijjin2-back": {
- "rotate": [
- {},
- { "time": 0.5, "angle": 4.34 },
- { "time": 1 }
- ],
- "translate": [
- { "curve": "stepped" },
- { "time": 1 }
- ],
- "scale": [
- { "curve": "stepped" },
- { "time": 1 }
- ]
- },
- "body-back2": {
- "rotate": [
- { "curve": "stepped" },
- { "time": 1 }
- ],
- "translate": [
- {},
- { "time": 0.5, "y": -2.35, "curve": 0.25, "c3": 0.75 },
- { "time": 1 }
- ],
- "scale": [
- { "curve": "stepped" },
- { "time": 1 }
- ]
- },
- "bone_left": {
- "translate": [
- { "x": 349.66 }
- ]
- },
- "bone_back": {
- "translate": [
- { "x": 448.45, "y": 1.57 }
- ]
- },
- "weijjin2-back2": {
- "rotate": [
- {},
- { "time": 0.5, "angle": 7.62 },
- { "time": 1 }
- ],
- "translate": [
- { "curve": "stepped" },
- { "time": 1 }
- ],
- "scale": [
- { "curve": "stepped" },
- { "time": 1 }
- ]
- },
- "weijjin2-back3": {
- "rotate": [
- {},
- { "time": 0.5, "angle": 13 },
- { "time": 1 }
- ],
- "translate": [
- { "curve": "stepped" },
- { "time": 1 }
- ],
- "scale": [
- { "curve": "stepped" },
- { "time": 1 }
- ]
- }
- }
- },
- "show": {
- "slots": {
- "body-back": {
- "attachment": [
- { "name": null }
- ]
- },
- "body-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "duqi-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "ear1-back": {
- "attachment": [
- { "name": null }
- ]
- },
- "ear1-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "ear2-back": {
- "attachment": [
- { "name": null }
- ]
- },
- "ear2-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "eye1-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "eye2-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "gun-back": {
- "attachment": [
- { "name": null }
- ]
- },
- "gun-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "hair-back": {
- "attachment": [
- { "name": null }
- ]
- },
- "hair-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "head-back": {
- "attachment": [
- { "name": null }
- ]
- },
- "head-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "left arm1-back": {
- "attachment": [
- { "name": null }
- ]
- },
- "left arm2-back": {
- "attachment": [
- { "name": null }
- ]
- },
- "left arm2-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "left feet-back": {
- "attachment": [
- { "name": null }
- ]
- },
- "left feet-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "left hand-back": {
- "attachment": [
- { "name": null }
- ]
- },
- "left hand-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "mouth-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "right arm1-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "right arm2-back": {
- "attachment": [
- { "name": null }
- ]
- },
- "right arm2-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "right feet-back": {
- "attachment": [
- { "name": null }
- ]
- },
- "right feet-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "right hand-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "trousers-back": {
- "attachment": [
- { "name": null }
- ]
- },
- "trousers-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "weijin1-back": {
- "attachment": [
- { "name": null }
- ]
- },
- "weijin1-front": {
- "attachment": [
- { "name": null }
- ]
- },
- "weijjin2-back": {
- "attachment": [
- { "name": null }
- ]
- },
- "weijjin2-front": {
- "attachment": [
- { "name": null }
- ]
- }
- },
- "bones": {
- "bone_left": {
- "translate": [
- { "x": -0.78, "y": 62.32 },
- { "time": 0.1, "x": -1.56, "y": 2.34 },
- { "time": 0.1667, "x": -1.56, "y": -1.56 }
- ],
- "scale": [
- { "x": -1 }
- ]
- },
- "body": {
- "rotate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.1, "angle": 3.44, "curve": 0.25, "c3": 0.75 },
- { "time": 0.1667, "angle": 5.22, "curve": 0.25, "c3": 0.75 },
- { "time": 0.3, "angle": 0.48, "curve": 0.25, "c3": 0.75 },
- { "time": 0.3667, "angle": -1.17 }
- ],
- "translate": [
- {},
- { "time": 0.1, "x": -1.56, "y": -7.01, "curve": "stepped" },
- { "time": 0.1667, "x": -1.56, "y": -7.01 },
- { "time": 0.3, "x": -2.34, "y": -4.67 },
- { "time": 0.3667, "x": -2.34, "y": -0.78 }
- ]
- },
- "head": {
- "rotate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.1333, "angle": -0.86, "curve": 0.25, "c3": 0.75 },
- { "time": 0.2, "angle": 2.91, "curve": 0.25, "c3": 0.75 },
- { "time": 0.3667, "angle": 0.69 }
- ],
- "translate": [
- {},
- { "time": 0.1333, "x": -5.32, "y": 1.42, "curve": "stepped" },
- { "time": 0.2, "x": -5.32, "y": 1.42 },
- { "time": 0.3667, "x": -3.77, "y": 1.38 }
- ]
- },
- "bone_left4": {
- "translate": [
- {},
- { "time": 0.1333, "x": 3.12, "y": -7.01 },
- { "time": 0.2, "x": -1.56, "y": -3.12 },
- { "time": 0.3667, "x": 2.34, "y": -7.79 }
- ]
- },
- "K2": {
- "translate": [
- {},
- { "time": 0.1333, "x": 6.23, "y": -3.12 },
- { "time": 0.2, "x": -1.56, "y": -3.12 },
- { "time": 0.3667, "x": 2.34, "y": -7.79 }
- ]
- },
- "weijjin2": {
- "rotate": [
- { "angle": 1.71, "curve": 0.25, "c3": 0.75 },
- { "time": 0.1333, "angle": -2.02, "curve": 0.25, "c3": 0.75 },
- { "time": 0.2, "angle": 0.76, "curve": 0.25, "c3": 0.75 },
- { "time": 0.3667, "angle": -2.42 }
- ]
- },
- "weijjin3": {
- "rotate": [
- { "angle": 2.92, "curve": 0.25, "c3": 0.75 },
- { "time": 0.2, "angle": -5.29, "curve": 0.25, "c3": 0.75 },
- { "time": 0.2667, "angle": 4.43, "curve": 0.25, "c3": 0.75 },
- { "time": 0.3667, "angle": -3.78 }
- ]
- },
- "weijjin4": {
- "rotate": [
- { "angle": 3.28, "curve": 0.25, "c3": 0.75 },
- { "time": 0.2333, "angle": -10.46, "curve": 0.25, "c3": 0.75 },
- { "time": 0.3, "angle": 3.77, "curve": 0.25, "c3": 0.75 },
- { "time": 0.3667, "angle": -13.6 }
- ]
- },
- "eye1": {
- "rotate": [
- {},
- { "time": 0.1333, "angle": 6.53 },
- { "time": 0.2, "angle": -11.29 },
- { "time": 0.3667 }
- ],
- "translate": [
- { "curve": "stepped" },
- { "time": 0.1333, "curve": "stepped" },
- { "time": 0.2, "curve": "stepped" },
- { "time": 0.3667 }
- ]
- },
- "eye2": {
- "rotate": [
- { "angle": 6.34, "curve": 0.25, "c3": 0.75 },
- { "time": 0.0667, "curve": 0.25, "c3": 0.75 },
- { "time": 0.2, "angle": -5.98, "curve": 0.25, "c3": 0.75 },
- { "time": 0.2667, "angle": 15.86, "curve": 0.25, "c3": 0.75 },
- { "time": 0.3667, "angle": 6.34 }
- ],
- "translate": [
- { "curve": "stepped" },
- { "time": 0.1333, "curve": "stepped" },
- { "time": 0.2, "curve": "stepped" },
- { "time": 0.3667 }
- ]
- },
- "hair": {
- "rotate": [
- { "angle": 7.31 },
- { "time": 0.1333 },
- { "time": 0.2667, "angle": -5.22 },
- { "time": 0.3333, "angle": 9.14 },
- { "time": 0.3667, "angle": 7.31 }
- ],
- "translate": [
- { "curve": "stepped" },
- { "time": 0.1333, "curve": "stepped" },
- { "time": 0.2, "curve": "stepped" },
- { "time": 0.3667 }
- ]
- },
- "ear2": {
- "rotate": [
- { "angle": 12.16 },
- { "time": 0.1333 },
- { "time": 0.2667, "angle": -7.81 },
- { "time": 0.3333, "angle": 15.2 },
- { "time": 0.3667, "angle": 12.16 }
- ],
- "translate": [
- { "curve": "stepped" },
- { "time": 0.1333, "curve": "stepped" },
- { "time": 0.2, "curve": "stepped" },
- { "time": 0.3667 }
- ]
- },
- "ear1": {
- "rotate": [
- {},
- { "time": 0.1333, "angle": 6.77 },
- { "time": 0.2, "angle": -9.58 },
- { "time": 0.3667 }
- ],
- "translate": [
- { "curve": "stepped" },
- { "time": 0.1333, "curve": "stepped" },
- { "time": 0.2, "curve": "stepped" },
- { "time": 0.3667 }
- ]
- }
- }
- }
- }
- }
|