123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064 |
- {
- "skeleton": {
- "hash": "SntfxXm6IslwemXE+wrFMiue1Og",
- "spine": "3.8.99",
- "x": -738.93,
- "y": -137.24,
- "width": 1444,
- "height": 1306,
- "images": "./images/",
- "audio": "C:/Users/QianHu002/Desktop/动画/火线枪战躲猫猫/段位结算/images"
- },
- "bones": [
- { "name": "root" },
- { "name": "a_star1", "parent": "root" },
- { "name": "js_qz", "parent": "a_star1", "x": -1.96, "y": 708.18, "color": "ff0000ff" },
- { "name": "js_h", "parent": "js_qz", "x": 6.58, "y": -311.06 },
- { "name": "js_y", "parent": "js_qz", "x": -6.45, "y": -205.85 },
- { "name": "js_hg", "parent": "js_qz", "x": -13.46, "y": -226.89 },
- { "name": "js_qz3a", "parent": "js_qz", "length": 99.85, "rotation": -90, "x": 0.57, "y": -11.31 },
- { "name": "js_qz3b", "parent": "js_qz3a", "length": 99.85, "x": 99.85 },
- { "name": "js_qz3c", "parent": "js_qz3b", "length": 99.85, "x": 99.85 },
- { "name": "js_qz3d", "parent": "js_qz3c", "length": 99.85, "x": 99.85 },
- { "name": "js_zhang", "parent": "js_qz", "x": -3.06, "y": -41.83, "color": "ffb200ff" },
- {
- "name": "js_zcb",
- "parent": "js_zhang",
- "length": 77.23,
- "rotation": 152.42,
- "x": -20.4,
- "y": -74.61,
- "color": "ffb200ff"
- },
- {
- "name": "js_zcb3",
- "parent": "js_zcb",
- "length": 82.04,
- "rotation": -15.7,
- "x": 80.74,
- "y": -0.13,
- "color": "ffb200ff"
- },
- {
- "name": "js_zcb2",
- "parent": "js_zcb3",
- "length": 106.42,
- "rotation": -13.42,
- "x": 86.92,
- "y": -2,
- "color": "ffb200ff"
- },
- {
- "name": "js_ycb",
- "parent": "js_zhang",
- "length": 84.23,
- "rotation": 26.43,
- "x": 20.74,
- "y": -74.71,
- "color": "ffb200ff"
- },
- {
- "name": "js_ycb3",
- "parent": "js_ycb",
- "length": 94.12,
- "rotation": 13.31,
- "x": 84.81,
- "y": 2.15,
- "color": "ffb200ff"
- },
- {
- "name": "js_ycb2",
- "parent": "js_ycb3",
- "length": 100.76,
- "rotation": 15.13,
- "x": 96.41,
- "y": 2.07,
- "color": "ffb200ff"
- },
- { "name": "l_star1", "parent": "js_qz", "x": -102.41, "y": -275.17, "color": "fff763ff" },
- { "name": "l_star2", "parent": "js_qz", "x": 3.85, "y": -309.81, "color": "fff763ff" },
- { "name": "l_star3", "parent": "js_qz", "x": 106.71, "y": -274.83, "color": "fff763ff" },
- { "name": "js_qz2", "parent": "js_zhang", "x": 4.53, "y": -85.09, "color": "0033ffff" },
- { "name": "l_star2_1", "parent": "js_qz", "x": 3.85, "y": -309.81, "color": "fff763ff" },
- { "name": "l_star3_1", "parent": "js_qz", "x": 106.71, "y": -274.83, "color": "fff763ff" },
- { "name": "l_star1_1", "parent": "js_qz", "x": -102.41, "y": -275.17, "color": "fff763ff" }
- ],
- "slots": [
- { "name": "js_y", "bone": "js_y", "attachment": "js_y" },
- { "name": "js_h", "bone": "js_h", "attachment": "js_h" },
- { "name": "js_qz", "bone": "js_qz3a", "attachment": "js_qz" },
- { "name": "js_zcb", "bone": "js_zcb2", "attachment": "js_zcb" },
- { "name": "js_ycb", "bone": "js_ycb2", "attachment": "js_ycb" },
- { "name": "js_zhang", "bone": "js_zhang", "attachment": "js_zhang" },
- { "name": "bqht", "bone": "js_qz2", "attachment": "bqht" },
- { "name": "ryhj", "bone": "js_qz2", "attachment": "ryhj" },
- { "name": "sybj", "bone": "js_qz2", "attachment": "sybj" },
- { "name": "yhzs", "bone": "js_qz2", "attachment": "yhzs" },
- { "name": "yyby", "bone": "js_qz2", "attachment": "yyby" },
- { "name": "qqqt", "bone": "js_qz2", "attachment": "qqqt" },
- { "name": "txwd", "bone": "js_qz2", "attachment": "txwd" },
- { "name": "ygbz", "bone": "js_qz2", "attachment": "ygbz" },
- { "name": "zzwz", "bone": "js_qz2", "attachment": "zzwz" },
- { "name": "djds", "bone": "js_qz2", "attachment": "djds" },
- { "name": "zqwz", "bone": "js_qz2", "attachment": "zqwz" },
- { "name": "zzxy", "bone": "js_qz2", "attachment": "zzxy" },
- { "name": "bqht_en", "bone": "js_qz2", "attachment": "bqht_en" },
- { "name": "ryhj_en", "bone": "js_qz2", "attachment": "ryhj_en" },
- { "name": "sybj_en", "bone": "js_qz2", "attachment": "sybj_en" },
- { "name": "yhzs_en", "bone": "js_qz2", "attachment": "yhzs_en" },
- { "name": "yyby_en", "bone": "js_qz2", "attachment": "yyby_en" },
- { "name": "qqqt_en", "bone": "js_qz2", "attachment": "qqqt_en" },
- { "name": "txwd_en", "bone": "js_qz2", "attachment": "txwd_en" },
- { "name": "ygbz_en", "bone": "js_qz2", "attachment": "ygbz_en" },
- { "name": "zzwz_en", "bone": "js_qz2", "attachment": "zzwz_en" },
- { "name": "djds_en", "bone": "js_qz2", "attachment": "djds_en" },
- { "name": "zqwz_en", "bone": "js_qz2", "attachment": "zqwz_en" },
- { "name": "zzxy_en", "bone": "js_qz2", "attachment": "zzxy_en" },
- { "name": "l_star3", "bone": "l_star3", "attachment": "a_star3" },
- { "name": "l_star3_1", "bone": "l_star3_1", "attachment": "a_star3" },
- { "name": "l_star2", "bone": "l_star2", "attachment": "a_star2" },
- { "name": "l_star2_1", "bone": "l_star2_1", "attachment": "a_star2" },
- { "name": "l_star1", "bone": "l_star1", "attachment": "a_star1" },
- { "name": "l_star1_1", "bone": "l_star1_1" },
- { "name": "a_star3", "bone": "a_star1" },
- { "name": "a_star2", "bone": "a_star1" },
- { "name": "a_star1", "bone": "a_star1" },
- { "name": "js_hg", "bone": "js_hg", "attachment": "js_hg" },
- { "name": "js_bg", "bone": "js_hg", "attachment": "js_bg" },
- { "name": "di", "bone": "root" }
- ],
- "skins": [
- {
- "name": "default",
- "attachments": {
- "js_bg": {
- "js_bg": { "x": 7, "y": -4.53, "width": 1427, "height": 1080 }
- },
- "js_h": {
- "js_h": { "x": 5.96, "y": 78.64, "width": 1183, "height": 1078 }
- },
- "js_hg": {
- "js_hg": { "x": -10, "y": 34.47, "width": 1427, "height": 1306 }
- },
- "js_qz": {
- "js_qz": {
- "type": "mesh",
- "uvs": [ 0.08975, 0.02379, 0.10541, 0.03318, 0.12125, 0.03117, 0.18889, 0.05002, 0.2447, 0.08094, 0.28571, 0.08883, 0.39142, 0.08883, 0.49713, 0.08883, 0.60284, 0.08883, 0.70854, 0.08884, 0.72008, 0.08453, 0.81538, 0.06563, 0.88315, 0.02873, 0.8902, 0.04157, 0.89565, 0.04109, 0.92291, 0.01482, 0.94416, 0.00558, 0.94719, 0.015, 0.97176, 0.00261, 0.99897, 0.03198, 1, 0.09949, 1, 0.11473, 0.99781, 0.13284, 0.96761, 0.14873, 0.96652, 0.16438, 0.92216, 0.17238, 0.89745, 0.16284, 0.88887, 0.16885, 0.8912, 0.20663, 0.89136, 0.37959, 0.89003, 0.50019, 0.88615, 0.57587, 0.88455, 0.63129, 0.89665, 0.77412, 0.89611, 0.82872, 0.86307, 0.82876, 0.81945, 0.84393, 0.71931, 0.91082, 0.65508, 0.94822, 0.50332, 1, 0.48909, 1, 0.48571, 0.99816, 0.42021, 0.9756, 0.33813, 0.9443, 0.32964, 0.94725, 0.20121, 0.85714, 0.18643, 0.84418, 0.17496, 0.83867, 0.17052, 0.83742, 0.11276, 0.83733, 0.10856, 0.82773, 0.10388, 0.68927, 0.1035, 0.56319, 0.11006, 0.37003, 0.11339, 0.31437, 0.11811, 0.25602, 0.11841, 0.17415, 0.11107, 0.1632, 0.08876, 0.16275, 0.08042, 0.17193, 0.03282, 0.17098, 0.02833, 0.14748, 0.02089, 0.14185, 2.0E-5, 0.14068, 0, 0.13534, 0, 0.03118, 0.00491, 0.02305, 0.03084, 0.00627, 0.04857, 0.01436, 0.05464, 0.01143, 0.06375, 0.00266, 0.08525, 0.02111, 0.7157, 0.52523, 0.24338, 0.68587, 0.47533, 0.81416, 0.44311, 0.4399, 0.59027, 0.32967, 0.24, 0.35838, 0.57395, 0.74605, 0.34512, 0.69803 ],
- "triangles": [ 74, 79, 75, 78, 74, 75, 43, 79, 74, 79, 43, 44, 38, 78, 37, 42, 43, 74, 40, 41, 74, 78, 40, 74, 42, 74, 41, 78, 39, 40, 38, 39, 78, 30, 72, 29, 31, 72, 30, 32, 72, 31, 73, 77, 79, 73, 52, 77, 51, 52, 73, 78, 76, 72, 48, 49, 50, 33, 35, 32, 32, 36, 72, 34, 35, 33, 50, 51, 48, 73, 48, 51, 47, 48, 73, 35, 36, 32, 37, 78, 72, 46, 47, 73, 45, 46, 73, 36, 37, 72, 79, 44, 73, 44, 45, 73, 75, 77, 6, 75, 7, 76, 75, 79, 77, 78, 75, 76, 54, 55, 77, 53, 54, 77, 52, 53, 77, 58, 1, 57, 58, 59, 61, 60, 61, 59, 76, 9, 72, 77, 55, 4, 20, 18, 19, 17, 18, 20, 69, 70, 71, 13, 14, 26, 14, 15, 25, 23, 15, 17, 57, 1, 2, 27, 11, 13, 68, 69, 71, 3, 56, 2, 4, 56, 3, 28, 10, 11, 75, 6, 7, 15, 16, 17, 13, 11, 12, 62, 66, 67, 66, 62, 65, 68, 62, 67, 20, 23, 17, 58, 71, 0, 58, 0, 1, 14, 25, 26, 25, 15, 23, 27, 13, 26, 71, 61, 68, 29, 10, 28, 27, 28, 11, 72, 9, 10, 29, 72, 10, 77, 4, 5, 6, 77, 5, 76, 7, 8, 76, 8, 9, 21, 22, 20, 22, 23, 20, 24, 25, 23, 65, 62, 64, 62, 63, 64, 61, 62, 68, 58, 61, 71, 56, 57, 2, 4, 55, 56 ],
- "vertices": [ 1, 2, -341.93, 35.62, 1, 1, 2, -328.84, 31.29, 1, 1, 2, -315.6, 32.22, 1, 1, 2, -259.05, 23.53, 1, 1, 2, -212.39, 9.27, 1, 1, 2, -178.11, 5.64, 1, 1, 2, -89.74, 5.64, 1, 2, 2, -1.37, 5.63, 0.99996, 7, -116.79, -1.94, 4.0E-5, 1, 2, 87.01, 5.63, 1, 1, 2, 175.38, 5.63, 1, 1, 2, 185.02, 7.62, 1, 1, 2, 264.7, 16.33, 1, 1, 2, 321.35, 33.34, 1, 1, 2, 327.24, 27.42, 1, 1, 2, 331.8, 27.64, 1, 1, 2, 354.59, 39.75, 1, 1, 2, 372.35, 44.01, 1, 1, 2, 374.89, 39.67, 1, 1, 2, 395.43, 45.38, 1, 1, 2, 418.17, 31.84, 1, 1, 2, 419.04, 0.72, 1, 1, 2, 419.04, -6.31, 1, 1, 2, 417.2, -14.65, 1, 1, 2, 391.96, -21.98, 1, 1, 2, 391.05, -29.2, 1, 1, 2, 353.96, -32.88, 1, 1, 2, 333.3, -28.48, 1, 1, 2, 326.13, -31.25, 1, 5, 2, 328.08, -48.67, 0.09593, 6, 37.36, 327.51, 0.50509, 7, -62.49, 327.51, 0.24245, 8, -162.34, 327.51, 0.13827, 9, -262.19, 327.51, 0.01826, 5, 2, 328.22, -128.41, 0.06839, 6, 117.1, 327.64, 0.37302, 7, 17.25, 327.64, 0.26462, 8, -82.6, 327.64, 0.22821, 9, -182.45, 327.64, 0.06575, 5, 2, 327.1, -184, 0.04984, 6, 172.69, 326.52, 0.27236, 7, 72.84, 326.52, 0.26082, 8, -27.01, 326.52, 0.29903, 9, -126.86, 326.52, 0.11795, 5, 2, 323.86, -218.89, 0.03956, 6, 207.58, 323.28, 0.21292, 7, 107.73, 323.28, 0.24773, 8, 7.88, 323.28, 0.34087, 9, -91.97, 323.28, 0.15892, 5, 2, 322.52, -244.44, 0.03278, 6, 233.13, 321.95, 0.17235, 7, 133.28, 321.95, 0.23359, 8, 33.43, 321.95, 0.3687, 9, -66.42, 321.95, 0.19258, 5, 2, 332.63, -310.28, 0.0235, 6, 298.97, 332.06, 0.11506, 7, 199.12, 332.06, 0.20515, 8, 99.27, 332.06, 0.40542, 9, -0.57, 332.06, 0.25086, 5, 2, 332.19, -335.45, 0.02281, 6, 324.15, 331.61, 0.11076, 7, 224.3, 331.61, 0.20252, 8, 124.45, 331.61, 0.4079, 9, 24.6, 331.61, 0.25601, 5, 2, 304.56, -335.47, 0.02211, 6, 324.16, 303.99, 0.10702, 7, 224.31, 303.99, 0.19923, 8, 124.46, 303.99, 0.40874, 9, 24.61, 303.99, 0.2629, 5, 2, 268.09, -342.47, 0.01904, 6, 331.16, 267.52, 0.09034, 7, 231.31, 267.52, 0.18353, 8, 131.46, 267.52, 0.41155, 9, 31.61, 267.52, 0.29554, 5, 2, 184.38, -373.3, 0.00849, 6, 362, 183.8, 0.03338, 7, 262.15, 183.8, 0.10441, 8, 162.3, 183.8, 0.37807, 9, 62.45, 183.8, 0.47565, 5, 2, 130.68, -390.54, 0.00357, 6, 379.23, 130.11, 0.00971, 7, 279.38, 130.11, 0.0474, 8, 179.53, 130.11, 0.27952, 9, 79.68, 130.11, 0.6598, 2, 2, 3.81, -414.41, 0, 9, 103.56, 3.23, 1, 2, 8, 203.41, -8.66, 3.0E-4, 9, 103.56, -8.66, 0.9997, 3, 2, -10.91, -413.56, 0, 8, 202.56, -11.49, 4.9E-4, 9, 102.71, -11.49, 0.99951, 5, 2, -65.67, -403.17, 0, 6, 391.86, -66.24, 0.0026, 7, 292.01, -66.24, 0.00615, 8, 192.16, -66.24, 0.08751, 9, 92.31, -66.24, 0.90375, 5, 2, -134.29, -388.74, 0, 6, 377.43, -134.86, 0.02572, 7, 277.58, -134.86, 0.05474, 8, 177.73, -134.86, 0.30754, 9, 77.88, -134.86, 0.61201, 5, 2, -141.39, -390.1, 0, 6, 378.79, -141.96, 0.02895, 7, 278.94, -141.96, 0.06063, 8, 179.09, -141.96, 0.32104, 9, 79.24, -141.96, 0.58938, 5, 2, -248.75, -348.56, 1.0E-4, 6, 337.25, -249.33, 0.11815, 7, 237.4, -249.33, 0.17403, 8, 137.55, -249.33, 0.41562, 9, 37.7, -249.33, 0.29209, 5, 2, -261.11, -342.58, 1.8E-4, 6, 331.27, -261.68, 0.1305, 7, 231.42, -261.68, 0.18467, 8, 131.57, -261.68, 0.41447, 9, 31.72, -261.68, 0.27019, 5, 2, -270.7, -340.04, 2.4E-4, 6, 328.73, -271.27, 0.13929, 7, 228.88, -271.27, 0.1917, 8, 129.03, -271.27, 0.41295, 9, 29.18, -271.27, 0.25582, 5, 2, -274.41, -339.46, 2.6E-4, 6, 328.16, -274.99, 0.14236, 7, 228.31, -274.99, 0.19408, 8, 128.46, -274.99, 0.41235, 9, 28.61, -274.99, 0.25095, 5, 2, -322.7, -339.42, 3.8E-4, 6, 328.11, -323.27, 0.16004, 7, 228.27, -323.27, 0.20692, 8, 128.42, -323.27, 0.40803, 9, 28.57, -323.27, 0.22462, 5, 2, -326.21, -335, 3.9E-4, 6, 323.69, -326.79, 0.16025, 7, 223.84, -326.79, 0.20704, 8, 123.99, -326.79, 0.40793, 9, 24.14, -326.79, 0.22439, 5, 2, -330.12, -271.17, 0.00163, 6, 259.86, -330.7, 0.19865, 7, 160.01, -330.7, 0.22591, 8, 60.16, -330.7, 0.38538, 9, -39.69, -330.7, 0.18843, 5, 2, -330.44, -213.05, 0.00474, 6, 201.74, -331.01, 0.27639, 7, 101.89, -331.01, 0.25191, 8, 2.04, -331.01, 0.33439, 9, -97.81, -331.01, 0.13258, 5, 2, -324.95, -124, 0.01362, 6, 112.69, -325.53, 0.44459, 7, 12.84, -325.53, 0.26635, 8, -87.01, -325.53, 0.22038, 9, -186.86, -325.53, 0.05506, 5, 2, -322.17, -98.34, 0.01684, 6, 87.03, -322.74, 0.49581, 7, -12.82, -322.74, 0.26162, 8, -112.67, -322.74, 0.1868, 9, -212.52, -322.74, 0.03894, 5, 2, -318.22, -71.44, 0.02044, 6, 60.13, -318.8, 0.55112, 7, -39.72, -318.8, 0.25269, 8, -139.57, -318.8, 0.15142, 9, -239.42, -318.8, 0.02433, 1, 2, -317.97, -33.7, 1, 1, 2, -324.11, -28.65, 1, 1, 2, -342.76, -28.44, 1, 1, 2, -349.73, -32.67, 1, 1, 2, -389.53, -32.24, 1, 1, 2, -393.28, -21.4, 1, 1, 2, -399.5, -18.81, 1, 1, 2, -416.95, -18.27, 1, 1, 2, -416.96, -15.81, 1, 1, 2, -416.96, 32.21, 1, 1, 2, -412.86, 35.96, 1, 1, 2, -391.19, 43.7, 1, 1, 2, -376.36, 39.97, 1, 1, 2, -371.29, 41.32, 1, 1, 2, -363.67, 45.36, 1, 1, 2, -345.69, 36.85, 1, 5, 2, 181.36, -195.55, 0.03128, 6, 184.24, 180.79, 0.19919, 7, 84.39, 180.79, 0.3167, 8, -15.46, 180.79, 0.34042, 9, -115.31, 180.79, 0.11241, 5, 2, -213.5, -269.6, 9.9E-4, 6, 258.29, -214.07, 0.14987, 7, 158.44, -214.07, 0.21342, 8, 58.59, -214.07, 0.41245, 9, -41.26, -214.07, 0.22327, 5, 2, -19.59, -328.74, 0, 6, 317.43, -20.16, 3.3E-4, 7, 217.59, -20.16, 3.9E-4, 8, 117.74, -20.16, 0.10725, 9, 17.89, -20.16, 0.89204, 5, 2, -46.52, -156.21, 1.3E-4, 6, 144.9, -47.1, 0.11387, 7, 45.05, -47.1, 0.80973, 8, -54.8, -47.1, 0.07495, 9, -154.65, -47.1, 0.00131, 5, 2, 76.5, -105.39, 0.03201, 6, 94.08, 75.93, 0.51327, 7, -5.77, 75.93, 0.3978, 8, -105.62, 75.93, 0.05422, 9, -205.47, 75.93, 0.0027, 5, 2, -216.32, -118.63, 0.01571, 6, 107.32, -216.9, 0.46265, 7, 7.47, -216.9, 0.29161, 8, -92.38, -216.9, 0.1926, 9, -192.23, -216.9, 0.03743, 5, 2, 62.86, -297.34, 0.00153, 6, 286.03, 62.29, 0.00374, 7, 186.18, 62.29, 0.04045, 8, 86.33, 62.29, 0.59851, 9, -13.51, 62.29, 0.35577, 5, 2, -128.44, -275.21, 1.1E-4, 6, 263.9, -129.02, 0.06617, 7, 164.05, -129.02, 0.1666, 8, 64.2, -129.02, 0.50893, 9, -35.65, -129.02, 0.25819 ],
- "hull": 72,
- "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, 42, 44, 44, 46, 46, 48, 48, 50, 50, 52, 52, 54, 54, 56, 56, 58, 58, 60, 60, 62, 62, 64, 64, 66, 66, 68, 68, 70, 70, 72, 72, 74, 74, 76, 76, 78, 78, 80, 80, 82, 82, 84, 84, 86, 86, 88, 88, 90, 90, 92, 92, 94, 94, 96, 96, 98, 98, 100, 100, 102, 102, 104, 104, 106, 106, 108, 108, 110, 110, 112, 112, 114, 114, 116, 116, 118, 118, 120, 120, 122, 122, 124, 124, 126, 126, 128, 128, 130, 130, 132, 132, 134, 134, 136, 136, 138, 138, 140, 140, 142, 142, 0 ],
- "width": 836,
- "height": 461
- }
- },
- "js_y": {
- "js_y": { "x": 1.98, "y": 24.93, "width": 1183, "height": 1159 }
- },
- "js_ycb": {
- "js_ycb": {
- "type": "mesh",
- "uvs": [ 0.95274, 0, 0.96315, 0, 0.97342, 0.01436, 0.98538, 0.1099, 0.99623, 0.14795, 0.99642, 0.21474, 0.94554, 0.40738, 0.94138, 0.47811, 0.89382, 0.56503, 0.81722, 0.64755, 0.72782, 0.65546, 0.74302, 0.67013, 0.77034, 0.67001, 0.78625, 0.67749, 0.78618, 0.73466, 0.75278, 0.7858, 0.67314, 0.84599, 0.43771, 0.84595, 0.50607, 0.91948, 0.50612, 0.98485, 0.42503, 1, 0.36438, 1, 0.28855, 0.97407, 0.22394, 0.93094, 0.1513, 0.91602, 0.11624, 0.91035, 0.08145, 0.86952, 0.0783, 0.86745, 0.11782, 0.64099, 0.13863, 0.58232, 0.19187, 0.43873, 0.33621, 0.34672, 0.34484, 0.32517, 0.48879, 0.29734, 0.59179, 0.26136, 0.733, 0.19187, 0.93696, 0.00415, 0.32415, 0.74207, 0.49398, 0.61377, 0.64426, 0.45621, 0.19219, 0.80847, 0.80431, 0.26713 ],
- "triangles": [ 3, 41, 35, 0, 1, 2, 36, 0, 2, 36, 3, 35, 3, 36, 2, 41, 5, 6, 4, 41, 3, 5, 41, 4, 41, 39, 34, 41, 34, 35, 39, 41, 6, 33, 34, 39, 7, 39, 6, 8, 39, 7, 38, 33, 39, 31, 32, 33, 8, 10, 39, 38, 31, 33, 30, 31, 38, 29, 30, 38, 10, 38, 39, 8, 9, 10, 14, 12, 13, 37, 29, 38, 14, 15, 11, 14, 11, 12, 16, 38, 10, 15, 16, 10, 15, 10, 11, 17, 38, 16, 28, 29, 37, 40, 28, 37, 17, 37, 38, 27, 28, 40, 26, 27, 40, 24, 25, 26, 40, 24, 26, 23, 40, 37, 23, 37, 17, 24, 40, 23, 22, 23, 17, 21, 22, 17, 18, 21, 17, 18, 20, 21, 19, 20, 18 ],
- "vertices": [ 1, 16, 162.15, 11.51, 1, 1, 16, 163.69, 9.32, 1, 1, 16, 161.93, 4.86, 1, 1, 16, 141.9, -13, 1, 1, 16, 134.82, -21.38, 1, 2, 15, 220.26, 2.25, 2.5E-4, 16, 119.61, -32.15, 0.99975, 2, 15, 175.85, -30.72, 0.12198, 16, 68.13, -52.39, 0.87802, 2, 15, 162.41, -45.21, 0.2615, 16, 51.38, -62.87, 0.7385, 3, 14, 231.53, -20.75, 8.0E-5, 15, 137.51, -56.05, 0.51642, 16, 24.51, -66.83, 0.4835, 3, 14, 203.65, -32.61, 0.00573, 15, 107.65, -61.17, 0.79603, 16, -5.65, -63.98, 0.19825, 3, 14, 182.1, -24.35, 0.04049, 15, 88.57, -48.18, 0.92851, 16, -20.67, -46.46, 0.03101, 3, 14, 183.77, -29.76, 0.06151, 15, 88.96, -53.82, 0.93033, 16, -21.77, -52.01, 0.00816, 3, 14, 190.08, -32.85, 0.07054, 15, 94.38, -58.28, 0.92836, 16, -17.7, -57.73, 0.0011, 3, 14, 192.81, -36.54, 0.07212, 15, 96.19, -62.5, 0.92761, 16, -17.06, -62.28, 2.7E-4, 2, 14, 185.69, -50.82, 0.08569, 15, 85.98, -74.76, 0.91431, 2, 14, 171.65, -59.77, 0.11138, 15, 70.26, -80.24, 0.88862, 2, 14, 145.85, -65.7, 0.17902, 15, 43.78, -80.07, 0.82098, 2, 14, 91.68, -38.75, 0.86693, 15, -2.74, -41.38, 0.13307, 2, 14, 98.27, -64.95, 0.99936, 15, -2.34, -68.39, 6.4E-4, 1, 14, 90.17, -81.28, 1, 1, 14, 69.62, -75.79, 1, 1, 14, 55.67, -68.85, 1, 1, 14, 41.44, -53.7, 1, 1, 14, 31.92, -35.53, 1, 1, 14, 17.06, -23.5, 1, 1, 14, 9.7, -18.07, 1, 1, 14, 6.76, -3.89, 1, 2, 14, 6.29, -3.01, 1, 15, -77.6, 13.05, 0, 3, 14, 43.51, 49.05, 0.43853, 15, -29.4, 55.15, 0.54727, 16, -107.59, 84.07, 0.0142, 3, 14, 55.59, 61.32, 0.21552, 15, -14.82, 64.31, 0.74761, 16, -91.13, 89.12, 0.03687, 3, 14, 85.67, 91.11, 0.00891, 15, 21.31, 86.38, 0.84663, 16, -50.49, 100.98, 0.14446, 2, 15, 66.25, 82.4, 0.5946, 16, -8.15, 85.42, 0.4054, 2, 15, 71.8, 85.61, 0.55707, 16, -1.96, 87.06, 0.44293, 2, 15, 105.21, 67.93, 0.2291, 16, 25.68, 61.28, 0.7709, 2, 15, 131.98, 58.72, 0.02846, 16, 49.13, 45.41, 0.97154, 1, 16, 85.87, 26.89, 1, 1, 16, 158.87, 14.16, 1, 3, 14, 78.44, 0.19, 0.99929, 15, -6.65, -0.44, 7.1E-4, 16, -100.14, 24.48, 0, 2, 14, 133.46, 12.81, 7.4E-4, 15, 49.79, -0.81, 0.99926, 1, 16, 12.43, 3.1, 1, 1, 14, 39.83, -1.31, 1, 2, 15, 172.95, 22.57, 8.0E-5, 16, 79.24, -0.19, 0.99992 ],
- "hull": 37,
- "edges": [ 0, 72, 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, 42, 44, 44, 46, 46, 48, 48, 50, 50, 52, 54, 56, 56, 58, 58, 60, 60, 62, 62, 64, 64, 66, 66, 68, 68, 70, 70, 72, 52, 54, 34, 74, 20, 76, 12, 78 ],
- "width": 257,
- "height": 279
- }
- },
- "js_zcb": {
- "js_zcb": {
- "type": "mesh",
- "uvs": [ 0.02857, 0, 0.04724, 0, 0.0621, 0.00302, 0.266, 0.19112, 0.46749, 0.2887, 0.65844, 0.32686, 0.65753, 0.3787, 0.65306, 0.39655, 0.62778, 0.43259, 0.61872, 0.49777, 0.61905, 0.55977, 0.88051, 0.85003, 0.87968, 0.89938, 1, 0.90306, 1, 0.90935, 0.99005, 0.90316, 0.8838, 0.89975, 0.88351, 0.91042, 0.83808, 0.9182, 0.77681, 0.93063, 0.71068, 0.97447, 0.63574, 1, 0.57226, 1, 0.494, 0.98362, 0.49409, 0.91947, 0.56351, 0.84602, 0.32751, 0.8461, 0.24672, 0.78565, 0.21388, 0.73326, 0.21388, 0.67652, 0.22982, 0.66992, 0.25688, 0.6701, 0.27209, 0.65561, 0.18122, 0.64736, 0.08405, 0.53275, 0.05754, 0.47232, 0.05774, 0.41987, 0.0035, 0.21456, 0.00374, 0.15032, 0.01532, 0.10341, 0.3492, 0.50865, 0.59879, 0.72192, 0.46661, 0.62134, 0.29748, 0.42092, 0.71784, 0.78166 ],
- "triangles": [ 39, 0, 1, 2, 39, 1, 39, 2, 3, 38, 39, 3, 37, 38, 3, 6, 4, 5, 6, 8, 4, 36, 37, 3, 43, 3, 4, 36, 3, 43, 7, 8, 6, 35, 36, 43, 4, 40, 43, 4, 8, 40, 9, 40, 8, 34, 35, 43, 34, 43, 40, 33, 34, 40, 32, 33, 40, 42, 40, 9, 10, 42, 9, 32, 40, 42, 41, 42, 10, 28, 29, 30, 31, 28, 30, 27, 28, 31, 25, 42, 41, 26, 32, 42, 26, 42, 25, 27, 31, 32, 26, 27, 32, 11, 44, 10, 41, 10, 44, 25, 41, 44, 44, 11, 19, 15, 16, 12, 13, 15, 12, 15, 13, 14, 17, 12, 16, 12, 18, 11, 18, 12, 17, 18, 19, 11, 20, 25, 44, 19, 20, 44, 22, 24, 25, 22, 23, 24, 22, 25, 21, 20, 21, 25 ],
- "vertices": [ 1, 13, 162.86, -7.97, 1, 1, 13, 160.22, -11.98, 1, 1, 13, 157.42, -14.71, 1, 1, 13, 84.79, -29.7, 1, 2, 12, 106.13, -66.24, 0.06404, 13, 33.6, -58.03, 0.93596, 2, 12, 63.11, -92.13, 0.26473, 13, -2.24, -93.2, 0.73527, 2, 12, 53.36, -81.44, 0.29307, 13, -14.2, -85.07, 0.70693, 3, 11, 108.78, -88.03, 4.0E-5, 12, 50.78, -77.03, 0.30967, 13, -17.73, -81.37, 0.6903, 3, 11, 109.89, -76.11, 0.00189, 12, 48.62, -65.26, 0.39168, 13, -22.57, -70.42, 0.60643, 3, 11, 103.53, -58.91, 0.02401, 12, 37.85, -50.42, 0.60887, 13, -36.49, -58.49, 0.36713, 3, 11, 95.45, -43.62, 0.13124, 12, 25.93, -37.89, 0.73749, 13, -50.99, -49.07, 0.13127, 1, 11, -1.6, -2.95, 1, 1, 11, -7.79, 9.36, 1, 1, 11, -35.67, -4.05, 1, 1, 11, -36.48, -2.49, 1, 1, 11, -33.42, -2.84, 1, 1, 11, -8.77, 8.96, 1, 1, 11, -10.09, 11.63, 1, 1, 11, -0.74, 18.96, 1, 1, 11, 11.61, 29.32, 1, 1, 11, 21.01, 48.03, 1, 1, 11, 34.79, 63.26, 1, 1, 11, 49.25, 70.82, 1, 1, 11, 69.19, 76.08, 1, 2, 11, 77.45, 60.2, 0.99692, 12, -19.49, 57.19, 0.00308, 2, 11, 71.13, 33.78, 0.80766, 12, -18.43, 30.04, 0.19234, 2, 11, 124.88, 61.87, 0.00488, 12, 25.71, 71.64, 0.99512, 1, 12, 52.39, 73.6, 1, 2, 12, 68.56, 68.74, 0.99696, 13, -34.28, 64.54, 0.00304, 2, 12, 79.41, 57.21, 0.98483, 13, -21.05, 55.85, 0.01517, 2, 12, 77.69, 53.06, 0.98101, 13, -21.76, 51.41, 0.01899, 2, 12, 72.59, 48.33, 0.9535, 13, -25.62, 45.63, 0.0465, 2, 12, 72.52, 42.71, 0.87263, 13, -24.39, 40.14, 0.12737, 2, 12, 91.1, 57.04, 0.53259, 13, -9.64, 58.4, 0.46741, 2, 12, 131.2, 50.88, 0.15066, 13, 30.79, 61.72, 0.84934, 2, 12, 147.72, 43.28, 0.0654, 13, 48.63, 58.15, 0.9346, 2, 12, 157.71, 32.59, 0.02435, 13, 60.83, 50.08, 0.97565, 1, 13, 116.36, 30.28, 1, 1, 13, 131.3, 20.39, 1, 1, 13, 140.61, 10.71, 1, 2, 12, 86.2, -0.73, 0.09362, 13, -1, 1.07, 0.90638, 3, 11, 79.12, -1.11, 0.43491, 12, -1.29, -1.38, 0.56507, 13, -85.95, -19.88, 2.0E-5, 1, 12, 42.68, 1.48, 1, 1, 13, 26.76, -1.26, 1, 1, 11, 44.28, -0.5, 1 ],
- "hull": 40,
- "edges": [ 0, 78, 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, 42, 44, 44, 46, 46, 48, 48, 50, 50, 52, 52, 54, 54, 56, 56, 58, 58, 60, 60, 62, 62, 64, 64, 66, 66, 68, 68, 70, 70, 72, 72, 74, 74, 76, 76, 78, 64, 84, 72, 86, 50, 88 ],
- "width": 257,
- "height": 279
- }
- },
- "js_zhang": {
- "js_zhang": { "x": 6.6, "y": 42.92, "width": 197, "height": 303 }
- },
- "l_star1": {
- "a_star1": { "x": 0.44, "y": 1.76, "width": 70, "height": 66 },
- "l_star1": { "x": 1.44, "y": 1.76, "width": 68, "height": 66 }
- },
- "l_star1_1": {
- "a_star1": { "x": 0.44, "y": 1.76, "width": 70, "height": 66 },
- "l_star1": { "x": 1.44, "y": 1.76, "width": 68, "height": 66 }
- },
- "l_star2": {
- "a_star2": { "x": 0.18, "y": 0.4, "width": 70, "height": 66 },
- "l_star2": { "x": 0.68, "y": 0.4, "width": 69, "height": 66 }
- },
- "l_star2_1": {
- "a_star2": { "x": 0.18, "y": 0.4, "width": 70, "height": 66 },
- "l_star2": { "x": 0.68, "y": 0.4, "width": 69, "height": 66 }
- },
- "l_star3": {
- "a_star3": { "x": 0.33, "y": 1.42, "width": 70, "height": 66 },
- "l_star3": { "x": 0.83, "y": 1.42, "width": 69, "height": 66 }
- },
- "l_star3_1": {
- "a_star3": { "x": 0.33, "y": 1.42, "width": 70, "height": 66 },
- "l_star3": { "x": 0.83, "y": 1.42, "width": 69, "height": 66 }
- }
- }
- },
- {
- "name": "bqht_en",
- "attachments": {
- "bqht_en": {
- "bqht_en": { "x": 1.16, "y": 36.66, "width": 297, "height": 274 }
- }
- }
- },
- {
- "name": "bqht_zh",
- "attachments": {
- "bqht": {
- "bqht": { "x": -2.93, "y": 36.01, "width": 313, "height": 273 }
- }
- }
- },
- {
- "name": "djds_en",
- "attachments": {
- "djds_en": {
- "djds_en": { "x": -6.3, "y": 41.62, "width": 349, "height": 264 }
- }
- }
- },
- {
- "name": "djds_zh",
- "attachments": {
- "djds": {
- "djds": { "x": -6.43, "y": 37.51, "width": 310, "height": 272 }
- }
- }
- },
- {
- "name": "qqqt_en",
- "attachments": {
- "qqqt_en": {
- "qqqt_en": { "x": 0.05, "y": 35.47, "width": 265, "height": 275 }
- }
- }
- },
- {
- "name": "qqqt_zh",
- "attachments": {
- "qqqt": {
- "qqqt": { "x": -6.43, "y": 37.01, "width": 304, "height": 271 }
- }
- }
- },
- {
- "name": "ryhj_en",
- "attachments": {
- "ryhj_en": {
- "ryhj_en": { "x": -2.87, "y": 33.67, "width": 351, "height": 258 }
- }
- }
- },
- {
- "name": "ryhj_zh",
- "attachments": {
- "ryhj": {
- "ryhj": { "x": -6.43, "y": 32.01, "width": 310, "height": 261 }
- }
- }
- },
- {
- "name": "sybj_en",
- "attachments": {
- "sybj_en": {
- "sybj_en": { "x": -4.09, "y": 35.5, "width": 358, "height": 255 }
- }
- }
- },
- {
- "name": "sybj_zh",
- "attachments": {
- "sybj": {
- "sybj": { "x": -5.93, "y": 32.01, "width": 309, "height": 261 }
- }
- }
- },
- {
- "name": "txwd_en",
- "attachments": {
- "txwd_en": {
- "txwd_en": { "x": -0.47, "y": 47.69, "width": 357, "height": 263 }
- }
- }
- },
- {
- "name": "txwd_zh",
- "attachments": {
- "txwd": {
- "txwd": { "x": -5.93, "y": 40.01, "width": 309, "height": 277 }
- }
- }
- },
- {
- "name": "ygbz_en",
- "attachments": {
- "ygbz_en": {
- "ygbz_en": { "x": -0.26, "y": 40.81, "width": 356, "height": 263 }
- }
- }
- },
- {
- "name": "ygbz_zh",
- "attachments": {
- "ygbz": {
- "ygbz": { "x": -5.43, "y": 37.01, "width": 306, "height": 271 }
- }
- }
- },
- {
- "name": "yhzs_en",
- "attachments": {
- "yhzs_en": {
- "yhzs_en": { "x": -4.29, "y": 41.31, "width": 357, "height": 242 }
- }
- }
- },
- {
- "name": "yhzs_zh",
- "attachments": {
- "yhzs": {
- "yhzs": { "x": -5.93, "y": 32.01, "width": 309, "height": 261 }
- }
- }
- },
- {
- "name": "yyby_en",
- "attachments": {
- "yyby_en": {
- "yyby_en": { "x": -1.94, "y": 48.19, "width": 351, "height": 252 }
- }
- }
- },
- {
- "name": "yyby_zh",
- "attachments": {
- "yyby": {
- "yyby": { "x": -5.93, "y": 37.51, "width": 307, "height": 272 }
- }
- }
- },
- {
- "name": "zqwz_en",
- "attachments": {
- "zqwz_en": {
- "zqwz_en": { "x": 2.35, "y": 33.16, "width": 348, "height": 274 }
- }
- }
- },
- {
- "name": "zqwz_zh",
- "attachments": {
- "zqwz": {
- "zqwz": { "x": -5.93, "y": 35.51, "width": 307, "height": 268 }
- }
- }
- },
- {
- "name": "zzwz_en",
- "attachments": {
- "zzwz_en": {
- "zzwz_en": { "x": -0.81, "y": 43.53, "width": 353, "height": 261 }
- }
- }
- },
- {
- "name": "zzwz_zh",
- "attachments": {
- "zzwz": {
- "zzwz": { "x": -5.93, "y": 37.51, "width": 307, "height": 272 }
- }
- }
- },
- {
- "name": "zzxy_en",
- "attachments": {
- "zzxy_en": {
- "zzxy_en": { "x": -6.47, "y": 41.35, "width": 283, "height": 280 }
- }
- }
- },
- {
- "name": "zzxy_zh",
- "attachments": {
- "zzxy": {
- "zzxy": { "x": -6.43, "y": 41.51, "width": 310, "height": 280 }
- }
- }
- }
- ],
- "animations": {
- "daiji0": {
- "slots": {
- "l_star1_1": {
- "attachment": [
- { "name": "a_star1" }
- ]
- },
- "l_star2_1": {
- "attachment": [
- { "name": null }
- ]
- },
- "l_star3_1": {
- "attachment": [
- { "name": null }
- ]
- }
- },
- "bones": {
- "js_hg": {
- "scale": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.4667, "x": 1.29, "y": 1.29, "curve": 0.25, "c3": 0.75 },
- { "time": 0.9667 }
- ]
- },
- "js_y": {
- "scale": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.4667, "x": 1.317, "y": 1.317, "curve": 0.25, "c3": 0.75 },
- { "time": 0.9667 }
- ]
- },
- "js_qz3b": {
- "rotate": [
- { "angle": -2.07, "curve": 0.25, "c3": 0.75 },
- { "time": 0.4667, "angle": 1.51, "curve": 0.25, "c3": 0.75 },
- { "time": 0.9667, "angle": -2.07 }
- ]
- },
- "js_qz3c": {
- "rotate": [
- { "angle": -1.61, "curve": 0.25, "c3": 0.75 },
- { "time": 0.1, "angle": -2.07, "curve": 0.25, "c3": 0.75 },
- { "time": 0.5667, "angle": 1.51, "curve": 0.25, "c3": 0.75 },
- { "time": 0.9667, "angle": -1.61 }
- ]
- },
- "js_qz3d": {
- "rotate": [
- { "angle": -0.75, "curve": 0.25, "c3": 0.75 },
- { "time": 0.2, "angle": -2.07, "curve": 0.25, "c3": 0.75 },
- { "time": 0.6667, "angle": 1.51, "curve": 0.25, "c3": 0.75 },
- { "time": 0.9667, "angle": -0.75 }
- ]
- }
- }
- },
- "daiji1": {
- "slots": {
- "l_star1": {
- "attachment": [
- { "name": "l_star1" }
- ]
- }
- },
- "bones": {
- "l_star1": {
- "scale": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.5, "x": 1.044, "y": 1.065, "curve": 0.25, "c3": 0.75 },
- { "time": 0.9667 }
- ]
- },
- "js_h": {
- "scale": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.4667, "x": 0.55, "y": 0.55, "curve": 0.25, "c3": 0.75 },
- { "time": 0.9667 }
- ]
- },
- "js_hg": {
- "scale": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.4667, "x": 1.29, "y": 1.29, "curve": 0.25, "c3": 0.75 },
- { "time": 0.9667 }
- ]
- },
- "js_y": {
- "scale": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.4667, "x": 1.317, "y": 1.317, "curve": 0.25, "c3": 0.75 },
- { "time": 0.9667 }
- ]
- },
- "js_qz3b": {
- "rotate": [
- { "angle": -2.07, "curve": 0.25, "c3": 0.75 },
- { "time": 0.4667, "angle": 1.51, "curve": 0.25, "c3": 0.75 },
- { "time": 0.9667, "angle": -2.07 }
- ]
- },
- "js_qz3c": {
- "rotate": [
- { "angle": -1.61, "curve": 0.25, "c3": 0.75 },
- { "time": 0.1, "angle": -2.07, "curve": 0.25, "c3": 0.75 },
- { "time": 0.5667, "angle": 1.51, "curve": 0.25, "c3": 0.75 },
- { "time": 0.9667, "angle": -1.61 }
- ]
- },
- "js_qz3d": {
- "rotate": [
- { "angle": -0.75, "curve": 0.25, "c3": 0.75 },
- { "time": 0.2, "angle": -2.07, "curve": 0.25, "c3": 0.75 },
- { "time": 0.6667, "angle": 1.51, "curve": 0.25, "c3": 0.75 },
- { "time": 0.9667, "angle": -0.75 }
- ]
- }
- }
- },
- "daiji2": {
- "slots": {
- "l_star1": {
- "attachment": [
- { "name": "l_star1" }
- ]
- },
- "l_star2": {
- "attachment": [
- { "name": "l_star2" }
- ]
- },
- "l_star2_1": {
- "attachment": [
- { "name": null }
- ]
- },
- "l_star3": {
- "attachment": [
- { "name": null }
- ]
- }
- },
- "bones": {
- "l_star2": {
- "scale": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.5, "x": 1.044, "y": 1.065, "curve": 0.25, "c3": 0.75 },
- { "time": 0.9667 }
- ]
- },
- "l_star1": {
- "scale": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.5, "x": 1.044, "y": 1.065, "curve": 0.25, "c3": 0.75 },
- { "time": 0.9667 }
- ]
- },
- "js_h": {
- "scale": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.4667, "x": 0.55, "y": 0.55, "curve": 0.25, "c3": 0.75 },
- { "time": 0.9667 }
- ]
- },
- "js_hg": {
- "scale": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.4667, "x": 1.29, "y": 1.29, "curve": 0.25, "c3": 0.75 },
- { "time": 0.9667 }
- ]
- },
- "js_y": {
- "scale": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.4667, "x": 1.317, "y": 1.317, "curve": 0.25, "c3": 0.75 },
- { "time": 0.9667 }
- ]
- },
- "js_qz3b": {
- "rotate": [
- { "angle": -2.07, "curve": 0.25, "c3": 0.75 },
- { "time": 0.4667, "angle": 1.51, "curve": 0.25, "c3": 0.75 },
- { "time": 0.9667, "angle": -2.07 }
- ]
- },
- "js_qz3c": {
- "rotate": [
- { "angle": -1.61, "curve": 0.25, "c3": 0.75 },
- { "time": 0.1, "angle": -2.07, "curve": 0.25, "c3": 0.75 },
- { "time": 0.5667, "angle": 1.51, "curve": 0.25, "c3": 0.75 },
- { "time": 0.9667, "angle": -1.61 }
- ]
- },
- "js_qz3d": {
- "rotate": [
- { "angle": -0.75, "curve": 0.25, "c3": 0.75 },
- { "time": 0.2, "angle": -2.07, "curve": 0.25, "c3": 0.75 },
- { "time": 0.6667, "angle": 1.51, "curve": 0.25, "c3": 0.75 },
- { "time": 0.9667, "angle": -0.75 }
- ]
- }
- }
- },
- "daiji3": {
- "slots": {
- "l_star1": {
- "attachment": [
- { "name": "l_star1" }
- ]
- },
- "l_star2": {
- "attachment": [
- { "name": "l_star2" }
- ]
- },
- "l_star2_1": {
- "attachment": [
- { "name": null }
- ]
- },
- "l_star3": {
- "attachment": [
- { "name": "l_star3" }
- ]
- },
- "l_star3_1": {
- "attachment": [
- { "name": null }
- ]
- }
- },
- "bones": {
- "l_star3": {
- "scale": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.5, "x": 1.044, "y": 1.065, "curve": 0.25, "c3": 0.75 },
- { "time": 0.9667 }
- ]
- },
- "l_star2": {
- "scale": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.5, "x": 1.044, "y": 1.065, "curve": 0.25, "c3": 0.75 },
- { "time": 0.9667 }
- ]
- },
- "l_star1": {
- "scale": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.5, "x": 1.044, "y": 1.065, "curve": 0.25, "c3": 0.75 },
- { "time": 0.9667 }
- ]
- },
- "js_h": {
- "scale": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.4667, "x": 0.55, "y": 0.55, "curve": 0.25, "c3": 0.75 },
- { "time": 0.9667 }
- ]
- },
- "js_hg": {
- "scale": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.4667, "x": 1.29, "y": 1.29, "curve": 0.25, "c3": 0.75 },
- { "time": 0.9667 }
- ]
- },
- "js_y": {
- "scale": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.4667, "x": 1.317, "y": 1.317, "curve": 0.25, "c3": 0.75 },
- { "time": 0.9667 }
- ]
- },
- "js_qz3b": {
- "rotate": [
- { "angle": -2.07, "curve": 0.25, "c3": 0.75 },
- { "time": 0.4667, "angle": 1.51, "curve": 0.25, "c3": 0.75 },
- { "time": 0.9667, "angle": -2.07 }
- ]
- },
- "js_qz3c": {
- "rotate": [
- { "angle": -1.61, "curve": 0.25, "c3": 0.75 },
- { "time": 0.1, "angle": -2.07, "curve": 0.25, "c3": 0.75 },
- { "time": 0.5667, "angle": 1.51, "curve": 0.25, "c3": 0.75 },
- { "time": 0.9667, "angle": -1.61 }
- ]
- },
- "js_qz3d": {
- "rotate": [
- { "angle": -0.75, "curve": 0.25, "c3": 0.75 },
- { "time": 0.2, "angle": -2.07, "curve": 0.25, "c3": 0.75 },
- { "time": 0.6667, "angle": 1.51, "curve": 0.25, "c3": 0.75 },
- { "time": 0.9667, "angle": -0.75 }
- ]
- }
- }
- },
- "dstar1": {
- "slots": {
- "l_star1": {
- "attachment": [
- { "name": "l_star1" }
- ]
- },
- "l_star2": {
- "attachment": [
- { "name": "l_star2" }
- ]
- },
- "l_star2_1": {
- "attachment": [
- { "name": null }
- ]
- },
- "l_star3_1": {
- "color": [
- { "time": 0.5, "color": "ffffffff", "curve": 0.25, "c3": 0.75 },
- { "time": 0.7333, "color": "ffffff00" }
- ],
- "attachment": [
- { "name": "l_star3" }
- ]
- }
- },
- "bones": {
- "l_star2": {
- "scale": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.5, "x": 1.044, "y": 1.065, "curve": 0.25, "c3": 0.75 },
- { "time": 0.9667 }
- ]
- },
- "l_star1": {
- "scale": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.5, "x": 1.044, "y": 1.065, "curve": 0.25, "c3": 0.75 },
- { "time": 0.9667 }
- ]
- },
- "js_h": {
- "scale": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.4667, "x": 0.55, "y": 0.55, "curve": 0.25, "c3": 0.75 },
- { "time": 0.9667 }
- ]
- },
- "js_hg": {
- "scale": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.4667, "x": 1.29, "y": 1.29, "curve": 0.25, "c3": 0.75 },
- { "time": 0.9667 }
- ]
- },
- "js_y": {
- "scale": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.4667, "x": 1.317, "y": 1.317, "curve": 0.25, "c3": 0.75 },
- { "time": 0.9667 }
- ]
- },
- "js_qz3b": {
- "rotate": [
- { "angle": -2.07, "curve": 0.25, "c3": 0.75 },
- { "time": 0.4667, "angle": 1.51, "curve": 0.25, "c3": 0.75 },
- { "time": 0.9667, "angle": -2.07 }
- ]
- },
- "js_qz3c": {
- "rotate": [
- { "angle": -1.61, "curve": 0.25, "c3": 0.75 },
- { "time": 0.1, "angle": -2.07, "curve": 0.25, "c3": 0.75 },
- { "time": 0.5667, "angle": 1.51, "curve": 0.25, "c3": 0.75 },
- { "time": 0.9667, "angle": -1.61 }
- ]
- },
- "js_qz3d": {
- "rotate": [
- { "angle": -0.75, "curve": 0.25, "c3": 0.75 },
- { "time": 0.2, "angle": -2.07, "curve": 0.25, "c3": 0.75 },
- { "time": 0.6667, "angle": 1.51, "curve": 0.25, "c3": 0.75 },
- { "time": 0.9667, "angle": -0.75 }
- ]
- },
- "l_star3_1": {
- "scale": [
- { "time": 0.5, "curve": 0.25, "c3": 0.75 },
- { "time": 0.7333, "x": 0.127, "y": 0.127 }
- ]
- }
- }
- },
- "dstar2": {
- "slots": {
- "l_star1": {
- "attachment": [
- { "name": "l_star1" }
- ]
- },
- "l_star2_1": {
- "color": [
- { "time": 0.2667, "color": "ffffffff", "curve": 0.25, "c3": 0.75 },
- { "time": 0.5, "color": "ffffff00" }
- ],
- "attachment": [
- { "name": "l_star2" }
- ]
- },
- "l_star3_1": {
- "color": [
- { "time": 0.5, "color": "ffffffff", "curve": 0.25, "c3": 0.75 },
- { "time": 0.7333, "color": "ffffff00" }
- ],
- "attachment": [
- { "name": null }
- ]
- }
- },
- "bones": {
- "l_star1": {
- "scale": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.5, "x": 1.044, "y": 1.065, "curve": 0.25, "c3": 0.75 },
- { "time": 0.9667 }
- ]
- },
- "js_h": {
- "scale": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.4667, "x": 0.55, "y": 0.55, "curve": 0.25, "c3": 0.75 },
- { "time": 0.9667 }
- ]
- },
- "js_hg": {
- "scale": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.4667, "x": 1.29, "y": 1.29, "curve": 0.25, "c3": 0.75 },
- { "time": 0.9667 }
- ]
- },
- "js_y": {
- "scale": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.4667, "x": 1.317, "y": 1.317, "curve": 0.25, "c3": 0.75 },
- { "time": 0.9667 }
- ]
- },
- "js_qz3b": {
- "rotate": [
- { "angle": -2.07, "curve": 0.25, "c3": 0.75 },
- { "time": 0.4667, "angle": 1.51, "curve": 0.25, "c3": 0.75 },
- { "time": 0.9667, "angle": -2.07 }
- ]
- },
- "js_qz3c": {
- "rotate": [
- { "angle": -1.61, "curve": 0.25, "c3": 0.75 },
- { "time": 0.1, "angle": -2.07, "curve": 0.25, "c3": 0.75 },
- { "time": 0.5667, "angle": 1.51, "curve": 0.25, "c3": 0.75 },
- { "time": 0.9667, "angle": -1.61 }
- ]
- },
- "js_qz3d": {
- "rotate": [
- { "angle": -0.75, "curve": 0.25, "c3": 0.75 },
- { "time": 0.2, "angle": -2.07, "curve": 0.25, "c3": 0.75 },
- { "time": 0.6667, "angle": 1.51, "curve": 0.25, "c3": 0.75 },
- { "time": 0.9667, "angle": -0.75 }
- ]
- },
- "l_star2_1": {
- "scale": [
- { "time": 0.2667, "curve": 0.25, "c3": 0.75 },
- { "time": 0.5, "x": 0.127, "y": 0.127 }
- ]
- },
- "l_star3_1": {
- "scale": [
- { "time": 0.5, "curve": 0.25, "c3": 0.75 },
- { "time": 0.7333, "x": 0.127, "y": 0.127 }
- ]
- }
- }
- },
- "dstar3": {
- "slots": {
- "l_star1": {
- "color": [
- { "color": "ffffffff", "curve": 0.25, "c3": 0.75 },
- { "time": 0.2667, "color": "ffffff00" }
- ],
- "attachment": [
- { "name": "l_star1" }
- ]
- },
- "l_star1_1": {
- "attachment": [
- { "name": "a_star1" }
- ]
- },
- "l_star2_1": {
- "attachment": [
- { "name": null }
- ]
- },
- "l_star3_1": {
- "color": [
- { "time": 0.5, "color": "ffffffff", "curve": 0.25, "c3": 0.75 },
- { "time": 0.7333, "color": "ffffff00" }
- ],
- "attachment": [
- { "name": null }
- ]
- }
- },
- "bones": {
- "l_star1": {
- "scale": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.2667, "x": 0.127, "y": 0.127 }
- ]
- },
- "js_h": {
- "scale": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.4667, "x": 0.55, "y": 0.55, "curve": 0.25, "c3": 0.75 },
- { "time": 0.9667 }
- ]
- },
- "js_hg": {
- "scale": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.4667, "x": 1.29, "y": 1.29, "curve": 0.25, "c3": 0.75 },
- { "time": 0.9667 }
- ]
- },
- "js_y": {
- "scale": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.4667, "x": 1.317, "y": 1.317, "curve": 0.25, "c3": 0.75 },
- { "time": 0.9667 }
- ]
- },
- "js_qz3b": {
- "rotate": [
- { "angle": -2.07, "curve": 0.25, "c3": 0.75 },
- { "time": 0.4667, "angle": 1.51, "curve": 0.25, "c3": 0.75 },
- { "time": 0.9667, "angle": -2.07 }
- ]
- },
- "js_qz3c": {
- "rotate": [
- { "angle": -1.61, "curve": 0.25, "c3": 0.75 },
- { "time": 0.1, "angle": -2.07, "curve": 0.25, "c3": 0.75 },
- { "time": 0.5667, "angle": 1.51, "curve": 0.25, "c3": 0.75 },
- { "time": 0.9667, "angle": -1.61 }
- ]
- },
- "js_qz3d": {
- "rotate": [
- { "angle": -0.75, "curve": 0.25, "c3": 0.75 },
- { "time": 0.2, "angle": -2.07, "curve": 0.25, "c3": 0.75 },
- { "time": 0.6667, "angle": 1.51, "curve": 0.25, "c3": 0.75 },
- { "time": 0.9667, "angle": -0.75 }
- ]
- },
- "l_star3_1": {
- "scale": [
- { "time": 0.5, "curve": 0.25, "c3": 0.75 },
- { "time": 0.7333, "x": 0.127, "y": 0.127 }
- ]
- }
- },
- "drawOrder": [
- {
- "offsets": [
- { "slot": "l_star1", "offset": 1 }
- ]
- }
- ]
- },
- "fangda": {
- "bones": {
- "js_zhang": {
- "scale": [
- { "x": 0.006, "y": 0.006, "curve": 0.245, "c3": 0.637, "c4": 0.56 },
- { "time": 0.5, "x": 1.151, "y": 1.151, "curve": 0.381, "c2": 0.55, "c3": 0.742 },
- { "time": 0.6667 }
- ]
- }
- }
- },
- "jiemian": {
- "slots": {
- "js_bg": {
- "color": [
- { "time": 0.5, "color": "ffffffff", "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "color": "ffffff00" }
- ]
- },
- "js_h": {
- "color": [
- { "time": 0.5, "color": "ffffffff", "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "color": "ffffff00" }
- ]
- },
- "js_hg": {
- "color": [
- { "time": 0.5, "color": "ffffffff", "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "color": "ffffff00" }
- ]
- },
- "js_qz": {
- "color": [
- { "time": 0.5, "color": "ffffffff", "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "color": "ffffff00" }
- ]
- },
- "js_y": {
- "color": [
- { "time": 0.5, "color": "ffffffff", "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "color": "ffffff00" }
- ]
- }
- },
- "bones": {
- "js_qz": {
- "scale": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.5, "x": 0.355, "y": 0.355 }
- ]
- }
- }
- },
- "star1": {
- "slots": {
- "l_star1": {
- "attachment": [
- { "time": 0.0667, "name": null },
- { "time": 0.1, "name": "l_star1" }
- ]
- },
- "l_star1_1": {
- "attachment": [
- { "name": "a_star1" }
- ]
- },
- "l_star2_1": {
- "attachment": [
- { "name": null }
- ]
- },
- "l_star3_1": {
- "attachment": [
- { "name": null }
- ]
- }
- },
- "bones": {
- "l_star1": {
- "scale": [
- { "x": -0.083, "y": -0.083, "curve": "stepped" },
- { "time": 0.0667, "x": -0.083, "y": -0.083, "curve": 0.25, "c3": 0.75 },
- { "time": 0.3333, "x": 1.53, "y": 1.53, "curve": 0.25, "c3": 0.75 },
- { "time": 0.5667 }
- ]
- },
- "js_hg": {
- "scale": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.4667, "x": 1.29, "y": 1.29, "curve": 0.25, "c3": 0.75 },
- { "time": 0.9667 }
- ]
- },
- "js_y": {
- "scale": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.4667, "x": 1.317, "y": 1.317, "curve": 0.25, "c3": 0.75 },
- { "time": 0.9667 }
- ]
- },
- "js_qz3b": {
- "rotate": [
- { "angle": -2.07, "curve": 0.25, "c3": 0.75 },
- { "time": 0.4667, "angle": 1.51, "curve": 0.25, "c3": 0.75 },
- { "time": 0.9667, "angle": -2.07 }
- ]
- },
- "js_qz3c": {
- "rotate": [
- { "angle": -1.61, "curve": 0.25, "c3": 0.75 },
- { "time": 0.1, "angle": -2.07, "curve": 0.25, "c3": 0.75 },
- { "time": 0.5667, "angle": 1.51, "curve": 0.25, "c3": 0.75 },
- { "time": 0.9667, "angle": -1.61 }
- ]
- },
- "js_qz3d": {
- "rotate": [
- { "angle": -0.75, "curve": 0.25, "c3": 0.75 },
- { "time": 0.2, "angle": -2.07, "curve": 0.25, "c3": 0.75 },
- { "time": 0.6667, "angle": 1.51, "curve": 0.25, "c3": 0.75 },
- { "time": 0.9667, "angle": -0.75 }
- ]
- }
- },
- "drawOrder": [
- {
- "offsets": [
- { "slot": "l_star1", "offset": 1 }
- ]
- }
- ]
- },
- "star1_1": {
- "slots": {
- "js_bg": {
- "color": [
- { "color": "ffffffff", "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "color": "ffffff00" }
- ]
- },
- "js_h": {
- "color": [
- { "color": "ffffffff", "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "color": "ffffff00" }
- ]
- },
- "js_hg": {
- "color": [
- { "color": "ffffffff", "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "color": "ffffff00" }
- ]
- },
- "js_qz": {
- "color": [
- { "color": "ffffffff", "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "color": "ffffff00" }
- ]
- },
- "js_y": {
- "color": [
- { "color": "ffffffff", "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "color": "ffffff00" }
- ]
- },
- "l_star1": {
- "attachment": [
- { "name": null }
- ]
- },
- "l_star1_1": {
- "attachment": [
- { "name": "l_star1" }
- ]
- },
- "l_star2_1": {
- "attachment": [
- { "name": null }
- ]
- },
- "l_star3_1": {
- "attachment": [
- { "name": null }
- ]
- }
- },
- "bones": {
- "l_star1": {
- "scale": [
- { "x": -0.083, "y": -0.083 }
- ]
- },
- "js_qz3b": {
- "rotate": [
- { "angle": -2.07 }
- ]
- },
- "js_qz3c": {
- "rotate": [
- { "angle": -1.61 }
- ]
- },
- "js_qz3d": {
- "rotate": [
- { "angle": -0.75 }
- ]
- },
- "js_qz": {
- "scale": [
- { "time": 0.8333, "curve": 0.25, "c3": 0.75 },
- { "time": 1.3333, "x": 0.355, "y": 0.355 }
- ]
- }
- },
- "drawOrder": [
- {
- "offsets": [
- { "slot": "l_star1", "offset": 1 }
- ]
- }
- ]
- },
- "star1_2": {
- "slots": {
- "js_bg": {
- "color": [
- { "color": "ffffff00" }
- ]
- },
- "js_h": {
- "color": [
- { "color": "ffffff00" }
- ]
- },
- "js_hg": {
- "color": [
- { "color": "ffffff00" }
- ]
- },
- "js_qz": {
- "color": [
- { "color": "ffffff00" }
- ]
- },
- "js_y": {
- "color": [
- { "color": "ffffff00" }
- ]
- },
- "l_star1": {
- "attachment": [
- { "name": null }
- ]
- },
- "l_star1_1": {
- "attachment": [
- { "name": "l_star1" }
- ]
- },
- "l_star2_1": {
- "attachment": [
- { "name": null }
- ]
- },
- "l_star3_1": {
- "attachment": [
- { "name": null }
- ]
- }
- },
- "bones": {
- "js_qz": {
- "scale": [
- { "x": 0.355, "y": 0.355 }
- ]
- },
- "l_star1": {
- "scale": [
- { "x": -0.083, "y": -0.083 }
- ]
- },
- "js_qz3b": {
- "rotate": [
- { "angle": -2.07 }
- ]
- },
- "js_qz3c": {
- "rotate": [
- { "angle": -1.61 }
- ]
- },
- "js_qz3d": {
- "rotate": [
- { "angle": -0.75 }
- ]
- }
- },
- "drawOrder": [
- {
- "offsets": [
- { "slot": "l_star1", "offset": 1 }
- ]
- }
- ]
- },
- "star2": {
- "slots": {
- "l_star1": {
- "attachment": [
- { "name": "l_star1" }
- ]
- },
- "l_star2": {
- "attachment": [
- { "name": null },
- { "time": 0.2667, "name": "l_star2" }
- ]
- },
- "l_star3_1": {
- "attachment": [
- { "name": null }
- ]
- }
- },
- "bones": {
- "l_star2": {
- "scale": [
- { "x": -0.083, "y": -0.083, "curve": "stepped" },
- { "time": 0.2667, "x": -0.083, "y": -0.083, "curve": 0.25, "c3": 0.75 },
- { "time": 0.5, "x": 1.53, "y": 1.53, "curve": 0.25, "c3": 0.75 },
- { "time": 0.7333 }
- ]
- },
- "js_h": {
- "scale": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.4667, "x": 0.55, "y": 0.55, "curve": 0.25, "c3": 0.75 },
- { "time": 0.9667 }
- ]
- },
- "js_hg": {
- "scale": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.4667, "x": 1.29, "y": 1.29, "curve": 0.25, "c3": 0.75 },
- { "time": 0.9667 }
- ]
- },
- "js_y": {
- "scale": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.4667, "x": 1.317, "y": 1.317, "curve": 0.25, "c3": 0.75 },
- { "time": 0.9667 }
- ]
- },
- "js_qz3b": {
- "rotate": [
- { "angle": -2.07, "curve": 0.25, "c3": 0.75 },
- { "time": 0.4667, "angle": 1.51, "curve": 0.25, "c3": 0.75 },
- { "time": 0.9667, "angle": -2.07 }
- ]
- },
- "js_qz3c": {
- "rotate": [
- { "angle": -1.61, "curve": 0.25, "c3": 0.75 },
- { "time": 0.1, "angle": -2.07, "curve": 0.25, "c3": 0.75 },
- { "time": 0.5667, "angle": 1.51, "curve": 0.25, "c3": 0.75 },
- { "time": 0.9667, "angle": -1.61 }
- ]
- },
- "js_qz3d": {
- "rotate": [
- { "angle": -0.75, "curve": 0.25, "c3": 0.75 },
- { "time": 0.2, "angle": -2.07, "curve": 0.25, "c3": 0.75 },
- { "time": 0.6667, "angle": 1.51, "curve": 0.25, "c3": 0.75 },
- { "time": 0.9667, "angle": -0.75 }
- ]
- }
- },
- "drawOrder": [
- {
- "offsets": [
- { "slot": "l_star2", "offset": 1 },
- { "slot": "l_star1", "offset": 1 }
- ]
- }
- ]
- },
- "star2_1": {
- "slots": {
- "js_bg": {
- "color": [
- { "color": "ffffffff", "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "color": "ffffff00" }
- ]
- },
- "js_h": {
- "color": [
- { "color": "ffffffff", "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "color": "ffffff00" }
- ]
- },
- "js_hg": {
- "color": [
- { "color": "ffffffff", "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "color": "ffffff00" }
- ]
- },
- "js_qz": {
- "color": [
- { "color": "ffffffff", "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "color": "ffffff00" }
- ]
- },
- "js_y": {
- "color": [
- { "color": "ffffffff", "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "color": "ffffff00" }
- ]
- },
- "l_star1": {
- "attachment": [
- { "name": null }
- ]
- },
- "l_star1_1": {
- "attachment": [
- { "name": "l_star1" }
- ]
- },
- "l_star2": {
- "attachment": [
- { "name": "l_star2" }
- ]
- },
- "l_star2_1": {
- "attachment": [
- { "name": null }
- ]
- },
- "l_star3_1": {
- "attachment": [
- { "name": null }
- ]
- }
- },
- "bones": {
- "l_star1": {
- "scale": [
- { "x": -0.083, "y": -0.083 }
- ]
- },
- "js_qz3b": {
- "rotate": [
- { "angle": -2.07 }
- ]
- },
- "js_qz3c": {
- "rotate": [
- { "angle": -1.61 }
- ]
- },
- "js_qz3d": {
- "rotate": [
- { "angle": -0.75 }
- ]
- },
- "js_qz": {
- "scale": [
- { "time": 0.8333, "curve": 0.25, "c3": 0.75 },
- { "time": 1.3333, "x": 0.355, "y": 0.355 }
- ]
- }
- },
- "drawOrder": [
- {
- "offsets": [
- { "slot": "l_star1", "offset": 1 }
- ]
- }
- ]
- },
- "star2_2": {
- "slots": {
- "js_bg": {
- "color": [
- { "color": "ffffff00" }
- ]
- },
- "js_h": {
- "color": [
- { "color": "ffffff00" }
- ]
- },
- "js_hg": {
- "color": [
- { "color": "ffffff00" }
- ]
- },
- "js_qz": {
- "color": [
- { "color": "ffffff00" }
- ]
- },
- "js_y": {
- "color": [
- { "color": "ffffff00" }
- ]
- },
- "l_star1": {
- "attachment": [
- { "name": null }
- ]
- },
- "l_star1_1": {
- "attachment": [
- { "name": "l_star1" }
- ]
- },
- "l_star2": {
- "attachment": [
- { "name": "l_star2" }
- ]
- },
- "l_star2_1": {
- "attachment": [
- { "name": null }
- ]
- },
- "l_star3_1": {
- "attachment": [
- { "name": null }
- ]
- }
- },
- "bones": {
- "js_qz": {
- "scale": [
- { "x": 0.355, "y": 0.355 }
- ]
- },
- "l_star1": {
- "scale": [
- { "x": -0.083, "y": -0.083 }
- ]
- },
- "js_qz3b": {
- "rotate": [
- { "angle": -2.07 }
- ]
- },
- "js_qz3c": {
- "rotate": [
- { "angle": -1.61 }
- ]
- },
- "js_qz3d": {
- "rotate": [
- { "angle": -0.75 }
- ]
- }
- },
- "drawOrder": [
- {
- "offsets": [
- { "slot": "l_star1", "offset": 1 }
- ]
- }
- ]
- },
- "star3": {
- "slots": {
- "l_star1": {
- "attachment": [
- { "name": "l_star1" }
- ]
- },
- "l_star2": {
- "attachment": [
- { "name": "l_star2" }
- ]
- },
- "l_star3": {
- "attachment": [
- { "name": null },
- { "time": 0.5, "name": "l_star3" }
- ]
- }
- },
- "bones": {
- "l_star3": {
- "scale": [
- { "x": -0.083, "y": -0.083, "curve": "stepped" },
- { "time": 0.5, "x": -0.083, "y": -0.083, "curve": 0, "c2": 0.25, "c4": 0.75 },
- { "time": 0.7333, "x": 1.53, "y": 1.53, "curve": 0.25, "c3": 0.75 },
- { "time": 0.9667 }
- ]
- },
- "js_h": {
- "scale": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.4667, "x": 0.55, "y": 0.55, "curve": 0.25, "c3": 0.75 },
- { "time": 0.9667 }
- ]
- },
- "js_hg": {
- "scale": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.4667, "x": 1.29, "y": 1.29, "curve": 0.25, "c3": 0.75 },
- { "time": 0.9667 }
- ]
- },
- "js_y": {
- "scale": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.4667, "x": 1.317, "y": 1.317, "curve": 0.25, "c3": 0.75 },
- { "time": 0.9667 }
- ]
- },
- "js_qz3b": {
- "rotate": [
- { "angle": -2.07, "curve": 0.25, "c3": 0.75 },
- { "time": 0.4667, "angle": 1.51, "curve": 0.25, "c3": 0.75 },
- { "time": 0.9667, "angle": -2.07 }
- ]
- },
- "js_qz3c": {
- "rotate": [
- { "angle": -1.61, "curve": 0.25, "c3": 0.75 },
- { "time": 0.1, "angle": -2.07, "curve": 0.25, "c3": 0.75 },
- { "time": 0.5667, "angle": 1.51, "curve": 0.25, "c3": 0.75 },
- { "time": 0.9667, "angle": -1.61 }
- ]
- },
- "js_qz3d": {
- "rotate": [
- { "angle": -0.75, "curve": 0.25, "c3": 0.75 },
- { "time": 0.2, "angle": -2.07, "curve": 0.25, "c3": 0.75 },
- { "time": 0.6667, "angle": 1.51, "curve": 0.25, "c3": 0.75 },
- { "time": 0.9667, "angle": -0.75 }
- ]
- }
- },
- "drawOrder": [
- {
- "offsets": [
- { "slot": "l_star3", "offset": 1 },
- { "slot": "l_star2", "offset": 1 },
- { "slot": "l_star1", "offset": 1 }
- ]
- }
- ]
- },
- "star3_1": {
- "slots": {
- "js_bg": {
- "color": [
- { "color": "ffffffff", "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "color": "ffffff00" }
- ]
- },
- "js_h": {
- "color": [
- { "color": "ffffffff", "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "color": "ffffff00" }
- ]
- },
- "js_hg": {
- "color": [
- { "color": "ffffffff", "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "color": "ffffff00" }
- ]
- },
- "js_qz": {
- "color": [
- { "color": "ffffffff", "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "color": "ffffff00" }
- ]
- },
- "js_y": {
- "color": [
- { "color": "ffffffff", "curve": 0.25, "c3": 0.75 },
- { "time": 0.8333, "color": "ffffff00" }
- ]
- },
- "l_star1": {
- "attachment": [
- { "name": null }
- ]
- },
- "l_star1_1": {
- "attachment": [
- { "name": "l_star1" }
- ]
- },
- "l_star2": {
- "attachment": [
- { "name": "l_star2" }
- ]
- },
- "l_star2_1": {
- "attachment": [
- { "name": null }
- ]
- },
- "l_star3_1": {
- "attachment": [
- { "name": "l_star3" }
- ]
- }
- },
- "bones": {
- "l_star1": {
- "scale": [
- { "x": -0.083, "y": -0.083 }
- ]
- },
- "js_qz3b": {
- "rotate": [
- { "angle": -2.07 }
- ]
- },
- "js_qz3c": {
- "rotate": [
- { "angle": -1.61 }
- ]
- },
- "js_qz3d": {
- "rotate": [
- { "angle": -0.75 }
- ]
- },
- "js_qz": {
- "scale": [
- { "time": 0.8333, "curve": 0.25, "c3": 0.75 },
- { "time": 1.3333, "x": 0.355, "y": 0.355 }
- ]
- }
- },
- "drawOrder": [
- {
- "offsets": [
- { "slot": "l_star1", "offset": 1 }
- ]
- }
- ]
- },
- "star3_2": {
- "slots": {
- "js_bg": {
- "color": [
- { "color": "ffffff00" }
- ]
- },
- "js_h": {
- "color": [
- { "color": "ffffff00" }
- ]
- },
- "js_hg": {
- "color": [
- { "color": "ffffff00" }
- ]
- },
- "js_qz": {
- "color": [
- { "color": "ffffff00" }
- ]
- },
- "js_y": {
- "color": [
- { "color": "ffffff00" }
- ]
- },
- "l_star1": {
- "attachment": [
- { "name": null }
- ]
- },
- "l_star1_1": {
- "attachment": [
- { "name": "l_star1" }
- ]
- },
- "l_star2": {
- "attachment": [
- { "name": "l_star2" }
- ]
- },
- "l_star2_1": {
- "attachment": [
- { "name": null }
- ]
- },
- "l_star3_1": {
- "attachment": [
- { "name": "l_star3" }
- ]
- }
- },
- "bones": {
- "js_qz": {
- "scale": [
- { "x": 0.355, "y": 0.355 }
- ]
- },
- "l_star1": {
- "scale": [
- { "x": -0.083, "y": -0.083 }
- ]
- },
- "js_qz3b": {
- "rotate": [
- { "angle": -2.07 }
- ]
- },
- "js_qz3c": {
- "rotate": [
- { "angle": -1.61 }
- ]
- },
- "js_qz3d": {
- "rotate": [
- { "angle": -0.75 }
- ]
- }
- },
- "drawOrder": [
- {
- "offsets": [
- { "slot": "l_star1", "offset": 1 }
- ]
- }
- ]
- },
- "suoxiao": {
- "bones": {
- "js_zhang": {
- "scale": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.5, "x": 0.006, "y": 0.006 }
- ]
- }
- }
- },
- "tanchu": {
- "slots": {
- "l_star1": {
- "attachment": [
- { "name": null }
- ]
- },
- "l_star2": {
- "attachment": [
- { "name": null }
- ]
- },
- "l_star2_1": {
- "attachment": [
- { "name": null }
- ]
- },
- "l_star3": {
- "attachment": [
- { "name": null }
- ]
- },
- "l_star3_1": {
- "attachment": [
- { "name": null }
- ]
- }
- },
- "bones": {
- "js_qz": {
- "scale": [
- { "x": -0.01, "y": -0.01, "curve": 0.25, "c3": 0.75 },
- { "time": 0.1667, "x": 1.13, "y": 0.901, "curve": 0.25, "c3": 0.75 },
- { "time": 0.3667, "x": 0.558, "y": 0.68, "curve": 0.25, "c3": 0.75 },
- { "time": 0.5667 }
- ]
- },
- "a_star1": {
- "translate": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.1667, "y": -408.5, "curve": 0.25, "c3": 0.75 },
- { "time": 0.3667, "y": 136.73, "curve": 0.25, "c3": 0.75 },
- { "time": 0.5667 }
- ]
- },
- "js_zcb": {
- "rotate": [
- { "angle": -8.01, "curve": "stepped" },
- { "time": 0.3667, "angle": -8.01, "curve": 0.25, "c3": 0.75 },
- { "time": 0.7667 }
- ]
- },
- "js_zcb3": {
- "rotate": [
- { "angle": -8.01, "curve": "stepped" },
- { "time": 0.3667, "angle": -8.01, "curve": 0.25, "c3": 0.75 },
- { "time": 0.7667 }
- ]
- },
- "js_zcb2": {
- "rotate": [
- { "angle": -8.01, "curve": "stepped" },
- { "time": 0.3667, "angle": -8.01, "curve": 0.25, "c3": 0.75 },
- { "time": 0.7667 }
- ]
- },
- "js_ycb": {
- "rotate": [
- { "angle": 7.73, "curve": "stepped" },
- { "time": 0.3667, "angle": 7.73, "curve": 0.25, "c3": 0.75 },
- { "time": 0.7667 }
- ]
- },
- "js_ycb3": {
- "rotate": [
- { "angle": 7.73, "curve": "stepped" },
- { "time": 0.3667, "angle": 7.73, "curve": 0.25, "c3": 0.75 },
- { "time": 0.7667 }
- ]
- },
- "js_ycb2": {
- "rotate": [
- { "angle": 7.73, "curve": "stepped" },
- { "time": 0.3667, "angle": 7.73, "curve": 0.25, "c3": 0.75 },
- { "time": 0.7667 }
- ]
- },
- "js_zhang": {
- "scale": [
- { "x": 1.325, "y": 1.325, "curve": "stepped" },
- { "time": 0.5667, "x": 1.325, "y": 1.325, "curve": 0.25, "c3": 0.75 },
- { "time": 0.7667 }
- ]
- },
- "js_h": {
- "scale": [
- { "x": 0.015, "y": 0.015, "curve": "stepped" },
- { "time": 0.5667, "x": 0.015, "y": 0.015, "curve": 0.25, "c3": 0.75 },
- { "time": 0.7667 }
- ]
- },
- "js_hg": {
- "scale": [
- { "x": -0.004, "y": -0.004, "curve": "stepped" },
- { "time": 0.5667, "x": -0.004, "y": -0.004, "curve": 0.25, "c3": 0.75 },
- { "time": 0.7667 }
- ]
- },
- "js_y": {
- "scale": [
- { "x": 0.592, "y": 0.592, "curve": "stepped" },
- { "time": 0.5667, "x": 0.592, "y": 0.592, "curve": 0.25, "c3": 0.75 },
- { "time": 0.7667 }
- ]
- },
- "js_qz2": {
- "scale": [
- { "x": 1.333, "y": 1.333, "curve": "stepped" },
- { "time": 0.5667, "x": 1.333, "y": 1.333, "curve": 0.25, "c3": 0.75 },
- { "time": 0.7667 }
- ]
- }
- }
- },
- "tanchu2": {
- "slots": {
- "l_star1": {
- "attachment": [
- { "name": null }
- ]
- },
- "l_star2": {
- "attachment": [
- { "name": null }
- ]
- },
- "l_star2_1": {
- "attachment": [
- { "name": null }
- ]
- },
- "l_star3": {
- "attachment": [
- { "name": null }
- ]
- },
- "l_star3_1": {
- "attachment": [
- { "name": null }
- ]
- }
- },
- "bones": {
- "js_qz": {
- "scale": [
- { "x": -0.01, "y": -0.01 }
- ]
- },
- "a_star1": {
- "scale": [
- { "x": 1.054, "y": 1.054 }
- ]
- },
- "js_zcb": {
- "rotate": [
- { "angle": -8.01 }
- ]
- },
- "js_zcb3": {
- "rotate": [
- { "angle": -8.01 }
- ]
- },
- "js_zcb2": {
- "rotate": [
- { "angle": -8.01 }
- ]
- },
- "js_ycb": {
- "rotate": [
- { "angle": 7.73 }
- ]
- },
- "js_ycb3": {
- "rotate": [
- { "angle": 7.73 }
- ]
- },
- "js_ycb2": {
- "rotate": [
- { "angle": 7.73 }
- ]
- },
- "js_zhang": {
- "scale": [
- { "x": 1.325, "y": 1.325 }
- ]
- },
- "js_h": {
- "scale": [
- { "x": 0.015, "y": 0.015 }
- ]
- },
- "js_hg": {
- "scale": [
- { "x": -0.004, "y": -0.004 }
- ]
- },
- "js_y": {
- "scale": [
- { "x": 0.592, "y": 0.592 }
- ]
- },
- "js_qz2": {
- "scale": [
- { "x": 1.333, "y": 1.333 }
- ]
- }
- }
- },
- "zhengti": {
- "bones": {
- "js_zhang": {
- "scale": [
- { "curve": 0.25, "c3": 0.75 },
- { "time": 0.5, "x": 0.006, "y": 0.006, "curve": 0.245, "c3": 0.637, "c4": 0.56 },
- { "time": 0.8333, "x": 1.151, "y": 1.151, "curve": 0.381, "c2": 0.55, "c3": 0.742 },
- { "time": 1.1667 }
- ]
- }
- }
- }
- }
- }
|