qingwa.json 115 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813
  1. {
  2. "skeleton": { "hash": "Oet8GwdJz5u/Yrvgs8LEWscwvsc", "spine": "3.8.99", "images": "E:/zhj_spine/小小领主/spine/qingwa/qingwa_3.8/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. {
  9. "name": "gun",
  10. "parent": "body",
  11. "length": 111.5,
  12. "rotation": 154.38,
  13. "x": 32.01,
  14. "y": 0.26,
  15. "color": "ff03ddff"
  16. },
  17. { "name": "K1", "parent": "gun", "rotation": -154.38, "x": 4.69, "y": -0.21, "color": "ff3f00ff" },
  18. {
  19. "name": "bone",
  20. "parent": "body",
  21. "length": 45.8,
  22. "rotation": 101.91,
  23. "x": -0.11,
  24. "y": 12.65,
  25. "color": "52ff03ff"
  26. },
  27. {
  28. "name": "arm",
  29. "parent": "bone",
  30. "length": 43.86,
  31. "rotation": 151.22,
  32. "x": 37.31,
  33. "y": -69.62,
  34. "color": "52ff03ff"
  35. },
  36. {
  37. "name": "hand",
  38. "parent": "arm",
  39. "length": 24.56,
  40. "rotation": -4.39,
  41. "x": 45.5,
  42. "y": 1.16,
  43. "color": "52ff03ff"
  44. },
  45. {
  46. "name": "arm2",
  47. "parent": "bone",
  48. "length": 43.3,
  49. "rotation": 108.03,
  50. "x": 42.39,
  51. "y": 12.13,
  52. "color": "52ff03ff"
  53. },
  54. { "name": "bone_back", "parent": "all", "x": -341.72, "y": 32.19, "color": "ff00ffff" },
  55. { "name": "body_back", "parent": "bone_back", "x": 1.44, "y": 69.53, "color": "ff00ffff" },
  56. {
  57. "name": "bone2",
  58. "parent": "bone",
  59. "length": 74.04,
  60. "rotation": -24.17,
  61. "x": 49.17,
  62. "y": -0.21,
  63. "color": "52ff03ff"
  64. },
  65. {
  66. "name": "tail",
  67. "parent": "body",
  68. "length": 13.11,
  69. "rotation": -39.09,
  70. "x": 65.39,
  71. "y": 5.02,
  72. "color": "52ff03ff"
  73. },
  74. {
  75. "name": "bone3",
  76. "parent": "tail",
  77. "length": 10.52,
  78. "rotation": 64.11,
  79. "x": 13.6,
  80. "y": 0.4,
  81. "color": "52ff03ff"
  82. },
  83. { "name": "bone4", "parent": "bone3", "length": 14.62, "rotation": 64.98, "x": 10.52, "color": "52ff03ff" },
  84. {
  85. "name": "bone5",
  86. "parent": "body_back",
  87. "length": 49.24,
  88. "rotation": 92.38,
  89. "x": -1.12,
  90. "y": 28.19,
  91. "color": "ff00ffff"
  92. },
  93. { "name": "bone6", "parent": "bone5", "length": 56.45, "rotation": -5.5, "x": 49.24, "color": "ff00ffff" },
  94. {
  95. "name": "right arm_back",
  96. "parent": "bone5",
  97. "length": 35.69,
  98. "rotation": -58.98,
  99. "x": 16.34,
  100. "y": -50.94,
  101. "color": "ff00ffff"
  102. },
  103. { "name": "bone7", "parent": "right arm_back", "length": 33.08, "rotation": 37.12, "x": 35.69, "color": "ff00ffff" },
  104. {
  105. "name": "tail_back",
  106. "parent": "body_back",
  107. "length": 15.26,
  108. "rotation": -142.3,
  109. "x": -19.12,
  110. "y": -12.78,
  111. "color": "ff00ffff"
  112. },
  113. { "name": "bone8", "parent": "tail_back", "length": 10.48, "rotation": -80.57, "x": 15.26, "color": "ff00ffff" },
  114. { "name": "bone9", "parent": "bone8", "length": 16.32, "rotation": -36.18, "x": 10.48, "color": "ff00ffff" },
  115. {
  116. "name": "gun2",
  117. "parent": "body_back",
  118. "length": 146.55,
  119. "rotation": 88.1,
  120. "x": -41.26,
  121. "y": 73.56,
  122. "color": "ff00ffff"
  123. },
  124. { "name": "bone11", "parent": "gun2", "rotation": -7.48, "x": 38.33, "y": 42.38, "color": "ff3f00ff" },
  125. { "name": "tou", "parent": "bone2", "rotation": 17.18, "x": 33.06, "y": 4.71, "color": "52ff03ff" },
  126. { "name": "eye", "parent": "tou", "x": 5.88, "y": -27.2, "color": "52ff03ff" },
  127. {
  128. "name": "eye1",
  129. "parent": "bone2",
  130. "length": 38.98,
  131. "rotation": -15.97,
  132. "x": 88.47,
  133. "y": -31.94,
  134. "color": "52ff03ff"
  135. },
  136. {
  137. "name": "eye2",
  138. "parent": "bone2",
  139. "length": 25.66,
  140. "rotation": 60.27,
  141. "x": 64.15,
  142. "y": 49.98,
  143. "color": "52ff03ff"
  144. },
  145. {
  146. "name": "eye1_back",
  147. "parent": "bone6",
  148. "length": 46.47,
  149. "rotation": 51.69,
  150. "x": 54.37,
  151. "y": 19.39,
  152. "color": "ff00ffff"
  153. },
  154. {
  155. "name": "eye2_back",
  156. "parent": "bone6",
  157. "length": 36.23,
  158. "rotation": -41.87,
  159. "x": 37.98,
  160. "y": -56.44,
  161. "color": "ff00ffff"
  162. },
  163. {
  164. "name": "face",
  165. "parent": "tou",
  166. "length": 16.49,
  167. "rotation": -67.37,
  168. "x": 22.43,
  169. "y": -15.22,
  170. "color": "52ff03ff"
  171. },
  172. {
  173. "name": "feet",
  174. "parent": "body",
  175. "length": 24.2,
  176. "rotation": -86.98,
  177. "x": 30.41,
  178. "y": -6.42,
  179. "color": "52ff03ff"
  180. },
  181. {
  182. "name": "feet1",
  183. "parent": "body",
  184. "length": 19.09,
  185. "rotation": -88.09,
  186. "x": -23,
  187. "y": -8.33,
  188. "color": "52ff03ff"
  189. },
  190. {
  191. "name": "hand1",
  192. "parent": "arm2",
  193. "length": 26.16,
  194. "rotation": -4.01,
  195. "x": 45.74,
  196. "y": -2.13,
  197. "color": "52ff03ff"
  198. },
  199. {
  200. "name": "left arm_back",
  201. "parent": "bone5",
  202. "length": 40.43,
  203. "rotation": 43.32,
  204. "x": 34.06,
  205. "y": 39.01,
  206. "color": "ff00ffff"
  207. },
  208. {
  209. "name": "left hand_back",
  210. "parent": "left arm_back",
  211. "length": 23.41,
  212. "rotation": -28.57,
  213. "x": 44.64,
  214. "y": -1.09,
  215. "color": "ff00ffff"
  216. },
  217. {
  218. "name": "left feet_back",
  219. "parent": "body_back",
  220. "length": 18.19,
  221. "rotation": -95.19,
  222. "x": -17.47,
  223. "y": -20.47,
  224. "color": "ff00ffff"
  225. },
  226. {
  227. "name": "meimao",
  228. "parent": "tou",
  229. "length": 15.01,
  230. "rotation": 48.68,
  231. "x": 26.2,
  232. "y": 23.38,
  233. "color": "52ff03ff"
  234. },
  235. { "name": "mouth", "parent": "tou", "x": -15.15, "y": 2.69, "color": "52ff03ff" },
  236. { "name": "nose", "parent": "tou", "x": 5.24, "y": 24.55, "color": "52ff03ff" },
  237. {
  238. "name": "right feet_back",
  239. "parent": "body_back",
  240. "length": 21.41,
  241. "rotation": -90,
  242. "x": 35.23,
  243. "y": -15.53,
  244. "color": "ff00ffff"
  245. },
  246. { "name": "shadow", "parent": "all", "x": -1.68, "y": 75.21, "color": "000000ff" },
  247. {
  248. "name": "tx",
  249. "parent": "K1",
  250. "rotation": -21.39,
  251. "x": -39.19,
  252. "y": 19.36,
  253. "scaleX": 0.902,
  254. "scaleY": 1.297,
  255. "color": "ff03ddff"
  256. },
  257. { "name": "tx2", "parent": "gun2", "rotation": 91.45, "x": 87.66, "y": 45.3, "color": "ff00ffff" },
  258. { "name": "yanzhu", "parent": "eye2", "x": 7.69, "y": 14.63, "color": "52ff03ff" },
  259. { "name": "yanzhu2", "parent": "eye1", "x": 12.14, "y": 9.09, "color": "52ff03ff" },
  260. { "name": "bone_front", "parent": "all", "x": 332.23, "y": 24.31, "color": "fdff00ff" },
  261. { "name": "body_front", "parent": "bone_front", "x": -0.64, "y": 79.23, "color": "fdff00ff" },
  262. {
  263. "name": "bone10",
  264. "parent": "body_front",
  265. "length": 62.57,
  266. "rotation": 87.66,
  267. "x": -1.45,
  268. "y": 26.55,
  269. "color": "fdff00ff"
  270. },
  271. {
  272. "name": "tou_front",
  273. "parent": "bone10",
  274. "length": 56.98,
  275. "rotation": 7.31,
  276. "x": 68.13,
  277. "y": 2.86,
  278. "color": "fdff00ff"
  279. },
  280. { "name": "lian_front", "parent": "tou_front", "x": 41.34, "y": -9.31, "color": "fdff00ff" },
  281. {
  282. "name": "left_front",
  283. "parent": "tou_front",
  284. "length": 43.45,
  285. "rotation": 33.45,
  286. "x": 53.65,
  287. "y": 31.05,
  288. "color": "fdff00ff"
  289. },
  290. {
  291. "name": "ringt_front",
  292. "parent": "tou_front",
  293. "length": 44.03,
  294. "rotation": -52.13,
  295. "x": 42.59,
  296. "y": -48.67,
  297. "color": "fdff00ff"
  298. },
  299. { "name": "rightyanzhu_front", "parent": "left_front", "x": 17.54, "y": 14.56, "color": "fdff00ff" },
  300. { "name": "leftyanzhu_front", "parent": "ringt_front", "x": 16.46, "y": 15.16, "color": "fdff00ff" },
  301. {
  302. "name": "lefthand__front",
  303. "parent": "bone10",
  304. "length": 26.98,
  305. "rotation": 138.22,
  306. "x": 33.46,
  307. "y": 52.92,
  308. "color": "fdff00ff"
  309. },
  310. { "name": "bone12", "parent": "lefthand__front", "length": 28.33, "rotation": -5.92, "x": 26.98, "color": "fdff00ff" },
  311. {
  312. "name": "gun3",
  313. "parent": "bone10",
  314. "length": 115.09,
  315. "rotation": -177.71,
  316. "x": 31.88,
  317. "y": -63.54,
  318. "color": "fdff00ff"
  319. },
  320. { "name": "k3", "parent": "gun3", "rotation": 65.07, "x": 24.94, "y": 34.11, "color": "ff3f00ff" },
  321. {
  322. "name": "right_front",
  323. "parent": "bone10",
  324. "length": 20.71,
  325. "rotation": -139.41,
  326. "x": 42.68,
  327. "y": -56.66,
  328. "color": "fdff00ff"
  329. },
  330. { "name": "lefthand_front", "parent": "right_front", "length": 15, "x": 23.04, "y": -0.27, "color": "fdff00ff" },
  331. {
  332. "name": "leftleg_front",
  333. "parent": "body_front",
  334. "length": 32.33,
  335. "rotation": -93.12,
  336. "x": -24.2,
  337. "y": 5.79,
  338. "color": "fdff00ff"
  339. },
  340. {
  341. "name": "rightleg_front",
  342. "parent": "body_front",
  343. "length": 25.83,
  344. "rotation": -91.3,
  345. "x": 29.81,
  346. "y": 2.27,
  347. "color": "fdff00ff"
  348. },
  349. { "name": "bizi_front", "parent": "tou_front", "x": -11.14, "y": 4.28, "color": "fdff00ff" },
  350. { "name": "tx3", "parent": "gun3", "x": 57.13, "y": 33.52, "color": "fdff00ff" }
  351. ],
  352. "slots": [
  353. { "name": "shadow", "bone": "shadow", "attachment": "shadow" },
  354. { "name": "rightleg_front", "bone": "rightleg_front", "attachment": "rightleg_front" },
  355. { "name": "leftleg_front", "bone": "leftleg_front", "attachment": "leftleg_front" },
  356. { "name": "body_front", "bone": "body_front", "attachment": "body_front" },
  357. { "name": "feet1", "bone": "feet1", "attachment": "feet1" },
  358. { "name": "tail", "bone": "tail", "attachment": "tail" },
  359. { "name": "feet", "bone": "feet", "attachment": "feet" },
  360. { "name": "hand1", "bone": "hand1", "attachment": "hand1" },
  361. { "name": "arm2", "bone": "arm2", "attachment": "arm2" },
  362. { "name": "eye2", "bone": "eye2", "attachment": "eye2" },
  363. { "name": "body1", "bone": "body", "attachment": "body1" },
  364. { "name": "face", "bone": "tou", "attachment": "face" },
  365. { "name": "eye", "bone": "eye", "attachment": "eye" },
  366. { "name": "meimao2", "bone": "face", "attachment": "meimao2" },
  367. { "name": "meimao", "bone": "meimao", "attachment": "meimao" },
  368. { "name": "nose", "bone": "nose", "attachment": "nose" },
  369. { "name": "yanzhu3", "bone": "eye", "attachment": "yanzhu3" },
  370. { "name": "mouth", "bone": "mouth", "attachment": "mouth" },
  371. { "name": "eye1", "bone": "eye1", "attachment": "eye1" },
  372. { "name": "yanzhu2", "bone": "yanzhu2", "attachment": "yanzhu2" },
  373. { "name": "yanzhu", "bone": "yanzhu", "attachment": "yanzhu" },
  374. { "name": "gun", "bone": "K1", "attachment": "jian" },
  375. { "name": "hand", "bone": "hand", "attachment": "hand" },
  376. { "name": "arm", "bone": "arm", "attachment": "arm" },
  377. { "name": "jianqi", "bone": "tx", "blend": "additive" },
  378. { "name": "jian_back", "bone": "bone11", "attachment": "jian_back" },
  379. { "name": "left hand_back", "bone": "left hand_back", "attachment": "left hand_back" },
  380. { "name": "left arm_back", "bone": "left arm_back", "attachment": "left arm_back" },
  381. { "name": "right hand_back", "bone": "bone7", "attachment": "right hand_back" },
  382. { "name": "right arm_back", "bone": "right arm_back", "attachment": "right arm_back" },
  383. { "name": "right feet_back", "bone": "right feet_back", "attachment": "right feet_back" },
  384. { "name": "left feet_back", "bone": "left feet_back", "attachment": "left feet_back" },
  385. { "name": "eye1_back", "bone": "eye1_back", "attachment": "eye1_back" },
  386. { "name": "eye2_back", "bone": "eye2_back", "attachment": "eye2_back" },
  387. { "name": "body_back", "bone": "body_back", "attachment": "body_back" },
  388. { "name": "tail_back", "bone": "tail_back", "attachment": "tail_back" },
  389. { "name": "tx2", "bone": "tx2", "blend": "additive" },
  390. { "name": "tou_front", "bone": "tou_front", "attachment": "tou_front" },
  391. { "name": "left_front", "bone": "left_front", "attachment": "left_front" },
  392. { "name": "lian_front", "bone": "lian_front", "attachment": "lian_front" },
  393. { "name": "lefthand__front", "bone": "lefthand__front", "attachment": "lefthand__front" },
  394. { "name": "right_front", "bone": "right_front", "attachment": "right_front" },
  395. { "name": "ringt_front", "bone": "ringt_front", "attachment": "ringt_front" },
  396. { "name": "wuqi_front", "bone": "k3", "attachment": "wuqi_front" },
  397. { "name": "lefthand_front", "bone": "k3", "attachment": "lefthand_front" },
  398. { "name": "yanjin_front", "bone": "lian_front", "attachment": "yanjin_front" },
  399. { "name": "yanjing_front", "bone": "lian_front", "attachment": "yanjing_front" },
  400. { "name": "rightyanzhu_front", "bone": "rightyanzhu_front", "attachment": "rightyanzhu_front" },
  401. { "name": "leftyanzhu_front", "bone": "leftyanzhu_front", "attachment": "leftyanzhu_front" },
  402. { "name": "bizi_front", "bone": "bizi_front", "attachment": "bizi_front" },
  403. { "name": "bingzi_front", "bone": "lian_front", "attachment": "bingzi_front" },
  404. { "name": "bikong_front", "bone": "lian_front", "attachment": "bikong_front" },
  405. { "name": "bingkou2_front", "bone": "lian_front", "attachment": "bingkou2_front" },
  406. { "name": "tx3", "bone": "tx3", "blend": "additive" }
  407. ],
  408. "ik": [
  409. {
  410. "name": "K2",
  411. "bones": [ "left arm_back", "left hand_back" ],
  412. "target": "bone11",
  413. "bendPositive": false
  414. },
  415. {
  416. "name": "k1",
  417. "order": 1,
  418. "bones": [ "arm", "hand" ],
  419. "target": "K1",
  420. "bendPositive": false
  421. },
  422. {
  423. "name": "k3",
  424. "order": 2,
  425. "bones": [ "right_front", "lefthand_front" ],
  426. "target": "k3"
  427. }
  428. ],
  429. "skins": [
  430. {
  431. "name": "default",
  432. "attachments": {
  433. "arm": {
  434. "arm": {
  435. "type": "mesh",
  436. "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 ],
  437. "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 ],
  438. "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 ],
  439. "hull": 19,
  440. "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 ],
  441. "width": 58,
  442. "height": 60
  443. }
  444. },
  445. "arm2": {
  446. "arm2": {
  447. "type": "mesh",
  448. "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 ],
  449. "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 ],
  450. "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 ],
  451. "hull": 15,
  452. "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 ],
  453. "width": 65,
  454. "height": 61
  455. }
  456. },
  457. "bikong_front": {
  458. "bikong_front": { "x": -26.12, "y": 18.72, "rotation": -94.97, "width": 10, "height": 18 }
  459. },
  460. "bingkou2_front": {
  461. "bingkou2_front": { "x": -26.69, "y": -1.6, "rotation": -94.97, "width": 10, "height": 18 }
  462. },
  463. "bingzi_front": {
  464. "bingzi_front": { "x": -27.26, "y": 5.64, "rotation": -94.97, "width": 58, "height": 40 }
  465. },
  466. "bizi_front": {
  467. "bizi_front": { "x": 0.35, "y": -4.59, "rotation": -94.97, "width": 17, "height": 21 }
  468. },
  469. "body1": {
  470. "body1": {
  471. "type": "mesh",
  472. "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 ],
  473. "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 ],
  474. "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 ],
  475. "hull": 22,
  476. "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 ],
  477. "width": 158,
  478. "height": 179
  479. }
  480. },
  481. "body_back": {
  482. "body_back": {
  483. "type": "mesh",
  484. "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 ],
  485. "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 ],
  486. "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 ],
  487. "hull": 34,
  488. "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 ],
  489. "width": 159,
  490. "height": 183
  491. }
  492. },
  493. "body_front": {
  494. "body_front": {
  495. "type": "mesh",
  496. "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 ],
  497. "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 ],
  498. "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 ],
  499. "hull": 22,
  500. "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 ],
  501. "width": 167,
  502. "height": 119
  503. }
  504. },
  505. "eye": {
  506. "eye": { "x": 2.03, "y": 3.57, "rotation": -94.92, "width": 42, "height": 31 }
  507. },
  508. "eye1": {
  509. "eye1": { "x": 17.48, "y": -2.83, "rotation": -61.76, "width": 69, "height": 68 }
  510. },
  511. "eye1_back": {
  512. "eye1_back": { "x": 24.28, "y": 0.75, "rotation": -138.57, "width": 77, "height": 76 }
  513. },
  514. "eye2": {
  515. "eye2": { "x": 10.47, "y": 4.81, "rotation": -138.01, "width": 57, "height": 58 }
  516. },
  517. "eye2_back": {
  518. "eye2_back": { "x": 22.43, "y": 1.83, "rotation": -45, "width": 65, "height": 66 }
  519. },
  520. "face": {
  521. "face": { "x": 2.58, "y": -4.09, "rotation": -94.92, "width": 104, "height": 85 }
  522. },
  523. "feet": {
  524. "feet": { "x": 13.62, "y": 1.59, "rotation": 86.98, "width": 35, "height": 35 }
  525. },
  526. "feet1": {
  527. "feet1": { "x": 12.14, "y": 0.83, "rotation": 88.09, "width": 34, "height": 34 }
  528. },
  529. "gun": {
  530. "jian": { "x": -39.32, "y": 15.21, "width": 147, "height": 97 }
  531. },
  532. "hand": {
  533. "hand": {
  534. "type": "mesh",
  535. "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 ],
  536. "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 ],
  537. "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 ],
  538. "hull": 18,
  539. "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 ],
  540. "width": 46,
  541. "height": 55
  542. }
  543. },
  544. "hand1": {
  545. "hand1": { "x": 9.22, "y": -1.75, "rotation": 154.05, "width": 56, "height": 50 }
  546. },
  547. "jian_back": {
  548. "jian_back": {
  549. "type": "mesh",
  550. "uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
  551. "triangles": [ 1, 2, 3, 1, 3, 0 ],
  552. "vertices": [ -34.59, -32.21, -36.91, 37.75, 123.01, 43.05, 125.33, -26.91 ],
  553. "hull": 4,
  554. "edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
  555. "width": 70,
  556. "height": 160
  557. }
  558. },
  559. "jianqi": {
  560. "down_28": {
  561. "type": "mesh",
  562. "uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
  563. "triangles": [ 1, 2, 3, 1, 3, 0 ],
  564. "vertices": [ -125.61, 58.17, 164.38, 58.52, 164.51, -54.47, -125.48, -54.82 ],
  565. "hull": 4,
  566. "edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
  567. "width": 290,
  568. "height": 113
  569. },
  570. "down_30": {
  571. "type": "mesh",
  572. "uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
  573. "triangles": [ 1, 2, 3, 1, 3, 0 ],
  574. "vertices": [ -176.6, 59.76, 113.4, 59.74, 113.39, -53.25, -176.61, -53.23 ],
  575. "hull": 4,
  576. "edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
  577. "width": 290,
  578. "height": 113
  579. },
  580. "down_32": {
  581. "type": "mesh",
  582. "uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
  583. "triangles": [ 1, 2, 3, 1, 3, 0 ],
  584. "vertices": [ -178.07, 57.42, 111.93, 57.4, 111.92, -55.59, -178.08, -55.57 ],
  585. "hull": 4,
  586. "edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
  587. "width": 290,
  588. "height": 113
  589. },
  590. "down_34": {
  591. "type": "mesh",
  592. "uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
  593. "triangles": [ 1, 2, 3, 1, 3, 0 ],
  594. "vertices": [ -234.94, 59.38, 55.06, 59.36, 55.05, -53.63, -234.95, -53.61 ],
  595. "hull": 4,
  596. "edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
  597. "width": 290,
  598. "height": 113
  599. }
  600. },
  601. "left_front": {
  602. "left_front": { "x": 23.25, "y": 4.57, "rotation": -128.42, "width": 69, "height": 68 }
  603. },
  604. "left arm_back": {
  605. "left arm_back": {
  606. "type": "mesh",
  607. "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 ],
  608. "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 ],
  609. "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 ],
  610. "hull": 15,
  611. "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 ],
  612. "width": 62,
  613. "height": 68
  614. }
  615. },
  616. "left feet_back": {
  617. "left feet_back": { "x": 6.69, "y": -1.37, "rotation": 95.19, "width": 34, "height": 35 }
  618. },
  619. "lefthand__front": {
  620. "lefthand__front": {
  621. "type": "mesh",
  622. "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 ],
  623. "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 ],
  624. "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 ],
  625. "hull": 21,
  626. "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 ],
  627. "width": 63,
  628. "height": 63
  629. }
  630. },
  631. "left hand_back": {
  632. "left hand_back": {
  633. "type": "mesh",
  634. "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 ],
  635. "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 ],
  636. "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 ],
  637. "hull": 17,
  638. "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 ],
  639. "width": 53,
  640. "height": 59
  641. }
  642. },
  643. "lefthand_front": {
  644. "lefthand_front": { "x": -3.23, "y": 6.55, "rotation": -16.02, "width": 38, "height": 40 }
  645. },
  646. "leftleg_front": {
  647. "leftleg_front": { "x": 17.4, "y": -1.41, "rotation": 93.12, "width": 38, "height": 44 }
  648. },
  649. "leftyanzhu_front": {
  650. "leftyanzhu_front": { "x": -0.2, "y": 0.62, "rotation": -42.84, "width": 11, "height": 11 }
  651. },
  652. "lian_front": {
  653. "lian_front": { "x": -33.1, "y": 7.34, "rotation": -94.97, "width": 112, "height": 83 }
  654. },
  655. "meimao": {
  656. "meimao": { "x": 4.98, "y": 2.65, "rotation": -143.61, "width": 20, "height": 19 }
  657. },
  658. "meimao2": {
  659. "meimao2": { "x": 4.82, "y": -0.71, "rotation": -27.55, "width": 32, "height": 24 }
  660. },
  661. "mouth": {
  662. "mouth": { "x": -0.67, "y": 0.81, "rotation": -94.92, "width": 42, "height": 27 }
  663. },
  664. "nose": {
  665. "nose": { "x": -2.15, "y": -2.23, "rotation": -94.92, "width": 58, "height": 36 }
  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, -8.74, -8.09, 0.98913, 61, -31.68, -8.2, 0.01087, 1, 60, -8.68, 0.14, 1, 1, 60, -8.03, 9.48, 1, 1, 60, -5.05, 15.88, 1, 2, 60, 3.22, 19.1, 0.98552, 61, -20.05, 19.14, 0.01448, 3, 60, 17.48, 20.65, 0.71876, 61, -5.8, 20.86, 0.28068, 59, -26.8, 29.68, 5.6E-4, 3, 60, 34.06, 21.06, 0.15436, 61, 10.77, 21.46, 0.73537, 59, -10.74, 25.55, 0.11026, 3, 60, 52.05, 16.93, 6.3E-4, 61, 28.81, 17.54, 0.32071, 59, 5.45, 16.68, 0.67866, 2, 61, 38.92, 6.71, 0.00681, 59, 12.07, 3.43, 0.99319, 1, 59, 9.2, -7.64, 1, 2, 61, 33.92, -11.47, 0.03031, 59, 2.11, -12.59, 0.96969, 2, 61, 25.05, -10.77, 0.41865, 59, -6.19, -9.41, 0.58135, 3, 60, 42.61, -17.09, 0.01008, 61, 19.77, -16.59, 0.82482, 59, -12.9, -13.48, 0.1651, 3, 60, 33.92, -23.77, 0.11792, 61, 11.16, -23.37, 0.8661, 59, -23.08, -17.54, 0.01598, 2, 60, 22.73, -28.07, 0.36763, 61, 0.02, -27.8, 0.63237, 2, 60, 8.49, -29.17, 0.67062, 61, -14.21, -29.07, 0.32938, 2, 60, -5.06, -19.06, 0.91664, 61, -27.88, -19.12, 0.08336, 2, 60, 7.82, -19.46, 0.757, 61, -14.99, -19.36, 0.243, 2, 60, 5.57, -8.3, 0.94157, 61, -17.37, -8.23, 0.05843, 1, 60, 3.88, 4.84, 1, 2, 60, 19.78, -15.87, 0.43721, 61, -3.07, -15.64, 0.56279, 2, 60, 16.52, -6.28, 0.76812, 61, -6.44, -6.08, 0.23188, 2, 60, 14.01, 5.95, 0.96834, 61, -9.1, 6.12, 0.03166, 3, 60, 30.83, -11.24, 0.05911, 61, 7.92, -10.87, 0.93054, 59, -22.64, -4.64, 0.01036, 3, 60, 26.2, 5.7, 0.2097, 61, 3.09, 6.01, 0.78875, 59, -22.49, 12.92, 0.00156, 2, 61, 20.74, 0.52, 0.60731, 59, -7.11, 2.65, 0.39269, 3, 60, 48.99, 9.83, 4.7E-4, 61, 25.83, 10.4, 0.31621, 59, 0.57, 10.68, 0.68332, 1, 59, 4.22, -1.99, 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. "right arm_back": {
  680. "right arm_back": { "x": 21.41, "y": -2.05, "rotation": 39.17, "width": 65, "height": 61 }
  681. },
  682. "right feet_back": {
  683. "right feet_back": { "x": 12.83, "y": 0.06, "rotation": 89.99, "width": 34, "height": 33 }
  684. },
  685. "right hand_back": {
  686. "right hand_back": { "x": 16.64, "y": -0.86, "rotation": 16.18, "width": 62, "height": 52 }
  687. },
  688. "rightleg_front": {
  689. "rightleg_front": { "x": 16.16, "y": 0.13, "rotation": 91.3, "width": 38, "height": 44 }
  690. },
  691. "rightyanzhu_front": {
  692. "rightyanzhu_front": { "x": -1.72, "y": 0.56, "rotation": -128.42, "width": 11, "height": 11 }
  693. },
  694. "ringt_front": {
  695. "ringt_front": { "x": 25.14, "y": 4.29, "rotation": -42.84, "width": 69, "height": 68 }
  696. },
  697. "shadow": {
  698. "shadow": { "x": 1.11, "y": -1.2, "width": 102, "height": 24 }
  699. },
  700. "tail": {
  701. "tail": {
  702. "type": "mesh",
  703. "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 ],
  704. "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 ],
  705. "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 ],
  706. "hull": 21,
  707. "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 ],
  708. "width": 36,
  709. "height": 34
  710. }
  711. },
  712. "tail_back": {
  713. "tail_back": {
  714. "type": "mesh",
  715. "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 ],
  716. "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 ],
  717. "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 ],
  718. "hull": 31,
  719. "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 ],
  720. "width": 36,
  721. "height": 34
  722. }
  723. },
  724. "tou_front": {
  725. "tou_front": {
  726. "type": "mesh",
  727. "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 ],
  728. "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 ],
  729. "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 ],
  730. "hull": 17,
  731. "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 ],
  732. "width": 145,
  733. "height": 101
  734. }
  735. },
  736. "tx2": {
  737. "down_28": {
  738. "type": "mesh",
  739. "uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
  740. "triangles": [ 1, 2, 3, 1, 3, 0 ],
  741. "vertices": [ -63.18, -97.97, -56.74, 99.04, 63.18, 97.97, 56.74, -99.04 ],
  742. "hull": 4,
  743. "edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
  744. "width": 290,
  745. "height": 113
  746. },
  747. "down_30": {
  748. "x": 0.34,
  749. "y": 18.91,
  750. "scaleX": 0.925,
  751. "scaleY": 0.915,
  752. "rotation": -91.04,
  753. "width": 290,
  754. "height": 113
  755. },
  756. "down_32": { "x": -1.84, "y": 28.41, "rotation": -91.04, "width": 290, "height": 113 },
  757. "down_34": { "x": -1.84, "y": 28.41, "rotation": -91.04, "width": 290, "height": 113 }
  758. },
  759. "tx3": {
  760. "down_28": { "width": 290, "height": 113 },
  761. "down_30": { "width": 290, "height": 113 },
  762. "down_32": { "width": 290, "height": 113 },
  763. "down_34": { "width": 290, "height": 113 }
  764. },
  765. "wuqi_front": {
  766. "wuqi_front": {
  767. "type": "mesh",
  768. "uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
  769. "triangles": [ 1, 2, 3, 1, 3, 0 ],
  770. "vertices": [ 58.61, -101.78, -32.39, -101.78, -32.39, 50.22, 58.61, 50.22 ],
  771. "hull": 4,
  772. "edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
  773. "width": 91,
  774. "height": 152
  775. }
  776. },
  777. "yanjin_front": {
  778. "yanjin_front": { "x": -16.45, "y": 5.9, "rotation": -94.97, "width": 129, "height": 30 }
  779. },
  780. "yanjing_front": {
  781. "yanjing_front": { "x": -16.56, "y": 6.28, "rotation": -94.97, "width": 66, "height": 21 }
  782. },
  783. "yanzhu": {
  784. "yanzhu": { "x": -1.27, "y": 0.66, "rotation": -138.01, "width": 11, "height": 11 }
  785. },
  786. "yanzhu2": {
  787. "yanzhu2": { "x": -2.19, "y": 1.04, "rotation": -61.76, "width": 11, "height": 11 }
  788. },
  789. "yanzhu3": {
  790. "yanzhu3": { "x": 2.88, "y": 7.52, "rotation": -94.92, "width": 10, "height": 10 }
  791. }
  792. }
  793. }
  794. ],
  795. "events": {
  796. "hit1": {}
  797. },
  798. "animations": {
  799. "attack_down": {
  800. "slots": {
  801. "arm": {
  802. "attachment": [
  803. { "name": null }
  804. ]
  805. },
  806. "arm2": {
  807. "attachment": [
  808. { "name": null }
  809. ]
  810. },
  811. "body1": {
  812. "attachment": [
  813. { "name": null }
  814. ]
  815. },
  816. "body_back": {
  817. "attachment": [
  818. { "name": null }
  819. ]
  820. },
  821. "eye": {
  822. "attachment": [
  823. { "name": null }
  824. ]
  825. },
  826. "eye1": {
  827. "attachment": [
  828. { "name": null }
  829. ]
  830. },
  831. "eye1_back": {
  832. "attachment": [
  833. { "name": null }
  834. ]
  835. },
  836. "eye2": {
  837. "attachment": [
  838. { "name": null }
  839. ]
  840. },
  841. "eye2_back": {
  842. "attachment": [
  843. { "name": null }
  844. ]
  845. },
  846. "face": {
  847. "attachment": [
  848. { "name": null }
  849. ]
  850. },
  851. "feet": {
  852. "attachment": [
  853. { "name": null }
  854. ]
  855. },
  856. "feet1": {
  857. "attachment": [
  858. { "name": null }
  859. ]
  860. },
  861. "gun": {
  862. "attachment": [
  863. { "name": null }
  864. ]
  865. },
  866. "hand": {
  867. "attachment": [
  868. { "name": null }
  869. ]
  870. },
  871. "hand1": {
  872. "attachment": [
  873. { "name": null }
  874. ]
  875. },
  876. "jian_back": {
  877. "attachment": [
  878. { "name": null }
  879. ]
  880. },
  881. "left arm_back": {
  882. "attachment": [
  883. { "name": null }
  884. ]
  885. },
  886. "left feet_back": {
  887. "attachment": [
  888. { "name": null }
  889. ]
  890. },
  891. "left hand_back": {
  892. "attachment": [
  893. { "name": null }
  894. ]
  895. },
  896. "meimao": {
  897. "attachment": [
  898. { "name": null }
  899. ]
  900. },
  901. "meimao2": {
  902. "attachment": [
  903. { "name": null }
  904. ]
  905. },
  906. "mouth": {
  907. "attachment": [
  908. { "name": null }
  909. ]
  910. },
  911. "nose": {
  912. "attachment": [
  913. { "name": null }
  914. ]
  915. },
  916. "right arm_back": {
  917. "attachment": [
  918. { "name": null }
  919. ]
  920. },
  921. "right feet_back": {
  922. "attachment": [
  923. { "name": null }
  924. ]
  925. },
  926. "right hand_back": {
  927. "attachment": [
  928. { "name": null }
  929. ]
  930. },
  931. "tail": {
  932. "attachment": [
  933. { "name": null }
  934. ]
  935. },
  936. "tail_back": {
  937. "attachment": [
  938. { "name": null }
  939. ]
  940. },
  941. "tx3": {
  942. "color": [
  943. { "time": 0.2667, "color": "ffffffff" },
  944. { "time": 0.4667, "color": "ffffff01" }
  945. ],
  946. "attachment": [
  947. { "time": 0.1667, "name": "down_28" },
  948. { "time": 0.2, "name": "down_30" },
  949. { "time": 0.2333, "name": "down_32" },
  950. { "time": 0.2667, "name": "down_34" }
  951. ]
  952. },
  953. "yanzhu": {
  954. "attachment": [
  955. { "name": null }
  956. ]
  957. },
  958. "yanzhu2": {
  959. "attachment": [
  960. { "name": null }
  961. ]
  962. },
  963. "yanzhu3": {
  964. "attachment": [
  965. { "name": null }
  966. ]
  967. }
  968. },
  969. "bones": {
  970. "tx3": {
  971. "rotate": [
  972. { "time": 0.1667, "angle": -22.41 },
  973. { "time": 0.2, "angle": -18.89 }
  974. ],
  975. "translate": [
  976. { "time": 0.1667, "x": -50.83, "y": 19.07 },
  977. { "time": 0.2, "x": -23.27, "y": 46.57 },
  978. { "time": 0.2333, "x": 57.07, "y": -27.74 },
  979. { "time": 0.2667, "x": 145.96, "y": -101.93 },
  980. { "time": 0.4, "x": 226.93, "y": -126.02 }
  981. ],
  982. "scale": [
  983. { "time": 0.1667, "x": 0.76, "y": 1.149 },
  984. { "time": 0.2, "x": 0.76, "y": 1.217 },
  985. { "time": 0.2333, "x": 0.878, "y": 1.425 },
  986. { "time": 0.2667, "x": 0.991, "y": 1.95 },
  987. { "time": 0.4, "x": 1.23, "y": 2.368 }
  988. ]
  989. },
  990. "lefthand_front": {
  991. "rotate": [
  992. { "angle": 1.75 }
  993. ],
  994. "translate": [
  995. {},
  996. { "time": 0.1333, "x": 7.05, "y": 0.37 },
  997. { "time": 0.2, "x": 87.84, "y": -27.05 },
  998. { "time": 0.2667, "x": 50.12, "y": 9.14 },
  999. { "time": 0.4, "x": 61.18, "y": 11.53 },
  1000. { "time": 0.5333 }
  1001. ]
  1002. },
  1003. "lefthand__front": {
  1004. "rotate": [
  1005. {},
  1006. { "time": 0.1333, "angle": 7.55 },
  1007. { "time": 0.2 },
  1008. { "time": 0.2667, "angle": 7.21, "curve": "stepped" },
  1009. { "time": 0.4333, "angle": 7.21 },
  1010. { "time": 0.5333 }
  1011. ]
  1012. },
  1013. "leftyanzhu_front": {
  1014. "rotate": [
  1015. {},
  1016. { "time": 0.1333, "angle": -26.65 },
  1017. { "time": 0.2333, "angle": 10.74 },
  1018. { "time": 0.3333, "angle": -3.82 },
  1019. { "time": 0.4, "angle": 8.48 },
  1020. { "time": 0.5333 }
  1021. ],
  1022. "translate": [
  1023. {},
  1024. { "time": 0.1333, "x": -2.32, "y": -4.45 },
  1025. { "time": 0.2333, "x": 1.8, "y": 0.38 },
  1026. { "time": 0.3333, "x": 2.31, "y": -1.84 },
  1027. { "time": 0.4, "x": 2.17, "y": 0.38 },
  1028. { "time": 0.5333 }
  1029. ]
  1030. },
  1031. "left_front": {
  1032. "rotate": [
  1033. { "angle": -1.47 },
  1034. { "time": 0.1333, "angle": 4.63 },
  1035. { "time": 0.2333, "angle": -7.08 },
  1036. { "time": 0.3333, "angle": 4.28 },
  1037. { "time": 0.4, "angle": -5.6 },
  1038. { "time": 0.5333, "angle": -1.47 }
  1039. ]
  1040. },
  1041. "rightyanzhu_front": {
  1042. "rotate": [
  1043. {},
  1044. { "time": 0.1333, "angle": 22.38 },
  1045. { "time": 0.2333, "angle": -7.64 },
  1046. { "time": 0.3333, "angle": 31.99 },
  1047. { "time": 0.4, "angle": -5.81 },
  1048. { "time": 0.5333 }
  1049. ],
  1050. "translate": [
  1051. {},
  1052. { "time": 0.1333, "x": -0.19, "y": 5.57 },
  1053. { "time": 0.2333, "x": 1.72, "y": -1.79 },
  1054. { "time": 0.3333, "x": -0.06, "y": 1.39 },
  1055. { "time": 0.4, "x": 1.18, "y": -5.45 },
  1056. { "time": 0.5333 }
  1057. ]
  1058. },
  1059. "right_front": {
  1060. "rotate": [
  1061. { "angle": -14.66 }
  1062. ],
  1063. "translate": [
  1064. { "x": -6.29, "y": -2.66 },
  1065. { "time": 0.2667, "x": -25.99, "y": 1.49 },
  1066. { "time": 0.4, "x": -6.29, "y": -2.66 }
  1067. ]
  1068. },
  1069. "ringt_front": {
  1070. "rotate": [
  1071. { "angle": 1.51 },
  1072. { "time": 0.1333, "angle": -4 },
  1073. { "time": 0.2333, "angle": 5.64 },
  1074. { "time": 0.3333, "angle": -4.38 },
  1075. { "time": 0.4, "angle": 10.72 },
  1076. { "time": 0.5333, "angle": 1.51 }
  1077. ]
  1078. },
  1079. "tou_front": {
  1080. "translate": [
  1081. { "curve": 0.25, "c3": 0.75 },
  1082. { "time": 0.1333, "x": -10.07, "y": -0.41, "curve": 0.25, "c3": 0.75 },
  1083. { "time": 0.2333, "x": 2.21, "y": -4.3, "curve": 0.25, "c3": 0.75 },
  1084. { "time": 0.3333, "x": -4.98, "y": -3.87, "curve": 0.25, "c3": 0.75 },
  1085. { "time": 0.4 }
  1086. ]
  1087. },
  1088. "k3": {
  1089. "rotate": [
  1090. { "angle": -15.98 },
  1091. { "time": 0.1333, "angle": -20.86 },
  1092. { "time": 0.2, "angle": -14.6 },
  1093. { "time": 0.2667, "angle": -17.64, "curve": "stepped" },
  1094. { "time": 0.4333, "angle": -17.64 },
  1095. { "time": 0.5333, "angle": -15.98 }
  1096. ],
  1097. "translate": [
  1098. { "x": 6.81, "y": -0.42 },
  1099. { "time": 0.1333, "x": 12.85, "y": -28.11 },
  1100. { "time": 0.2, "x": -97.45, "y": 76.01 },
  1101. { "time": 0.2667, "x": 71.16, "y": -60.01, "curve": "stepped" },
  1102. { "time": 0.4333, "x": 71.16, "y": -60.01 },
  1103. { "time": 0.5333, "x": 6.81, "y": -0.42 }
  1104. ]
  1105. },
  1106. "bone_left": {
  1107. "translate": [
  1108. { "x": 581.94 }
  1109. ]
  1110. },
  1111. "bone_front": {
  1112. "translate": [
  1113. { "x": -332.15, "y": -0.91 }
  1114. ]
  1115. },
  1116. "bone10": {
  1117. "rotate": [
  1118. { "time": 0.1333 },
  1119. { "time": 0.2333, "angle": 0.16 },
  1120. { "time": 0.3333 }
  1121. ],
  1122. "translate": [
  1123. { "curve": 0.25, "c3": 0.75 },
  1124. { "time": 0.1333, "x": -1.44, "y": -8.64, "curve": 0.25, "c3": 0.75 },
  1125. { "time": 0.2333, "x": -1.44, "y": 2.88, "curve": 0.25, "c3": 0.75 },
  1126. { "time": 0.3333, "x": -1.44, "y": -1.44, "curve": 0.25, "c3": 0.75 },
  1127. { "time": 0.4 }
  1128. ]
  1129. },
  1130. "bone12": {
  1131. "rotate": [
  1132. { "angle": 9.33, "curve": 0.351, "c2": 0.4, "c3": 0.757 },
  1133. { "time": 0.0667, "curve": 0.25, "c3": 0.75 },
  1134. { "time": 0.2, "angle": 12.42, "curve": 0.25, "c3": 0.75 },
  1135. { "time": 0.2667, "curve": 0.25, "c3": 0.75 },
  1136. { "time": 0.3333, "angle": 13.02, "curve": "stepped" },
  1137. { "time": 0.5, "angle": 13.02, "curve": 0.265, "c3": 0.618, "c4": 0.43 },
  1138. { "time": 0.5333, "angle": 9.33 }
  1139. ]
  1140. }
  1141. },
  1142. "drawOrder": [
  1143. {
  1144. "time": 0.1667,
  1145. "offsets": [
  1146. { "slot": "wuqi_front", "offset": 2 },
  1147. { "slot": "lefthand_front", "offset": 2 }
  1148. ]
  1149. }
  1150. ]
  1151. },
  1152. "attack_left": {
  1153. "slots": {
  1154. "bikong_front": {
  1155. "attachment": [
  1156. { "name": null }
  1157. ]
  1158. },
  1159. "bingkou2_front": {
  1160. "attachment": [
  1161. { "name": null }
  1162. ]
  1163. },
  1164. "bingzi_front": {
  1165. "attachment": [
  1166. { "name": null }
  1167. ]
  1168. },
  1169. "bizi_front": {
  1170. "attachment": [
  1171. { "name": null }
  1172. ]
  1173. },
  1174. "body_back": {
  1175. "attachment": [
  1176. { "name": null }
  1177. ]
  1178. },
  1179. "body_front": {
  1180. "attachment": [
  1181. { "name": null }
  1182. ]
  1183. },
  1184. "eye1_back": {
  1185. "attachment": [
  1186. { "name": null }
  1187. ]
  1188. },
  1189. "eye2_back": {
  1190. "attachment": [
  1191. { "name": null }
  1192. ]
  1193. },
  1194. "jian_back": {
  1195. "attachment": [
  1196. { "name": null }
  1197. ]
  1198. },
  1199. "jianqi": {
  1200. "color": [
  1201. { "time": 0.2667, "color": "ffffffff" },
  1202. { "time": 0.4, "color": "ffffff01" }
  1203. ],
  1204. "attachment": [
  1205. { "time": 0.2, "name": "down_28" },
  1206. { "time": 0.2333, "name": "down_30" },
  1207. { "time": 0.2667, "name": "down_32" },
  1208. { "time": 0.3, "name": "down_34" }
  1209. ]
  1210. },
  1211. "left_front": {
  1212. "attachment": [
  1213. { "name": null }
  1214. ]
  1215. },
  1216. "left arm_back": {
  1217. "attachment": [
  1218. { "name": null }
  1219. ]
  1220. },
  1221. "left feet_back": {
  1222. "attachment": [
  1223. { "name": null }
  1224. ]
  1225. },
  1226. "lefthand__front": {
  1227. "attachment": [
  1228. { "name": null }
  1229. ]
  1230. },
  1231. "left hand_back": {
  1232. "attachment": [
  1233. { "name": null }
  1234. ]
  1235. },
  1236. "lefthand_front": {
  1237. "attachment": [
  1238. { "name": null }
  1239. ]
  1240. },
  1241. "leftleg_front": {
  1242. "attachment": [
  1243. { "name": null }
  1244. ]
  1245. },
  1246. "leftyanzhu_front": {
  1247. "attachment": [
  1248. { "name": null }
  1249. ]
  1250. },
  1251. "lian_front": {
  1252. "attachment": [
  1253. { "name": null }
  1254. ]
  1255. },
  1256. "right_front": {
  1257. "attachment": [
  1258. { "name": null }
  1259. ]
  1260. },
  1261. "right arm_back": {
  1262. "attachment": [
  1263. { "name": null }
  1264. ]
  1265. },
  1266. "right feet_back": {
  1267. "attachment": [
  1268. { "name": null }
  1269. ]
  1270. },
  1271. "right hand_back": {
  1272. "attachment": [
  1273. { "name": null }
  1274. ]
  1275. },
  1276. "rightleg_front": {
  1277. "attachment": [
  1278. { "name": null }
  1279. ]
  1280. },
  1281. "rightyanzhu_front": {
  1282. "attachment": [
  1283. { "name": null }
  1284. ]
  1285. },
  1286. "ringt_front": {
  1287. "attachment": [
  1288. { "name": null }
  1289. ]
  1290. },
  1291. "tail_back": {
  1292. "attachment": [
  1293. { "name": null }
  1294. ]
  1295. },
  1296. "tou_front": {
  1297. "attachment": [
  1298. { "name": null }
  1299. ]
  1300. },
  1301. "wuqi_front": {
  1302. "attachment": [
  1303. { "name": null }
  1304. ]
  1305. },
  1306. "yanjin_front": {
  1307. "attachment": [
  1308. { "name": null }
  1309. ]
  1310. },
  1311. "yanjing_front": {
  1312. "attachment": [
  1313. { "name": null }
  1314. ]
  1315. }
  1316. },
  1317. "bones": {
  1318. "tx": {
  1319. "rotate": [
  1320. { "time": 0.2333, "angle": -4.12 },
  1321. { "time": 0.2667, "angle": -5.13 },
  1322. { "time": 0.3, "angle": -9.59 },
  1323. { "time": 0.3333, "angle": -6.85 },
  1324. { "time": 0.3667, "angle": -6.95 }
  1325. ],
  1326. "translate": [
  1327. { "time": 0.2 },
  1328. { "time": 0.2667, "x": -23.37, "y": 7.67 },
  1329. { "time": 0.3, "x": -28.11, "y": 4.62 },
  1330. { "time": 0.3333, "x": -110.08, "y": 45.19 },
  1331. { "time": 0.3667, "x": -355.05, "y": 161.23 }
  1332. ],
  1333. "scale": [
  1334. { "time": 0.2, "x": 1.083, "y": 1.1 },
  1335. { "time": 0.2333, "x": 1.213, "y": 0.76 },
  1336. { "time": 0.2667, "x": 1.106, "y": 0.659 },
  1337. { "time": 0.3, "x": 1.175, "y": 1.628 },
  1338. { "time": 0.3333, "x": 1.106, "y": 1.94 },
  1339. { "time": 0.3667, "x": 1.106, "y": 1.708 }
  1340. ]
  1341. },
  1342. "root": {
  1343. "translate": [
  1344. { "y": -1.07 }
  1345. ]
  1346. },
  1347. "bone": {
  1348. "translate": [
  1349. {},
  1350. { "time": 0.1667, "x": 3.21, "y": 3.21 },
  1351. { "time": 0.2333, "x": 9.29, "y": 5.01 },
  1352. { "time": 0.3, "x": -5.16, "y": 3.97 },
  1353. { "time": 0.4 }
  1354. ]
  1355. },
  1356. "bone2": {
  1357. "rotate": [
  1358. { "angle": 0.76 },
  1359. { "time": 0.1667, "angle": -2.19 },
  1360. { "time": 0.2333, "angle": -7.9 },
  1361. { "time": 0.3333, "angle": -6.55 },
  1362. { "time": 0.4, "angle": 0.76 }
  1363. ],
  1364. "translate": [
  1365. { "x": -0.58, "y": 0.25 },
  1366. { "time": 0.1333, "x": 2.55, "y": -0.41 },
  1367. { "time": 0.3, "x": -0.16, "y": 3.44 },
  1368. { "time": 0.4, "x": -0.58, "y": 0.25 }
  1369. ]
  1370. },
  1371. "face": {
  1372. "rotate": [
  1373. {},
  1374. { "time": 0.1333, "angle": 5.02 },
  1375. { "time": 0.2333, "angle": -5.27 },
  1376. { "time": 0.3667 }
  1377. ]
  1378. },
  1379. "meimao": {
  1380. "rotate": [
  1381. {},
  1382. { "time": 0.1333, "angle": -8.17 },
  1383. { "time": 0.2333, "angle": 9.05 },
  1384. { "time": 0.3667 }
  1385. ]
  1386. },
  1387. "K1": {
  1388. "rotate": [
  1389. { "angle": 1.44 },
  1390. { "time": 0.1333, "angle": 25.53 },
  1391. { "time": 0.2, "angle": 23.57 },
  1392. { "time": 0.2667, "angle": 24.58 },
  1393. { "time": 0.4, "angle": 1.44 }
  1394. ],
  1395. "translate": [
  1396. { "x": -0.76, "y": -0.36 },
  1397. { "time": 0.1333, "x": 0.74, "y": -4.87 },
  1398. { "time": 0.2, "x": -86.75, "y": -49.63 },
  1399. { "time": 0.2667, "x": 59.65, "y": -47.63 },
  1400. { "time": 0.3, "x": 61.82, "y": -35.05 },
  1401. { "time": 0.4, "x": -0.76, "y": -0.36 }
  1402. ],
  1403. "scale": [
  1404. { "time": 0.2 },
  1405. { "time": 0.2667, "x": 1.4, "y": 1.2 },
  1406. { "time": 0.3 }
  1407. ]
  1408. },
  1409. "arm2": {
  1410. "rotate": [
  1411. { "angle": 0.68 }
  1412. ]
  1413. },
  1414. "hand1": {
  1415. "rotate": [
  1416. { "angle": -2.25 }
  1417. ]
  1418. },
  1419. "eye2": {
  1420. "rotate": [
  1421. { "angle": -3.9 },
  1422. { "time": 0.1333, "angle": 4.94 },
  1423. { "time": 0.2333, "angle": -14.28 },
  1424. { "time": 0.3667, "angle": -3.9 }
  1425. ]
  1426. },
  1427. "eye1": {
  1428. "rotate": [
  1429. { "angle": -4.73 },
  1430. { "time": 0.1333, "angle": 3.26 },
  1431. { "time": 0.2333, "angle": -6.87 },
  1432. { "time": 0.3667, "angle": -4.73 }
  1433. ]
  1434. },
  1435. "tail": {
  1436. "rotate": [
  1437. { "angle": -5.26 },
  1438. { "time": 0.2333, "angle": -16.04 },
  1439. { "time": 0.3, "angle": -27.14 },
  1440. { "time": 0.4, "angle": -5.26 }
  1441. ]
  1442. },
  1443. "bone3": {
  1444. "rotate": [
  1445. { "angle": -3.27 },
  1446. { "time": 0.2333, "angle": -14.05 },
  1447. { "time": 0.3, "angle": -25.15 },
  1448. { "time": 0.4, "angle": -3.27 }
  1449. ]
  1450. },
  1451. "bone4": {
  1452. "rotate": [
  1453. { "angle": 1.87 },
  1454. { "time": 0.2333, "angle": -8.91 },
  1455. { "time": 0.3, "angle": -20.01 },
  1456. { "time": 0.4, "angle": 1.87 }
  1457. ]
  1458. },
  1459. "yanzhu": {
  1460. "rotate": [
  1461. { "time": 0.1333 },
  1462. { "time": 0.2333, "angle": -13.59 },
  1463. { "time": 0.3667 }
  1464. ],
  1465. "translate": [
  1466. { "time": 0.1333 },
  1467. { "time": 0.2333, "x": -1.43, "y": -6.81 },
  1468. { "time": 0.3667 }
  1469. ]
  1470. },
  1471. "yanzhu2": {
  1472. "rotate": [
  1473. { "time": 0.1333 },
  1474. { "time": 0.2333, "angle": -75.63 },
  1475. { "time": 0.3667 }
  1476. ],
  1477. "translate": [
  1478. { "time": 0.1333 },
  1479. { "time": 0.2333, "x": -0.57, "y": -4.26 },
  1480. { "time": 0.3667 }
  1481. ]
  1482. }
  1483. },
  1484. "deform": {
  1485. "default": {
  1486. "arm": {
  1487. "arm": [
  1488. {
  1489. "time": 0.2,
  1490. "offset": 24,
  1491. "vertices": [ 2.75357, 2.73347, 2.82231, 2.66253, 2.75357, 2.73347, 2.82231, 2.66253 ]
  1492. },
  1493. {
  1494. "time": 0.2333,
  1495. "offset": 12,
  1496. "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 ]
  1497. },
  1498. {
  1499. "time": 0.2667,
  1500. "offset": 12,
  1501. "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 ]
  1502. }
  1503. ]
  1504. }
  1505. }
  1506. },
  1507. "events": [
  1508. { "time": 0.2333, "name": "hit1" }
  1509. ]
  1510. },
  1511. "attack_right": {
  1512. "slots": {
  1513. "bikong_front": {
  1514. "attachment": [
  1515. { "name": null }
  1516. ]
  1517. },
  1518. "bingkou2_front": {
  1519. "attachment": [
  1520. { "name": null }
  1521. ]
  1522. },
  1523. "bingzi_front": {
  1524. "attachment": [
  1525. { "name": null }
  1526. ]
  1527. },
  1528. "bizi_front": {
  1529. "attachment": [
  1530. { "name": null }
  1531. ]
  1532. },
  1533. "body_back": {
  1534. "attachment": [
  1535. { "name": null }
  1536. ]
  1537. },
  1538. "body_front": {
  1539. "attachment": [
  1540. { "name": null }
  1541. ]
  1542. },
  1543. "eye1_back": {
  1544. "attachment": [
  1545. { "name": null }
  1546. ]
  1547. },
  1548. "eye2_back": {
  1549. "attachment": [
  1550. { "name": null }
  1551. ]
  1552. },
  1553. "jian_back": {
  1554. "attachment": [
  1555. { "name": null }
  1556. ]
  1557. },
  1558. "jianqi": {
  1559. "color": [
  1560. { "time": 0.2667, "color": "ffffffff" },
  1561. { "time": 0.4, "color": "ffffff01" }
  1562. ],
  1563. "attachment": [
  1564. { "time": 0.2, "name": "down_28" },
  1565. { "time": 0.2333, "name": "down_30" },
  1566. { "time": 0.2667, "name": "down_32" },
  1567. { "time": 0.3, "name": "down_34" }
  1568. ]
  1569. },
  1570. "left_front": {
  1571. "attachment": [
  1572. { "name": null }
  1573. ]
  1574. },
  1575. "left arm_back": {
  1576. "attachment": [
  1577. { "name": null }
  1578. ]
  1579. },
  1580. "left feet_back": {
  1581. "attachment": [
  1582. { "name": null }
  1583. ]
  1584. },
  1585. "lefthand__front": {
  1586. "attachment": [
  1587. { "name": null }
  1588. ]
  1589. },
  1590. "left hand_back": {
  1591. "attachment": [
  1592. { "name": null }
  1593. ]
  1594. },
  1595. "lefthand_front": {
  1596. "attachment": [
  1597. { "name": null }
  1598. ]
  1599. },
  1600. "leftleg_front": {
  1601. "attachment": [
  1602. { "name": null }
  1603. ]
  1604. },
  1605. "leftyanzhu_front": {
  1606. "attachment": [
  1607. { "name": null }
  1608. ]
  1609. },
  1610. "lian_front": {
  1611. "attachment": [
  1612. { "name": null }
  1613. ]
  1614. },
  1615. "right_front": {
  1616. "attachment": [
  1617. { "name": null }
  1618. ]
  1619. },
  1620. "right arm_back": {
  1621. "attachment": [
  1622. { "name": null }
  1623. ]
  1624. },
  1625. "right feet_back": {
  1626. "attachment": [
  1627. { "name": null }
  1628. ]
  1629. },
  1630. "right hand_back": {
  1631. "attachment": [
  1632. { "name": null }
  1633. ]
  1634. },
  1635. "rightleg_front": {
  1636. "attachment": [
  1637. { "name": null }
  1638. ]
  1639. },
  1640. "rightyanzhu_front": {
  1641. "attachment": [
  1642. { "name": null }
  1643. ]
  1644. },
  1645. "ringt_front": {
  1646. "attachment": [
  1647. { "name": null }
  1648. ]
  1649. },
  1650. "tail_back": {
  1651. "attachment": [
  1652. { "name": null }
  1653. ]
  1654. },
  1655. "tou_front": {
  1656. "attachment": [
  1657. { "name": null }
  1658. ]
  1659. },
  1660. "wuqi_front": {
  1661. "attachment": [
  1662. { "name": null }
  1663. ]
  1664. },
  1665. "yanjin_front": {
  1666. "attachment": [
  1667. { "name": null }
  1668. ]
  1669. },
  1670. "yanjing_front": {
  1671. "attachment": [
  1672. { "name": null }
  1673. ]
  1674. }
  1675. },
  1676. "bones": {
  1677. "tx": {
  1678. "rotate": [
  1679. { "time": 0.2333, "angle": -4.12 },
  1680. { "time": 0.2667, "angle": -5.13 },
  1681. { "time": 0.3, "angle": -9.59 },
  1682. { "time": 0.3333, "angle": -6.85 },
  1683. { "time": 0.3667, "angle": -6.95 }
  1684. ],
  1685. "translate": [
  1686. { "time": 0.2 },
  1687. { "time": 0.2667, "x": -23.37, "y": 7.67 },
  1688. { "time": 0.3, "x": -28.11, "y": 4.62 },
  1689. { "time": 0.3333, "x": -110.08, "y": 45.19 },
  1690. { "time": 0.3667, "x": -355.05, "y": 161.23 }
  1691. ],
  1692. "scale": [
  1693. { "time": 0.2, "x": 1.083, "y": 1.1 },
  1694. { "time": 0.2333, "x": 1.213, "y": 0.76 },
  1695. { "time": 0.2667, "x": 1.106, "y": 0.659 },
  1696. { "time": 0.3, "x": 1.175, "y": 1.628 },
  1697. { "time": 0.3333, "x": 1.106, "y": 1.94 },
  1698. { "time": 0.3667, "x": 1.106, "y": 1.708 }
  1699. ]
  1700. },
  1701. "root": {
  1702. "translate": [
  1703. { "y": -1.07 }
  1704. ]
  1705. },
  1706. "bone": {
  1707. "translate": [
  1708. {},
  1709. { "time": 0.1667, "x": 3.21, "y": 3.21 },
  1710. { "time": 0.2333, "x": 9.29, "y": 5.01 },
  1711. { "time": 0.3, "x": -5.16, "y": 3.97 },
  1712. { "time": 0.4 }
  1713. ]
  1714. },
  1715. "bone2": {
  1716. "rotate": [
  1717. { "angle": 0.76 },
  1718. { "time": 0.1667, "angle": -2.19 },
  1719. { "time": 0.2333, "angle": -7.9 },
  1720. { "time": 0.3333, "angle": -6.55 },
  1721. { "time": 0.4, "angle": 0.76 }
  1722. ],
  1723. "translate": [
  1724. { "x": -0.58, "y": 0.25 },
  1725. { "time": 0.1333, "x": 2.55, "y": -0.41 },
  1726. { "time": 0.3, "x": -0.16, "y": 3.44 },
  1727. { "time": 0.4, "x": -0.58, "y": 0.25 }
  1728. ]
  1729. },
  1730. "face": {
  1731. "rotate": [
  1732. {},
  1733. { "time": 0.1333, "angle": 5.02 },
  1734. { "time": 0.2333, "angle": -5.27 },
  1735. { "time": 0.3667 }
  1736. ]
  1737. },
  1738. "meimao": {
  1739. "rotate": [
  1740. {},
  1741. { "time": 0.1333, "angle": -8.17 },
  1742. { "time": 0.2333, "angle": 9.05 },
  1743. { "time": 0.3667 }
  1744. ]
  1745. },
  1746. "K1": {
  1747. "rotate": [
  1748. { "angle": 1.44 },
  1749. { "time": 0.1333, "angle": 25.53 },
  1750. { "time": 0.2, "angle": 23.57 },
  1751. { "time": 0.2667, "angle": 24.58 },
  1752. { "time": 0.4, "angle": 1.44 }
  1753. ],
  1754. "translate": [
  1755. { "x": -0.76, "y": -0.36 },
  1756. { "time": 0.1333, "x": 0.74, "y": -4.87 },
  1757. { "time": 0.2, "x": -86.75, "y": -49.63 },
  1758. { "time": 0.2667, "x": 59.65, "y": -47.63 },
  1759. { "time": 0.3, "x": 61.82, "y": -35.05 },
  1760. { "time": 0.4, "x": -0.76, "y": -0.36 }
  1761. ],
  1762. "scale": [
  1763. { "time": 0.2 },
  1764. { "time": 0.2667, "x": 1.4, "y": 1.2 },
  1765. { "time": 0.3 }
  1766. ]
  1767. },
  1768. "arm2": {
  1769. "rotate": [
  1770. { "angle": 0.68 }
  1771. ]
  1772. },
  1773. "hand1": {
  1774. "rotate": [
  1775. { "angle": -2.25 }
  1776. ]
  1777. },
  1778. "eye2": {
  1779. "rotate": [
  1780. { "angle": -3.9 },
  1781. { "time": 0.1333, "angle": 4.94 },
  1782. { "time": 0.2333, "angle": -14.28 },
  1783. { "time": 0.3667, "angle": -3.9 }
  1784. ]
  1785. },
  1786. "eye1": {
  1787. "rotate": [
  1788. { "angle": -4.73 },
  1789. { "time": 0.1333, "angle": 3.26 },
  1790. { "time": 0.2333, "angle": -6.87 },
  1791. { "time": 0.3667, "angle": -4.73 }
  1792. ]
  1793. },
  1794. "tail": {
  1795. "rotate": [
  1796. { "angle": -5.26 },
  1797. { "time": 0.2333, "angle": -16.04 },
  1798. { "time": 0.3, "angle": -27.14 },
  1799. { "time": 0.4, "angle": -5.26 }
  1800. ]
  1801. },
  1802. "bone3": {
  1803. "rotate": [
  1804. { "angle": -3.27 },
  1805. { "time": 0.2333, "angle": -14.05 },
  1806. { "time": 0.3, "angle": -25.15 },
  1807. { "time": 0.4, "angle": -3.27 }
  1808. ]
  1809. },
  1810. "bone4": {
  1811. "rotate": [
  1812. { "angle": 1.87 },
  1813. { "time": 0.2333, "angle": -8.91 },
  1814. { "time": 0.3, "angle": -20.01 },
  1815. { "time": 0.4, "angle": 1.87 }
  1816. ]
  1817. },
  1818. "yanzhu": {
  1819. "rotate": [
  1820. { "time": 0.1333 },
  1821. { "time": 0.2333, "angle": -13.59 },
  1822. { "time": 0.3667 }
  1823. ],
  1824. "translate": [
  1825. { "time": 0.1333 },
  1826. { "time": 0.2333, "x": -1.43, "y": -6.81 },
  1827. { "time": 0.3667 }
  1828. ]
  1829. },
  1830. "yanzhu2": {
  1831. "rotate": [
  1832. { "time": 0.1333 },
  1833. { "time": 0.2333, "angle": -75.63 },
  1834. { "time": 0.3667 }
  1835. ],
  1836. "translate": [
  1837. { "time": 0.1333 },
  1838. { "time": 0.2333, "x": -0.57, "y": -4.26 },
  1839. { "time": 0.3667 }
  1840. ]
  1841. }
  1842. },
  1843. "deform": {
  1844. "default": {
  1845. "arm": {
  1846. "arm": [
  1847. {
  1848. "time": 0.2,
  1849. "offset": 24,
  1850. "vertices": [ 2.75357, 2.73347, 2.82231, 2.66253, 2.75357, 2.73347, 2.82231, 2.66253 ]
  1851. },
  1852. {
  1853. "time": 0.2333,
  1854. "offset": 12,
  1855. "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 ]
  1856. },
  1857. {
  1858. "time": 0.2667,
  1859. "offset": 12,
  1860. "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 ]
  1861. }
  1862. ]
  1863. }
  1864. }
  1865. },
  1866. "events": [
  1867. { "time": 0.2333, "name": "hit1" }
  1868. ]
  1869. },
  1870. "attack_up": {
  1871. "slots": {
  1872. "arm": {
  1873. "attachment": [
  1874. { "name": null }
  1875. ]
  1876. },
  1877. "arm2": {
  1878. "attachment": [
  1879. { "name": null }
  1880. ]
  1881. },
  1882. "bikong_front": {
  1883. "attachment": [
  1884. { "name": null }
  1885. ]
  1886. },
  1887. "bingkou2_front": {
  1888. "attachment": [
  1889. { "name": null }
  1890. ]
  1891. },
  1892. "bingzi_front": {
  1893. "attachment": [
  1894. { "name": null }
  1895. ]
  1896. },
  1897. "bizi_front": {
  1898. "attachment": [
  1899. { "name": null }
  1900. ]
  1901. },
  1902. "body1": {
  1903. "attachment": [
  1904. { "name": null }
  1905. ]
  1906. },
  1907. "body_front": {
  1908. "attachment": [
  1909. { "name": null }
  1910. ]
  1911. },
  1912. "eye": {
  1913. "attachment": [
  1914. { "name": null }
  1915. ]
  1916. },
  1917. "eye1": {
  1918. "attachment": [
  1919. { "name": null }
  1920. ]
  1921. },
  1922. "eye2": {
  1923. "attachment": [
  1924. { "name": null }
  1925. ]
  1926. },
  1927. "face": {
  1928. "attachment": [
  1929. { "name": null }
  1930. ]
  1931. },
  1932. "feet": {
  1933. "attachment": [
  1934. { "name": null }
  1935. ]
  1936. },
  1937. "feet1": {
  1938. "attachment": [
  1939. { "name": null }
  1940. ]
  1941. },
  1942. "gun": {
  1943. "attachment": [
  1944. { "name": null }
  1945. ]
  1946. },
  1947. "hand": {
  1948. "attachment": [
  1949. { "name": null }
  1950. ]
  1951. },
  1952. "hand1": {
  1953. "attachment": [
  1954. { "name": null }
  1955. ]
  1956. },
  1957. "left_front": {
  1958. "attachment": [
  1959. { "name": null }
  1960. ]
  1961. },
  1962. "lefthand__front": {
  1963. "attachment": [
  1964. { "name": null }
  1965. ]
  1966. },
  1967. "lefthand_front": {
  1968. "attachment": [
  1969. { "name": null }
  1970. ]
  1971. },
  1972. "leftleg_front": {
  1973. "attachment": [
  1974. { "name": null }
  1975. ]
  1976. },
  1977. "leftyanzhu_front": {
  1978. "attachment": [
  1979. { "name": null }
  1980. ]
  1981. },
  1982. "lian_front": {
  1983. "attachment": [
  1984. { "name": null }
  1985. ]
  1986. },
  1987. "meimao": {
  1988. "attachment": [
  1989. { "name": null }
  1990. ]
  1991. },
  1992. "meimao2": {
  1993. "attachment": [
  1994. { "name": null }
  1995. ]
  1996. },
  1997. "mouth": {
  1998. "attachment": [
  1999. { "name": null }
  2000. ]
  2001. },
  2002. "nose": {
  2003. "attachment": [
  2004. { "name": null }
  2005. ]
  2006. },
  2007. "right_front": {
  2008. "attachment": [
  2009. { "name": null }
  2010. ]
  2011. },
  2012. "rightleg_front": {
  2013. "attachment": [
  2014. { "name": null }
  2015. ]
  2016. },
  2017. "rightyanzhu_front": {
  2018. "attachment": [
  2019. { "name": null }
  2020. ]
  2021. },
  2022. "ringt_front": {
  2023. "attachment": [
  2024. { "name": null }
  2025. ]
  2026. },
  2027. "tail": {
  2028. "attachment": [
  2029. { "name": null }
  2030. ]
  2031. },
  2032. "tou_front": {
  2033. "attachment": [
  2034. { "name": null }
  2035. ]
  2036. },
  2037. "tx2": {
  2038. "color": [
  2039. { "time": 0.2667, "color": "ffffffff" },
  2040. { "time": 0.4, "color": "ffffff00" }
  2041. ],
  2042. "attachment": [
  2043. { "time": 0.1667, "name": "down_28" },
  2044. { "time": 0.2333, "name": "down_30" },
  2045. { "time": 0.3, "name": "down_34" }
  2046. ]
  2047. },
  2048. "wuqi_front": {
  2049. "attachment": [
  2050. { "name": null }
  2051. ]
  2052. },
  2053. "yanjin_front": {
  2054. "attachment": [
  2055. { "name": null }
  2056. ]
  2057. },
  2058. "yanjing_front": {
  2059. "attachment": [
  2060. { "name": null }
  2061. ]
  2062. },
  2063. "yanzhu": {
  2064. "attachment": [
  2065. { "name": null }
  2066. ]
  2067. },
  2068. "yanzhu2": {
  2069. "attachment": [
  2070. { "name": null }
  2071. ]
  2072. },
  2073. "yanzhu3": {
  2074. "attachment": [
  2075. { "name": null }
  2076. ]
  2077. }
  2078. },
  2079. "bones": {
  2080. "tx2": {
  2081. "rotate": [
  2082. { "time": 0.1667, "angle": -10.95 }
  2083. ],
  2084. "translate": [
  2085. { "time": 0.1667, "x": -59.39, "y": 5.43 },
  2086. { "time": 0.2333, "x": 77.58, "y": -33.2 },
  2087. { "time": 0.2667, "x": 166.06, "y": -59.88 },
  2088. { "time": 0.3, "x": 286.36, "y": -81.67 }
  2089. ],
  2090. "scale": [
  2091. { "time": 0.2333, "x": 1.335 },
  2092. { "time": 0.2667, "x": 1.612, "y": 1.071 },
  2093. { "time": 0.3, "x": 2.411, "y": 1.142 }
  2094. ]
  2095. },
  2096. "bone_back": {
  2097. "translate": [
  2098. { "x": 331.06, "y": 16.43 }
  2099. ]
  2100. },
  2101. "bone_left": {
  2102. "translate": [
  2103. { "x": -331.06, "y": 43.43 }
  2104. ]
  2105. },
  2106. "bone5": {
  2107. "rotate": [
  2108. { "angle": 0.22, "curve": "stepped" },
  2109. { "time": 0.1667, "angle": 0.22 },
  2110. { "time": 0.2333, "angle": -7.96 },
  2111. { "time": 0.3, "angle": 0.82 },
  2112. { "time": 0.4, "angle": 0.22 }
  2113. ],
  2114. "translate": [
  2115. { "y": -0.36 },
  2116. { "time": 0.1667, "y": 2.29 },
  2117. { "time": 0.2333, "x": 1.32, "y": -7.01 },
  2118. { "time": 0.3, "x": 2.42, "y": 14.22 },
  2119. { "time": 0.4, "y": -0.36 }
  2120. ]
  2121. },
  2122. "bone6": {
  2123. "rotate": [
  2124. { "angle": 0.55, "curve": "stepped" },
  2125. { "time": 0.1667, "angle": 0.55 },
  2126. { "time": 0.2333, "angle": -4.62 },
  2127. { "time": 0.3, "angle": 12.81 },
  2128. { "time": 0.4, "angle": 0.55 }
  2129. ],
  2130. "translate": [
  2131. { "x": -0.59, "y": 0.32 },
  2132. { "time": 0.1667, "x": 3.38, "y": 0.14 },
  2133. { "time": 0.2333, "x": -4.67, "y": 0.69 },
  2134. { "time": 0.3, "x": 1.88, "y": -1 },
  2135. { "time": 0.4, "x": -0.59, "y": 0.32 }
  2136. ]
  2137. },
  2138. "eye1_back": {
  2139. "rotate": [
  2140. { "angle": 4.71 },
  2141. { "time": 0.1667, "angle": -3.55 },
  2142. { "time": 0.2333, "angle": 16.6 },
  2143. { "time": 0.3, "angle": -11.31 },
  2144. { "time": 0.4, "angle": 4.71 }
  2145. ]
  2146. },
  2147. "eye2_back": {
  2148. "rotate": [
  2149. { "angle": -6.71 },
  2150. { "time": 0.1667, "angle": -0.21 },
  2151. { "time": 0.2333, "angle": -10.74 },
  2152. { "time": 0.3, "angle": 5.08 },
  2153. { "time": 0.4, "angle": -6.71 }
  2154. ]
  2155. },
  2156. "right arm_back": {
  2157. "rotate": [
  2158. { "angle": 3.89 },
  2159. { "time": 0.1333, "angle": 9.64 },
  2160. { "time": 0.2, "angle": -20.35 },
  2161. { "time": 0.2667, "angle": 10.86 },
  2162. { "time": 0.4, "angle": 3.89 }
  2163. ]
  2164. },
  2165. "bone7": {
  2166. "rotate": [
  2167. { "angle": 1.19 },
  2168. { "time": 0.1333, "angle": -4.19 },
  2169. { "time": 0.2, "angle": 7.41 },
  2170. { "time": 0.2667, "angle": -4.72 },
  2171. { "time": 0.4, "angle": 1.19 }
  2172. ]
  2173. },
  2174. "bone11": {
  2175. "rotate": [
  2176. { "angle": -14.51 },
  2177. { "time": 0.1333, "angle": -14.68 },
  2178. { "time": 0.2, "angle": -14.91 },
  2179. { "time": 0.2667, "angle": -10.33 },
  2180. { "time": 0.4, "angle": -14.51 }
  2181. ],
  2182. "translate": [
  2183. { "x": 4.71, "y": -4.41 },
  2184. { "time": 0.1333, "x": 10.02, "y": -4.23 },
  2185. { "time": 0.2, "x": -103.89, "y": 29.38 },
  2186. { "time": 0.2667, "x": 40.26, "y": -27.9 },
  2187. { "time": 0.4, "x": 4.71, "y": -4.41 }
  2188. ],
  2189. "scale": [
  2190. { "time": 0.2 },
  2191. { "time": 0.2667, "x": 1.307, "y": 1.039 },
  2192. { "time": 0.3 }
  2193. ]
  2194. },
  2195. "left arm_back": {
  2196. "translate": [
  2197. {},
  2198. { "time": 0.1333, "x": -12.22, "y": 3.55 },
  2199. { "time": 0.2, "x": -32.85, "y": 1.88 },
  2200. { "time": 0.2667, "x": 6.79, "y": 1.34 },
  2201. { "time": 0.4 }
  2202. ]
  2203. },
  2204. "tail_back": {
  2205. "rotate": [
  2206. {},
  2207. { "time": 0.1333, "angle": -10.65 },
  2208. { "time": 0.2, "angle": 3.99 },
  2209. { "time": 0.2667, "angle": -9.25 },
  2210. { "time": 0.4 }
  2211. ]
  2212. },
  2213. "bone8": {
  2214. "rotate": [
  2215. { "angle": 1.8 },
  2216. { "time": 0.1333, "angle": -7.37 },
  2217. { "time": 0.2, "angle": 10.41 },
  2218. { "time": 0.2667, "angle": -5.96 },
  2219. { "time": 0.4, "angle": 1.8 }
  2220. ]
  2221. },
  2222. "bone9": {
  2223. "rotate": [
  2224. { "angle": 5.99 },
  2225. { "time": 0.1333, "angle": -0.68 },
  2226. { "time": 0.2, "angle": 17.02 },
  2227. { "time": 0.2667, "angle": -1.33 },
  2228. { "time": 0.4, "angle": 5.99 }
  2229. ]
  2230. }
  2231. },
  2232. "events": [
  2233. { "time": 0.2333, "name": "hit1" }
  2234. ]
  2235. },
  2236. "show": {
  2237. "slots": {
  2238. "bikong_front": {
  2239. "attachment": [
  2240. { "name": null }
  2241. ]
  2242. },
  2243. "bingkou2_front": {
  2244. "attachment": [
  2245. { "name": null }
  2246. ]
  2247. },
  2248. "bingzi_front": {
  2249. "attachment": [
  2250. { "name": null }
  2251. ]
  2252. },
  2253. "bizi_front": {
  2254. "attachment": [
  2255. { "name": null }
  2256. ]
  2257. },
  2258. "body_back": {
  2259. "attachment": [
  2260. { "name": null }
  2261. ]
  2262. },
  2263. "body_front": {
  2264. "attachment": [
  2265. { "name": null }
  2266. ]
  2267. },
  2268. "eye1_back": {
  2269. "attachment": [
  2270. { "name": null }
  2271. ]
  2272. },
  2273. "eye2_back": {
  2274. "attachment": [
  2275. { "name": null }
  2276. ]
  2277. },
  2278. "jian_back": {
  2279. "attachment": [
  2280. { "name": null }
  2281. ]
  2282. },
  2283. "left_front": {
  2284. "attachment": [
  2285. { "name": null }
  2286. ]
  2287. },
  2288. "left arm_back": {
  2289. "attachment": [
  2290. { "name": null }
  2291. ]
  2292. },
  2293. "left feet_back": {
  2294. "attachment": [
  2295. { "name": null }
  2296. ]
  2297. },
  2298. "lefthand__front": {
  2299. "attachment": [
  2300. { "name": null }
  2301. ]
  2302. },
  2303. "left hand_back": {
  2304. "attachment": [
  2305. { "name": null }
  2306. ]
  2307. },
  2308. "lefthand_front": {
  2309. "attachment": [
  2310. { "name": null }
  2311. ]
  2312. },
  2313. "leftleg_front": {
  2314. "attachment": [
  2315. { "name": null }
  2316. ]
  2317. },
  2318. "leftyanzhu_front": {
  2319. "attachment": [
  2320. { "name": null }
  2321. ]
  2322. },
  2323. "lian_front": {
  2324. "attachment": [
  2325. { "name": null }
  2326. ]
  2327. },
  2328. "right_front": {
  2329. "attachment": [
  2330. { "name": null }
  2331. ]
  2332. },
  2333. "right arm_back": {
  2334. "attachment": [
  2335. { "name": null }
  2336. ]
  2337. },
  2338. "right feet_back": {
  2339. "attachment": [
  2340. { "name": null }
  2341. ]
  2342. },
  2343. "right hand_back": {
  2344. "attachment": [
  2345. { "name": null }
  2346. ]
  2347. },
  2348. "rightleg_front": {
  2349. "attachment": [
  2350. { "name": null }
  2351. ]
  2352. },
  2353. "rightyanzhu_front": {
  2354. "attachment": [
  2355. { "name": null }
  2356. ]
  2357. },
  2358. "ringt_front": {
  2359. "attachment": [
  2360. { "name": null }
  2361. ]
  2362. },
  2363. "tail_back": {
  2364. "attachment": [
  2365. { "name": null }
  2366. ]
  2367. },
  2368. "tou_front": {
  2369. "attachment": [
  2370. { "name": null }
  2371. ]
  2372. },
  2373. "wuqi_front": {
  2374. "attachment": [
  2375. { "name": null }
  2376. ]
  2377. },
  2378. "yanjin_front": {
  2379. "attachment": [
  2380. { "name": null }
  2381. ]
  2382. },
  2383. "yanjing_front": {
  2384. "attachment": [
  2385. { "name": null }
  2386. ]
  2387. }
  2388. },
  2389. "bones": {
  2390. "body": {
  2391. "translate": [
  2392. { "x": -2.1, "y": 96.69 },
  2393. { "time": 0.1 },
  2394. { "time": 0.1667, "y": -1.61 }
  2395. ]
  2396. },
  2397. "bone": {
  2398. "rotate": [
  2399. {},
  2400. { "time": 0.1, "angle": 2.88 },
  2401. { "time": 0.1667, "angle": 2.76 },
  2402. { "time": 0.3, "angle": -2.13 },
  2403. { "time": 0.3667, "angle": -3.33 }
  2404. ]
  2405. },
  2406. "bone2": {
  2407. "rotate": [
  2408. { "angle": 0.76 },
  2409. { "time": 0.1333, "angle": 3.06 },
  2410. { "time": 0.2, "angle": 10.37 },
  2411. { "time": 0.3667, "angle": 2.51 }
  2412. ],
  2413. "translate": [
  2414. { "x": -0.58, "y": 0.25 },
  2415. { "time": 0.1333, "x": -2.93, "y": 0.86 },
  2416. { "time": 0.2, "x": -2.94, "y": 0.82 },
  2417. { "time": 0.3667, "x": -0.58, "y": 0.25 }
  2418. ]
  2419. },
  2420. "face": {
  2421. "rotate": [
  2422. {},
  2423. { "time": 0.1333, "angle": 5.02 },
  2424. { "time": 0.2333, "angle": -5.27 },
  2425. { "time": 0.3667 }
  2426. ]
  2427. },
  2428. "meimao": {
  2429. "rotate": [
  2430. {},
  2431. { "time": 0.1333, "angle": -8.17 },
  2432. { "time": 0.2333, "angle": 9.05 },
  2433. { "time": 0.3667 }
  2434. ]
  2435. },
  2436. "K1": {
  2437. "rotate": [
  2438. { "angle": 1.44 },
  2439. { "time": 0.1333, "angle": 2.98 },
  2440. { "time": 0.2, "angle": 4.91 },
  2441. { "time": 0.3667, "angle": 1.44 }
  2442. ],
  2443. "translate": [
  2444. { "x": -0.76, "y": -0.36 },
  2445. { "time": 0.1333, "x": -3.79, "y": -1.82 },
  2446. { "time": 0.2, "x": -10.08, "y": -4.02 },
  2447. { "time": 0.3667, "x": 0.14, "y": 0.06 }
  2448. ]
  2449. },
  2450. "arm2": {
  2451. "rotate": [
  2452. { "angle": 0.68 },
  2453. { "time": 0.1, "angle": 2.33 },
  2454. { "time": 0.1667, "angle": 9.88 },
  2455. { "time": 0.3, "angle": -1.11 },
  2456. { "time": 0.3667, "angle": -5.27 }
  2457. ],
  2458. "translate": [
  2459. {},
  2460. { "time": 0.1, "x": -1.85, "y": -2.83 },
  2461. { "time": 0.1667, "x": -2.94, "y": -6.97 },
  2462. { "time": 0.3, "x": -2.75, "y": -5.92 }
  2463. ]
  2464. },
  2465. "hand1": {
  2466. "rotate": [
  2467. { "angle": -2.25 },
  2468. { "time": 0.1, "angle": -5.59 },
  2469. { "time": 0.1667, "angle": -12.95 },
  2470. { "time": 0.3, "angle": -9.75 },
  2471. { "time": 0.3667, "angle": -9.28 }
  2472. ]
  2473. },
  2474. "feet1": {
  2475. "translate": [
  2476. { "time": 0.1 },
  2477. { "time": 0.1667, "x": 0.08, "y": 1.61 },
  2478. { "time": 0.3, "y": 1.61 },
  2479. { "time": 0.3667, "x": -0.01, "y": 1.61 }
  2480. ]
  2481. },
  2482. "feet": {
  2483. "translate": [
  2484. { "time": 0.1 },
  2485. { "time": 0.1667, "x": 0.01, "y": 1.61 },
  2486. { "time": 0.3, "y": 1.61 },
  2487. { "time": 0.3667, "x": -0.02, "y": 1.61 }
  2488. ]
  2489. },
  2490. "eye2": {
  2491. "rotate": [
  2492. { "angle": -3.9 },
  2493. { "time": 0.1333, "angle": 4.94 },
  2494. { "time": 0.2333, "angle": -14.28 },
  2495. { "time": 0.3667, "angle": -3.9 }
  2496. ]
  2497. },
  2498. "eye1": {
  2499. "rotate": [
  2500. { "angle": -4.73 },
  2501. { "time": 0.1333, "angle": 3.26 },
  2502. { "time": 0.2333, "angle": -6.87 },
  2503. { "time": 0.3667, "angle": -4.73 }
  2504. ]
  2505. },
  2506. "tail": {
  2507. "rotate": [
  2508. { "angle": -53.09 },
  2509. { "time": 0.1333, "angle": -32.76 },
  2510. { "time": 0.2333, "angle": -47.96 },
  2511. { "time": 0.3667, "angle": -31.55 }
  2512. ]
  2513. },
  2514. "bone3": {
  2515. "rotate": [
  2516. { "angle": -58.77 },
  2517. { "time": 0.1333, "angle": -35.15 },
  2518. { "time": 0.2333, "angle": -54.71 },
  2519. { "time": 0.3667, "angle": -38.29 }
  2520. ]
  2521. },
  2522. "bone4": {
  2523. "rotate": [
  2524. { "angle": -18.08 },
  2525. { "time": 0.1333, "angle": 4.92 },
  2526. { "time": 0.2333, "angle": -20.42 },
  2527. { "time": 0.3667, "angle": -4 }
  2528. ]
  2529. },
  2530. "yanzhu": {
  2531. "rotate": [
  2532. { "time": 0.1333 },
  2533. { "time": 0.2333, "angle": -13.59 },
  2534. { "time": 0.3667 }
  2535. ],
  2536. "translate": [
  2537. { "time": 0.1333 },
  2538. { "time": 0.2333, "x": -1.43, "y": -6.81 },
  2539. { "time": 0.3667 }
  2540. ]
  2541. },
  2542. "yanzhu2": {
  2543. "rotate": [
  2544. { "time": 0.1333 },
  2545. { "time": 0.2333, "angle": -75.63 },
  2546. { "time": 0.3667 }
  2547. ],
  2548. "translate": [
  2549. { "time": 0.1333 },
  2550. { "time": 0.2333, "x": -0.57, "y": -4.26 },
  2551. { "time": 0.3667 }
  2552. ]
  2553. },
  2554. "shadow": {
  2555. "translate": [
  2556. { "x": 1.53, "y": 1.55 }
  2557. ],
  2558. "scale": [
  2559. { "x": -1 }
  2560. ]
  2561. },
  2562. "bone_left": {
  2563. "scale": [
  2564. { "x": -1 }
  2565. ]
  2566. }
  2567. }
  2568. },
  2569. "stand_down": {
  2570. "slots": {
  2571. "arm": {
  2572. "attachment": [
  2573. { "name": null }
  2574. ]
  2575. },
  2576. "arm2": {
  2577. "attachment": [
  2578. { "name": null }
  2579. ]
  2580. },
  2581. "body1": {
  2582. "attachment": [
  2583. { "name": null }
  2584. ]
  2585. },
  2586. "body_back": {
  2587. "attachment": [
  2588. { "name": null }
  2589. ]
  2590. },
  2591. "eye": {
  2592. "attachment": [
  2593. { "name": null }
  2594. ]
  2595. },
  2596. "eye1": {
  2597. "attachment": [
  2598. { "name": null }
  2599. ]
  2600. },
  2601. "eye1_back": {
  2602. "attachment": [
  2603. { "name": null }
  2604. ]
  2605. },
  2606. "eye2": {
  2607. "attachment": [
  2608. { "name": null }
  2609. ]
  2610. },
  2611. "eye2_back": {
  2612. "attachment": [
  2613. { "name": null }
  2614. ]
  2615. },
  2616. "face": {
  2617. "attachment": [
  2618. { "name": null }
  2619. ]
  2620. },
  2621. "feet": {
  2622. "attachment": [
  2623. { "name": null }
  2624. ]
  2625. },
  2626. "feet1": {
  2627. "attachment": [
  2628. { "name": null }
  2629. ]
  2630. },
  2631. "gun": {
  2632. "attachment": [
  2633. { "name": null }
  2634. ]
  2635. },
  2636. "hand": {
  2637. "attachment": [
  2638. { "name": null }
  2639. ]
  2640. },
  2641. "hand1": {
  2642. "attachment": [
  2643. { "name": null }
  2644. ]
  2645. },
  2646. "jian_back": {
  2647. "attachment": [
  2648. { "name": null }
  2649. ]
  2650. },
  2651. "left arm_back": {
  2652. "attachment": [
  2653. { "name": null }
  2654. ]
  2655. },
  2656. "left feet_back": {
  2657. "attachment": [
  2658. { "name": null }
  2659. ]
  2660. },
  2661. "left hand_back": {
  2662. "attachment": [
  2663. { "name": null }
  2664. ]
  2665. },
  2666. "meimao": {
  2667. "attachment": [
  2668. { "name": null }
  2669. ]
  2670. },
  2671. "meimao2": {
  2672. "attachment": [
  2673. { "name": null }
  2674. ]
  2675. },
  2676. "mouth": {
  2677. "attachment": [
  2678. { "name": null }
  2679. ]
  2680. },
  2681. "nose": {
  2682. "attachment": [
  2683. { "name": null }
  2684. ]
  2685. },
  2686. "right arm_back": {
  2687. "attachment": [
  2688. { "name": null }
  2689. ]
  2690. },
  2691. "right feet_back": {
  2692. "attachment": [
  2693. { "name": null }
  2694. ]
  2695. },
  2696. "right hand_back": {
  2697. "attachment": [
  2698. { "name": null }
  2699. ]
  2700. },
  2701. "tail": {
  2702. "attachment": [
  2703. { "name": null }
  2704. ]
  2705. },
  2706. "tail_back": {
  2707. "attachment": [
  2708. { "name": null }
  2709. ]
  2710. },
  2711. "yanzhu": {
  2712. "attachment": [
  2713. { "name": null }
  2714. ]
  2715. },
  2716. "yanzhu2": {
  2717. "attachment": [
  2718. { "name": null }
  2719. ]
  2720. },
  2721. "yanzhu3": {
  2722. "attachment": [
  2723. { "name": null }
  2724. ]
  2725. }
  2726. },
  2727. "bones": {
  2728. "lefthand_front": {
  2729. "rotate": [
  2730. { "angle": 1.75 }
  2731. ]
  2732. },
  2733. "lefthand__front": {
  2734. "rotate": [
  2735. {},
  2736. { "time": 0.5, "angle": 11.37 },
  2737. { "time": 1 }
  2738. ]
  2739. },
  2740. "leftyanzhu_front": {
  2741. "rotate": [
  2742. {},
  2743. { "time": 0.5, "angle": -64.58 },
  2744. { "time": 1 }
  2745. ],
  2746. "translate": [
  2747. {},
  2748. { "time": 0.5, "x": -2.23, "y": -3.24, "curve": 0.25, "c3": 0.75 },
  2749. { "time": 1 }
  2750. ]
  2751. },
  2752. "left_front": {
  2753. "rotate": [
  2754. { "angle": -1.47 },
  2755. { "time": 0.0667 },
  2756. { "time": 0.5667, "angle": -11.03 },
  2757. { "time": 1, "angle": -1.47 }
  2758. ]
  2759. },
  2760. "rightyanzhu_front": {
  2761. "rotate": [
  2762. {},
  2763. { "time": 0.5, "angle": -64.58 },
  2764. { "time": 1 }
  2765. ],
  2766. "translate": [
  2767. {},
  2768. { "time": 0.5, "x": -2.01, "y": -5.46, "curve": 0.25, "c3": 0.75 },
  2769. { "time": 1 }
  2770. ]
  2771. },
  2772. "right_front": {
  2773. "rotate": [
  2774. { "angle": -14.66 }
  2775. ],
  2776. "translate": [
  2777. { "x": -6.29, "y": -2.66 }
  2778. ]
  2779. },
  2780. "ringt_front": {
  2781. "rotate": [
  2782. { "angle": 1.51 },
  2783. { "time": 0.0667 },
  2784. { "time": 0.5667, "angle": 11.35 },
  2785. { "time": 1, "angle": 1.51 }
  2786. ]
  2787. },
  2788. "tou_front": {
  2789. "rotate": [
  2790. { "angle": -1.27 },
  2791. { "time": 0.1667, "angle": 2.04 },
  2792. { "time": 0.6667, "angle": -7.9 },
  2793. { "time": 1, "angle": -1.27 }
  2794. ],
  2795. "translate": [
  2796. {},
  2797. { "time": 0.5, "x": -2.92, "y": -0.86 },
  2798. { "time": 1 }
  2799. ]
  2800. },
  2801. "k3": {
  2802. "rotate": [
  2803. {},
  2804. { "time": 0.5, "angle": -10.09 },
  2805. { "time": 1 }
  2806. ],
  2807. "translate": [
  2808. { "x": 6.81, "y": -0.42 },
  2809. { "time": 0.5, "x": 7.63, "y": -9.67 },
  2810. { "time": 1, "x": 6.81, "y": -0.42 }
  2811. ]
  2812. },
  2813. "bone_left": {
  2814. "translate": [
  2815. { "x": 581.94 }
  2816. ]
  2817. },
  2818. "bone_front": {
  2819. "translate": [
  2820. { "x": -332.15, "y": -0.91 }
  2821. ]
  2822. },
  2823. "bone10": {
  2824. "rotate": [
  2825. {},
  2826. { "time": 0.5, "angle": -4.1 },
  2827. { "time": 1 }
  2828. ],
  2829. "translate": [
  2830. {},
  2831. { "time": 0.5, "x": -1.06, "y": -7.42 },
  2832. { "time": 1 }
  2833. ]
  2834. },
  2835. "bone12": {
  2836. "rotate": [
  2837. {},
  2838. { "time": 0.5, "angle": 11.26 },
  2839. { "time": 1 }
  2840. ]
  2841. }
  2842. }
  2843. },
  2844. "stand_left": {
  2845. "slots": {
  2846. "bikong_front": {
  2847. "attachment": [
  2848. { "name": null }
  2849. ]
  2850. },
  2851. "bingkou2_front": {
  2852. "attachment": [
  2853. { "name": null }
  2854. ]
  2855. },
  2856. "bingzi_front": {
  2857. "attachment": [
  2858. { "name": null }
  2859. ]
  2860. },
  2861. "bizi_front": {
  2862. "attachment": [
  2863. { "name": null }
  2864. ]
  2865. },
  2866. "body_back": {
  2867. "attachment": [
  2868. { "name": null }
  2869. ]
  2870. },
  2871. "body_front": {
  2872. "attachment": [
  2873. { "name": null }
  2874. ]
  2875. },
  2876. "eye1_back": {
  2877. "attachment": [
  2878. { "name": null }
  2879. ]
  2880. },
  2881. "eye2_back": {
  2882. "attachment": [
  2883. { "name": null }
  2884. ]
  2885. },
  2886. "jian_back": {
  2887. "attachment": [
  2888. { "name": null }
  2889. ]
  2890. },
  2891. "left_front": {
  2892. "attachment": [
  2893. { "name": null }
  2894. ]
  2895. },
  2896. "left arm_back": {
  2897. "attachment": [
  2898. { "name": null }
  2899. ]
  2900. },
  2901. "left feet_back": {
  2902. "attachment": [
  2903. { "name": null }
  2904. ]
  2905. },
  2906. "lefthand__front": {
  2907. "attachment": [
  2908. { "name": null }
  2909. ]
  2910. },
  2911. "left hand_back": {
  2912. "attachment": [
  2913. { "name": null }
  2914. ]
  2915. },
  2916. "lefthand_front": {
  2917. "attachment": [
  2918. { "name": null }
  2919. ]
  2920. },
  2921. "leftleg_front": {
  2922. "attachment": [
  2923. { "name": null }
  2924. ]
  2925. },
  2926. "leftyanzhu_front": {
  2927. "attachment": [
  2928. { "name": null }
  2929. ]
  2930. },
  2931. "lian_front": {
  2932. "attachment": [
  2933. { "name": null }
  2934. ]
  2935. },
  2936. "right_front": {
  2937. "attachment": [
  2938. { "name": null }
  2939. ]
  2940. },
  2941. "right arm_back": {
  2942. "attachment": [
  2943. { "name": null }
  2944. ]
  2945. },
  2946. "right feet_back": {
  2947. "attachment": [
  2948. { "name": null }
  2949. ]
  2950. },
  2951. "right hand_back": {
  2952. "attachment": [
  2953. { "name": null }
  2954. ]
  2955. },
  2956. "rightleg_front": {
  2957. "attachment": [
  2958. { "name": null }
  2959. ]
  2960. },
  2961. "rightyanzhu_front": {
  2962. "attachment": [
  2963. { "name": null }
  2964. ]
  2965. },
  2966. "ringt_front": {
  2967. "attachment": [
  2968. { "name": null }
  2969. ]
  2970. },
  2971. "tail_back": {
  2972. "attachment": [
  2973. { "name": null }
  2974. ]
  2975. },
  2976. "tou_front": {
  2977. "attachment": [
  2978. { "name": null }
  2979. ]
  2980. },
  2981. "wuqi_front": {
  2982. "attachment": [
  2983. { "name": null }
  2984. ]
  2985. },
  2986. "yanjin_front": {
  2987. "attachment": [
  2988. { "name": null }
  2989. ]
  2990. },
  2991. "yanjing_front": {
  2992. "attachment": [
  2993. { "name": null }
  2994. ]
  2995. }
  2996. },
  2997. "bones": {
  2998. "body": {
  2999. "translate": [
  3000. {},
  3001. { "time": 0.5, "y": -1.89 },
  3002. { "time": 1 }
  3003. ]
  3004. },
  3005. "bone": {
  3006. "rotate": [
  3007. {},
  3008. { "time": 0.5, "angle": 3.1 },
  3009. { "time": 1 }
  3010. ],
  3011. "translate": [
  3012. {},
  3013. { "time": 0.5, "x": 0.63, "y": -2.55 },
  3014. { "time": 1 }
  3015. ]
  3016. },
  3017. "bone2": {
  3018. "rotate": [
  3019. { "angle": 0.76 },
  3020. { "time": 0.1667 },
  3021. { "time": 0.6667, "angle": 2.28 },
  3022. { "time": 1, "angle": 0.76 }
  3023. ],
  3024. "translate": [
  3025. { "x": -0.58, "y": 0.25 },
  3026. { "time": 0.1667 },
  3027. { "time": 0.6667, "x": -1.76, "y": 0.75 },
  3028. { "time": 1, "x": -0.58, "y": 0.25 }
  3029. ]
  3030. },
  3031. "face": {
  3032. "rotate": [
  3033. {},
  3034. { "time": 0.5, "angle": 7.34 },
  3035. { "time": 1 }
  3036. ]
  3037. },
  3038. "meimao": {
  3039. "rotate": [
  3040. {},
  3041. { "time": 0.5, "angle": -10.37 },
  3042. { "time": 1 }
  3043. ]
  3044. },
  3045. "K1": {
  3046. "rotate": [
  3047. { "angle": 1.44 }
  3048. ],
  3049. "translate": [
  3050. { "x": -0.76, "y": -0.36 },
  3051. { "time": 0.5, "x": -5.17, "y": 0.04 },
  3052. { "time": 1, "x": -0.76, "y": -0.36 }
  3053. ]
  3054. },
  3055. "arm2": {
  3056. "rotate": [
  3057. { "angle": 0.68 },
  3058. { "time": 0.1667 },
  3059. { "time": 0.6667, "angle": 2.4 },
  3060. { "time": 1, "angle": 0.68 }
  3061. ]
  3062. },
  3063. "hand1": {
  3064. "rotate": [
  3065. { "angle": -2.25 },
  3066. { "time": 0.1667 },
  3067. { "time": 0.6667, "angle": -7.94 },
  3068. { "time": 1, "angle": -2.25 }
  3069. ]
  3070. },
  3071. "feet1": {
  3072. "translate": [
  3073. {},
  3074. { "time": 0.5, "y": 1.89 },
  3075. { "time": 1 }
  3076. ]
  3077. },
  3078. "feet": {
  3079. "translate": [
  3080. {},
  3081. { "time": 0.5, "y": 1.89 },
  3082. { "time": 1 }
  3083. ]
  3084. },
  3085. "eye2": {
  3086. "rotate": [
  3087. { "angle": -3.9 },
  3088. { "time": 0.2333 },
  3089. { "time": 0.7333, "angle": -8.56 },
  3090. { "time": 1, "angle": -3.9 }
  3091. ]
  3092. },
  3093. "eye1": {
  3094. "rotate": [
  3095. { "angle": -4.73 },
  3096. { "time": 0.2333 },
  3097. { "time": 0.7333, "angle": -10.37 },
  3098. { "time": 1, "angle": -4.73 }
  3099. ]
  3100. },
  3101. "tail": {
  3102. "rotate": [
  3103. { "angle": -5.26 },
  3104. { "time": 0.1, "angle": -6.93 },
  3105. { "time": 0.6, "angle": 5.9 },
  3106. { "time": 1, "angle": -5.26 }
  3107. ]
  3108. },
  3109. "bone3": {
  3110. "rotate": [
  3111. { "angle": -3.27 },
  3112. { "time": 0.2, "angle": -6.89 },
  3113. { "time": 0.7, "angle": 2.96 },
  3114. { "time": 1, "angle": -3.27 }
  3115. ]
  3116. },
  3117. "bone4": {
  3118. "rotate": [
  3119. { "angle": 1.87 },
  3120. { "time": 0.3, "angle": -7.34 },
  3121. { "time": 0.8, "angle": 7.23 },
  3122. { "time": 1, "angle": 1.87 }
  3123. ]
  3124. },
  3125. "yanzhu": {
  3126. "rotate": [
  3127. {},
  3128. { "time": 0.5, "angle": 62.07 },
  3129. { "time": 1 }
  3130. ],
  3131. "translate": [
  3132. {},
  3133. { "time": 0.5, "x": -1.25, "y": -2.23 },
  3134. { "time": 1 }
  3135. ]
  3136. },
  3137. "yanzhu2": {
  3138. "rotate": [
  3139. {},
  3140. { "time": 0.5, "angle": 74.58 },
  3141. { "time": 1 }
  3142. ],
  3143. "translate": [
  3144. {},
  3145. { "time": 0.5, "x": -0.44, "y": -5.79 },
  3146. { "time": 1 }
  3147. ]
  3148. },
  3149. "shadow": {
  3150. "scale": [
  3151. { "x": -1 }
  3152. ]
  3153. }
  3154. }
  3155. },
  3156. "stand_right": {
  3157. "slots": {
  3158. "bikong_front": {
  3159. "attachment": [
  3160. { "name": null }
  3161. ]
  3162. },
  3163. "bingkou2_front": {
  3164. "attachment": [
  3165. { "name": null }
  3166. ]
  3167. },
  3168. "bingzi_front": {
  3169. "attachment": [
  3170. { "name": null }
  3171. ]
  3172. },
  3173. "bizi_front": {
  3174. "attachment": [
  3175. { "name": null }
  3176. ]
  3177. },
  3178. "body_back": {
  3179. "attachment": [
  3180. { "name": null }
  3181. ]
  3182. },
  3183. "body_front": {
  3184. "attachment": [
  3185. { "name": null }
  3186. ]
  3187. },
  3188. "eye1_back": {
  3189. "attachment": [
  3190. { "name": null }
  3191. ]
  3192. },
  3193. "eye2_back": {
  3194. "attachment": [
  3195. { "name": null }
  3196. ]
  3197. },
  3198. "jian_back": {
  3199. "attachment": [
  3200. { "name": null }
  3201. ]
  3202. },
  3203. "left_front": {
  3204. "attachment": [
  3205. { "name": null }
  3206. ]
  3207. },
  3208. "left arm_back": {
  3209. "attachment": [
  3210. { "name": null }
  3211. ]
  3212. },
  3213. "left feet_back": {
  3214. "attachment": [
  3215. { "name": null }
  3216. ]
  3217. },
  3218. "lefthand__front": {
  3219. "attachment": [
  3220. { "name": null }
  3221. ]
  3222. },
  3223. "left hand_back": {
  3224. "attachment": [
  3225. { "name": null }
  3226. ]
  3227. },
  3228. "lefthand_front": {
  3229. "attachment": [
  3230. { "name": null }
  3231. ]
  3232. },
  3233. "leftleg_front": {
  3234. "attachment": [
  3235. { "name": null }
  3236. ]
  3237. },
  3238. "leftyanzhu_front": {
  3239. "attachment": [
  3240. { "name": null }
  3241. ]
  3242. },
  3243. "lian_front": {
  3244. "attachment": [
  3245. { "name": null }
  3246. ]
  3247. },
  3248. "right_front": {
  3249. "attachment": [
  3250. { "name": null }
  3251. ]
  3252. },
  3253. "right arm_back": {
  3254. "attachment": [
  3255. { "name": null }
  3256. ]
  3257. },
  3258. "right feet_back": {
  3259. "attachment": [
  3260. { "name": null }
  3261. ]
  3262. },
  3263. "right hand_back": {
  3264. "attachment": [
  3265. { "name": null }
  3266. ]
  3267. },
  3268. "rightleg_front": {
  3269. "attachment": [
  3270. { "name": null }
  3271. ]
  3272. },
  3273. "rightyanzhu_front": {
  3274. "attachment": [
  3275. { "name": null }
  3276. ]
  3277. },
  3278. "ringt_front": {
  3279. "attachment": [
  3280. { "name": null }
  3281. ]
  3282. },
  3283. "tail_back": {
  3284. "attachment": [
  3285. { "name": null }
  3286. ]
  3287. },
  3288. "tou_front": {
  3289. "attachment": [
  3290. { "name": null }
  3291. ]
  3292. },
  3293. "wuqi_front": {
  3294. "attachment": [
  3295. { "name": null }
  3296. ]
  3297. },
  3298. "yanjin_front": {
  3299. "attachment": [
  3300. { "name": null }
  3301. ]
  3302. },
  3303. "yanjing_front": {
  3304. "attachment": [
  3305. { "name": null }
  3306. ]
  3307. }
  3308. },
  3309. "bones": {
  3310. "body": {
  3311. "translate": [
  3312. {},
  3313. { "time": 0.5, "y": -1.89 },
  3314. { "time": 1 }
  3315. ]
  3316. },
  3317. "bone": {
  3318. "rotate": [
  3319. {},
  3320. { "time": 0.5, "angle": 3.1 },
  3321. { "time": 1 }
  3322. ],
  3323. "translate": [
  3324. {},
  3325. { "time": 0.5, "x": 0.63, "y": -2.55 },
  3326. { "time": 1 }
  3327. ]
  3328. },
  3329. "bone2": {
  3330. "rotate": [
  3331. { "angle": 0.76 },
  3332. { "time": 0.1667 },
  3333. { "time": 0.6667, "angle": 2.28 },
  3334. { "time": 1, "angle": 0.76 }
  3335. ],
  3336. "translate": [
  3337. { "x": -0.58, "y": 0.25 },
  3338. { "time": 0.1667 },
  3339. { "time": 0.6667, "x": -1.76, "y": 0.75 },
  3340. { "time": 1, "x": -0.58, "y": 0.25 }
  3341. ]
  3342. },
  3343. "face": {
  3344. "rotate": [
  3345. {},
  3346. { "time": 0.5, "angle": 7.34 },
  3347. { "time": 1 }
  3348. ]
  3349. },
  3350. "meimao": {
  3351. "rotate": [
  3352. {},
  3353. { "time": 0.5, "angle": -10.37 },
  3354. { "time": 1 }
  3355. ]
  3356. },
  3357. "K1": {
  3358. "rotate": [
  3359. { "angle": 1.44 }
  3360. ],
  3361. "translate": [
  3362. { "x": -0.76, "y": -0.36 },
  3363. { "time": 0.5, "x": -5.17, "y": 0.04 },
  3364. { "time": 1, "x": -0.76, "y": -0.36 }
  3365. ]
  3366. },
  3367. "arm2": {
  3368. "rotate": [
  3369. { "angle": 0.68 },
  3370. { "time": 0.1667 },
  3371. { "time": 0.6667, "angle": 2.4 },
  3372. { "time": 1, "angle": 0.68 }
  3373. ]
  3374. },
  3375. "hand1": {
  3376. "rotate": [
  3377. { "angle": -2.25 },
  3378. { "time": 0.1667 },
  3379. { "time": 0.6667, "angle": -7.94 },
  3380. { "time": 1, "angle": -2.25 }
  3381. ]
  3382. },
  3383. "feet1": {
  3384. "translate": [
  3385. {},
  3386. { "time": 0.5, "y": 1.89 },
  3387. { "time": 1 }
  3388. ]
  3389. },
  3390. "feet": {
  3391. "translate": [
  3392. {},
  3393. { "time": 0.5, "y": 1.89 },
  3394. { "time": 1 }
  3395. ]
  3396. },
  3397. "eye2": {
  3398. "rotate": [
  3399. { "angle": -3.9 },
  3400. { "time": 0.2333 },
  3401. { "time": 0.7333, "angle": -8.56 },
  3402. { "time": 1, "angle": -3.9 }
  3403. ]
  3404. },
  3405. "eye1": {
  3406. "rotate": [
  3407. { "angle": -4.73 },
  3408. { "time": 0.2333 },
  3409. { "time": 0.7333, "angle": -10.37 },
  3410. { "time": 1, "angle": -4.73 }
  3411. ]
  3412. },
  3413. "tail": {
  3414. "rotate": [
  3415. { "angle": -5.26 },
  3416. { "time": 0.1, "angle": -6.93 },
  3417. { "time": 0.6, "angle": 5.9 },
  3418. { "time": 1, "angle": -5.26 }
  3419. ]
  3420. },
  3421. "bone3": {
  3422. "rotate": [
  3423. { "angle": -3.27 },
  3424. { "time": 0.2, "angle": -6.89 },
  3425. { "time": 0.7, "angle": 2.96 },
  3426. { "time": 1, "angle": -3.27 }
  3427. ]
  3428. },
  3429. "bone4": {
  3430. "rotate": [
  3431. { "angle": 1.87 },
  3432. { "time": 0.3, "angle": -7.34 },
  3433. { "time": 0.8, "angle": 7.23 },
  3434. { "time": 1, "angle": 1.87 }
  3435. ]
  3436. },
  3437. "yanzhu": {
  3438. "rotate": [
  3439. {},
  3440. { "time": 0.5, "angle": 62.07 },
  3441. { "time": 1 }
  3442. ],
  3443. "translate": [
  3444. {},
  3445. { "time": 0.5, "x": -1.25, "y": -2.23 },
  3446. { "time": 1 }
  3447. ]
  3448. },
  3449. "yanzhu2": {
  3450. "rotate": [
  3451. {},
  3452. { "time": 0.5, "angle": 74.58 },
  3453. { "time": 1 }
  3454. ],
  3455. "translate": [
  3456. {},
  3457. { "time": 0.5, "x": -0.44, "y": -5.79 },
  3458. { "time": 1 }
  3459. ]
  3460. },
  3461. "shadow": {
  3462. "scale": [
  3463. { "x": -1 }
  3464. ]
  3465. },
  3466. "bone_left": {
  3467. "scale": [
  3468. { "x": -1 }
  3469. ]
  3470. }
  3471. }
  3472. },
  3473. "stand_up": {
  3474. "slots": {
  3475. "arm": {
  3476. "attachment": [
  3477. { "name": null }
  3478. ]
  3479. },
  3480. "arm2": {
  3481. "attachment": [
  3482. { "name": null }
  3483. ]
  3484. },
  3485. "bikong_front": {
  3486. "attachment": [
  3487. { "name": null }
  3488. ]
  3489. },
  3490. "bingkou2_front": {
  3491. "attachment": [
  3492. { "name": null }
  3493. ]
  3494. },
  3495. "bingzi_front": {
  3496. "attachment": [
  3497. { "name": null }
  3498. ]
  3499. },
  3500. "bizi_front": {
  3501. "attachment": [
  3502. { "name": null }
  3503. ]
  3504. },
  3505. "body1": {
  3506. "attachment": [
  3507. { "name": null }
  3508. ]
  3509. },
  3510. "body_front": {
  3511. "attachment": [
  3512. { "name": null }
  3513. ]
  3514. },
  3515. "eye": {
  3516. "attachment": [
  3517. { "name": null }
  3518. ]
  3519. },
  3520. "eye1": {
  3521. "attachment": [
  3522. { "name": null }
  3523. ]
  3524. },
  3525. "eye2": {
  3526. "attachment": [
  3527. { "name": null }
  3528. ]
  3529. },
  3530. "face": {
  3531. "attachment": [
  3532. { "name": null }
  3533. ]
  3534. },
  3535. "feet": {
  3536. "attachment": [
  3537. { "name": null }
  3538. ]
  3539. },
  3540. "feet1": {
  3541. "attachment": [
  3542. { "name": null }
  3543. ]
  3544. },
  3545. "gun": {
  3546. "attachment": [
  3547. { "name": null }
  3548. ]
  3549. },
  3550. "hand": {
  3551. "attachment": [
  3552. { "name": null }
  3553. ]
  3554. },
  3555. "hand1": {
  3556. "attachment": [
  3557. { "name": null }
  3558. ]
  3559. },
  3560. "left_front": {
  3561. "attachment": [
  3562. { "name": null }
  3563. ]
  3564. },
  3565. "lefthand__front": {
  3566. "attachment": [
  3567. { "name": null }
  3568. ]
  3569. },
  3570. "lefthand_front": {
  3571. "attachment": [
  3572. { "name": null }
  3573. ]
  3574. },
  3575. "leftleg_front": {
  3576. "attachment": [
  3577. { "name": null }
  3578. ]
  3579. },
  3580. "leftyanzhu_front": {
  3581. "attachment": [
  3582. { "name": null }
  3583. ]
  3584. },
  3585. "lian_front": {
  3586. "attachment": [
  3587. { "name": null }
  3588. ]
  3589. },
  3590. "meimao": {
  3591. "attachment": [
  3592. { "name": null }
  3593. ]
  3594. },
  3595. "meimao2": {
  3596. "attachment": [
  3597. { "name": null }
  3598. ]
  3599. },
  3600. "mouth": {
  3601. "attachment": [
  3602. { "name": null }
  3603. ]
  3604. },
  3605. "nose": {
  3606. "attachment": [
  3607. { "name": null }
  3608. ]
  3609. },
  3610. "right_front": {
  3611. "attachment": [
  3612. { "name": null }
  3613. ]
  3614. },
  3615. "rightleg_front": {
  3616. "attachment": [
  3617. { "name": null }
  3618. ]
  3619. },
  3620. "rightyanzhu_front": {
  3621. "attachment": [
  3622. { "name": null }
  3623. ]
  3624. },
  3625. "ringt_front": {
  3626. "attachment": [
  3627. { "name": null }
  3628. ]
  3629. },
  3630. "tail": {
  3631. "attachment": [
  3632. { "name": null }
  3633. ]
  3634. },
  3635. "tou_front": {
  3636. "attachment": [
  3637. { "name": null }
  3638. ]
  3639. },
  3640. "wuqi_front": {
  3641. "attachment": [
  3642. { "name": null }
  3643. ]
  3644. },
  3645. "yanjin_front": {
  3646. "attachment": [
  3647. { "name": null }
  3648. ]
  3649. },
  3650. "yanjing_front": {
  3651. "attachment": [
  3652. { "name": null }
  3653. ]
  3654. },
  3655. "yanzhu": {
  3656. "attachment": [
  3657. { "name": null }
  3658. ]
  3659. },
  3660. "yanzhu2": {
  3661. "attachment": [
  3662. { "name": null }
  3663. ]
  3664. },
  3665. "yanzhu3": {
  3666. "attachment": [
  3667. { "name": null }
  3668. ]
  3669. }
  3670. },
  3671. "bones": {
  3672. "bone_back": {
  3673. "translate": [
  3674. { "x": 331.06, "y": 16.43 }
  3675. ]
  3676. },
  3677. "bone_left": {
  3678. "translate": [
  3679. { "x": -331.06, "y": 43.43 }
  3680. ]
  3681. },
  3682. "body_back": {
  3683. "translate": [
  3684. {},
  3685. { "time": 0.5, "y": -2.73 },
  3686. { "time": 1 }
  3687. ]
  3688. },
  3689. "bone5": {
  3690. "rotate": [
  3691. { "angle": 0.22 },
  3692. { "time": 0.1 },
  3693. { "time": 0.6, "angle": 1.12 },
  3694. { "time": 1, "angle": 0.22 }
  3695. ],
  3696. "translate": [
  3697. { "y": -0.36 },
  3698. { "time": 0.1 },
  3699. { "time": 0.6, "y": -1.82 },
  3700. { "time": 1, "y": -0.36 }
  3701. ]
  3702. },
  3703. "bone6": {
  3704. "rotate": [
  3705. { "angle": 0.55 },
  3706. { "time": 0.1667 },
  3707. { "time": 0.6667, "angle": 1.67 },
  3708. { "time": 1, "angle": 0.55 }
  3709. ],
  3710. "translate": [
  3711. { "x": -0.59, "y": 0.32 },
  3712. { "time": 0.1667 },
  3713. { "time": 0.6667, "x": -1.78, "y": 0.98 },
  3714. { "time": 1, "x": -0.59, "y": 0.32 }
  3715. ]
  3716. },
  3717. "eye1_back": {
  3718. "rotate": [
  3719. { "angle": 4.71 },
  3720. { "time": 0.2 },
  3721. { "time": 0.7, "angle": 12.81 },
  3722. { "time": 1, "angle": 4.71 }
  3723. ]
  3724. },
  3725. "eye2_back": {
  3726. "rotate": [
  3727. { "angle": -6.71 },
  3728. { "time": 0.2 },
  3729. { "time": 0.7, "angle": -18.26 },
  3730. { "time": 1, "angle": -6.71 }
  3731. ]
  3732. },
  3733. "right arm_back": {
  3734. "rotate": [
  3735. { "angle": 3.89 },
  3736. { "time": 0.5, "angle": -7.67 },
  3737. { "time": 1, "angle": 3.89 }
  3738. ]
  3739. },
  3740. "bone7": {
  3741. "rotate": [
  3742. { "angle": 1.19 },
  3743. { "time": 0.5, "angle": 12.44 },
  3744. { "time": 1, "angle": 1.19 }
  3745. ]
  3746. },
  3747. "gun2": {
  3748. "translate": [
  3749. {},
  3750. { "time": 0.5, "y": -4.56 },
  3751. { "time": 1 }
  3752. ]
  3753. },
  3754. "bone11": {
  3755. "rotate": [
  3756. {},
  3757. { "time": 0.5, "angle": -5.02 },
  3758. { "time": 1 }
  3759. ],
  3760. "translate": [
  3761. { "x": 4.71, "y": -4.41 },
  3762. { "time": 0.5, "x": -7.42, "y": 3.4 },
  3763. { "time": 1, "x": 4.71, "y": -4.41 }
  3764. ]
  3765. },
  3766. "left arm_back": {
  3767. "translate": [
  3768. {},
  3769. { "time": 0.5, "x": -6.37, "y": 0.37 },
  3770. { "time": 1 }
  3771. ]
  3772. },
  3773. "tail_back": {
  3774. "rotate": [
  3775. {},
  3776. { "time": 0.5, "angle": 15.17 },
  3777. { "time": 1 }
  3778. ]
  3779. },
  3780. "bone8": {
  3781. "rotate": [
  3782. { "angle": 1.8 },
  3783. { "time": 0.1 },
  3784. { "time": 0.6, "angle": 13.88 },
  3785. { "time": 1, "angle": 1.8 }
  3786. ]
  3787. },
  3788. "bone9": {
  3789. "rotate": [
  3790. { "angle": 5.99 },
  3791. { "time": 0.2 },
  3792. { "time": 0.7, "angle": 16.28 },
  3793. { "time": 1, "angle": 5.99 }
  3794. ]
  3795. },
  3796. "left feet_back": {
  3797. "translate": [
  3798. {},
  3799. { "time": 0.5, "y": 2.73 },
  3800. { "time": 1 }
  3801. ]
  3802. },
  3803. "right feet_back": {
  3804. "translate": [
  3805. {},
  3806. { "time": 0.5, "y": 2.73 },
  3807. { "time": 1 }
  3808. ]
  3809. }
  3810. }
  3811. }
  3812. }
  3813. }