zongxiong.json 133 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950
  1. {
  2. "skeleton": {
  3. "hash": "tSQ/hiXHpfwUTJZoIPgWSv0TNrk",
  4. "spine": "3.8.99",
  5. "x": -550.04,
  6. "y": -17.17,
  7. "width": 1155.15,
  8. "height": 257.28,
  9. "images": "./images/",
  10. "audio": "E:/zhj_spine/小小领主/spine/最终版本/zongxiong"
  11. },
  12. "bones": [
  13. { "name": "root" },
  14. { "name": "all", "parent": "root" },
  15. { "name": "bone_left", "parent": "all", "x": 0.68, "y": -48.04, "color": "7efc02ff" },
  16. { "name": "bone_left2", "parent": "bone_left", "x": -9.06, "y": 97.23, "color": "7efc02ff" },
  17. { "name": "gun", "parent": "bone_left2", "length": 112.56, "x": 62.24, "y": 55.32, "color": "7efc02ff" },
  18. { "name": "K2", "parent": "gun", "x": -119.43, "y": -42.02, "color": "fc0101ff" },
  19. {
  20. "name": "body",
  21. "parent": "bone_left2",
  22. "length": 39.14,
  23. "rotation": 92.44,
  24. "x": 4.16,
  25. "y": 18.3,
  26. "color": "7efc02ff"
  27. },
  28. { "name": "bone_left4", "parent": "gun", "rotation": -0.76, "x": -51.92, "y": -45.73, "color": "fc0c01ff" },
  29. {
  30. "name": "head",
  31. "parent": "body",
  32. "length": 49.09,
  33. "rotation": -2.44,
  34. "x": 45.79,
  35. "y": -0.28,
  36. "color": "7efc02ff"
  37. },
  38. {
  39. "name": "ear1",
  40. "parent": "head",
  41. "length": 18.25,
  42. "rotation": -27.25,
  43. "x": 80.7,
  44. "y": -32.45,
  45. "color": "7efc02ff"
  46. },
  47. {
  48. "name": "ear2",
  49. "parent": "head",
  50. "length": 23.56,
  51. "rotation": 47.86,
  52. "x": 65.73,
  53. "y": 33.28,
  54. "color": "7efc02ff"
  55. },
  56. {
  57. "name": "eye1",
  58. "parent": "head",
  59. "length": 17.31,
  60. "rotation": -54.78,
  61. "x": 56.58,
  62. "y": -9.15,
  63. "color": "7efc02ff"
  64. },
  65. {
  66. "name": "eye2",
  67. "parent": "head",
  68. "length": 16.85,
  69. "rotation": 57.09,
  70. "x": 43.26,
  71. "y": 40.77,
  72. "color": "7efc02ff"
  73. },
  74. {
  75. "name": "hair",
  76. "parent": "head",
  77. "length": 27,
  78. "rotation": 33.69,
  79. "x": 75.71,
  80. "y": 8.32,
  81. "color": "7efc02ff"
  82. },
  83. {
  84. "name": "left arm2",
  85. "parent": "body",
  86. "length": 32,
  87. "rotation": 154.73,
  88. "x": 32.21,
  89. "y": 42.2,
  90. "color": "7efc02ff"
  91. },
  92. { "name": "left hand", "parent": "left arm2", "x": 33.81, "y": -0.9, "color": "7efc02ff" },
  93. {
  94. "name": "left feet",
  95. "parent": "bone_left2",
  96. "length": 30.33,
  97. "rotation": -88.15,
  98. "x": -24.3,
  99. "y": -14.74,
  100. "color": "7efc02ff"
  101. },
  102. { "name": "mouth", "parent": "head", "x": 36.61, "y": 19.97, "color": "7efc02ff" },
  103. {
  104. "name": "right arm2",
  105. "parent": "body",
  106. "length": 31.7,
  107. "rotation": -160.9,
  108. "x": 37.5,
  109. "y": -34.14,
  110. "color": "7efc02ff"
  111. },
  112. {
  113. "name": "right arm1",
  114. "parent": "right arm2",
  115. "length": 26.89,
  116. "rotation": -65.37,
  117. "x": 31.13,
  118. "y": -1.44,
  119. "color": "7efc02ff"
  120. },
  121. {
  122. "name": "right hand",
  123. "parent": "right arm1",
  124. "length": 13.75,
  125. "rotation": -29.78,
  126. "x": 26.31,
  127. "y": -1.63,
  128. "color": "7efc02ff"
  129. },
  130. {
  131. "name": "right feet",
  132. "parent": "bone_left2",
  133. "length": 36.29,
  134. "rotation": -75.96,
  135. "x": 36.83,
  136. "y": -10.34,
  137. "color": "7efc02ff"
  138. },
  139. { "name": "shown", "parent": "all", "x": -2.06, "y": -4.93, "color": "060606ff" },
  140. { "name": "tx", "parent": "bone_left4", "rotation": 90.32, "x": -129.33, "y": 26.12, "color": "7efc02ff" },
  141. {
  142. "name": "weijjin2",
  143. "parent": "head",
  144. "length": 28.69,
  145. "rotation": -150.46,
  146. "x": 1.66,
  147. "y": -52.42,
  148. "color": "7efc02ff"
  149. },
  150. { "name": "weijjin3", "parent": "weijjin2", "length": 29.26, "rotation": -14.71, "x": 28.69, "color": "7efc02ff" },
  151. { "name": "weijjin4", "parent": "weijjin3", "length": 21.63, "rotation": 7.79, "x": 29.26, "color": "7efc02ff" },
  152. { "name": "bone_back", "parent": "all", "x": -451.91, "y": -52.75, "color": "0342faff" },
  153. { "name": "body-back", "parent": "bone_back", "x": -1.94, "y": 117.61, "color": "0342faff" },
  154. {
  155. "name": "body-back2",
  156. "parent": "body-back",
  157. "length": 49.64,
  158. "rotation": 88.7,
  159. "x": -3.38,
  160. "y": 18.05,
  161. "color": "0342faff"
  162. },
  163. {
  164. "name": "head-back",
  165. "parent": "body-back2",
  166. "length": 69.95,
  167. "rotation": 0.38,
  168. "x": 57.49,
  169. "y": 2.43,
  170. "color": "0342faff"
  171. },
  172. {
  173. "name": "ear1-back",
  174. "parent": "head-back",
  175. "length": 41.01,
  176. "rotation": 32.43,
  177. "x": 61.47,
  178. "y": 35.96,
  179. "color": "0342faff"
  180. },
  181. {
  182. "name": "ear2-back",
  183. "parent": "head-back",
  184. "length": 28.89,
  185. "rotation": -50.42,
  186. "x": 56.17,
  187. "y": -55.5,
  188. "color": "0342faff"
  189. },
  190. {
  191. "name": "hair-back",
  192. "parent": "head-back",
  193. "length": 27.1,
  194. "rotation": 13.81,
  195. "x": 70.2,
  196. "y": -15.79,
  197. "color": "0342faff"
  198. },
  199. {
  200. "name": "weijjin2-back",
  201. "parent": "body-back2",
  202. "length": 37.5,
  203. "rotation": 174.39,
  204. "x": 38.65,
  205. "y": 37.14,
  206. "color": "0342faff"
  207. },
  208. { "name": "weijjin2-back2", "parent": "weijjin2-back", "length": 32.1, "rotation": -11.52, "x": 37.5, "color": "0342faff" },
  209. { "name": "weijjin2-back3", "parent": "weijjin2-back2", "length": 22.22, "rotation": -5.53, "x": 32.1, "color": "0342faff" },
  210. {
  211. "name": "right arm2-back",
  212. "parent": "body-back2",
  213. "length": 36.49,
  214. "rotation": 35.38,
  215. "x": 18.15,
  216. "y": 44.63,
  217. "color": "0342faff"
  218. },
  219. {
  220. "name": "left hand-back",
  221. "parent": "right arm2-back",
  222. "length": 30.65,
  223. "rotation": -17.22,
  224. "x": 42.4,
  225. "y": -0.78,
  226. "color": "0342faff"
  227. },
  228. {
  229. "name": "left arm2-back",
  230. "parent": "body-back2",
  231. "length": 34.67,
  232. "rotation": -156.08,
  233. "x": 18.16,
  234. "y": -38.53,
  235. "color": "0342faff"
  236. },
  237. {
  238. "name": "left arm1-back",
  239. "parent": "left arm2-back",
  240. "length": 20.62,
  241. "rotation": 149.95,
  242. "x": 35.08,
  243. "y": 5.61,
  244. "color": "0342faff"
  245. },
  246. {
  247. "name": "right feet-back",
  248. "parent": "body-back",
  249. "length": 35.83,
  250. "rotation": -104.93,
  251. "x": -24.13,
  252. "y": -27.68,
  253. "color": "0342faff"
  254. },
  255. {
  256. "name": "left feet-back",
  257. "parent": "body-back",
  258. "length": 34.79,
  259. "rotation": -84.29,
  260. "x": 35.88,
  261. "y": -33.45,
  262. "color": "0342faff"
  263. },
  264. { "name": "gun2", "parent": "body-back", "length": 44.8, "x": 5.59, "y": 50.06, "color": "0342faff" },
  265. { "name": "K3", "parent": "gun2", "rotation": 6.42, "x": 62.2, "y": 37.35, "color": "fa1503ff" },
  266. { "name": "tx2", "parent": "K3", "rotation": -5.55, "x": 18.63, "y": 173.87, "color": "fa1503ff" },
  267. { "name": "bone_front", "parent": "all", "x": 510.69, "y": -55.11, "color": "e203fdff" },
  268. { "name": "body-front", "parent": "bone_front", "x": -3.38, "y": 102.53, "color": "e203fdff" },
  269. { "name": "body-front2", "parent": "body-front", "length": 56.51, "rotation": 90.84, "y": 23.27, "color": "e203fdff" },
  270. {
  271. "name": "head-front",
  272. "parent": "body-front2",
  273. "length": 70.81,
  274. "rotation": 3.2,
  275. "x": 68.99,
  276. "y": 0.65,
  277. "color": "e203fdff"
  278. },
  279. {
  280. "name": "eye2-front",
  281. "parent": "head-front",
  282. "length": 21.61,
  283. "rotation": 63.34,
  284. "x": 37.63,
  285. "y": 25.67,
  286. "color": "e203fdff"
  287. },
  288. {
  289. "name": "eye1-front",
  290. "parent": "head-front",
  291. "length": 24.94,
  292. "rotation": -64.06,
  293. "x": 37.67,
  294. "y": -20.99,
  295. "color": "e203fdff"
  296. },
  297. {
  298. "name": "ear1-front",
  299. "parent": "head-front",
  300. "length": 29.51,
  301. "rotation": -36.39,
  302. "x": 60.9,
  303. "y": -45.95,
  304. "color": "e203fdff"
  305. },
  306. {
  307. "name": "ear2-front",
  308. "parent": "head-front",
  309. "length": 27.03,
  310. "rotation": 40.96,
  311. "x": 60.24,
  312. "y": 39.07,
  313. "color": "e203fdff"
  314. },
  315. {
  316. "name": "hair-front",
  317. "parent": "head-front",
  318. "length": 26.45,
  319. "rotation": 42.24,
  320. "x": 70.4,
  321. "y": -5.8,
  322. "color": "e203fdff"
  323. },
  324. {
  325. "name": "weijjin2-front",
  326. "parent": "body-front2",
  327. "length": 36.9,
  328. "rotation": -173.08,
  329. "x": 59.94,
  330. "y": -49.92,
  331. "color": "e203fdff"
  332. },
  333. { "name": "weijjin2-front2", "parent": "weijjin2-front", "length": 34.88, "rotation": 4.62, "x": 36.9, "color": "e203fdff" },
  334. { "name": "weijjin2-front3", "parent": "weijjin2-front2", "length": 25.65, "rotation": 12.52, "x": 34.88, "color": "e203fdff" },
  335. {
  336. "name": "left arm2-front",
  337. "parent": "body-front2",
  338. "length": 38.57,
  339. "rotation": 156.85,
  340. "x": 51.77,
  341. "y": 47.95,
  342. "color": "e203fdff"
  343. },
  344. {
  345. "name": "left hand-front",
  346. "parent": "left arm2-front",
  347. "length": 32.35,
  348. "rotation": 67.31,
  349. "x": 47.77,
  350. "y": -3.15,
  351. "color": "e203fdff"
  352. },
  353. {
  354. "name": "right arm2-front",
  355. "parent": "body-front2",
  356. "length": 26.91,
  357. "rotation": 161.34,
  358. "x": 36.6,
  359. "y": -42.51,
  360. "color": "e203fdff"
  361. },
  362. {
  363. "name": "right arm1-front",
  364. "parent": "right arm2-front",
  365. "length": 25.37,
  366. "rotation": -46.54,
  367. "x": 31.27,
  368. "y": 1.4,
  369. "color": "e203fdff"
  370. },
  371. {
  372. "name": "right hand-front",
  373. "parent": "right arm1-front",
  374. "length": 33.07,
  375. "rotation": -11.22,
  376. "x": 29.93,
  377. "y": -3.2,
  378. "color": "e203fdff"
  379. },
  380. {
  381. "name": "gun3",
  382. "parent": "body-front",
  383. "length": 182.46,
  384. "rotation": -90,
  385. "x": -31.14,
  386. "y": 8.63,
  387. "color": "e203fdff"
  388. },
  389. { "name": "K4", "parent": "gun3", "rotation": 90, "x": -13, "y": 2.93, "color": "fd1603ff" },
  390. { "name": "K5", "parent": "gun3", "rotation": 90, "x": 0.71, "y": -13.51, "color": "fcf702ff" },
  391. {
  392. "name": "left feet-front",
  393. "parent": "body-front",
  394. "length": 27.27,
  395. "rotation": -91.4,
  396. "x": -31.54,
  397. "y": -9.35,
  398. "color": "e203fdff"
  399. },
  400. {
  401. "name": "right feet-front",
  402. "parent": "body-front",
  403. "length": 35.99,
  404. "rotation": -73.91,
  405. "x": 26.31,
  406. "y": -1.37,
  407. "color": "e203fdff"
  408. },
  409. { "name": "tx3", "parent": "K4", "rotation": 179.26, "x": -11.74, "y": -116.53, "color": "fd1603ff" }
  410. ],
  411. "slots": [
  412. { "name": "shadow", "bone": "shown", "attachment": "shadow" },
  413. { "name": "right feet", "bone": "right feet", "attachment": "right feet" },
  414. { "name": "left feet", "bone": "left feet", "attachment": "left feet" },
  415. { "name": "left arm2", "bone": "left arm2", "attachment": "left arm2" },
  416. { "name": "body", "bone": "body", "attachment": "body" },
  417. { "name": "trousers", "bone": "bone_left2", "attachment": "trousers" },
  418. { "name": "weijjin2", "bone": "weijjin2", "attachment": "weijjin2" },
  419. { "name": "right arm2", "bone": "right arm2", "attachment": "right arm2" },
  420. { "name": "ear2", "bone": "ear2", "attachment": "ear2" },
  421. { "name": "head", "bone": "head", "attachment": "head" },
  422. { "name": "hair", "bone": "hair", "attachment": "hair" },
  423. { "name": "ear1", "bone": "ear1", "attachment": "ear1" },
  424. { "name": "eye2", "bone": "eye2", "attachment": "eye2" },
  425. { "name": "mouth", "bone": "mouth", "attachment": "mouth" },
  426. { "name": "eye1", "bone": "eye1", "attachment": "eye1" },
  427. { "name": "gun-back", "bone": "K3", "attachment": "gun-back" },
  428. { "name": "left arm1-back", "bone": "left arm1-back", "attachment": "left arm1-back" },
  429. { "name": "left arm2-back", "bone": "left arm2-back", "attachment": "left arm2-back" },
  430. { "name": "left arm1", "bone": "K2", "attachment": "left arm1" },
  431. { "name": "weijin1", "bone": "body", "attachment": "weijin1" },
  432. { "name": "gun", "bone": "bone_left4", "attachment": "gun" },
  433. { "name": "left hand", "bone": "K2", "attachment": "left hand" },
  434. { "name": "right hand", "bone": "right hand", "attachment": "right hand" },
  435. { "name": "right arm1", "bone": "right arm1", "attachment": "right arm1" },
  436. { "name": "tx", "bone": "tx", "blend": "additive" },
  437. { "name": "left hand-back", "bone": "left hand-back", "attachment": "left hand-back" },
  438. { "name": "right arm2-back", "bone": "right arm2-back", "attachment": "right arm2-back" },
  439. { "name": "head-back", "bone": "head-back", "attachment": "head-back" },
  440. { "name": "ear1-back", "bone": "ear1-back", "attachment": "ear1-back" },
  441. { "name": "ear2-back", "bone": "ear2-back", "attachment": "ear2-back" },
  442. { "name": "hair-back", "bone": "hair-back", "attachment": "hair-back" },
  443. { "name": "left feet-back", "bone": "left feet-back", "attachment": "left feet-back" },
  444. { "name": "body-back", "bone": "body-back", "attachment": "body-back" },
  445. { "name": "right feet-back", "bone": "right feet-back", "attachment": "right feet-back" },
  446. { "name": "trousers-back", "bone": "body-back", "attachment": "trousers-back" },
  447. { "name": "weijjin2-back", "bone": "weijjin2-back", "attachment": "weijjin2-back" },
  448. { "name": "weijin1-back", "bone": "body-back2", "attachment": "weijin1-back" },
  449. { "name": "tx2", "bone": "tx2", "blend": "additive" },
  450. { "name": "weijjin2-front", "bone": "weijjin2-front", "attachment": "weijjin2-front" },
  451. { "name": "right feet-front", "bone": "right feet-front", "attachment": "right feet-front" },
  452. { "name": "body-front", "bone": "body-front", "attachment": "body-front" },
  453. { "name": "duqi-front", "bone": "body-front2", "attachment": "duqi-front" },
  454. { "name": "head-front", "bone": "head-front", "attachment": "head-front" },
  455. { "name": "ear1-front", "bone": "ear1-front", "attachment": "ear1-front" },
  456. { "name": "ear2-front", "bone": "ear2-front", "attachment": "ear2-front" },
  457. { "name": "hair-front", "bone": "hair-front", "attachment": "hair-front" },
  458. { "name": "eye2-front", "bone": "eye2-front", "attachment": "eye2-front" },
  459. { "name": "eye1-front", "bone": "eye1-front", "attachment": "eye1-front" },
  460. { "name": "left arm2-front", "bone": "left arm2-front", "attachment": "left arm2-front" },
  461. { "name": "left feet-front", "bone": "left feet-front", "attachment": "left feet-front" },
  462. { "name": "mouth-front", "bone": "head-front", "attachment": "mouth-front" },
  463. { "name": "trousers-front", "bone": "body-front", "attachment": "trousers-front" },
  464. { "name": "left hand-front", "bone": "left hand-front", "attachment": "left hand-front" },
  465. { "name": "right hand-front", "bone": "right hand-front", "attachment": "right hand-front" },
  466. { "name": "right arm1-front", "bone": "right arm1-front", "attachment": "right arm1-front" },
  467. { "name": "right arm2-front", "bone": "right arm2-front", "attachment": "right arm2-front" },
  468. { "name": "weijin1-front", "bone": "head-front", "attachment": "weijin1-front" },
  469. { "name": "gun-front", "bone": "K4", "attachment": "gun-front" },
  470. { "name": "tx3", "bone": "tx3", "blend": "additive" }
  471. ],
  472. "ik": [
  473. {
  474. "name": "K1",
  475. "bones": [ "right arm1", "right hand" ],
  476. "target": "bone_left4",
  477. "bendPositive": false
  478. },
  479. {
  480. "name": "K2",
  481. "order": 1,
  482. "bones": [ "left arm2", "left hand" ],
  483. "target": "K2"
  484. },
  485. {
  486. "name": "K3",
  487. "order": 2,
  488. "bones": [ "left arm2-back", "left arm1-back" ],
  489. "target": "K3"
  490. },
  491. {
  492. "name": "K4",
  493. "order": 3,
  494. "bones": [ "right arm1-front", "right hand-front" ],
  495. "target": "K4",
  496. "bendPositive": false
  497. },
  498. {
  499. "name": "K5",
  500. "order": 4,
  501. "bones": [ "left arm2-front", "left hand-front" ],
  502. "target": "K5"
  503. }
  504. ],
  505. "skins": [
  506. {
  507. "name": "default",
  508. "attachments": {
  509. "body": {
  510. "body": {
  511. "type": "mesh",
  512. "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 ],
  513. "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 ],
  514. "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 ],
  515. "hull": 16,
  516. "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 ],
  517. "width": 117,
  518. "height": 88
  519. }
  520. },
  521. "body-back": {
  522. "body-back": {
  523. "type": "mesh",
  524. "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 ],
  525. "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 ],
  526. "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 ],
  527. "hull": 14,
  528. "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 ],
  529. "width": 122,
  530. "height": 91
  531. }
  532. },
  533. "body-front": {
  534. "body-front": { "x": 0.25, "y": 40.77, "width": 122, "height": 91 }
  535. },
  536. "duqi-front": {
  537. "duqi-front": { "x": -3.05, "y": -1.43, "rotation": -90.84, "width": 21, "height": 26 }
  538. },
  539. "ear1": {
  540. "ear1": {
  541. "type": "mesh",
  542. "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 ],
  543. "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 ],
  544. "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 ],
  545. "hull": 14,
  546. "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 ],
  547. "width": 46,
  548. "height": 41
  549. }
  550. },
  551. "ear1-back": {
  552. "ear1-back": {
  553. "type": "mesh",
  554. "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 ],
  555. "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 ],
  556. "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 ],
  557. "hull": 11,
  558. "edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 0, 20 ],
  559. "width": 64,
  560. "height": 44
  561. }
  562. },
  563. "ear1-front": {
  564. "ear1-front": { "x": 10.02, "y": -3.28, "rotation": -57.65, "width": 48, "height": 44 }
  565. },
  566. "ear2": {
  567. "ear2": { "x": 9.02, "y": 2.73, "rotation": -137.86, "width": 39, "height": 43 }
  568. },
  569. "ear2-back": {
  570. "ear2-back": {
  571. "type": "mesh",
  572. "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 ],
  573. "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 ],
  574. "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 ],
  575. "hull": 14,
  576. "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 ],
  577. "width": 44,
  578. "height": 47
  579. }
  580. },
  581. "ear2-front": {
  582. "ear2-front": { "x": 11.9, "y": 1.83, "rotation": -135, "width": 44, "height": 47 }
  583. },
  584. "eye1": {
  585. "eye1": { "x": 1.9, "y": -1.73, "rotation": -35.22, "width": 26, "height": 22 }
  586. },
  587. "eye1-front": {
  588. "eye1-front": { "x": 9.58, "y": -2.74, "rotation": -29.98, "width": 27, "height": 23 }
  589. },
  590. "eye2": {
  591. "eye2": { "x": 6.54, "y": 0.07, "rotation": -147.09, "width": 18, "height": 15 }
  592. },
  593. "eye2-front": {
  594. "eye2-front": { "x": 7.77, "y": 0.46, "rotation": -157.38, "width": 22, "height": 18 }
  595. },
  596. "gun": {
  597. "gun": { "x": -34.73, "y": 18.92, "width": 154, "height": 71 }
  598. },
  599. "gun-back": {
  600. "gun-back": { "x": -0.57, "y": 20.24, "width": 54, "height": 124 }
  601. },
  602. "gun-front": {
  603. "gun-front": { "x": -4.54, "y": 11.31, "width": 64, "height": 103 }
  604. },
  605. "hair": {
  606. "hair": {
  607. "type": "mesh",
  608. "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 ],
  609. "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 ],
  610. "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 ],
  611. "hull": 15,
  612. "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 ],
  613. "width": 41,
  614. "height": 42
  615. }
  616. },
  617. "hair-back": {
  618. "hair-back": {
  619. "type": "mesh",
  620. "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 ],
  621. "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 ],
  622. "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 ],
  623. "hull": 17,
  624. "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 ],
  625. "width": 47,
  626. "height": 39
  627. }
  628. },
  629. "hair-front": {
  630. "hair-front": { "x": 9.99, "y": 0.82, "rotation": -136.27, "width": 47, "height": 47 }
  631. },
  632. "head": {
  633. "head": { "x": 33.26, "y": -7.2, "rotation": -90, "width": 133, "height": 122 }
  634. },
  635. "head-back": {
  636. "head-back": { "x": 9.75, "y": -7.33, "rotation": 92.01, "width": 138, "height": 126 }
  637. },
  638. "head-front": {
  639. "head-front": { "x": 23.62, "y": -2.5, "rotation": -94.04, "width": 138, "height": 126 }
  640. },
  641. "left arm1": {
  642. "left arm1": { "x": 0.37, "y": 3.1, "rotation": -0.76, "width": 45, "height": 29 }
  643. },
  644. "left arm1-back": {
  645. "left arm1-back": { "x": 17.32, "y": 0.14, "rotation": -118.88, "width": 45, "height": 45 }
  646. },
  647. "left arm2": {
  648. "left arm2": {
  649. "type": "mesh",
  650. "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 ],
  651. "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 ],
  652. "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 ],
  653. "hull": 14,
  654. "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 ],
  655. "width": 43,
  656. "height": 49
  657. }
  658. },
  659. "left arm2-back": {
  660. "left arm2-back": {
  661. "type": "mesh",
  662. "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 ],
  663. "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 ],
  664. "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 ],
  665. "hull": 14,
  666. "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 ],
  667. "width": 50,
  668. "height": 57
  669. }
  670. },
  671. "left arm2-front": {
  672. "left arm2-front": { "x": 25.68, "y": 1.66, "rotation": 112.31, "width": 50, "height": 57 }
  673. },
  674. "left feet": {
  675. "left feet": { "x": 16.92, "y": -1.05, "rotation": 88.15, "width": 40, "height": 44 }
  676. },
  677. "left feet-back": {
  678. "left feet-back": { "x": 18.99, "y": 0.6, "rotation": 84.29, "width": 43, "height": 49 }
  679. },
  680. "left feet-front": {
  681. "left feet-front": { "x": 16.31, "y": -0.89, "rotation": 91.4, "width": 43, "height": 49 }
  682. },
  683. "left hand": {
  684. "left hand": { "x": -3.47, "y": 6.06, "rotation": -2.94, "width": 52, "height": 34 }
  685. },
  686. "left hand-back": {
  687. "left hand-back": { "x": 13.27, "y": -4.57, "rotation": -106.86, "width": 52, "height": 55 }
  688. },
  689. "left hand-front": {
  690. "left hand-front": { "x": 15.24, "y": 1.19, "rotation": 45, "width": 62, "height": 65 }
  691. },
  692. "mouth": {
  693. "mouth": { "x": -0.85, "y": 0.33, "rotation": -90, "width": 50, "height": 39 }
  694. },
  695. "mouth-front": {
  696. "mouth-front": { "x": 19.32, "y": 5.9, "rotation": -94.04, "width": 54, "height": 41 }
  697. },
  698. "right arm1": {
  699. "right arm1": { "x": 13.13, "y": 2.81, "rotation": 133.83, "width": 41, "height": 40 }
  700. },
  701. "right arm1-front": {
  702. "right arm1-front": {
  703. "type": "mesh",
  704. "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 ],
  705. "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 ],
  706. "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 ],
  707. "hull": 14,
  708. "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 ],
  709. "width": 47,
  710. "height": 43
  711. }
  712. },
  713. "right arm2": {
  714. "right arm2": { "x": 15.8, "y": -1.91, "rotation": 68.46, "width": 39, "height": 43 }
  715. },
  716. "right arm2-back": {
  717. "right arm2-back": {
  718. "type": "mesh",
  719. "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 ],
  720. "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 ],
  721. "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 ],
  722. "hull": 13,
  723. "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 ],
  724. "width": 51,
  725. "height": 60
  726. }
  727. },
  728. "right arm2-front": {
  729. "right arm2-front": {
  730. "type": "mesh",
  731. "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 ],
  732. "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 ],
  733. "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 ],
  734. "hull": 13,
  735. "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 ],
  736. "width": 38,
  737. "height": 57
  738. }
  739. },
  740. "right feet": {
  741. "right feet": { "x": 19.58, "y": -3.48, "rotation": 75.96, "width": 44, "height": 49 }
  742. },
  743. "right feet-back": {
  744. "right feet-back": { "x": 20.72, "y": 1.87, "rotation": 104.93, "width": 46, "height": 51 }
  745. },
  746. "right feet-front": {
  747. "right feet-front": { "x": 21.08, "y": -0.83, "rotation": 73.91, "width": 45, "height": 50 }
  748. },
  749. "right hand": {
  750. "right hand": { "x": 6.02, "y": 0.38, "rotation": 163.61, "width": 45, "height": 39 }
  751. },
  752. "right hand-front": {
  753. "right hand-front": { "x": 11.32, "y": 2.29, "rotation": 174.48, "width": 52, "height": 44 }
  754. },
  755. "shadow": {
  756. "shadow": { "x": 1.96, "y": -0.24, "width": 102, "height": 24 }
  757. },
  758. "trousers": {
  759. "trousers": {
  760. "type": "mesh",
  761. "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 ],
  762. "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 ],
  763. "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 ],
  764. "hull": 22,
  765. "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 ],
  766. "width": 130,
  767. "height": 54
  768. }
  769. },
  770. "trousers-back": {
  771. "trousers-back": { "x": 4.28, "y": -23, "width": 135, "height": 55 }
  772. },
  773. "trousers-front": {
  774. "trousers-front": { "x": -0.06, "y": 1.23, "width": 135, "height": 55 }
  775. },
  776. "tx": {
  777. "baodian_02_00": { "width": 165, "height": 247 },
  778. "baodian_02_01": { "width": 165, "height": 247 },
  779. "baodian_02_02": { "width": 165, "height": 247 },
  780. "baodian_02_03": { "width": 165, "height": 247 }
  781. },
  782. "tx2": {
  783. "baodian_02_00": { "x": 0.5, "y": 0.5, "width": 165, "height": 247 },
  784. "baodian_02_01": { "x": 0.5, "y": 0.5, "width": 165, "height": 247 },
  785. "baodian_02_02": { "x": 0.5, "y": 0.5, "width": 165, "height": 247 },
  786. "baodian_02_03": { "x": 0.5, "y": 0.5, "width": 165, "height": 247 }
  787. },
  788. "tx3": {
  789. "baodian_02_00": { "x": 0.5, "y": 0.5, "width": 165, "height": 247 },
  790. "baodian_02_01": { "x": 0.5, "y": 0.5, "width": 165, "height": 247 },
  791. "baodian_02_02": { "x": 0.5, "y": 0.5, "width": 165, "height": 247 },
  792. "baodian_02_03": { "x": 0.5, "y": 0.5, "width": 165, "height": 247 }
  793. },
  794. "weijin1": {
  795. "weijin1": { "x": 41.74, "y": -7.32, "rotation": -92.44, "width": 133, "height": 56 }
  796. },
  797. "weijin1-back": {
  798. "weijin1-back": {
  799. "type": "mesh",
  800. "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 ],
  801. "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 ],
  802. "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 ],
  803. "hull": 12,
  804. "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 ],
  805. "width": 140,
  806. "height": 61
  807. }
  808. },
  809. "weijin1-front": {
  810. "weijin1-front": {
  811. "type": "mesh",
  812. "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 ],
  813. "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 ],
  814. "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 ],
  815. "hull": 14,
  816. "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 ],
  817. "width": 138,
  818. "height": 59
  819. }
  820. },
  821. "weijjin2": {
  822. "weijjin2": {
  823. "type": "mesh",
  824. "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 ],
  825. "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 ],
  826. "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 ],
  827. "hull": 24,
  828. "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 ],
  829. "width": 44,
  830. "height": 94
  831. }
  832. },
  833. "weijjin2-back": {
  834. "weijjin2-back": {
  835. "type": "mesh",
  836. "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 ],
  837. "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 ],
  838. "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 ],
  839. "hull": 19,
  840. "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 ],
  841. "width": 67,
  842. "height": 110
  843. }
  844. },
  845. "weijjin2-front": {
  846. "weijjin2-front": {
  847. "type": "mesh",
  848. "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 ],
  849. "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 ],
  850. "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 ],
  851. "hull": 18,
  852. "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 ],
  853. "width": 67,
  854. "height": 110
  855. }
  856. }
  857. }
  858. }
  859. ],
  860. "events": {
  861. "fire1": {}
  862. },
  863. "animations": {
  864. "atk_down": {
  865. "slots": {
  866. "body": {
  867. "attachment": [
  868. { "name": null },
  869. { "time": 0.4, "name": null }
  870. ]
  871. },
  872. "body-back": {
  873. "attachment": [
  874. { "name": null },
  875. { "time": 0.4, "name": null }
  876. ]
  877. },
  878. "ear1": {
  879. "attachment": [
  880. { "name": null },
  881. { "time": 0.4, "name": null }
  882. ]
  883. },
  884. "ear1-back": {
  885. "attachment": [
  886. { "name": null },
  887. { "time": 0.4, "name": null }
  888. ]
  889. },
  890. "ear2": {
  891. "attachment": [
  892. { "name": null },
  893. { "time": 0.4, "name": null }
  894. ]
  895. },
  896. "ear2-back": {
  897. "attachment": [
  898. { "name": null },
  899. { "time": 0.4, "name": null }
  900. ]
  901. },
  902. "eye1": {
  903. "attachment": [
  904. { "name": null },
  905. { "time": 0.4, "name": null }
  906. ]
  907. },
  908. "eye2": {
  909. "attachment": [
  910. { "name": null },
  911. { "time": 0.4, "name": null }
  912. ]
  913. },
  914. "gun": {
  915. "attachment": [
  916. { "name": null },
  917. { "time": 0.4, "name": null }
  918. ]
  919. },
  920. "gun-back": {
  921. "attachment": [
  922. { "name": null },
  923. { "time": 0.4, "name": null }
  924. ]
  925. },
  926. "hair": {
  927. "attachment": [
  928. { "name": null },
  929. { "time": 0.4, "name": null }
  930. ]
  931. },
  932. "hair-back": {
  933. "attachment": [
  934. { "name": null },
  935. { "time": 0.4, "name": null }
  936. ]
  937. },
  938. "head": {
  939. "attachment": [
  940. { "name": null },
  941. { "time": 0.4, "name": null }
  942. ]
  943. },
  944. "head-back": {
  945. "attachment": [
  946. { "name": null },
  947. { "time": 0.4, "name": null }
  948. ]
  949. },
  950. "left arm1": {
  951. "attachment": [
  952. { "name": null },
  953. { "time": 0.4, "name": null }
  954. ]
  955. },
  956. "left arm1-back": {
  957. "attachment": [
  958. { "name": null },
  959. { "time": 0.4, "name": null }
  960. ]
  961. },
  962. "left arm2": {
  963. "attachment": [
  964. { "name": null },
  965. { "time": 0.4, "name": null }
  966. ]
  967. },
  968. "left arm2-back": {
  969. "attachment": [
  970. { "name": null },
  971. { "time": 0.4, "name": null }
  972. ]
  973. },
  974. "left feet": {
  975. "attachment": [
  976. { "name": null },
  977. { "time": 0.4, "name": null }
  978. ]
  979. },
  980. "left feet-back": {
  981. "attachment": [
  982. { "name": null },
  983. { "time": 0.4, "name": null }
  984. ]
  985. },
  986. "left hand": {
  987. "attachment": [
  988. { "name": null },
  989. { "time": 0.4, "name": null }
  990. ]
  991. },
  992. "left hand-back": {
  993. "attachment": [
  994. { "name": null },
  995. { "time": 0.4, "name": null }
  996. ]
  997. },
  998. "mouth": {
  999. "attachment": [
  1000. { "name": null },
  1001. { "time": 0.4, "name": null }
  1002. ]
  1003. },
  1004. "right arm1": {
  1005. "attachment": [
  1006. { "name": null },
  1007. { "time": 0.4, "name": null }
  1008. ]
  1009. },
  1010. "right arm2": {
  1011. "attachment": [
  1012. { "name": null },
  1013. { "time": 0.4, "name": null }
  1014. ]
  1015. },
  1016. "right arm2-back": {
  1017. "attachment": [
  1018. { "name": null },
  1019. { "time": 0.4, "name": null }
  1020. ]
  1021. },
  1022. "right feet": {
  1023. "attachment": [
  1024. { "name": null },
  1025. { "time": 0.4, "name": null }
  1026. ]
  1027. },
  1028. "right feet-back": {
  1029. "attachment": [
  1030. { "name": null },
  1031. { "time": 0.4, "name": null }
  1032. ]
  1033. },
  1034. "right hand": {
  1035. "attachment": [
  1036. { "name": null },
  1037. { "time": 0.4, "name": null }
  1038. ]
  1039. },
  1040. "trousers": {
  1041. "attachment": [
  1042. { "name": null },
  1043. { "time": 0.4, "name": null }
  1044. ]
  1045. },
  1046. "trousers-back": {
  1047. "attachment": [
  1048. { "name": null },
  1049. { "time": 0.4, "name": null }
  1050. ]
  1051. },
  1052. "tx3": {
  1053. "color": [
  1054. { "time": 0.2333, "color": "ffffffff" }
  1055. ],
  1056. "attachment": [
  1057. { "time": 0.2333, "name": "baodian_02_00" },
  1058. { "time": 0.2667, "name": "baodian_02_01" },
  1059. { "time": 0.3, "name": "baodian_02_02" },
  1060. { "time": 0.3333, "name": "baodian_02_03" },
  1061. { "time": 0.3667, "name": null }
  1062. ]
  1063. },
  1064. "weijin1": {
  1065. "attachment": [
  1066. { "name": null },
  1067. { "time": 0.4, "name": null }
  1068. ]
  1069. },
  1070. "weijin1-back": {
  1071. "attachment": [
  1072. { "name": null },
  1073. { "time": 0.4, "name": null }
  1074. ]
  1075. },
  1076. "weijjin2": {
  1077. "attachment": [
  1078. { "name": null },
  1079. { "time": 0.4, "name": null }
  1080. ]
  1081. },
  1082. "weijjin2-back": {
  1083. "attachment": [
  1084. { "name": null },
  1085. { "time": 0.4, "name": null }
  1086. ]
  1087. }
  1088. },
  1089. "bones": {
  1090. "body-front": {
  1091. "rotate": [
  1092. { "curve": "stepped" },
  1093. { "time": 0.4 }
  1094. ],
  1095. "translate": [
  1096. { "curve": "stepped" },
  1097. { "time": 0.4 }
  1098. ],
  1099. "scale": [
  1100. { "curve": "stepped" },
  1101. { "time": 0.4 }
  1102. ]
  1103. },
  1104. "body-front2": {
  1105. "rotate": [
  1106. { "curve": 0.25, "c3": 0.75 },
  1107. { "time": 0.0667, "angle": 0.32, "curve": 0.25, "c3": 0.75 },
  1108. { "time": 0.1333, "curve": 0.25, "c3": 0.75 },
  1109. { "time": 0.2333, "angle": -8.66, "curve": 0.25, "c3": 0.75 },
  1110. { "time": 0.3333, "angle": 9.21, "curve": 0.25, "c3": 0.75 },
  1111. { "time": 0.4 }
  1112. ],
  1113. "translate": [
  1114. { "y": -0.2, "curve": 0.25, "c3": 0.75 },
  1115. { "time": 0.1333, "x": -1.09, "y": -4.57, "curve": 0.25, "c3": 0.75 },
  1116. { "time": 0.2333, "x": -3.27, "y": 7.44, "curve": 0.25, "c3": 0.75 },
  1117. { "time": 0.3333, "x": -4.36, "y": -5.66, "curve": 0.25, "c3": 0.75 },
  1118. { "time": 0.4, "y": -0.2 }
  1119. ],
  1120. "scale": [
  1121. { "curve": "stepped" },
  1122. { "time": 0.4 }
  1123. ]
  1124. },
  1125. "head-front": {
  1126. "rotate": [
  1127. { "curve": 0.25, "c3": 0.75 },
  1128. { "time": 0.0667, "angle": 0.32, "curve": 0.25, "c3": 0.75 },
  1129. { "time": 0.1333, "curve": 0.25, "c3": 0.75 },
  1130. { "time": 0.2333, "angle": -12.29, "curve": 0.25, "c3": 0.75 },
  1131. { "time": 0.3333, "angle": 3.43, "curve": 0.25, "c3": 0.75 },
  1132. { "time": 0.4 }
  1133. ],
  1134. "translate": [
  1135. { "x": -0.42, "y": 0.01, "curve": 0.25, "c3": 0.75 },
  1136. { "time": 0.1333, "x": -6.95, "y": 1.19, "curve": 0.25, "c3": 0.75 },
  1137. { "time": 0.2333, "x": 1.5, "y": -4.25, "curve": 0.25, "c3": 0.75 },
  1138. { "time": 0.3333, "x": -7.97, "y": -1.47, "curve": 0.25, "c3": 0.75 },
  1139. { "time": 0.4, "x": -0.42, "y": 0.01 }
  1140. ],
  1141. "scale": [
  1142. { "curve": "stepped" },
  1143. { "time": 0.4 }
  1144. ]
  1145. },
  1146. "eye2-front": {
  1147. "rotate": [
  1148. { "angle": 30.63 },
  1149. { "time": 0.0667, "angle": 1.32 },
  1150. { "time": 0.2, "angle": 25.83 },
  1151. { "time": 0.3, "angle": 1.32 },
  1152. { "time": 0.4, "angle": 30.63 }
  1153. ],
  1154. "translate": [
  1155. { "curve": "stepped" },
  1156. { "time": 0.0667, "curve": "stepped" },
  1157. { "time": 0.4 }
  1158. ],
  1159. "scale": [
  1160. { "curve": "stepped" },
  1161. { "time": 0.0667, "curve": "stepped" },
  1162. { "time": 0.4 }
  1163. ]
  1164. },
  1165. "eye1-front": {
  1166. "rotate": [
  1167. { "angle": -24.18 },
  1168. { "time": 0.0667, "angle": -1.92 },
  1169. { "time": 0.2, "angle": -30.88 },
  1170. { "time": 0.3, "angle": -1.92 },
  1171. { "time": 0.4, "angle": -24.18 }
  1172. ],
  1173. "translate": [
  1174. { "curve": "stepped" },
  1175. { "time": 0.0667, "curve": "stepped" },
  1176. { "time": 0.4 }
  1177. ],
  1178. "scale": [
  1179. { "curve": "stepped" },
  1180. { "time": 0.0667, "curve": "stepped" },
  1181. { "time": 0.4 }
  1182. ]
  1183. },
  1184. "ear1-front": {
  1185. "rotate": [
  1186. { "angle": 9.23 },
  1187. { "time": 0.0667, "angle": -17.7 },
  1188. { "time": 0.1333, "angle": 2.85 },
  1189. { "time": 0.2667, "angle": -13 },
  1190. { "time": 0.3667, "angle": 22.69 },
  1191. { "time": 0.4, "angle": 9.23 }
  1192. ],
  1193. "translate": [
  1194. { "curve": "stepped" },
  1195. { "time": 0.1333, "curve": "stepped" },
  1196. { "time": 0.4 }
  1197. ],
  1198. "scale": [
  1199. { "curve": "stepped" },
  1200. { "time": 0.1333, "curve": "stepped" },
  1201. { "time": 0.4 }
  1202. ]
  1203. },
  1204. "ear2-front": {
  1205. "rotate": [
  1206. { "angle": 3.22 },
  1207. { "time": 0.0333, "angle": 18.99 },
  1208. { "time": 0.1, "angle": -6.75 },
  1209. { "time": 0.2333, "angle": 6.56 },
  1210. { "time": 0.3333, "angle": -5.34 },
  1211. { "time": 0.4, "angle": 3.22 }
  1212. ],
  1213. "translate": [
  1214. { "curve": "stepped" },
  1215. { "time": 0.1, "curve": "stepped" },
  1216. { "time": 0.4 }
  1217. ],
  1218. "scale": [
  1219. { "curve": "stepped" },
  1220. { "time": 0.1, "curve": "stepped" },
  1221. { "time": 0.4 }
  1222. ]
  1223. },
  1224. "hair-front": {
  1225. "rotate": [
  1226. { "angle": 2.58 },
  1227. { "time": 0.0333, "angle": 12.09 },
  1228. { "time": 0.1, "angle": -3.04 },
  1229. { "time": 0.2333, "angle": 13.96 },
  1230. { "time": 0.3333, "angle": -16.42 },
  1231. { "time": 0.4, "angle": 2.58 }
  1232. ],
  1233. "translate": [
  1234. { "curve": "stepped" },
  1235. { "time": 0.1, "curve": "stepped" },
  1236. { "time": 0.4 }
  1237. ],
  1238. "scale": [
  1239. { "curve": "stepped" },
  1240. { "time": 0.1, "curve": "stepped" },
  1241. { "time": 0.4 }
  1242. ]
  1243. },
  1244. "weijjin2-front": {
  1245. "rotate": [
  1246. { "angle": -3.38, "curve": 0.382, "c2": 0.57, "c3": 0.735 },
  1247. { "time": 0.0667, "angle": -6.48 },
  1248. { "time": 0.2667, "angle": 4.45, "curve": 0.243, "c3": 0.649, "c4": 0.6 },
  1249. { "time": 0.4, "angle": -3.38 }
  1250. ],
  1251. "translate": [
  1252. { "curve": "stepped" },
  1253. { "time": 0.0667, "curve": "stepped" },
  1254. { "time": 0.4 }
  1255. ],
  1256. "scale": [
  1257. { "curve": "stepped" },
  1258. { "time": 0.0667, "curve": "stepped" },
  1259. { "time": 0.4 }
  1260. ]
  1261. },
  1262. "weijjin2-front2": {
  1263. "rotate": [
  1264. { "angle": 4.39, "curve": 0.311, "c2": 0.25, "c3": 0.757 },
  1265. { "time": 0.1667, "angle": -5.49 },
  1266. { "time": 0.3667, "angle": 5.44, "curve": 0.29, "c3": 0.629, "c4": 0.38 },
  1267. { "time": 0.4, "angle": 4.39 }
  1268. ],
  1269. "translate": [
  1270. { "curve": "stepped" },
  1271. { "time": 0.1667, "curve": "stepped" },
  1272. { "time": 0.4 }
  1273. ],
  1274. "scale": [
  1275. { "curve": "stepped" },
  1276. { "time": 0.1667, "curve": "stepped" },
  1277. { "time": 0.4 }
  1278. ]
  1279. },
  1280. "weijjin2-front3": {
  1281. "rotate": [
  1282. { "angle": 1.61, "curve": 0.382, "c2": 0.57, "c3": 0.735 },
  1283. { "time": 0.0667, "angle": 4.71, "curve": 0.25, "c3": 0.75 },
  1284. { "time": 0.2667, "angle": -6.21, "curve": 0.243, "c3": 0.649, "c4": 0.6 },
  1285. { "time": 0.4, "angle": 1.61 }
  1286. ],
  1287. "translate": [
  1288. { "curve": "stepped" },
  1289. { "time": 0.2667, "curve": "stepped" },
  1290. { "time": 0.4 }
  1291. ],
  1292. "scale": [
  1293. { "curve": "stepped" },
  1294. { "time": 0.2667, "curve": "stepped" },
  1295. { "time": 0.4 }
  1296. ]
  1297. },
  1298. "left arm2-front": {
  1299. "rotate": [
  1300. { "angle": 2.5 },
  1301. { "time": 0.2, "angle": -10.5 },
  1302. { "time": 0.4, "angle": 2.5 }
  1303. ],
  1304. "translate": [
  1305. {},
  1306. { "time": 0.2, "x": 15.01, "y": -17.23 },
  1307. { "time": 0.2667, "x": -11.12, "y": -2.26 },
  1308. { "time": 0.3333, "x": 17.03, "y": -28.33 },
  1309. { "time": 0.4 }
  1310. ],
  1311. "scale": [
  1312. { "curve": "stepped" },
  1313. { "time": 0.4 }
  1314. ]
  1315. },
  1316. "left hand-front": {
  1317. "rotate": [
  1318. { "angle": -1.63, "curve": "stepped" },
  1319. { "time": 0.4, "angle": -1.63 }
  1320. ],
  1321. "translate": [
  1322. { "curve": "stepped" },
  1323. { "time": 0.4 }
  1324. ],
  1325. "scale": [
  1326. { "curve": "stepped" },
  1327. { "time": 0.4 }
  1328. ]
  1329. },
  1330. "right arm2-front": {
  1331. "rotate": [
  1332. { "curve": "stepped" },
  1333. { "time": 0.4 }
  1334. ],
  1335. "translate": [
  1336. {},
  1337. { "time": 0.2667, "x": -5.28, "y": 1.83 },
  1338. { "time": 0.3333, "x": 4.81, "y": -4.63 },
  1339. { "time": 0.4 }
  1340. ],
  1341. "scale": [
  1342. { "curve": "stepped" },
  1343. { "time": 0.4 }
  1344. ]
  1345. },
  1346. "right arm1-front": {
  1347. "rotate": [
  1348. { "angle": -3.16, "curve": "stepped" },
  1349. { "time": 0.4, "angle": -3.16 }
  1350. ],
  1351. "translate": [
  1352. { "curve": "stepped" },
  1353. { "time": 0.4 }
  1354. ],
  1355. "scale": [
  1356. { "curve": "stepped" },
  1357. { "time": 0.4 }
  1358. ]
  1359. },
  1360. "right hand-front": {
  1361. "rotate": [
  1362. { "angle": -10.96, "curve": "stepped" },
  1363. { "time": 0.4, "angle": -10.96 }
  1364. ],
  1365. "translate": [
  1366. { "curve": "stepped" },
  1367. { "time": 0.4 }
  1368. ],
  1369. "scale": [
  1370. { "curve": "stepped" },
  1371. { "time": 0.4 }
  1372. ]
  1373. },
  1374. "gun3": {
  1375. "rotate": [
  1376. { "curve": "stepped" },
  1377. { "time": 0.4 }
  1378. ],
  1379. "translate": [
  1380. { "curve": "stepped" },
  1381. { "time": 0.4 }
  1382. ],
  1383. "scale": [
  1384. { "curve": "stepped" },
  1385. { "time": 0.4 }
  1386. ]
  1387. },
  1388. "K4": {
  1389. "rotate": [
  1390. {},
  1391. { "time": 0.2, "angle": -8.57 },
  1392. { "time": 0.2667, "angle": -11.43 },
  1393. { "time": 0.4 }
  1394. ],
  1395. "translate": [
  1396. {},
  1397. { "time": 0.1333, "x": -8.63, "y": 0.86 },
  1398. { "time": 0.2, "x": -28.91, "y": -2.8 },
  1399. { "time": 0.2667, "x": 17.65, "y": -6 },
  1400. { "time": 0.3333, "x": -4.46, "y": -5.25 },
  1401. { "time": 0.4 }
  1402. ],
  1403. "scale": [
  1404. { "curve": "stepped" },
  1405. { "time": 0.4 }
  1406. ]
  1407. },
  1408. "K5": {
  1409. "rotate": [
  1410. { "curve": "stepped" },
  1411. { "time": 0.4 }
  1412. ],
  1413. "translate": [
  1414. {},
  1415. { "time": 0.1333, "x": -1.53, "y": 1.38 },
  1416. { "time": 0.2, "x": -33.87, "y": -1.73 },
  1417. { "time": 0.2667, "x": 13.83, "y": -7.53 },
  1418. { "time": 0.3333, "x": -5.68, "y": 0.72 },
  1419. { "time": 0.4 }
  1420. ],
  1421. "scale": [
  1422. { "curve": "stepped" },
  1423. { "time": 0.4 }
  1424. ]
  1425. },
  1426. "left feet-front": {
  1427. "rotate": [
  1428. { "curve": "stepped" },
  1429. { "time": 0.4 }
  1430. ],
  1431. "translate": [
  1432. { "curve": "stepped" },
  1433. { "time": 0.4 }
  1434. ],
  1435. "scale": [
  1436. { "curve": "stepped" },
  1437. { "time": 0.4 }
  1438. ]
  1439. },
  1440. "right feet-front": {
  1441. "rotate": [
  1442. { "curve": "stepped" },
  1443. { "time": 0.4 }
  1444. ],
  1445. "translate": [
  1446. { "curve": "stepped" },
  1447. { "time": 0.4 }
  1448. ],
  1449. "scale": [
  1450. { "curve": "stepped" },
  1451. { "time": 0.4 }
  1452. ]
  1453. },
  1454. "bone_left": {
  1455. "translate": [
  1456. { "x": 918.63, "y": 47.79, "curve": "stepped" },
  1457. { "time": 0.4, "x": 918.63, "y": 47.79 }
  1458. ]
  1459. },
  1460. "bone_front": {
  1461. "translate": [
  1462. { "x": -515.07, "y": -10.62, "curve": "stepped" },
  1463. { "time": 0.4, "x": -515.07, "y": -10.62 }
  1464. ]
  1465. },
  1466. "tx3": {
  1467. "translate": [
  1468. { "time": 0.2333, "x": -3.58, "y": 0.53 },
  1469. { "time": 0.3, "x": -1.19, "y": -15.29 },
  1470. { "time": 0.3667, "x": 1.84, "y": -40.97 }
  1471. ],
  1472. "shear": [
  1473. { "time": 0.2333, "x": 23.73, "y": 2.57 }
  1474. ]
  1475. }
  1476. },
  1477. "events": [
  1478. { "time": 0.2, "name": "fire1" }
  1479. ]
  1480. },
  1481. "atk_left": {
  1482. "slots": {
  1483. "body-back": {
  1484. "attachment": [
  1485. { "name": null }
  1486. ]
  1487. },
  1488. "body-front": {
  1489. "attachment": [
  1490. { "name": null }
  1491. ]
  1492. },
  1493. "duqi-front": {
  1494. "attachment": [
  1495. { "name": null }
  1496. ]
  1497. },
  1498. "ear1-back": {
  1499. "attachment": [
  1500. { "name": null }
  1501. ]
  1502. },
  1503. "ear1-front": {
  1504. "attachment": [
  1505. { "name": null }
  1506. ]
  1507. },
  1508. "ear2-back": {
  1509. "attachment": [
  1510. { "name": null }
  1511. ]
  1512. },
  1513. "ear2-front": {
  1514. "attachment": [
  1515. { "name": null }
  1516. ]
  1517. },
  1518. "eye1-front": {
  1519. "attachment": [
  1520. { "name": null }
  1521. ]
  1522. },
  1523. "eye2-front": {
  1524. "attachment": [
  1525. { "name": null }
  1526. ]
  1527. },
  1528. "gun-back": {
  1529. "attachment": [
  1530. { "name": null }
  1531. ]
  1532. },
  1533. "gun-front": {
  1534. "attachment": [
  1535. { "name": null }
  1536. ]
  1537. },
  1538. "hair-back": {
  1539. "attachment": [
  1540. { "name": null }
  1541. ]
  1542. },
  1543. "hair-front": {
  1544. "attachment": [
  1545. { "name": null }
  1546. ]
  1547. },
  1548. "head-back": {
  1549. "attachment": [
  1550. { "name": null }
  1551. ]
  1552. },
  1553. "head-front": {
  1554. "attachment": [
  1555. { "name": null }
  1556. ]
  1557. },
  1558. "left arm1-back": {
  1559. "attachment": [
  1560. { "name": null }
  1561. ]
  1562. },
  1563. "left arm2-back": {
  1564. "attachment": [
  1565. { "name": null }
  1566. ]
  1567. },
  1568. "left arm2-front": {
  1569. "attachment": [
  1570. { "name": null }
  1571. ]
  1572. },
  1573. "left feet-back": {
  1574. "attachment": [
  1575. { "name": null }
  1576. ]
  1577. },
  1578. "left feet-front": {
  1579. "attachment": [
  1580. { "name": null }
  1581. ]
  1582. },
  1583. "left hand-back": {
  1584. "attachment": [
  1585. { "name": null }
  1586. ]
  1587. },
  1588. "left hand-front": {
  1589. "attachment": [
  1590. { "name": null }
  1591. ]
  1592. },
  1593. "mouth-front": {
  1594. "attachment": [
  1595. { "name": null }
  1596. ]
  1597. },
  1598. "right arm1-front": {
  1599. "attachment": [
  1600. { "name": null }
  1601. ]
  1602. },
  1603. "right arm2-back": {
  1604. "attachment": [
  1605. { "name": null }
  1606. ]
  1607. },
  1608. "right arm2-front": {
  1609. "attachment": [
  1610. { "name": null }
  1611. ]
  1612. },
  1613. "right feet-back": {
  1614. "attachment": [
  1615. { "name": null }
  1616. ]
  1617. },
  1618. "right feet-front": {
  1619. "attachment": [
  1620. { "name": null }
  1621. ]
  1622. },
  1623. "right hand-front": {
  1624. "attachment": [
  1625. { "name": null }
  1626. ]
  1627. },
  1628. "trousers-back": {
  1629. "attachment": [
  1630. { "name": null }
  1631. ]
  1632. },
  1633. "trousers-front": {
  1634. "attachment": [
  1635. { "name": null }
  1636. ]
  1637. },
  1638. "tx": {
  1639. "color": [
  1640. { "time": 0.2, "color": "fffffffe" }
  1641. ],
  1642. "attachment": [
  1643. { "time": 0.2, "name": "baodian_02_00" },
  1644. { "time": 0.2333, "name": "baodian_02_01" },
  1645. { "time": 0.2667, "name": "baodian_02_02" },
  1646. { "time": 0.3, "name": "baodian_02_03" },
  1647. { "time": 0.3333, "name": null }
  1648. ]
  1649. },
  1650. "weijin1-back": {
  1651. "attachment": [
  1652. { "name": null }
  1653. ]
  1654. },
  1655. "weijin1-front": {
  1656. "attachment": [
  1657. { "name": null }
  1658. ]
  1659. },
  1660. "weijjin2-back": {
  1661. "attachment": [
  1662. { "name": null }
  1663. ]
  1664. },
  1665. "weijjin2-front": {
  1666. "attachment": [
  1667. { "name": null }
  1668. ]
  1669. }
  1670. },
  1671. "bones": {
  1672. "bone_left2": {
  1673. "translate": [
  1674. {}
  1675. ]
  1676. },
  1677. "left feet": {
  1678. "translate": [
  1679. {}
  1680. ]
  1681. },
  1682. "right feet": {
  1683. "translate": [
  1684. {}
  1685. ]
  1686. },
  1687. "body": {
  1688. "rotate": [
  1689. { "angle": 0.07, "curve": "stepped" },
  1690. { "time": 0.1667, "angle": 0.07 },
  1691. { "time": 0.2333, "angle": -5.67 },
  1692. { "time": 0.3, "angle": 8.94 },
  1693. { "time": 0.3667, "angle": 0.07 }
  1694. ],
  1695. "translate": [
  1696. {},
  1697. { "time": 0.1667, "y": 2.34 },
  1698. { "time": 0.2333, "x": 7.43, "y": 2.93 },
  1699. { "time": 0.3, "x": -7.83, "y": 5.07 },
  1700. { "time": 0.3667 }
  1701. ]
  1702. },
  1703. "head": {
  1704. "rotate": [
  1705. { "angle": 0.44, "curve": 0.382, "c2": 0.57, "c3": 0.735 },
  1706. { "time": 0.1667, "angle": -0.98 },
  1707. { "time": 0.2333, "angle": -8.73 },
  1708. { "time": 0.3333, "angle": -0.54 },
  1709. { "time": 0.3667, "angle": 0.44 }
  1710. ],
  1711. "translate": [
  1712. {},
  1713. { "time": 0.1333, "x": 1.56, "y": -0.07 },
  1714. { "time": 0.3, "x": 1.88, "y": 3.03 },
  1715. { "time": 0.3667 }
  1716. ]
  1717. },
  1718. "eye1": {
  1719. "rotate": [
  1720. { "angle": 6.31 },
  1721. { "time": 0.0667 },
  1722. { "time": 0.2333, "angle": 3.63 },
  1723. { "time": 0.3, "angle": -5.55 },
  1724. { "time": 0.3667, "angle": 6.31 }
  1725. ],
  1726. "translate": [
  1727. {}
  1728. ]
  1729. },
  1730. "eye2": {
  1731. "rotate": [
  1732. { "angle": -6.4 },
  1733. { "time": 0.0667 },
  1734. { "time": 0.2333, "angle": -12.31 },
  1735. { "time": 0.3, "angle": 5.76 },
  1736. { "time": 0.3667, "angle": -6.4 }
  1737. ],
  1738. "translate": [
  1739. {}
  1740. ]
  1741. },
  1742. "ear2": {
  1743. "rotate": [
  1744. { "angle": 5.57 },
  1745. { "time": 0.0333, "angle": -5.26 },
  1746. { "time": 0.1, "angle": -0.85, "curve": 0.25, "c3": 0.75 },
  1747. { "time": 0.2667, "angle": -10.76 },
  1748. { "time": 0.3333, "angle": 16.4 },
  1749. { "time": 0.3667, "angle": 5.57 }
  1750. ]
  1751. },
  1752. "hair": {
  1753. "rotate": [
  1754. { "angle": 0.8 },
  1755. { "time": 0.0333, "angle": -5.38 },
  1756. { "time": 0.1, "angle": -0.62, "curve": 0.25, "c3": 0.75 },
  1757. { "time": 0.2667, "angle": -6.96 },
  1758. { "time": 0.3333, "angle": 6.98 },
  1759. { "time": 0.3667, "angle": 0.8 }
  1760. ]
  1761. },
  1762. "ear1": {
  1763. "rotate": [
  1764. { "angle": 1.15 },
  1765. { "time": 0.0333, "angle": 7.67 },
  1766. { "time": 0.1, "angle": 1.34, "curve": 0.375, "c2": 0.62, "c3": 0.716 },
  1767. { "time": 0.2667, "angle": 7.31 },
  1768. { "time": 0.3333, "angle": -5.38 },
  1769. { "time": 0.3667, "angle": 1.15 }
  1770. ]
  1771. },
  1772. "weijjin2": {
  1773. "rotate": [
  1774. { "angle": 1.81 },
  1775. { "time": 0.1667, "angle": -2.9 },
  1776. { "time": 0.2333, "angle": 1.46 },
  1777. { "time": 0.3, "angle": -2.76 },
  1778. { "time": 0.3667, "angle": 1.81 }
  1779. ]
  1780. },
  1781. "weijjin3": {
  1782. "rotate": [
  1783. { "angle": -6.85, "curve": 0.25, "c3": 0.75 },
  1784. { "time": 0.0667, "angle": 0.84, "curve": 0.25, "c3": 0.75 },
  1785. { "time": 0.2333, "angle": -6.18, "curve": 0.25, "c3": 0.75 },
  1786. { "time": 0.3, "angle": 0.35, "curve": 0.25, "c3": 0.75 },
  1787. { "time": 0.3667, "angle": -6.85 }
  1788. ]
  1789. },
  1790. "weijjin4": {
  1791. "rotate": [
  1792. { "angle": -12.95 },
  1793. { "time": 0.0333, "angle": -18.64 },
  1794. { "time": 0.1, "angle": -12.9 },
  1795. { "time": 0.2667, "angle": -19.8 },
  1796. { "time": 0.3333, "angle": -7.26 },
  1797. { "time": 0.3667, "angle": -12.95 }
  1798. ]
  1799. },
  1800. "K2": {
  1801. "rotate": [
  1802. { "curve": "stepped" },
  1803. { "time": 0.1333, "curve": "stepped" },
  1804. { "time": 0.2, "curve": "stepped" },
  1805. { "time": 0.2667, "curve": "stepped" },
  1806. { "time": 0.3667 }
  1807. ],
  1808. "translate": [
  1809. { "curve": 0.29, "c3": 0.629, "c4": 0.38 },
  1810. { "time": 0.1333, "y": 3.12, "curve": 0.321, "c2": 0.28, "c3": 0.655, "c4": 0.62 },
  1811. {
  1812. "time": 0.2,
  1813. "x": 24.15,
  1814. "y": -21.01,
  1815. "curve": 0.325,
  1816. "c2": 0.3,
  1817. "c3": 0.659,
  1818. "c4": 0.64
  1819. },
  1820. {
  1821. "time": 0.2667,
  1822. "x": -10.63,
  1823. "y": 15.49,
  1824. "curve": 0.327,
  1825. "c2": 0.31,
  1826. "c3": 0.662,
  1827. "c4": 0.65
  1828. },
  1829. { "time": 0.3667 }
  1830. ]
  1831. },
  1832. "bone_left4": {
  1833. "rotate": [
  1834. { "curve": "stepped" },
  1835. { "time": 0.1333, "curve": "stepped" },
  1836. { "time": 0.2, "curve": "stepped" },
  1837. { "time": 0.2667, "curve": "stepped" },
  1838. { "time": 0.3667 }
  1839. ],
  1840. "translate": [
  1841. { "curve": 0.261, "c3": 0.618, "c4": 0.44 },
  1842. { "time": 0.1333, "y": 3.12, "curve": 0.327, "c2": 0.31, "c3": 0.665, "c4": 0.66 },
  1843. {
  1844. "time": 0.2,
  1845. "x": 24.15,
  1846. "y": -21.35,
  1847. "curve": 0.342,
  1848. "c2": 0.36,
  1849. "c3": 0.681,
  1850. "c4": 0.71
  1851. },
  1852. { "time": 0.2667, "x": -11.43, "y": 14.98, "curve": 0.381, "c2": 0.59, "c3": 0.727 },
  1853. { "time": 0.3667 }
  1854. ]
  1855. },
  1856. "right hand": {
  1857. "translate": [
  1858. { "curve": "stepped" },
  1859. { "time": 0.3667 }
  1860. ]
  1861. },
  1862. "tx": {
  1863. "rotate": [
  1864. { "time": 0.2, "angle": -5.03 }
  1865. ],
  1866. "translate": [
  1867. { "time": 0.2, "x": -70.7, "y": 13.8 },
  1868. { "time": 0.2667, "x": -94.89, "y": 14.58 },
  1869. { "time": 0.3333, "x": -131.24, "y": 20.69 }
  1870. ]
  1871. }
  1872. },
  1873. "events": [
  1874. { "time": 0.2, "name": "fire1" }
  1875. ]
  1876. },
  1877. "atk_right": {
  1878. "slots": {
  1879. "body-back": {
  1880. "attachment": [
  1881. { "name": null }
  1882. ]
  1883. },
  1884. "body-front": {
  1885. "attachment": [
  1886. { "name": null }
  1887. ]
  1888. },
  1889. "duqi-front": {
  1890. "attachment": [
  1891. { "name": null }
  1892. ]
  1893. },
  1894. "ear1-back": {
  1895. "attachment": [
  1896. { "name": null }
  1897. ]
  1898. },
  1899. "ear1-front": {
  1900. "attachment": [
  1901. { "name": null }
  1902. ]
  1903. },
  1904. "ear2-back": {
  1905. "attachment": [
  1906. { "name": null }
  1907. ]
  1908. },
  1909. "ear2-front": {
  1910. "attachment": [
  1911. { "name": null }
  1912. ]
  1913. },
  1914. "eye1-front": {
  1915. "attachment": [
  1916. { "name": null }
  1917. ]
  1918. },
  1919. "eye2-front": {
  1920. "attachment": [
  1921. { "name": null }
  1922. ]
  1923. },
  1924. "gun-back": {
  1925. "attachment": [
  1926. { "name": null }
  1927. ]
  1928. },
  1929. "gun-front": {
  1930. "attachment": [
  1931. { "name": null }
  1932. ]
  1933. },
  1934. "hair-back": {
  1935. "attachment": [
  1936. { "name": null }
  1937. ]
  1938. },
  1939. "hair-front": {
  1940. "attachment": [
  1941. { "name": null }
  1942. ]
  1943. },
  1944. "head-back": {
  1945. "attachment": [
  1946. { "name": null }
  1947. ]
  1948. },
  1949. "head-front": {
  1950. "attachment": [
  1951. { "name": null }
  1952. ]
  1953. },
  1954. "left arm1-back": {
  1955. "attachment": [
  1956. { "name": null }
  1957. ]
  1958. },
  1959. "left arm2-back": {
  1960. "attachment": [
  1961. { "name": null }
  1962. ]
  1963. },
  1964. "left arm2-front": {
  1965. "attachment": [
  1966. { "name": null }
  1967. ]
  1968. },
  1969. "left feet-back": {
  1970. "attachment": [
  1971. { "name": null }
  1972. ]
  1973. },
  1974. "left feet-front": {
  1975. "attachment": [
  1976. { "name": null }
  1977. ]
  1978. },
  1979. "left hand-back": {
  1980. "attachment": [
  1981. { "name": null }
  1982. ]
  1983. },
  1984. "left hand-front": {
  1985. "attachment": [
  1986. { "name": null }
  1987. ]
  1988. },
  1989. "mouth-front": {
  1990. "attachment": [
  1991. { "name": null }
  1992. ]
  1993. },
  1994. "right arm1-front": {
  1995. "attachment": [
  1996. { "name": null }
  1997. ]
  1998. },
  1999. "right arm2-back": {
  2000. "attachment": [
  2001. { "name": null }
  2002. ]
  2003. },
  2004. "right arm2-front": {
  2005. "attachment": [
  2006. { "name": null }
  2007. ]
  2008. },
  2009. "right feet-back": {
  2010. "attachment": [
  2011. { "name": null }
  2012. ]
  2013. },
  2014. "right feet-front": {
  2015. "attachment": [
  2016. { "name": null }
  2017. ]
  2018. },
  2019. "right hand-front": {
  2020. "attachment": [
  2021. { "name": null }
  2022. ]
  2023. },
  2024. "trousers-back": {
  2025. "attachment": [
  2026. { "name": null }
  2027. ]
  2028. },
  2029. "trousers-front": {
  2030. "attachment": [
  2031. { "name": null }
  2032. ]
  2033. },
  2034. "tx": {
  2035. "color": [
  2036. { "time": 0.2, "color": "fffffffe" }
  2037. ],
  2038. "attachment": [
  2039. { "time": 0.2, "name": "baodian_02_00" },
  2040. { "time": 0.2333, "name": "baodian_02_01" },
  2041. { "time": 0.2667, "name": "baodian_02_02" },
  2042. { "time": 0.3, "name": "baodian_02_03" },
  2043. { "time": 0.3333, "name": null }
  2044. ]
  2045. },
  2046. "weijin1-back": {
  2047. "attachment": [
  2048. { "name": null }
  2049. ]
  2050. },
  2051. "weijin1-front": {
  2052. "attachment": [
  2053. { "name": null }
  2054. ]
  2055. },
  2056. "weijjin2-back": {
  2057. "attachment": [
  2058. { "name": null }
  2059. ]
  2060. },
  2061. "weijjin2-front": {
  2062. "attachment": [
  2063. { "name": null }
  2064. ]
  2065. }
  2066. },
  2067. "bones": {
  2068. "bone_left2": {
  2069. "translate": [
  2070. {}
  2071. ],
  2072. "scale": [
  2073. { "x": -1 }
  2074. ]
  2075. },
  2076. "left feet": {
  2077. "translate": [
  2078. {}
  2079. ]
  2080. },
  2081. "right feet": {
  2082. "translate": [
  2083. {}
  2084. ]
  2085. },
  2086. "body": {
  2087. "rotate": [
  2088. { "angle": 0.07, "curve": "stepped" },
  2089. { "time": 0.1667, "angle": 0.07 },
  2090. { "time": 0.2333, "angle": -5.67 },
  2091. { "time": 0.3, "angle": 8.94 },
  2092. { "time": 0.3667, "angle": 0.07 }
  2093. ],
  2094. "translate": [
  2095. {},
  2096. { "time": 0.1667, "y": 2.34 },
  2097. { "time": 0.2333, "x": 7.43, "y": 2.93 },
  2098. { "time": 0.3, "x": -7.83, "y": 5.07 },
  2099. { "time": 0.3667 }
  2100. ]
  2101. },
  2102. "head": {
  2103. "rotate": [
  2104. { "angle": 0.44, "curve": 0.382, "c2": 0.57, "c3": 0.735 },
  2105. { "time": 0.1667, "angle": -0.98 },
  2106. { "time": 0.2333, "angle": -8.73 },
  2107. { "time": 0.3333, "angle": -0.54 },
  2108. { "time": 0.3667, "angle": 0.44 }
  2109. ],
  2110. "translate": [
  2111. {},
  2112. { "time": 0.1333, "x": 1.56, "y": -0.07 },
  2113. { "time": 0.3, "x": 1.88, "y": 3.03 },
  2114. { "time": 0.3667 }
  2115. ]
  2116. },
  2117. "eye1": {
  2118. "rotate": [
  2119. { "angle": 6.31 },
  2120. { "time": 0.0667 },
  2121. { "time": 0.2333, "angle": 3.63 },
  2122. { "time": 0.3, "angle": -5.55 },
  2123. { "time": 0.3667, "angle": 6.31 }
  2124. ],
  2125. "translate": [
  2126. {}
  2127. ]
  2128. },
  2129. "eye2": {
  2130. "rotate": [
  2131. { "angle": -6.4 },
  2132. { "time": 0.0667 },
  2133. { "time": 0.2333, "angle": -12.31 },
  2134. { "time": 0.3, "angle": 5.76 },
  2135. { "time": 0.3667, "angle": -6.4 }
  2136. ],
  2137. "translate": [
  2138. {}
  2139. ]
  2140. },
  2141. "ear2": {
  2142. "rotate": [
  2143. { "angle": 5.57 },
  2144. { "time": 0.0333, "angle": -5.26 },
  2145. { "time": 0.1, "angle": -0.85, "curve": 0.25, "c3": 0.75 },
  2146. { "time": 0.2667, "angle": -10.76 },
  2147. { "time": 0.3333, "angle": 16.4 },
  2148. { "time": 0.3667, "angle": 5.57 }
  2149. ]
  2150. },
  2151. "hair": {
  2152. "rotate": [
  2153. { "angle": 0.8 },
  2154. { "time": 0.0333, "angle": -5.38 },
  2155. { "time": 0.1, "angle": -0.62, "curve": 0.25, "c3": 0.75 },
  2156. { "time": 0.2667, "angle": -6.96 },
  2157. { "time": 0.3333, "angle": 6.98 },
  2158. { "time": 0.3667, "angle": 0.8 }
  2159. ]
  2160. },
  2161. "ear1": {
  2162. "rotate": [
  2163. { "angle": 1.15 },
  2164. { "time": 0.0333, "angle": 7.67 },
  2165. { "time": 0.1, "angle": 1.34, "curve": 0.375, "c2": 0.62, "c3": 0.716 },
  2166. { "time": 0.2667, "angle": 7.31 },
  2167. { "time": 0.3333, "angle": -5.38 },
  2168. { "time": 0.3667, "angle": 1.15 }
  2169. ]
  2170. },
  2171. "weijjin2": {
  2172. "rotate": [
  2173. { "angle": 1.81 },
  2174. { "time": 0.1667, "angle": -2.9 },
  2175. { "time": 0.2333, "angle": 1.46 },
  2176. { "time": 0.3, "angle": -2.76 },
  2177. { "time": 0.3667, "angle": 1.81 }
  2178. ]
  2179. },
  2180. "weijjin3": {
  2181. "rotate": [
  2182. { "angle": -6.85, "curve": 0.25, "c3": 0.75 },
  2183. { "time": 0.0667, "angle": 0.84, "curve": 0.25, "c3": 0.75 },
  2184. { "time": 0.2333, "angle": -6.18, "curve": 0.25, "c3": 0.75 },
  2185. { "time": 0.3, "angle": 0.35, "curve": 0.25, "c3": 0.75 },
  2186. { "time": 0.3667, "angle": -6.85 }
  2187. ]
  2188. },
  2189. "weijjin4": {
  2190. "rotate": [
  2191. { "angle": -12.95 },
  2192. { "time": 0.0333, "angle": -18.64 },
  2193. { "time": 0.1, "angle": -12.9 },
  2194. { "time": 0.2667, "angle": -19.8 },
  2195. { "time": 0.3333, "angle": -7.26 },
  2196. { "time": 0.3667, "angle": -12.95 }
  2197. ]
  2198. },
  2199. "K2": {
  2200. "rotate": [
  2201. { "curve": "stepped" },
  2202. { "time": 0.1333, "curve": "stepped" },
  2203. { "time": 0.2, "curve": "stepped" },
  2204. { "time": 0.2667, "curve": "stepped" },
  2205. { "time": 0.3667 }
  2206. ],
  2207. "translate": [
  2208. { "curve": 0.29, "c3": 0.629, "c4": 0.38 },
  2209. { "time": 0.1333, "y": 3.12, "curve": 0.321, "c2": 0.28, "c3": 0.655, "c4": 0.62 },
  2210. {
  2211. "time": 0.2,
  2212. "x": 24.15,
  2213. "y": -21.01,
  2214. "curve": 0.325,
  2215. "c2": 0.3,
  2216. "c3": 0.659,
  2217. "c4": 0.64
  2218. },
  2219. {
  2220. "time": 0.2667,
  2221. "x": -10.63,
  2222. "y": 15.49,
  2223. "curve": 0.327,
  2224. "c2": 0.31,
  2225. "c3": 0.662,
  2226. "c4": 0.65
  2227. },
  2228. { "time": 0.3667 }
  2229. ]
  2230. },
  2231. "bone_left4": {
  2232. "rotate": [
  2233. { "curve": "stepped" },
  2234. { "time": 0.1333, "curve": "stepped" },
  2235. { "time": 0.2, "curve": "stepped" },
  2236. { "time": 0.2667, "curve": "stepped" },
  2237. { "time": 0.3667 }
  2238. ],
  2239. "translate": [
  2240. { "curve": 0.261, "c3": 0.618, "c4": 0.44 },
  2241. { "time": 0.1333, "y": 3.12, "curve": 0.327, "c2": 0.31, "c3": 0.665, "c4": 0.66 },
  2242. {
  2243. "time": 0.2,
  2244. "x": 24.15,
  2245. "y": -21.35,
  2246. "curve": 0.342,
  2247. "c2": 0.36,
  2248. "c3": 0.681,
  2249. "c4": 0.71
  2250. },
  2251. { "time": 0.2667, "x": -11.43, "y": 14.98, "curve": 0.381, "c2": 0.59, "c3": 0.727 },
  2252. { "time": 0.3667 }
  2253. ]
  2254. },
  2255. "right hand": {
  2256. "translate": [
  2257. { "curve": "stepped" },
  2258. { "time": 0.3667 }
  2259. ]
  2260. },
  2261. "tx": {
  2262. "rotate": [
  2263. { "time": 0.2, "angle": -5.03 }
  2264. ],
  2265. "translate": [
  2266. { "time": 0.2, "x": -70.7, "y": 13.8 },
  2267. { "time": 0.2667, "x": -94.89, "y": 14.58 },
  2268. { "time": 0.3333, "x": -131.24, "y": 20.69 }
  2269. ]
  2270. }
  2271. },
  2272. "events": [
  2273. { "time": 0.2, "name": "fire1" }
  2274. ]
  2275. },
  2276. "atk_up": {
  2277. "slots": {
  2278. "body": {
  2279. "attachment": [
  2280. { "name": null },
  2281. { "time": 0.4, "name": null }
  2282. ]
  2283. },
  2284. "body-back": {
  2285. "attachment": [
  2286. { "name": "body-back" },
  2287. { "time": 0.4, "name": "body-back" }
  2288. ]
  2289. },
  2290. "body-front": {
  2291. "attachment": [
  2292. { "name": null }
  2293. ]
  2294. },
  2295. "duqi-front": {
  2296. "attachment": [
  2297. { "name": null }
  2298. ]
  2299. },
  2300. "ear1": {
  2301. "attachment": [
  2302. { "name": null },
  2303. { "time": 0.4, "name": null }
  2304. ]
  2305. },
  2306. "ear1-back": {
  2307. "attachment": [
  2308. { "name": "ear1-back" },
  2309. { "time": 0.4, "name": "ear1-back" }
  2310. ]
  2311. },
  2312. "ear1-front": {
  2313. "attachment": [
  2314. { "name": null }
  2315. ]
  2316. },
  2317. "ear2": {
  2318. "attachment": [
  2319. { "name": null },
  2320. { "time": 0.4, "name": null }
  2321. ]
  2322. },
  2323. "ear2-back": {
  2324. "attachment": [
  2325. { "name": "ear2-back" },
  2326. { "time": 0.4, "name": "ear2-back" }
  2327. ]
  2328. },
  2329. "ear2-front": {
  2330. "attachment": [
  2331. { "name": null }
  2332. ]
  2333. },
  2334. "eye1": {
  2335. "attachment": [
  2336. { "name": null },
  2337. { "time": 0.4, "name": null }
  2338. ]
  2339. },
  2340. "eye1-front": {
  2341. "attachment": [
  2342. { "name": null }
  2343. ]
  2344. },
  2345. "eye2": {
  2346. "attachment": [
  2347. { "name": null },
  2348. { "time": 0.4, "name": null }
  2349. ]
  2350. },
  2351. "eye2-front": {
  2352. "attachment": [
  2353. { "name": null }
  2354. ]
  2355. },
  2356. "gun": {
  2357. "attachment": [
  2358. { "name": null },
  2359. { "time": 0.4, "name": null }
  2360. ]
  2361. },
  2362. "gun-back": {
  2363. "attachment": [
  2364. { "name": "gun-back" },
  2365. { "time": 0.4, "name": "gun-back" }
  2366. ]
  2367. },
  2368. "gun-front": {
  2369. "attachment": [
  2370. { "name": null }
  2371. ]
  2372. },
  2373. "hair": {
  2374. "attachment": [
  2375. { "name": null },
  2376. { "time": 0.4, "name": null }
  2377. ]
  2378. },
  2379. "hair-back": {
  2380. "attachment": [
  2381. { "name": "hair-back" },
  2382. { "time": 0.4, "name": "hair-back" }
  2383. ]
  2384. },
  2385. "hair-front": {
  2386. "attachment": [
  2387. { "name": null }
  2388. ]
  2389. },
  2390. "head": {
  2391. "attachment": [
  2392. { "name": null },
  2393. { "time": 0.4, "name": null }
  2394. ]
  2395. },
  2396. "head-back": {
  2397. "attachment": [
  2398. { "name": "head-back" },
  2399. { "time": 0.4, "name": "head-back" }
  2400. ]
  2401. },
  2402. "head-front": {
  2403. "attachment": [
  2404. { "name": null }
  2405. ]
  2406. },
  2407. "left arm1": {
  2408. "attachment": [
  2409. { "name": null },
  2410. { "time": 0.4, "name": null }
  2411. ]
  2412. },
  2413. "left arm1-back": {
  2414. "attachment": [
  2415. { "name": "left arm1-back" },
  2416. { "time": 0.4, "name": "left arm1-back" }
  2417. ]
  2418. },
  2419. "left arm2": {
  2420. "attachment": [
  2421. { "name": null },
  2422. { "time": 0.4, "name": null }
  2423. ]
  2424. },
  2425. "left arm2-back": {
  2426. "attachment": [
  2427. { "name": "left arm2-back" },
  2428. { "time": 0.4, "name": "left arm2-back" }
  2429. ]
  2430. },
  2431. "left arm2-front": {
  2432. "attachment": [
  2433. { "name": null }
  2434. ]
  2435. },
  2436. "left feet": {
  2437. "attachment": [
  2438. { "name": null },
  2439. { "time": 0.4, "name": null }
  2440. ]
  2441. },
  2442. "left feet-back": {
  2443. "attachment": [
  2444. { "name": "left feet-back" },
  2445. { "time": 0.4, "name": "left feet-back" }
  2446. ]
  2447. },
  2448. "left feet-front": {
  2449. "attachment": [
  2450. { "name": null }
  2451. ]
  2452. },
  2453. "left hand": {
  2454. "attachment": [
  2455. { "name": null },
  2456. { "time": 0.4, "name": null }
  2457. ]
  2458. },
  2459. "left hand-back": {
  2460. "attachment": [
  2461. { "name": "left hand-back" },
  2462. { "time": 0.4, "name": "left hand-back" }
  2463. ]
  2464. },
  2465. "left hand-front": {
  2466. "attachment": [
  2467. { "name": null }
  2468. ]
  2469. },
  2470. "mouth": {
  2471. "attachment": [
  2472. { "name": null },
  2473. { "time": 0.4, "name": null }
  2474. ]
  2475. },
  2476. "mouth-front": {
  2477. "attachment": [
  2478. { "name": null }
  2479. ]
  2480. },
  2481. "right arm1": {
  2482. "attachment": [
  2483. { "name": null },
  2484. { "time": 0.4, "name": null }
  2485. ]
  2486. },
  2487. "right arm1-front": {
  2488. "attachment": [
  2489. { "name": null }
  2490. ]
  2491. },
  2492. "right arm2": {
  2493. "attachment": [
  2494. { "name": null },
  2495. { "time": 0.4, "name": null }
  2496. ]
  2497. },
  2498. "right arm2-back": {
  2499. "attachment": [
  2500. { "name": "right arm2-back" },
  2501. { "time": 0.4, "name": "right arm2-back" }
  2502. ]
  2503. },
  2504. "right arm2-front": {
  2505. "attachment": [
  2506. { "name": null }
  2507. ]
  2508. },
  2509. "right feet": {
  2510. "attachment": [
  2511. { "name": null },
  2512. { "time": 0.4, "name": null }
  2513. ]
  2514. },
  2515. "right feet-back": {
  2516. "attachment": [
  2517. { "name": "right feet-back" },
  2518. { "time": 0.4, "name": "right feet-back" }
  2519. ]
  2520. },
  2521. "right feet-front": {
  2522. "attachment": [
  2523. { "name": null }
  2524. ]
  2525. },
  2526. "right hand": {
  2527. "attachment": [
  2528. { "name": null },
  2529. { "time": 0.4, "name": null }
  2530. ]
  2531. },
  2532. "right hand-front": {
  2533. "attachment": [
  2534. { "name": null }
  2535. ]
  2536. },
  2537. "trousers": {
  2538. "attachment": [
  2539. { "name": null },
  2540. { "time": 0.4, "name": null }
  2541. ]
  2542. },
  2543. "trousers-back": {
  2544. "attachment": [
  2545. { "name": "trousers-back" },
  2546. { "time": 0.4, "name": "trousers-back" }
  2547. ]
  2548. },
  2549. "trousers-front": {
  2550. "attachment": [
  2551. { "name": null }
  2552. ]
  2553. },
  2554. "tx2": {
  2555. "color": [
  2556. { "time": 0.2, "color": "ffffffff" }
  2557. ],
  2558. "attachment": [
  2559. { "time": 0.2, "name": "baodian_02_00" },
  2560. { "time": 0.2333, "name": "baodian_02_01" },
  2561. { "time": 0.2667, "name": "baodian_02_02" },
  2562. { "time": 0.3, "name": "baodian_02_03" },
  2563. { "time": 0.3333, "name": null }
  2564. ]
  2565. },
  2566. "weijin1": {
  2567. "attachment": [
  2568. { "name": null },
  2569. { "time": 0.4, "name": null }
  2570. ]
  2571. },
  2572. "weijin1-back": {
  2573. "attachment": [
  2574. { "name": "weijin1-back" },
  2575. { "time": 0.4, "name": "weijin1-back" }
  2576. ]
  2577. },
  2578. "weijin1-front": {
  2579. "attachment": [
  2580. { "name": null }
  2581. ]
  2582. },
  2583. "weijjin2": {
  2584. "attachment": [
  2585. { "name": null },
  2586. { "time": 0.4, "name": null }
  2587. ]
  2588. },
  2589. "weijjin2-back": {
  2590. "attachment": [
  2591. { "name": "weijjin2-back" },
  2592. { "time": 0.4, "name": "weijjin2-back" }
  2593. ]
  2594. },
  2595. "weijjin2-front": {
  2596. "attachment": [
  2597. { "name": null }
  2598. ]
  2599. }
  2600. },
  2601. "bones": {
  2602. "K3": {
  2603. "rotate": [
  2604. {},
  2605. { "time": 0.1333, "angle": 5.79 },
  2606. { "time": 0.2, "angle": 4.34 },
  2607. { "time": 0.2667, "angle": 9.97 },
  2608. { "time": 0.4 }
  2609. ],
  2610. "translate": [
  2611. {},
  2612. { "time": 0.1333, "x": -34.52, "y": 48.96 },
  2613. { "time": 0.2, "x": -41.05, "y": -22.07 },
  2614. { "time": 0.2667, "x": -44.31, "y": 60.25 },
  2615. { "time": 0.4 }
  2616. ],
  2617. "scale": [
  2618. { "curve": "stepped" },
  2619. { "time": 0.1333, "curve": "stepped" },
  2620. { "time": 0.4 }
  2621. ]
  2622. },
  2623. "left arm1-back": {
  2624. "rotate": [
  2625. { "angle": -140.87, "curve": "stepped" },
  2626. { "time": 0.4, "angle": -140.87 }
  2627. ],
  2628. "translate": [
  2629. { "curve": "stepped" },
  2630. { "time": 0.4 }
  2631. ],
  2632. "scale": [
  2633. { "curve": "stepped" },
  2634. { "time": 0.4 }
  2635. ]
  2636. },
  2637. "left arm2-back": {
  2638. "rotate": [
  2639. { "angle": 116.54 },
  2640. { "time": 0.1333, "angle": 149.63 },
  2641. { "time": 0.2, "angle": 136.11 },
  2642. { "time": 0.2667, "angle": 152.42 },
  2643. { "time": 0.4, "angle": 116.54 }
  2644. ],
  2645. "translate": [
  2646. { "curve": "stepped" },
  2647. { "time": 0.1333, "curve": "stepped" },
  2648. { "time": 0.2 },
  2649. { "time": 0.2667, "x": 11.98, "y": 2.79 },
  2650. { "time": 0.4 }
  2651. ],
  2652. "scale": [
  2653. { "curve": "stepped" },
  2654. { "time": 0.1333, "curve": "stepped" },
  2655. { "time": 0.4 }
  2656. ]
  2657. },
  2658. "left hand-back": {
  2659. "rotate": [
  2660. {},
  2661. { "time": 0.1333, "angle": -5.36 },
  2662. { "time": 0.2, "angle": -6.46 },
  2663. { "time": 0.2667, "angle": 8.29 },
  2664. { "time": 0.4 }
  2665. ],
  2666. "translate": [
  2667. { "curve": "stepped" },
  2668. { "time": 0.4 }
  2669. ],
  2670. "scale": [
  2671. { "curve": "stepped" },
  2672. { "time": 0.4 }
  2673. ]
  2674. },
  2675. "right arm2-back": {
  2676. "rotate": [
  2677. {},
  2678. { "time": 0.1333, "angle": -10.04 },
  2679. { "time": 0.2, "angle": -10.15 },
  2680. { "time": 0.2667, "angle": 21.85 },
  2681. { "time": 0.4 }
  2682. ],
  2683. "translate": [
  2684. {},
  2685. { "time": 0.2, "x": -6.66, "y": -8.3 },
  2686. { "time": 0.4 }
  2687. ],
  2688. "scale": [
  2689. { "curve": "stepped" },
  2690. { "time": 0.4 }
  2691. ]
  2692. },
  2693. "head-back": {
  2694. "rotate": [
  2695. { "curve": "stepped" },
  2696. { "time": 0.1667 },
  2697. { "time": 0.2333, "angle": -8.93 },
  2698. { "time": 0.3, "angle": 5.88 },
  2699. { "time": 0.4 }
  2700. ],
  2701. "translate": [
  2702. {},
  2703. { "time": 0.1667, "x": 3.45, "y": 0.08 },
  2704. { "time": 0.2333, "x": -7.04, "y": -0.78 },
  2705. { "time": 0.3, "x": 6.58, "y": -1.03 },
  2706. { "time": 0.4 }
  2707. ],
  2708. "scale": [
  2709. { "curve": "stepped" },
  2710. { "time": 0.4 }
  2711. ]
  2712. },
  2713. "ear1-back": {
  2714. "rotate": [
  2715. { "angle": -12.72 },
  2716. { "time": 0.1 },
  2717. { "time": 0.3, "angle": -25.43 },
  2718. { "time": 0.4, "angle": -12.72 }
  2719. ],
  2720. "translate": [
  2721. { "curve": "stepped" },
  2722. { "time": 0.4 }
  2723. ],
  2724. "scale": [
  2725. { "curve": "stepped" },
  2726. { "time": 0.4 }
  2727. ]
  2728. },
  2729. "ear2-back": {
  2730. "rotate": [
  2731. { "angle": -12.72 },
  2732. { "time": 0.1 },
  2733. { "time": 0.3, "angle": -25.43 },
  2734. { "time": 0.4, "angle": -12.72 }
  2735. ],
  2736. "translate": [
  2737. { "curve": "stepped" },
  2738. { "time": 0.4 }
  2739. ],
  2740. "scale": [
  2741. { "curve": "stepped" },
  2742. { "time": 0.4 }
  2743. ]
  2744. },
  2745. "hair-back": {
  2746. "rotate": [
  2747. { "angle": 10.84, "curve": 0.351, "c2": 0.4, "c3": 0.757 },
  2748. { "time": 0.1333 },
  2749. { "time": 0.3333, "angle": 15.13, "curve": 0.265, "c3": 0.618, "c4": 0.43 },
  2750. { "time": 0.4, "angle": 10.84 }
  2751. ],
  2752. "translate": [
  2753. { "curve": "stepped" },
  2754. { "time": 0.4 }
  2755. ],
  2756. "scale": [
  2757. { "curve": "stepped" },
  2758. { "time": 0.4 }
  2759. ]
  2760. },
  2761. "left feet-back": {
  2762. "rotate": [
  2763. { "curve": "stepped" },
  2764. { "time": 0.4 }
  2765. ],
  2766. "translate": [
  2767. { "curve": "stepped" },
  2768. { "time": 0.4 }
  2769. ],
  2770. "scale": [
  2771. { "curve": "stepped" },
  2772. { "time": 0.4 }
  2773. ]
  2774. },
  2775. "body-back": {
  2776. "rotate": [
  2777. { "curve": "stepped" },
  2778. { "time": 0.4 }
  2779. ],
  2780. "translate": [
  2781. { "curve": "stepped" },
  2782. { "time": 0.4 }
  2783. ],
  2784. "scale": [
  2785. { "curve": "stepped" },
  2786. { "time": 0.4 }
  2787. ]
  2788. },
  2789. "right feet-back": {
  2790. "rotate": [
  2791. { "curve": "stepped" },
  2792. { "time": 0.4 }
  2793. ],
  2794. "translate": [
  2795. { "curve": "stepped" },
  2796. { "time": 0.4 }
  2797. ],
  2798. "scale": [
  2799. { "curve": "stepped" },
  2800. { "time": 0.4 }
  2801. ]
  2802. },
  2803. "weijjin2-back": {
  2804. "rotate": [
  2805. { "angle": 3.27, "curve": 0.382, "c2": 0.57, "c3": 0.735 },
  2806. { "time": 0.0667, "angle": 7.18 },
  2807. { "time": 0.2667, "angle": -6.61, "curve": 0.243, "c3": 0.649, "c4": 0.6 },
  2808. { "time": 0.4, "angle": 3.27 }
  2809. ],
  2810. "translate": [
  2811. { "curve": "stepped" },
  2812. { "time": 0.4 }
  2813. ],
  2814. "scale": [
  2815. { "curve": "stepped" },
  2816. { "time": 0.4 }
  2817. ]
  2818. },
  2819. "body-back2": {
  2820. "rotate": [
  2821. { "curve": "stepped" },
  2822. { "time": 0.1667 },
  2823. { "time": 0.2333, "angle": -9.86 },
  2824. { "time": 0.3, "angle": 11.28 },
  2825. { "time": 0.4 }
  2826. ],
  2827. "translate": [
  2828. {},
  2829. { "time": 0.1667, "y": 3.45 },
  2830. { "time": 0.2333, "y": -6.03 },
  2831. { "time": 0.3, "x": -1.72, "y": 8.62 },
  2832. { "time": 0.4 }
  2833. ],
  2834. "scale": [
  2835. { "curve": "stepped" },
  2836. { "time": 0.4 }
  2837. ]
  2838. },
  2839. "bone_left": {
  2840. "translate": [
  2841. { "x": 349.66, "curve": "stepped" },
  2842. { "time": 0.4, "x": 349.66 }
  2843. ]
  2844. },
  2845. "bone_back": {
  2846. "translate": [
  2847. { "x": 448.45, "y": 1.57, "curve": "stepped" },
  2848. { "time": 0.4, "x": 448.45, "y": 1.57 }
  2849. ]
  2850. },
  2851. "weijjin2-back2": {
  2852. "rotate": [
  2853. { "angle": -5.28, "curve": 0.311, "c2": 0.25, "c3": 0.757 },
  2854. { "time": 0.1667, "angle": 7.18 },
  2855. { "time": 0.3667, "angle": -6.61, "curve": 0.29, "c3": 0.629, "c4": 0.38 },
  2856. { "time": 0.4, "angle": -5.28 }
  2857. ],
  2858. "translate": [
  2859. { "curve": "stepped" },
  2860. { "time": 0.4 }
  2861. ],
  2862. "scale": [
  2863. { "curve": "stepped" },
  2864. { "time": 0.4 }
  2865. ]
  2866. },
  2867. "weijjin2-back3": {
  2868. "rotate": [
  2869. { "angle": -2.01 },
  2870. { "time": 0.0667, "angle": -6.61, "curve": 0.25, "c3": 0.75 },
  2871. { "time": 0.2667, "angle": 7.18 },
  2872. { "time": 0.4, "angle": -2.01 }
  2873. ],
  2874. "translate": [
  2875. { "curve": "stepped" },
  2876. { "time": 0.2667, "curve": "stepped" },
  2877. { "time": 0.4 }
  2878. ],
  2879. "scale": [
  2880. { "curve": "stepped" },
  2881. { "time": 0.2667, "curve": "stepped" },
  2882. { "time": 0.4 }
  2883. ]
  2884. },
  2885. "tx2": {
  2886. "rotate": [
  2887. { "time": 0.2, "angle": -7.94 }
  2888. ],
  2889. "translate": [
  2890. { "time": 0.2, "x": 6.18, "y": -10.77 },
  2891. { "time": 0.2333, "x": 8.98, "y": 6.56 }
  2892. ]
  2893. }
  2894. },
  2895. "drawOrder": [
  2896. {
  2897. "time": 0.2,
  2898. "offsets": [
  2899. { "slot": "tx2", "offset": -12 }
  2900. ]
  2901. }
  2902. ],
  2903. "events": [
  2904. { "time": 0.2, "name": "fire1" }
  2905. ]
  2906. },
  2907. "idle_down": {
  2908. "slots": {
  2909. "body": {
  2910. "attachment": [
  2911. { "name": null }
  2912. ]
  2913. },
  2914. "body-back": {
  2915. "attachment": [
  2916. { "name": null }
  2917. ]
  2918. },
  2919. "ear1": {
  2920. "attachment": [
  2921. { "name": null }
  2922. ]
  2923. },
  2924. "ear1-back": {
  2925. "attachment": [
  2926. { "name": null }
  2927. ]
  2928. },
  2929. "ear2": {
  2930. "attachment": [
  2931. { "name": null }
  2932. ]
  2933. },
  2934. "ear2-back": {
  2935. "attachment": [
  2936. { "name": null }
  2937. ]
  2938. },
  2939. "eye1": {
  2940. "attachment": [
  2941. { "name": null }
  2942. ]
  2943. },
  2944. "eye2": {
  2945. "attachment": [
  2946. { "name": null }
  2947. ]
  2948. },
  2949. "gun": {
  2950. "attachment": [
  2951. { "name": null }
  2952. ]
  2953. },
  2954. "gun-back": {
  2955. "attachment": [
  2956. { "name": null }
  2957. ]
  2958. },
  2959. "hair": {
  2960. "attachment": [
  2961. { "name": null }
  2962. ]
  2963. },
  2964. "hair-back": {
  2965. "attachment": [
  2966. { "name": null }
  2967. ]
  2968. },
  2969. "head": {
  2970. "attachment": [
  2971. { "name": null }
  2972. ]
  2973. },
  2974. "head-back": {
  2975. "attachment": [
  2976. { "name": null }
  2977. ]
  2978. },
  2979. "left arm1": {
  2980. "attachment": [
  2981. { "name": null }
  2982. ]
  2983. },
  2984. "left arm1-back": {
  2985. "attachment": [
  2986. { "name": null }
  2987. ]
  2988. },
  2989. "left arm2": {
  2990. "attachment": [
  2991. { "name": null }
  2992. ]
  2993. },
  2994. "left arm2-back": {
  2995. "attachment": [
  2996. { "name": null }
  2997. ]
  2998. },
  2999. "left feet": {
  3000. "attachment": [
  3001. { "name": null }
  3002. ]
  3003. },
  3004. "left feet-back": {
  3005. "attachment": [
  3006. { "name": null }
  3007. ]
  3008. },
  3009. "left hand": {
  3010. "attachment": [
  3011. { "name": null }
  3012. ]
  3013. },
  3014. "left hand-back": {
  3015. "attachment": [
  3016. { "name": null }
  3017. ]
  3018. },
  3019. "mouth": {
  3020. "attachment": [
  3021. { "name": null }
  3022. ]
  3023. },
  3024. "right arm1": {
  3025. "attachment": [
  3026. { "name": null }
  3027. ]
  3028. },
  3029. "right arm2": {
  3030. "attachment": [
  3031. { "name": null }
  3032. ]
  3033. },
  3034. "right arm2-back": {
  3035. "attachment": [
  3036. { "name": null }
  3037. ]
  3038. },
  3039. "right feet": {
  3040. "attachment": [
  3041. { "name": null }
  3042. ]
  3043. },
  3044. "right feet-back": {
  3045. "attachment": [
  3046. { "name": null }
  3047. ]
  3048. },
  3049. "right hand": {
  3050. "attachment": [
  3051. { "name": null }
  3052. ]
  3053. },
  3054. "trousers": {
  3055. "attachment": [
  3056. { "name": null }
  3057. ]
  3058. },
  3059. "trousers-back": {
  3060. "attachment": [
  3061. { "name": null }
  3062. ]
  3063. },
  3064. "weijin1": {
  3065. "attachment": [
  3066. { "name": null }
  3067. ]
  3068. },
  3069. "weijin1-back": {
  3070. "attachment": [
  3071. { "name": null }
  3072. ]
  3073. },
  3074. "weijjin2": {
  3075. "attachment": [
  3076. { "name": null }
  3077. ]
  3078. },
  3079. "weijjin2-back": {
  3080. "attachment": [
  3081. { "name": null }
  3082. ]
  3083. }
  3084. },
  3085. "bones": {
  3086. "body-front": {
  3087. "rotate": [
  3088. { "curve": "stepped" },
  3089. { "time": 1 }
  3090. ],
  3091. "translate": [
  3092. { "curve": "stepped" },
  3093. { "time": 1 }
  3094. ],
  3095. "scale": [
  3096. { "curve": "stepped" },
  3097. { "time": 1 }
  3098. ]
  3099. },
  3100. "body-front2": {
  3101. "rotate": [
  3102. { "curve": "stepped" },
  3103. { "time": 1 }
  3104. ],
  3105. "translate": [
  3106. { "y": -0.2, "curve": 0.366, "c2": 0.63, "c3": 0.703 },
  3107. { "time": 0.0667 },
  3108. { "time": 0.5667, "y": -2.9, "curve": 0.244, "c3": 0.7, "c4": 0.79 },
  3109. { "time": 1, "y": -0.2 }
  3110. ],
  3111. "scale": [
  3112. { "curve": "stepped" },
  3113. { "time": 1 }
  3114. ]
  3115. },
  3116. "head-front": {
  3117. "rotate": [
  3118. { "curve": "stepped" },
  3119. { "time": 0.1, "curve": "stepped" },
  3120. { "time": 1 }
  3121. ],
  3122. "translate": [
  3123. { "x": -0.42, "y": 0.01 },
  3124. { "time": 0.1 },
  3125. { "time": 0.6, "x": -2.12, "y": 0.03 },
  3126. { "time": 1, "x": -0.42, "y": 0.01 }
  3127. ],
  3128. "scale": [
  3129. { "curve": "stepped" },
  3130. { "time": 1 }
  3131. ]
  3132. },
  3133. "eye2-front": {
  3134. "rotate": [
  3135. { "angle": 1.32 },
  3136. { "time": 0.1333 },
  3137. { "time": 0.6333, "angle": 4.96 },
  3138. { "time": 1, "angle": 1.32 }
  3139. ],
  3140. "translate": [
  3141. { "curve": "stepped" },
  3142. { "time": 0.1333, "curve": "stepped" },
  3143. { "time": 1 }
  3144. ],
  3145. "scale": [
  3146. { "curve": "stepped" },
  3147. { "time": 0.1333, "curve": "stepped" },
  3148. { "time": 1 }
  3149. ]
  3150. },
  3151. "eye1-front": {
  3152. "rotate": [
  3153. { "angle": -1.92 },
  3154. { "time": 0.1333 },
  3155. { "time": 0.6333, "angle": -7.2 },
  3156. { "time": 1, "angle": -1.92 }
  3157. ],
  3158. "translate": [
  3159. { "curve": "stepped" },
  3160. { "time": 0.1333, "curve": "stepped" },
  3161. { "time": 1 }
  3162. ],
  3163. "scale": [
  3164. { "curve": "stepped" },
  3165. { "time": 0.1333, "curve": "stepped" },
  3166. { "time": 1 }
  3167. ]
  3168. },
  3169. "ear1-front": {
  3170. "rotate": [
  3171. { "angle": 2.85 },
  3172. { "time": 0.1667 },
  3173. { "time": 0.6667, "angle": 8.54 },
  3174. { "time": 1, "angle": 2.85 }
  3175. ],
  3176. "translate": [
  3177. { "curve": "stepped" },
  3178. { "time": 0.1667, "curve": "stepped" },
  3179. { "time": 1 }
  3180. ],
  3181. "scale": [
  3182. { "curve": "stepped" },
  3183. { "time": 0.1667, "curve": "stepped" },
  3184. { "time": 1 }
  3185. ]
  3186. },
  3187. "ear2-front": {
  3188. "rotate": [
  3189. { "angle": -2.41 },
  3190. { "time": 0.1667 },
  3191. { "time": 0.6667, "angle": -7.22 },
  3192. { "time": 1, "angle": -2.41 }
  3193. ],
  3194. "translate": [
  3195. { "curve": "stepped" },
  3196. { "time": 0.1667, "curve": "stepped" },
  3197. { "time": 1 }
  3198. ],
  3199. "scale": [
  3200. { "curve": "stepped" },
  3201. { "time": 0.1667, "curve": "stepped" },
  3202. { "time": 1 }
  3203. ]
  3204. },
  3205. "hair-front": {
  3206. "rotate": [
  3207. { "angle": -3.04 },
  3208. { "time": 0.1667 },
  3209. { "time": 0.6667, "angle": -9.11 },
  3210. { "time": 1, "angle": -3.04 }
  3211. ],
  3212. "translate": [
  3213. { "curve": "stepped" },
  3214. { "time": 0.1667, "curve": "stepped" },
  3215. { "time": 1 }
  3216. ],
  3217. "scale": [
  3218. { "curve": "stepped" },
  3219. { "time": 0.1667, "curve": "stepped" },
  3220. { "time": 1 }
  3221. ]
  3222. },
  3223. "weijjin2-front": {
  3224. "rotate": [
  3225. { "angle": -2.77 },
  3226. { "time": 0.1333 },
  3227. { "time": 0.6333, "angle": -10.39 },
  3228. { "time": 1, "angle": -2.77 }
  3229. ],
  3230. "translate": [
  3231. { "curve": "stepped" },
  3232. { "time": 0.1333, "curve": "stepped" },
  3233. { "time": 1 }
  3234. ],
  3235. "scale": [
  3236. { "curve": "stepped" },
  3237. { "time": 0.1333, "curve": "stepped" },
  3238. { "time": 1 }
  3239. ]
  3240. },
  3241. "weijjin2-front2": {
  3242. "rotate": [
  3243. { "angle": -1.78 },
  3244. { "time": 0.2 },
  3245. { "time": 0.7, "angle": -4.45 },
  3246. { "time": 1, "angle": -1.78 }
  3247. ],
  3248. "translate": [
  3249. { "curve": "stepped" },
  3250. { "time": 0.2, "curve": "stepped" },
  3251. { "time": 1 }
  3252. ],
  3253. "scale": [
  3254. { "curve": "stepped" },
  3255. { "time": 0.2, "curve": "stepped" },
  3256. { "time": 1 }
  3257. ]
  3258. },
  3259. "weijjin2-front3": {
  3260. "rotate": [
  3261. { "angle": -2.51 },
  3262. { "time": 0.3 },
  3263. { "time": 0.8, "angle": -4.18 },
  3264. { "time": 1, "angle": -2.51 }
  3265. ],
  3266. "translate": [
  3267. { "curve": "stepped" },
  3268. { "time": 0.3, "curve": "stepped" },
  3269. { "time": 1 }
  3270. ],
  3271. "scale": [
  3272. { "curve": "stepped" },
  3273. { "time": 0.3, "curve": "stepped" },
  3274. { "time": 1 }
  3275. ]
  3276. },
  3277. "left arm2-front": {
  3278. "rotate": [
  3279. { "angle": 2.5, "curve": "stepped" },
  3280. { "time": 1, "angle": 2.5 }
  3281. ],
  3282. "translate": [
  3283. { "curve": "stepped" },
  3284. { "time": 1 }
  3285. ],
  3286. "scale": [
  3287. { "curve": "stepped" },
  3288. { "time": 1 }
  3289. ]
  3290. },
  3291. "left hand-front": {
  3292. "rotate": [
  3293. { "angle": -1.63, "curve": "stepped" },
  3294. { "time": 1, "angle": -1.63 }
  3295. ],
  3296. "translate": [
  3297. { "curve": "stepped" },
  3298. { "time": 1 }
  3299. ],
  3300. "scale": [
  3301. { "curve": "stepped" },
  3302. { "time": 1 }
  3303. ]
  3304. },
  3305. "right arm2-front": {
  3306. "rotate": [
  3307. { "curve": "stepped" },
  3308. { "time": 1 }
  3309. ],
  3310. "translate": [
  3311. { "curve": "stepped" },
  3312. { "time": 1 }
  3313. ],
  3314. "scale": [
  3315. { "curve": "stepped" },
  3316. { "time": 1 }
  3317. ]
  3318. },
  3319. "right arm1-front": {
  3320. "rotate": [
  3321. { "angle": -3.16, "curve": "stepped" },
  3322. { "time": 1, "angle": -3.16 }
  3323. ],
  3324. "translate": [
  3325. { "curve": "stepped" },
  3326. { "time": 1 }
  3327. ],
  3328. "scale": [
  3329. { "curve": "stepped" },
  3330. { "time": 1 }
  3331. ]
  3332. },
  3333. "right hand-front": {
  3334. "rotate": [
  3335. { "angle": -10.96, "curve": "stepped" },
  3336. { "time": 1, "angle": -10.96 }
  3337. ],
  3338. "translate": [
  3339. { "curve": "stepped" },
  3340. { "time": 1 }
  3341. ],
  3342. "scale": [
  3343. { "curve": "stepped" },
  3344. { "time": 1 }
  3345. ]
  3346. },
  3347. "gun3": {
  3348. "rotate": [
  3349. {}
  3350. ],
  3351. "translate": [
  3352. {}
  3353. ],
  3354. "scale": [
  3355. {}
  3356. ]
  3357. },
  3358. "K4": {
  3359. "rotate": [
  3360. { "curve": "stepped" },
  3361. { "time": 1 }
  3362. ],
  3363. "translate": [
  3364. {},
  3365. { "time": 0.5, "x": 5.57, "curve": 0.25, "c3": 0.75 },
  3366. { "time": 1 }
  3367. ],
  3368. "scale": [
  3369. { "curve": "stepped" },
  3370. { "time": 1 }
  3371. ]
  3372. },
  3373. "K5": {
  3374. "rotate": [
  3375. { "curve": "stepped" },
  3376. { "time": 1 }
  3377. ],
  3378. "translate": [
  3379. {},
  3380. { "time": 0.5, "x": 3.18, "curve": 0.25, "c3": 0.75 },
  3381. { "time": 1 }
  3382. ],
  3383. "scale": [
  3384. { "curve": "stepped" },
  3385. { "time": 1 }
  3386. ]
  3387. },
  3388. "left feet-front": {
  3389. "rotate": [
  3390. { "curve": "stepped" },
  3391. { "time": 1 }
  3392. ],
  3393. "translate": [
  3394. {},
  3395. { "time": 0.5 },
  3396. { "time": 1 }
  3397. ],
  3398. "scale": [
  3399. { "curve": "stepped" },
  3400. { "time": 1 }
  3401. ]
  3402. },
  3403. "right feet-front": {
  3404. "rotate": [
  3405. { "curve": "stepped" },
  3406. { "time": 1 }
  3407. ],
  3408. "translate": [
  3409. { "curve": "stepped" },
  3410. { "time": 0.5, "curve": "stepped" },
  3411. { "time": 1 }
  3412. ],
  3413. "scale": [
  3414. { "curve": "stepped" },
  3415. { "time": 1 }
  3416. ]
  3417. },
  3418. "bone_left": {
  3419. "translate": [
  3420. { "x": 918.63, "y": 47.79 }
  3421. ]
  3422. },
  3423. "bone_front": {
  3424. "translate": [
  3425. { "x": -515.07, "y": -10.62 }
  3426. ]
  3427. }
  3428. }
  3429. },
  3430. "idle_left": {
  3431. "slots": {
  3432. "body-back": {
  3433. "attachment": [
  3434. { "name": null }
  3435. ]
  3436. },
  3437. "body-front": {
  3438. "attachment": [
  3439. { "name": null }
  3440. ]
  3441. },
  3442. "duqi-front": {
  3443. "attachment": [
  3444. { "name": null }
  3445. ]
  3446. },
  3447. "ear1-back": {
  3448. "attachment": [
  3449. { "name": null }
  3450. ]
  3451. },
  3452. "ear1-front": {
  3453. "attachment": [
  3454. { "name": null }
  3455. ]
  3456. },
  3457. "ear2-back": {
  3458. "attachment": [
  3459. { "name": null }
  3460. ]
  3461. },
  3462. "ear2-front": {
  3463. "attachment": [
  3464. { "name": null }
  3465. ]
  3466. },
  3467. "eye1-front": {
  3468. "attachment": [
  3469. { "name": null }
  3470. ]
  3471. },
  3472. "eye2-front": {
  3473. "attachment": [
  3474. { "name": null }
  3475. ]
  3476. },
  3477. "gun-back": {
  3478. "attachment": [
  3479. { "name": null }
  3480. ]
  3481. },
  3482. "gun-front": {
  3483. "attachment": [
  3484. { "name": null }
  3485. ]
  3486. },
  3487. "hair-back": {
  3488. "attachment": [
  3489. { "name": null }
  3490. ]
  3491. },
  3492. "hair-front": {
  3493. "attachment": [
  3494. { "name": null }
  3495. ]
  3496. },
  3497. "head-back": {
  3498. "attachment": [
  3499. { "name": null }
  3500. ]
  3501. },
  3502. "head-front": {
  3503. "attachment": [
  3504. { "name": null }
  3505. ]
  3506. },
  3507. "left arm1-back": {
  3508. "attachment": [
  3509. { "name": null }
  3510. ]
  3511. },
  3512. "left arm2-back": {
  3513. "attachment": [
  3514. { "name": null }
  3515. ]
  3516. },
  3517. "left arm2-front": {
  3518. "attachment": [
  3519. { "name": null }
  3520. ]
  3521. },
  3522. "left feet-back": {
  3523. "attachment": [
  3524. { "name": null }
  3525. ]
  3526. },
  3527. "left feet-front": {
  3528. "attachment": [
  3529. { "name": null }
  3530. ]
  3531. },
  3532. "left hand-back": {
  3533. "attachment": [
  3534. { "name": null }
  3535. ]
  3536. },
  3537. "left hand-front": {
  3538. "attachment": [
  3539. { "name": null }
  3540. ]
  3541. },
  3542. "mouth-front": {
  3543. "attachment": [
  3544. { "name": null }
  3545. ]
  3546. },
  3547. "right arm1-front": {
  3548. "attachment": [
  3549. { "name": null }
  3550. ]
  3551. },
  3552. "right arm2-back": {
  3553. "attachment": [
  3554. { "name": null }
  3555. ]
  3556. },
  3557. "right arm2-front": {
  3558. "attachment": [
  3559. { "name": null }
  3560. ]
  3561. },
  3562. "right feet-back": {
  3563. "attachment": [
  3564. { "name": null }
  3565. ]
  3566. },
  3567. "right feet-front": {
  3568. "attachment": [
  3569. { "name": null }
  3570. ]
  3571. },
  3572. "right hand-front": {
  3573. "attachment": [
  3574. { "name": null }
  3575. ]
  3576. },
  3577. "trousers-back": {
  3578. "attachment": [
  3579. { "name": null }
  3580. ]
  3581. },
  3582. "trousers-front": {
  3583. "attachment": [
  3584. { "name": null }
  3585. ]
  3586. },
  3587. "weijin1-back": {
  3588. "attachment": [
  3589. { "name": null }
  3590. ]
  3591. },
  3592. "weijin1-front": {
  3593. "attachment": [
  3594. { "name": null }
  3595. ]
  3596. },
  3597. "weijjin2-back": {
  3598. "attachment": [
  3599. { "name": null }
  3600. ]
  3601. },
  3602. "weijjin2-front": {
  3603. "attachment": [
  3604. { "name": null }
  3605. ]
  3606. }
  3607. },
  3608. "bones": {
  3609. "bone_left2": {
  3610. "translate": [
  3611. { "curve": 0.25, "c3": 0.75 },
  3612. { "time": 0.5, "y": -2.98, "curve": 0.25, "c3": 0.75 },
  3613. { "time": 1 }
  3614. ]
  3615. },
  3616. "left feet": {
  3617. "translate": [
  3618. {},
  3619. { "time": 0.5, "y": 2.71 },
  3620. { "time": 1 }
  3621. ]
  3622. },
  3623. "right feet": {
  3624. "translate": [
  3625. {},
  3626. { "time": 0.5, "y": 2.98, "curve": 0.25, "c3": 0.75 },
  3627. { "time": 1 }
  3628. ]
  3629. },
  3630. "body": {
  3631. "rotate": [
  3632. { "angle": 0.07, "curve": 0.366, "c2": 0.63, "c3": 0.703 },
  3633. { "time": 0.0667, "curve": 0.25, "c3": 0.75 },
  3634. { "time": 0.5667, "angle": 1.06, "curve": 0.244, "c3": 0.7, "c4": 0.79 },
  3635. { "time": 1, "angle": 0.07 }
  3636. ]
  3637. },
  3638. "head": {
  3639. "rotate": [
  3640. { "angle": 0.44, "curve": 0.382, "c2": 0.57, "c3": 0.735 },
  3641. { "time": 0.1667, "curve": 0.25, "c3": 0.75 },
  3642. { "time": 0.6667, "angle": 1.57, "curve": 0.243, "c3": 0.649, "c4": 0.6 },
  3643. { "time": 1, "angle": 0.44 }
  3644. ]
  3645. },
  3646. "eye1": {
  3647. "rotate": [
  3648. {},
  3649. { "time": 0.5, "angle": 5.17 },
  3650. { "time": 1 }
  3651. ],
  3652. "translate": [
  3653. {},
  3654. { "time": 0.5, "x": 1.66, "y": -0.06 },
  3655. { "time": 1 }
  3656. ]
  3657. },
  3658. "eye2": {
  3659. "rotate": [
  3660. {},
  3661. { "time": 0.5, "angle": -5.8 },
  3662. { "time": 1 }
  3663. ],
  3664. "translate": [
  3665. {},
  3666. { "time": 0.5, "x": 1.66, "y": -0.06 },
  3667. { "time": 1 }
  3668. ]
  3669. },
  3670. "ear2": {
  3671. "rotate": [
  3672. { "angle": -0.85, "curve": 0.375, "c2": 0.62, "c3": 0.716 },
  3673. { "time": 0.1, "curve": 0.25, "c3": 0.75 },
  3674. { "time": 0.6, "angle": -6.55, "curve": 0.243, "c3": 0.68, "c4": 0.71 },
  3675. { "time": 1, "angle": -0.85 }
  3676. ]
  3677. },
  3678. "hair": {
  3679. "rotate": [
  3680. { "angle": -0.62, "curve": 0.366, "c2": 0.63, "c3": 0.703 },
  3681. { "time": 0.0667, "curve": 0.25, "c3": 0.75 },
  3682. { "time": 0.5667, "angle": -8.99, "curve": 0.244, "c3": 0.7, "c4": 0.79 },
  3683. { "time": 1, "angle": -0.62 }
  3684. ]
  3685. },
  3686. "ear1": {
  3687. "rotate": [
  3688. { "angle": 1.34, "curve": 0.375, "c2": 0.62, "c3": 0.716 },
  3689. { "time": 0.1, "curve": 0.25, "c3": 0.75 },
  3690. { "time": 0.6, "angle": 10.29, "curve": 0.243, "c3": 0.68, "c4": 0.71 },
  3691. { "time": 1, "angle": 1.34 }
  3692. ]
  3693. },
  3694. "weijjin2": {
  3695. "rotate": [
  3696. { "angle": -0.86, "curve": 0.382, "c2": 0.57, "c3": 0.735 },
  3697. { "time": 0.1667, "curve": 0.25, "c3": 0.75 },
  3698. { "time": 0.6667, "angle": -3.04, "curve": 0.243, "c3": 0.649, "c4": 0.6 },
  3699. { "time": 1, "angle": -0.86 }
  3700. ]
  3701. },
  3702. "weijjin3": {
  3703. "rotate": [
  3704. { "angle": -3.81, "curve": 0.372, "c2": 0.48, "c3": 0.752 },
  3705. { "time": 0.2667, "curve": 0.25, "c3": 0.75 },
  3706. { "time": 0.7667, "angle": -7.01, "curve": 0.252, "c3": 0.622, "c4": 0.48 },
  3707. { "time": 1, "angle": -3.81 }
  3708. ]
  3709. },
  3710. "weijjin4": {
  3711. "rotate": [
  3712. { "angle": -14.36, "curve": 0.337, "c2": 0.35, "c3": 0.758 },
  3713. { "time": 0.3667, "curve": 0.25, "c3": 0.75 },
  3714. { "time": 0.8667, "angle": -18.01, "curve": 0.273, "c3": 0.62, "c4": 0.41 },
  3715. { "time": 1, "angle": -14.36 }
  3716. ]
  3717. },
  3718. "K2": {
  3719. "rotate": [
  3720. { "curve": 0.25, "c3": 0.75 },
  3721. { "time": 0.5, "angle": 2.6, "curve": 0.25, "c3": 0.75 },
  3722. { "time": 1 }
  3723. ],
  3724. "translate": [
  3725. { "curve": 0.252, "c3": 0.622, "c4": 0.48 },
  3726. {
  3727. "time": 0.5,
  3728. "x": 2.81,
  3729. "y": -5.44,
  3730. "curve": 0.361,
  3731. "c2": 0.43,
  3732. "c3": 0.729,
  3733. "c4": 0.89
  3734. },
  3735. { "time": 1 }
  3736. ]
  3737. },
  3738. "bone_left4": {
  3739. "translate": [
  3740. { "curve": 0.25, "c3": 0.75 },
  3741. { "time": 0.5, "x": 2.81, "y": -5.44, "curve": 0.25, "c3": 0.75 },
  3742. { "time": 1 }
  3743. ]
  3744. }
  3745. }
  3746. },
  3747. "idle_right": {
  3748. "slots": {
  3749. "body-back": {
  3750. "attachment": [
  3751. { "name": null }
  3752. ]
  3753. },
  3754. "body-front": {
  3755. "attachment": [
  3756. { "name": null }
  3757. ]
  3758. },
  3759. "duqi-front": {
  3760. "attachment": [
  3761. { "name": null }
  3762. ]
  3763. },
  3764. "ear1-back": {
  3765. "attachment": [
  3766. { "name": null }
  3767. ]
  3768. },
  3769. "ear1-front": {
  3770. "attachment": [
  3771. { "name": null }
  3772. ]
  3773. },
  3774. "ear2-back": {
  3775. "attachment": [
  3776. { "name": null }
  3777. ]
  3778. },
  3779. "ear2-front": {
  3780. "attachment": [
  3781. { "name": null }
  3782. ]
  3783. },
  3784. "eye1-front": {
  3785. "attachment": [
  3786. { "name": null }
  3787. ]
  3788. },
  3789. "eye2-front": {
  3790. "attachment": [
  3791. { "name": null }
  3792. ]
  3793. },
  3794. "gun-back": {
  3795. "attachment": [
  3796. { "name": null }
  3797. ]
  3798. },
  3799. "gun-front": {
  3800. "attachment": [
  3801. { "name": null }
  3802. ]
  3803. },
  3804. "hair-back": {
  3805. "attachment": [
  3806. { "name": null }
  3807. ]
  3808. },
  3809. "hair-front": {
  3810. "attachment": [
  3811. { "name": null }
  3812. ]
  3813. },
  3814. "head-back": {
  3815. "attachment": [
  3816. { "name": null }
  3817. ]
  3818. },
  3819. "head-front": {
  3820. "attachment": [
  3821. { "name": null }
  3822. ]
  3823. },
  3824. "left arm1-back": {
  3825. "attachment": [
  3826. { "name": null }
  3827. ]
  3828. },
  3829. "left arm2-back": {
  3830. "attachment": [
  3831. { "name": null }
  3832. ]
  3833. },
  3834. "left arm2-front": {
  3835. "attachment": [
  3836. { "name": null }
  3837. ]
  3838. },
  3839. "left feet-back": {
  3840. "attachment": [
  3841. { "name": null }
  3842. ]
  3843. },
  3844. "left feet-front": {
  3845. "attachment": [
  3846. { "name": null }
  3847. ]
  3848. },
  3849. "left hand-back": {
  3850. "attachment": [
  3851. { "name": null }
  3852. ]
  3853. },
  3854. "left hand-front": {
  3855. "attachment": [
  3856. { "name": null }
  3857. ]
  3858. },
  3859. "mouth-front": {
  3860. "attachment": [
  3861. { "name": null }
  3862. ]
  3863. },
  3864. "right arm1-front": {
  3865. "attachment": [
  3866. { "name": null }
  3867. ]
  3868. },
  3869. "right arm2-back": {
  3870. "attachment": [
  3871. { "name": null }
  3872. ]
  3873. },
  3874. "right arm2-front": {
  3875. "attachment": [
  3876. { "name": null }
  3877. ]
  3878. },
  3879. "right feet-back": {
  3880. "attachment": [
  3881. { "name": null }
  3882. ]
  3883. },
  3884. "right feet-front": {
  3885. "attachment": [
  3886. { "name": null }
  3887. ]
  3888. },
  3889. "right hand-front": {
  3890. "attachment": [
  3891. { "name": null }
  3892. ]
  3893. },
  3894. "trousers-back": {
  3895. "attachment": [
  3896. { "name": null }
  3897. ]
  3898. },
  3899. "trousers-front": {
  3900. "attachment": [
  3901. { "name": null }
  3902. ]
  3903. },
  3904. "weijin1-back": {
  3905. "attachment": [
  3906. { "name": null }
  3907. ]
  3908. },
  3909. "weijin1-front": {
  3910. "attachment": [
  3911. { "name": null }
  3912. ]
  3913. },
  3914. "weijjin2-back": {
  3915. "attachment": [
  3916. { "name": null }
  3917. ]
  3918. },
  3919. "weijjin2-front": {
  3920. "attachment": [
  3921. { "name": null }
  3922. ]
  3923. }
  3924. },
  3925. "bones": {
  3926. "bone_left2": {
  3927. "translate": [
  3928. { "curve": 0.25, "c3": 0.75 },
  3929. { "time": 0.5, "y": -2.98, "curve": 0.25, "c3": 0.75 },
  3930. { "time": 1 }
  3931. ]
  3932. },
  3933. "left feet": {
  3934. "translate": [
  3935. {},
  3936. { "time": 0.5, "y": 2.71 },
  3937. { "time": 1 }
  3938. ]
  3939. },
  3940. "right feet": {
  3941. "translate": [
  3942. {},
  3943. { "time": 0.5, "y": 2.98, "curve": 0.25, "c3": 0.75 },
  3944. { "time": 1 }
  3945. ]
  3946. },
  3947. "body": {
  3948. "rotate": [
  3949. { "angle": 0.07, "curve": 0.366, "c2": 0.63, "c3": 0.703 },
  3950. { "time": 0.0667, "curve": 0.25, "c3": 0.75 },
  3951. { "time": 0.5667, "angle": 1.06, "curve": 0.244, "c3": 0.7, "c4": 0.79 },
  3952. { "time": 1, "angle": 0.07 }
  3953. ]
  3954. },
  3955. "head": {
  3956. "rotate": [
  3957. { "angle": 0.44, "curve": 0.382, "c2": 0.57, "c3": 0.735 },
  3958. { "time": 0.1667, "curve": 0.25, "c3": 0.75 },
  3959. { "time": 0.6667, "angle": 1.57, "curve": 0.243, "c3": 0.649, "c4": 0.6 },
  3960. { "time": 1, "angle": 0.44 }
  3961. ]
  3962. },
  3963. "eye1": {
  3964. "rotate": [
  3965. {},
  3966. { "time": 0.5, "angle": 5.17 },
  3967. { "time": 1 }
  3968. ],
  3969. "translate": [
  3970. {},
  3971. { "time": 0.5, "x": 1.66, "y": -0.06 },
  3972. { "time": 1 }
  3973. ]
  3974. },
  3975. "eye2": {
  3976. "rotate": [
  3977. {},
  3978. { "time": 0.5, "angle": -5.8 },
  3979. { "time": 1 }
  3980. ],
  3981. "translate": [
  3982. {},
  3983. { "time": 0.5, "x": 1.66, "y": -0.06 },
  3984. { "time": 1 }
  3985. ]
  3986. },
  3987. "ear2": {
  3988. "rotate": [
  3989. { "angle": -0.85, "curve": 0.375, "c2": 0.62, "c3": 0.716 },
  3990. { "time": 0.1, "curve": 0.25, "c3": 0.75 },
  3991. { "time": 0.6, "angle": -6.55, "curve": 0.243, "c3": 0.68, "c4": 0.71 },
  3992. { "time": 1, "angle": -0.85 }
  3993. ]
  3994. },
  3995. "hair": {
  3996. "rotate": [
  3997. { "angle": -0.62, "curve": 0.366, "c2": 0.63, "c3": 0.703 },
  3998. { "time": 0.0667, "curve": 0.25, "c3": 0.75 },
  3999. { "time": 0.5667, "angle": -8.99, "curve": 0.244, "c3": 0.7, "c4": 0.79 },
  4000. { "time": 1, "angle": -0.62 }
  4001. ]
  4002. },
  4003. "ear1": {
  4004. "rotate": [
  4005. { "angle": 1.34, "curve": 0.375, "c2": 0.62, "c3": 0.716 },
  4006. { "time": 0.1, "curve": 0.25, "c3": 0.75 },
  4007. { "time": 0.6, "angle": 10.29, "curve": 0.243, "c3": 0.68, "c4": 0.71 },
  4008. { "time": 1, "angle": 1.34 }
  4009. ]
  4010. },
  4011. "weijjin2": {
  4012. "rotate": [
  4013. { "angle": -0.86, "curve": 0.382, "c2": 0.57, "c3": 0.735 },
  4014. { "time": 0.1667, "curve": 0.25, "c3": 0.75 },
  4015. { "time": 0.6667, "angle": -3.04, "curve": 0.243, "c3": 0.649, "c4": 0.6 },
  4016. { "time": 1, "angle": -0.86 }
  4017. ]
  4018. },
  4019. "weijjin3": {
  4020. "rotate": [
  4021. { "angle": -3.81, "curve": 0.372, "c2": 0.48, "c3": 0.752 },
  4022. { "time": 0.2667, "curve": 0.25, "c3": 0.75 },
  4023. { "time": 0.7667, "angle": -7.01, "curve": 0.252, "c3": 0.622, "c4": 0.48 },
  4024. { "time": 1, "angle": -3.81 }
  4025. ]
  4026. },
  4027. "weijjin4": {
  4028. "rotate": [
  4029. { "angle": -14.36, "curve": 0.337, "c2": 0.35, "c3": 0.758 },
  4030. { "time": 0.3667, "curve": 0.25, "c3": 0.75 },
  4031. { "time": 0.8667, "angle": -18.01, "curve": 0.273, "c3": 0.62, "c4": 0.41 },
  4032. { "time": 1, "angle": -14.36 }
  4033. ]
  4034. },
  4035. "K2": {
  4036. "rotate": [
  4037. { "curve": 0.25, "c3": 0.75 },
  4038. { "time": 0.5, "angle": 2.6, "curve": 0.25, "c3": 0.75 },
  4039. { "time": 1 }
  4040. ],
  4041. "translate": [
  4042. { "curve": 0.252, "c3": 0.622, "c4": 0.48 },
  4043. {
  4044. "time": 0.5,
  4045. "x": 2.81,
  4046. "y": -5.44,
  4047. "curve": 0.361,
  4048. "c2": 0.43,
  4049. "c3": 0.729,
  4050. "c4": 0.89
  4051. },
  4052. { "time": 1 }
  4053. ]
  4054. },
  4055. "bone_left4": {
  4056. "translate": [
  4057. { "curve": 0.25, "c3": 0.75 },
  4058. { "time": 0.5, "x": 2.81, "y": -5.44, "curve": 0.25, "c3": 0.75 },
  4059. { "time": 1 }
  4060. ]
  4061. },
  4062. "bone_left": {
  4063. "scale": [
  4064. { "x": -1 }
  4065. ]
  4066. }
  4067. }
  4068. },
  4069. "idle_up": {
  4070. "slots": {
  4071. "body": {
  4072. "attachment": [
  4073. { "name": null }
  4074. ]
  4075. },
  4076. "body-back": {
  4077. "attachment": [
  4078. { "name": "body-back" },
  4079. { "time": 1, "name": "body-back" }
  4080. ]
  4081. },
  4082. "body-front": {
  4083. "attachment": [
  4084. { "name": null }
  4085. ]
  4086. },
  4087. "duqi-front": {
  4088. "attachment": [
  4089. { "name": null }
  4090. ]
  4091. },
  4092. "ear1": {
  4093. "attachment": [
  4094. { "name": null }
  4095. ]
  4096. },
  4097. "ear1-back": {
  4098. "attachment": [
  4099. { "name": "ear1-back" },
  4100. { "time": 1, "name": "ear1-back" }
  4101. ]
  4102. },
  4103. "ear1-front": {
  4104. "attachment": [
  4105. { "name": null }
  4106. ]
  4107. },
  4108. "ear2": {
  4109. "attachment": [
  4110. { "name": null }
  4111. ]
  4112. },
  4113. "ear2-back": {
  4114. "attachment": [
  4115. { "name": "ear2-back" },
  4116. { "time": 1, "name": "ear2-back" }
  4117. ]
  4118. },
  4119. "ear2-front": {
  4120. "attachment": [
  4121. { "name": null }
  4122. ]
  4123. },
  4124. "eye1": {
  4125. "attachment": [
  4126. { "name": null }
  4127. ]
  4128. },
  4129. "eye1-front": {
  4130. "attachment": [
  4131. { "name": null }
  4132. ]
  4133. },
  4134. "eye2": {
  4135. "attachment": [
  4136. { "name": null }
  4137. ]
  4138. },
  4139. "eye2-front": {
  4140. "attachment": [
  4141. { "name": null }
  4142. ]
  4143. },
  4144. "gun": {
  4145. "attachment": [
  4146. { "name": null }
  4147. ]
  4148. },
  4149. "gun-back": {
  4150. "attachment": [
  4151. { "name": "gun-back" },
  4152. { "time": 1, "name": "gun-back" }
  4153. ]
  4154. },
  4155. "gun-front": {
  4156. "attachment": [
  4157. { "name": null }
  4158. ]
  4159. },
  4160. "hair": {
  4161. "attachment": [
  4162. { "name": null }
  4163. ]
  4164. },
  4165. "hair-back": {
  4166. "attachment": [
  4167. { "name": "hair-back" },
  4168. { "time": 1, "name": "hair-back" }
  4169. ]
  4170. },
  4171. "hair-front": {
  4172. "attachment": [
  4173. { "name": null }
  4174. ]
  4175. },
  4176. "head": {
  4177. "attachment": [
  4178. { "name": null }
  4179. ]
  4180. },
  4181. "head-back": {
  4182. "attachment": [
  4183. { "name": "head-back" },
  4184. { "time": 1, "name": "head-back" }
  4185. ]
  4186. },
  4187. "head-front": {
  4188. "attachment": [
  4189. { "name": null }
  4190. ]
  4191. },
  4192. "left arm1": {
  4193. "attachment": [
  4194. { "name": null }
  4195. ]
  4196. },
  4197. "left arm1-back": {
  4198. "attachment": [
  4199. { "name": "left arm1-back" },
  4200. { "time": 1, "name": "left arm1-back" }
  4201. ]
  4202. },
  4203. "left arm2": {
  4204. "attachment": [
  4205. { "name": null }
  4206. ]
  4207. },
  4208. "left arm2-back": {
  4209. "attachment": [
  4210. { "name": "left arm2-back" },
  4211. { "time": 1, "name": "left arm2-back" }
  4212. ]
  4213. },
  4214. "left arm2-front": {
  4215. "attachment": [
  4216. { "name": null }
  4217. ]
  4218. },
  4219. "left feet": {
  4220. "attachment": [
  4221. { "name": null }
  4222. ]
  4223. },
  4224. "left feet-back": {
  4225. "attachment": [
  4226. { "name": "left feet-back" },
  4227. { "time": 1, "name": "left feet-back" }
  4228. ]
  4229. },
  4230. "left feet-front": {
  4231. "attachment": [
  4232. { "name": null }
  4233. ]
  4234. },
  4235. "left hand": {
  4236. "attachment": [
  4237. { "name": null }
  4238. ]
  4239. },
  4240. "left hand-back": {
  4241. "attachment": [
  4242. { "name": "left hand-back" },
  4243. { "time": 1, "name": "left hand-back" }
  4244. ]
  4245. },
  4246. "left hand-front": {
  4247. "attachment": [
  4248. { "name": null }
  4249. ]
  4250. },
  4251. "mouth": {
  4252. "attachment": [
  4253. { "name": null }
  4254. ]
  4255. },
  4256. "mouth-front": {
  4257. "attachment": [
  4258. { "name": null }
  4259. ]
  4260. },
  4261. "right arm1": {
  4262. "attachment": [
  4263. { "name": null }
  4264. ]
  4265. },
  4266. "right arm1-front": {
  4267. "attachment": [
  4268. { "name": null }
  4269. ]
  4270. },
  4271. "right arm2": {
  4272. "attachment": [
  4273. { "name": null }
  4274. ]
  4275. },
  4276. "right arm2-back": {
  4277. "attachment": [
  4278. { "name": "right arm2-back" },
  4279. { "time": 1, "name": "right arm2-back" }
  4280. ]
  4281. },
  4282. "right arm2-front": {
  4283. "attachment": [
  4284. { "name": null }
  4285. ]
  4286. },
  4287. "right feet": {
  4288. "attachment": [
  4289. { "name": null }
  4290. ]
  4291. },
  4292. "right feet-back": {
  4293. "attachment": [
  4294. { "name": "right feet-back" },
  4295. { "time": 1, "name": "right feet-back" }
  4296. ]
  4297. },
  4298. "right feet-front": {
  4299. "attachment": [
  4300. { "name": null }
  4301. ]
  4302. },
  4303. "right hand": {
  4304. "attachment": [
  4305. { "name": null }
  4306. ]
  4307. },
  4308. "right hand-front": {
  4309. "attachment": [
  4310. { "name": null }
  4311. ]
  4312. },
  4313. "trousers": {
  4314. "attachment": [
  4315. { "name": null }
  4316. ]
  4317. },
  4318. "trousers-back": {
  4319. "attachment": [
  4320. { "name": "trousers-back" },
  4321. { "time": 1, "name": "trousers-back" }
  4322. ]
  4323. },
  4324. "trousers-front": {
  4325. "attachment": [
  4326. { "name": null }
  4327. ]
  4328. },
  4329. "weijin1": {
  4330. "attachment": [
  4331. { "name": null }
  4332. ]
  4333. },
  4334. "weijin1-back": {
  4335. "attachment": [
  4336. { "name": "weijin1-back" },
  4337. { "time": 1, "name": "weijin1-back" }
  4338. ]
  4339. },
  4340. "weijin1-front": {
  4341. "attachment": [
  4342. { "name": null }
  4343. ]
  4344. },
  4345. "weijjin2": {
  4346. "attachment": [
  4347. { "name": null }
  4348. ]
  4349. },
  4350. "weijjin2-back": {
  4351. "attachment": [
  4352. { "name": "weijjin2-back" },
  4353. { "time": 1, "name": "weijjin2-back" }
  4354. ]
  4355. },
  4356. "weijjin2-front": {
  4357. "attachment": [
  4358. { "name": null }
  4359. ]
  4360. }
  4361. },
  4362. "bones": {
  4363. "K3": {
  4364. "rotate": [
  4365. { "curve": "stepped" },
  4366. { "time": 1 }
  4367. ],
  4368. "translate": [
  4369. {},
  4370. { "time": 0.5, "x": 1.57, "y": -8.62 },
  4371. { "time": 1 }
  4372. ],
  4373. "scale": [
  4374. { "curve": "stepped" },
  4375. { "time": 1 }
  4376. ]
  4377. },
  4378. "left arm1-back": {
  4379. "rotate": [
  4380. { "angle": -140.87, "curve": "stepped" },
  4381. { "time": 1, "angle": -140.87 }
  4382. ],
  4383. "translate": [
  4384. { "curve": "stepped" },
  4385. { "time": 1 }
  4386. ],
  4387. "scale": [
  4388. { "curve": "stepped" },
  4389. { "time": 1 }
  4390. ]
  4391. },
  4392. "left arm2-back": {
  4393. "rotate": [
  4394. { "angle": 116.54, "curve": "stepped" },
  4395. { "time": 1, "angle": 116.54 }
  4396. ],
  4397. "translate": [
  4398. {},
  4399. { "time": 0.5, "x": -1.57, "y": -0.04 },
  4400. { "time": 1 }
  4401. ],
  4402. "scale": [
  4403. { "curve": "stepped" },
  4404. { "time": 1 }
  4405. ]
  4406. },
  4407. "left hand-back": {
  4408. "rotate": [
  4409. {},
  4410. { "time": 0.5, "angle": -17.64 },
  4411. { "time": 1 }
  4412. ],
  4413. "translate": [
  4414. { "curve": "stepped" },
  4415. { "time": 1 }
  4416. ],
  4417. "scale": [
  4418. { "curve": "stepped" },
  4419. { "time": 1 }
  4420. ]
  4421. },
  4422. "right arm2-back": {
  4423. "rotate": [
  4424. {},
  4425. { "time": 0.5, "angle": 13.72 },
  4426. { "time": 1 }
  4427. ],
  4428. "translate": [
  4429. {},
  4430. { "time": 0.5, "x": -3.76, "y": -7.14 },
  4431. { "time": 1 }
  4432. ],
  4433. "scale": [
  4434. { "curve": "stepped" },
  4435. { "time": 1 }
  4436. ]
  4437. },
  4438. "head-back": {
  4439. "rotate": [
  4440. { "curve": "stepped" },
  4441. { "time": 1 }
  4442. ],
  4443. "translate": [
  4444. {},
  4445. { "time": 0.5, "x": -3.9, "y": -0.87, "curve": 0.25, "c3": 0.75 },
  4446. { "time": 1 }
  4447. ],
  4448. "scale": [
  4449. { "curve": "stepped" },
  4450. { "time": 1 }
  4451. ]
  4452. },
  4453. "ear1-back": {
  4454. "rotate": [
  4455. {},
  4456. { "time": 0.5, "angle": 14.6, "curve": 0.25, "c3": 0.75 },
  4457. { "time": 1 }
  4458. ],
  4459. "translate": [
  4460. { "curve": "stepped" },
  4461. { "time": 1 }
  4462. ],
  4463. "scale": [
  4464. { "curve": "stepped" },
  4465. { "time": 1 }
  4466. ]
  4467. },
  4468. "ear2-back": {
  4469. "rotate": [
  4470. {},
  4471. { "time": 0.5, "angle": -24.71, "curve": 0.25, "c3": 0.75 },
  4472. { "time": 1 }
  4473. ],
  4474. "translate": [
  4475. { "curve": "stepped" },
  4476. { "time": 1 }
  4477. ],
  4478. "scale": [
  4479. { "curve": "stepped" },
  4480. { "time": 1 }
  4481. ]
  4482. },
  4483. "hair-back": {
  4484. "rotate": [
  4485. {},
  4486. { "time": 0.5, "angle": 12.26, "curve": 0.25, "c3": 0.75 },
  4487. { "time": 1 }
  4488. ],
  4489. "translate": [
  4490. { "curve": "stepped" },
  4491. { "time": 1 }
  4492. ],
  4493. "scale": [
  4494. { "curve": "stepped" },
  4495. { "time": 1 }
  4496. ]
  4497. },
  4498. "left feet-back": {
  4499. "rotate": [
  4500. { "curve": "stepped" },
  4501. { "time": 1 }
  4502. ],
  4503. "translate": [
  4504. {},
  4505. { "time": 0.5, "y": 1.43, "curve": 0.25, "c3": 0.75 },
  4506. { "time": 1 }
  4507. ],
  4508. "scale": [
  4509. { "curve": "stepped" },
  4510. { "time": 1 }
  4511. ]
  4512. },
  4513. "body-back": {
  4514. "rotate": [
  4515. { "curve": "stepped" },
  4516. { "time": 1 }
  4517. ],
  4518. "translate": [
  4519. {},
  4520. { "time": 0.5, "y": -1.43, "curve": 0.25, "c3": 0.75 },
  4521. { "time": 1 }
  4522. ],
  4523. "scale": [
  4524. { "curve": "stepped" },
  4525. { "time": 1 }
  4526. ]
  4527. },
  4528. "right feet-back": {
  4529. "rotate": [
  4530. { "curve": "stepped" },
  4531. { "time": 1 }
  4532. ],
  4533. "translate": [
  4534. {},
  4535. { "time": 0.5, "y": 1.43, "curve": 0.25, "c3": 0.75 },
  4536. { "time": 1 }
  4537. ],
  4538. "scale": [
  4539. { "curve": "stepped" },
  4540. { "time": 1 }
  4541. ]
  4542. },
  4543. "weijjin2-back": {
  4544. "rotate": [
  4545. {},
  4546. { "time": 0.5, "angle": 4.34 },
  4547. { "time": 1 }
  4548. ],
  4549. "translate": [
  4550. { "curve": "stepped" },
  4551. { "time": 1 }
  4552. ],
  4553. "scale": [
  4554. { "curve": "stepped" },
  4555. { "time": 1 }
  4556. ]
  4557. },
  4558. "body-back2": {
  4559. "rotate": [
  4560. { "curve": "stepped" },
  4561. { "time": 1 }
  4562. ],
  4563. "translate": [
  4564. {},
  4565. { "time": 0.5, "y": -2.35, "curve": 0.25, "c3": 0.75 },
  4566. { "time": 1 }
  4567. ],
  4568. "scale": [
  4569. { "curve": "stepped" },
  4570. { "time": 1 }
  4571. ]
  4572. },
  4573. "bone_left": {
  4574. "translate": [
  4575. { "x": 349.66 }
  4576. ]
  4577. },
  4578. "bone_back": {
  4579. "translate": [
  4580. { "x": 448.45, "y": 1.57 }
  4581. ]
  4582. },
  4583. "weijjin2-back2": {
  4584. "rotate": [
  4585. {},
  4586. { "time": 0.5, "angle": 7.62 },
  4587. { "time": 1 }
  4588. ],
  4589. "translate": [
  4590. { "curve": "stepped" },
  4591. { "time": 1 }
  4592. ],
  4593. "scale": [
  4594. { "curve": "stepped" },
  4595. { "time": 1 }
  4596. ]
  4597. },
  4598. "weijjin2-back3": {
  4599. "rotate": [
  4600. {},
  4601. { "time": 0.5, "angle": 13 },
  4602. { "time": 1 }
  4603. ],
  4604. "translate": [
  4605. { "curve": "stepped" },
  4606. { "time": 1 }
  4607. ],
  4608. "scale": [
  4609. { "curve": "stepped" },
  4610. { "time": 1 }
  4611. ]
  4612. }
  4613. }
  4614. },
  4615. "show": {
  4616. "slots": {
  4617. "body-back": {
  4618. "attachment": [
  4619. { "name": null }
  4620. ]
  4621. },
  4622. "body-front": {
  4623. "attachment": [
  4624. { "name": null }
  4625. ]
  4626. },
  4627. "duqi-front": {
  4628. "attachment": [
  4629. { "name": null }
  4630. ]
  4631. },
  4632. "ear1-back": {
  4633. "attachment": [
  4634. { "name": null }
  4635. ]
  4636. },
  4637. "ear1-front": {
  4638. "attachment": [
  4639. { "name": null }
  4640. ]
  4641. },
  4642. "ear2-back": {
  4643. "attachment": [
  4644. { "name": null }
  4645. ]
  4646. },
  4647. "ear2-front": {
  4648. "attachment": [
  4649. { "name": null }
  4650. ]
  4651. },
  4652. "eye1-front": {
  4653. "attachment": [
  4654. { "name": null }
  4655. ]
  4656. },
  4657. "eye2-front": {
  4658. "attachment": [
  4659. { "name": null }
  4660. ]
  4661. },
  4662. "gun-back": {
  4663. "attachment": [
  4664. { "name": null }
  4665. ]
  4666. },
  4667. "gun-front": {
  4668. "attachment": [
  4669. { "name": null }
  4670. ]
  4671. },
  4672. "hair-back": {
  4673. "attachment": [
  4674. { "name": null }
  4675. ]
  4676. },
  4677. "hair-front": {
  4678. "attachment": [
  4679. { "name": null }
  4680. ]
  4681. },
  4682. "head-back": {
  4683. "attachment": [
  4684. { "name": null }
  4685. ]
  4686. },
  4687. "head-front": {
  4688. "attachment": [
  4689. { "name": null }
  4690. ]
  4691. },
  4692. "left arm1-back": {
  4693. "attachment": [
  4694. { "name": null }
  4695. ]
  4696. },
  4697. "left arm2-back": {
  4698. "attachment": [
  4699. { "name": null }
  4700. ]
  4701. },
  4702. "left arm2-front": {
  4703. "attachment": [
  4704. { "name": null }
  4705. ]
  4706. },
  4707. "left feet-back": {
  4708. "attachment": [
  4709. { "name": null }
  4710. ]
  4711. },
  4712. "left feet-front": {
  4713. "attachment": [
  4714. { "name": null }
  4715. ]
  4716. },
  4717. "left hand-back": {
  4718. "attachment": [
  4719. { "name": null }
  4720. ]
  4721. },
  4722. "left hand-front": {
  4723. "attachment": [
  4724. { "name": null }
  4725. ]
  4726. },
  4727. "mouth-front": {
  4728. "attachment": [
  4729. { "name": null }
  4730. ]
  4731. },
  4732. "right arm1-front": {
  4733. "attachment": [
  4734. { "name": null }
  4735. ]
  4736. },
  4737. "right arm2-back": {
  4738. "attachment": [
  4739. { "name": null }
  4740. ]
  4741. },
  4742. "right arm2-front": {
  4743. "attachment": [
  4744. { "name": null }
  4745. ]
  4746. },
  4747. "right feet-back": {
  4748. "attachment": [
  4749. { "name": null }
  4750. ]
  4751. },
  4752. "right feet-front": {
  4753. "attachment": [
  4754. { "name": null }
  4755. ]
  4756. },
  4757. "right hand-front": {
  4758. "attachment": [
  4759. { "name": null }
  4760. ]
  4761. },
  4762. "trousers-back": {
  4763. "attachment": [
  4764. { "name": null }
  4765. ]
  4766. },
  4767. "trousers-front": {
  4768. "attachment": [
  4769. { "name": null }
  4770. ]
  4771. },
  4772. "weijin1-back": {
  4773. "attachment": [
  4774. { "name": null }
  4775. ]
  4776. },
  4777. "weijin1-front": {
  4778. "attachment": [
  4779. { "name": null }
  4780. ]
  4781. },
  4782. "weijjin2-back": {
  4783. "attachment": [
  4784. { "name": null }
  4785. ]
  4786. },
  4787. "weijjin2-front": {
  4788. "attachment": [
  4789. { "name": null }
  4790. ]
  4791. }
  4792. },
  4793. "bones": {
  4794. "bone_left": {
  4795. "translate": [
  4796. { "x": -0.78, "y": 62.32 },
  4797. { "time": 0.1, "x": -1.56, "y": 2.34 },
  4798. { "time": 0.1667, "x": -1.56, "y": -1.56 }
  4799. ],
  4800. "scale": [
  4801. { "x": -1 }
  4802. ]
  4803. },
  4804. "body": {
  4805. "rotate": [
  4806. { "curve": 0.25, "c3": 0.75 },
  4807. { "time": 0.1, "angle": 3.44, "curve": 0.25, "c3": 0.75 },
  4808. { "time": 0.1667, "angle": 5.22, "curve": 0.25, "c3": 0.75 },
  4809. { "time": 0.3, "angle": 0.48, "curve": 0.25, "c3": 0.75 },
  4810. { "time": 0.3667, "angle": -1.17 }
  4811. ],
  4812. "translate": [
  4813. {},
  4814. { "time": 0.1, "x": -1.56, "y": -7.01, "curve": "stepped" },
  4815. { "time": 0.1667, "x": -1.56, "y": -7.01 },
  4816. { "time": 0.3, "x": -2.34, "y": -4.67 },
  4817. { "time": 0.3667, "x": -2.34, "y": -0.78 }
  4818. ]
  4819. },
  4820. "head": {
  4821. "rotate": [
  4822. { "curve": 0.25, "c3": 0.75 },
  4823. { "time": 0.1333, "angle": -0.86, "curve": 0.25, "c3": 0.75 },
  4824. { "time": 0.2, "angle": 2.91, "curve": 0.25, "c3": 0.75 },
  4825. { "time": 0.3667, "angle": 0.69 }
  4826. ],
  4827. "translate": [
  4828. {},
  4829. { "time": 0.1333, "x": -5.32, "y": 1.42, "curve": "stepped" },
  4830. { "time": 0.2, "x": -5.32, "y": 1.42 },
  4831. { "time": 0.3667, "x": -3.77, "y": 1.38 }
  4832. ]
  4833. },
  4834. "bone_left4": {
  4835. "translate": [
  4836. {},
  4837. { "time": 0.1333, "x": 3.12, "y": -7.01 },
  4838. { "time": 0.2, "x": -1.56, "y": -3.12 },
  4839. { "time": 0.3667, "x": 2.34, "y": -7.79 }
  4840. ]
  4841. },
  4842. "K2": {
  4843. "translate": [
  4844. {},
  4845. { "time": 0.1333, "x": 6.23, "y": -3.12 },
  4846. { "time": 0.2, "x": -1.56, "y": -3.12 },
  4847. { "time": 0.3667, "x": 2.34, "y": -7.79 }
  4848. ]
  4849. },
  4850. "weijjin2": {
  4851. "rotate": [
  4852. { "angle": 1.71, "curve": 0.25, "c3": 0.75 },
  4853. { "time": 0.1333, "angle": -2.02, "curve": 0.25, "c3": 0.75 },
  4854. { "time": 0.2, "angle": 0.76, "curve": 0.25, "c3": 0.75 },
  4855. { "time": 0.3667, "angle": -2.42 }
  4856. ]
  4857. },
  4858. "weijjin3": {
  4859. "rotate": [
  4860. { "angle": 2.92, "curve": 0.25, "c3": 0.75 },
  4861. { "time": 0.2, "angle": -5.29, "curve": 0.25, "c3": 0.75 },
  4862. { "time": 0.2667, "angle": 4.43, "curve": 0.25, "c3": 0.75 },
  4863. { "time": 0.3667, "angle": -3.78 }
  4864. ]
  4865. },
  4866. "weijjin4": {
  4867. "rotate": [
  4868. { "angle": 3.28, "curve": 0.25, "c3": 0.75 },
  4869. { "time": 0.2333, "angle": -10.46, "curve": 0.25, "c3": 0.75 },
  4870. { "time": 0.3, "angle": 3.77, "curve": 0.25, "c3": 0.75 },
  4871. { "time": 0.3667, "angle": -13.6 }
  4872. ]
  4873. },
  4874. "eye1": {
  4875. "rotate": [
  4876. {},
  4877. { "time": 0.1333, "angle": 6.53 },
  4878. { "time": 0.2, "angle": -11.29 },
  4879. { "time": 0.3667 }
  4880. ],
  4881. "translate": [
  4882. { "curve": "stepped" },
  4883. { "time": 0.1333, "curve": "stepped" },
  4884. { "time": 0.2, "curve": "stepped" },
  4885. { "time": 0.3667 }
  4886. ]
  4887. },
  4888. "eye2": {
  4889. "rotate": [
  4890. { "angle": 6.34, "curve": 0.25, "c3": 0.75 },
  4891. { "time": 0.0667, "curve": 0.25, "c3": 0.75 },
  4892. { "time": 0.2, "angle": -5.98, "curve": 0.25, "c3": 0.75 },
  4893. { "time": 0.2667, "angle": 15.86, "curve": 0.25, "c3": 0.75 },
  4894. { "time": 0.3667, "angle": 6.34 }
  4895. ],
  4896. "translate": [
  4897. { "curve": "stepped" },
  4898. { "time": 0.1333, "curve": "stepped" },
  4899. { "time": 0.2, "curve": "stepped" },
  4900. { "time": 0.3667 }
  4901. ]
  4902. },
  4903. "hair": {
  4904. "rotate": [
  4905. { "angle": 7.31 },
  4906. { "time": 0.1333 },
  4907. { "time": 0.2667, "angle": -5.22 },
  4908. { "time": 0.3333, "angle": 9.14 },
  4909. { "time": 0.3667, "angle": 7.31 }
  4910. ],
  4911. "translate": [
  4912. { "curve": "stepped" },
  4913. { "time": 0.1333, "curve": "stepped" },
  4914. { "time": 0.2, "curve": "stepped" },
  4915. { "time": 0.3667 }
  4916. ]
  4917. },
  4918. "ear2": {
  4919. "rotate": [
  4920. { "angle": 12.16 },
  4921. { "time": 0.1333 },
  4922. { "time": 0.2667, "angle": -7.81 },
  4923. { "time": 0.3333, "angle": 15.2 },
  4924. { "time": 0.3667, "angle": 12.16 }
  4925. ],
  4926. "translate": [
  4927. { "curve": "stepped" },
  4928. { "time": 0.1333, "curve": "stepped" },
  4929. { "time": 0.2, "curve": "stepped" },
  4930. { "time": 0.3667 }
  4931. ]
  4932. },
  4933. "ear1": {
  4934. "rotate": [
  4935. {},
  4936. { "time": 0.1333, "angle": 6.77 },
  4937. { "time": 0.2, "angle": -9.58 },
  4938. { "time": 0.3667 }
  4939. ],
  4940. "translate": [
  4941. { "curve": "stepped" },
  4942. { "time": 0.1333, "curve": "stepped" },
  4943. { "time": 0.2, "curve": "stepped" },
  4944. { "time": 0.3667 }
  4945. ]
  4946. }
  4947. }
  4948. }
  4949. }
  4950. }