qingwa.json 124 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921
  1. {
  2. "skeleton": { "hash": "JqcyicS3+3Gr6gOZtaJP73Tpjzc", "spine": "3.7.94", "width": 1061.55, "height": 335.86, "images": "./images/", "audio": "E:/zhj_spine/小小领主/spine/qingwa/qingwa_3.8" },
  3. "bones": [
  4. { "name": "root" },
  5. { "name": "all", "parent": "root", "y": -80.77, "color": "fdff00ff" },
  6. { "name": "bone_left", "parent": "all", "x": -1.36, "y": 35.85, "color": "4aff03ff" },
  7. { "name": "body", "parent": "bone_left", "x": -7.48, "y": 74.81, "color": "52ff03ff" },
  8. { "name": "gun", "parent": "body", "length": 111.5, "x": 32.01, "y": 0.26, "color": "ff03ddff" },
  9. { "name": "K1", "parent": "gun", "x": -4.14, "y": 2.22, "color": "ff3f00ff" },
  10. {
  11. "name": "bone",
  12. "parent": "body",
  13. "length": 45.8,
  14. "rotation": 101.91,
  15. "x": -0.11,
  16. "y": 12.65,
  17. "color": "52ff03ff"
  18. },
  19. {
  20. "name": "arm",
  21. "parent": "bone",
  22. "length": 43.86,
  23. "rotation": 151.22,
  24. "x": 37.31,
  25. "y": -69.62,
  26. "color": "52ff03ff"
  27. },
  28. {
  29. "name": "hand",
  30. "parent": "arm",
  31. "length": 24.56,
  32. "rotation": -4.39,
  33. "x": 45.5,
  34. "y": 1.16,
  35. "color": "52ff03ff"
  36. },
  37. {
  38. "name": "arm2",
  39. "parent": "bone",
  40. "length": 43.3,
  41. "rotation": 108.03,
  42. "x": 42.39,
  43. "y": 12.13,
  44. "color": "52ff03ff"
  45. },
  46. { "name": "bone_back", "parent": "all", "x": -349.67, "y": 49.58, "color": "ff00ffff" },
  47. { "name": "body_back", "parent": "bone_back", "x": 1.44, "y": 69.53, "color": "ff00ffff" },
  48. {
  49. "name": "bone2",
  50. "parent": "bone",
  51. "length": 74.04,
  52. "rotation": -24.17,
  53. "x": 49.17,
  54. "y": -0.21,
  55. "color": "52ff03ff"
  56. },
  57. {
  58. "name": "tail",
  59. "parent": "body",
  60. "length": 13.11,
  61. "rotation": -39.09,
  62. "x": 65.39,
  63. "y": 5.02,
  64. "color": "52ff03ff"
  65. },
  66. {
  67. "name": "bone3",
  68. "parent": "tail",
  69. "length": 10.52,
  70. "rotation": 64.11,
  71. "x": 13.6,
  72. "y": 0.4,
  73. "color": "52ff03ff"
  74. },
  75. { "name": "bone4", "parent": "bone3", "length": 14.62, "rotation": 64.98, "x": 10.52, "color": "52ff03ff" },
  76. {
  77. "name": "bone5",
  78. "parent": "body_back",
  79. "length": 49.24,
  80. "rotation": 92.38,
  81. "x": -1.12,
  82. "y": 28.19,
  83. "color": "ff00ffff"
  84. },
  85. { "name": "bone6", "parent": "bone5", "length": 56.45, "rotation": -5.5, "x": 49.24, "color": "ff00ffff" },
  86. {
  87. "name": "right arm_back",
  88. "parent": "bone5",
  89. "length": 35.69,
  90. "rotation": -58.98,
  91. "x": 16.34,
  92. "y": -50.94,
  93. "color": "ff00ffff"
  94. },
  95. { "name": "bone7", "parent": "right arm_back", "length": 33.08, "rotation": 37.12, "x": 35.69, "color": "ff00ffff" },
  96. {
  97. "name": "tail_back",
  98. "parent": "body_back",
  99. "length": 15.26,
  100. "rotation": -142.3,
  101. "x": -19.12,
  102. "y": -12.78,
  103. "color": "ff00ffff"
  104. },
  105. { "name": "bone8", "parent": "tail_back", "length": 10.48, "rotation": -80.57, "x": 15.26, "color": "ff00ffff" },
  106. { "name": "bone9", "parent": "bone8", "length": 16.32, "rotation": -36.18, "x": 10.48, "color": "ff00ffff" },
  107. { "name": "gun2", "parent": "body_back", "length": 146.55, "x": -41.26, "y": 73.56, "color": "ff00ffff" },
  108. { "name": "bone11", "parent": "gun2", "rotation": 80.62, "x": -41.09, "y": 39.71, "color": "ff3f00ff" },
  109. { "name": "tou", "parent": "bone2", "rotation": 17.18, "x": 33.06, "y": 4.71, "color": "52ff03ff" },
  110. { "name": "eye", "parent": "tou", "x": 5.88, "y": -27.2, "color": "52ff03ff" },
  111. {
  112. "name": "eye1",
  113. "parent": "bone2",
  114. "length": 38.98,
  115. "rotation": -15.97,
  116. "x": 88.47,
  117. "y": -31.94,
  118. "color": "52ff03ff"
  119. },
  120. {
  121. "name": "eye2",
  122. "parent": "bone2",
  123. "length": 25.66,
  124. "rotation": 60.27,
  125. "x": 64.15,
  126. "y": 49.98,
  127. "color": "52ff03ff"
  128. },
  129. {
  130. "name": "eye1_back",
  131. "parent": "bone6",
  132. "length": 46.47,
  133. "rotation": 51.69,
  134. "x": 54.37,
  135. "y": 19.39,
  136. "color": "ff00ffff"
  137. },
  138. {
  139. "name": "eye2_back",
  140. "parent": "bone6",
  141. "length": 36.23,
  142. "rotation": -41.87,
  143. "x": 37.98,
  144. "y": -56.44,
  145. "color": "ff00ffff"
  146. },
  147. {
  148. "name": "face",
  149. "parent": "tou",
  150. "length": 16.49,
  151. "rotation": -67.37,
  152. "x": 22.43,
  153. "y": -15.22,
  154. "color": "52ff03ff"
  155. },
  156. {
  157. "name": "feet",
  158. "parent": "body",
  159. "length": 24.2,
  160. "rotation": -86.98,
  161. "x": 30.41,
  162. "y": -6.42,
  163. "color": "52ff03ff"
  164. },
  165. {
  166. "name": "feet1",
  167. "parent": "body",
  168. "length": 19.09,
  169. "rotation": -88.09,
  170. "x": -23,
  171. "y": -8.33,
  172. "color": "52ff03ff"
  173. },
  174. {
  175. "name": "hand1",
  176. "parent": "arm2",
  177. "length": 26.16,
  178. "rotation": -4.01,
  179. "x": 45.74,
  180. "y": -2.13,
  181. "color": "52ff03ff"
  182. },
  183. {
  184. "name": "left arm_back",
  185. "parent": "bone5",
  186. "length": 40.43,
  187. "rotation": 43.32,
  188. "x": 34.06,
  189. "y": 39.01,
  190. "color": "ff00ffff"
  191. },
  192. {
  193. "name": "left hand_back",
  194. "parent": "left arm_back",
  195. "length": 23.41,
  196. "rotation": -28.57,
  197. "x": 44.64,
  198. "y": -1.09,
  199. "color": "ff00ffff"
  200. },
  201. {
  202. "name": "left feet_back",
  203. "parent": "body_back",
  204. "length": 18.19,
  205. "rotation": -95.19,
  206. "x": -17.47,
  207. "y": -20.47,
  208. "color": "ff00ffff"
  209. },
  210. {
  211. "name": "meimao",
  212. "parent": "tou",
  213. "length": 15.01,
  214. "rotation": 48.68,
  215. "x": 26.2,
  216. "y": 23.38,
  217. "color": "52ff03ff"
  218. },
  219. { "name": "mouth", "parent": "tou", "x": -15.15, "y": 2.69, "color": "52ff03ff" },
  220. { "name": "nose", "parent": "tou", "x": 5.24, "y": 24.55, "color": "52ff03ff" },
  221. {
  222. "name": "right feet_back",
  223. "parent": "body_back",
  224. "length": 21.41,
  225. "rotation": -90,
  226. "x": 35.23,
  227. "y": -15.53,
  228. "color": "ff00ffff"
  229. },
  230. { "name": "shadow", "parent": "all", "x": -1.68, "y": 75.21, "color": "000000ff" },
  231. {
  232. "name": "tx",
  233. "parent": "K1",
  234. "rotation": -22.6,
  235. "x": -35.11,
  236. "y": 16.64,
  237. "scaleX": 0.902,
  238. "scaleY": 1.297,
  239. "color": "ff03ddff"
  240. },
  241. {
  242. "name": "tx2",
  243. "parent": "gun2",
  244. "rotation": 179.55,
  245. "x": -42.37,
  246. "y": 89.11,
  247. "transform": "noScale",
  248. "color": "ff00ffff"
  249. },
  250. { "name": "yanzhu", "parent": "eye2", "x": 7.69, "y": 14.63, "color": "52ff03ff" },
  251. { "name": "yanzhu2", "parent": "eye1", "x": 12.14, "y": 9.09, "color": "52ff03ff" },
  252. { "name": "bone_front", "parent": "all", "x": 416.6, "y": 31.85, "color": "fdff00ff" },
  253. { "name": "body_front", "parent": "bone_front", "x": -0.64, "y": 79.23, "color": "fdff00ff" },
  254. {
  255. "name": "bone10",
  256. "parent": "body_front",
  257. "length": 62.57,
  258. "rotation": 87.66,
  259. "x": -1.45,
  260. "y": 26.55,
  261. "color": "fdff00ff"
  262. },
  263. {
  264. "name": "tou_front",
  265. "parent": "bone10",
  266. "length": 56.98,
  267. "rotation": 7.31,
  268. "x": 68.13,
  269. "y": 2.86,
  270. "color": "fdff00ff"
  271. },
  272. { "name": "lian_front", "parent": "tou_front", "x": 41.34, "y": -9.31, "color": "fdff00ff" },
  273. {
  274. "name": "left_front",
  275. "parent": "tou_front",
  276. "length": 43.45,
  277. "rotation": 33.45,
  278. "x": 53.65,
  279. "y": 31.05,
  280. "color": "fdff00ff"
  281. },
  282. {
  283. "name": "ringt_front",
  284. "parent": "tou_front",
  285. "length": 44.03,
  286. "rotation": -52.13,
  287. "x": 42.59,
  288. "y": -48.67,
  289. "color": "fdff00ff"
  290. },
  291. { "name": "rightyanzhu_front", "parent": "left_front", "x": 17.54, "y": 14.56, "color": "fdff00ff" },
  292. { "name": "leftyanzhu_front", "parent": "ringt_front", "x": 16.46, "y": 15.16, "color": "fdff00ff" },
  293. {
  294. "name": "lefthand__front",
  295. "parent": "bone10",
  296. "length": 26.98,
  297. "rotation": 138.22,
  298. "x": 33.46,
  299. "y": 52.92,
  300. "color": "fdff00ff"
  301. },
  302. { "name": "bone12", "parent": "lefthand__front", "length": 28.33, "rotation": -5.92, "x": 26.98, "color": "fdff00ff" },
  303. {
  304. "name": "gun3",
  305. "parent": "bone10",
  306. "length": 115.09,
  307. "rotation": -87.66,
  308. "x": 31.88,
  309. "y": -63.54,
  310. "color": "fdff00ff"
  311. },
  312. { "name": "k3", "parent": "gun3", "rotation": -0.77, "x": 36.5, "y": -45.44, "color": "ff3f00ff" },
  313. {
  314. "name": "right_front",
  315. "parent": "bone10",
  316. "length": 20.71,
  317. "rotation": -139.41,
  318. "x": 42.68,
  319. "y": -56.66,
  320. "color": "fdff00ff"
  321. },
  322. { "name": "lefthand_front", "parent": "right_front", "length": 15, "x": 23.04, "y": -0.27, "color": "fdff00ff" },
  323. {
  324. "name": "leftleg_front",
  325. "parent": "body_front",
  326. "length": 32.33,
  327. "rotation": -93.12,
  328. "x": -24.2,
  329. "y": 5.79,
  330. "color": "fdff00ff"
  331. },
  332. {
  333. "name": "rightleg_front",
  334. "parent": "body_front",
  335. "length": 25.83,
  336. "rotation": -91.3,
  337. "x": 29.81,
  338. "y": 2.27,
  339. "color": "fdff00ff"
  340. },
  341. { "name": "bizi_front", "parent": "tou_front", "x": -11.14, "y": 4.28, "color": "fdff00ff" },
  342. { "name": "tx3", "parent": "gun3", "rotation": -90.05, "x": 33.47, "y": -57.16, "color": "fdff00ff" }
  343. ],
  344. "slots": [
  345. { "name": "shadow", "bone": "shadow", "attachment": "shadow" },
  346. { "name": "rightleg_front", "bone": "rightleg_front", "attachment": "rightleg_front" },
  347. { "name": "leftleg_front", "bone": "leftleg_front", "attachment": "leftleg_front" },
  348. { "name": "body_front", "bone": "body_front", "attachment": "body_front" },
  349. { "name": "feet1", "bone": "feet1", "attachment": "feet1" },
  350. { "name": "tail", "bone": "tail", "attachment": "tail" },
  351. { "name": "feet", "bone": "feet", "attachment": "feet" },
  352. { "name": "hand1", "bone": "hand1", "attachment": "hand1" },
  353. { "name": "arm2", "bone": "arm2", "attachment": "arm2" },
  354. { "name": "eye2", "bone": "eye2", "attachment": "eye2" },
  355. { "name": "body1", "bone": "body", "attachment": "body1" },
  356. { "name": "face", "bone": "tou", "attachment": "face" },
  357. { "name": "eye", "bone": "eye", "attachment": "eye" },
  358. { "name": "meimao2", "bone": "face", "attachment": "meimao2" },
  359. { "name": "meimao", "bone": "meimao", "attachment": "meimao" },
  360. { "name": "nose", "bone": "nose", "attachment": "nose" },
  361. { "name": "yanzhu3", "bone": "eye", "attachment": "yanzhu3" },
  362. { "name": "mouth", "bone": "mouth", "attachment": "mouth" },
  363. { "name": "eye1", "bone": "eye1", "attachment": "eye1" },
  364. { "name": "yanzhu2", "bone": "yanzhu2", "attachment": "yanzhu2" },
  365. { "name": "yanzhu", "bone": "yanzhu", "attachment": "yanzhu" },
  366. { "name": "gun", "bone": "K1", "attachment": "jian" },
  367. { "name": "hand", "bone": "hand", "attachment": "hand" },
  368. { "name": "arm", "bone": "arm", "attachment": "arm" },
  369. { "name": "jianqi", "bone": "tx", "blend": "additive" },
  370. { "name": "jian_back", "bone": "bone11", "attachment": "jian_back" },
  371. { "name": "left hand_back", "bone": "left hand_back", "attachment": "left hand_back" },
  372. { "name": "left arm_back", "bone": "left arm_back", "attachment": "left arm_back" },
  373. { "name": "right hand_back", "bone": "bone7", "attachment": "right hand_back" },
  374. { "name": "right arm_back", "bone": "right arm_back", "attachment": "right arm_back" },
  375. { "name": "right feet_back", "bone": "right feet_back", "attachment": "right feet_back" },
  376. { "name": "left feet_back", "bone": "left feet_back", "attachment": "left feet_back" },
  377. { "name": "eye1_back", "bone": "eye1_back", "attachment": "eye1_back" },
  378. { "name": "eye2_back", "bone": "eye2_back", "attachment": "eye2_back" },
  379. { "name": "body_back", "bone": "body_back", "attachment": "body_back" },
  380. { "name": "tail_back", "bone": "tail_back", "attachment": "tail_back" },
  381. { "name": "tx2", "bone": "tx2", "blend": "additive" },
  382. { "name": "tou_front", "bone": "tou_front", "attachment": "tou_front" },
  383. { "name": "left_front", "bone": "left_front", "attachment": "left_front" },
  384. { "name": "lian_front", "bone": "lian_front", "attachment": "lian_front" },
  385. { "name": "lefthand__front", "bone": "lefthand__front", "attachment": "lefthand__front" },
  386. { "name": "right_front", "bone": "right_front", "attachment": "right_front" },
  387. { "name": "ringt_front", "bone": "ringt_front", "attachment": "ringt_front" },
  388. { "name": "wuqi_front", "bone": "k3", "attachment": "wuqi_front" },
  389. { "name": "lefthand_front", "bone": "k3", "attachment": "lefthand_front" },
  390. { "name": "yanjin_front", "bone": "lian_front", "attachment": "yanjin_front" },
  391. { "name": "yanjing_front", "bone": "lian_front", "attachment": "yanjing_front" },
  392. { "name": "rightyanzhu_front", "bone": "rightyanzhu_front", "attachment": "rightyanzhu_front" },
  393. { "name": "leftyanzhu_front", "bone": "leftyanzhu_front", "attachment": "leftyanzhu_front" },
  394. { "name": "bizi_front", "bone": "bizi_front", "attachment": "bizi_front" },
  395. { "name": "bingzi_front", "bone": "lian_front", "attachment": "bingzi_front" },
  396. { "name": "bikong_front", "bone": "lian_front", "attachment": "bikong_front" },
  397. { "name": "bingkou2_front", "bone": "lian_front", "attachment": "bingkou2_front" },
  398. { "name": "tx3", "bone": "tx3", "blend": "additive" }
  399. ],
  400. "ik": [
  401. {
  402. "name": "K2",
  403. "order": 0,
  404. "bones": [ "left arm_back", "left hand_back" ],
  405. "target": "bone11",
  406. "bendPositive": false
  407. },
  408. {
  409. "name": "k1",
  410. "order": 1,
  411. "bones": [ "arm", "hand" ],
  412. "target": "K1",
  413. "bendPositive": false
  414. },
  415. {
  416. "name": "k3",
  417. "order": 2,
  418. "bones": [ "right_front", "lefthand_front" ],
  419. "target": "k3"
  420. }
  421. ],
  422. "skins": {
  423. "default": {
  424. "arm": {
  425. "arm": {
  426. "type": "mesh",
  427. "uvs": [ 0.03228, 0.25934, 0.20263, 0.08201, 0.40245, 0.01551, 0.71366, 0.01234, 0.88678, 0.1239, 0.95935, 0.17067, 0.9856, 0.31178, 1, 0.38917, 0.98034, 0.53704, 0.9659, 0.64567, 0.90459, 0.74727, 0.85124, 0.83567, 0.73004, 1, 0.57607, 1, 0.42211, 0.93067, 0.1928, 0.91167, 0.00607, 0.87684, 0, 0.69634, 0, 0.50001, 0.21245, 0.24667, 0.42211, 0.24034, 0.70711, 0.26251, 0.18952, 0.47784, 0.41228, 0.48101, 0.6809, 0.49367, 0.17969, 0.68051, 0.39263, 0.68367, 0.67762, 0.70584, 0.40573, 0.09151, 0.70383, 0.10101 ],
  428. "triangles": [ 15, 25, 26, 16, 17, 25, 11, 27, 10, 14, 26, 27, 13, 14, 27, 12, 13, 27, 11, 12, 27, 15, 26, 14, 16, 25, 15, 29, 28, 2, 1, 2, 28, 3, 29, 2, 29, 3, 4, 20, 28, 29, 19, 1, 28, 19, 28, 20, 0, 1, 19, 21, 29, 4, 20, 29, 21, 21, 4, 5, 6, 21, 5, 22, 0, 19, 23, 19, 20, 24, 23, 20, 22, 19, 23, 21, 24, 20, 7, 24, 21, 7, 21, 6, 18, 0, 22, 8, 24, 7, 25, 18, 22, 26, 22, 23, 25, 22, 26, 17, 18, 25, 24, 26, 23, 27, 26, 24, 27, 24, 9, 9, 24, 8, 10, 27, 9 ],
  429. "vertices": [ 1, 7, 16.38, -28.55, 1, 1, 7, 3.34, -22.18, 1, 1, 7, -3.83, -12.25, 1, 1, 7, -9.25, 4.96, 1, 1, 7, -5.76, 16.51, 1, 1, 7, -4.29, 21.35, 1, 1, 7, 3.36, 25.27, 1, 1, 7, 7.56, 27.41, 1, 2, 7, 16.38, 28.89, 0.90082, 8, -36.35, 17.18, 0.09917, 2, 7, 22.86, 29.98, 0.94281, 8, -30.54, 20.25, 0.05718, 2, 7, 29.73, 28.35, 0.4985, 8, -23.5, 20.86, 0.50149, 2, 7, 35.7, 26.92, 0.13977, 8, -17.39, 21.38, 0.86022, 2, 7, 47.18, 23.06, 0.08, 8, -5.28, 21.31, 0.91999, 2, 7, 49.77, 14.51, 0.096, 8, -0.13, 14.01, 0.904, 2, 7, 48.38, 4.76, 0.04, 8, 1.6, 4.32, 0.96, 2, 7, 51.14, -8.29, 0.12703, 8, 8.33, -7.2, 0.87296, 2, 7, 52.28, -19.26, 0.128, 8, 12.85, -17.26, 0.872, 2, 7, 42.02, -22.74, 0.45599, 8, 4.2, -23.79, 0.544, 2, 7, 30.75, -26.16, 0.912, 8, -5.42, -30.57, 0.08799, 1, 7, 12.63, -18.77, 1, 1, 7, 8.74, -7.25, 1, 1, 7, 5.22, 8.95, 1, 2, 7, 26.29, -16.02, 0.92, 8, -12.83, -22.35, 0.07999, 2, 7, 22.72, -3.6, 0.92799, 8, -20.12, -11.68, 0.07199, 2, 7, 18.93, 11.52, 0.90148, 8, -28.47, 1.49, 0.09851, 2, 7, 38.09, -13.04, 0.56799, 8, -2.57, -15.81, 0.432, 2, 7, 34.69, -1.17, 0.592, 8, -9.52, -5.61, 0.40799, 2, 7, 31.17, 15.03, 0.52256, 8, -17.96, 8.66, 0.47743, 1, 7, 0.47, -10.74, 1, 1, 7, -3.99, 5.96, 1 ],
  430. "hull": 19,
  431. "edges": [ 0, 2, 2, 4, 4, 6, 22, 24, 24, 26, 26, 28, 28, 30, 30, 32, 32, 34, 34, 36, 0, 36, 0, 38, 38, 40, 40, 42, 10, 12, 12, 14, 42, 12, 36, 44, 44, 46, 46, 48, 14, 16, 16, 18, 48, 16, 34, 50, 50, 52, 52, 54, 18, 20, 20, 22, 54, 20, 2, 56, 56, 58, 6, 8, 8, 10, 58, 8 ],
  432. "width": 58,
  433. "height": 60
  434. }
  435. },
  436. "arm2": {
  437. "arm2": {
  438. "type": "mesh",
  439. "uvs": [ 0, 0.37278, 0.12642, 0.24421, 0.28681, 0.07919, 0.35217, 0.01194, 0.62463, 0.01194, 0.86596, 0.1654, 1, 0.4267, 1, 0.65896, 0.88931, 0.80412, 0.64409, 0.95758, 0.3872, 1, 0.17313, 0.94929, 0.17702, 0.77094, 0.06803, 0.57601, 0, 0.50135, 0.21205, 0.47232, 0.37942, 0.26909, 0.51954, 0.10734, 0.31714, 0.71702, 0.55846, 0.62163, 0.86206, 0.45988, 0.72583, 0.2608, 0.48451, 0.46402 ],
  440. "triangles": [ 14, 0, 15, 13, 14, 15, 12, 13, 18, 11, 12, 18, 0, 1, 15, 17, 2, 3, 17, 3, 4, 21, 4, 5, 17, 4, 21, 16, 2, 17, 20, 21, 5, 6, 20, 5, 21, 22, 16, 21, 16, 17, 22, 21, 20, 15, 16, 22, 19, 22, 20, 20, 6, 7, 18, 15, 22, 18, 22, 19, 8, 20, 7, 19, 20, 8, 9, 19, 8, 18, 19, 9, 10, 18, 9, 10, 11, 18, 1, 2, 16, 15, 1, 16, 13, 15, 18 ],
  441. "vertices": [ 2, 9, 47.8, -22.72, 0.632, 34, 3.49, -20.38, 0.36799, 2, 9, 36.77, -25.41, 0.74415, 34, -7.32, -23.84, 0.25584, 1, 9, 22.71, -28.93, 1, 1, 9, 16.98, -30.36, 1, 1, 9, 1.64, -21.52, 1, 2, 9, -7.27, -5.57, 0.99753, 34, -52.65, -7.14, 0.00246, 1, 9, -6.86, 12.58, 1, 1, 9, 0.2, 24.85, 1, 1, 9, 10.86, 28.93, 1, 1, 9, 29.34, 29.08, 1, 2, 9, 45.1, 22.99, 0.8, 34, -2.39, 25.02, 0.19999, 2, 9, 55.61, 13.36, 0.12, 34, 8.76, 16.15, 0.87999, 2, 9, 49.96, 4.06, 0.11674, 34, 3.77, 6.48, 0.88325, 2, 9, 50.16, -9.77, 0.03999, 34, 4.94, -7.3, 0.96, 2, 9, 51.72, -15.92, 0.04799, 34, 6.92, -13.33, 0.952, 2, 9, 38.89, -10.57, 0.79687, 34, -6.24, -8.89, 0.20312, 1, 9, 23.28, -15.88, 1, 2, 9, 10.46, -19.89, 0.992, 34, -33.95, -20.17, 0.00799, 2, 9, 40.43, 5.76, 0.73599, 34, -5.85, 7.51, 0.264, 1, 9, 23.93, 8.55, 1, 1, 9, 1.91, 9.85, 1, 1, 9, 3.52, -5.08, 1, 2, 9, 23.3, -2.17, 0.98834, 34, -22.38, -1.6, 0.01165 ],
  442. "hull": 15,
  443. "edges": [ 0, 2, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 20, 22, 22, 24, 24, 26, 26, 28, 0, 28, 2, 4, 4, 6 ],
  444. "width": 65,
  445. "height": 61
  446. }
  447. },
  448. "bikong_front": {
  449. "bikong_front": { "x": -26.12, "y": 18.72, "rotation": -94.97, "width": 10, "height": 18 }
  450. },
  451. "bingkou2_front": {
  452. "bingkou2_front": { "x": -26.69, "y": -1.6, "rotation": -94.97, "width": 10, "height": 18 }
  453. },
  454. "bingzi_front": {
  455. "bingzi_front": { "x": -27.26, "y": 5.64, "rotation": -94.97, "width": 58, "height": 40 }
  456. },
  457. "bizi_front": {
  458. "bizi_front": { "x": 0.35, "y": -4.59, "rotation": -94.97, "width": 17, "height": 21 }
  459. },
  460. "body1": {
  461. "body1": {
  462. "type": "mesh",
  463. "uvs": [ 0.05396, 0.18939, 0.14954, 0.07934, 0.26174, 0.02066, 0.38225, 0, 0.61081, 0.00598, 0.77288, 0.061, 0.87677, 0.16371, 0.95157, 0.28476, 0.99728, 0.40213, 1, 0.51584, 1, 0.6809, 0.9765, 0.84597, 0.92663, 0.94134, 0.77288, 0.98535, 0.5651, 1, 0.27005, 1, 0.12045, 0.96334, 0.01656, 0.8533, 0, 0.67724, 0.01656, 0.54885, 0.0415, 0.47916, 0.01241, 0.32877, 0.28574, 0.88916, 0.58198, 0.90118, 0.78969, 0.87413, 0.29255, 0.72085, 0.58879, 0.7479, 0.81012, 0.7509, 0.28574, 0.57358, 0.57858, 0.57959, 0.84417, 0.54953, 0.24829, 0.4774, 0.58198, 0.4774, 0.84758, 0.43832, 0.23807, 0.32111, 0.57177, 0.3181, 0.81012, 0.27602, 0.21424, 0.19788, 0.58198, 0.18586, 0.79991, 0.17083, 0.15448, 0.86321, 0.14405, 0.70373, 0.1649, 0.57798 ],
  464. "triangles": [ 15, 22, 14, 14, 23, 13, 14, 22, 23, 16, 40, 15, 15, 40, 22, 13, 24, 12, 13, 23, 24, 16, 17, 40, 12, 24, 11, 23, 26, 24, 23, 22, 26, 22, 40, 25, 24, 27, 11, 17, 41, 40, 22, 25, 26, 25, 42, 28, 41, 42, 25, 24, 26, 27, 25, 40, 41, 17, 18, 41, 11, 27, 10, 27, 30, 10, 30, 27, 29, 25, 29, 26, 27, 26, 29, 25, 28, 29, 41, 18, 42, 30, 9, 10, 18, 19, 42, 29, 28, 32, 19, 20, 42, 42, 31, 28, 29, 32, 30, 42, 20, 31, 28, 31, 32, 30, 33, 9, 30, 32, 33, 33, 8, 9, 20, 34, 31, 37, 34, 0, 0, 34, 21, 21, 34, 20, 31, 35, 32, 33, 35, 36, 39, 36, 38, 35, 33, 32, 38, 36, 35, 37, 38, 35, 3, 38, 37, 35, 31, 34, 33, 7, 8, 33, 36, 7, 35, 34, 37, 3, 37, 2, 36, 6, 7, 36, 39, 6, 0, 1, 37, 37, 1, 2, 38, 5, 39, 38, 4, 5, 38, 3, 4, 39, 5, 6 ],
  465. "vertices": [ 1, 12, 46.58, 67.69, 1, 2, 12, 69.04, 57.12, 0.99442, 6, 135.56, 23.61, 0.00557, 1, 12, 83.07, 42.03, 1, 1, 12, 90.73, 24.2, 1, 1, 12, 97.35, -11.3, 1, 1, 12, 93.17, -38.41, 1, 1, 12, 78.69, -58.36, 1, 2, 12, 60.02, -74.51, 0.81181, 6, 73.42, -92.78, 0.18818, 3, 12, 41.03, -86.03, 0.67251, 6, 51.37, -95.51, 0.32504, 3, 82.73, 82.64, 0.00243, 3, 12, 21.23, -90.77, 0.51081, 6, 31.37, -91.73, 0.46657, 3, 83.16, 62.28, 0.02259, 2, 12, -7.63, -97.05, 0.06674, 6, 2.46, -85.63, 0.93324, 2, 6, -25.68, -75.89, 0.13942, 3, 79.45, 3.19, 0.86057, 2, 6, -40.75, -64.66, 0.05668, 3, 71.57, -13.87, 0.94331, 2, 6, -43.45, -39.26, 0.04858, 3, 47.28, -21.75, 0.95141, 2, 6, -39.24, -6.6, 0.0495, 3, 14.45, -24.37, 0.95049, 2, 6, -29.61, 39, 0.08352, 3, -32.16, -24.37, 0.91647, 3, 12, -86.55, 28, 4.1E-4, 6, -18.31, 60.78, 0.09318, 3, -55.79, -17.81, 0.90639, 2, 6, 4.34, 72.77, 0.08775, 3, -72.21, 1.88, 0.91224, 2, 12, -40.55, 57.48, 0.21157, 6, 35.72, 68.82, 0.78842, 2, 12, -17.54, 59.8, 0.43258, 6, 57.66, 61.52, 0.56741, 2, 12, -4.51, 58.6, 0.60606, 6, 69.05, 55.09, 0.39393, 3, 12, 20.81, 68.81, 0.85321, 6, 96.34, 54.03, 0.13515, 3, -72.87, 95.77, 0.01163, 2, 6, -10.71, 32.48, 0.12, 3, -29.68, -4.53, 0.87999, 3, 12, -60.19, -40.88, 0.00325, 6, -22.48, -12.86, 0.12359, 3, 17.12, -6.68, 0.87315, 2, 6, -24.52, -45.97, 0.08577, 3, 49.94, -1.84, 0.91422, 2, 12, -38.36, 10.65, 0.02582, 6, 18.54, 25.21, 0.97417, 2, 12, -33.15, -36.11, 0.04712, 6, 4.13, -19.58, 0.95287, 2, 12, -26.25, -70.39, 0.17811, 6, -3.6, -53.69, 0.82188, 2, 12, -12.83, 17.3, 0.24845, 6, 44.55, 20.82, 0.75154, 2, 12, -4.05, -28.13, 0.32771, 6, 33.95, -24.22, 0.67228, 3, 12, 10.11, -68, 0.46976, 6, 30.55, -66.39, 0.50715, 3, 58.54, 56.25, 0.02308, 2, 12, 2.73, 26.74, 0.65356, 6, 62.62, 23.05, 0.34643, 2, 12, 13.93, -24.77, 0.78334, 6, 51.73, -28.52, 0.21665, 3, 12, 29.67, -64.29, 0.68116, 6, 49.91, -71.03, 0.31737, 3, 59.08, 76.16, 0.00145, 3, 12, 29.72, 34.26, 0.94387, 6, 90.33, 18.86, 0.05357, 3, -37.21, 97.14, 0.00254, 2, 12, 41.45, -17.14, 0.95238, 6, 79.97, -32.83, 0.04761, 2, 12, 56.8, -52.34, 0.85165, 6, 79.56, -71.24, 0.14834, 2, 12, 50.48, 42.62, 0.98677, 6, 112.69, 17.99, 0.01322, 2, 12, 64.92, -13.69, 0.99808, 6, 102.8, -39.3, 0.00191, 1, 12, 74.86, -46.76, 1, 3, 12, -67.9, 26.55, 0.00847, 6, -1.88, 51.81, 0.37449, 3, -50.42, 0.1, 0.61702, 3, 12, -40.35, 34.23, 0.1143, 6, 26.38, 47.53, 0.85933, 3, -52.07, 28.65, 0.02636, 3, 12, -17.65, 35.79, 0.40445, 6, 47.72, 39.66, 0.58537, 3, -48.77, 51.16, 0.01016 ],
  466. "hull": 22,
  467. "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, 32, 34, 34, 36, 36, 38, 38, 40, 40, 42, 0, 42 ],
  468. "width": 158,
  469. "height": 179
  470. }
  471. },
  472. "body_back": {
  473. "body_back": {
  474. "type": "mesh",
  475. "uvs": [ 0.07146, 0.22705, 0.1562, 0.10708, 0.28487, 0.01982, 0.43237, 0, 0.55733, 0, 0.68031, 0, 0.83408, 0.06617, 0.86849, 0.09905, 0.92824, 0.15616, 0.96216, 0.22395, 0.991, 0.28159, 0.97268, 0.3594, 0.96276, 0.40157, 0.93533, 0.46858, 0.97099, 0.51815, 0.99951, 0.58838, 1, 0.66274, 0.98049, 0.7433, 0.95197, 0.8569, 0.89253, 0.93539, 0.77129, 0.98084, 0.68333, 0.9953, 0.54782, 0.99323, 0.42657, 1, 0.31959, 0.99116, 0.20072, 0.97464, 0.13653, 0.93333, 0.06997, 0.89202, 0.0248, 0.84864, 0.00816, 0.76808, 0, 0.68546, 0, 0.57392, 0, 0.44999, 0.0248, 0.35497, 0.19597, 0.73297, 0.41231, 0.74949, 0.67619, 0.72884, 0.87114, 0.71644, 0.18884, 0.79907, 0.42895, 0.82798, 0.68333, 0.81766, 0.89016, 0.76602, 0.18408, 0.61936, 0.42895, 0.63589, 0.68808, 0.62349, 0.87114, 0.6049, 0.19359, 0.4851, 0.43608, 0.48717, 0.68095, 0.4913, 0.84261, 0.47064, 0.2031, 0.3653, 0.43846, 0.37769, 0.6857, 0.37356, 0.84261, 0.36323, 0.21736, 0.24962, 0.4551, 0.25582, 0.69046, 0.25169, 0.85687, 0.24962, 0.26016, 0.1133, 0.46699, 0.1071, 0.69283, 0.11123 ],
  476. "triangles": [ 22, 23, 39, 20, 21, 40, 23, 24, 39, 21, 22, 40, 22, 39, 40, 39, 24, 38, 20, 40, 19, 26, 38, 25, 24, 25, 38, 40, 41, 19, 19, 41, 18, 26, 27, 38, 27, 28, 38, 18, 41, 17, 28, 29, 38, 39, 38, 35, 38, 34, 35, 39, 36, 40, 39, 35, 36, 40, 37, 41, 40, 36, 37, 38, 29, 34, 41, 37, 17, 17, 37, 16, 52, 53, 49, 13, 53, 12, 12, 53, 11, 50, 54, 51, 51, 55, 52, 51, 54, 55, 52, 56, 53, 52, 55, 56, 33, 0, 50, 50, 0, 54, 53, 57, 11, 53, 56, 57, 11, 57, 10, 10, 57, 9, 54, 58, 55, 55, 59, 56, 55, 58, 59, 56, 60, 57, 56, 59, 60, 0, 1, 54, 54, 1, 58, 57, 8, 9, 57, 7, 8, 57, 60, 7, 59, 2, 3, 59, 58, 2, 58, 1, 2, 60, 6, 7, 59, 4, 60, 4, 5, 60, 60, 5, 6, 59, 3, 4, 29, 30, 34, 35, 43, 36, 35, 34, 43, 30, 42, 34, 34, 42, 43, 36, 44, 37, 36, 43, 44, 37, 45, 16, 37, 44, 45, 30, 31, 42, 45, 15, 16, 44, 47, 48, 44, 43, 47, 42, 46, 43, 43, 46, 47, 44, 49, 45, 44, 48, 49, 42, 31, 46, 45, 14, 15, 45, 13, 14, 45, 49, 13, 31, 32, 46, 47, 51, 48, 48, 52, 49, 48, 51, 52, 46, 50, 47, 47, 50, 51, 32, 33, 46, 46, 33, 50, 49, 53, 13 ],
  477. "vertices": [ 2, 16, 82.37, 57.69, 0.26388, 17, 27.44, 60.6, 0.73611, 2, 16, 103.75, 43.31, 0.0848, 17, 50.1, 48.34, 0.91519, 2, 16, 118.85, 22.21, 0.00796, 17, 67.16, 28.78, 0.99202, 1, 17, 72.06, 5.56, 1, 1, 17, 73.14, -14.26, 1, 2, 16, 119.86, -40.76, 0.01294, 17, 74.2, -33.79, 0.98705, 2, 16, 106.74, -64.68, 0.08078, 17, 63.44, -58.86, 0.91921, 2, 16, 100.5, -69.9, 0.11071, 17, 57.73, -64.65, 0.88928, 3, 16, 89.67, -78.95, 0.17378, 17, 47.82, -74.71, 0.82493, 11, 74.03, 121.07, 0.00128, 3, 16, 77.05, -83.83, 0.24175, 17, 35.72, -80.77, 0.75125, 11, 79.42, 108.67, 0.00698, 3, 16, 66.32, -87.97, 0.29842, 17, 25.44, -85.92, 0.68575, 11, 84.01, 98.12, 0.01582, 3, 16, 52.21, -84.47, 0.37991, 17, 11.06, -83.79, 0.58141, 11, 81.1, 83.88, 0.03866, 3, 16, 44.57, -82.57, 0.43258, 17, 3.27, -82.63, 0.50445, 11, 79.52, 76.16, 0.06296, 3, 16, 32.5, -77.7, 0.52691, 17, -9.2, -78.95, 0.33407, 11, 75.16, 63.9, 0.139, 3, 16, 23.2, -82.99, 0.55795, 17, -17.95, -85.1, 0.21613, 11, 80.83, 54.83, 0.2259, 3, 16, 10.17, -86.98, 0.54779, 17, -30.54, -90.33, 0.13104, 11, 85.36, 41.98, 0.32115, 3, 16, -3.42, -86.49, 0.50723, 17, -44.12, -91.15, 0.07812, 11, 85.44, 28.37, 0.41463, 3, 16, -18.02, -82.78, 0.42111, 17, -59.01, -88.86, 0.03668, 11, 82.34, 13.63, 0.5422, 3, 16, -38.61, -77.38, 0.2856, 17, -80.01, -85.46, 0.00673, 11, 77.8, -7.15, 0.70765, 3, 16, -52.56, -67.34, 0.20204, 17, -94.87, -76.81, 5.6E-4, 11, 68.35, -21.52, 0.79738, 2, 16, -60.07, -47.74, 0.10831, 11, 49.07, -29.83, 0.89168, 2, 16, -62.13, -33.65, 0.05078, 11, 35.09, -32.48, 0.94921, 1, 11, 13.54, -32.1, 0.99999, 2, 16, -61.29, 7.16, 0.0051, 11, -5.73, -33.34, 0.99488, 2, 16, -58.97, 24.09, 0.06989, 11, -22.74, -31.72, 0.9301, 2, 16, -55.16, 42.85, 0.19153, 11, -41.64, -28.7, 0.80846, 2, 16, -47.18, 52.73, 0.28411, 11, -51.84, -21.14, 0.71588, 3, 16, -39.19, 62.99, 0.38199, 17, -94.07, 54.21, 0.00203, 11, -62.43, -13.58, 0.61596, 3, 16, -30.96, 69.84, 0.44856, 17, -86.53, 61.81, 0.00623, 11, -69.61, -5.64, 0.5452, 3, 16, -16.12, 71.87, 0.54953, 17, -71.96, 65.26, 0.02103, 11, -72.25, 9.09, 0.42943, 3, 16, -0.96, 72.53, 0.65308, 17, -56.93, 67.38, 0.0548, 11, -73.55, 24.21, 0.2921, 3, 16, 19.43, 71.68, 0.71357, 17, -36.55, 68.49, 0.15128, 11, -73.55, 44.62, 0.13513, 3, 16, 42.09, 70.74, 0.63566, 17, -13.9, 69.73, 0.32471, 11, -73.55, 67.3, 0.03962, 3, 16, 59.3, 66.07, 0.49597, 17, 3.66, 66.73, 0.4941, 11, -69.61, 84.69, 0.0099, 3, 16, -10.94, 41.76, 0.54333, 17, -63.91, 35.79, 0.01523, 11, -42.39, 15.52, 0.44143, 2, 16, -15.39, 7.52, 0.56255, 11, -7.99, 12.49, 0.43744, 3, 16, -13.36, -34.55, 0.55946, 17, -59, -40.4, 0.01263, 11, 33.95, 16.27, 0.4279, 3, 16, -12.39, -65.61, 0.4568, 17, -55.05, -71.23, 0.04517, 11, 64.95, 18.54, 0.49801, 3, 16, -22.98, 43.4, 0.3701, 17, -76.05, 36.26, 0.0023, 11, -43.53, 3.42, 0.62758, 1, 11, -5.35, -1.86, 1, 3, 16, -29.65, -35.01, 0.18696, 17, -75.17, -42.42, 7.2E-4, 11, 35.09, 0.02, 0.81231, 3, 16, -21.58, -68.26, 0.36031, 17, -63.94, -74.74, 0.01809, 11, 67.97, 9.47, 0.62158, 3, 16, 9.9, 42.78, 0.76409, 17, -43.26, 38.81, 0.10396, 11, -44.28, 36.31, 0.13192, 2, 16, 5.26, 4.01, 0.99912, 11, -5.35, 33.28, 8.6E-4, 3, 16, 5.81, -37.24, 0.74049, 17, -39.65, -41.24, 0.02941, 11, 35.84, 35.55, 0.23008, 3, 16, 8, -66.46, 0.57349, 17, -34.67, -70.11, 0.11269, 11, 64.95, 38.95, 0.31379, 3, 16, 34.39, 40.25, 0.72583, 17, -18.64, 38.64, 0.23991, 11, -42.77, 60.88, 0.03424, 1, 16, 32.4, 1.74, 1, 3, 16, 30.03, -37.11, 0.69006, 17, -15.55, -38.79, 0.23383, 11, 34.71, 59.74, 0.07609, 3, 16, 32.73, -62.95, 0.54188, 17, -10.38, -64.25, 0.34587, 11, 60.41, 63.52, 0.11224, 3, 16, 56.23, 37.83, 0.50302, 17, 3.32, 38.32, 0.49278, 11, -41.26, 82.8, 0.00418, 2, 16, 52.4, 0.53, 0.5, 17, 3.09, 0.83, 0.5, 3, 16, 51.52, -38.77, 0.46632, 17, 5.99, -38.37, 0.52133, 11, 35.47, 81.29, 0.01233, 3, 16, 52.37, -63.77, 0.37444, 17, 9.24, -63.18, 0.59374, 11, 60.41, 83.18, 0.0318, 2, 16, 77.28, 34.68, 0.25193, 17, 24.58, 37.21, 0.74806, 1, 17, 25.51, -0.58, 1, 3, 16, 73.77, -40.45, 0.16508, 17, 28.3, -37.91, 0.83366, 11, 36.22, 103.59, 0.00124, 3, 16, 73.05, -66.9, 0.25096, 17, 30.12, -64.31, 0.7407, 11, 62.68, 103.97, 0.00832, 2, 16, 101.93, 26.84, 0.06357, 17, 49.86, 31.78, 0.93642, 1, 17, 52.79, -0.99, 1, 2, 16, 99.44, -41.9, 0.02344, 17, 53.99, -36.89, 0.97655 ],
  478. "hull": 34,
  479. "edges": [ 0, 2, 2, 4, 4, 6, 10, 12, 24, 26, 26, 28, 28, 30, 30, 32, 32, 34, 34, 36, 36, 38, 38, 40, 40, 42, 42, 44, 44, 46, 46, 48, 48, 50, 50, 52, 52, 54, 54, 56, 56, 58, 58, 60, 60, 62, 62, 64, 64, 66, 0, 66, 6, 8, 8, 10, 60, 68, 68, 70, 70, 72, 72, 74, 74, 32, 58, 76, 76, 78, 78, 80, 80, 82, 82, 34, 62, 84, 84, 86, 86, 88, 88, 90, 90, 30, 64, 92, 92, 94, 94, 96, 96, 98, 98, 26, 66, 100, 100, 102, 102, 104, 104, 106, 20, 22, 22, 24, 106, 22, 0, 108, 108, 110, 110, 112, 112, 114, 16, 18, 18, 20, 114, 18, 2, 116, 116, 118, 118, 120, 12, 14, 14, 16, 120, 14 ],
  480. "width": 159,
  481. "height": 183
  482. }
  483. },
  484. "body_front": {
  485. "body_front": {
  486. "type": "mesh",
  487. "uvs": [ 0.04267, 0.16905, 0.10357, 0.06649, 0.23755, 0.02376, 0.40806, 0, 0.55219, 0, 0.67602, 0.03516, 0.8648, 0.08074, 0.94194, 0.14341, 0.95807, 0.19593, 0.99269, 0.30863, 0.99542, 0.39054, 1, 0.52799, 0.9911, 0.62381, 0.98254, 0.716, 0.8851, 0.92966, 0.73285, 1, 0.54407, 1, 0.2883, 1, 0.16244, 0.9439, 0.03455, 0.82141, 0, 0.62484, 0, 0.36846, 0.16041, 0.62484, 0.35326, 0.62769, 0.55219, 0.63054, 0.76533, 0.63339, 0.90743, 0.63339, 0.18477, 0.37416, 0.35529, 0.39695, 0.57655, 0.39979, 0.80187, 0.41404, 0.21725, 0.17474, 0.3837, 0.18614, 0.58264, 0.19184, 0.82623, 0.22602 ],
  488. "triangles": [ 31, 1, 2, 0, 1, 31, 32, 2, 3, 31, 2, 32, 33, 4, 5, 32, 3, 4, 33, 32, 4, 34, 5, 6, 34, 6, 7, 34, 7, 8, 33, 5, 34, 27, 0, 31, 21, 0, 27, 28, 31, 32, 27, 31, 28, 29, 32, 33, 30, 29, 33, 28, 32, 29, 34, 30, 33, 9, 30, 34, 9, 34, 8, 30, 9, 10, 30, 10, 11, 11, 26, 30, 22, 20, 21, 27, 22, 21, 23, 27, 28, 22, 27, 23, 24, 28, 29, 23, 28, 24, 25, 29, 30, 26, 25, 30, 24, 29, 25, 11, 12, 26, 13, 26, 12, 19, 20, 22, 14, 25, 26, 14, 26, 13, 18, 22, 23, 19, 22, 18, 15, 24, 25, 17, 18, 23, 16, 23, 24, 17, 23, 16, 15, 25, 14, 16, 24, 15 ],
  489. "vertices": [ 2, 48, -73.07, 76.84, 0.03321, 49, 47.32, 73.62, 0.96679, 2, 48, -62.9, 89.04, 0.01328, 49, 59.93, 63.95, 0.98672, 2, 48, -40.53, 94.13, 0.00107, 49, 65.93, 41.81, 0.99893, 1, 49, 69.91, 13.47, 1, 2, 48, 12.02, 96.95, 1.9E-4, 49, 70.9, -10.58, 0.99981, 2, 48, 32.7, 92.77, 0.01347, 49, 67.56, -31.41, 0.98653, 2, 48, 64.22, 87.35, 0.07166, 49, 63.43, -63.14, 0.92834, 2, 48, 77.11, 79.89, 0.1003, 49, 56.5, -76.31, 0.8997, 2, 48, 79.8, 73.64, 0.11561, 49, 50.37, -79.26, 0.88439, 2, 48, 85.58, 60.23, 0.16542, 49, 37.2, -85.58, 0.83458, 2, 48, 86.04, 50.48, 0.2083, 49, 27.48, -86.43, 0.79171, 2, 48, 86.8, 34.12, 0.30549, 49, 11.17, -87.87, 0.69451, 2, 48, 85.32, 22.72, 0.38171, 49, -0.29, -86.85, 0.61829, 2, 48, 83.89, 11.75, 0.45135, 49, -11.31, -85.87, 0.54865, 2, 48, 67.61, -13.68, 0.64519, 49, -37.37, -70.65, 0.35481, 2, 48, 42.19, -22.05, 0.80893, 49, -46.77, -45.58, 0.19107, 2, 48, 10.66, -22.05, 0.99174, 49, -48.06, -14.08, 0.00826, 2, 48, -32.05, -22.05, 0.83148, 49, -49.8, 28.6, 0.16852, 2, 48, -53.07, -15.37, 0.62945, 49, -43.99, 49.87, 0.37055, 2, 48, -74.43, -0.79, 0.44142, 49, -30.3, 71.8, 0.55858, 2, 48, -80.2, 22.6, 0.2865, 49, -7.16, 78.52, 0.7135, 2, 48, -80.2, 53.11, 0.1077, 49, 23.32, 79.77, 0.8923, 2, 48, -53.41, 22.6, 0.30479, 49, -6.07, 51.76, 0.69521, 2, 48, -21.2, 22.26, 0.25257, 49, -5.09, 19.57, 0.74743, 2, 48, 12.02, 21.92, 0.25902, 49, -4.08, -13.64, 0.74098, 2, 48, 47.61, 21.58, 0.40899, 49, -2.96, -49.22, 0.59101, 2, 48, 71.34, 21.58, 0.40262, 49, -1.99, -72.93, 0.59738, 2, 48, -49.34, 52.43, 0.0742, 49, 23.9, 48.91, 0.9258, 2, 48, -20.87, 49.72, 0.01575, 49, 22.36, 20.35, 0.98425, 2, 48, 16.09, 49.38, 0.02802, 49, 23.53, -16.59, 0.97198, 2, 48, 53.71, 47.68, 0.17947, 49, 23.37, -54.25, 0.82053, 2, 48, -43.92, 76.16, 0.01007, 49, 47.84, 44.46, 0.98993, 1, 49, 47.61, 16.63, 1, 2, 48, 17.1, 74.12, 0.00521, 49, 48.29, -16.59, 0.99479, 2, 48, 57.78, 70.06, 0.08824, 49, 45.89, -57.41, 0.91176 ],
  490. "hull": 22,
  491. "edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 26, 28, 28, 30, 30, 32, 32, 34, 34, 36, 36, 38, 38, 40, 40, 42, 0, 42, 40, 44, 44, 46, 46, 48, 48, 50, 50, 52, 22, 24, 24, 26, 52, 24, 42, 54, 54, 56, 56, 58, 58, 60, 18, 20, 20, 22, 60, 20, 0, 62, 62, 64, 64, 66, 66, 68, 14, 16, 16, 18, 68, 16 ],
  492. "width": 167,
  493. "height": 119
  494. }
  495. },
  496. "eye": {
  497. "eye": { "x": 2.03, "y": 3.57, "rotation": -94.92, "width": 42, "height": 31 }
  498. },
  499. "eye1": {
  500. "eye1": { "x": 17.48, "y": -2.83, "rotation": -61.76, "width": 69, "height": 68 }
  501. },
  502. "eye1_back": {
  503. "eye1_back": { "x": 24.28, "y": 0.75, "rotation": -138.57, "width": 77, "height": 76 }
  504. },
  505. "eye2": {
  506. "eye2": { "x": 10.47, "y": 4.81, "rotation": -138.01, "width": 57, "height": 58 }
  507. },
  508. "eye2_back": {
  509. "eye2_back": { "x": 22.43, "y": 1.83, "rotation": -45, "width": 65, "height": 66 }
  510. },
  511. "face": {
  512. "face": { "x": 2.58, "y": -4.09, "rotation": -94.92, "width": 104, "height": 85 }
  513. },
  514. "feet": {
  515. "feet": { "x": 13.62, "y": 1.59, "rotation": 86.98, "width": 35, "height": 35 }
  516. },
  517. "feet1": {
  518. "feet1": { "x": 12.14, "y": 0.83, "rotation": 88.09, "width": 34, "height": 34 }
  519. },
  520. "gun": {
  521. "jian": { "x": -39.32, "y": 15.21, "width": 147, "height": 97 }
  522. },
  523. "hand": {
  524. "hand": {
  525. "type": "mesh",
  526. "uvs": [ 0.08998, 0.27478, 0.11303, 0.17456, 0.18677, 0.07049, 0.32964, 0.00111, 0.50938, 0.04736, 0.72598, 0.07049, 0.91033, 0.15529, 0.99329, 0.35187, 0.95181, 0.57158, 0.89885, 0.65413, 0.85042, 0.72962, 0.68911, 0.86453, 0.5232, 0.96475, 0.32503, 0.98402, 0.11764, 0.90307, 0.02085, 0.74118, 0.03468, 0.56773, 0.06233, 0.40969, 0.39416, 0.23624, 0.3112, 0.37886, 0.2559, 0.60642, 0.21903, 0.77202, 0.44048, 0.81044, 0.49555, 0.66795, 0.61998, 0.43282, 0.68911, 0.19769, 0.85042, 0.34031, 0.79511, 0.50991, 0.67068, 0.70264, 0.64879, 0.29066, 0.43579, 0.12413, 0.27836, 0.47655, 0.57934, 0.54239, 0.75529, 0.61209 ],
  527. "triangles": [ 14, 21, 13, 13, 22, 12, 13, 21, 22, 12, 22, 11, 14, 15, 21, 11, 22, 28, 22, 23, 28, 11, 28, 10, 23, 22, 20, 22, 21, 20, 21, 15, 20, 15, 16, 20, 28, 33, 10, 10, 33, 9, 23, 32, 28, 28, 32, 33, 32, 23, 31, 8, 9, 27, 9, 33, 27, 33, 32, 27, 23, 20, 31, 20, 16, 31, 27, 26, 8, 8, 26, 7, 16, 17, 31, 31, 19, 32, 32, 24, 27, 32, 19, 24, 27, 24, 26, 31, 17, 19, 19, 18, 24, 24, 29, 26, 24, 18, 29, 17, 0, 19, 0, 1, 19, 19, 1, 18, 26, 6, 7, 29, 25, 26, 26, 25, 6, 18, 30, 29, 29, 30, 25, 25, 30, 4, 1, 2, 18, 18, 2, 30, 30, 2, 3, 25, 5, 6, 25, 4, 5, 30, 3, 4 ],
  528. "vertices": [ 2, 7, 43.83, -20.81, 0.512, 8, 5.32, -21.38, 0.48799, 2, 7, 38.27, -20.03, 0.832, 8, -0.19, -22.39, 0.16799, 2, 7, 32.38, -16.94, 0.94386, 8, -6.76, -21.3, 0.05613, 2, 7, 28.24, -10.57, 0.99706, 8, -12.7, -16.56, 0.00293, 1, 7, 30.35, -2.18, 1, 1, 7, 31.11, 7.82, 1, 2, 7, 35.33, 16.53, 0.93963, 8, -14.48, 11.4, 0.06036, 2, 7, 45.93, 20.9, 0.38026, 8, -5.78, 18.88, 0.61973, 2, 7, 58.1, 19.62, 0.056, 8, 6.16, 21.48, 0.944, 2, 7, 62.76, 17.42, 0.02674, 8, 11.28, 20.85, 0.97325, 1, 8, 15.95, 20.28, 1, 1, 8, 25.56, 16.05, 1, 1, 8, 33.46, 10.94, 1, 1, 8, 37.75, 2.83, 1, 2, 7, 78.28, -17.76, 0.0062, 8, 37.06, -7.67, 0.99379, 1, 8, 30.38, -15.04, 1, 2, 7, 60.06, -22.52, 0.1533, 8, 21.26, -17.91, 0.84669, 2, 7, 51.31, -21.69, 0.16019, 8, 12.69, -19.87, 0.8398, 2, 7, 41, -6.94, 0.656, 8, -1.72, -9.11, 0.34399, 2, 7, 49.03, -10.35, 0.2158, 8, 6.96, -9.82, 0.78419, 1, 8, 17.96, -8.27, 1, 1, 8, 28.65, -5.93, 1, 1, 8, 29.17, 2.67, 1, 1, 8, 18.71, 3.84, 1, 2, 7, 51.26, 3.98, 0.088, 8, 4.58, 4.48, 0.91199, 2, 7, 38.18, 6.49, 0.89842, 8, -8.61, 2.76, 0.10157, 2, 7, 45.64, 14.3, 0.35867, 8, -3.99, 12.52, 0.64132, 2, 7, 55.08, 12.24, 0.064, 8, 5.61, 13.53, 0.93599, 1, 8, 17.57, 12.04, 1, 2, 7, 43.39, 4.9, 0.57296, 8, -3.18, 2.89, 0.42702, 2, 7, 34.74, -5.34, 0.84896, 8, -8.16, -9.56, 0.15103, 2, 7, 54.47, -11.58, 0.10806, 8, 12.52, -9.28, 0.89193, 2, 7, 57.38, 2.42, 0.04815, 8, 10.88, 4.93, 0.95184, 2, 7, 60.79, 10.7, 0.03125, 8, 11.51, 13.86, 0.96874 ],
  529. "hull": 18,
  530. "edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 20, 22, 22, 24, 24, 26, 26, 28, 28, 30, 30, 32, 32, 34, 0, 34, 2, 36, 36, 58, 58, 52, 0, 38, 38, 48, 48, 54, 34, 62, 62, 64, 64, 66, 16, 18, 18, 20, 66, 18, 32, 40, 40, 46, 46, 56, 56, 20, 30, 42, 42, 44, 44, 22 ],
  531. "width": 46,
  532. "height": 55
  533. }
  534. },
  535. "hand1": {
  536. "hand1": { "x": 9.22, "y": -1.75, "rotation": 154.05, "width": 56, "height": 50 }
  537. },
  538. "jian_back": {
  539. "jian_back": {
  540. "type": "mesh",
  541. "uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
  542. "triangles": [ 1, 2, 3, 1, 3, 0 ],
  543. "vertices": [ -34.59, -32.21, -36.91, 37.75, 123.01, 43.05, 125.33, -26.91 ],
  544. "hull": 4,
  545. "edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
  546. "width": 70,
  547. "height": 160
  548. }
  549. },
  550. "jianqi": {
  551. "down_28": {
  552. "type": "mesh",
  553. "uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
  554. "triangles": [ 1, 2, 3, 1, 3, 0 ],
  555. "vertices": [ -153.7, 56.63, 136.21, 61.26, 139.78, -51.71, -150.13, -56.33 ],
  556. "hull": 4,
  557. "edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
  558. "width": 290,
  559. "height": 113
  560. },
  561. "down_30": {
  562. "type": "mesh",
  563. "uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
  564. "triangles": [ 1, 2, 3, 1, 3, 0 ],
  565. "vertices": [ -204.73, 57.47, 85.21, 61.73, 88.64, -51.24, -201.3, -55.49 ],
  566. "hull": 4,
  567. "edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
  568. "width": 290,
  569. "height": 113
  570. },
  571. "down_32": {
  572. "type": "mesh",
  573. "uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
  574. "triangles": [ 1, 2, 3, 1, 3, 0 ],
  575. "vertices": [ -206.13, 55.11, 83.81, 59.36, 87.24, -53.6, -202.69, -57.85 ],
  576. "hull": 4,
  577. "edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
  578. "width": 290,
  579. "height": 113
  580. },
  581. "down_34": {
  582. "type": "mesh",
  583. "uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
  584. "triangles": [ 1, 2, 3, 1, 3, 0 ],
  585. "vertices": [ -263.04, 56.23, 26.89, 60.49, 30.32, -52.48, -259.61, -56.73 ],
  586. "hull": 4,
  587. "edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
  588. "width": 290,
  589. "height": 113
  590. }
  591. },
  592. "left arm_back": {
  593. "left arm_back": {
  594. "type": "mesh",
  595. "uvs": [ 0.00503, 0.50418, 0.07574, 0.27854, 0.19064, 0.1093, 0.36742, 0.00454, 0.72096, 0.0126, 0.98612, 0.20601, 1, 0.51224, 1, 0.72177, 0.84471, 0.81848, 0.72278, 0.91479, 0.6149, 1, 0.42929, 0.99577, 0.3409, 0.8346, 0.17296, 0.77818, 0, 0.75401, 0.58496, 0.71619, 0.33377, 0.55569, 0.71001, 0.61813, 0.451, 0.3918, 0.8105, 0.47766, 0.5541, 0.23063 ],
  596. "triangles": [ 9, 10, 15, 10, 11, 15, 11, 12, 15, 9, 15, 8, 13, 16, 12, 12, 16, 15, 15, 17, 8, 8, 17, 7, 16, 13, 0, 13, 14, 0, 17, 19, 7, 19, 6, 7, 17, 15, 18, 15, 16, 18, 17, 18, 19, 0, 1, 16, 16, 1, 18, 19, 5, 6, 18, 20, 19, 19, 20, 5, 5, 20, 4, 1, 2, 18, 18, 2, 20, 20, 2, 3, 20, 3, 4 ],
  597. "vertices": [ 1, 35, 33.54, -24.18, 1, 1, 35, 18.09, -28.18, 1, 1, 35, 4.56, -27.88, 1, 1, 35, -7.12, -22.04, 1, 1, 35, -17.77, -2.87, 1, 1, 35, -14.76, 17.96, 1, 1, 35, 2.74, 29.25, 1, 1, 35, 15.02, 36.48, 1, 1, 35, 25.57, 31.51, 1, 1, 35, 35.05, 28.32, 1, 1, 35, 43.43, 25.49, 1, 1, 35, 49.02, 15.43, 1, 1, 35, 42.35, 5.15, 1, 1, 35, 44.32, -5.76, 1, 1, 35, 48.34, -15.84, 1, 1, 35, 27.74, 14.11, 1, 1, 35, 26.23, -4.84, 1, 1, 35, 18.06, 17.41, 1, 1, 35, 12.94, -4.23, 1, 1, 35, 6.67, 17.94, 1, 1, 35, 0.25, -4.27, 1 ],
  598. "hull": 15,
  599. "edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 20, 22, 22, 24, 24, 26, 26, 28, 0, 28, 16, 18, 18, 20, 18, 30, 30, 32, 32, 0, 16, 34, 34, 36, 36, 2, 14, 38, 38, 40, 40, 6 ],
  600. "width": 62,
  601. "height": 68
  602. }
  603. },
  604. "left feet_back": {
  605. "left feet_back": { "x": 6.69, "y": -1.37, "rotation": 95.19, "width": 34, "height": 35 }
  606. },
  607. "left hand_back": {
  608. "left hand_back": {
  609. "type": "mesh",
  610. "uvs": [ 0.13611, 0.22623, 0.28671, 0.06493, 0.46049, 0, 0.62267, 0.0181, 0.78486, 0.09094, 0.9065, 0.20542, 0.97601, 0.3407, 0.94126, 0.50201, 0.8312, 0.6425, 0.71535, 0.7882, 0.5995, 0.91308, 0.46628, 0.99113, 0.29251, 0.97552, 0.11294, 0.91308, 0.01447, 0.74137, 0.02026, 0.55404, 0.07239, 0.36152, 0.38811, 0.8149, 0.19522, 0.75331, 0.506, 0.67081, 0.28446, 0.61305, 0.58705, 0.53059, 0.33673, 0.45457, 0.68847, 0.37187, 0.42588, 0.29959, 0.75725, 0.23539, 0.49462, 0.15575 ],
  611. "triangles": [ 26, 2, 3, 1, 2, 26, 25, 3, 4, 25, 4, 5, 26, 3, 25, 24, 1, 26, 0, 1, 24, 25, 5, 6, 23, 26, 25, 24, 26, 23, 6, 23, 25, 22, 0, 24, 16, 0, 22, 7, 23, 6, 21, 24, 23, 22, 24, 21, 20, 15, 16, 22, 20, 16, 8, 23, 7, 21, 23, 8, 19, 22, 21, 20, 22, 19, 18, 14, 15, 20, 18, 15, 9, 21, 8, 19, 21, 9, 17, 20, 19, 18, 20, 17, 13, 14, 18, 10, 19, 9, 17, 19, 10, 12, 18, 17, 13, 18, 12, 11, 17, 10, 12, 17, 11 ],
  612. "vertices": [ 2, 36, 1.87, -20.26, 0.52231, 35, 37.38, -20.1, 0.47768, 2, 36, -10.01, -16.67, 0.0301, 35, 28.29, -11.64, 0.96989, 2, 36, -17.16, -9.72, 3.0E-5, 35, 24.94, -2.24, 0.99996, 2, 36, -19.57, -1.4, 0.01696, 35, 26.45, 6.28, 0.98302, 2, 36, -19, 8.19, 0.15392, 35, 31.19, 14.64, 0.84606, 2, 36, -15.33, 16.77, 0.34277, 35, 38.27, 20.73, 0.65722, 2, 36, -9.45, 23.3, 0.50221, 35, 46.43, 23.99, 0.49778, 2, 36, 0.01, 25.36, 0.67153, 35, 55.84, 21.66, 0.32846, 2, 36, 9.93, 23.26, 0.85603, 35, 63.82, 15.41, 0.14396, 2, 36, 20.25, 21.01, 0.97429, 35, 72.08, 8.83, 0.0257, 2, 36, 29.44, 18.27, 0.99948, 35, 79.12, 2.32, 5.1E-4, 1, 36, 36.46, 13.59, 1, 1, 36, 39.24, 4.76, 0.99999, 1, 36, 39.6, -5.43, 0.99999, 1, 36, 32.34, -14.22, 0.99999, 2, 36, 22.06, -18.29, 0.99795, 35, 56.38, -27.24, 0.00204, 2, 36, 10.54, -20.22, 0.86989, 35, 45.18, -23.89, 0.1301, 1, 36, 28.53, 5.69, 1, 1, 36, 29.22, -5.13, 0.99999, 2, 36, 18.26, 8.08, 0.98829, 35, 64.59, -1.88, 0.0117, 1, 36, 19.75, -4.04, 1, 2, 36, 8.96, 8.77, 0.90996, 35, 56.55, 2.83, 0.09003, 2, 36, 10.06, -5.18, 0.99226, 35, 51.39, -10.18, 0.00773, 2, 36, -1.76, 10.02, 0.64235, 35, 47.48, 8.68, 0.35763, 2, 36, -0.19, -4.44, 0.49683, 35, 42.5, -4.99, 0.50316, 2, 36, -10.59, 10.2, 0.32597, 35, 39.62, 12.74, 0.67402, 2, 36, -9.43, -4.44, 0.00128, 35, 34.21, -0.91, 0.99871 ],
  613. "hull": 17,
  614. "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, 20, 34, 34, 36, 18, 38, 38, 40, 40, 30, 16, 42, 42, 44, 44, 32, 14, 46, 46, 48, 48, 0, 12, 50, 50, 52, 52, 2 ],
  615. "width": 53,
  616. "height": 59
  617. }
  618. },
  619. "left_front": {
  620. "left_front": { "x": 23.25, "y": 4.57, "rotation": -128.42, "width": 69, "height": 68 }
  621. },
  622. "lefthand__front": {
  623. "lefthand__front": {
  624. "type": "mesh",
  625. "uvs": [ 0.03078, 0.58995, 0.14544, 0.40976, 0.22525, 0.31833, 0.28605, 0.24868, 0.37467, 0.15302, 0.45804, 0.06303, 0.53312, 0, 0.68874, 0.03573, 0.85392, 0.1736, 0.9795, 0.32239, 1, 0.50258, 1, 0.54899, 0.94265, 0.65547, 0.8116, 0.77696, 0.64642, 0.88207, 0.54049, 0.92541, 0.40617, 0.98036, 0.25804, 0.99, 0.11268, 0.99947, 0, 0.89845, 0, 0.69915, 0.17821, 0.73737, 0.27513, 0.84112, 0.18913, 0.92712, 0.05398, 0.76877, 0.27103, 0.57083, 0.39935, 0.74147, 0.29424, 0.40293, 0.39798, 0.49576, 0.50582, 0.66639, 0.46487, 0.26506, 0.5495, 0.38518, 0.66963, 0.58722, 0.31582, 0.42225, 0.54677, 0.1695, 0.67509, 0.30328, 0.78976, 0.46163 ],
  626. "triangles": [ 3, 33, 2, 27, 2, 33, 1, 2, 27, 25, 1, 27, 25, 27, 33, 25, 33, 28, 29, 28, 31, 0, 1, 25, 21, 0, 25, 20, 0, 21, 26, 28, 29, 25, 28, 26, 21, 25, 26, 24, 20, 21, 22, 21, 26, 14, 29, 32, 15, 26, 29, 19, 20, 24, 14, 15, 29, 16, 22, 26, 23, 21, 22, 24, 21, 23, 19, 24, 23, 15, 16, 26, 17, 23, 22, 16, 17, 22, 18, 19, 23, 18, 23, 17, 34, 6, 7, 5, 6, 34, 4, 5, 34, 30, 4, 34, 3, 4, 30, 35, 34, 7, 35, 7, 8, 30, 34, 35, 31, 30, 35, 30, 33, 3, 30, 28, 33, 36, 35, 8, 36, 8, 9, 31, 28, 30, 36, 9, 10, 36, 10, 11, 36, 32, 31, 36, 31, 35, 12, 36, 11, 32, 36, 12, 32, 29, 31, 13, 32, 12, 14, 32, 13 ],
  627. "vertices": [ 2, 56, 50.4, -20.38, 0.01423, 57, 25.4, -17.85, 0.98577, 2, 56, 37.23, -23.09, 0.19131, 57, 12.57, -21.91, 0.80869, 2, 56, 29.59, -23.49, 0.4261, 57, 5.02, -23.1, 0.5739, 2, 56, 23.77, -23.8, 0.63593, 57, -0.73, -24, 0.36407, 2, 56, 15.56, -23.99, 0.86399, 57, -8.88, -25.04, 0.13601, 2, 56, 7.83, -24.16, 0.96668, 57, -16.55, -26.01, 0.03332, 2, 56, 1.69, -23.53, 0.99226, 57, -22.73, -26.01, 0.00774, 1, 56, -3.52, -14.92, 1, 1, 56, -4.53, -1.41, 1, 1, 56, -3.3, 10.8, 1, 2, 56, 3.95, 19.63, 0.99854, 57, -24.94, 17.15, 0.00146, 2, 56, 6.05, 21.66, 0.99457, 57, -23.06, 19.39, 0.00543, 2, 56, 13.38, 23.74, 0.95427, 57, -15.98, 22.21, 0.04573, 2, 56, 24.62, 23.14, 0.7348, 57, -4.74, 22.77, 0.2652, 2, 56, 36.62, 20.28, 0.29569, 57, 7.49, 21.17, 0.70431, 2, 56, 43.22, 17.39, 0.10489, 57, 14.36, 18.97, 0.89511, 2, 56, 51.6, 13.72, 0.00957, 57, 23.07, 16.19, 0.99043, 1, 57, 30.61, 10.66, 1, 1, 57, 38.01, 5.24, 1, 1, 57, 39.37, -4.2, 1, 2, 56, 56.69, -16.98, 5.1E-4, 57, 31.3, -13.82, 0.99949, 2, 56, 50.61, -7.24, 9.0E-5, 57, 24.25, -4.77, 0.99991, 1, 57, 23.76, 4.17, 1, 1, 57, 31.4, 4.84, 1, 1, 57, 31.51, -8.28, 1, 2, 56, 39, -10.35, 0.06122, 57, 13.02, -9.05, 0.93878, 2, 56, 41.09, 2.94, 0.00498, 57, 13.73, 4.38, 0.99502, 2, 56, 30.39, -16.66, 0.37269, 57, 5.11, -16.22, 0.62731, 2, 56, 30.04, -7.9, 0.29418, 57, 3.86, -7.54, 0.70582, 2, 56, 33.03, 4.46, 0.09544, 57, 5.55, 5.06, 0.90456, 2, 56, 16.67, -14.99, 0.87326, 57, -8.71, -15.98, 0.12674, 2, 56, 18.39, -5.9, 0.95048, 57, -7.93, -6.75, 0.04952, 2, 56, 22.26, 8.4, 0.87829, 57, -5.56, 7.87, 0.12171, 2, 56, 30.32, -14.84, 0.36425, 57, 4.85, -14.42, 0.63575, 2, 56, 8.76, -15.48, 0.97396, 57, -16.53, -17.28, 0.02604, 2, 56, 9.18, -3.81, 0.99967, 57, -17.31, -5.62, 3.3E-4, 2, 56, 11.31, 8.32, 0.99858, 57, -16.44, 6.66, 0.00142 ],
  628. "hull": 21,
  629. "edges": [ 0, 2, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 20, 22, 22, 24, 24, 26, 26, 28, 36, 38, 38, 40, 0, 40, 0, 42, 42, 44, 44, 32, 46, 48, 48, 40, 32, 34, 34, 36, 34, 46, 2, 50, 50, 52, 28, 30, 30, 32, 52, 30, 56, 58, 6, 8, 8, 10, 8, 60, 60, 62, 62, 64, 64, 26, 2, 4, 4, 6, 54, 66, 66, 56, 4, 66, 68, 10, 70, 72, 72, 24, 70, 68 ],
  630. "width": 63,
  631. "height": 63
  632. }
  633. },
  634. "lefthand_front": {
  635. "lefthand_front": { "x": -2.94, "y": 27.73, "rotation": -40.23, "width": 38, "height": 40 }
  636. },
  637. "leftleg_front": {
  638. "leftleg_front": { "x": 17.4, "y": -1.41, "rotation": 93.12, "width": 38, "height": 44 }
  639. },
  640. "leftyanzhu_front": {
  641. "leftyanzhu_front": { "x": -0.2, "y": 0.62, "rotation": -42.84, "width": 11, "height": 11 }
  642. },
  643. "lian_front": {
  644. "lian_front": { "x": -33.1, "y": 7.34, "rotation": -94.97, "width": 112, "height": 83 }
  645. },
  646. "meimao": {
  647. "meimao": { "x": 4.98, "y": 2.65, "rotation": -143.61, "width": 20, "height": 19 }
  648. },
  649. "meimao2": {
  650. "meimao2": { "x": 4.82, "y": -0.71, "rotation": -27.55, "width": 32, "height": 24 }
  651. },
  652. "mouth": {
  653. "mouth": { "x": -0.67, "y": 0.81, "rotation": -94.92, "width": 42, "height": 27 }
  654. },
  655. "nose": {
  656. "nose": { "x": -2.15, "y": -2.23, "rotation": -94.92, "width": 58, "height": 36 }
  657. },
  658. "right arm_back": {
  659. "right arm_back": { "x": 21.41, "y": -2.05, "rotation": 39.17, "width": 65, "height": 61 }
  660. },
  661. "right feet_back": {
  662. "right feet_back": { "x": 12.83, "y": 0.06, "rotation": 89.99, "width": 34, "height": 33 }
  663. },
  664. "right hand_back": {
  665. "right hand_back": { "x": 16.64, "y": -0.86, "rotation": 16.18, "width": 62, "height": 52 }
  666. },
  667. "right_front": {
  668. "right_front": {
  669. "type": "mesh",
  670. "uvs": [ 0.08934, 0.21312, 0.18648, 0.12569, 0.30306, 0.0334, 0.40991, 0, 0.5362, 0.06254, 0.7062, 0.21312, 0.85677, 0.38311, 0.95877, 0.55312, 1, 0.71826, 1, 0.88826, 0.91991, 1, 0.74991, 1, 0.54106, 0.99026, 0.35648, 0.89797, 0.19134, 0.79597, 0.0262, 0.64054, 0, 0.3734, 0.13306, 0.52883, 0.23991, 0.38312, 0.37591, 0.22283, 0.30306, 0.63083, 0.38077, 0.48997, 0.49734, 0.32969, 0.47306, 0.7134, 0.62363, 0.4754, 0.71591, 0.75711, 0.85078, 0.64382, 0.89563, 0.82997 ],
  671. "triangles": [ 26, 7, 8, 27, 26, 8, 25, 26, 27, 27, 8, 9, 11, 25, 27, 10, 27, 9, 11, 27, 10, 26, 6, 7, 24, 5, 6, 26, 24, 6, 23, 21, 24, 25, 23, 24, 20, 21, 23, 26, 25, 24, 13, 20, 23, 14, 20, 13, 12, 23, 25, 13, 23, 12, 12, 25, 11, 19, 2, 3, 19, 3, 4, 1, 2, 19, 22, 19, 4, 22, 4, 5, 18, 1, 19, 18, 19, 22, 0, 1, 18, 16, 0, 18, 24, 22, 5, 21, 18, 22, 21, 22, 24, 17, 16, 18, 17, 18, 21, 20, 17, 21, 15, 16, 17, 14, 17, 20, 15, 17, 14 ],
  672. "vertices": [ 2, 60, -7.01, -9.62, 0.98913, 61, -29.94, -9.71, 0.01087, 1, 60, -8.54, -1.54, 1, 1, 60, -9.71, 7.75, 1, 1, 60, -8.02, 14.61, 1, 2, 60, -0.53, 19.36, 0.98552, 61, -23.8, 19.36, 0.01448, 3, 60, 13.16, 23.65, 0.71876, 61, -10.15, 23.81, 0.28068, 59, -27.62, 34.88, 5.6E-4, 3, 60, 28.64, 28.89, 0.15436, 61, 5.26, 29.23, 0.73537, 59, -8.88, 35.29, 0.11026, 3, 60, 44.33, 28.49, 6.3E-4, 61, 20.95, 29.01, 0.32071, 59, 9.47, 31.58, 0.67866, 2, 61, 25.06, 14.1, 0.00681, 59, 9.8, 18.57, 0.99319, 1, 59, 2.57, 9.69, 1, 2, 61, 12.98, -2.12, 0.03031, 59, -5.45, 7.58, 0.96969, 2, 61, 12.98, 0.04, 0.41865, 59, -7.07, 6.29, 0.58135, 3, 60, 40.63, -8, 0.01008, 61, 17.68, -7.52, 0.82482, 59, -8, -5.97, 0.1651, 3, 60, 37.35, -16.68, 0.11792, 61, 14.5, -16.24, 0.8661, 59, -15.63, -15.13, 0.01598, 2, 60, 27.72, -23.16, 0.36763, 61, 4.95, -22.83, 0.63237, 2, 60, 13.96, -26.98, 0.67062, 61, -8.77, -26.82, 0.32938, 2, 60, -1.29, -19.68, 0.91664, 61, -24.1, -19.69, 0.08336, 2, 60, 11.43, -17.59, 0.757, 61, -11.4, -17.44, 0.243, 2, 60, 7.07, -7.07, 0.94157, 61, -15.89, -6.98, 0.05843, 1, 60, 2.87, 5.5, 1, 2, 60, 22.47, -11.75, 0.43721, 61, -0.43, -11.49, 0.56279, 2, 60, 17.42, -2.97, 0.76812, 61, -5.58, -2.76, 0.23188, 2, 60, 12.6, 8.54, 0.96834, 61, -10.54, 8.69, 0.03166, 3, 60, 32.15, -4.97, 0.05911, 61, 9.16, -4.58, 0.93054, 59, -17.22, -1.25, 0.01036, 3, 60, 24.58, 10.67, 0.2097, 61, 1.41, 10.97, 0.78875, 59, -20.02, 17.54, 0.00156, 2, 61, 13.29, 11.22, 0.60731, 59, -4.63, 15.66, 0.39269, 3, 60, 39.54, 21.82, 4.7E-4, 61, 16.24, 22.28, 0.31621, 59, 3.15, 26.75, 0.68332, 1, 59, 0.35, 16.89, 1 ],
  673. "hull": 17,
  674. "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, 30, 34, 34, 36, 36, 38, 38, 8, 28, 40, 40, 42, 42, 44, 44, 10, 26, 46, 46, 48, 48, 12, 24, 50, 14, 52, 52, 50, 22, 54, 54, 16 ],
  675. "width": 63,
  676. "height": 63
  677. }
  678. },
  679. "rightleg_front": {
  680. "rightleg_front": { "x": 16.16, "y": 0.13, "rotation": 91.3, "width": 38, "height": 44 }
  681. },
  682. "rightyanzhu_front": {
  683. "rightyanzhu_front": { "x": -1.72, "y": 0.56, "rotation": -128.42, "width": 11, "height": 11 }
  684. },
  685. "ringt_front": {
  686. "ringt_front": { "x": 25.14, "y": 4.29, "rotation": -42.84, "width": 69, "height": 68 }
  687. },
  688. "shadow": {
  689. "shadow": { "x": 1.11, "y": -1.2, "width": 102, "height": 24 }
  690. },
  691. "tail": {
  692. "tail": {
  693. "type": "mesh",
  694. "uvs": [ 0.03442, 0.37456, 0.13887, 0.26397, 0.25376, 0.29162, 0.35298, 0.35244, 0.43654, 0.43538, 0.5462, 0.47409, 0.65065, 0.35797, 0.65065, 0.15338, 0.70287, 0.06491, 0.85953, 0.03727, 0.9692, 0.15338, 0.95876, 0.3635, 0.95876, 0.54044, 0.88565, 0.71738, 0.76031, 0.83903, 0.63498, 0.9275, 0.47831, 0.97726, 0.3112, 0.94962, 0.16498, 0.83903, 0.09187, 0.68421, 0.03965, 0.49621, 0.21625, 0.50287, 0.34, 0.67758, 0.54625, 0.72125, 0.7195, 0.59023, 0.79375, 0.38058, 0.8185, 0.19714 ],
  695. "triangles": [ 23, 5, 24, 22, 5, 23, 14, 24, 13, 23, 24, 14, 15, 23, 14, 15, 16, 23, 26, 8, 9, 26, 9, 10, 7, 8, 26, 6, 7, 26, 11, 26, 10, 25, 6, 26, 11, 25, 26, 25, 11, 12, 24, 6, 25, 24, 25, 12, 5, 6, 24, 13, 24, 12, 21, 20, 0, 21, 1, 2, 21, 2, 3, 21, 3, 4, 21, 0, 1, 22, 21, 4, 19, 20, 21, 19, 21, 22, 18, 19, 22, 22, 4, 5, 17, 18, 22, 17, 22, 23, 16, 17, 23 ],
  696. "vertices": [ 1, 13, -6.99, -0.79, 1, 1, 13, -6.44, 4.49, 1, 1, 13, -2.64, 6.37, 1, 2, 13, 1.42, 7.02, 0.99819, 15, 8.36, 14.81, 0.0018, 3, 13, 5.54, 6.73, 0.92606, 15, 5.54, 11.8, 0.07346, 14, 2.17, 10.01, 4.5E-4, 3, 13, 9.43, 8.19, 0.15115, 15, 4.22, 7.85, 0.60312, 14, 5.19, 7.15, 0.24572, 2, 15, 8.17, 4.09, 0.9916, 14, 10.27, 9.14, 0.00839, 1, 15, 15.13, 4.09, 1, 1, 15, 18.14, 2.21, 1, 1, 15, 19.08, -3.42, 0.99999, 2, 15, 15.13, -7.37, 0.99998, 14, 23.6, 10.59, 1.0E-5, 1, 15, 7.98, -6.99, 0.99999, 3, 13, 22.38, 15.81, 6.0E-5, 15, 1.97, -6.99, 0.93166, 14, 17.69, -1.17, 0.06827, 3, 13, 24.13, 9.48, 2.2E-4, 15, -4.04, -4.36, 0.32379, 14, 12.77, -5.5, 0.67597, 3, 13, 23.24, 3.42, 7.5E-4, 15, -8.17, 0.14, 0.00603, 14, 6.93, -7.34, 0.9932, 2, 13, 21.63, -1.75, 0.15911, 14, 1.57, -8.16, 0.84087, 2, 13, 18.32, -6.61, 0.67091, 14, -4.25, -7.31, 0.32908, 2, 13, 13.06, -9.68, 0.95914, 14, -9.3, -3.91, 0.04084, 1, 13, 6.6, -10.08, 0.99999, 1, 13, 1.24, -7.65, 0.99999, 1, 13, -4.24, -3.88, 1, 1, 13, 0.83, -0.05, 1, 1, 13, 8.03, -1.85, 1, 1, 14, 1.64, -0.46, 1, 2, 15, 0.27, 1.61, 0.42149, 14, 9.17, 0.93, 0.57849, 1, 15, 7.4, -1.05, 0.99999, 1, 15, 13.64, -1.94, 0.99999 ],
  697. "hull": 21,
  698. "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, 32, 34, 34, 36, 36, 38, 38, 40, 0, 40 ],
  699. "width": 36,
  700. "height": 34
  701. }
  702. },
  703. "tail_back": {
  704. "tail_back": {
  705. "type": "mesh",
  706. "uvs": [ 0.10739, 0.09478, 0.26372, 0.07704, 0.33631, 0.16572, 0.3363, 0.22587, 0.33953, 0.31117, 0.35886, 0.40328, 0.37915, 0.43551, 0.41041, 0.48516, 0.49419, 0.50564, 0.53538, 0.46804, 0.58763, 0.42034, 0.71975, 0.31117, 0.84863, 0.28387, 0.92919, 0.38281, 0.95174, 0.51246, 0.92597, 0.60116, 0.88086, 0.7001, 0.83897, 0.82293, 0.75197, 0.91504, 0.64886, 0.9594, 0.51997, 0.94234, 0.44486, 0.93219, 0.36853, 0.92187, 0.29764, 0.87069, 0.17842, 0.80587, 0.12042, 0.68305, 0.09154, 0.6391, 0.06886, 0.60458, 0.03664, 0.46811, 0.0463, 0.33846, 0.07853, 0.2054 ],
  707. "triangles": [ 19, 20, 18, 9, 17, 18, 8, 20, 21, 9, 16, 17, 18, 20, 9, 9, 20, 8, 16, 9, 10, 16, 10, 15, 14, 15, 10, 10, 11, 14, 14, 11, 13, 13, 11, 12, 8, 21, 23, 8, 23, 7, 23, 21, 22, 23, 24, 7, 24, 25, 7, 25, 26, 7, 26, 6, 7, 6, 27, 5, 6, 26, 27, 5, 28, 4, 3, 4, 29, 3, 29, 30, 3, 30, 1, 30, 0, 1, 28, 5, 27, 28, 29, 4, 3, 1, 2 ],
  708. "vertices": [ 1, 22, 16.39, 2.27, 1, 2, 22, 15.91, -3.36, 0.99988, 21, 21.34, -12.11, 1.0E-4, 3, 22, 12.46, -5.36, 0.9997, 21, 17.38, -11.68, 2.6E-4, 20, 6.58, -19.05, 1.0E-5, 3, 22, 10.45, -4.97, 0.99967, 21, 15.98, -10.18, 3.0E-4, 20, 7.83, -17.44, 1.0E-5, 1, 22, 7.58, -4.53, 1, 3, 22, 4.37, -4.62, 0.88929, 21, 11.28, -6.31, 0.10092, 20, 10.88, -12.17, 0.00978, 3, 22, 3.16, -5.13, 0.72128, 21, 10, -6.01, 0.2483, 20, 10.97, -10.85, 0.0304, 3, 22, 1.29, -5.91, 0.35499, 21, 8.03, -5.53, 0.51095, 20, 11.11, -8.83, 0.13404, 3, 22, 0.03, -8.74, 0.05926, 21, 5.35, -7.08, 0.32597, 20, 9.15, -6.43, 0.61476, 3, 22, 1, -10.44, 0.01289, 21, 5.13, -9.02, 0.13195, 20, 7.19, -6.54, 0.85515, 3, 22, 2.24, -12.6, 5.6E-4, 21, 4.85, -11.49, 0.03168, 20, 4.71, -6.67, 0.96774, 1, 20, -1.31, -6.7, 1, 1, 20, -5.55, -4.6, 0.99999, 1, 20, -5.79, -0.16, 0.99999, 1, 20, -3.73, 3.81, 0.99999, 1, 20, -1.15, 5.63, 0.99999, 1, 20, 2.18, 7.3, 0.99999, 1, 20, 5.92, 9.68, 0.99999, 1, 20, 10.32, 10.24, 1, 2, 21, -9.22, 0.43, 0.02026, 20, 14.18, 9.17, 0.97972, 2, 21, -5.43, 3.16, 0.23246, 20, 17.49, 5.87, 0.76753, 2, 21, -3.21, 4.75, 0.53478, 20, 19.42, 3.95, 0.46521, 2, 21, -0.96, 6.36, 0.79266, 20, 21.38, 1.99, 0.20733, 2, 21, 2.09, 6.82, 0.95223, 20, 22.34, -0.94, 0.04776, 2, 22, -7.83, 4.34, 0.02752, 21, 6.73, 8.13, 0.97247, 2, 22, -3.33, 5.6, 0.28544, 21, 11.1, 6.49, 0.71455, 2, 22, -1.67, 6.34, 0.48155, 21, 12.88, 6.1, 0.51844, 2, 22, -0.36, 6.92, 0.61674, 21, 14.28, 5.8, 0.38325, 2, 22, 4.41, 7.18, 0.9363, 21, 18.29, 3.19, 0.06369, 1, 22, 8.67, 6, 1, 1, 22, 12.89, 4, 1 ],
  709. "hull": 31,
  710. "edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 14, 16, 20, 22, 22, 24, 24, 26, 26, 28, 28, 30, 30, 32, 32, 34, 34, 36, 36, 38, 38, 40, 44, 46, 46, 48, 48, 50, 54, 56, 56, 58, 58, 60, 0, 60, 40, 42, 42, 44, 16, 42, 16, 18, 18, 20, 18, 40, 54, 10, 50, 14, 50, 52, 52, 54, 10, 12, 12, 14, 52, 12 ],
  711. "width": 36,
  712. "height": 34
  713. }
  714. },
  715. "tou_front": {
  716. "tou_front": {
  717. "type": "mesh",
  718. "uvs": [ 0.10198, 0.91889, 0, 0.87085, 0, 0.62199, 0.04092, 0.3867, 0.15438, 0.16046, 0.26469, 0.05639, 0.43488, 0, 0.63029, 0.01115, 0.79733, 0.11974, 0.93285, 0.30978, 1, 0.53602, 1, 0.85275, 0.88873, 0.95229, 0.7406, 1, 0.50737, 1, 0.40841, 1, 0.27414, 1, 0.24263, 0.68986, 0.53889, 0.68081, 0.77842, 0.64461, 0.24893, 0.41385, 0.54834, 0.41837, 0.2773, 0.17856, 0.57057, 0.23726, 0.71943, 0.37006, 0.40717, 0.20456, 0.38944, 0.41597, 0.40827, 0.6848, 0.12125, 0.65591 ],
  719. "triangles": [ 14, 18, 13, 13, 19, 12, 13, 18, 19, 18, 14, 27, 16, 27, 15, 14, 15, 27, 12, 19, 11, 19, 10, 11, 10, 19, 24, 0, 17, 16, 16, 17, 27, 0, 28, 17, 0, 1, 28, 1, 2, 28, 17, 26, 27, 17, 20, 26, 17, 28, 20, 18, 27, 21, 18, 21, 19, 21, 27, 26, 2, 3, 28, 28, 3, 20, 21, 24, 19, 10, 24, 9, 21, 23, 24, 21, 26, 23, 26, 25, 23, 26, 20, 25, 3, 4, 20, 20, 22, 25, 20, 4, 22, 24, 8, 9, 24, 23, 8, 25, 6, 23, 23, 7, 8, 23, 6, 7, 6, 25, 5, 4, 5, 22, 25, 22, 5 ],
  720. "vertices": [ 2, 50, -25.75, 59.06, 0.73025, 49, 35.08, 58.17, 0.26975, 2, 50, -19.8, 73.39, 0.79079, 49, 39.16, 73.13, 0.20921, 2, 50, 5.69, 71.17, 0.87997, 49, 64.73, 74.18, 0.12003, 2, 50, 28.86, 63.2, 0.96569, 49, 88.71, 69.22, 0.03431, 2, 50, 50.19, 44.83, 0.99947, 49, 112.22, 53.71, 5.3E-4, 1, 50, 59.28, 27.99, 1, 1, 50, 62.82, 2.91, 1, 2, 50, 59.24, -25.22, 0.9582, 49, 130.1, -14.62, 0.0418, 2, 50, 46.22, -48.4, 0.79941, 49, 120.13, -39.27, 0.20059, 2, 50, 25.39, -66.32, 0.54505, 49, 101.76, -59.69, 0.45495, 2, 50, 1.78, -74.03, 0.31374, 49, 79.32, -70.35, 0.68626, 2, 50, -30.09, -71.26, 0.10776, 49, 47.36, -71.65, 0.89224, 2, 50, -38.7, -54.32, 0.05724, 49, 36.65, -55.94, 0.94276, 2, 50, -41.64, -32.5, 0.0076, 49, 30.96, -34.68, 0.9924, 1, 49, 29.58, -0.89, 1, 2, 50, -37.47, 15.48, 0.14319, 49, 29, 13.45, 0.85681, 2, 50, -35.78, 34.88, 0.44737, 49, 28.2, 32.9, 0.55263, 2, 50, -4.18, 36.72, 0.79366, 49, 59.31, 38.75, 0.20634, 2, 50, -6.99, -6.16, 0.30989, 49, 61.98, -4.14, 0.69011, 2, 50, -6.36, -41.08, 0.27018, 49, 67.05, -38.69, 0.72982, 2, 50, 23.51, 33.39, 0.98472, 49, 87.21, 38.97, 0.01528, 2, 50, 19.29, -9.82, 0.94936, 49, 88.52, -4.43, 0.05064, 1, 50, 46.83, 27.24, 1, 2, 50, 37.24, -14.62, 0.96373, 49, 106.93, -6.9, 0.03627, 2, 50, 22.01, -34.96, 0.71636, 49, 94.41, -29.01, 0.28364, 1, 50, 42.58, 8.7, 1, 2, 50, 21.53, 13.11, 0.99969, 49, 87.82, 18.61, 3.1E-4, 2, 50, -5.75, 12.75, 0.75326, 49, 60.81, 14.77, 0.24674, 2, 50, 0.76, 53.95, 0.85709, 49, 62.02, 56.47, 0.14291 ],
  721. "hull": 17,
  722. "edges": [ 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, 36, 38, 38, 20, 6, 40, 46, 16, 18, 48, 48, 42, 44, 50, 50, 46, 40, 52, 52, 42, 34, 54, 54, 36, 28, 30, 30, 32, 2, 0, 0, 32, 4, 56, 56, 34 ],
  723. "width": 145,
  724. "height": 101
  725. }
  726. },
  727. "tx2": {
  728. "down_28": { "y": -0.5, "rotation": -92.74, "width": 290, "height": 113 },
  729. "down_30": {
  730. "x": 0.34,
  731. "y": 18.91,
  732. "scaleX": 0.925,
  733. "scaleY": 0.915,
  734. "rotation": -91.04,
  735. "width": 290,
  736. "height": 113
  737. },
  738. "down_32": { "x": -1.84, "y": 28.41, "rotation": -91.04, "width": 290, "height": 113 },
  739. "down_34": { "x": -1.84, "y": 28.41, "rotation": -91.04, "width": 290, "height": 113 }
  740. },
  741. "tx3": {
  742. "down_28": { "width": 290, "height": 113 },
  743. "down_30": { "width": 290, "height": 113 },
  744. "down_32": { "width": 290, "height": 113 },
  745. "down_34": { "width": 290, "height": 113 }
  746. },
  747. "wuqi_front": {
  748. "wuqi_front": {
  749. "type": "mesh",
  750. "uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
  751. "triangles": [ 1, 2, 3, 1, 3, 0 ],
  752. "vertices": [ 9.04, -96.43, -73.96, -59.12, -11.64, 79.52, 71.36, 42.21 ],
  753. "hull": 4,
  754. "edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
  755. "width": 91,
  756. "height": 152
  757. }
  758. },
  759. "yanjin_front": {
  760. "yanjin_front": { "x": -16.45, "y": 5.9, "rotation": -94.97, "width": 129, "height": 30 }
  761. },
  762. "yanjing_front": {
  763. "yanjing_front": { "x": -16.56, "y": 6.28, "rotation": -94.97, "width": 66, "height": 21 }
  764. },
  765. "yanzhu": {
  766. "yanzhu": { "x": -1.27, "y": 0.66, "rotation": -138.01, "width": 11, "height": 11 }
  767. },
  768. "yanzhu2": {
  769. "yanzhu2": { "x": -2.19, "y": 1.04, "rotation": -61.76, "width": 11, "height": 11 }
  770. },
  771. "yanzhu3": {
  772. "yanzhu3": { "x": 2.88, "y": 7.52, "rotation": -94.92, "width": 10, "height": 10 }
  773. }
  774. }
  775. },
  776. "events": {
  777. "hit1": {}
  778. },
  779. "animations": {
  780. "attack_down": {
  781. "slots": {
  782. "arm": {
  783. "attachment": [
  784. { "time": 0, "name": null }
  785. ]
  786. },
  787. "arm2": {
  788. "attachment": [
  789. { "time": 0, "name": null }
  790. ]
  791. },
  792. "body1": {
  793. "attachment": [
  794. { "time": 0, "name": null }
  795. ]
  796. },
  797. "body_back": {
  798. "attachment": [
  799. { "time": 0, "name": null }
  800. ]
  801. },
  802. "eye": {
  803. "attachment": [
  804. { "time": 0, "name": null }
  805. ]
  806. },
  807. "eye1": {
  808. "attachment": [
  809. { "time": 0, "name": null }
  810. ]
  811. },
  812. "eye1_back": {
  813. "attachment": [
  814. { "time": 0, "name": null }
  815. ]
  816. },
  817. "eye2": {
  818. "attachment": [
  819. { "time": 0, "name": null }
  820. ]
  821. },
  822. "eye2_back": {
  823. "attachment": [
  824. { "time": 0, "name": null }
  825. ]
  826. },
  827. "face": {
  828. "attachment": [
  829. { "time": 0, "name": null }
  830. ]
  831. },
  832. "feet": {
  833. "attachment": [
  834. { "time": 0, "name": null }
  835. ]
  836. },
  837. "feet1": {
  838. "attachment": [
  839. { "time": 0, "name": null }
  840. ]
  841. },
  842. "gun": {
  843. "attachment": [
  844. { "time": 0, "name": null }
  845. ]
  846. },
  847. "hand": {
  848. "attachment": [
  849. { "time": 0, "name": null }
  850. ]
  851. },
  852. "hand1": {
  853. "attachment": [
  854. { "time": 0, "name": null }
  855. ]
  856. },
  857. "jian_back": {
  858. "attachment": [
  859. { "time": 0, "name": null }
  860. ]
  861. },
  862. "left arm_back": {
  863. "attachment": [
  864. { "time": 0, "name": null }
  865. ]
  866. },
  867. "left feet_back": {
  868. "attachment": [
  869. { "time": 0, "name": null }
  870. ]
  871. },
  872. "left hand_back": {
  873. "attachment": [
  874. { "time": 0, "name": null }
  875. ]
  876. },
  877. "meimao": {
  878. "attachment": [
  879. { "time": 0, "name": null }
  880. ]
  881. },
  882. "meimao2": {
  883. "attachment": [
  884. { "time": 0, "name": null }
  885. ]
  886. },
  887. "mouth": {
  888. "attachment": [
  889. { "time": 0, "name": null }
  890. ]
  891. },
  892. "nose": {
  893. "attachment": [
  894. { "time": 0, "name": null }
  895. ]
  896. },
  897. "right arm_back": {
  898. "attachment": [
  899. { "time": 0, "name": null }
  900. ]
  901. },
  902. "right feet_back": {
  903. "attachment": [
  904. { "time": 0, "name": null }
  905. ]
  906. },
  907. "right hand_back": {
  908. "attachment": [
  909. { "time": 0, "name": null }
  910. ]
  911. },
  912. "tail": {
  913. "attachment": [
  914. { "time": 0, "name": null }
  915. ]
  916. },
  917. "tail_back": {
  918. "attachment": [
  919. { "time": 0, "name": null }
  920. ]
  921. },
  922. "tx3": {
  923. "color": [
  924. { "time": 0.4, "color": "ffffffff" },
  925. { "time": 0.4667, "color": "ffffff01" }
  926. ],
  927. "attachment": [
  928. { "time": 0.1667, "name": "down_28" },
  929. { "time": 0.2333, "name": "down_30" },
  930. { "time": 0.2667, "name": "down_32" },
  931. { "time": 0.3333, "name": "down_34" }
  932. ]
  933. },
  934. "yanzhu": {
  935. "attachment": [
  936. { "time": 0, "name": null }
  937. ]
  938. },
  939. "yanzhu2": {
  940. "attachment": [
  941. { "time": 0, "name": null }
  942. ]
  943. },
  944. "yanzhu3": {
  945. "attachment": [
  946. { "time": 0, "name": null }
  947. ]
  948. }
  949. },
  950. "bones": {
  951. "tx3": {
  952. "rotate": [
  953. { "time": 0.1667, "angle": -18.19 },
  954. { "time": 0.2, "angle": -18.89 }
  955. ],
  956. "translate": [
  957. { "time": 0.1667, "x": -6.19, "y": 20.47 },
  958. { "time": 0.2, "x": -1.22, "y": 4.4 },
  959. { "time": 0.2333, "x": -52.45, "y": -85 },
  960. { "time": 0.2667, "x": -106.5, "y": -169.5 },
  961. { "time": 0.4, "x": -150.61, "y": -296.85 },
  962. { "time": 0.4667, "x": -187.32, "y": -457.29 }
  963. ],
  964. "scale": [
  965. { "time": 0.1667, "x": 0.76, "y": 1.149 },
  966. { "time": 0.2, "x": 1.118, "y": 0.82 },
  967. { "time": 0.2333, "x": 1.407, "y": 0.862 },
  968. { "time": 0.2667, "x": 1.657, "y": 1.037 }
  969. ]
  970. },
  971. "lefthand_front": {
  972. "rotate": [
  973. { "time": 0, "angle": 1.75 }
  974. ],
  975. "translate": [
  976. { "time": 0, "x": 0, "y": 0 },
  977. { "time": 0.1333, "x": 7.05, "y": 0.37 },
  978. { "time": 0.2, "x": 87.84, "y": -27.05 },
  979. { "time": 0.2667, "x": 36.9, "y": -21.1, "curve": "stepped" },
  980. { "time": 0.4, "x": 36.9, "y": -21.1 },
  981. { "time": 0.4667, "x": 38.61, "y": -17.32 },
  982. { "time": 0.5333, "x": 0, "y": 0 }
  983. ]
  984. },
  985. "lefthand__front": {
  986. "rotate": [
  987. { "time": 0, "angle": 0 },
  988. { "time": 0.1333, "angle": 7.55 },
  989. { "time": 0.2, "angle": 0 },
  990. { "time": 0.2667, "angle": 7.21, "curve": "stepped" },
  991. { "time": 0.4333, "angle": 7.21 },
  992. { "time": 0.5333, "angle": 0 }
  993. ]
  994. },
  995. "leftyanzhu_front": {
  996. "rotate": [
  997. { "time": 0, "angle": 0 },
  998. { "time": 0.1333, "angle": -26.65 },
  999. { "time": 0.2333, "angle": 10.74 },
  1000. { "time": 0.3333, "angle": -3.82 },
  1001. { "time": 0.4, "angle": 8.48 },
  1002. { "time": 0.5333, "angle": 0 }
  1003. ],
  1004. "translate": [
  1005. { "time": 0, "x": 0, "y": 0 },
  1006. { "time": 0.1333, "x": -2.32, "y": -4.45 },
  1007. { "time": 0.2333, "x": 1.8, "y": 0.38 },
  1008. { "time": 0.3333, "x": 2.31, "y": -1.84 },
  1009. { "time": 0.4, "x": 2.17, "y": 0.38 },
  1010. { "time": 0.5333, "x": 0, "y": 0 }
  1011. ]
  1012. },
  1013. "left_front": {
  1014. "rotate": [
  1015. { "time": 0, "angle": -1.47 },
  1016. { "time": 0.1333, "angle": 4.63 },
  1017. { "time": 0.2333, "angle": -7.08 },
  1018. { "time": 0.3333, "angle": 4.28 },
  1019. { "time": 0.4, "angle": -5.6 },
  1020. { "time": 0.5333, "angle": -1.47 }
  1021. ]
  1022. },
  1023. "rightyanzhu_front": {
  1024. "rotate": [
  1025. { "time": 0, "angle": 0 },
  1026. { "time": 0.1333, "angle": 22.38 },
  1027. { "time": 0.2333, "angle": -7.64 },
  1028. { "time": 0.3333, "angle": 31.99 },
  1029. { "time": 0.4, "angle": -5.81 },
  1030. { "time": 0.5333, "angle": 0 }
  1031. ],
  1032. "translate": [
  1033. { "time": 0, "x": 0, "y": 0 },
  1034. { "time": 0.1333, "x": -0.19, "y": 5.57 },
  1035. { "time": 0.2333, "x": 1.72, "y": -1.79 },
  1036. { "time": 0.3333, "x": -0.06, "y": 1.39 },
  1037. { "time": 0.4, "x": 1.18, "y": -5.45 },
  1038. { "time": 0.5333, "x": 0, "y": 0 }
  1039. ]
  1040. },
  1041. "right_front": {
  1042. "rotate": [
  1043. { "time": 0, "angle": -14.66 }
  1044. ],
  1045. "translate": [
  1046. { "time": 0, "x": -6.29, "y": -2.66 },
  1047. { "time": 0.2667, "x": -13.7, "y": -6.98 },
  1048. { "time": 0.4, "x": -6.29, "y": -2.66 }
  1049. ]
  1050. },
  1051. "ringt_front": {
  1052. "rotate": [
  1053. { "time": 0, "angle": 1.51 },
  1054. { "time": 0.1333, "angle": -4 },
  1055. { "time": 0.2333, "angle": 5.64 },
  1056. { "time": 0.3333, "angle": -4.38 },
  1057. { "time": 0.4, "angle": 10.72 },
  1058. { "time": 0.5333, "angle": 1.51 }
  1059. ]
  1060. },
  1061. "tou_front": {
  1062. "translate": [
  1063. { "time": 0, "x": 0, "y": 0 },
  1064. { "time": 0.1333, "x": -10.07, "y": -0.41 },
  1065. { "time": 0.2333, "x": 2.21, "y": -4.3 },
  1066. { "time": 0.3333, "x": -4.98, "y": -3.87 },
  1067. { "time": 0.4, "x": 0, "y": 0 }
  1068. ]
  1069. },
  1070. "k3": {
  1071. "rotate": [
  1072. { "time": 0, "angle": -15.98 },
  1073. { "time": 0.1333, "angle": -20.86 },
  1074. { "time": 0.2, "angle": -14.6 },
  1075. { "time": 0.2667, "angle": -17.64, "curve": "stepped" },
  1076. { "time": 0.4333, "angle": -17.64, "curve": "stepped" },
  1077. { "time": 0.5333, "angle": -15.98 }
  1078. ],
  1079. "translate": [
  1080. { "time": 0, "x": 6.81, "y": -0.42 },
  1081. { "time": 0.1333, "x": -10.66, "y": -15.97 },
  1082. { "time": 0.2, "x": 29.29, "y": 86.14 },
  1083. { "time": 0.2667, "x": -61.54, "y": -70.5, "curve": "stepped" },
  1084. { "time": 0.4333, "x": -61.54, "y": -70.5, "curve": "stepped" },
  1085. { "time": 0.5333, "x": 6.81, "y": -0.42 }
  1086. ]
  1087. },
  1088. "bone_left": {
  1089. "translate": [
  1090. { "time": 0, "x": 581.94, "y": 0 }
  1091. ]
  1092. },
  1093. "bone10": {
  1094. "rotate": [
  1095. { "time": 0.1333, "angle": 0 },
  1096. { "time": 0.2333, "angle": 0.16 },
  1097. { "time": 0.3333, "angle": 0 }
  1098. ],
  1099. "translate": [
  1100. { "time": 0, "x": 0, "y": 0 },
  1101. { "time": 0.1333, "x": -1.44, "y": -8.64 },
  1102. { "time": 0.2333, "x": -1.44, "y": 2.88 },
  1103. { "time": 0.3333, "x": -1.44, "y": -1.44 },
  1104. { "time": 0.4, "x": 0, "y": 0 }
  1105. ]
  1106. },
  1107. "bone12": {
  1108. "rotate": [
  1109. { "time": 0, "angle": 9.33 },
  1110. { "time": 0.0667, "angle": 0 },
  1111. { "time": 0.2, "angle": 12.42 },
  1112. { "time": 0.2667, "angle": 0 },
  1113. { "time": 0.3333, "angle": 13.02, "curve": "stepped" },
  1114. { "time": 0.5, "angle": 13.02 },
  1115. { "time": 0.5333, "angle": 9.33 }
  1116. ]
  1117. },
  1118. "bone_front": {
  1119. "translate": [
  1120. { "time": 0, "x": -423.94, "y": -5.76 }
  1121. ]
  1122. }
  1123. },
  1124. "drawOrder": [
  1125. {
  1126. "time": 0.1667,
  1127. "offsets": [
  1128. { "slot": "wuqi_front", "offset": 2 },
  1129. { "slot": "lefthand_front", "offset": 2 }
  1130. ]
  1131. }
  1132. ],
  1133. "events": [
  1134. { "time": 0.2333, "name": "hit1" }
  1135. ]
  1136. },
  1137. "attack_left": {
  1138. "slots": {
  1139. "bikong_front": {
  1140. "attachment": [
  1141. { "time": 0, "name": null }
  1142. ]
  1143. },
  1144. "bingkou2_front": {
  1145. "attachment": [
  1146. { "time": 0, "name": null }
  1147. ]
  1148. },
  1149. "bingzi_front": {
  1150. "attachment": [
  1151. { "time": 0, "name": null }
  1152. ]
  1153. },
  1154. "bizi_front": {
  1155. "attachment": [
  1156. { "time": 0, "name": null }
  1157. ]
  1158. },
  1159. "body_back": {
  1160. "attachment": [
  1161. { "time": 0, "name": null }
  1162. ]
  1163. },
  1164. "body_front": {
  1165. "attachment": [
  1166. { "time": 0, "name": null }
  1167. ]
  1168. },
  1169. "eye1_back": {
  1170. "attachment": [
  1171. { "time": 0, "name": null }
  1172. ]
  1173. },
  1174. "eye2_back": {
  1175. "attachment": [
  1176. { "time": 0, "name": null }
  1177. ]
  1178. },
  1179. "jian_back": {
  1180. "attachment": [
  1181. { "time": 0, "name": null }
  1182. ]
  1183. },
  1184. "jianqi": {
  1185. "color": [
  1186. { "time": 0.3, "color": "ffffffff" },
  1187. { "time": 0.4, "color": "ffffff01" }
  1188. ],
  1189. "attachment": [
  1190. { "time": 0.2, "name": "down_28" },
  1191. { "time": 0.2667, "name": "down_30" },
  1192. { "time": 0.3, "name": "down_32" },
  1193. { "time": 0.3333, "name": "down_34" }
  1194. ]
  1195. },
  1196. "left arm_back": {
  1197. "attachment": [
  1198. { "time": 0, "name": null }
  1199. ]
  1200. },
  1201. "left feet_back": {
  1202. "attachment": [
  1203. { "time": 0, "name": null }
  1204. ]
  1205. },
  1206. "left hand_back": {
  1207. "attachment": [
  1208. { "time": 0, "name": null }
  1209. ]
  1210. },
  1211. "left_front": {
  1212. "attachment": [
  1213. { "time": 0, "name": null }
  1214. ]
  1215. },
  1216. "lefthand__front": {
  1217. "attachment": [
  1218. { "time": 0, "name": null }
  1219. ]
  1220. },
  1221. "lefthand_front": {
  1222. "attachment": [
  1223. { "time": 0, "name": null }
  1224. ]
  1225. },
  1226. "leftleg_front": {
  1227. "attachment": [
  1228. { "time": 0, "name": null }
  1229. ]
  1230. },
  1231. "leftyanzhu_front": {
  1232. "attachment": [
  1233. { "time": 0, "name": null }
  1234. ]
  1235. },
  1236. "lian_front": {
  1237. "attachment": [
  1238. { "time": 0, "name": null }
  1239. ]
  1240. },
  1241. "right arm_back": {
  1242. "attachment": [
  1243. { "time": 0, "name": null }
  1244. ]
  1245. },
  1246. "right feet_back": {
  1247. "attachment": [
  1248. { "time": 0, "name": null }
  1249. ]
  1250. },
  1251. "right hand_back": {
  1252. "attachment": [
  1253. { "time": 0, "name": null }
  1254. ]
  1255. },
  1256. "right_front": {
  1257. "attachment": [
  1258. { "time": 0, "name": null }
  1259. ]
  1260. },
  1261. "rightleg_front": {
  1262. "attachment": [
  1263. { "time": 0, "name": null }
  1264. ]
  1265. },
  1266. "rightyanzhu_front": {
  1267. "attachment": [
  1268. { "time": 0, "name": null }
  1269. ]
  1270. },
  1271. "ringt_front": {
  1272. "attachment": [
  1273. { "time": 0, "name": null }
  1274. ]
  1275. },
  1276. "tail_back": {
  1277. "attachment": [
  1278. { "time": 0, "name": null }
  1279. ]
  1280. },
  1281. "tou_front": {
  1282. "attachment": [
  1283. { "time": 0, "name": null }
  1284. ]
  1285. },
  1286. "wuqi_front": {
  1287. "attachment": [
  1288. { "time": 0, "name": null }
  1289. ]
  1290. },
  1291. "yanjin_front": {
  1292. "attachment": [
  1293. { "time": 0, "name": null }
  1294. ]
  1295. },
  1296. "yanjing_front": {
  1297. "attachment": [
  1298. { "time": 0, "name": null }
  1299. ]
  1300. }
  1301. },
  1302. "bones": {
  1303. "tx": {
  1304. "rotate": [
  1305. { "time": 0.2333, "angle": -4.05 },
  1306. { "time": 0.2667, "angle": -5.17 },
  1307. { "time": 0.3, "angle": 2.54 },
  1308. { "time": 0.3333, "angle": 8.24 },
  1309. { "time": 0.3667, "angle": 14.11 }
  1310. ],
  1311. "translate": [
  1312. { "time": 0.2, "x": 0, "y": 0 },
  1313. { "time": 0.2333, "x": -82.56, "y": 35.75 },
  1314. { "time": 0.2667, "x": -32.64, "y": 12.09 },
  1315. { "time": 0.3, "x": -259.03, "y": 118.47 },
  1316. { "time": 0.3333, "x": -263.13, "y": 84.44 },
  1317. { "time": 0.3667, "x": -375.91, "y": 62.38 },
  1318. { "time": 0.4, "x": -383.64, "y": 25.81 }
  1319. ],
  1320. "scale": [
  1321. { "time": 0.2, "x": 1.083, "y": 1.1 },
  1322. { "time": 0.2333, "x": 1.254, "y": 0.677 },
  1323. { "time": 0.2667, "x": 1.083, "y": 1.1 },
  1324. { "time": 0.3, "x": 1.713, "y": 0.587 }
  1325. ]
  1326. },
  1327. "root": {
  1328. "translate": [
  1329. { "time": 0, "x": 0, "y": -1.07 }
  1330. ]
  1331. },
  1332. "bone": {
  1333. "translate": [
  1334. { "time": 0, "x": 0, "y": 0 },
  1335. { "time": 0.1667, "x": 3.21, "y": 3.21 },
  1336. { "time": 0.2333, "x": 9.29, "y": 5.01 },
  1337. { "time": 0.3, "x": -5.16, "y": 3.97 },
  1338. { "time": 0.4, "x": 0, "y": 0 }
  1339. ]
  1340. },
  1341. "bone2": {
  1342. "rotate": [
  1343. { "time": 0, "angle": 0.76 },
  1344. { "time": 0.1667, "angle": -2.19 },
  1345. { "time": 0.2333, "angle": -7.9 },
  1346. { "time": 0.3333, "angle": -6.55 },
  1347. { "time": 0.4, "angle": 0.76 }
  1348. ],
  1349. "translate": [
  1350. { "time": 0, "x": -0.58, "y": 0.25 },
  1351. { "time": 0.1333, "x": 2.55, "y": -0.41 },
  1352. { "time": 0.3, "x": -0.16, "y": 3.44 },
  1353. { "time": 0.4, "x": -0.58, "y": 0.25 }
  1354. ]
  1355. },
  1356. "face": {
  1357. "rotate": [
  1358. { "time": 0, "angle": 0 },
  1359. { "time": 0.1333, "angle": 5.02 },
  1360. { "time": 0.2333, "angle": -5.27 },
  1361. { "time": 0.3667, "angle": 0 }
  1362. ]
  1363. },
  1364. "meimao": {
  1365. "rotate": [
  1366. { "time": 0, "angle": 0 },
  1367. { "time": 0.1333, "angle": -8.17 },
  1368. { "time": 0.2333, "angle": 9.05 },
  1369. { "time": 0.3667, "angle": 0 }
  1370. ]
  1371. },
  1372. "K1": {
  1373. "rotate": [
  1374. { "time": 0, "angle": 1.44 },
  1375. { "time": 0.1333, "angle": 25.53 },
  1376. { "time": 0.2, "angle": 23.57 },
  1377. { "time": 0.2667, "angle": 24.14 },
  1378. { "time": 0.3, "angle": 19.86 },
  1379. { "time": 0.4, "angle": 1.44 }
  1380. ],
  1381. "translate": [
  1382. { "time": 0, "x": 1.96, "y": -0.36 },
  1383. { "time": 0.1333, "x": 3.46, "y": -3.51 },
  1384. { "time": 0.2, "x": 88.82, "y": 2.09 },
  1385. { "time": 0.2667, "x": -36.98, "y": 40.83 },
  1386. { "time": 0.3, "x": 33.24, "y": -3.75 },
  1387. { "time": 0.4, "x": 1.96, "y": -0.36 }
  1388. ],
  1389. "scale": [
  1390. { "time": 0.2, "x": 1, "y": 1 },
  1391. { "time": 0.2667, "x": 1.4, "y": 1.2 },
  1392. { "time": 0.3, "x": 1, "y": 1 }
  1393. ]
  1394. },
  1395. "arm2": {
  1396. "rotate": [
  1397. { "time": 0, "angle": 0.68 }
  1398. ]
  1399. },
  1400. "hand1": {
  1401. "rotate": [
  1402. { "time": 0, "angle": -2.25 }
  1403. ]
  1404. },
  1405. "eye2": {
  1406. "rotate": [
  1407. { "time": 0, "angle": -3.9 },
  1408. { "time": 0.1333, "angle": 4.94 },
  1409. { "time": 0.2333, "angle": -14.28 },
  1410. { "time": 0.3667, "angle": -3.9 }
  1411. ]
  1412. },
  1413. "eye1": {
  1414. "rotate": [
  1415. { "time": 0, "angle": -4.73 },
  1416. { "time": 0.1333, "angle": 3.26 },
  1417. { "time": 0.2333, "angle": -6.87 },
  1418. { "time": 0.3667, "angle": -4.73 }
  1419. ]
  1420. },
  1421. "tail": {
  1422. "rotate": [
  1423. { "time": 0, "angle": -5.26 },
  1424. { "time": 0.2333, "angle": -16.04 },
  1425. { "time": 0.3, "angle": -27.14 },
  1426. { "time": 0.4, "angle": -5.26 }
  1427. ]
  1428. },
  1429. "bone3": {
  1430. "rotate": [
  1431. { "time": 0, "angle": -3.27 },
  1432. { "time": 0.2333, "angle": -14.05 },
  1433. { "time": 0.3, "angle": -25.15 },
  1434. { "time": 0.4, "angle": -3.27 }
  1435. ]
  1436. },
  1437. "bone4": {
  1438. "rotate": [
  1439. { "time": 0, "angle": 1.87 },
  1440. { "time": 0.2333, "angle": -8.91 },
  1441. { "time": 0.3, "angle": -20.01 },
  1442. { "time": 0.4, "angle": 1.87 }
  1443. ]
  1444. },
  1445. "yanzhu": {
  1446. "rotate": [
  1447. { "time": 0.1333, "angle": 0 },
  1448. { "time": 0.2333, "angle": -13.59 },
  1449. { "time": 0.3667, "angle": 0 }
  1450. ],
  1451. "translate": [
  1452. { "time": 0.1333, "x": 0, "y": 0 },
  1453. { "time": 0.2333, "x": -1.43, "y": -6.81 },
  1454. { "time": 0.3667, "x": 0, "y": 0 }
  1455. ]
  1456. },
  1457. "yanzhu2": {
  1458. "rotate": [
  1459. { "time": 0.1333, "angle": 0 },
  1460. { "time": 0.2333, "angle": -75.63 },
  1461. { "time": 0.3667, "angle": 0 }
  1462. ],
  1463. "translate": [
  1464. { "time": 0.1333, "x": 0, "y": 0 },
  1465. { "time": 0.2333, "x": -0.57, "y": -4.26 },
  1466. { "time": 0.3667, "x": 0, "y": 0 }
  1467. ]
  1468. },
  1469. "hand": {
  1470. "translate": [
  1471. { "time": 0, "x": 0, "y": 0 },
  1472. { "time": 0.2, "x": 12.31, "y": -2.18 },
  1473. { "time": 0.4, "x": 0, "y": 0 }
  1474. ]
  1475. }
  1476. },
  1477. "deform": {
  1478. "default": {
  1479. "arm": {
  1480. "arm": [
  1481. {
  1482. "time": 0,
  1483. "offset": 70,
  1484. "vertices": [ 0.63198, -1.6768, 1.21401, -1.31811 ]
  1485. },
  1486. {
  1487. "time": 0.2,
  1488. "offset": 24,
  1489. "vertices": [ 2.75357, 2.73347, 2.82231, 2.66253, 2.75357, 2.73347, 2.82231, 2.66253 ]
  1490. },
  1491. {
  1492. "time": 0.2333,
  1493. "offset": 12,
  1494. "vertices": [ -0.19679, 0.30621, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -2.14363, -1.37754, 0.71014, -2.4471, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4.17662, -3.80619, 4.83788, 2.91999, 2.53604, -5.29316, 5.79616, 0.92393, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.28414, -1.11547, 1.1502, -0.04522, 0, 0, 0, 0, 0, 0, 0, 0, -1.92588, -6.42974, 5.61522, -3.67685 ]
  1495. },
  1496. {
  1497. "time": 0.2667,
  1498. "offset": 12,
  1499. "vertices": [ -0.19679, 0.30621, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1.51292, 0.24851, 0.40383, -0.73014, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4.17662, -3.80619, 4.83788, 2.91999, 2.53604, -5.29316, 5.79616, 0.92393, -0.57799, -1.20631, 0.13321, -1.33099, 0, 0, 0, 0, 0, 0, 0.28414, -1.11547, 1.1502, -0.04522, 0, 0, 0, 0, 0, 0, 0, 0, -1.92588, -6.42974, 5.61522, -3.67685 ]
  1500. },
  1501. {
  1502. "time": 0.4,
  1503. "offset": 70,
  1504. "vertices": [ 0.63198, -1.6768, 1.21401, -1.31811 ]
  1505. }
  1506. ]
  1507. },
  1508. "jianqi": {
  1509. "down_30": [
  1510. {
  1511. "time": 0.2667,
  1512. "vertices": [ -33.83807, -23.21254, 33.25066, -24.47711, 33.83797, 23.21262, -33.25065, 24.47701 ]
  1513. }
  1514. ]
  1515. }
  1516. }
  1517. },
  1518. "events": [
  1519. { "time": 0.2333, "name": "hit1" }
  1520. ]
  1521. },
  1522. "attack_right": {
  1523. "slots": {
  1524. "bikong_front": {
  1525. "attachment": [
  1526. { "time": 0, "name": null }
  1527. ]
  1528. },
  1529. "bingkou2_front": {
  1530. "attachment": [
  1531. { "time": 0, "name": null }
  1532. ]
  1533. },
  1534. "bingzi_front": {
  1535. "attachment": [
  1536. { "time": 0, "name": null }
  1537. ]
  1538. },
  1539. "bizi_front": {
  1540. "attachment": [
  1541. { "time": 0, "name": null }
  1542. ]
  1543. },
  1544. "body_back": {
  1545. "attachment": [
  1546. { "time": 0, "name": null }
  1547. ]
  1548. },
  1549. "body_front": {
  1550. "attachment": [
  1551. { "time": 0, "name": null }
  1552. ]
  1553. },
  1554. "eye1_back": {
  1555. "attachment": [
  1556. { "time": 0, "name": null }
  1557. ]
  1558. },
  1559. "eye2_back": {
  1560. "attachment": [
  1561. { "time": 0, "name": null }
  1562. ]
  1563. },
  1564. "jian_back": {
  1565. "attachment": [
  1566. { "time": 0, "name": null }
  1567. ]
  1568. },
  1569. "jianqi": {
  1570. "color": [
  1571. { "time": 0.3, "color": "ffffffff" },
  1572. { "time": 0.4, "color": "ffffff01" }
  1573. ],
  1574. "attachment": [
  1575. { "time": 0.2, "name": "down_28" },
  1576. { "time": 0.2667, "name": "down_30" },
  1577. { "time": 0.3, "name": "down_32" },
  1578. { "time": 0.3333, "name": "down_34" }
  1579. ]
  1580. },
  1581. "left arm_back": {
  1582. "attachment": [
  1583. { "time": 0, "name": null }
  1584. ]
  1585. },
  1586. "left feet_back": {
  1587. "attachment": [
  1588. { "time": 0, "name": null }
  1589. ]
  1590. },
  1591. "left hand_back": {
  1592. "attachment": [
  1593. { "time": 0, "name": null }
  1594. ]
  1595. },
  1596. "left_front": {
  1597. "attachment": [
  1598. { "time": 0, "name": null }
  1599. ]
  1600. },
  1601. "lefthand__front": {
  1602. "attachment": [
  1603. { "time": 0, "name": null }
  1604. ]
  1605. },
  1606. "lefthand_front": {
  1607. "attachment": [
  1608. { "time": 0, "name": null }
  1609. ]
  1610. },
  1611. "leftleg_front": {
  1612. "attachment": [
  1613. { "time": 0, "name": null }
  1614. ]
  1615. },
  1616. "leftyanzhu_front": {
  1617. "attachment": [
  1618. { "time": 0, "name": null }
  1619. ]
  1620. },
  1621. "lian_front": {
  1622. "attachment": [
  1623. { "time": 0, "name": null }
  1624. ]
  1625. },
  1626. "right arm_back": {
  1627. "attachment": [
  1628. { "time": 0, "name": null }
  1629. ]
  1630. },
  1631. "right feet_back": {
  1632. "attachment": [
  1633. { "time": 0, "name": null }
  1634. ]
  1635. },
  1636. "right hand_back": {
  1637. "attachment": [
  1638. { "time": 0, "name": null }
  1639. ]
  1640. },
  1641. "right_front": {
  1642. "attachment": [
  1643. { "time": 0, "name": null }
  1644. ]
  1645. },
  1646. "rightleg_front": {
  1647. "attachment": [
  1648. { "time": 0, "name": null }
  1649. ]
  1650. },
  1651. "rightyanzhu_front": {
  1652. "attachment": [
  1653. { "time": 0, "name": null }
  1654. ]
  1655. },
  1656. "ringt_front": {
  1657. "attachment": [
  1658. { "time": 0, "name": null }
  1659. ]
  1660. },
  1661. "tail_back": {
  1662. "attachment": [
  1663. { "time": 0, "name": null }
  1664. ]
  1665. },
  1666. "tou_front": {
  1667. "attachment": [
  1668. { "time": 0, "name": null }
  1669. ]
  1670. },
  1671. "wuqi_front": {
  1672. "attachment": [
  1673. { "time": 0, "name": null }
  1674. ]
  1675. },
  1676. "yanjin_front": {
  1677. "attachment": [
  1678. { "time": 0, "name": null }
  1679. ]
  1680. },
  1681. "yanjing_front": {
  1682. "attachment": [
  1683. { "time": 0, "name": null }
  1684. ]
  1685. }
  1686. },
  1687. "bones": {
  1688. "tx": {
  1689. "rotate": [
  1690. { "time": 0.2333, "angle": -4.05 },
  1691. { "time": 0.2667, "angle": -5.17 },
  1692. { "time": 0.3, "angle": 2.54 },
  1693. { "time": 0.3333, "angle": 8.24 },
  1694. { "time": 0.3667, "angle": 14.11 }
  1695. ],
  1696. "translate": [
  1697. { "time": 0.2, "x": 0, "y": 0 },
  1698. { "time": 0.2333, "x": -82.56, "y": 35.75 },
  1699. { "time": 0.2667, "x": -32.64, "y": 12.09 },
  1700. { "time": 0.3, "x": -259.03, "y": 118.47 },
  1701. { "time": 0.3333, "x": -263.13, "y": 84.44 },
  1702. { "time": 0.3667, "x": -375.91, "y": 62.38 },
  1703. { "time": 0.4, "x": -383.64, "y": 25.81 }
  1704. ],
  1705. "scale": [
  1706. { "time": 0.2, "x": 1.083, "y": 1.1 },
  1707. { "time": 0.2333, "x": 1.254, "y": 0.677 },
  1708. { "time": 0.2667, "x": 1.083, "y": 1.1 },
  1709. { "time": 0.3, "x": 1.713, "y": 0.587 }
  1710. ]
  1711. },
  1712. "root": {
  1713. "translate": [
  1714. { "time": 0, "x": 0, "y": -1.07 }
  1715. ]
  1716. },
  1717. "bone": {
  1718. "translate": [
  1719. { "time": 0, "x": 0, "y": 0 },
  1720. { "time": 0.1667, "x": 3.21, "y": 3.21 },
  1721. { "time": 0.2333, "x": 9.29, "y": 5.01 },
  1722. { "time": 0.3, "x": -5.16, "y": 3.97 },
  1723. { "time": 0.4, "x": 0, "y": 0 }
  1724. ]
  1725. },
  1726. "bone2": {
  1727. "rotate": [
  1728. { "time": 0, "angle": 0.76 },
  1729. { "time": 0.1667, "angle": -2.19 },
  1730. { "time": 0.2333, "angle": -7.9 },
  1731. { "time": 0.3333, "angle": -6.55 },
  1732. { "time": 0.4, "angle": 0.76 }
  1733. ],
  1734. "translate": [
  1735. { "time": 0, "x": -0.58, "y": 0.25 },
  1736. { "time": 0.1333, "x": 2.55, "y": -0.41 },
  1737. { "time": 0.3, "x": -0.16, "y": 3.44 },
  1738. { "time": 0.4, "x": -0.58, "y": 0.25 }
  1739. ]
  1740. },
  1741. "face": {
  1742. "rotate": [
  1743. { "time": 0, "angle": 0 },
  1744. { "time": 0.1333, "angle": 5.02 },
  1745. { "time": 0.2333, "angle": -5.27 },
  1746. { "time": 0.3667, "angle": 0 }
  1747. ]
  1748. },
  1749. "meimao": {
  1750. "rotate": [
  1751. { "time": 0, "angle": 0 },
  1752. { "time": 0.1333, "angle": -8.17 },
  1753. { "time": 0.2333, "angle": 9.05 },
  1754. { "time": 0.3667, "angle": 0 }
  1755. ]
  1756. },
  1757. "K1": {
  1758. "rotate": [
  1759. { "time": 0, "angle": 1.44 },
  1760. { "time": 0.1333, "angle": 25.53 },
  1761. { "time": 0.2, "angle": 23.57 },
  1762. { "time": 0.2667, "angle": 24.14 },
  1763. { "time": 0.3, "angle": 19.86 },
  1764. { "time": 0.4, "angle": 1.44 }
  1765. ],
  1766. "translate": [
  1767. { "time": 0, "x": 1.96, "y": -0.36 },
  1768. { "time": 0.1333, "x": 3.46, "y": -3.51 },
  1769. { "time": 0.2, "x": 88.82, "y": 2.09 },
  1770. { "time": 0.2667, "x": -36.98, "y": 40.83 },
  1771. { "time": 0.3, "x": 33.24, "y": -3.75 },
  1772. { "time": 0.4, "x": 1.96, "y": -0.36 }
  1773. ],
  1774. "scale": [
  1775. { "time": 0.2, "x": 1, "y": 1 },
  1776. { "time": 0.2667, "x": 1.4, "y": 1.2 },
  1777. { "time": 0.3, "x": 1, "y": 1 }
  1778. ]
  1779. },
  1780. "arm2": {
  1781. "rotate": [
  1782. { "time": 0, "angle": 0.68 }
  1783. ]
  1784. },
  1785. "hand1": {
  1786. "rotate": [
  1787. { "time": 0, "angle": -2.25 }
  1788. ]
  1789. },
  1790. "eye2": {
  1791. "rotate": [
  1792. { "time": 0, "angle": -3.9 },
  1793. { "time": 0.1333, "angle": 4.94 },
  1794. { "time": 0.2333, "angle": -14.28 },
  1795. { "time": 0.3667, "angle": -3.9 }
  1796. ]
  1797. },
  1798. "eye1": {
  1799. "rotate": [
  1800. { "time": 0, "angle": -4.73 },
  1801. { "time": 0.1333, "angle": 3.26 },
  1802. { "time": 0.2333, "angle": -6.87 },
  1803. { "time": 0.3667, "angle": -4.73 }
  1804. ]
  1805. },
  1806. "tail": {
  1807. "rotate": [
  1808. { "time": 0, "angle": -5.26 },
  1809. { "time": 0.2333, "angle": -16.04 },
  1810. { "time": 0.3, "angle": -27.14 },
  1811. { "time": 0.4, "angle": -5.26 }
  1812. ]
  1813. },
  1814. "bone3": {
  1815. "rotate": [
  1816. { "time": 0, "angle": -3.27 },
  1817. { "time": 0.2333, "angle": -14.05 },
  1818. { "time": 0.3, "angle": -25.15 },
  1819. { "time": 0.4, "angle": -3.27 }
  1820. ]
  1821. },
  1822. "bone4": {
  1823. "rotate": [
  1824. { "time": 0, "angle": 1.87 },
  1825. { "time": 0.2333, "angle": -8.91 },
  1826. { "time": 0.3, "angle": -20.01 },
  1827. { "time": 0.4, "angle": 1.87 }
  1828. ]
  1829. },
  1830. "yanzhu": {
  1831. "rotate": [
  1832. { "time": 0.1333, "angle": 0 },
  1833. { "time": 0.2333, "angle": -13.59 },
  1834. { "time": 0.3667, "angle": 0 }
  1835. ],
  1836. "translate": [
  1837. { "time": 0.1333, "x": 0, "y": 0 },
  1838. { "time": 0.2333, "x": -1.43, "y": -6.81 },
  1839. { "time": 0.3667, "x": 0, "y": 0 }
  1840. ]
  1841. },
  1842. "yanzhu2": {
  1843. "rotate": [
  1844. { "time": 0.1333, "angle": 0 },
  1845. { "time": 0.2333, "angle": -75.63 },
  1846. { "time": 0.3667, "angle": 0 }
  1847. ],
  1848. "translate": [
  1849. { "time": 0.1333, "x": 0, "y": 0 },
  1850. { "time": 0.2333, "x": -0.57, "y": -4.26 },
  1851. { "time": 0.3667, "x": 0, "y": 0 }
  1852. ]
  1853. },
  1854. "hand": {
  1855. "translate": [
  1856. { "time": 0, "x": 0, "y": 0 },
  1857. { "time": 0.2, "x": 12.31, "y": -2.18 },
  1858. { "time": 0.4, "x": 0, "y": 0 }
  1859. ]
  1860. },
  1861. "bone_left": {
  1862. "scale": [
  1863. { "time": 0, "x": -1, "y": 1 }
  1864. ]
  1865. }
  1866. },
  1867. "deform": {
  1868. "default": {
  1869. "arm": {
  1870. "arm": [
  1871. {
  1872. "time": 0,
  1873. "offset": 70,
  1874. "vertices": [ 0.63198, -1.6768, 1.21401, -1.31811 ]
  1875. },
  1876. {
  1877. "time": 0.2,
  1878. "offset": 24,
  1879. "vertices": [ 2.75357, 2.73347, 2.82231, 2.66253, 2.75357, 2.73347, 2.82231, 2.66253 ]
  1880. },
  1881. {
  1882. "time": 0.2333,
  1883. "offset": 12,
  1884. "vertices": [ -0.19679, 0.30621, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -2.14363, -1.37754, 0.71014, -2.4471, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4.17662, -3.80619, 4.83788, 2.91999, 2.53604, -5.29316, 5.79616, 0.92393, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.28414, -1.11547, 1.1502, -0.04522, 0, 0, 0, 0, 0, 0, 0, 0, -1.92588, -6.42974, 5.61522, -3.67685 ]
  1885. },
  1886. {
  1887. "time": 0.2667,
  1888. "offset": 12,
  1889. "vertices": [ -0.19679, 0.30621, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1.51292, 0.24851, 0.40383, -0.73014, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4.17662, -3.80619, 4.83788, 2.91999, 2.53604, -5.29316, 5.79616, 0.92393, -0.57799, -1.20631, 0.13321, -1.33099, 0, 0, 0, 0, 0, 0, 0.28414, -1.11547, 1.1502, -0.04522, 0, 0, 0, 0, 0, 0, 0, 0, -1.92588, -6.42974, 5.61522, -3.67685 ]
  1890. },
  1891. {
  1892. "time": 0.4,
  1893. "offset": 70,
  1894. "vertices": [ 0.63198, -1.6768, 1.21401, -1.31811 ]
  1895. }
  1896. ]
  1897. },
  1898. "jianqi": {
  1899. "down_30": [
  1900. {
  1901. "time": 0.2667,
  1902. "vertices": [ -33.83807, -23.21254, 33.25066, -24.47711, 33.83797, 23.21262, -33.25065, 24.47701 ]
  1903. }
  1904. ]
  1905. }
  1906. }
  1907. },
  1908. "events": [
  1909. { "time": 0.2333, "name": "hit1" }
  1910. ]
  1911. },
  1912. "attack_up": {
  1913. "slots": {
  1914. "arm": {
  1915. "attachment": [
  1916. { "time": 0, "name": null }
  1917. ]
  1918. },
  1919. "arm2": {
  1920. "attachment": [
  1921. { "time": 0, "name": null }
  1922. ]
  1923. },
  1924. "bikong_front": {
  1925. "attachment": [
  1926. { "time": 0, "name": null }
  1927. ]
  1928. },
  1929. "bingkou2_front": {
  1930. "attachment": [
  1931. { "time": 0, "name": null }
  1932. ]
  1933. },
  1934. "bingzi_front": {
  1935. "attachment": [
  1936. { "time": 0, "name": null }
  1937. ]
  1938. },
  1939. "bizi_front": {
  1940. "attachment": [
  1941. { "time": 0, "name": null }
  1942. ]
  1943. },
  1944. "body1": {
  1945. "attachment": [
  1946. { "time": 0, "name": null }
  1947. ]
  1948. },
  1949. "body_front": {
  1950. "attachment": [
  1951. { "time": 0, "name": null }
  1952. ]
  1953. },
  1954. "eye": {
  1955. "attachment": [
  1956. { "time": 0, "name": null }
  1957. ]
  1958. },
  1959. "eye1": {
  1960. "attachment": [
  1961. { "time": 0, "name": null }
  1962. ]
  1963. },
  1964. "eye2": {
  1965. "attachment": [
  1966. { "time": 0, "name": null }
  1967. ]
  1968. },
  1969. "face": {
  1970. "attachment": [
  1971. { "time": 0, "name": null }
  1972. ]
  1973. },
  1974. "feet": {
  1975. "attachment": [
  1976. { "time": 0, "name": null }
  1977. ]
  1978. },
  1979. "feet1": {
  1980. "attachment": [
  1981. { "time": 0, "name": null }
  1982. ]
  1983. },
  1984. "gun": {
  1985. "attachment": [
  1986. { "time": 0, "name": null }
  1987. ]
  1988. },
  1989. "hand": {
  1990. "attachment": [
  1991. { "time": 0, "name": null }
  1992. ]
  1993. },
  1994. "hand1": {
  1995. "attachment": [
  1996. { "time": 0, "name": null }
  1997. ]
  1998. },
  1999. "left_front": {
  2000. "attachment": [
  2001. { "time": 0, "name": null }
  2002. ]
  2003. },
  2004. "lefthand__front": {
  2005. "attachment": [
  2006. { "time": 0, "name": null }
  2007. ]
  2008. },
  2009. "lefthand_front": {
  2010. "attachment": [
  2011. { "time": 0, "name": null }
  2012. ]
  2013. },
  2014. "leftleg_front": {
  2015. "attachment": [
  2016. { "time": 0, "name": null }
  2017. ]
  2018. },
  2019. "leftyanzhu_front": {
  2020. "attachment": [
  2021. { "time": 0, "name": null }
  2022. ]
  2023. },
  2024. "lian_front": {
  2025. "attachment": [
  2026. { "time": 0, "name": null }
  2027. ]
  2028. },
  2029. "meimao": {
  2030. "attachment": [
  2031. { "time": 0, "name": null }
  2032. ]
  2033. },
  2034. "meimao2": {
  2035. "attachment": [
  2036. { "time": 0, "name": null }
  2037. ]
  2038. },
  2039. "mouth": {
  2040. "attachment": [
  2041. { "time": 0, "name": null }
  2042. ]
  2043. },
  2044. "nose": {
  2045. "attachment": [
  2046. { "time": 0, "name": null }
  2047. ]
  2048. },
  2049. "right_front": {
  2050. "attachment": [
  2051. { "time": 0, "name": null }
  2052. ]
  2053. },
  2054. "rightleg_front": {
  2055. "attachment": [
  2056. { "time": 0, "name": null }
  2057. ]
  2058. },
  2059. "rightyanzhu_front": {
  2060. "attachment": [
  2061. { "time": 0, "name": null }
  2062. ]
  2063. },
  2064. "ringt_front": {
  2065. "attachment": [
  2066. { "time": 0, "name": null }
  2067. ]
  2068. },
  2069. "tail": {
  2070. "attachment": [
  2071. { "time": 0, "name": null }
  2072. ]
  2073. },
  2074. "tou_front": {
  2075. "attachment": [
  2076. { "time": 0, "name": null }
  2077. ]
  2078. },
  2079. "tx2": {
  2080. "color": [
  2081. { "time": 0.2667, "color": "ffffffff" },
  2082. { "time": 0.4, "color": "ffffff00" }
  2083. ],
  2084. "attachment": [
  2085. { "time": 0.1667, "name": "down_28" },
  2086. { "time": 0.2, "name": "down_30" },
  2087. { "time": 0.2333, "name": "down_32" },
  2088. { "time": 0.2667, "name": "down_34" }
  2089. ]
  2090. },
  2091. "wuqi_front": {
  2092. "attachment": [
  2093. { "time": 0, "name": null }
  2094. ]
  2095. },
  2096. "yanjin_front": {
  2097. "attachment": [
  2098. { "time": 0, "name": null }
  2099. ]
  2100. },
  2101. "yanjing_front": {
  2102. "attachment": [
  2103. { "time": 0, "name": null }
  2104. ]
  2105. },
  2106. "yanzhu": {
  2107. "attachment": [
  2108. { "time": 0, "name": null }
  2109. ]
  2110. },
  2111. "yanzhu2": {
  2112. "attachment": [
  2113. { "time": 0, "name": null }
  2114. ]
  2115. },
  2116. "yanzhu3": {
  2117. "attachment": [
  2118. { "time": 0, "name": null }
  2119. ]
  2120. }
  2121. },
  2122. "bones": {
  2123. "tx2": {
  2124. "rotate": [
  2125. { "time": 0.1667, "angle": -10.95 }
  2126. ],
  2127. "translate": [
  2128. { "time": 0.1667, "x": 9.64, "y": -30.7 },
  2129. { "time": 0.2, "x": 13.51, "y": 11.76 },
  2130. { "time": 0.2333, "x": 45.47, "y": 69.34 },
  2131. { "time": 0.2667, "x": 81, "y": 128.78 },
  2132. { "time": 0.3, "x": 74.81, "y": 169.98 },
  2133. { "time": 0.4, "x": 93.49, "y": 244.66 }
  2134. ],
  2135. "scale": [
  2136. { "time": 0.1667, "x": 0.76, "y": 1.149 },
  2137. { "time": 0.2, "x": 0.76, "y": 1.217 },
  2138. { "time": 0.2333, "x": 0.878, "y": 1.425 },
  2139. { "time": 0.2667, "x": 0.991, "y": 1.95 }
  2140. ]
  2141. },
  2142. "bone_left": {
  2143. "translate": [
  2144. { "time": 0, "x": -331.06, "y": 43.43 }
  2145. ]
  2146. },
  2147. "bone5": {
  2148. "rotate": [
  2149. { "time": 0, "angle": 0.22, "curve": "stepped" },
  2150. { "time": 0.1667, "angle": 0.22 },
  2151. { "time": 0.2333, "angle": -7.96 },
  2152. { "time": 0.3, "angle": 0.82 },
  2153. { "time": 0.4, "angle": 0.22 }
  2154. ],
  2155. "translate": [
  2156. { "time": 0, "x": 0, "y": -0.36 },
  2157. { "time": 0.1667, "x": 0, "y": 2.29 },
  2158. { "time": 0.2333, "x": 1.32, "y": -7.01 },
  2159. { "time": 0.3, "x": 2.42, "y": 14.22 },
  2160. { "time": 0.4, "x": 0, "y": -0.36 }
  2161. ]
  2162. },
  2163. "bone6": {
  2164. "rotate": [
  2165. { "time": 0, "angle": 0.55, "curve": "stepped" },
  2166. { "time": 0.1667, "angle": 0.55 },
  2167. { "time": 0.2333, "angle": -4.62 },
  2168. { "time": 0.3, "angle": 12.81 },
  2169. { "time": 0.4, "angle": 0.55 }
  2170. ],
  2171. "translate": [
  2172. { "time": 0, "x": -0.59, "y": 0.32 },
  2173. { "time": 0.1667, "x": 3.38, "y": 0.14 },
  2174. { "time": 0.2333, "x": -4.67, "y": 0.69 },
  2175. { "time": 0.3, "x": 1.88, "y": -1 },
  2176. { "time": 0.4, "x": -0.59, "y": 0.32 }
  2177. ]
  2178. },
  2179. "eye1_back": {
  2180. "rotate": [
  2181. { "time": 0, "angle": 4.71 },
  2182. { "time": 0.1667, "angle": -3.55 },
  2183. { "time": 0.2333, "angle": 16.6 },
  2184. { "time": 0.3, "angle": -11.31 },
  2185. { "time": 0.4, "angle": 4.71 }
  2186. ]
  2187. },
  2188. "eye2_back": {
  2189. "rotate": [
  2190. { "time": 0, "angle": -6.71 },
  2191. { "time": 0.1667, "angle": -0.21 },
  2192. { "time": 0.2333, "angle": -10.74 },
  2193. { "time": 0.3, "angle": 5.08 },
  2194. { "time": 0.4, "angle": -6.71 }
  2195. ]
  2196. },
  2197. "right arm_back": {
  2198. "rotate": [
  2199. { "time": 0, "angle": 3.89 },
  2200. { "time": 0.1333, "angle": 9.64 },
  2201. { "time": 0.2, "angle": -20.35 },
  2202. { "time": 0.2667, "angle": 10.86 },
  2203. { "time": 0.4, "angle": 3.89 }
  2204. ]
  2205. },
  2206. "bone7": {
  2207. "rotate": [
  2208. { "time": 0, "angle": 1.19 },
  2209. { "time": 0.1333, "angle": -4.19 },
  2210. { "time": 0.2, "angle": 7.41 },
  2211. { "time": 0.2667, "angle": -4.72 },
  2212. { "time": 0.4, "angle": 1.19 }
  2213. ]
  2214. },
  2215. "bone11": {
  2216. "rotate": [
  2217. { "time": 0, "angle": -14.51 },
  2218. { "time": 0.1333, "angle": -14.68 },
  2219. { "time": 0.2, "angle": -14.91 },
  2220. { "time": 0.2667, "angle": -10.33 },
  2221. { "time": 0.4, "angle": -14.51 }
  2222. ],
  2223. "translate": [
  2224. { "time": 0, "x": 4.71, "y": 4.93 },
  2225. { "time": 0.1333, "x": 10.02, "y": -4.23 },
  2226. { "time": 0.2, "x": -23.37, "y": -72.15 },
  2227. { "time": 0.2667, "x": 47.26, "y": 30.45 },
  2228. { "time": 0.4, "x": 4.71, "y": 4.93 }
  2229. ]
  2230. },
  2231. "left arm_back": {
  2232. "translate": [
  2233. { "time": 0, "x": 0, "y": 0 },
  2234. { "time": 0.1333, "x": -12.22, "y": 3.55 },
  2235. { "time": 0.2, "x": -32.85, "y": 1.88 },
  2236. { "time": 0.2667, "x": 6.79, "y": 1.34 },
  2237. { "time": 0.4, "x": 0, "y": 0 }
  2238. ]
  2239. },
  2240. "tail_back": {
  2241. "rotate": [
  2242. { "time": 0, "angle": 0 },
  2243. { "time": 0.1333, "angle": -10.65 },
  2244. { "time": 0.2, "angle": 3.99 },
  2245. { "time": 0.2667, "angle": -9.25 },
  2246. { "time": 0.4, "angle": 0 }
  2247. ]
  2248. },
  2249. "bone8": {
  2250. "rotate": [
  2251. { "time": 0, "angle": 1.8 },
  2252. { "time": 0.1333, "angle": -7.37 },
  2253. { "time": 0.2, "angle": 10.41 },
  2254. { "time": 0.2667, "angle": -5.96 },
  2255. { "time": 0.4, "angle": 1.8 }
  2256. ]
  2257. },
  2258. "bone9": {
  2259. "rotate": [
  2260. { "time": 0, "angle": 5.99 },
  2261. { "time": 0.1333, "angle": -0.68 },
  2262. { "time": 0.2, "angle": 17.02 },
  2263. { "time": 0.2667, "angle": -1.33 },
  2264. { "time": 0.4, "angle": 5.99 }
  2265. ]
  2266. },
  2267. "bone_back": {
  2268. "translate": [
  2269. { "time": 0, "x": 340.66, "y": -6.1 }
  2270. ]
  2271. }
  2272. },
  2273. "events": [
  2274. { "time": 0.2333, "name": "hit1" }
  2275. ]
  2276. },
  2277. "show": {
  2278. "slots": {
  2279. "bikong_front": {
  2280. "attachment": [
  2281. { "time": 0, "name": null }
  2282. ]
  2283. },
  2284. "bingkou2_front": {
  2285. "attachment": [
  2286. { "time": 0, "name": null }
  2287. ]
  2288. },
  2289. "bingzi_front": {
  2290. "attachment": [
  2291. { "time": 0, "name": null }
  2292. ]
  2293. },
  2294. "bizi_front": {
  2295. "attachment": [
  2296. { "time": 0, "name": null }
  2297. ]
  2298. },
  2299. "body_back": {
  2300. "attachment": [
  2301. { "time": 0, "name": null }
  2302. ]
  2303. },
  2304. "body_front": {
  2305. "attachment": [
  2306. { "time": 0, "name": null }
  2307. ]
  2308. },
  2309. "eye1_back": {
  2310. "attachment": [
  2311. { "time": 0, "name": null }
  2312. ]
  2313. },
  2314. "eye2_back": {
  2315. "attachment": [
  2316. { "time": 0, "name": null }
  2317. ]
  2318. },
  2319. "jian_back": {
  2320. "attachment": [
  2321. { "time": 0, "name": null }
  2322. ]
  2323. },
  2324. "left arm_back": {
  2325. "attachment": [
  2326. { "time": 0, "name": null }
  2327. ]
  2328. },
  2329. "left feet_back": {
  2330. "attachment": [
  2331. { "time": 0, "name": null }
  2332. ]
  2333. },
  2334. "left hand_back": {
  2335. "attachment": [
  2336. { "time": 0, "name": null }
  2337. ]
  2338. },
  2339. "left_front": {
  2340. "attachment": [
  2341. { "time": 0, "name": null }
  2342. ]
  2343. },
  2344. "lefthand__front": {
  2345. "attachment": [
  2346. { "time": 0, "name": null }
  2347. ]
  2348. },
  2349. "lefthand_front": {
  2350. "attachment": [
  2351. { "time": 0, "name": null }
  2352. ]
  2353. },
  2354. "leftleg_front": {
  2355. "attachment": [
  2356. { "time": 0, "name": null }
  2357. ]
  2358. },
  2359. "leftyanzhu_front": {
  2360. "attachment": [
  2361. { "time": 0, "name": null }
  2362. ]
  2363. },
  2364. "lian_front": {
  2365. "attachment": [
  2366. { "time": 0, "name": null }
  2367. ]
  2368. },
  2369. "right arm_back": {
  2370. "attachment": [
  2371. { "time": 0, "name": null }
  2372. ]
  2373. },
  2374. "right feet_back": {
  2375. "attachment": [
  2376. { "time": 0, "name": null }
  2377. ]
  2378. },
  2379. "right hand_back": {
  2380. "attachment": [
  2381. { "time": 0, "name": null }
  2382. ]
  2383. },
  2384. "right_front": {
  2385. "attachment": [
  2386. { "time": 0, "name": null }
  2387. ]
  2388. },
  2389. "rightleg_front": {
  2390. "attachment": [
  2391. { "time": 0, "name": null }
  2392. ]
  2393. },
  2394. "rightyanzhu_front": {
  2395. "attachment": [
  2396. { "time": 0, "name": null }
  2397. ]
  2398. },
  2399. "ringt_front": {
  2400. "attachment": [
  2401. { "time": 0, "name": null }
  2402. ]
  2403. },
  2404. "tail_back": {
  2405. "attachment": [
  2406. { "time": 0, "name": null }
  2407. ]
  2408. },
  2409. "tou_front": {
  2410. "attachment": [
  2411. { "time": 0, "name": null }
  2412. ]
  2413. },
  2414. "wuqi_front": {
  2415. "attachment": [
  2416. { "time": 0, "name": null }
  2417. ]
  2418. },
  2419. "yanjin_front": {
  2420. "attachment": [
  2421. { "time": 0, "name": null }
  2422. ]
  2423. },
  2424. "yanjing_front": {
  2425. "attachment": [
  2426. { "time": 0, "name": null }
  2427. ]
  2428. }
  2429. },
  2430. "bones": {
  2431. "body": {
  2432. "translate": [
  2433. { "time": 0, "x": -2.1, "y": 96.69 },
  2434. { "time": 0.1, "x": 0, "y": 0 },
  2435. { "time": 0.1667, "x": 0, "y": -1.61 }
  2436. ]
  2437. },
  2438. "bone": {
  2439. "rotate": [
  2440. { "time": 0, "angle": 0 },
  2441. { "time": 0.1, "angle": 2.88 },
  2442. { "time": 0.1667, "angle": 2.76 },
  2443. { "time": 0.3, "angle": -2.13 },
  2444. { "time": 0.3667, "angle": -3.33 }
  2445. ]
  2446. },
  2447. "bone2": {
  2448. "rotate": [
  2449. { "time": 0, "angle": 0.76 },
  2450. { "time": 0.1333, "angle": 3.06 },
  2451. { "time": 0.2, "angle": 10.37 },
  2452. { "time": 0.3667, "angle": 2.51 }
  2453. ],
  2454. "translate": [
  2455. { "time": 0, "x": -0.58, "y": 0.25 },
  2456. { "time": 0.1333, "x": -2.93, "y": 0.86 },
  2457. { "time": 0.2, "x": -2.94, "y": 0.82 },
  2458. { "time": 0.3667, "x": -0.58, "y": 0.25 }
  2459. ]
  2460. },
  2461. "face": {
  2462. "rotate": [
  2463. { "time": 0, "angle": 0 },
  2464. { "time": 0.1333, "angle": 5.02 },
  2465. { "time": 0.2333, "angle": -5.27 },
  2466. { "time": 0.3667, "angle": 0 }
  2467. ]
  2468. },
  2469. "meimao": {
  2470. "rotate": [
  2471. { "time": 0, "angle": 0 },
  2472. { "time": 0.1333, "angle": -8.17 },
  2473. { "time": 0.2333, "angle": 9.05 },
  2474. { "time": 0.3667, "angle": 0 }
  2475. ]
  2476. },
  2477. "K1": {
  2478. "rotate": [
  2479. { "time": 0, "angle": 1.44 },
  2480. { "time": 0.1333, "angle": 2.98 },
  2481. { "time": 0.2, "angle": 4.91 },
  2482. { "time": 0.3667, "angle": 1.44 }
  2483. ],
  2484. "translate": [
  2485. { "time": 0, "x": 2.81, "y": -0.36 },
  2486. { "time": 0.1333, "x": 12.27, "y": -1.82 },
  2487. { "time": 0.2, "x": 4.19, "y": -0.45 },
  2488. { "time": 0.3667, "x": 0.14, "y": 0.06 }
  2489. ]
  2490. },
  2491. "arm2": {
  2492. "rotate": [
  2493. { "time": 0, "angle": 0.68 },
  2494. { "time": 0.1, "angle": 2.33 },
  2495. { "time": 0.1667, "angle": 9.88 },
  2496. { "time": 0.3, "angle": -1.11 },
  2497. { "time": 0.3667, "angle": -5.27 }
  2498. ],
  2499. "translate": [
  2500. { "time": 0, "x": 0, "y": 0 },
  2501. { "time": 0.1, "x": -1.85, "y": -2.83 },
  2502. { "time": 0.1667, "x": -2.94, "y": -6.97 },
  2503. { "time": 0.3, "x": -2.75, "y": -5.92 }
  2504. ]
  2505. },
  2506. "hand1": {
  2507. "rotate": [
  2508. { "time": 0, "angle": -2.25 },
  2509. { "time": 0.1, "angle": -5.59 },
  2510. { "time": 0.1667, "angle": -12.95 },
  2511. { "time": 0.3, "angle": -9.75 },
  2512. { "time": 0.3667, "angle": -9.28 }
  2513. ]
  2514. },
  2515. "feet1": {
  2516. "translate": [
  2517. { "time": 0.1, "x": 0, "y": 0 },
  2518. { "time": 0.1667, "x": 0.08, "y": 1.61 },
  2519. { "time": 0.3, "x": 0, "y": 1.61 },
  2520. { "time": 0.3667, "x": -0.01, "y": 1.61 }
  2521. ]
  2522. },
  2523. "feet": {
  2524. "translate": [
  2525. { "time": 0.1, "x": 0, "y": 0 },
  2526. { "time": 0.1667, "x": 0.01, "y": 1.61 },
  2527. { "time": 0.3, "x": 0, "y": 1.61 },
  2528. { "time": 0.3667, "x": -0.02, "y": 1.61 }
  2529. ]
  2530. },
  2531. "eye2": {
  2532. "rotate": [
  2533. { "time": 0, "angle": -3.9 },
  2534. { "time": 0.1333, "angle": 4.94 },
  2535. { "time": 0.2333, "angle": -14.28 },
  2536. { "time": 0.3667, "angle": -3.9 }
  2537. ]
  2538. },
  2539. "eye1": {
  2540. "rotate": [
  2541. { "time": 0, "angle": -4.73 },
  2542. { "time": 0.1333, "angle": 3.26 },
  2543. { "time": 0.2333, "angle": -6.87 },
  2544. { "time": 0.3667, "angle": -4.73 }
  2545. ]
  2546. },
  2547. "tail": {
  2548. "rotate": [
  2549. { "time": 0, "angle": -53.09 },
  2550. { "time": 0.1333, "angle": -32.76 },
  2551. { "time": 0.2333, "angle": -47.96 },
  2552. { "time": 0.3667, "angle": -31.55 }
  2553. ]
  2554. },
  2555. "bone3": {
  2556. "rotate": [
  2557. { "time": 0, "angle": -58.77 },
  2558. { "time": 0.1333, "angle": -35.15 },
  2559. { "time": 0.2333, "angle": -54.71 },
  2560. { "time": 0.3667, "angle": -38.29 }
  2561. ]
  2562. },
  2563. "bone4": {
  2564. "rotate": [
  2565. { "time": 0, "angle": -18.08 },
  2566. { "time": 0.1333, "angle": 4.92 },
  2567. { "time": 0.2333, "angle": -20.42 },
  2568. { "time": 0.3667, "angle": -4 }
  2569. ]
  2570. },
  2571. "yanzhu": {
  2572. "rotate": [
  2573. { "time": 0.1333, "angle": 0 },
  2574. { "time": 0.2333, "angle": -13.59 },
  2575. { "time": 0.3667, "angle": 0 }
  2576. ],
  2577. "translate": [
  2578. { "time": 0.1333, "x": 0, "y": 0 },
  2579. { "time": 0.2333, "x": -1.43, "y": -6.81 },
  2580. { "time": 0.3667, "x": 0, "y": 0 }
  2581. ]
  2582. },
  2583. "yanzhu2": {
  2584. "rotate": [
  2585. { "time": 0.1333, "angle": 0 },
  2586. { "time": 0.2333, "angle": -75.63 },
  2587. { "time": 0.3667, "angle": 0 }
  2588. ],
  2589. "translate": [
  2590. { "time": 0.1333, "x": 0, "y": 0 },
  2591. { "time": 0.2333, "x": -0.57, "y": -4.26 },
  2592. { "time": 0.3667, "x": 0, "y": 0 }
  2593. ]
  2594. },
  2595. "shadow": {
  2596. "translate": [
  2597. { "time": 0, "x": 1.53, "y": 1.55 }
  2598. ],
  2599. "scale": [
  2600. { "time": 0, "x": -1, "y": 1 }
  2601. ]
  2602. },
  2603. "bone_left": {
  2604. "scale": [
  2605. { "time": 0, "x": -1, "y": 1 }
  2606. ]
  2607. }
  2608. }
  2609. },
  2610. "stand_down": {
  2611. "slots": {
  2612. "arm": {
  2613. "attachment": [
  2614. { "time": 0, "name": null }
  2615. ]
  2616. },
  2617. "arm2": {
  2618. "attachment": [
  2619. { "time": 0, "name": null }
  2620. ]
  2621. },
  2622. "body1": {
  2623. "attachment": [
  2624. { "time": 0, "name": null }
  2625. ]
  2626. },
  2627. "body_back": {
  2628. "attachment": [
  2629. { "time": 0, "name": null }
  2630. ]
  2631. },
  2632. "eye": {
  2633. "attachment": [
  2634. { "time": 0, "name": null }
  2635. ]
  2636. },
  2637. "eye1": {
  2638. "attachment": [
  2639. { "time": 0, "name": null }
  2640. ]
  2641. },
  2642. "eye1_back": {
  2643. "attachment": [
  2644. { "time": 0, "name": null }
  2645. ]
  2646. },
  2647. "eye2": {
  2648. "attachment": [
  2649. { "time": 0, "name": null }
  2650. ]
  2651. },
  2652. "eye2_back": {
  2653. "attachment": [
  2654. { "time": 0, "name": null }
  2655. ]
  2656. },
  2657. "face": {
  2658. "attachment": [
  2659. { "time": 0, "name": null }
  2660. ]
  2661. },
  2662. "feet": {
  2663. "attachment": [
  2664. { "time": 0, "name": null }
  2665. ]
  2666. },
  2667. "feet1": {
  2668. "attachment": [
  2669. { "time": 0, "name": null }
  2670. ]
  2671. },
  2672. "gun": {
  2673. "attachment": [
  2674. { "time": 0, "name": null }
  2675. ]
  2676. },
  2677. "hand": {
  2678. "attachment": [
  2679. { "time": 0, "name": null }
  2680. ]
  2681. },
  2682. "hand1": {
  2683. "attachment": [
  2684. { "time": 0, "name": null }
  2685. ]
  2686. },
  2687. "jian_back": {
  2688. "attachment": [
  2689. { "time": 0, "name": null }
  2690. ]
  2691. },
  2692. "left arm_back": {
  2693. "attachment": [
  2694. { "time": 0, "name": null }
  2695. ]
  2696. },
  2697. "left feet_back": {
  2698. "attachment": [
  2699. { "time": 0, "name": null }
  2700. ]
  2701. },
  2702. "left hand_back": {
  2703. "attachment": [
  2704. { "time": 0, "name": null }
  2705. ]
  2706. },
  2707. "meimao": {
  2708. "attachment": [
  2709. { "time": 0, "name": null }
  2710. ]
  2711. },
  2712. "meimao2": {
  2713. "attachment": [
  2714. { "time": 0, "name": null }
  2715. ]
  2716. },
  2717. "mouth": {
  2718. "attachment": [
  2719. { "time": 0, "name": null }
  2720. ]
  2721. },
  2722. "nose": {
  2723. "attachment": [
  2724. { "time": 0, "name": null }
  2725. ]
  2726. },
  2727. "right arm_back": {
  2728. "attachment": [
  2729. { "time": 0, "name": null }
  2730. ]
  2731. },
  2732. "right feet_back": {
  2733. "attachment": [
  2734. { "time": 0, "name": null }
  2735. ]
  2736. },
  2737. "right hand_back": {
  2738. "attachment": [
  2739. { "time": 0, "name": null }
  2740. ]
  2741. },
  2742. "tail": {
  2743. "attachment": [
  2744. { "time": 0, "name": null }
  2745. ]
  2746. },
  2747. "tail_back": {
  2748. "attachment": [
  2749. { "time": 0, "name": null }
  2750. ]
  2751. },
  2752. "yanzhu": {
  2753. "attachment": [
  2754. { "time": 0, "name": null }
  2755. ]
  2756. },
  2757. "yanzhu2": {
  2758. "attachment": [
  2759. { "time": 0, "name": null }
  2760. ]
  2761. },
  2762. "yanzhu3": {
  2763. "attachment": [
  2764. { "time": 0, "name": null }
  2765. ]
  2766. }
  2767. },
  2768. "bones": {
  2769. "lefthand_front": {
  2770. "rotate": [
  2771. { "time": 0, "angle": 1.75 }
  2772. ]
  2773. },
  2774. "lefthand__front": {
  2775. "rotate": [
  2776. { "time": 0, "angle": 0 },
  2777. { "time": 0.5, "angle": 11.37 },
  2778. { "time": 1, "angle": 0 }
  2779. ]
  2780. },
  2781. "leftyanzhu_front": {
  2782. "rotate": [
  2783. { "time": 0, "angle": 0 },
  2784. { "time": 0.5, "angle": -64.58 },
  2785. { "time": 1, "angle": 0 }
  2786. ],
  2787. "translate": [
  2788. { "time": 0, "x": 0, "y": 0 },
  2789. { "time": 0.5, "x": -2.23, "y": -3.24 },
  2790. { "time": 1, "x": 0, "y": 0 }
  2791. ]
  2792. },
  2793. "left_front": {
  2794. "rotate": [
  2795. { "time": 0, "angle": -1.47 },
  2796. { "time": 0.0667, "angle": 0 },
  2797. { "time": 0.5667, "angle": -11.03 },
  2798. { "time": 1, "angle": -1.47 }
  2799. ]
  2800. },
  2801. "rightyanzhu_front": {
  2802. "rotate": [
  2803. { "time": 0, "angle": 0 },
  2804. { "time": 0.5, "angle": -64.58 },
  2805. { "time": 1, "angle": 0 }
  2806. ],
  2807. "translate": [
  2808. { "time": 0, "x": 0, "y": 0 },
  2809. { "time": 0.5, "x": -2.01, "y": -5.46 },
  2810. { "time": 1, "x": 0, "y": 0 }
  2811. ]
  2812. },
  2813. "right_front": {
  2814. "rotate": [
  2815. { "time": 0, "angle": -14.66 }
  2816. ],
  2817. "translate": [
  2818. { "time": 0, "x": -6.29, "y": -2.66 }
  2819. ]
  2820. },
  2821. "ringt_front": {
  2822. "rotate": [
  2823. { "time": 0, "angle": 1.51 },
  2824. { "time": 0.0667, "angle": 0 },
  2825. { "time": 0.5667, "angle": 11.35 },
  2826. { "time": 1, "angle": 1.51 }
  2827. ]
  2828. },
  2829. "tou_front": {
  2830. "rotate": [
  2831. { "time": 0, "angle": -1.27 },
  2832. { "time": 0.1667, "angle": 2.04 },
  2833. { "time": 0.6667, "angle": -7.9 },
  2834. { "time": 1, "angle": -1.27 }
  2835. ],
  2836. "translate": [
  2837. { "time": 0, "x": 0, "y": 0 },
  2838. { "time": 0.5, "x": -2.92, "y": -0.86 },
  2839. { "time": 1, "x": 0, "y": 0 }
  2840. ]
  2841. },
  2842. "k3": {
  2843. "rotate": [
  2844. { "time": 0, "angle": 0 },
  2845. { "time": 0.5, "angle": -10.09 },
  2846. { "time": 1, "angle": 0 }
  2847. ],
  2848. "translate": [
  2849. { "time": 0, "x": 6.81, "y": -0.42 },
  2850. { "time": 0.5, "x": 7.63, "y": -9.67 },
  2851. { "time": 1, "x": 6.81, "y": -0.42 }
  2852. ]
  2853. },
  2854. "bone_left": {
  2855. "translate": [
  2856. { "time": 0, "x": 581.94, "y": 0 }
  2857. ]
  2858. },
  2859. "bone10": {
  2860. "rotate": [
  2861. { "time": 0, "angle": 0 },
  2862. { "time": 0.5, "angle": -4.1 },
  2863. { "time": 1, "angle": 0 }
  2864. ],
  2865. "translate": [
  2866. { "time": 0, "x": 0, "y": 0 },
  2867. { "time": 0.5, "x": -1.06, "y": -7.42 },
  2868. { "time": 1, "x": 0, "y": 0 }
  2869. ]
  2870. },
  2871. "bone12": {
  2872. "rotate": [
  2873. { "time": 0, "angle": 0 },
  2874. { "time": 0.5, "angle": 11.26 },
  2875. { "time": 1, "angle": 0 }
  2876. ]
  2877. },
  2878. "bone_front": {
  2879. "translate": [
  2880. { "time": 0, "x": -421.29, "y": -7 }
  2881. ]
  2882. }
  2883. }
  2884. },
  2885. "stand_left": {
  2886. "slots": {
  2887. "bikong_front": {
  2888. "attachment": [
  2889. { "time": 0, "name": null }
  2890. ]
  2891. },
  2892. "bingkou2_front": {
  2893. "attachment": [
  2894. { "time": 0, "name": null }
  2895. ]
  2896. },
  2897. "bingzi_front": {
  2898. "attachment": [
  2899. { "time": 0, "name": null }
  2900. ]
  2901. },
  2902. "bizi_front": {
  2903. "attachment": [
  2904. { "time": 0, "name": null }
  2905. ]
  2906. },
  2907. "body_back": {
  2908. "attachment": [
  2909. { "time": 0, "name": null }
  2910. ]
  2911. },
  2912. "body_front": {
  2913. "attachment": [
  2914. { "time": 0, "name": null }
  2915. ]
  2916. },
  2917. "eye1_back": {
  2918. "attachment": [
  2919. { "time": 0, "name": null }
  2920. ]
  2921. },
  2922. "eye2_back": {
  2923. "attachment": [
  2924. { "time": 0, "name": null }
  2925. ]
  2926. },
  2927. "jian_back": {
  2928. "attachment": [
  2929. { "time": 0, "name": null }
  2930. ]
  2931. },
  2932. "left arm_back": {
  2933. "attachment": [
  2934. { "time": 0, "name": null }
  2935. ]
  2936. },
  2937. "left feet_back": {
  2938. "attachment": [
  2939. { "time": 0, "name": null }
  2940. ]
  2941. },
  2942. "left hand_back": {
  2943. "attachment": [
  2944. { "time": 0, "name": null }
  2945. ]
  2946. },
  2947. "left_front": {
  2948. "attachment": [
  2949. { "time": 0, "name": null }
  2950. ]
  2951. },
  2952. "lefthand__front": {
  2953. "attachment": [
  2954. { "time": 0, "name": null }
  2955. ]
  2956. },
  2957. "lefthand_front": {
  2958. "attachment": [
  2959. { "time": 0, "name": null }
  2960. ]
  2961. },
  2962. "leftleg_front": {
  2963. "attachment": [
  2964. { "time": 0, "name": null }
  2965. ]
  2966. },
  2967. "leftyanzhu_front": {
  2968. "attachment": [
  2969. { "time": 0, "name": null }
  2970. ]
  2971. },
  2972. "lian_front": {
  2973. "attachment": [
  2974. { "time": 0, "name": null }
  2975. ]
  2976. },
  2977. "right arm_back": {
  2978. "attachment": [
  2979. { "time": 0, "name": null }
  2980. ]
  2981. },
  2982. "right feet_back": {
  2983. "attachment": [
  2984. { "time": 0, "name": null }
  2985. ]
  2986. },
  2987. "right hand_back": {
  2988. "attachment": [
  2989. { "time": 0, "name": null }
  2990. ]
  2991. },
  2992. "right_front": {
  2993. "attachment": [
  2994. { "time": 0, "name": null }
  2995. ]
  2996. },
  2997. "rightleg_front": {
  2998. "attachment": [
  2999. { "time": 0, "name": null }
  3000. ]
  3001. },
  3002. "rightyanzhu_front": {
  3003. "attachment": [
  3004. { "time": 0, "name": null }
  3005. ]
  3006. },
  3007. "ringt_front": {
  3008. "attachment": [
  3009. { "time": 0, "name": null }
  3010. ]
  3011. },
  3012. "tail_back": {
  3013. "attachment": [
  3014. { "time": 0, "name": null }
  3015. ]
  3016. },
  3017. "tou_front": {
  3018. "attachment": [
  3019. { "time": 0, "name": null }
  3020. ]
  3021. },
  3022. "wuqi_front": {
  3023. "attachment": [
  3024. { "time": 0, "name": null }
  3025. ]
  3026. },
  3027. "yanjin_front": {
  3028. "attachment": [
  3029. { "time": 0, "name": null }
  3030. ]
  3031. },
  3032. "yanjing_front": {
  3033. "attachment": [
  3034. { "time": 0, "name": null }
  3035. ]
  3036. }
  3037. },
  3038. "bones": {
  3039. "body": {
  3040. "translate": [
  3041. { "time": 0, "x": 0, "y": 0 },
  3042. { "time": 0.5, "x": 0, "y": -1.89 },
  3043. { "time": 1, "x": 0, "y": 0 }
  3044. ]
  3045. },
  3046. "bone": {
  3047. "rotate": [
  3048. { "time": 0, "angle": 0 },
  3049. { "time": 0.5, "angle": 3.1 },
  3050. { "time": 1, "angle": 0 }
  3051. ],
  3052. "translate": [
  3053. { "time": 0, "x": 0, "y": 0 },
  3054. { "time": 0.5, "x": 0.63, "y": -2.55 },
  3055. { "time": 1, "x": 0, "y": 0 }
  3056. ]
  3057. },
  3058. "bone2": {
  3059. "rotate": [
  3060. { "time": 0, "angle": 0.76 },
  3061. { "time": 0.1667, "angle": 0 },
  3062. { "time": 0.6667, "angle": 2.28 },
  3063. { "time": 1, "angle": 0.76 }
  3064. ],
  3065. "translate": [
  3066. { "time": 0, "x": -0.58, "y": 0.25 },
  3067. { "time": 0.1667, "x": 0, "y": 0 },
  3068. { "time": 0.6667, "x": -1.76, "y": 0.75 },
  3069. { "time": 1, "x": -0.58, "y": 0.25 }
  3070. ]
  3071. },
  3072. "face": {
  3073. "rotate": [
  3074. { "time": 0, "angle": 0 },
  3075. { "time": 0.5, "angle": 7.34 },
  3076. { "time": 1, "angle": 0 }
  3077. ]
  3078. },
  3079. "meimao": {
  3080. "rotate": [
  3081. { "time": 0, "angle": 0 },
  3082. { "time": 0.5, "angle": -10.37 },
  3083. { "time": 1, "angle": 0 }
  3084. ]
  3085. },
  3086. "K1": {
  3087. "rotate": [
  3088. { "time": 0, "angle": 1.44 }
  3089. ],
  3090. "translate": [
  3091. {
  3092. "time": 0,
  3093. "x": 6.11,
  3094. "y": -2.65,
  3095. "curve": [ 0.25, 0, 0.75, 1 ]
  3096. },
  3097. {
  3098. "time": 0.5,
  3099. "x": 2.67,
  3100. "y": -1.5,
  3101. "curve": [ 0.25, 0, 0.75, 1 ]
  3102. },
  3103. { "time": 1, "x": 6.11, "y": -2.65 }
  3104. ]
  3105. },
  3106. "arm2": {
  3107. "rotate": [
  3108. { "time": 0, "angle": 0.68 },
  3109. { "time": 0.1667, "angle": 0 },
  3110. { "time": 0.6667, "angle": 2.4 },
  3111. { "time": 1, "angle": 0.68 }
  3112. ]
  3113. },
  3114. "hand1": {
  3115. "rotate": [
  3116. { "time": 0, "angle": -2.25 },
  3117. { "time": 0.1667, "angle": 0 },
  3118. { "time": 0.6667, "angle": -7.94 },
  3119. { "time": 1, "angle": -2.25 }
  3120. ]
  3121. },
  3122. "feet1": {
  3123. "translate": [
  3124. { "time": 0, "x": 0, "y": 0 },
  3125. { "time": 0.5, "x": 0, "y": 1.89 },
  3126. { "time": 1, "x": 0, "y": 0 }
  3127. ]
  3128. },
  3129. "feet": {
  3130. "translate": [
  3131. { "time": 0, "x": 0, "y": 0 },
  3132. { "time": 0.5, "x": 0, "y": 1.89 },
  3133. { "time": 1, "x": 0, "y": 0 }
  3134. ]
  3135. },
  3136. "eye2": {
  3137. "rotate": [
  3138. { "time": 0, "angle": -3.9 },
  3139. { "time": 0.2333, "angle": 0 },
  3140. { "time": 0.7333, "angle": -8.56 },
  3141. { "time": 1, "angle": -3.9 }
  3142. ]
  3143. },
  3144. "eye1": {
  3145. "rotate": [
  3146. { "time": 0, "angle": -4.73 },
  3147. { "time": 0.2333, "angle": 0 },
  3148. { "time": 0.7333, "angle": -10.37 },
  3149. { "time": 1, "angle": -4.73 }
  3150. ]
  3151. },
  3152. "tail": {
  3153. "rotate": [
  3154. { "time": 0, "angle": -5.26 },
  3155. { "time": 0.1, "angle": -6.93 },
  3156. { "time": 0.6, "angle": 5.9 },
  3157. { "time": 1, "angle": -5.26 }
  3158. ]
  3159. },
  3160. "bone3": {
  3161. "rotate": [
  3162. { "time": 0, "angle": -3.27 },
  3163. { "time": 0.2, "angle": -6.89 },
  3164. { "time": 0.7, "angle": 2.96 },
  3165. { "time": 1, "angle": -3.27 }
  3166. ]
  3167. },
  3168. "bone4": {
  3169. "rotate": [
  3170. { "time": 0, "angle": 1.87 },
  3171. { "time": 0.3, "angle": -7.34 },
  3172. { "time": 0.8, "angle": 7.23 },
  3173. { "time": 1, "angle": 1.87 }
  3174. ]
  3175. },
  3176. "yanzhu": {
  3177. "rotate": [
  3178. { "time": 0, "angle": 0 },
  3179. { "time": 0.5, "angle": 62.07 },
  3180. { "time": 1, "angle": 0 }
  3181. ],
  3182. "translate": [
  3183. { "time": 0, "x": 0, "y": 0 },
  3184. { "time": 0.5, "x": -1.25, "y": -2.23 },
  3185. { "time": 1, "x": 0, "y": 0 }
  3186. ]
  3187. },
  3188. "yanzhu2": {
  3189. "rotate": [
  3190. { "time": 0, "angle": 0 },
  3191. { "time": 0.5, "angle": 74.58 },
  3192. { "time": 1, "angle": 0 }
  3193. ],
  3194. "translate": [
  3195. { "time": 0, "x": 0, "y": 0 },
  3196. { "time": 0.5, "x": -0.44, "y": -5.79 },
  3197. { "time": 1, "x": 0, "y": 0 }
  3198. ]
  3199. },
  3200. "shadow": {
  3201. "scale": [
  3202. { "time": 0, "x": -1, "y": 1 }
  3203. ]
  3204. },
  3205. "tx": {
  3206. "translate": [
  3207. { "time": 0, "x": -6.81, "y": 2.46 },
  3208. { "time": 0.5, "x": -3.41, "y": 1.23 },
  3209. { "time": 1, "x": -6.81, "y": 2.46 }
  3210. ]
  3211. },
  3212. "arm": {
  3213. "rotate": [
  3214. { "time": 0, "angle": 0.56 }
  3215. ]
  3216. },
  3217. "hand": {
  3218. "rotate": [
  3219. { "time": 0, "angle": -15.95 }
  3220. ]
  3221. }
  3222. }
  3223. },
  3224. "stand_right": {
  3225. "slots": {
  3226. "bikong_front": {
  3227. "attachment": [
  3228. { "time": 0, "name": null }
  3229. ]
  3230. },
  3231. "bingkou2_front": {
  3232. "attachment": [
  3233. { "time": 0, "name": null }
  3234. ]
  3235. },
  3236. "bingzi_front": {
  3237. "attachment": [
  3238. { "time": 0, "name": null }
  3239. ]
  3240. },
  3241. "bizi_front": {
  3242. "attachment": [
  3243. { "time": 0, "name": null }
  3244. ]
  3245. },
  3246. "body_back": {
  3247. "attachment": [
  3248. { "time": 0, "name": null }
  3249. ]
  3250. },
  3251. "body_front": {
  3252. "attachment": [
  3253. { "time": 0, "name": null }
  3254. ]
  3255. },
  3256. "eye1_back": {
  3257. "attachment": [
  3258. { "time": 0, "name": null }
  3259. ]
  3260. },
  3261. "eye2_back": {
  3262. "attachment": [
  3263. { "time": 0, "name": null }
  3264. ]
  3265. },
  3266. "jian_back": {
  3267. "attachment": [
  3268. { "time": 0, "name": null }
  3269. ]
  3270. },
  3271. "left arm_back": {
  3272. "attachment": [
  3273. { "time": 0, "name": null }
  3274. ]
  3275. },
  3276. "left feet_back": {
  3277. "attachment": [
  3278. { "time": 0, "name": null }
  3279. ]
  3280. },
  3281. "left hand_back": {
  3282. "attachment": [
  3283. { "time": 0, "name": null }
  3284. ]
  3285. },
  3286. "left_front": {
  3287. "attachment": [
  3288. { "time": 0, "name": null }
  3289. ]
  3290. },
  3291. "lefthand__front": {
  3292. "attachment": [
  3293. { "time": 0, "name": null }
  3294. ]
  3295. },
  3296. "lefthand_front": {
  3297. "attachment": [
  3298. { "time": 0, "name": null }
  3299. ]
  3300. },
  3301. "leftleg_front": {
  3302. "attachment": [
  3303. { "time": 0, "name": null }
  3304. ]
  3305. },
  3306. "leftyanzhu_front": {
  3307. "attachment": [
  3308. { "time": 0, "name": null }
  3309. ]
  3310. },
  3311. "lian_front": {
  3312. "attachment": [
  3313. { "time": 0, "name": null }
  3314. ]
  3315. },
  3316. "right arm_back": {
  3317. "attachment": [
  3318. { "time": 0, "name": null }
  3319. ]
  3320. },
  3321. "right feet_back": {
  3322. "attachment": [
  3323. { "time": 0, "name": null }
  3324. ]
  3325. },
  3326. "right hand_back": {
  3327. "attachment": [
  3328. { "time": 0, "name": null }
  3329. ]
  3330. },
  3331. "right_front": {
  3332. "attachment": [
  3333. { "time": 0, "name": null }
  3334. ]
  3335. },
  3336. "rightleg_front": {
  3337. "attachment": [
  3338. { "time": 0, "name": null }
  3339. ]
  3340. },
  3341. "rightyanzhu_front": {
  3342. "attachment": [
  3343. { "time": 0, "name": null }
  3344. ]
  3345. },
  3346. "ringt_front": {
  3347. "attachment": [
  3348. { "time": 0, "name": null }
  3349. ]
  3350. },
  3351. "tail_back": {
  3352. "attachment": [
  3353. { "time": 0, "name": null }
  3354. ]
  3355. },
  3356. "tou_front": {
  3357. "attachment": [
  3358. { "time": 0, "name": null }
  3359. ]
  3360. },
  3361. "wuqi_front": {
  3362. "attachment": [
  3363. { "time": 0, "name": null }
  3364. ]
  3365. },
  3366. "yanjin_front": {
  3367. "attachment": [
  3368. { "time": 0, "name": null }
  3369. ]
  3370. },
  3371. "yanjing_front": {
  3372. "attachment": [
  3373. { "time": 0, "name": null }
  3374. ]
  3375. }
  3376. },
  3377. "bones": {
  3378. "body": {
  3379. "translate": [
  3380. { "time": 0, "x": 0, "y": 0 },
  3381. { "time": 0.5, "x": 0, "y": -1.89 },
  3382. { "time": 1, "x": 0, "y": 0 }
  3383. ]
  3384. },
  3385. "bone": {
  3386. "rotate": [
  3387. { "time": 0, "angle": 0 },
  3388. { "time": 0.5, "angle": 3.1 },
  3389. { "time": 1, "angle": 0 }
  3390. ],
  3391. "translate": [
  3392. { "time": 0, "x": 0, "y": 0 },
  3393. { "time": 0.5, "x": 0.63, "y": -2.55 },
  3394. { "time": 1, "x": 0, "y": 0 }
  3395. ]
  3396. },
  3397. "bone2": {
  3398. "rotate": [
  3399. { "time": 0, "angle": 0.76 },
  3400. { "time": 0.1667, "angle": 0 },
  3401. { "time": 0.6667, "angle": 2.28 },
  3402. { "time": 1, "angle": 0.76 }
  3403. ],
  3404. "translate": [
  3405. { "time": 0, "x": -0.58, "y": 0.25 },
  3406. { "time": 0.1667, "x": 0, "y": 0 },
  3407. { "time": 0.6667, "x": -1.76, "y": 0.75 },
  3408. { "time": 1, "x": -0.58, "y": 0.25 }
  3409. ]
  3410. },
  3411. "face": {
  3412. "rotate": [
  3413. { "time": 0, "angle": 0 },
  3414. { "time": 0.5, "angle": 7.34 },
  3415. { "time": 1, "angle": 0 }
  3416. ]
  3417. },
  3418. "meimao": {
  3419. "rotate": [
  3420. { "time": 0, "angle": 0 },
  3421. { "time": 0.5, "angle": -10.37 },
  3422. { "time": 1, "angle": 0 }
  3423. ]
  3424. },
  3425. "K1": {
  3426. "rotate": [
  3427. { "time": 0, "angle": 1.44 }
  3428. ],
  3429. "translate": [
  3430. {
  3431. "time": 0,
  3432. "x": 6.11,
  3433. "y": -2.65,
  3434. "curve": [ 0.25, 0, 0.75, 1 ]
  3435. },
  3436. {
  3437. "time": 0.5,
  3438. "x": 2.67,
  3439. "y": -1.5,
  3440. "curve": [ 0.25, 0, 0.75, 1 ]
  3441. },
  3442. { "time": 1, "x": 6.11, "y": -2.65 }
  3443. ]
  3444. },
  3445. "arm2": {
  3446. "rotate": [
  3447. { "time": 0, "angle": 0.68 },
  3448. { "time": 0.1667, "angle": 0 },
  3449. { "time": 0.6667, "angle": 2.4 },
  3450. { "time": 1, "angle": 0.68 }
  3451. ]
  3452. },
  3453. "hand1": {
  3454. "rotate": [
  3455. { "time": 0, "angle": -2.25 },
  3456. { "time": 0.1667, "angle": 0 },
  3457. { "time": 0.6667, "angle": -7.94 },
  3458. { "time": 1, "angle": -2.25 }
  3459. ]
  3460. },
  3461. "feet1": {
  3462. "translate": [
  3463. { "time": 0, "x": 0, "y": 0 },
  3464. { "time": 0.5, "x": 0, "y": 1.89 },
  3465. { "time": 1, "x": 0, "y": 0 }
  3466. ]
  3467. },
  3468. "feet": {
  3469. "translate": [
  3470. { "time": 0, "x": 0, "y": 0 },
  3471. { "time": 0.5, "x": 0, "y": 1.89 },
  3472. { "time": 1, "x": 0, "y": 0 }
  3473. ]
  3474. },
  3475. "eye2": {
  3476. "rotate": [
  3477. { "time": 0, "angle": -3.9 },
  3478. { "time": 0.2333, "angle": 0 },
  3479. { "time": 0.7333, "angle": -8.56 },
  3480. { "time": 1, "angle": -3.9 }
  3481. ]
  3482. },
  3483. "eye1": {
  3484. "rotate": [
  3485. { "time": 0, "angle": -4.73 },
  3486. { "time": 0.2333, "angle": 0 },
  3487. { "time": 0.7333, "angle": -10.37 },
  3488. { "time": 1, "angle": -4.73 }
  3489. ]
  3490. },
  3491. "tail": {
  3492. "rotate": [
  3493. { "time": 0, "angle": -5.26 },
  3494. { "time": 0.1, "angle": -6.93 },
  3495. { "time": 0.6, "angle": 5.9 },
  3496. { "time": 1, "angle": -5.26 }
  3497. ]
  3498. },
  3499. "bone3": {
  3500. "rotate": [
  3501. { "time": 0, "angle": -3.27 },
  3502. { "time": 0.2, "angle": -6.89 },
  3503. { "time": 0.7, "angle": 2.96 },
  3504. { "time": 1, "angle": -3.27 }
  3505. ]
  3506. },
  3507. "bone4": {
  3508. "rotate": [
  3509. { "time": 0, "angle": 1.87 },
  3510. { "time": 0.3, "angle": -7.34 },
  3511. { "time": 0.8, "angle": 7.23 },
  3512. { "time": 1, "angle": 1.87 }
  3513. ]
  3514. },
  3515. "yanzhu": {
  3516. "rotate": [
  3517. { "time": 0, "angle": 0 },
  3518. { "time": 0.5, "angle": 62.07 },
  3519. { "time": 1, "angle": 0 }
  3520. ],
  3521. "translate": [
  3522. { "time": 0, "x": 0, "y": 0 },
  3523. { "time": 0.5, "x": -1.25, "y": -2.23 },
  3524. { "time": 1, "x": 0, "y": 0 }
  3525. ]
  3526. },
  3527. "yanzhu2": {
  3528. "rotate": [
  3529. { "time": 0, "angle": 0 },
  3530. { "time": 0.5, "angle": 74.58 },
  3531. { "time": 1, "angle": 0 }
  3532. ],
  3533. "translate": [
  3534. { "time": 0, "x": 0, "y": 0 },
  3535. { "time": 0.5, "x": -0.44, "y": -5.79 },
  3536. { "time": 1, "x": 0, "y": 0 }
  3537. ]
  3538. },
  3539. "shadow": {
  3540. "scale": [
  3541. { "time": 0, "x": -1, "y": 1 }
  3542. ]
  3543. },
  3544. "tx": {
  3545. "translate": [
  3546. { "time": 0, "x": -6.81, "y": 2.46 },
  3547. { "time": 0.5, "x": -3.41, "y": 1.23 },
  3548. { "time": 1, "x": -6.81, "y": 2.46 }
  3549. ]
  3550. },
  3551. "arm": {
  3552. "rotate": [
  3553. { "time": 0, "angle": 0.56 }
  3554. ]
  3555. },
  3556. "hand": {
  3557. "rotate": [
  3558. { "time": 0, "angle": -15.95 }
  3559. ]
  3560. },
  3561. "bone_left": {
  3562. "scale": [
  3563. { "time": 0, "x": -1, "y": 1 }
  3564. ]
  3565. }
  3566. }
  3567. },
  3568. "stand_up": {
  3569. "slots": {
  3570. "arm": {
  3571. "attachment": [
  3572. { "time": 0, "name": null }
  3573. ]
  3574. },
  3575. "arm2": {
  3576. "attachment": [
  3577. { "time": 0, "name": null }
  3578. ]
  3579. },
  3580. "bikong_front": {
  3581. "attachment": [
  3582. { "time": 0, "name": null }
  3583. ]
  3584. },
  3585. "bingkou2_front": {
  3586. "attachment": [
  3587. { "time": 0, "name": null }
  3588. ]
  3589. },
  3590. "bingzi_front": {
  3591. "attachment": [
  3592. { "time": 0, "name": null }
  3593. ]
  3594. },
  3595. "bizi_front": {
  3596. "attachment": [
  3597. { "time": 0, "name": null }
  3598. ]
  3599. },
  3600. "body1": {
  3601. "attachment": [
  3602. { "time": 0, "name": null }
  3603. ]
  3604. },
  3605. "body_front": {
  3606. "attachment": [
  3607. { "time": 0, "name": null }
  3608. ]
  3609. },
  3610. "eye": {
  3611. "attachment": [
  3612. { "time": 0, "name": null }
  3613. ]
  3614. },
  3615. "eye1": {
  3616. "attachment": [
  3617. { "time": 0, "name": null }
  3618. ]
  3619. },
  3620. "eye2": {
  3621. "attachment": [
  3622. { "time": 0, "name": null }
  3623. ]
  3624. },
  3625. "face": {
  3626. "attachment": [
  3627. { "time": 0, "name": null }
  3628. ]
  3629. },
  3630. "feet": {
  3631. "attachment": [
  3632. { "time": 0, "name": null }
  3633. ]
  3634. },
  3635. "feet1": {
  3636. "attachment": [
  3637. { "time": 0, "name": null }
  3638. ]
  3639. },
  3640. "gun": {
  3641. "attachment": [
  3642. { "time": 0, "name": null }
  3643. ]
  3644. },
  3645. "hand": {
  3646. "attachment": [
  3647. { "time": 0, "name": null }
  3648. ]
  3649. },
  3650. "hand1": {
  3651. "attachment": [
  3652. { "time": 0, "name": null }
  3653. ]
  3654. },
  3655. "left_front": {
  3656. "attachment": [
  3657. { "time": 0, "name": null }
  3658. ]
  3659. },
  3660. "lefthand__front": {
  3661. "attachment": [
  3662. { "time": 0, "name": null }
  3663. ]
  3664. },
  3665. "lefthand_front": {
  3666. "attachment": [
  3667. { "time": 0, "name": null }
  3668. ]
  3669. },
  3670. "leftleg_front": {
  3671. "attachment": [
  3672. { "time": 0, "name": null }
  3673. ]
  3674. },
  3675. "leftyanzhu_front": {
  3676. "attachment": [
  3677. { "time": 0, "name": null }
  3678. ]
  3679. },
  3680. "lian_front": {
  3681. "attachment": [
  3682. { "time": 0, "name": null }
  3683. ]
  3684. },
  3685. "meimao": {
  3686. "attachment": [
  3687. { "time": 0, "name": null }
  3688. ]
  3689. },
  3690. "meimao2": {
  3691. "attachment": [
  3692. { "time": 0, "name": null }
  3693. ]
  3694. },
  3695. "mouth": {
  3696. "attachment": [
  3697. { "time": 0, "name": null }
  3698. ]
  3699. },
  3700. "nose": {
  3701. "attachment": [
  3702. { "time": 0, "name": null }
  3703. ]
  3704. },
  3705. "right_front": {
  3706. "attachment": [
  3707. { "time": 0, "name": null }
  3708. ]
  3709. },
  3710. "rightleg_front": {
  3711. "attachment": [
  3712. { "time": 0, "name": null }
  3713. ]
  3714. },
  3715. "rightyanzhu_front": {
  3716. "attachment": [
  3717. { "time": 0, "name": null }
  3718. ]
  3719. },
  3720. "ringt_front": {
  3721. "attachment": [
  3722. { "time": 0, "name": null }
  3723. ]
  3724. },
  3725. "tail": {
  3726. "attachment": [
  3727. { "time": 0, "name": null }
  3728. ]
  3729. },
  3730. "tou_front": {
  3731. "attachment": [
  3732. { "time": 0, "name": null }
  3733. ]
  3734. },
  3735. "wuqi_front": {
  3736. "attachment": [
  3737. { "time": 0, "name": null }
  3738. ]
  3739. },
  3740. "yanjin_front": {
  3741. "attachment": [
  3742. { "time": 0, "name": null }
  3743. ]
  3744. },
  3745. "yanjing_front": {
  3746. "attachment": [
  3747. { "time": 0, "name": null }
  3748. ]
  3749. },
  3750. "yanzhu": {
  3751. "attachment": [
  3752. { "time": 0, "name": null }
  3753. ]
  3754. },
  3755. "yanzhu2": {
  3756. "attachment": [
  3757. { "time": 0, "name": null }
  3758. ]
  3759. },
  3760. "yanzhu3": {
  3761. "attachment": [
  3762. { "time": 0, "name": null }
  3763. ]
  3764. }
  3765. },
  3766. "bones": {
  3767. "body_back": {
  3768. "translate": [
  3769. { "time": 0, "x": 0, "y": 0 },
  3770. { "time": 0.5, "x": 0, "y": -2.73 },
  3771. { "time": 1, "x": 0, "y": 0 }
  3772. ]
  3773. },
  3774. "bone5": {
  3775. "rotate": [
  3776. { "time": 0, "angle": 0.22 },
  3777. { "time": 0.1, "angle": 0 },
  3778. { "time": 0.6, "angle": 1.12 },
  3779. { "time": 1, "angle": 0.22 }
  3780. ],
  3781. "translate": [
  3782. { "time": 0, "x": 0, "y": -0.36 },
  3783. { "time": 0.1, "x": 0, "y": 0 },
  3784. { "time": 0.6, "x": 0, "y": -1.82 },
  3785. { "time": 1, "x": 0, "y": -0.36 }
  3786. ]
  3787. },
  3788. "bone6": {
  3789. "rotate": [
  3790. { "time": 0, "angle": 0.55 },
  3791. { "time": 0.1667, "angle": 0 },
  3792. { "time": 0.6667, "angle": 1.67 },
  3793. { "time": 1, "angle": 0.55 }
  3794. ],
  3795. "translate": [
  3796. { "time": 0, "x": -0.59, "y": 0.32 },
  3797. { "time": 0.1667, "x": 0, "y": 0 },
  3798. { "time": 0.6667, "x": -1.78, "y": 0.98 },
  3799. { "time": 1, "x": -0.59, "y": 0.32 }
  3800. ]
  3801. },
  3802. "eye1_back": {
  3803. "rotate": [
  3804. { "time": 0, "angle": 4.71 },
  3805. { "time": 0.2, "angle": 0 },
  3806. { "time": 0.7, "angle": 12.81 },
  3807. { "time": 1, "angle": 4.71 }
  3808. ]
  3809. },
  3810. "eye2_back": {
  3811. "rotate": [
  3812. { "time": 0, "angle": -6.71 },
  3813. { "time": 0.2, "angle": 0 },
  3814. { "time": 0.7, "angle": -18.26 },
  3815. { "time": 1, "angle": -6.71 }
  3816. ]
  3817. },
  3818. "right arm_back": {
  3819. "rotate": [
  3820. { "time": 0, "angle": 3.89 },
  3821. { "time": 0.5, "angle": -7.67 },
  3822. { "time": 1, "angle": 3.89 }
  3823. ]
  3824. },
  3825. "bone7": {
  3826. "rotate": [
  3827. { "time": 0, "angle": 1.19 },
  3828. { "time": 0.5, "angle": 12.44 },
  3829. { "time": 1, "angle": 1.19 }
  3830. ]
  3831. },
  3832. "gun2": {
  3833. "translate": [
  3834. { "time": 0, "x": 0, "y": 0 },
  3835. { "time": 0.5, "x": 0, "y": -4.56 },
  3836. { "time": 1, "x": 0, "y": 0 }
  3837. ]
  3838. },
  3839. "bone11": {
  3840. "rotate": [
  3841. {
  3842. "time": 0,
  3843. "angle": 0,
  3844. "curve": [ 0.25, 0, 0.75, 1 ]
  3845. },
  3846. {
  3847. "time": 0.5,
  3848. "angle": -5.02,
  3849. "curve": [ 0.25, 0, 0.75, 1 ]
  3850. },
  3851. { "time": 1, "angle": 0 }
  3852. ],
  3853. "translate": [
  3854. {
  3855. "time": 0,
  3856. "x": -3.11,
  3857. "y": 1.17,
  3858. "curve": [ 0.25, 0, 0.75, 1 ]
  3859. },
  3860. {
  3861. "time": 0.5,
  3862. "x": -11.89,
  3863. "y": -17.82,
  3864. "curve": [ 0.25, 0, 0.75, 1 ]
  3865. },
  3866. { "time": 1, "x": -3.11, "y": 1.17 }
  3867. ]
  3868. },
  3869. "left arm_back": {
  3870. "translate": [
  3871. { "time": 0, "x": 0, "y": 0 },
  3872. { "time": 0.5, "x": -16.09, "y": 6.52 },
  3873. { "time": 1, "x": 0, "y": 0 }
  3874. ]
  3875. },
  3876. "tail_back": {
  3877. "rotate": [
  3878. { "time": 0, "angle": 0 },
  3879. { "time": 0.5, "angle": 15.17 },
  3880. { "time": 1, "angle": 0 }
  3881. ]
  3882. },
  3883. "bone8": {
  3884. "rotate": [
  3885. { "time": 0, "angle": 1.8 },
  3886. { "time": 0.1, "angle": 0 },
  3887. { "time": 0.6, "angle": 13.88 },
  3888. { "time": 1, "angle": 1.8 }
  3889. ]
  3890. },
  3891. "bone9": {
  3892. "rotate": [
  3893. { "time": 0, "angle": 5.99 },
  3894. { "time": 0.2, "angle": 0 },
  3895. { "time": 0.7, "angle": 16.28 },
  3896. { "time": 1, "angle": 5.99 }
  3897. ]
  3898. },
  3899. "left feet_back": {
  3900. "translate": [
  3901. { "time": 0, "x": 0, "y": 0 },
  3902. { "time": 0.5, "x": 0, "y": 2.73 },
  3903. { "time": 1, "x": 0, "y": 0 }
  3904. ]
  3905. },
  3906. "right feet_back": {
  3907. "translate": [
  3908. { "time": 0, "x": 0, "y": 0 },
  3909. { "time": 0.5, "x": 0, "y": 2.73 },
  3910. { "time": 1, "x": 0, "y": 0 }
  3911. ]
  3912. },
  3913. "bone_back": {
  3914. "translate": [
  3915. { "time": 0, "x": 339.6, "y": -3.5 }
  3916. ]
  3917. }
  3918. }
  3919. }
  3920. }
  3921. }