123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921 |
- {
- "skeleton": { "hash": "JqcyicS3+3Gr6gOZtaJP73Tpjzc", "spine": "3.7.94", "width": 1061.55, "height": 335.86, "images": "./images/", "audio": "E:/zhj_spine/小小领主/spine/qingwa/qingwa_3.8" },
- "bones": [
- { "name": "root" },
- { "name": "all", "parent": "root", "y": -80.77, "color": "fdff00ff" },
- { "name": "bone_left", "parent": "all", "x": -1.36, "y": 35.85, "color": "4aff03ff" },
- { "name": "body", "parent": "bone_left", "x": -7.48, "y": 74.81, "color": "52ff03ff" },
- { "name": "gun", "parent": "body", "length": 111.5, "x": 32.01, "y": 0.26, "color": "ff03ddff" },
- { "name": "K1", "parent": "gun", "x": -4.14, "y": 2.22, "color": "ff3f00ff" },
- {
- "name": "bone",
- "parent": "body",
- "length": 45.8,
- "rotation": 101.91,
- "x": -0.11,
- "y": 12.65,
- "color": "52ff03ff"
- },
- {
- "name": "arm",
- "parent": "bone",
- "length": 43.86,
- "rotation": 151.22,
- "x": 37.31,
- "y": -69.62,
- "color": "52ff03ff"
- },
- {
- "name": "hand",
- "parent": "arm",
- "length": 24.56,
- "rotation": -4.39,
- "x": 45.5,
- "y": 1.16,
- "color": "52ff03ff"
- },
- {
- "name": "arm2",
- "parent": "bone",
- "length": 43.3,
- "rotation": 108.03,
- "x": 42.39,
- "y": 12.13,
- "color": "52ff03ff"
- },
- { "name": "bone_back", "parent": "all", "x": -349.67, "y": 49.58, "color": "ff00ffff" },
- { "name": "body_back", "parent": "bone_back", "x": 1.44, "y": 69.53, "color": "ff00ffff" },
- {
- "name": "bone2",
- "parent": "bone",
- "length": 74.04,
- "rotation": -24.17,
- "x": 49.17,
- "y": -0.21,
- "color": "52ff03ff"
- },
- {
- "name": "tail",
- "parent": "body",
- "length": 13.11,
- "rotation": -39.09,
- "x": 65.39,
- "y": 5.02,
- "color": "52ff03ff"
- },
- {
- "name": "bone3",
- "parent": "tail",
- "length": 10.52,
- "rotation": 64.11,
- "x": 13.6,
- "y": 0.4,
- "color": "52ff03ff"
- },
- { "name": "bone4", "parent": "bone3", "length": 14.62, "rotation": 64.98, "x": 10.52, "color": "52ff03ff" },
- {
- "name": "bone5",
- "parent": "body_back",
- "length": 49.24,
- "rotation": 92.38,
- "x": -1.12,
- "y": 28.19,
- "color": "ff00ffff"
- },
- { "name": "bone6", "parent": "bone5", "length": 56.45, "rotation": -5.5, "x": 49.24, "color": "ff00ffff" },
- {
- "name": "right arm_back",
- "parent": "bone5",
- "length": 35.69,
- "rotation": -58.98,
- "x": 16.34,
- "y": -50.94,
- "color": "ff00ffff"
- },
- { "name": "bone7", "parent": "right arm_back", "length": 33.08, "rotation": 37.12, "x": 35.69, "color": "ff00ffff" },
- {
- "name": "tail_back",
- "parent": "body_back",
- "length": 15.26,
- "rotation": -142.3,
- "x": -19.12,
- "y": -12.78,
- "color": "ff00ffff"
- },
- { "name": "bone8", "parent": "tail_back", "length": 10.48, "rotation": -80.57, "x": 15.26, "color": "ff00ffff" },
- { "name": "bone9", "parent": "bone8", "length": 16.32, "rotation": -36.18, "x": 10.48, "color": "ff00ffff" },
- { "name": "gun2", "parent": "body_back", "length": 146.55, "x": -41.26, "y": 73.56, "color": "ff00ffff" },
- { "name": "bone11", "parent": "gun2", "rotation": 80.62, "x": -41.09, "y": 39.71, "color": "ff3f00ff" },
- { "name": "tou", "parent": "bone2", "rotation": 17.18, "x": 33.06, "y": 4.71, "color": "52ff03ff" },
- { "name": "eye", "parent": "tou", "x": 5.88, "y": -27.2, "color": "52ff03ff" },
- {
- "name": "eye1",
- "parent": "bone2",
- "length": 38.98,
- "rotation": -15.97,
- "x": 88.47,
- "y": -31.94,
- "color": "52ff03ff"
- },
- {
- "name": "eye2",
- "parent": "bone2",
- "length": 25.66,
- "rotation": 60.27,
- "x": 64.15,
- "y": 49.98,
- "color": "52ff03ff"
- },
- {
- "name": "eye1_back",
- "parent": "bone6",
- "length": 46.47,
- "rotation": 51.69,
- "x": 54.37,
- "y": 19.39,
- "color": "ff00ffff"
- },
- {
- "name": "eye2_back",
- "parent": "bone6",
- "length": 36.23,
- "rotation": -41.87,
- "x": 37.98,
- "y": -56.44,
- "color": "ff00ffff"
- },
- {
- "name": "face",
- "parent": "tou",
- "length": 16.49,
- "rotation": -67.37,
- "x": 22.43,
- "y": -15.22,
- "color": "52ff03ff"
- },
- {
- "name": "feet",
- "parent": "body",
- "length": 24.2,
- "rotation": -86.98,
- "x": 30.41,
- "y": -6.42,
- "color": "52ff03ff"
- },
- {
- "name": "feet1",
- "parent": "body",
- "length": 19.09,
- "rotation": -88.09,
- "x": -23,
- "y": -8.33,
- "color": "52ff03ff"
- },
- {
- "name": "hand1",
- "parent": "arm2",
- "length": 26.16,
- "rotation": -4.01,
- "x": 45.74,
- "y": -2.13,
- "color": "52ff03ff"
- },
- {
- "name": "left arm_back",
- "parent": "bone5",
- "length": 40.43,
- "rotation": 43.32,
- "x": 34.06,
- "y": 39.01,
- "color": "ff00ffff"
- },
- {
- "name": "left hand_back",
- "parent": "left arm_back",
- "length": 23.41,
- "rotation": -28.57,
- "x": 44.64,
- "y": -1.09,
- "color": "ff00ffff"
- },
- {
- "name": "left feet_back",
- "parent": "body_back",
- "length": 18.19,
- "rotation": -95.19,
- "x": -17.47,
- "y": -20.47,
- "color": "ff00ffff"
- },
- {
- "name": "meimao",
- "parent": "tou",
- "length": 15.01,
- "rotation": 48.68,
- "x": 26.2,
- "y": 23.38,
- "color": "52ff03ff"
- },
- { "name": "mouth", "parent": "tou", "x": -15.15, "y": 2.69, "color": "52ff03ff" },
- { "name": "nose", "parent": "tou", "x": 5.24, "y": 24.55, "color": "52ff03ff" },
- {
- "name": "right feet_back",
- "parent": "body_back",
- "length": 21.41,
- "rotation": -90,
- "x": 35.23,
- "y": -15.53,
- "color": "ff00ffff"
- },
- { "name": "shadow", "parent": "all", "x": -1.68, "y": 75.21, "color": "000000ff" },
- {
- "name": "tx",
- "parent": "K1",
- "rotation": -22.6,
- "x": -35.11,
- "y": 16.64,
- "scaleX": 0.902,
- "scaleY": 1.297,
- "color": "ff03ddff"
- },
- {
- "name": "tx2",
- "parent": "gun2",
- "rotation": 179.55,
- "x": -42.37,
- "y": 89.11,
- "transform": "noScale",
- "color": "ff00ffff"
- },
- { "name": "yanzhu", "parent": "eye2", "x": 7.69, "y": 14.63, "color": "52ff03ff" },
- { "name": "yanzhu2", "parent": "eye1", "x": 12.14, "y": 9.09, "color": "52ff03ff" },
- { "name": "bone_front", "parent": "all", "x": 416.6, "y": 31.85, "color": "fdff00ff" },
- { "name": "body_front", "parent": "bone_front", "x": -0.64, "y": 79.23, "color": "fdff00ff" },
- {
- "name": "bone10",
- "parent": "body_front",
- "length": 62.57,
- "rotation": 87.66,
- "x": -1.45,
- "y": 26.55,
- "color": "fdff00ff"
- },
- {
- "name": "tou_front",
- "parent": "bone10",
- "length": 56.98,
- "rotation": 7.31,
- "x": 68.13,
- "y": 2.86,
- "color": "fdff00ff"
- },
- { "name": "lian_front", "parent": "tou_front", "x": 41.34, "y": -9.31, "color": "fdff00ff" },
- {
- "name": "left_front",
- "parent": "tou_front",
- "length": 43.45,
- "rotation": 33.45,
- "x": 53.65,
- "y": 31.05,
- "color": "fdff00ff"
- },
- {
- "name": "ringt_front",
- "parent": "tou_front",
- "length": 44.03,
- "rotation": -52.13,
- "x": 42.59,
- "y": -48.67,
- "color": "fdff00ff"
- },
- { "name": "rightyanzhu_front", "parent": "left_front", "x": 17.54, "y": 14.56, "color": "fdff00ff" },
- { "name": "leftyanzhu_front", "parent": "ringt_front", "x": 16.46, "y": 15.16, "color": "fdff00ff" },
- {
- "name": "lefthand__front",
- "parent": "bone10",
- "length": 26.98,
- "rotation": 138.22,
- "x": 33.46,
- "y": 52.92,
- "color": "fdff00ff"
- },
- { "name": "bone12", "parent": "lefthand__front", "length": 28.33, "rotation": -5.92, "x": 26.98, "color": "fdff00ff" },
- {
- "name": "gun3",
- "parent": "bone10",
- "length": 115.09,
- "rotation": -87.66,
- "x": 31.88,
- "y": -63.54,
- "color": "fdff00ff"
- },
- { "name": "k3", "parent": "gun3", "rotation": -0.77, "x": 36.5, "y": -45.44, "color": "ff3f00ff" },
- {
- "name": "right_front",
- "parent": "bone10",
- "length": 20.71,
- "rotation": -139.41,
- "x": 42.68,
- "y": -56.66,
- "color": "fdff00ff"
- },
- { "name": "lefthand_front", "parent": "right_front", "length": 15, "x": 23.04, "y": -0.27, "color": "fdff00ff" },
- {
- "name": "leftleg_front",
- "parent": "body_front",
- "length": 32.33,
- "rotation": -93.12,
- "x": -24.2,
- "y": 5.79,
- "color": "fdff00ff"
- },
- {
- "name": "rightleg_front",
- "parent": "body_front",
- "length": 25.83,
- "rotation": -91.3,
- "x": 29.81,
- "y": 2.27,
- "color": "fdff00ff"
- },
- { "name": "bizi_front", "parent": "tou_front", "x": -11.14, "y": 4.28, "color": "fdff00ff" },
- { "name": "tx3", "parent": "gun3", "rotation": -90.05, "x": 33.47, "y": -57.16, "color": "fdff00ff" }
- ],
- "slots": [
- { "name": "shadow", "bone": "shadow", "attachment": "shadow" },
- { "name": "rightleg_front", "bone": "rightleg_front", "attachment": "rightleg_front" },
- { "name": "leftleg_front", "bone": "leftleg_front", "attachment": "leftleg_front" },
- { "name": "body_front", "bone": "body_front", "attachment": "body_front" },
- { "name": "feet1", "bone": "feet1", "attachment": "feet1" },
- { "name": "tail", "bone": "tail", "attachment": "tail" },
- { "name": "feet", "bone": "feet", "attachment": "feet" },
- { "name": "hand1", "bone": "hand1", "attachment": "hand1" },
- { "name": "arm2", "bone": "arm2", "attachment": "arm2" },
- { "name": "eye2", "bone": "eye2", "attachment": "eye2" },
- { "name": "body1", "bone": "body", "attachment": "body1" },
- { "name": "face", "bone": "tou", "attachment": "face" },
- { "name": "eye", "bone": "eye", "attachment": "eye" },
- { "name": "meimao2", "bone": "face", "attachment": "meimao2" },
- { "name": "meimao", "bone": "meimao", "attachment": "meimao" },
- { "name": "nose", "bone": "nose", "attachment": "nose" },
- { "name": "yanzhu3", "bone": "eye", "attachment": "yanzhu3" },
- { "name": "mouth", "bone": "mouth", "attachment": "mouth" },
- { "name": "eye1", "bone": "eye1", "attachment": "eye1" },
- { "name": "yanzhu2", "bone": "yanzhu2", "attachment": "yanzhu2" },
- { "name": "yanzhu", "bone": "yanzhu", "attachment": "yanzhu" },
- { "name": "gun", "bone": "K1", "attachment": "jian" },
- { "name": "hand", "bone": "hand", "attachment": "hand" },
- { "name": "arm", "bone": "arm", "attachment": "arm" },
- { "name": "jianqi", "bone": "tx", "blend": "additive" },
- { "name": "jian_back", "bone": "bone11", "attachment": "jian_back" },
- { "name": "left hand_back", "bone": "left hand_back", "attachment": "left hand_back" },
- { "name": "left arm_back", "bone": "left arm_back", "attachment": "left arm_back" },
- { "name": "right hand_back", "bone": "bone7", "attachment": "right hand_back" },
- { "name": "right arm_back", "bone": "right arm_back", "attachment": "right arm_back" },
- { "name": "right feet_back", "bone": "right feet_back", "attachment": "right feet_back" },
- { "name": "left feet_back", "bone": "left feet_back", "attachment": "left feet_back" },
- { "name": "eye1_back", "bone": "eye1_back", "attachment": "eye1_back" },
- { "name": "eye2_back", "bone": "eye2_back", "attachment": "eye2_back" },
- { "name": "body_back", "bone": "body_back", "attachment": "body_back" },
- { "name": "tail_back", "bone": "tail_back", "attachment": "tail_back" },
- { "name": "tx2", "bone": "tx2", "blend": "additive" },
- { "name": "tou_front", "bone": "tou_front", "attachment": "tou_front" },
- { "name": "left_front", "bone": "left_front", "attachment": "left_front" },
- { "name": "lian_front", "bone": "lian_front", "attachment": "lian_front" },
- { "name": "lefthand__front", "bone": "lefthand__front", "attachment": "lefthand__front" },
- { "name": "right_front", "bone": "right_front", "attachment": "right_front" },
- { "name": "ringt_front", "bone": "ringt_front", "attachment": "ringt_front" },
- { "name": "wuqi_front", "bone": "k3", "attachment": "wuqi_front" },
- { "name": "lefthand_front", "bone": "k3", "attachment": "lefthand_front" },
- { "name": "yanjin_front", "bone": "lian_front", "attachment": "yanjin_front" },
- { "name": "yanjing_front", "bone": "lian_front", "attachment": "yanjing_front" },
- { "name": "rightyanzhu_front", "bone": "rightyanzhu_front", "attachment": "rightyanzhu_front" },
- { "name": "leftyanzhu_front", "bone": "leftyanzhu_front", "attachment": "leftyanzhu_front" },
- { "name": "bizi_front", "bone": "bizi_front", "attachment": "bizi_front" },
- { "name": "bingzi_front", "bone": "lian_front", "attachment": "bingzi_front" },
- { "name": "bikong_front", "bone": "lian_front", "attachment": "bikong_front" },
- { "name": "bingkou2_front", "bone": "lian_front", "attachment": "bingkou2_front" },
- { "name": "tx3", "bone": "tx3", "blend": "additive" }
- ],
- "ik": [
- {
- "name": "K2",
- "order": 0,
- "bones": [ "left arm_back", "left hand_back" ],
- "target": "bone11",
- "bendPositive": false
- },
- {
- "name": "k1",
- "order": 1,
- "bones": [ "arm", "hand" ],
- "target": "K1",
- "bendPositive": false
- },
- {
- "name": "k3",
- "order": 2,
- "bones": [ "right_front", "lefthand_front" ],
- "target": "k3"
- }
- ],
- "skins": {
- "default": {
- "arm": {
- "arm": {
- "type": "mesh",
- "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 ],
- "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 ],
- "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 ],
- "hull": 19,
- "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 ],
- "width": 58,
- "height": 60
- }
- },
- "arm2": {
- "arm2": {
- "type": "mesh",
- "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 ],
- "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 ],
- "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 ],
- "hull": 15,
- "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 ],
- "width": 65,
- "height": 61
- }
- },
- "bikong_front": {
- "bikong_front": { "x": -26.12, "y": 18.72, "rotation": -94.97, "width": 10, "height": 18 }
- },
- "bingkou2_front": {
- "bingkou2_front": { "x": -26.69, "y": -1.6, "rotation": -94.97, "width": 10, "height": 18 }
- },
- "bingzi_front": {
- "bingzi_front": { "x": -27.26, "y": 5.64, "rotation": -94.97, "width": 58, "height": 40 }
- },
- "bizi_front": {
- "bizi_front": { "x": 0.35, "y": -4.59, "rotation": -94.97, "width": 17, "height": 21 }
- },
- "body1": {
- "body1": {
- "type": "mesh",
- "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 ],
- "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 ],
- "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 ],
- "hull": 22,
- "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 ],
- "width": 158,
- "height": 179
- }
- },
- "body_back": {
- "body_back": {
- "type": "mesh",
- "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 ],
- "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 ],
- "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 ],
- "hull": 34,
- "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 ],
- "width": 159,
- "height": 183
- }
- },
- "body_front": {
- "body_front": {
- "type": "mesh",
- "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 ],
- "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 ],
- "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 ],
- "hull": 22,
- "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 ],
- "width": 167,
- "height": 119
- }
- },
- "eye": {
- "eye": { "x": 2.03, "y": 3.57, "rotation": -94.92, "width": 42, "height": 31 }
- },
- "eye1": {
- "eye1": { "x": 17.48, "y": -2.83, "rotation": -61.76, "width": 69, "height": 68 }
- },
- "eye1_back": {
- "eye1_back": { "x": 24.28, "y": 0.75, "rotation": -138.57, "width": 77, "height": 76 }
- },
- "eye2": {
- "eye2": { "x": 10.47, "y": 4.81, "rotation": -138.01, "width": 57, "height": 58 }
- },
- "eye2_back": {
- "eye2_back": { "x": 22.43, "y": 1.83, "rotation": -45, "width": 65, "height": 66 }
- },
- "face": {
- "face": { "x": 2.58, "y": -4.09, "rotation": -94.92, "width": 104, "height": 85 }
- },
- "feet": {
- "feet": { "x": 13.62, "y": 1.59, "rotation": 86.98, "width": 35, "height": 35 }
- },
- "feet1": {
- "feet1": { "x": 12.14, "y": 0.83, "rotation": 88.09, "width": 34, "height": 34 }
- },
- "gun": {
- "jian": { "x": -39.32, "y": 15.21, "width": 147, "height": 97 }
- },
- "hand": {
- "hand": {
- "type": "mesh",
- "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 ],
- "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 ],
- "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 ],
- "hull": 18,
- "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 ],
- "width": 46,
- "height": 55
- }
- },
- "hand1": {
- "hand1": { "x": 9.22, "y": -1.75, "rotation": 154.05, "width": 56, "height": 50 }
- },
- "jian_back": {
- "jian_back": {
- "type": "mesh",
- "uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
- "triangles": [ 1, 2, 3, 1, 3, 0 ],
- "vertices": [ -34.59, -32.21, -36.91, 37.75, 123.01, 43.05, 125.33, -26.91 ],
- "hull": 4,
- "edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
- "width": 70,
- "height": 160
- }
- },
- "jianqi": {
- "down_28": {
- "type": "mesh",
- "uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
- "triangles": [ 1, 2, 3, 1, 3, 0 ],
- "vertices": [ -153.7, 56.63, 136.21, 61.26, 139.78, -51.71, -150.13, -56.33 ],
- "hull": 4,
- "edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
- "width": 290,
- "height": 113
- },
- "down_30": {
- "type": "mesh",
- "uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
- "triangles": [ 1, 2, 3, 1, 3, 0 ],
- "vertices": [ -204.73, 57.47, 85.21, 61.73, 88.64, -51.24, -201.3, -55.49 ],
- "hull": 4,
- "edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
- "width": 290,
- "height": 113
- },
- "down_32": {
- "type": "mesh",
- "uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
- "triangles": [ 1, 2, 3, 1, 3, 0 ],
- "vertices": [ -206.13, 55.11, 83.81, 59.36, 87.24, -53.6, -202.69, -57.85 ],
- "hull": 4,
- "edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
- "width": 290,
- "height": 113
- },
- "down_34": {
- "type": "mesh",
- "uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
- "triangles": [ 1, 2, 3, 1, 3, 0 ],
- "vertices": [ -263.04, 56.23, 26.89, 60.49, 30.32, -52.48, -259.61, -56.73 ],
- "hull": 4,
- "edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
- "width": 290,
- "height": 113
- }
- },
- "left arm_back": {
- "left arm_back": {
- "type": "mesh",
- "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 ],
- "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 ],
- "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 ],
- "hull": 15,
- "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 ],
- "width": 62,
- "height": 68
- }
- },
- "left feet_back": {
- "left feet_back": { "x": 6.69, "y": -1.37, "rotation": 95.19, "width": 34, "height": 35 }
- },
- "left hand_back": {
- "left hand_back": {
- "type": "mesh",
- "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 ],
- "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 ],
- "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 ],
- "hull": 17,
- "edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 20, 22, 22, 24, 24, 26, 26, 28, 28, 30, 30, 32, 0, 32, 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 ],
- "width": 53,
- "height": 59
- }
- },
- "left_front": {
- "left_front": { "x": 23.25, "y": 4.57, "rotation": -128.42, "width": 69, "height": 68 }
- },
- "lefthand__front": {
- "lefthand__front": {
- "type": "mesh",
- "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 ],
- "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 ],
- "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 ],
- "hull": 21,
- "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 ],
- "width": 63,
- "height": 63
- }
- },
- "lefthand_front": {
- "lefthand_front": { "x": -2.94, "y": 27.73, "rotation": -40.23, "width": 38, "height": 40 }
- },
- "leftleg_front": {
- "leftleg_front": { "x": 17.4, "y": -1.41, "rotation": 93.12, "width": 38, "height": 44 }
- },
- "leftyanzhu_front": {
- "leftyanzhu_front": { "x": -0.2, "y": 0.62, "rotation": -42.84, "width": 11, "height": 11 }
- },
- "lian_front": {
- "lian_front": { "x": -33.1, "y": 7.34, "rotation": -94.97, "width": 112, "height": 83 }
- },
- "meimao": {
- "meimao": { "x": 4.98, "y": 2.65, "rotation": -143.61, "width": 20, "height": 19 }
- },
- "meimao2": {
- "meimao2": { "x": 4.82, "y": -0.71, "rotation": -27.55, "width": 32, "height": 24 }
- },
- "mouth": {
- "mouth": { "x": -0.67, "y": 0.81, "rotation": -94.92, "width": 42, "height": 27 }
- },
- "nose": {
- "nose": { "x": -2.15, "y": -2.23, "rotation": -94.92, "width": 58, "height": 36 }
- },
- "right arm_back": {
- "right arm_back": { "x": 21.41, "y": -2.05, "rotation": 39.17, "width": 65, "height": 61 }
- },
- "right feet_back": {
- "right feet_back": { "x": 12.83, "y": 0.06, "rotation": 89.99, "width": 34, "height": 33 }
- },
- "right hand_back": {
- "right hand_back": { "x": 16.64, "y": -0.86, "rotation": 16.18, "width": 62, "height": 52 }
- },
- "right_front": {
- "right_front": {
- "type": "mesh",
- "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 ],
- "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 ],
- "vertices": [ 2, 60, -7.01, -9.62, 0.98913, 61, -29.94, -9.71, 0.01087, 1, 60, -8.54, -1.54, 1, 1, 60, -9.71, 7.75, 1, 1, 60, -8.02, 14.61, 1, 2, 60, -0.53, 19.36, 0.98552, 61, -23.8, 19.36, 0.01448, 3, 60, 13.16, 23.65, 0.71876, 61, -10.15, 23.81, 0.28068, 59, -27.62, 34.88, 5.6E-4, 3, 60, 28.64, 28.89, 0.15436, 61, 5.26, 29.23, 0.73537, 59, -8.88, 35.29, 0.11026, 3, 60, 44.33, 28.49, 6.3E-4, 61, 20.95, 29.01, 0.32071, 59, 9.47, 31.58, 0.67866, 2, 61, 25.06, 14.1, 0.00681, 59, 9.8, 18.57, 0.99319, 1, 59, 2.57, 9.69, 1, 2, 61, 12.98, -2.12, 0.03031, 59, -5.45, 7.58, 0.96969, 2, 61, 12.98, 0.04, 0.41865, 59, -7.07, 6.29, 0.58135, 3, 60, 40.63, -8, 0.01008, 61, 17.68, -7.52, 0.82482, 59, -8, -5.97, 0.1651, 3, 60, 37.35, -16.68, 0.11792, 61, 14.5, -16.24, 0.8661, 59, -15.63, -15.13, 0.01598, 2, 60, 27.72, -23.16, 0.36763, 61, 4.95, -22.83, 0.63237, 2, 60, 13.96, -26.98, 0.67062, 61, -8.77, -26.82, 0.32938, 2, 60, -1.29, -19.68, 0.91664, 61, -24.1, -19.69, 0.08336, 2, 60, 11.43, -17.59, 0.757, 61, -11.4, -17.44, 0.243, 2, 60, 7.07, -7.07, 0.94157, 61, -15.89, -6.98, 0.05843, 1, 60, 2.87, 5.5, 1, 2, 60, 22.47, -11.75, 0.43721, 61, -0.43, -11.49, 0.56279, 2, 60, 17.42, -2.97, 0.76812, 61, -5.58, -2.76, 0.23188, 2, 60, 12.6, 8.54, 0.96834, 61, -10.54, 8.69, 0.03166, 3, 60, 32.15, -4.97, 0.05911, 61, 9.16, -4.58, 0.93054, 59, -17.22, -1.25, 0.01036, 3, 60, 24.58, 10.67, 0.2097, 61, 1.41, 10.97, 0.78875, 59, -20.02, 17.54, 0.00156, 2, 61, 13.29, 11.22, 0.60731, 59, -4.63, 15.66, 0.39269, 3, 60, 39.54, 21.82, 4.7E-4, 61, 16.24, 22.28, 0.31621, 59, 3.15, 26.75, 0.68332, 1, 59, 0.35, 16.89, 1 ],
- "hull": 17,
- "edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 20, 22, 22, 24, 24, 26, 26, 28, 28, 30, 30, 32, 0, 32, 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 ],
- "width": 63,
- "height": 63
- }
- },
- "rightleg_front": {
- "rightleg_front": { "x": 16.16, "y": 0.13, "rotation": 91.3, "width": 38, "height": 44 }
- },
- "rightyanzhu_front": {
- "rightyanzhu_front": { "x": -1.72, "y": 0.56, "rotation": -128.42, "width": 11, "height": 11 }
- },
- "ringt_front": {
- "ringt_front": { "x": 25.14, "y": 4.29, "rotation": -42.84, "width": 69, "height": 68 }
- },
- "shadow": {
- "shadow": { "x": 1.11, "y": -1.2, "width": 102, "height": 24 }
- },
- "tail": {
- "tail": {
- "type": "mesh",
- "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 ],
- "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 ],
- "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 ],
- "hull": 21,
- "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 ],
- "width": 36,
- "height": 34
- }
- },
- "tail_back": {
- "tail_back": {
- "type": "mesh",
- "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 ],
- "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 ],
- "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 ],
- "hull": 31,
- "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 ],
- "width": 36,
- "height": 34
- }
- },
- "tou_front": {
- "tou_front": {
- "type": "mesh",
- "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 ],
- "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 ],
- "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 ],
- "hull": 17,
- "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 ],
- "width": 145,
- "height": 101
- }
- },
- "tx2": {
- "down_28": { "y": -0.5, "rotation": -92.74, "width": 290, "height": 113 },
- "down_30": {
- "x": 0.34,
- "y": 18.91,
- "scaleX": 0.925,
- "scaleY": 0.915,
- "rotation": -91.04,
- "width": 290,
- "height": 113
- },
- "down_32": { "x": -1.84, "y": 28.41, "rotation": -91.04, "width": 290, "height": 113 },
- "down_34": { "x": -1.84, "y": 28.41, "rotation": -91.04, "width": 290, "height": 113 }
- },
- "tx3": {
- "down_28": { "width": 290, "height": 113 },
- "down_30": { "width": 290, "height": 113 },
- "down_32": { "width": 290, "height": 113 },
- "down_34": { "width": 290, "height": 113 }
- },
- "wuqi_front": {
- "wuqi_front": {
- "type": "mesh",
- "uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
- "triangles": [ 1, 2, 3, 1, 3, 0 ],
- "vertices": [ 9.04, -96.43, -73.96, -59.12, -11.64, 79.52, 71.36, 42.21 ],
- "hull": 4,
- "edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
- "width": 91,
- "height": 152
- }
- },
- "yanjin_front": {
- "yanjin_front": { "x": -16.45, "y": 5.9, "rotation": -94.97, "width": 129, "height": 30 }
- },
- "yanjing_front": {
- "yanjing_front": { "x": -16.56, "y": 6.28, "rotation": -94.97, "width": 66, "height": 21 }
- },
- "yanzhu": {
- "yanzhu": { "x": -1.27, "y": 0.66, "rotation": -138.01, "width": 11, "height": 11 }
- },
- "yanzhu2": {
- "yanzhu2": { "x": -2.19, "y": 1.04, "rotation": -61.76, "width": 11, "height": 11 }
- },
- "yanzhu3": {
- "yanzhu3": { "x": 2.88, "y": 7.52, "rotation": -94.92, "width": 10, "height": 10 }
- }
- }
- },
- "events": {
- "hit1": {}
- },
- "animations": {
- "attack_down": {
- "slots": {
- "arm": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "arm2": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "body1": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "body_back": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "eye": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "eye1": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "eye1_back": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "eye2": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "eye2_back": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "face": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "feet": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "feet1": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "gun": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "hand": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "hand1": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "jian_back": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "left arm_back": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "left feet_back": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "left hand_back": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "meimao": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "meimao2": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "mouth": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "nose": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "right arm_back": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "right feet_back": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "right hand_back": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "tail": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "tail_back": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "tx3": {
- "color": [
- { "time": 0.4, "color": "ffffffff" },
- { "time": 0.4667, "color": "ffffff01" }
- ],
- "attachment": [
- { "time": 0.1667, "name": "down_28" },
- { "time": 0.2333, "name": "down_30" },
- { "time": 0.2667, "name": "down_32" },
- { "time": 0.3333, "name": "down_34" }
- ]
- },
- "yanzhu": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "yanzhu2": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "yanzhu3": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- }
- },
- "bones": {
- "tx3": {
- "rotate": [
- { "time": 0.1667, "angle": -18.19 },
- { "time": 0.2, "angle": -18.89 }
- ],
- "translate": [
- { "time": 0.1667, "x": -6.19, "y": 20.47 },
- { "time": 0.2, "x": -1.22, "y": 4.4 },
- { "time": 0.2333, "x": -52.45, "y": -85 },
- { "time": 0.2667, "x": -106.5, "y": -169.5 },
- { "time": 0.4, "x": -150.61, "y": -296.85 },
- { "time": 0.4667, "x": -187.32, "y": -457.29 }
- ],
- "scale": [
- { "time": 0.1667, "x": 0.76, "y": 1.149 },
- { "time": 0.2, "x": 1.118, "y": 0.82 },
- { "time": 0.2333, "x": 1.407, "y": 0.862 },
- { "time": 0.2667, "x": 1.657, "y": 1.037 }
- ]
- },
- "lefthand_front": {
- "rotate": [
- { "time": 0, "angle": 1.75 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.1333, "x": 7.05, "y": 0.37 },
- { "time": 0.2, "x": 87.84, "y": -27.05 },
- { "time": 0.2667, "x": 36.9, "y": -21.1, "curve": "stepped" },
- { "time": 0.4, "x": 36.9, "y": -21.1 },
- { "time": 0.4667, "x": 38.61, "y": -17.32 },
- { "time": 0.5333, "x": 0, "y": 0 }
- ]
- },
- "lefthand__front": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1333, "angle": 7.55 },
- { "time": 0.2, "angle": 0 },
- { "time": 0.2667, "angle": 7.21, "curve": "stepped" },
- { "time": 0.4333, "angle": 7.21 },
- { "time": 0.5333, "angle": 0 }
- ]
- },
- "leftyanzhu_front": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1333, "angle": -26.65 },
- { "time": 0.2333, "angle": 10.74 },
- { "time": 0.3333, "angle": -3.82 },
- { "time": 0.4, "angle": 8.48 },
- { "time": 0.5333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.1333, "x": -2.32, "y": -4.45 },
- { "time": 0.2333, "x": 1.8, "y": 0.38 },
- { "time": 0.3333, "x": 2.31, "y": -1.84 },
- { "time": 0.4, "x": 2.17, "y": 0.38 },
- { "time": 0.5333, "x": 0, "y": 0 }
- ]
- },
- "left_front": {
- "rotate": [
- { "time": 0, "angle": -1.47 },
- { "time": 0.1333, "angle": 4.63 },
- { "time": 0.2333, "angle": -7.08 },
- { "time": 0.3333, "angle": 4.28 },
- { "time": 0.4, "angle": -5.6 },
- { "time": 0.5333, "angle": -1.47 }
- ]
- },
- "rightyanzhu_front": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1333, "angle": 22.38 },
- { "time": 0.2333, "angle": -7.64 },
- { "time": 0.3333, "angle": 31.99 },
- { "time": 0.4, "angle": -5.81 },
- { "time": 0.5333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.1333, "x": -0.19, "y": 5.57 },
- { "time": 0.2333, "x": 1.72, "y": -1.79 },
- { "time": 0.3333, "x": -0.06, "y": 1.39 },
- { "time": 0.4, "x": 1.18, "y": -5.45 },
- { "time": 0.5333, "x": 0, "y": 0 }
- ]
- },
- "right_front": {
- "rotate": [
- { "time": 0, "angle": -14.66 }
- ],
- "translate": [
- { "time": 0, "x": -6.29, "y": -2.66 },
- { "time": 0.2667, "x": -13.7, "y": -6.98 },
- { "time": 0.4, "x": -6.29, "y": -2.66 }
- ]
- },
- "ringt_front": {
- "rotate": [
- { "time": 0, "angle": 1.51 },
- { "time": 0.1333, "angle": -4 },
- { "time": 0.2333, "angle": 5.64 },
- { "time": 0.3333, "angle": -4.38 },
- { "time": 0.4, "angle": 10.72 },
- { "time": 0.5333, "angle": 1.51 }
- ]
- },
- "tou_front": {
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.1333, "x": -10.07, "y": -0.41 },
- { "time": 0.2333, "x": 2.21, "y": -4.3 },
- { "time": 0.3333, "x": -4.98, "y": -3.87 },
- { "time": 0.4, "x": 0, "y": 0 }
- ]
- },
- "k3": {
- "rotate": [
- { "time": 0, "angle": -15.98 },
- { "time": 0.1333, "angle": -20.86 },
- { "time": 0.2, "angle": -14.6 },
- { "time": 0.2667, "angle": -17.64, "curve": "stepped" },
- { "time": 0.4333, "angle": -17.64, "curve": "stepped" },
- { "time": 0.5333, "angle": -15.98 }
- ],
- "translate": [
- { "time": 0, "x": 6.81, "y": -0.42 },
- { "time": 0.1333, "x": -10.66, "y": -15.97 },
- { "time": 0.2, "x": 29.29, "y": 86.14 },
- { "time": 0.2667, "x": -61.54, "y": -70.5, "curve": "stepped" },
- { "time": 0.4333, "x": -61.54, "y": -70.5, "curve": "stepped" },
- { "time": 0.5333, "x": 6.81, "y": -0.42 }
- ]
- },
- "bone_left": {
- "translate": [
- { "time": 0, "x": 581.94, "y": 0 }
- ]
- },
- "bone10": {
- "rotate": [
- { "time": 0.1333, "angle": 0 },
- { "time": 0.2333, "angle": 0.16 },
- { "time": 0.3333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.1333, "x": -1.44, "y": -8.64 },
- { "time": 0.2333, "x": -1.44, "y": 2.88 },
- { "time": 0.3333, "x": -1.44, "y": -1.44 },
- { "time": 0.4, "x": 0, "y": 0 }
- ]
- },
- "bone12": {
- "rotate": [
- { "time": 0, "angle": 9.33 },
- { "time": 0.0667, "angle": 0 },
- { "time": 0.2, "angle": 12.42 },
- { "time": 0.2667, "angle": 0 },
- { "time": 0.3333, "angle": 13.02, "curve": "stepped" },
- { "time": 0.5, "angle": 13.02 },
- { "time": 0.5333, "angle": 9.33 }
- ]
- },
- "bone_front": {
- "translate": [
- { "time": 0, "x": -423.94, "y": -5.76 }
- ]
- }
- },
- "drawOrder": [
- {
- "time": 0.1667,
- "offsets": [
- { "slot": "wuqi_front", "offset": 2 },
- { "slot": "lefthand_front", "offset": 2 }
- ]
- }
- ],
- "events": [
- { "time": 0.2333, "name": "hit1" }
- ]
- },
- "attack_left": {
- "slots": {
- "bikong_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "bingkou2_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "bingzi_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "bizi_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "body_back": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "body_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "eye1_back": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "eye2_back": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "jian_back": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "jianqi": {
- "color": [
- { "time": 0.3, "color": "ffffffff" },
- { "time": 0.4, "color": "ffffff01" }
- ],
- "attachment": [
- { "time": 0.2, "name": "down_28" },
- { "time": 0.2667, "name": "down_30" },
- { "time": 0.3, "name": "down_32" },
- { "time": 0.3333, "name": "down_34" }
- ]
- },
- "left arm_back": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "left feet_back": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "left hand_back": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "left_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "lefthand__front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "lefthand_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "leftleg_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "leftyanzhu_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "lian_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "right arm_back": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "right feet_back": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "right hand_back": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "right_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "rightleg_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "rightyanzhu_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "ringt_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "tail_back": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "tou_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "wuqi_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "yanjin_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "yanjing_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- }
- },
- "bones": {
- "tx": {
- "rotate": [
- { "time": 0.2333, "angle": -4.05 },
- { "time": 0.2667, "angle": -5.17 },
- { "time": 0.3, "angle": 2.54 },
- { "time": 0.3333, "angle": 8.24 },
- { "time": 0.3667, "angle": 14.11 }
- ],
- "translate": [
- { "time": 0.2, "x": 0, "y": 0 },
- { "time": 0.2333, "x": -82.56, "y": 35.75 },
- { "time": 0.2667, "x": -32.64, "y": 12.09 },
- { "time": 0.3, "x": -259.03, "y": 118.47 },
- { "time": 0.3333, "x": -263.13, "y": 84.44 },
- { "time": 0.3667, "x": -375.91, "y": 62.38 },
- { "time": 0.4, "x": -383.64, "y": 25.81 }
- ],
- "scale": [
- { "time": 0.2, "x": 1.083, "y": 1.1 },
- { "time": 0.2333, "x": 1.254, "y": 0.677 },
- { "time": 0.2667, "x": 1.083, "y": 1.1 },
- { "time": 0.3, "x": 1.713, "y": 0.587 }
- ]
- },
- "root": {
- "translate": [
- { "time": 0, "x": 0, "y": -1.07 }
- ]
- },
- "bone": {
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.1667, "x": 3.21, "y": 3.21 },
- { "time": 0.2333, "x": 9.29, "y": 5.01 },
- { "time": 0.3, "x": -5.16, "y": 3.97 },
- { "time": 0.4, "x": 0, "y": 0 }
- ]
- },
- "bone2": {
- "rotate": [
- { "time": 0, "angle": 0.76 },
- { "time": 0.1667, "angle": -2.19 },
- { "time": 0.2333, "angle": -7.9 },
- { "time": 0.3333, "angle": -6.55 },
- { "time": 0.4, "angle": 0.76 }
- ],
- "translate": [
- { "time": 0, "x": -0.58, "y": 0.25 },
- { "time": 0.1333, "x": 2.55, "y": -0.41 },
- { "time": 0.3, "x": -0.16, "y": 3.44 },
- { "time": 0.4, "x": -0.58, "y": 0.25 }
- ]
- },
- "face": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1333, "angle": 5.02 },
- { "time": 0.2333, "angle": -5.27 },
- { "time": 0.3667, "angle": 0 }
- ]
- },
- "meimao": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1333, "angle": -8.17 },
- { "time": 0.2333, "angle": 9.05 },
- { "time": 0.3667, "angle": 0 }
- ]
- },
- "K1": {
- "rotate": [
- { "time": 0, "angle": 1.44 },
- { "time": 0.1333, "angle": 25.53 },
- { "time": 0.2, "angle": 23.57 },
- { "time": 0.2667, "angle": 24.14 },
- { "time": 0.3, "angle": 19.86 },
- { "time": 0.4, "angle": 1.44 }
- ],
- "translate": [
- { "time": 0, "x": 1.96, "y": -0.36 },
- { "time": 0.1333, "x": 3.46, "y": -3.51 },
- { "time": 0.2, "x": 88.82, "y": 2.09 },
- { "time": 0.2667, "x": -36.98, "y": 40.83 },
- { "time": 0.3, "x": 33.24, "y": -3.75 },
- { "time": 0.4, "x": 1.96, "y": -0.36 }
- ],
- "scale": [
- { "time": 0.2, "x": 1, "y": 1 },
- { "time": 0.2667, "x": 1.4, "y": 1.2 },
- { "time": 0.3, "x": 1, "y": 1 }
- ]
- },
- "arm2": {
- "rotate": [
- { "time": 0, "angle": 0.68 }
- ]
- },
- "hand1": {
- "rotate": [
- { "time": 0, "angle": -2.25 }
- ]
- },
- "eye2": {
- "rotate": [
- { "time": 0, "angle": -3.9 },
- { "time": 0.1333, "angle": 4.94 },
- { "time": 0.2333, "angle": -14.28 },
- { "time": 0.3667, "angle": -3.9 }
- ]
- },
- "eye1": {
- "rotate": [
- { "time": 0, "angle": -4.73 },
- { "time": 0.1333, "angle": 3.26 },
- { "time": 0.2333, "angle": -6.87 },
- { "time": 0.3667, "angle": -4.73 }
- ]
- },
- "tail": {
- "rotate": [
- { "time": 0, "angle": -5.26 },
- { "time": 0.2333, "angle": -16.04 },
- { "time": 0.3, "angle": -27.14 },
- { "time": 0.4, "angle": -5.26 }
- ]
- },
- "bone3": {
- "rotate": [
- { "time": 0, "angle": -3.27 },
- { "time": 0.2333, "angle": -14.05 },
- { "time": 0.3, "angle": -25.15 },
- { "time": 0.4, "angle": -3.27 }
- ]
- },
- "bone4": {
- "rotate": [
- { "time": 0, "angle": 1.87 },
- { "time": 0.2333, "angle": -8.91 },
- { "time": 0.3, "angle": -20.01 },
- { "time": 0.4, "angle": 1.87 }
- ]
- },
- "yanzhu": {
- "rotate": [
- { "time": 0.1333, "angle": 0 },
- { "time": 0.2333, "angle": -13.59 },
- { "time": 0.3667, "angle": 0 }
- ],
- "translate": [
- { "time": 0.1333, "x": 0, "y": 0 },
- { "time": 0.2333, "x": -1.43, "y": -6.81 },
- { "time": 0.3667, "x": 0, "y": 0 }
- ]
- },
- "yanzhu2": {
- "rotate": [
- { "time": 0.1333, "angle": 0 },
- { "time": 0.2333, "angle": -75.63 },
- { "time": 0.3667, "angle": 0 }
- ],
- "translate": [
- { "time": 0.1333, "x": 0, "y": 0 },
- { "time": 0.2333, "x": -0.57, "y": -4.26 },
- { "time": 0.3667, "x": 0, "y": 0 }
- ]
- },
- "hand": {
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.2, "x": 12.31, "y": -2.18 },
- { "time": 0.4, "x": 0, "y": 0 }
- ]
- }
- },
- "deform": {
- "default": {
- "arm": {
- "arm": [
- {
- "time": 0,
- "offset": 70,
- "vertices": [ 0.63198, -1.6768, 1.21401, -1.31811 ]
- },
- {
- "time": 0.2,
- "offset": 24,
- "vertices": [ 2.75357, 2.73347, 2.82231, 2.66253, 2.75357, 2.73347, 2.82231, 2.66253 ]
- },
- {
- "time": 0.2333,
- "offset": 12,
- "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 ]
- },
- {
- "time": 0.2667,
- "offset": 12,
- "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 ]
- },
- {
- "time": 0.4,
- "offset": 70,
- "vertices": [ 0.63198, -1.6768, 1.21401, -1.31811 ]
- }
- ]
- },
- "jianqi": {
- "down_30": [
- {
- "time": 0.2667,
- "vertices": [ -33.83807, -23.21254, 33.25066, -24.47711, 33.83797, 23.21262, -33.25065, 24.47701 ]
- }
- ]
- }
- }
- },
- "events": [
- { "time": 0.2333, "name": "hit1" }
- ]
- },
- "attack_right": {
- "slots": {
- "bikong_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "bingkou2_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "bingzi_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "bizi_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "body_back": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "body_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "eye1_back": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "eye2_back": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "jian_back": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "jianqi": {
- "color": [
- { "time": 0.3, "color": "ffffffff" },
- { "time": 0.4, "color": "ffffff01" }
- ],
- "attachment": [
- { "time": 0.2, "name": "down_28" },
- { "time": 0.2667, "name": "down_30" },
- { "time": 0.3, "name": "down_32" },
- { "time": 0.3333, "name": "down_34" }
- ]
- },
- "left arm_back": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "left feet_back": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "left hand_back": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "left_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "lefthand__front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "lefthand_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "leftleg_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "leftyanzhu_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "lian_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "right arm_back": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "right feet_back": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "right hand_back": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "right_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "rightleg_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "rightyanzhu_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "ringt_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "tail_back": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "tou_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "wuqi_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "yanjin_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "yanjing_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- }
- },
- "bones": {
- "tx": {
- "rotate": [
- { "time": 0.2333, "angle": -4.05 },
- { "time": 0.2667, "angle": -5.17 },
- { "time": 0.3, "angle": 2.54 },
- { "time": 0.3333, "angle": 8.24 },
- { "time": 0.3667, "angle": 14.11 }
- ],
- "translate": [
- { "time": 0.2, "x": 0, "y": 0 },
- { "time": 0.2333, "x": -82.56, "y": 35.75 },
- { "time": 0.2667, "x": -32.64, "y": 12.09 },
- { "time": 0.3, "x": -259.03, "y": 118.47 },
- { "time": 0.3333, "x": -263.13, "y": 84.44 },
- { "time": 0.3667, "x": -375.91, "y": 62.38 },
- { "time": 0.4, "x": -383.64, "y": 25.81 }
- ],
- "scale": [
- { "time": 0.2, "x": 1.083, "y": 1.1 },
- { "time": 0.2333, "x": 1.254, "y": 0.677 },
- { "time": 0.2667, "x": 1.083, "y": 1.1 },
- { "time": 0.3, "x": 1.713, "y": 0.587 }
- ]
- },
- "root": {
- "translate": [
- { "time": 0, "x": 0, "y": -1.07 }
- ]
- },
- "bone": {
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.1667, "x": 3.21, "y": 3.21 },
- { "time": 0.2333, "x": 9.29, "y": 5.01 },
- { "time": 0.3, "x": -5.16, "y": 3.97 },
- { "time": 0.4, "x": 0, "y": 0 }
- ]
- },
- "bone2": {
- "rotate": [
- { "time": 0, "angle": 0.76 },
- { "time": 0.1667, "angle": -2.19 },
- { "time": 0.2333, "angle": -7.9 },
- { "time": 0.3333, "angle": -6.55 },
- { "time": 0.4, "angle": 0.76 }
- ],
- "translate": [
- { "time": 0, "x": -0.58, "y": 0.25 },
- { "time": 0.1333, "x": 2.55, "y": -0.41 },
- { "time": 0.3, "x": -0.16, "y": 3.44 },
- { "time": 0.4, "x": -0.58, "y": 0.25 }
- ]
- },
- "face": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1333, "angle": 5.02 },
- { "time": 0.2333, "angle": -5.27 },
- { "time": 0.3667, "angle": 0 }
- ]
- },
- "meimao": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1333, "angle": -8.17 },
- { "time": 0.2333, "angle": 9.05 },
- { "time": 0.3667, "angle": 0 }
- ]
- },
- "K1": {
- "rotate": [
- { "time": 0, "angle": 1.44 },
- { "time": 0.1333, "angle": 25.53 },
- { "time": 0.2, "angle": 23.57 },
- { "time": 0.2667, "angle": 24.14 },
- { "time": 0.3, "angle": 19.86 },
- { "time": 0.4, "angle": 1.44 }
- ],
- "translate": [
- { "time": 0, "x": 1.96, "y": -0.36 },
- { "time": 0.1333, "x": 3.46, "y": -3.51 },
- { "time": 0.2, "x": 88.82, "y": 2.09 },
- { "time": 0.2667, "x": -36.98, "y": 40.83 },
- { "time": 0.3, "x": 33.24, "y": -3.75 },
- { "time": 0.4, "x": 1.96, "y": -0.36 }
- ],
- "scale": [
- { "time": 0.2, "x": 1, "y": 1 },
- { "time": 0.2667, "x": 1.4, "y": 1.2 },
- { "time": 0.3, "x": 1, "y": 1 }
- ]
- },
- "arm2": {
- "rotate": [
- { "time": 0, "angle": 0.68 }
- ]
- },
- "hand1": {
- "rotate": [
- { "time": 0, "angle": -2.25 }
- ]
- },
- "eye2": {
- "rotate": [
- { "time": 0, "angle": -3.9 },
- { "time": 0.1333, "angle": 4.94 },
- { "time": 0.2333, "angle": -14.28 },
- { "time": 0.3667, "angle": -3.9 }
- ]
- },
- "eye1": {
- "rotate": [
- { "time": 0, "angle": -4.73 },
- { "time": 0.1333, "angle": 3.26 },
- { "time": 0.2333, "angle": -6.87 },
- { "time": 0.3667, "angle": -4.73 }
- ]
- },
- "tail": {
- "rotate": [
- { "time": 0, "angle": -5.26 },
- { "time": 0.2333, "angle": -16.04 },
- { "time": 0.3, "angle": -27.14 },
- { "time": 0.4, "angle": -5.26 }
- ]
- },
- "bone3": {
- "rotate": [
- { "time": 0, "angle": -3.27 },
- { "time": 0.2333, "angle": -14.05 },
- { "time": 0.3, "angle": -25.15 },
- { "time": 0.4, "angle": -3.27 }
- ]
- },
- "bone4": {
- "rotate": [
- { "time": 0, "angle": 1.87 },
- { "time": 0.2333, "angle": -8.91 },
- { "time": 0.3, "angle": -20.01 },
- { "time": 0.4, "angle": 1.87 }
- ]
- },
- "yanzhu": {
- "rotate": [
- { "time": 0.1333, "angle": 0 },
- { "time": 0.2333, "angle": -13.59 },
- { "time": 0.3667, "angle": 0 }
- ],
- "translate": [
- { "time": 0.1333, "x": 0, "y": 0 },
- { "time": 0.2333, "x": -1.43, "y": -6.81 },
- { "time": 0.3667, "x": 0, "y": 0 }
- ]
- },
- "yanzhu2": {
- "rotate": [
- { "time": 0.1333, "angle": 0 },
- { "time": 0.2333, "angle": -75.63 },
- { "time": 0.3667, "angle": 0 }
- ],
- "translate": [
- { "time": 0.1333, "x": 0, "y": 0 },
- { "time": 0.2333, "x": -0.57, "y": -4.26 },
- { "time": 0.3667, "x": 0, "y": 0 }
- ]
- },
- "hand": {
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.2, "x": 12.31, "y": -2.18 },
- { "time": 0.4, "x": 0, "y": 0 }
- ]
- },
- "bone_left": {
- "scale": [
- { "time": 0, "x": -1, "y": 1 }
- ]
- }
- },
- "deform": {
- "default": {
- "arm": {
- "arm": [
- {
- "time": 0,
- "offset": 70,
- "vertices": [ 0.63198, -1.6768, 1.21401, -1.31811 ]
- },
- {
- "time": 0.2,
- "offset": 24,
- "vertices": [ 2.75357, 2.73347, 2.82231, 2.66253, 2.75357, 2.73347, 2.82231, 2.66253 ]
- },
- {
- "time": 0.2333,
- "offset": 12,
- "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 ]
- },
- {
- "time": 0.2667,
- "offset": 12,
- "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 ]
- },
- {
- "time": 0.4,
- "offset": 70,
- "vertices": [ 0.63198, -1.6768, 1.21401, -1.31811 ]
- }
- ]
- },
- "jianqi": {
- "down_30": [
- {
- "time": 0.2667,
- "vertices": [ -33.83807, -23.21254, 33.25066, -24.47711, 33.83797, 23.21262, -33.25065, 24.47701 ]
- }
- ]
- }
- }
- },
- "events": [
- { "time": 0.2333, "name": "hit1" }
- ]
- },
- "attack_up": {
- "slots": {
- "arm": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "arm2": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "bikong_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "bingkou2_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "bingzi_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "bizi_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "body1": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "body_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "eye": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "eye1": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "eye2": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "face": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "feet": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "feet1": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "gun": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "hand": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "hand1": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "left_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "lefthand__front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "lefthand_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "leftleg_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "leftyanzhu_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "lian_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "meimao": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "meimao2": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "mouth": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "nose": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "right_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "rightleg_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "rightyanzhu_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "ringt_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "tail": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "tou_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "tx2": {
- "color": [
- { "time": 0.2667, "color": "ffffffff" },
- { "time": 0.4, "color": "ffffff00" }
- ],
- "attachment": [
- { "time": 0.1667, "name": "down_28" },
- { "time": 0.2, "name": "down_30" },
- { "time": 0.2333, "name": "down_32" },
- { "time": 0.2667, "name": "down_34" }
- ]
- },
- "wuqi_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "yanjin_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "yanjing_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "yanzhu": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "yanzhu2": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "yanzhu3": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- }
- },
- "bones": {
- "tx2": {
- "rotate": [
- { "time": 0.1667, "angle": -10.95 }
- ],
- "translate": [
- { "time": 0.1667, "x": 9.64, "y": -30.7 },
- { "time": 0.2, "x": 13.51, "y": 11.76 },
- { "time": 0.2333, "x": 45.47, "y": 69.34 },
- { "time": 0.2667, "x": 81, "y": 128.78 },
- { "time": 0.3, "x": 74.81, "y": 169.98 },
- { "time": 0.4, "x": 93.49, "y": 244.66 }
- ],
- "scale": [
- { "time": 0.1667, "x": 0.76, "y": 1.149 },
- { "time": 0.2, "x": 0.76, "y": 1.217 },
- { "time": 0.2333, "x": 0.878, "y": 1.425 },
- { "time": 0.2667, "x": 0.991, "y": 1.95 }
- ]
- },
- "bone_left": {
- "translate": [
- { "time": 0, "x": -331.06, "y": 43.43 }
- ]
- },
- "bone5": {
- "rotate": [
- { "time": 0, "angle": 0.22, "curve": "stepped" },
- { "time": 0.1667, "angle": 0.22 },
- { "time": 0.2333, "angle": -7.96 },
- { "time": 0.3, "angle": 0.82 },
- { "time": 0.4, "angle": 0.22 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": -0.36 },
- { "time": 0.1667, "x": 0, "y": 2.29 },
- { "time": 0.2333, "x": 1.32, "y": -7.01 },
- { "time": 0.3, "x": 2.42, "y": 14.22 },
- { "time": 0.4, "x": 0, "y": -0.36 }
- ]
- },
- "bone6": {
- "rotate": [
- { "time": 0, "angle": 0.55, "curve": "stepped" },
- { "time": 0.1667, "angle": 0.55 },
- { "time": 0.2333, "angle": -4.62 },
- { "time": 0.3, "angle": 12.81 },
- { "time": 0.4, "angle": 0.55 }
- ],
- "translate": [
- { "time": 0, "x": -0.59, "y": 0.32 },
- { "time": 0.1667, "x": 3.38, "y": 0.14 },
- { "time": 0.2333, "x": -4.67, "y": 0.69 },
- { "time": 0.3, "x": 1.88, "y": -1 },
- { "time": 0.4, "x": -0.59, "y": 0.32 }
- ]
- },
- "eye1_back": {
- "rotate": [
- { "time": 0, "angle": 4.71 },
- { "time": 0.1667, "angle": -3.55 },
- { "time": 0.2333, "angle": 16.6 },
- { "time": 0.3, "angle": -11.31 },
- { "time": 0.4, "angle": 4.71 }
- ]
- },
- "eye2_back": {
- "rotate": [
- { "time": 0, "angle": -6.71 },
- { "time": 0.1667, "angle": -0.21 },
- { "time": 0.2333, "angle": -10.74 },
- { "time": 0.3, "angle": 5.08 },
- { "time": 0.4, "angle": -6.71 }
- ]
- },
- "right arm_back": {
- "rotate": [
- { "time": 0, "angle": 3.89 },
- { "time": 0.1333, "angle": 9.64 },
- { "time": 0.2, "angle": -20.35 },
- { "time": 0.2667, "angle": 10.86 },
- { "time": 0.4, "angle": 3.89 }
- ]
- },
- "bone7": {
- "rotate": [
- { "time": 0, "angle": 1.19 },
- { "time": 0.1333, "angle": -4.19 },
- { "time": 0.2, "angle": 7.41 },
- { "time": 0.2667, "angle": -4.72 },
- { "time": 0.4, "angle": 1.19 }
- ]
- },
- "bone11": {
- "rotate": [
- { "time": 0, "angle": -14.51 },
- { "time": 0.1333, "angle": -14.68 },
- { "time": 0.2, "angle": -14.91 },
- { "time": 0.2667, "angle": -10.33 },
- { "time": 0.4, "angle": -14.51 }
- ],
- "translate": [
- { "time": 0, "x": 4.71, "y": 4.93 },
- { "time": 0.1333, "x": 10.02, "y": -4.23 },
- { "time": 0.2, "x": -23.37, "y": -72.15 },
- { "time": 0.2667, "x": 47.26, "y": 30.45 },
- { "time": 0.4, "x": 4.71, "y": 4.93 }
- ]
- },
- "left arm_back": {
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.1333, "x": -12.22, "y": 3.55 },
- { "time": 0.2, "x": -32.85, "y": 1.88 },
- { "time": 0.2667, "x": 6.79, "y": 1.34 },
- { "time": 0.4, "x": 0, "y": 0 }
- ]
- },
- "tail_back": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1333, "angle": -10.65 },
- { "time": 0.2, "angle": 3.99 },
- { "time": 0.2667, "angle": -9.25 },
- { "time": 0.4, "angle": 0 }
- ]
- },
- "bone8": {
- "rotate": [
- { "time": 0, "angle": 1.8 },
- { "time": 0.1333, "angle": -7.37 },
- { "time": 0.2, "angle": 10.41 },
- { "time": 0.2667, "angle": -5.96 },
- { "time": 0.4, "angle": 1.8 }
- ]
- },
- "bone9": {
- "rotate": [
- { "time": 0, "angle": 5.99 },
- { "time": 0.1333, "angle": -0.68 },
- { "time": 0.2, "angle": 17.02 },
- { "time": 0.2667, "angle": -1.33 },
- { "time": 0.4, "angle": 5.99 }
- ]
- },
- "bone_back": {
- "translate": [
- { "time": 0, "x": 340.66, "y": -6.1 }
- ]
- }
- },
- "events": [
- { "time": 0.2333, "name": "hit1" }
- ]
- },
- "show": {
- "slots": {
- "bikong_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "bingkou2_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "bingzi_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "bizi_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "body_back": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "body_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "eye1_back": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "eye2_back": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "jian_back": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "left arm_back": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "left feet_back": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "left hand_back": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "left_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "lefthand__front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "lefthand_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "leftleg_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "leftyanzhu_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "lian_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "right arm_back": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "right feet_back": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "right hand_back": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "right_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "rightleg_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "rightyanzhu_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "ringt_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "tail_back": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "tou_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "wuqi_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "yanjin_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "yanjing_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- }
- },
- "bones": {
- "body": {
- "translate": [
- { "time": 0, "x": -2.1, "y": 96.69 },
- { "time": 0.1, "x": 0, "y": 0 },
- { "time": 0.1667, "x": 0, "y": -1.61 }
- ]
- },
- "bone": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1, "angle": 2.88 },
- { "time": 0.1667, "angle": 2.76 },
- { "time": 0.3, "angle": -2.13 },
- { "time": 0.3667, "angle": -3.33 }
- ]
- },
- "bone2": {
- "rotate": [
- { "time": 0, "angle": 0.76 },
- { "time": 0.1333, "angle": 3.06 },
- { "time": 0.2, "angle": 10.37 },
- { "time": 0.3667, "angle": 2.51 }
- ],
- "translate": [
- { "time": 0, "x": -0.58, "y": 0.25 },
- { "time": 0.1333, "x": -2.93, "y": 0.86 },
- { "time": 0.2, "x": -2.94, "y": 0.82 },
- { "time": 0.3667, "x": -0.58, "y": 0.25 }
- ]
- },
- "face": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1333, "angle": 5.02 },
- { "time": 0.2333, "angle": -5.27 },
- { "time": 0.3667, "angle": 0 }
- ]
- },
- "meimao": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1333, "angle": -8.17 },
- { "time": 0.2333, "angle": 9.05 },
- { "time": 0.3667, "angle": 0 }
- ]
- },
- "K1": {
- "rotate": [
- { "time": 0, "angle": 1.44 },
- { "time": 0.1333, "angle": 2.98 },
- { "time": 0.2, "angle": 4.91 },
- { "time": 0.3667, "angle": 1.44 }
- ],
- "translate": [
- { "time": 0, "x": 2.81, "y": -0.36 },
- { "time": 0.1333, "x": 12.27, "y": -1.82 },
- { "time": 0.2, "x": 4.19, "y": -0.45 },
- { "time": 0.3667, "x": 0.14, "y": 0.06 }
- ]
- },
- "arm2": {
- "rotate": [
- { "time": 0, "angle": 0.68 },
- { "time": 0.1, "angle": 2.33 },
- { "time": 0.1667, "angle": 9.88 },
- { "time": 0.3, "angle": -1.11 },
- { "time": 0.3667, "angle": -5.27 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.1, "x": -1.85, "y": -2.83 },
- { "time": 0.1667, "x": -2.94, "y": -6.97 },
- { "time": 0.3, "x": -2.75, "y": -5.92 }
- ]
- },
- "hand1": {
- "rotate": [
- { "time": 0, "angle": -2.25 },
- { "time": 0.1, "angle": -5.59 },
- { "time": 0.1667, "angle": -12.95 },
- { "time": 0.3, "angle": -9.75 },
- { "time": 0.3667, "angle": -9.28 }
- ]
- },
- "feet1": {
- "translate": [
- { "time": 0.1, "x": 0, "y": 0 },
- { "time": 0.1667, "x": 0.08, "y": 1.61 },
- { "time": 0.3, "x": 0, "y": 1.61 },
- { "time": 0.3667, "x": -0.01, "y": 1.61 }
- ]
- },
- "feet": {
- "translate": [
- { "time": 0.1, "x": 0, "y": 0 },
- { "time": 0.1667, "x": 0.01, "y": 1.61 },
- { "time": 0.3, "x": 0, "y": 1.61 },
- { "time": 0.3667, "x": -0.02, "y": 1.61 }
- ]
- },
- "eye2": {
- "rotate": [
- { "time": 0, "angle": -3.9 },
- { "time": 0.1333, "angle": 4.94 },
- { "time": 0.2333, "angle": -14.28 },
- { "time": 0.3667, "angle": -3.9 }
- ]
- },
- "eye1": {
- "rotate": [
- { "time": 0, "angle": -4.73 },
- { "time": 0.1333, "angle": 3.26 },
- { "time": 0.2333, "angle": -6.87 },
- { "time": 0.3667, "angle": -4.73 }
- ]
- },
- "tail": {
- "rotate": [
- { "time": 0, "angle": -53.09 },
- { "time": 0.1333, "angle": -32.76 },
- { "time": 0.2333, "angle": -47.96 },
- { "time": 0.3667, "angle": -31.55 }
- ]
- },
- "bone3": {
- "rotate": [
- { "time": 0, "angle": -58.77 },
- { "time": 0.1333, "angle": -35.15 },
- { "time": 0.2333, "angle": -54.71 },
- { "time": 0.3667, "angle": -38.29 }
- ]
- },
- "bone4": {
- "rotate": [
- { "time": 0, "angle": -18.08 },
- { "time": 0.1333, "angle": 4.92 },
- { "time": 0.2333, "angle": -20.42 },
- { "time": 0.3667, "angle": -4 }
- ]
- },
- "yanzhu": {
- "rotate": [
- { "time": 0.1333, "angle": 0 },
- { "time": 0.2333, "angle": -13.59 },
- { "time": 0.3667, "angle": 0 }
- ],
- "translate": [
- { "time": 0.1333, "x": 0, "y": 0 },
- { "time": 0.2333, "x": -1.43, "y": -6.81 },
- { "time": 0.3667, "x": 0, "y": 0 }
- ]
- },
- "yanzhu2": {
- "rotate": [
- { "time": 0.1333, "angle": 0 },
- { "time": 0.2333, "angle": -75.63 },
- { "time": 0.3667, "angle": 0 }
- ],
- "translate": [
- { "time": 0.1333, "x": 0, "y": 0 },
- { "time": 0.2333, "x": -0.57, "y": -4.26 },
- { "time": 0.3667, "x": 0, "y": 0 }
- ]
- },
- "shadow": {
- "translate": [
- { "time": 0, "x": 1.53, "y": 1.55 }
- ],
- "scale": [
- { "time": 0, "x": -1, "y": 1 }
- ]
- },
- "bone_left": {
- "scale": [
- { "time": 0, "x": -1, "y": 1 }
- ]
- }
- }
- },
- "stand_down": {
- "slots": {
- "arm": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "arm2": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "body1": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "body_back": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "eye": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "eye1": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "eye1_back": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "eye2": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "eye2_back": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "face": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "feet": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "feet1": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "gun": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "hand": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "hand1": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "jian_back": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "left arm_back": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "left feet_back": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "left hand_back": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "meimao": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "meimao2": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "mouth": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "nose": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "right arm_back": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "right feet_back": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "right hand_back": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "tail": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "tail_back": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "yanzhu": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "yanzhu2": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "yanzhu3": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- }
- },
- "bones": {
- "lefthand_front": {
- "rotate": [
- { "time": 0, "angle": 1.75 }
- ]
- },
- "lefthand__front": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": 11.37 },
- { "time": 1, "angle": 0 }
- ]
- },
- "leftyanzhu_front": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": -64.58 },
- { "time": 1, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.5, "x": -2.23, "y": -3.24 },
- { "time": 1, "x": 0, "y": 0 }
- ]
- },
- "left_front": {
- "rotate": [
- { "time": 0, "angle": -1.47 },
- { "time": 0.0667, "angle": 0 },
- { "time": 0.5667, "angle": -11.03 },
- { "time": 1, "angle": -1.47 }
- ]
- },
- "rightyanzhu_front": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": -64.58 },
- { "time": 1, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.5, "x": -2.01, "y": -5.46 },
- { "time": 1, "x": 0, "y": 0 }
- ]
- },
- "right_front": {
- "rotate": [
- { "time": 0, "angle": -14.66 }
- ],
- "translate": [
- { "time": 0, "x": -6.29, "y": -2.66 }
- ]
- },
- "ringt_front": {
- "rotate": [
- { "time": 0, "angle": 1.51 },
- { "time": 0.0667, "angle": 0 },
- { "time": 0.5667, "angle": 11.35 },
- { "time": 1, "angle": 1.51 }
- ]
- },
- "tou_front": {
- "rotate": [
- { "time": 0, "angle": -1.27 },
- { "time": 0.1667, "angle": 2.04 },
- { "time": 0.6667, "angle": -7.9 },
- { "time": 1, "angle": -1.27 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.5, "x": -2.92, "y": -0.86 },
- { "time": 1, "x": 0, "y": 0 }
- ]
- },
- "k3": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": -10.09 },
- { "time": 1, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 6.81, "y": -0.42 },
- { "time": 0.5, "x": 7.63, "y": -9.67 },
- { "time": 1, "x": 6.81, "y": -0.42 }
- ]
- },
- "bone_left": {
- "translate": [
- { "time": 0, "x": 581.94, "y": 0 }
- ]
- },
- "bone10": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": -4.1 },
- { "time": 1, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.5, "x": -1.06, "y": -7.42 },
- { "time": 1, "x": 0, "y": 0 }
- ]
- },
- "bone12": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": 11.26 },
- { "time": 1, "angle": 0 }
- ]
- },
- "bone_front": {
- "translate": [
- { "time": 0, "x": -421.29, "y": -7 }
- ]
- }
- }
- },
- "stand_left": {
- "slots": {
- "bikong_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "bingkou2_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "bingzi_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "bizi_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "body_back": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "body_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "eye1_back": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "eye2_back": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "jian_back": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "left arm_back": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "left feet_back": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "left hand_back": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "left_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "lefthand__front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "lefthand_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "leftleg_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "leftyanzhu_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "lian_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "right arm_back": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "right feet_back": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "right hand_back": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "right_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "rightleg_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "rightyanzhu_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "ringt_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "tail_back": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "tou_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "wuqi_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "yanjin_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "yanjing_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- }
- },
- "bones": {
- "body": {
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.5, "x": 0, "y": -1.89 },
- { "time": 1, "x": 0, "y": 0 }
- ]
- },
- "bone": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": 3.1 },
- { "time": 1, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.5, "x": 0.63, "y": -2.55 },
- { "time": 1, "x": 0, "y": 0 }
- ]
- },
- "bone2": {
- "rotate": [
- { "time": 0, "angle": 0.76 },
- { "time": 0.1667, "angle": 0 },
- { "time": 0.6667, "angle": 2.28 },
- { "time": 1, "angle": 0.76 }
- ],
- "translate": [
- { "time": 0, "x": -0.58, "y": 0.25 },
- { "time": 0.1667, "x": 0, "y": 0 },
- { "time": 0.6667, "x": -1.76, "y": 0.75 },
- { "time": 1, "x": -0.58, "y": 0.25 }
- ]
- },
- "face": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": 7.34 },
- { "time": 1, "angle": 0 }
- ]
- },
- "meimao": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": -10.37 },
- { "time": 1, "angle": 0 }
- ]
- },
- "K1": {
- "rotate": [
- { "time": 0, "angle": 1.44 }
- ],
- "translate": [
- {
- "time": 0,
- "x": 6.11,
- "y": -2.65,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "x": 2.67,
- "y": -1.5,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 1, "x": 6.11, "y": -2.65 }
- ]
- },
- "arm2": {
- "rotate": [
- { "time": 0, "angle": 0.68 },
- { "time": 0.1667, "angle": 0 },
- { "time": 0.6667, "angle": 2.4 },
- { "time": 1, "angle": 0.68 }
- ]
- },
- "hand1": {
- "rotate": [
- { "time": 0, "angle": -2.25 },
- { "time": 0.1667, "angle": 0 },
- { "time": 0.6667, "angle": -7.94 },
- { "time": 1, "angle": -2.25 }
- ]
- },
- "feet1": {
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.5, "x": 0, "y": 1.89 },
- { "time": 1, "x": 0, "y": 0 }
- ]
- },
- "feet": {
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.5, "x": 0, "y": 1.89 },
- { "time": 1, "x": 0, "y": 0 }
- ]
- },
- "eye2": {
- "rotate": [
- { "time": 0, "angle": -3.9 },
- { "time": 0.2333, "angle": 0 },
- { "time": 0.7333, "angle": -8.56 },
- { "time": 1, "angle": -3.9 }
- ]
- },
- "eye1": {
- "rotate": [
- { "time": 0, "angle": -4.73 },
- { "time": 0.2333, "angle": 0 },
- { "time": 0.7333, "angle": -10.37 },
- { "time": 1, "angle": -4.73 }
- ]
- },
- "tail": {
- "rotate": [
- { "time": 0, "angle": -5.26 },
- { "time": 0.1, "angle": -6.93 },
- { "time": 0.6, "angle": 5.9 },
- { "time": 1, "angle": -5.26 }
- ]
- },
- "bone3": {
- "rotate": [
- { "time": 0, "angle": -3.27 },
- { "time": 0.2, "angle": -6.89 },
- { "time": 0.7, "angle": 2.96 },
- { "time": 1, "angle": -3.27 }
- ]
- },
- "bone4": {
- "rotate": [
- { "time": 0, "angle": 1.87 },
- { "time": 0.3, "angle": -7.34 },
- { "time": 0.8, "angle": 7.23 },
- { "time": 1, "angle": 1.87 }
- ]
- },
- "yanzhu": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": 62.07 },
- { "time": 1, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.5, "x": -1.25, "y": -2.23 },
- { "time": 1, "x": 0, "y": 0 }
- ]
- },
- "yanzhu2": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": 74.58 },
- { "time": 1, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.5, "x": -0.44, "y": -5.79 },
- { "time": 1, "x": 0, "y": 0 }
- ]
- },
- "shadow": {
- "scale": [
- { "time": 0, "x": -1, "y": 1 }
- ]
- },
- "tx": {
- "translate": [
- { "time": 0, "x": -6.81, "y": 2.46 },
- { "time": 0.5, "x": -3.41, "y": 1.23 },
- { "time": 1, "x": -6.81, "y": 2.46 }
- ]
- },
- "arm": {
- "rotate": [
- { "time": 0, "angle": 0.56 }
- ]
- },
- "hand": {
- "rotate": [
- { "time": 0, "angle": -15.95 }
- ]
- }
- }
- },
- "stand_right": {
- "slots": {
- "bikong_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "bingkou2_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "bingzi_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "bizi_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "body_back": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "body_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "eye1_back": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "eye2_back": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "jian_back": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "left arm_back": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "left feet_back": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "left hand_back": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "left_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "lefthand__front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "lefthand_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "leftleg_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "leftyanzhu_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "lian_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "right arm_back": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "right feet_back": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "right hand_back": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "right_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "rightleg_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "rightyanzhu_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "ringt_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "tail_back": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "tou_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "wuqi_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "yanjin_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "yanjing_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- }
- },
- "bones": {
- "body": {
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.5, "x": 0, "y": -1.89 },
- { "time": 1, "x": 0, "y": 0 }
- ]
- },
- "bone": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": 3.1 },
- { "time": 1, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.5, "x": 0.63, "y": -2.55 },
- { "time": 1, "x": 0, "y": 0 }
- ]
- },
- "bone2": {
- "rotate": [
- { "time": 0, "angle": 0.76 },
- { "time": 0.1667, "angle": 0 },
- { "time": 0.6667, "angle": 2.28 },
- { "time": 1, "angle": 0.76 }
- ],
- "translate": [
- { "time": 0, "x": -0.58, "y": 0.25 },
- { "time": 0.1667, "x": 0, "y": 0 },
- { "time": 0.6667, "x": -1.76, "y": 0.75 },
- { "time": 1, "x": -0.58, "y": 0.25 }
- ]
- },
- "face": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": 7.34 },
- { "time": 1, "angle": 0 }
- ]
- },
- "meimao": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": -10.37 },
- { "time": 1, "angle": 0 }
- ]
- },
- "K1": {
- "rotate": [
- { "time": 0, "angle": 1.44 }
- ],
- "translate": [
- {
- "time": 0,
- "x": 6.11,
- "y": -2.65,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "x": 2.67,
- "y": -1.5,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 1, "x": 6.11, "y": -2.65 }
- ]
- },
- "arm2": {
- "rotate": [
- { "time": 0, "angle": 0.68 },
- { "time": 0.1667, "angle": 0 },
- { "time": 0.6667, "angle": 2.4 },
- { "time": 1, "angle": 0.68 }
- ]
- },
- "hand1": {
- "rotate": [
- { "time": 0, "angle": -2.25 },
- { "time": 0.1667, "angle": 0 },
- { "time": 0.6667, "angle": -7.94 },
- { "time": 1, "angle": -2.25 }
- ]
- },
- "feet1": {
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.5, "x": 0, "y": 1.89 },
- { "time": 1, "x": 0, "y": 0 }
- ]
- },
- "feet": {
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.5, "x": 0, "y": 1.89 },
- { "time": 1, "x": 0, "y": 0 }
- ]
- },
- "eye2": {
- "rotate": [
- { "time": 0, "angle": -3.9 },
- { "time": 0.2333, "angle": 0 },
- { "time": 0.7333, "angle": -8.56 },
- { "time": 1, "angle": -3.9 }
- ]
- },
- "eye1": {
- "rotate": [
- { "time": 0, "angle": -4.73 },
- { "time": 0.2333, "angle": 0 },
- { "time": 0.7333, "angle": -10.37 },
- { "time": 1, "angle": -4.73 }
- ]
- },
- "tail": {
- "rotate": [
- { "time": 0, "angle": -5.26 },
- { "time": 0.1, "angle": -6.93 },
- { "time": 0.6, "angle": 5.9 },
- { "time": 1, "angle": -5.26 }
- ]
- },
- "bone3": {
- "rotate": [
- { "time": 0, "angle": -3.27 },
- { "time": 0.2, "angle": -6.89 },
- { "time": 0.7, "angle": 2.96 },
- { "time": 1, "angle": -3.27 }
- ]
- },
- "bone4": {
- "rotate": [
- { "time": 0, "angle": 1.87 },
- { "time": 0.3, "angle": -7.34 },
- { "time": 0.8, "angle": 7.23 },
- { "time": 1, "angle": 1.87 }
- ]
- },
- "yanzhu": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": 62.07 },
- { "time": 1, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.5, "x": -1.25, "y": -2.23 },
- { "time": 1, "x": 0, "y": 0 }
- ]
- },
- "yanzhu2": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": 74.58 },
- { "time": 1, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.5, "x": -0.44, "y": -5.79 },
- { "time": 1, "x": 0, "y": 0 }
- ]
- },
- "shadow": {
- "scale": [
- { "time": 0, "x": -1, "y": 1 }
- ]
- },
- "tx": {
- "translate": [
- { "time": 0, "x": -6.81, "y": 2.46 },
- { "time": 0.5, "x": -3.41, "y": 1.23 },
- { "time": 1, "x": -6.81, "y": 2.46 }
- ]
- },
- "arm": {
- "rotate": [
- { "time": 0, "angle": 0.56 }
- ]
- },
- "hand": {
- "rotate": [
- { "time": 0, "angle": -15.95 }
- ]
- },
- "bone_left": {
- "scale": [
- { "time": 0, "x": -1, "y": 1 }
- ]
- }
- }
- },
- "stand_up": {
- "slots": {
- "arm": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "arm2": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "bikong_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "bingkou2_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "bingzi_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "bizi_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "body1": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "body_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "eye": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "eye1": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "eye2": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "face": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "feet": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "feet1": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "gun": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "hand": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "hand1": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "left_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "lefthand__front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "lefthand_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "leftleg_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "leftyanzhu_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "lian_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "meimao": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "meimao2": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "mouth": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "nose": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "right_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "rightleg_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "rightyanzhu_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "ringt_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "tail": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "tou_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "wuqi_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "yanjin_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "yanjing_front": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "yanzhu": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "yanzhu2": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "yanzhu3": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- }
- },
- "bones": {
- "body_back": {
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.5, "x": 0, "y": -2.73 },
- { "time": 1, "x": 0, "y": 0 }
- ]
- },
- "bone5": {
- "rotate": [
- { "time": 0, "angle": 0.22 },
- { "time": 0.1, "angle": 0 },
- { "time": 0.6, "angle": 1.12 },
- { "time": 1, "angle": 0.22 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": -0.36 },
- { "time": 0.1, "x": 0, "y": 0 },
- { "time": 0.6, "x": 0, "y": -1.82 },
- { "time": 1, "x": 0, "y": -0.36 }
- ]
- },
- "bone6": {
- "rotate": [
- { "time": 0, "angle": 0.55 },
- { "time": 0.1667, "angle": 0 },
- { "time": 0.6667, "angle": 1.67 },
- { "time": 1, "angle": 0.55 }
- ],
- "translate": [
- { "time": 0, "x": -0.59, "y": 0.32 },
- { "time": 0.1667, "x": 0, "y": 0 },
- { "time": 0.6667, "x": -1.78, "y": 0.98 },
- { "time": 1, "x": -0.59, "y": 0.32 }
- ]
- },
- "eye1_back": {
- "rotate": [
- { "time": 0, "angle": 4.71 },
- { "time": 0.2, "angle": 0 },
- { "time": 0.7, "angle": 12.81 },
- { "time": 1, "angle": 4.71 }
- ]
- },
- "eye2_back": {
- "rotate": [
- { "time": 0, "angle": -6.71 },
- { "time": 0.2, "angle": 0 },
- { "time": 0.7, "angle": -18.26 },
- { "time": 1, "angle": -6.71 }
- ]
- },
- "right arm_back": {
- "rotate": [
- { "time": 0, "angle": 3.89 },
- { "time": 0.5, "angle": -7.67 },
- { "time": 1, "angle": 3.89 }
- ]
- },
- "bone7": {
- "rotate": [
- { "time": 0, "angle": 1.19 },
- { "time": 0.5, "angle": 12.44 },
- { "time": 1, "angle": 1.19 }
- ]
- },
- "gun2": {
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.5, "x": 0, "y": -4.56 },
- { "time": 1, "x": 0, "y": 0 }
- ]
- },
- "bone11": {
- "rotate": [
- {
- "time": 0,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": -5.02,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 1, "angle": 0 }
- ],
- "translate": [
- {
- "time": 0,
- "x": -3.11,
- "y": 1.17,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "x": -11.89,
- "y": -17.82,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 1, "x": -3.11, "y": 1.17 }
- ]
- },
- "left arm_back": {
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.5, "x": -16.09, "y": 6.52 },
- { "time": 1, "x": 0, "y": 0 }
- ]
- },
- "tail_back": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": 15.17 },
- { "time": 1, "angle": 0 }
- ]
- },
- "bone8": {
- "rotate": [
- { "time": 0, "angle": 1.8 },
- { "time": 0.1, "angle": 0 },
- { "time": 0.6, "angle": 13.88 },
- { "time": 1, "angle": 1.8 }
- ]
- },
- "bone9": {
- "rotate": [
- { "time": 0, "angle": 5.99 },
- { "time": 0.2, "angle": 0 },
- { "time": 0.7, "angle": 16.28 },
- { "time": 1, "angle": 5.99 }
- ]
- },
- "left feet_back": {
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.5, "x": 0, "y": 2.73 },
- { "time": 1, "x": 0, "y": 0 }
- ]
- },
- "right feet_back": {
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.5, "x": 0, "y": 2.73 },
- { "time": 1, "x": 0, "y": 0 }
- ]
- },
- "bone_back": {
- "translate": [
- { "time": 0, "x": 339.6, "y": -3.5 }
- ]
- }
- }
- }
- }
- }
|