game.fire 85 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809
  1. [
  2. {
  3. "__type__": "cc.SceneAsset",
  4. "_name": "",
  5. "_objFlags": 0,
  6. "_native": "",
  7. "scene": {
  8. "__id__": 1
  9. }
  10. },
  11. {
  12. "__type__": "cc.Scene",
  13. "_objFlags": 0,
  14. "_parent": null,
  15. "_children": [
  16. {
  17. "__id__": 2
  18. },
  19. {
  20. "__id__": 90
  21. }
  22. ],
  23. "_active": true,
  24. "_level": 0,
  25. "_components": [],
  26. "_prefab": null,
  27. "_opacity": 255,
  28. "_color": {
  29. "__type__": "cc.Color",
  30. "r": 255,
  31. "g": 255,
  32. "b": 255,
  33. "a": 255
  34. },
  35. "_contentSize": {
  36. "__type__": "cc.Size",
  37. "width": 0,
  38. "height": 0
  39. },
  40. "_anchorPoint": {
  41. "__type__": "cc.Vec2",
  42. "x": 0,
  43. "y": 0
  44. },
  45. "_scale": {
  46. "__type__": "cc.Vec3",
  47. "x": 0.25953369140625,
  48. "y": 0.25953369140625,
  49. "z": 0.25953369140625
  50. },
  51. "_quat": {
  52. "__type__": "cc.Quat",
  53. "x": 0,
  54. "y": 0,
  55. "z": 0,
  56. "w": 1
  57. },
  58. "_zIndex": 0,
  59. "_is3DNode": true,
  60. "groupIndex": 0,
  61. "autoReleaseAssets": false,
  62. "_id": "c9d28612-802a-4363-acdd-c007d1f5572f"
  63. },
  64. {
  65. "__type__": "cc.Node",
  66. "_name": "Canvas",
  67. "_objFlags": 0,
  68. "_parent": {
  69. "__id__": 1
  70. },
  71. "_children": [
  72. {
  73. "__id__": 3
  74. },
  75. {
  76. "__id__": 5
  77. },
  78. {
  79. "__id__": 10
  80. },
  81. {
  82. "__id__": 14
  83. },
  84. {
  85. "__id__": 49
  86. },
  87. {
  88. "__id__": 76
  89. }
  90. ],
  91. "_active": true,
  92. "_level": 0,
  93. "_components": [
  94. {
  95. "__id__": 87
  96. },
  97. {
  98. "__id__": 88
  99. },
  100. {
  101. "__id__": 89
  102. }
  103. ],
  104. "_prefab": null,
  105. "_opacity": 255,
  106. "_color": {
  107. "__type__": "cc.Color",
  108. "r": 255,
  109. "g": 255,
  110. "b": 255,
  111. "a": 255
  112. },
  113. "_contentSize": {
  114. "__type__": "cc.Size",
  115. "width": 720,
  116. "height": 1280
  117. },
  118. "_anchorPoint": {
  119. "__type__": "cc.Vec2",
  120. "x": 0.5,
  121. "y": 0.5
  122. },
  123. "_position": {
  124. "__type__": "cc.Vec3",
  125. "x": 360,
  126. "y": 640,
  127. "z": 0
  128. },
  129. "_scale": {
  130. "__type__": "cc.Vec3",
  131. "x": 1,
  132. "y": 1,
  133. "z": 1
  134. },
  135. "_quat": {
  136. "__type__": "cc.Quat",
  137. "x": 0,
  138. "y": 0,
  139. "z": 0,
  140. "w": 1
  141. },
  142. "_skewX": 0,
  143. "_skewY": 0,
  144. "_zIndex": 0,
  145. "_is3DNode": false,
  146. "groupIndex": 0,
  147. "_id": "69I/qJmapJaJh9VDZu7Zn0"
  148. },
  149. {
  150. "__type__": "cc.Node",
  151. "_name": "Main Camera",
  152. "_objFlags": 0,
  153. "_parent": {
  154. "__id__": 2
  155. },
  156. "_children": [],
  157. "_active": true,
  158. "_level": 1,
  159. "_components": [
  160. {
  161. "__id__": 4
  162. }
  163. ],
  164. "_prefab": null,
  165. "_opacity": 255,
  166. "_color": {
  167. "__type__": "cc.Color",
  168. "r": 255,
  169. "g": 255,
  170. "b": 255,
  171. "a": 255
  172. },
  173. "_contentSize": {
  174. "__type__": "cc.Size",
  175. "width": 0,
  176. "height": 0
  177. },
  178. "_anchorPoint": {
  179. "__type__": "cc.Vec2",
  180. "x": 0.5,
  181. "y": 0.5
  182. },
  183. "_position": {
  184. "__type__": "cc.Vec3",
  185. "x": 0,
  186. "y": 0,
  187. "z": 0
  188. },
  189. "_scale": {
  190. "__type__": "cc.Vec3",
  191. "x": 1,
  192. "y": 1,
  193. "z": 1
  194. },
  195. "_quat": {
  196. "__type__": "cc.Quat",
  197. "x": 0,
  198. "y": 0,
  199. "z": 0,
  200. "w": 1
  201. },
  202. "_skewX": 0,
  203. "_skewY": 0,
  204. "_zIndex": 0,
  205. "_is3DNode": false,
  206. "groupIndex": 0,
  207. "_id": "f6tPnLIrVM0J8IaViv8rbI"
  208. },
  209. {
  210. "__type__": "cc.Camera",
  211. "_name": "",
  212. "_objFlags": 0,
  213. "node": {
  214. "__id__": 3
  215. },
  216. "_enabled": true,
  217. "_cullingMask": 4294967295,
  218. "_clearFlags": 7,
  219. "_backgroundColor": {
  220. "__type__": "cc.Color",
  221. "r": 0,
  222. "g": 0,
  223. "b": 0,
  224. "a": 255
  225. },
  226. "_depth": -1,
  227. "_zoomRatio": 1,
  228. "_targetTexture": null,
  229. "_fov": 60,
  230. "_orthoSize": 10,
  231. "_nearClip": 0.1,
  232. "_farClip": 4096,
  233. "_ortho": true,
  234. "_rect": {
  235. "__type__": "cc.Rect",
  236. "x": 0,
  237. "y": 0,
  238. "width": 1,
  239. "height": 1
  240. },
  241. "_id": "4eg27N/mtCSKsa9Cf//v6K"
  242. },
  243. {
  244. "__type__": "cc.Node",
  245. "_name": "rival(test)",
  246. "_objFlags": 0,
  247. "_parent": {
  248. "__id__": 2
  249. },
  250. "_children": [],
  251. "_active": false,
  252. "_level": 1,
  253. "_components": [
  254. {
  255. "__id__": 6
  256. },
  257. {
  258. "__id__": 7
  259. },
  260. {
  261. "__id__": 8
  262. },
  263. {
  264. "__id__": 9
  265. }
  266. ],
  267. "_prefab": null,
  268. "_opacity": 255,
  269. "_color": {
  270. "__type__": "cc.Color",
  271. "r": 255,
  272. "g": 255,
  273. "b": 255,
  274. "a": 255
  275. },
  276. "_contentSize": {
  277. "__type__": "cc.Size",
  278. "width": 124,
  279. "height": 192
  280. },
  281. "_anchorPoint": {
  282. "__type__": "cc.Vec2",
  283. "x": 0.5,
  284. "y": 0.5
  285. },
  286. "_position": {
  287. "__type__": "cc.Vec3",
  288. "x": 0,
  289. "y": 50,
  290. "z": 0
  291. },
  292. "_scale": {
  293. "__type__": "cc.Vec3",
  294. "x": 6,
  295. "y": 6,
  296. "z": 1
  297. },
  298. "_quat": {
  299. "__type__": "cc.Quat",
  300. "x": 0,
  301. "y": 0,
  302. "z": 0,
  303. "w": 1
  304. },
  305. "_skewX": 0,
  306. "_skewY": 0,
  307. "_zIndex": 0,
  308. "_is3DNode": false,
  309. "groupIndex": 0,
  310. "_rotationX": 0,
  311. "_rotationY": 0,
  312. "_id": "ceCZystghPRZ5yBsDJerPL"
  313. },
  314. {
  315. "__type__": "cc.Sprite",
  316. "_name": "",
  317. "_objFlags": 0,
  318. "node": {
  319. "__id__": 5
  320. },
  321. "_enabled": true,
  322. "_srcBlendFactor": 770,
  323. "_dstBlendFactor": 771,
  324. "_spriteFrame": {
  325. "__uuid__": "04d97be8-86cc-42d7-97a9-3158f6dff5b2"
  326. },
  327. "_type": 0,
  328. "_sizeMode": 2,
  329. "_fillType": 0,
  330. "_fillCenter": {
  331. "__type__": "cc.Vec2",
  332. "x": 0,
  333. "y": 0
  334. },
  335. "_fillStart": 0,
  336. "_fillRange": 0,
  337. "_isTrimmedMode": true,
  338. "_state": 0,
  339. "_atlas": {
  340. "__uuid__": "3127a32a-4d65-40f5-9c0c-3bba74eb6177"
  341. },
  342. "_id": "7dkVMUq8NPt5BIO2x3ikkG"
  343. },
  344. {
  345. "__type__": "cc.Animation",
  346. "_name": "",
  347. "_objFlags": 0,
  348. "node": {
  349. "__id__": 5
  350. },
  351. "_enabled": true,
  352. "_defaultClip": {
  353. "__uuid__": "3077ed5b-8b0a-494b-8327-378acd3d8741"
  354. },
  355. "_clips": [
  356. {
  357. "__uuid__": "3077ed5b-8b0a-494b-8327-378acd3d8741"
  358. },
  359. {
  360. "__uuid__": "142c2d92-2856-4640-8336-a6a073d4b078"
  361. },
  362. {
  363. "__uuid__": "78af3f8a-c5f0-49fe-a8cc-a59eecd77bae"
  364. },
  365. {
  366. "__uuid__": "b3790ad1-7f7a-4093-8900-64da5253becb"
  367. }
  368. ],
  369. "playOnLoad": true,
  370. "_id": "88JOepv0RIT5IWkvq8sgyw"
  371. },
  372. {
  373. "__type__": "3eafbP5lXtPkKHLpo+haKO0",
  374. "_name": "",
  375. "_objFlags": 0,
  376. "node": {
  377. "__id__": 5
  378. },
  379. "_enabled": true,
  380. "_id": "9eejNMqHZHa5Pm8itF3NfW"
  381. },
  382. {
  383. "__type__": "0ce29o0rahOh72gE5kSb6Jc",
  384. "_name": "",
  385. "_objFlags": 0,
  386. "node": {
  387. "__id__": 5
  388. },
  389. "_enabled": true,
  390. "_id": "0epBtR9hZGx71zYjcAPq4Q"
  391. },
  392. {
  393. "__type__": "cc.Node",
  394. "_name": "player(test)",
  395. "_objFlags": 0,
  396. "_parent": {
  397. "__id__": 2
  398. },
  399. "_children": [],
  400. "_active": false,
  401. "_level": 1,
  402. "_components": [
  403. {
  404. "__id__": 11
  405. },
  406. {
  407. "__id__": 12
  408. },
  409. {
  410. "__id__": 13
  411. }
  412. ],
  413. "_prefab": null,
  414. "_opacity": 255,
  415. "_color": {
  416. "__type__": "cc.Color",
  417. "r": 255,
  418. "g": 255,
  419. "b": 255,
  420. "a": 255
  421. },
  422. "_contentSize": {
  423. "__type__": "cc.Size",
  424. "width": 111,
  425. "height": 95
  426. },
  427. "_anchorPoint": {
  428. "__type__": "cc.Vec2",
  429. "x": 0.5,
  430. "y": 0.5
  431. },
  432. "_position": {
  433. "__type__": "cc.Vec3",
  434. "x": 0,
  435. "y": -161,
  436. "z": 0
  437. },
  438. "_scale": {
  439. "__type__": "cc.Vec3",
  440. "x": 6,
  441. "y": 6,
  442. "z": 1
  443. },
  444. "_quat": {
  445. "__type__": "cc.Quat",
  446. "x": 0,
  447. "y": 0,
  448. "z": 0,
  449. "w": 1
  450. },
  451. "_skewX": 0,
  452. "_skewY": 0,
  453. "_zIndex": 0,
  454. "_is3DNode": false,
  455. "groupIndex": 0,
  456. "_rotationX": 0,
  457. "_rotationY": 0,
  458. "_id": "fb8JtEqyhPp54SAdYu8dF2"
  459. },
  460. {
  461. "__type__": "cc.Sprite",
  462. "_name": "",
  463. "_objFlags": 0,
  464. "node": {
  465. "__id__": 10
  466. },
  467. "_enabled": true,
  468. "_srcBlendFactor": 770,
  469. "_dstBlendFactor": 771,
  470. "_spriteFrame": {
  471. "__uuid__": "15c12197-1de6-4de1-b144-04b7a4189757"
  472. },
  473. "_type": 0,
  474. "_sizeMode": 2,
  475. "_fillType": 0,
  476. "_fillCenter": {
  477. "__type__": "cc.Vec2",
  478. "x": 0,
  479. "y": 0
  480. },
  481. "_fillStart": 0,
  482. "_fillRange": 0,
  483. "_isTrimmedMode": true,
  484. "_state": 0,
  485. "_atlas": {
  486. "__uuid__": "2a9c8df3-bb98-404c-b911-2ac565a3b8c6"
  487. },
  488. "_id": "4eprflvhxE/I7FS/VmKes1"
  489. },
  490. {
  491. "__type__": "cc.Animation",
  492. "_name": "",
  493. "_objFlags": 0,
  494. "node": {
  495. "__id__": 10
  496. },
  497. "_enabled": true,
  498. "_defaultClip": {
  499. "__uuid__": "539b2e23-8f86-4d54-a548-3666a37247e3"
  500. },
  501. "_clips": [
  502. {
  503. "__uuid__": "539b2e23-8f86-4d54-a548-3666a37247e3"
  504. },
  505. {
  506. "__uuid__": "1bcd6024-6399-4040-a6c3-ebedd5d7b11e"
  507. },
  508. {
  509. "__uuid__": "f1fb84da-0b13-40eb-9138-f1db06695552"
  510. },
  511. {
  512. "__uuid__": "b955d46a-7d77-4ef4-b4ae-c67f34ccc16a"
  513. },
  514. {
  515. "__uuid__": "afcec68e-9957-434b-b828-974d2dd22d8d"
  516. },
  517. {
  518. "__uuid__": "2adbc033-cd04-4148-80a9-9dfc22b9ef58"
  519. }
  520. ],
  521. "playOnLoad": true,
  522. "_id": "75LVU6lftPGLjvwHKgpdig"
  523. },
  524. {
  525. "__type__": "608fdg7nPJOj49bZeU+NsqF",
  526. "_name": "",
  527. "_objFlags": 0,
  528. "node": {
  529. "__id__": 10
  530. },
  531. "_enabled": true,
  532. "_id": "85Ye8xzkJMyK9Dx2Vphu1c"
  533. },
  534. {
  535. "__type__": "cc.Node",
  536. "_name": "game",
  537. "_objFlags": 0,
  538. "_parent": {
  539. "__id__": 2
  540. },
  541. "_children": [
  542. {
  543. "__id__": 15
  544. },
  545. {
  546. "__id__": 17
  547. },
  548. {
  549. "__id__": 21
  550. },
  551. {
  552. "__id__": 25
  553. },
  554. {
  555. "__id__": 36
  556. }
  557. ],
  558. "_active": true,
  559. "_level": 1,
  560. "_components": [
  561. {
  562. "__id__": 47
  563. },
  564. {
  565. "__id__": 48
  566. }
  567. ],
  568. "_prefab": null,
  569. "_opacity": 255,
  570. "_color": {
  571. "__type__": "cc.Color",
  572. "r": 255,
  573. "g": 255,
  574. "b": 255,
  575. "a": 255
  576. },
  577. "_contentSize": {
  578. "__type__": "cc.Size",
  579. "width": 0,
  580. "height": 0
  581. },
  582. "_anchorPoint": {
  583. "__type__": "cc.Vec2",
  584. "x": 0.5,
  585. "y": 0.5
  586. },
  587. "_position": {
  588. "__type__": "cc.Vec3",
  589. "x": 0,
  590. "y": 0,
  591. "z": 0
  592. },
  593. "_scale": {
  594. "__type__": "cc.Vec3",
  595. "x": 1,
  596. "y": 1,
  597. "z": 1
  598. },
  599. "_quat": {
  600. "__type__": "cc.Quat",
  601. "x": 0,
  602. "y": 0,
  603. "z": 0,
  604. "w": 1
  605. },
  606. "_skewX": 0,
  607. "_skewY": 0,
  608. "_zIndex": 0,
  609. "_is3DNode": false,
  610. "groupIndex": 0,
  611. "_id": "d3br5pe89HQq6mXgMG2E0v"
  612. },
  613. {
  614. "__type__": "cc.Node",
  615. "_name": "bg",
  616. "_objFlags": 0,
  617. "_parent": {
  618. "__id__": 14
  619. },
  620. "_children": [],
  621. "_active": true,
  622. "_level": 2,
  623. "_components": [
  624. {
  625. "__id__": 16
  626. }
  627. ],
  628. "_prefab": null,
  629. "_opacity": 255,
  630. "_color": {
  631. "__type__": "cc.Color",
  632. "r": 255,
  633. "g": 255,
  634. "b": 255,
  635. "a": 255
  636. },
  637. "_contentSize": {
  638. "__type__": "cc.Size",
  639. "width": 720,
  640. "height": 1280
  641. },
  642. "_anchorPoint": {
  643. "__type__": "cc.Vec2",
  644. "x": 0.5,
  645. "y": 0.5
  646. },
  647. "_position": {
  648. "__type__": "cc.Vec3",
  649. "x": 0,
  650. "y": 0,
  651. "z": 0
  652. },
  653. "_scale": {
  654. "__type__": "cc.Vec3",
  655. "x": 1,
  656. "y": 1,
  657. "z": 1
  658. },
  659. "_quat": {
  660. "__type__": "cc.Quat",
  661. "x": 0,
  662. "y": 0,
  663. "z": 0,
  664. "w": 1
  665. },
  666. "_skewX": 0,
  667. "_skewY": 0,
  668. "_zIndex": 0,
  669. "_is3DNode": false,
  670. "groupIndex": 0,
  671. "_rotationX": 0,
  672. "_rotationY": 0,
  673. "_id": "9c0fzBOuhC/Z0+SEYv98kL"
  674. },
  675. {
  676. "__type__": "cc.Sprite",
  677. "_name": "",
  678. "_objFlags": 0,
  679. "node": {
  680. "__id__": 15
  681. },
  682. "_enabled": true,
  683. "_srcBlendFactor": 770,
  684. "_dstBlendFactor": 771,
  685. "_spriteFrame": {
  686. "__uuid__": "6b10e24f-dda9-4c47-b5e0-caeed03c59d0"
  687. },
  688. "_type": 0,
  689. "_sizeMode": 1,
  690. "_fillType": 0,
  691. "_fillCenter": {
  692. "__type__": "cc.Vec2",
  693. "x": 0,
  694. "y": 0
  695. },
  696. "_fillStart": 0,
  697. "_fillRange": 0,
  698. "_isTrimmedMode": true,
  699. "_state": 0,
  700. "_atlas": null,
  701. "_id": "bfPtyox5NCxLRz6mAmTxOF"
  702. },
  703. {
  704. "__type__": "cc.Node",
  705. "_name": "monster_01_ske",
  706. "_objFlags": 0,
  707. "_parent": {
  708. "__id__": 14
  709. },
  710. "_children": [],
  711. "_active": true,
  712. "_level": 2,
  713. "_components": [
  714. {
  715. "__id__": 18
  716. },
  717. {
  718. "__id__": 19
  719. },
  720. {
  721. "__id__": 20
  722. }
  723. ],
  724. "_prefab": null,
  725. "_opacity": 255,
  726. "_color": {
  727. "__type__": "cc.Color",
  728. "r": 255,
  729. "g": 255,
  730. "b": 255,
  731. "a": 255
  732. },
  733. "_contentSize": {
  734. "__type__": "cc.Size",
  735. "width": 0,
  736. "height": 0
  737. },
  738. "_anchorPoint": {
  739. "__type__": "cc.Vec2",
  740. "x": 0.5,
  741. "y": 0.5
  742. },
  743. "_position": {
  744. "__type__": "cc.Vec3",
  745. "x": -4,
  746. "y": -490,
  747. "z": 0
  748. },
  749. "_scale": {
  750. "__type__": "cc.Vec3",
  751. "x": 1,
  752. "y": 1,
  753. "z": 1
  754. },
  755. "_quat": {
  756. "__type__": "cc.Quat",
  757. "x": 0,
  758. "y": 0,
  759. "z": 0,
  760. "w": 1
  761. },
  762. "_skewX": 0,
  763. "_skewY": 0,
  764. "_zIndex": 0,
  765. "_is3DNode": false,
  766. "groupIndex": 0,
  767. "_id": "1dypMq1BhOCo8jqqnGvClK"
  768. },
  769. {
  770. "__type__": "dragonBones.ArmatureDisplay",
  771. "_name": "",
  772. "_objFlags": 0,
  773. "node": {
  774. "__id__": 17
  775. },
  776. "_enabled": true,
  777. "_srcBlendFactor": 770,
  778. "_dstBlendFactor": 771,
  779. "_armatureName": "monster_01",
  780. "_animationName": "Idle",
  781. "playTimes": 0,
  782. "_N$dragonAsset": {
  783. "__uuid__": "301bf5a0-897c-4cba-9aa5-eedb950d3adf"
  784. },
  785. "_N$dragonAtlasAsset": {
  786. "__uuid__": "f44258ab-6da9-45be-96f2-b39520fb60b2"
  787. },
  788. "_N$_defaultArmatureIndex": 0,
  789. "_N$_animationIndex": 1,
  790. "_N$timeScale": 0.7,
  791. "_N$debugBones": false,
  792. "_id": "088LehY0FEKr5vMxAdTQvt"
  793. },
  794. {
  795. "__type__": "fd264YSoidMnpOQ0LBogiD6",
  796. "_name": "",
  797. "_objFlags": 0,
  798. "node": {
  799. "__id__": 17
  800. },
  801. "_enabled": true,
  802. "_id": "a5RYM7IWRKqYuijdCPTNPd"
  803. },
  804. {
  805. "__type__": "1fe85wb4N9Fg5xsX0BOMFHz",
  806. "_name": "",
  807. "_objFlags": 0,
  808. "node": {
  809. "__id__": 17
  810. },
  811. "_enabled": true,
  812. "_id": "10zcCzwClJiLl47PnCYGLj"
  813. },
  814. {
  815. "__type__": "cc.Node",
  816. "_name": "monster_00_ske",
  817. "_objFlags": 0,
  818. "_parent": {
  819. "__id__": 14
  820. },
  821. "_children": [],
  822. "_active": true,
  823. "_level": 2,
  824. "_components": [
  825. {
  826. "__id__": 22
  827. },
  828. {
  829. "__id__": 23
  830. },
  831. {
  832. "__id__": 24
  833. }
  834. ],
  835. "_prefab": null,
  836. "_opacity": 255,
  837. "_color": {
  838. "__type__": "cc.Color",
  839. "r": 255,
  840. "g": 255,
  841. "b": 255,
  842. "a": 255
  843. },
  844. "_contentSize": {
  845. "__type__": "cc.Size",
  846. "width": 0,
  847. "height": 0
  848. },
  849. "_anchorPoint": {
  850. "__type__": "cc.Vec2",
  851. "x": 0.5,
  852. "y": 0.5
  853. },
  854. "_position": {
  855. "__type__": "cc.Vec3",
  856. "x": -6,
  857. "y": -559,
  858. "z": 0
  859. },
  860. "_scale": {
  861. "__type__": "cc.Vec3",
  862. "x": 1,
  863. "y": 1,
  864. "z": 1
  865. },
  866. "_quat": {
  867. "__type__": "cc.Quat",
  868. "x": 0,
  869. "y": 0,
  870. "z": 0,
  871. "w": 1
  872. },
  873. "_skewX": 0,
  874. "_skewY": 0,
  875. "_zIndex": 0,
  876. "_is3DNode": false,
  877. "groupIndex": 0,
  878. "_id": "bakiAnVM1Oz6Y3dgykyxl4"
  879. },
  880. {
  881. "__type__": "dragonBones.ArmatureDisplay",
  882. "_name": "",
  883. "_objFlags": 0,
  884. "node": {
  885. "__id__": 21
  886. },
  887. "_enabled": true,
  888. "_srcBlendFactor": 770,
  889. "_dstBlendFactor": 771,
  890. "_armatureName": "monster_00",
  891. "_animationName": "Idle",
  892. "playTimes": 0,
  893. "_N$dragonAsset": {
  894. "__uuid__": "dea2a7de-00c2-43d7-9149-8e71dfba693c"
  895. },
  896. "_N$dragonAtlasAsset": {
  897. "__uuid__": "2af027b9-ba06-4604-b70b-b732eb3111b7"
  898. },
  899. "_N$_defaultArmatureIndex": 0,
  900. "_N$_animationIndex": 1,
  901. "_N$timeScale": 0.7,
  902. "_N$debugBones": false,
  903. "_id": "d7WYmSo3dH5ZhDdMJCU7Yv"
  904. },
  905. {
  906. "__type__": "fd264YSoidMnpOQ0LBogiD6",
  907. "_name": "",
  908. "_objFlags": 0,
  909. "node": {
  910. "__id__": 21
  911. },
  912. "_enabled": true,
  913. "_id": "a6Of/7Y7FLVL8jFHf3q26x"
  914. },
  915. {
  916. "__type__": "d309enz77lDUaBzTbM2dwoF",
  917. "_name": "",
  918. "_objFlags": 0,
  919. "node": {
  920. "__id__": 21
  921. },
  922. "_enabled": true,
  923. "_id": "68MEAPaY5MVJMZLfnNxolS"
  924. },
  925. {
  926. "__type__": "cc.Node",
  927. "_name": "rivalLife",
  928. "_objFlags": 0,
  929. "_parent": {
  930. "__id__": 14
  931. },
  932. "_children": [
  933. {
  934. "__id__": 26
  935. },
  936. {
  937. "__id__": 28
  938. }
  939. ],
  940. "_active": true,
  941. "_level": 2,
  942. "_components": [
  943. {
  944. "__id__": 33
  945. },
  946. {
  947. "__id__": 34
  948. },
  949. {
  950. "__id__": 35
  951. }
  952. ],
  953. "_prefab": null,
  954. "_opacity": 255,
  955. "_color": {
  956. "__type__": "cc.Color",
  957. "r": 255,
  958. "g": 0,
  959. "b": 0,
  960. "a": 255
  961. },
  962. "_contentSize": {
  963. "__type__": "cc.Size",
  964. "width": 300,
  965. "height": 30
  966. },
  967. "_anchorPoint": {
  968. "__type__": "cc.Vec2",
  969. "x": 0.5,
  970. "y": 0.5
  971. },
  972. "_position": {
  973. "__type__": "cc.Vec3",
  974. "x": 176,
  975. "y": 528,
  976. "z": 0
  977. },
  978. "_scale": {
  979. "__type__": "cc.Vec3",
  980. "x": 1,
  981. "y": 1,
  982. "z": 1
  983. },
  984. "_quat": {
  985. "__type__": "cc.Quat",
  986. "x": 0,
  987. "y": 0,
  988. "z": 0,
  989. "w": 1
  990. },
  991. "_skewX": 0,
  992. "_skewY": 0,
  993. "_zIndex": 0,
  994. "_is3DNode": false,
  995. "groupIndex": 0,
  996. "_rotationX": 0,
  997. "_rotationY": 0,
  998. "_id": "aerOrK+0RITZnR/sFyI0At"
  999. },
  1000. {
  1001. "__type__": "cc.Node",
  1002. "_name": "bar",
  1003. "_objFlags": 0,
  1004. "_parent": {
  1005. "__id__": 25
  1006. },
  1007. "_children": [],
  1008. "_active": true,
  1009. "_level": 0,
  1010. "_components": [
  1011. {
  1012. "__id__": 27
  1013. }
  1014. ],
  1015. "_prefab": null,
  1016. "_opacity": 255,
  1017. "_color": {
  1018. "__type__": "cc.Color",
  1019. "r": 233,
  1020. "g": 255,
  1021. "b": 56,
  1022. "a": 255
  1023. },
  1024. "_contentSize": {
  1025. "__type__": "cc.Size",
  1026. "width": 300,
  1027. "height": 30
  1028. },
  1029. "_anchorPoint": {
  1030. "__type__": "cc.Vec2",
  1031. "x": 0,
  1032. "y": 0.5
  1033. },
  1034. "_position": {
  1035. "__type__": "cc.Vec3",
  1036. "x": -150,
  1037. "y": 0,
  1038. "z": 0
  1039. },
  1040. "_scale": {
  1041. "__type__": "cc.Vec3",
  1042. "x": 1,
  1043. "y": 1,
  1044. "z": 1
  1045. },
  1046. "_quat": {
  1047. "__type__": "cc.Quat",
  1048. "x": 0,
  1049. "y": 0,
  1050. "z": 0,
  1051. "w": 1
  1052. },
  1053. "_skewX": 0,
  1054. "_skewY": 0,
  1055. "_zIndex": 0,
  1056. "_is3DNode": false,
  1057. "groupIndex": 0,
  1058. "_rotationX": 0,
  1059. "_rotationY": 0,
  1060. "_id": "b1TG1JpMxLv47TFS+dITem"
  1061. },
  1062. {
  1063. "__type__": "cc.Sprite",
  1064. "_name": "",
  1065. "_objFlags": 0,
  1066. "node": {
  1067. "__id__": 26
  1068. },
  1069. "_enabled": true,
  1070. "_srcBlendFactor": 770,
  1071. "_dstBlendFactor": 771,
  1072. "_spriteFrame": {
  1073. "__uuid__": "67e68bc9-dad5-4ad9-a2d8-7e03d458e32f"
  1074. },
  1075. "_type": 1,
  1076. "_sizeMode": 0,
  1077. "_fillType": 0,
  1078. "_fillCenter": {
  1079. "__type__": "cc.Vec2",
  1080. "x": 0,
  1081. "y": 0
  1082. },
  1083. "_fillStart": 0,
  1084. "_fillRange": 0,
  1085. "_isTrimmedMode": true,
  1086. "_state": 0,
  1087. "_atlas": null,
  1088. "_id": "24iswi5GRJ76r6CPI/Bsne"
  1089. },
  1090. {
  1091. "__type__": "cc.Node",
  1092. "_name": "Defend",
  1093. "_objFlags": 0,
  1094. "_parent": {
  1095. "__id__": 25
  1096. },
  1097. "_children": [
  1098. {
  1099. "__id__": 29
  1100. }
  1101. ],
  1102. "_active": true,
  1103. "_level": 3,
  1104. "_components": [
  1105. {
  1106. "__id__": 31
  1107. },
  1108. {
  1109. "__id__": 32
  1110. }
  1111. ],
  1112. "_prefab": null,
  1113. "_opacity": 255,
  1114. "_color": {
  1115. "__type__": "cc.Color",
  1116. "r": 255,
  1117. "g": 255,
  1118. "b": 255,
  1119. "a": 255
  1120. },
  1121. "_contentSize": {
  1122. "__type__": "cc.Size",
  1123. "width": 100,
  1124. "height": 15
  1125. },
  1126. "_anchorPoint": {
  1127. "__type__": "cc.Vec2",
  1128. "x": 0.5,
  1129. "y": 0.5
  1130. },
  1131. "_position": {
  1132. "__type__": "cc.Vec3",
  1133. "x": -96,
  1134. "y": -51,
  1135. "z": 0
  1136. },
  1137. "_scale": {
  1138. "__type__": "cc.Vec3",
  1139. "x": 1,
  1140. "y": 1,
  1141. "z": 1
  1142. },
  1143. "_quat": {
  1144. "__type__": "cc.Quat",
  1145. "x": 0,
  1146. "y": 0,
  1147. "z": 0,
  1148. "w": 1
  1149. },
  1150. "_skewX": 0,
  1151. "_skewY": 0,
  1152. "_zIndex": 0,
  1153. "_is3DNode": false,
  1154. "groupIndex": 0,
  1155. "_rotationX": 0,
  1156. "_rotationY": 0,
  1157. "_id": "8csbhghhxNg5eaKBUMNvtU"
  1158. },
  1159. {
  1160. "__type__": "cc.Node",
  1161. "_name": "bar",
  1162. "_objFlags": 0,
  1163. "_parent": {
  1164. "__id__": 28
  1165. },
  1166. "_children": [],
  1167. "_active": true,
  1168. "_level": 0,
  1169. "_components": [
  1170. {
  1171. "__id__": 30
  1172. }
  1173. ],
  1174. "_prefab": null,
  1175. "_opacity": 255,
  1176. "_color": {
  1177. "__type__": "cc.Color",
  1178. "r": 255,
  1179. "g": 255,
  1180. "b": 255,
  1181. "a": 255
  1182. },
  1183. "_contentSize": {
  1184. "__type__": "cc.Size",
  1185. "width": 100,
  1186. "height": 15
  1187. },
  1188. "_anchorPoint": {
  1189. "__type__": "cc.Vec2",
  1190. "x": 0,
  1191. "y": 0.5
  1192. },
  1193. "_position": {
  1194. "__type__": "cc.Vec3",
  1195. "x": -50,
  1196. "y": 0,
  1197. "z": 0
  1198. },
  1199. "_scale": {
  1200. "__type__": "cc.Vec3",
  1201. "x": 1,
  1202. "y": 1,
  1203. "z": 1
  1204. },
  1205. "_quat": {
  1206. "__type__": "cc.Quat",
  1207. "x": 0,
  1208. "y": 0,
  1209. "z": 0,
  1210. "w": 1
  1211. },
  1212. "_skewX": 0,
  1213. "_skewY": 0,
  1214. "_zIndex": 0,
  1215. "_is3DNode": false,
  1216. "groupIndex": 0,
  1217. "_rotationX": 0,
  1218. "_rotationY": 0,
  1219. "_id": "30KB3ck+dOw4ZNm3OY+jwZ"
  1220. },
  1221. {
  1222. "__type__": "cc.Sprite",
  1223. "_name": "",
  1224. "_objFlags": 0,
  1225. "node": {
  1226. "__id__": 29
  1227. },
  1228. "_enabled": true,
  1229. "_srcBlendFactor": 770,
  1230. "_dstBlendFactor": 771,
  1231. "_spriteFrame": {
  1232. "__uuid__": "67e68bc9-dad5-4ad9-a2d8-7e03d458e32f"
  1233. },
  1234. "_type": 1,
  1235. "_sizeMode": 0,
  1236. "_fillType": 0,
  1237. "_fillCenter": {
  1238. "__type__": "cc.Vec2",
  1239. "x": 0,
  1240. "y": 0
  1241. },
  1242. "_fillStart": 0,
  1243. "_fillRange": 0,
  1244. "_isTrimmedMode": true,
  1245. "_state": 0,
  1246. "_atlas": null,
  1247. "_id": "ccaKZ3DShMWoHAfkmgDw8w"
  1248. },
  1249. {
  1250. "__type__": "cc.Sprite",
  1251. "_name": "",
  1252. "_objFlags": 0,
  1253. "node": {
  1254. "__id__": 28
  1255. },
  1256. "_enabled": true,
  1257. "_srcBlendFactor": 770,
  1258. "_dstBlendFactor": 771,
  1259. "_spriteFrame": {
  1260. "__uuid__": "88e79fd5-96b4-4a77-a1f4-312467171014"
  1261. },
  1262. "_type": 1,
  1263. "_sizeMode": 0,
  1264. "_fillType": 0,
  1265. "_fillCenter": {
  1266. "__type__": "cc.Vec2",
  1267. "x": 0,
  1268. "y": 0
  1269. },
  1270. "_fillStart": 0,
  1271. "_fillRange": 0,
  1272. "_isTrimmedMode": true,
  1273. "_state": 0,
  1274. "_atlas": null,
  1275. "_id": "b8flm/h0tHUYqPLYbNTzYb"
  1276. },
  1277. {
  1278. "__type__": "cc.ProgressBar",
  1279. "_name": "",
  1280. "_objFlags": 0,
  1281. "node": {
  1282. "__id__": 28
  1283. },
  1284. "_enabled": true,
  1285. "_N$totalLength": 100,
  1286. "_N$barSprite": {
  1287. "__id__": 30
  1288. },
  1289. "_N$mode": 0,
  1290. "_N$progress": 1,
  1291. "_N$reverse": false,
  1292. "_id": "d3AJ+KPXBEX6IAxWc0MMf3"
  1293. },
  1294. {
  1295. "__type__": "cc.Sprite",
  1296. "_name": "",
  1297. "_objFlags": 0,
  1298. "node": {
  1299. "__id__": 25
  1300. },
  1301. "_enabled": true,
  1302. "_srcBlendFactor": 770,
  1303. "_dstBlendFactor": 771,
  1304. "_spriteFrame": {
  1305. "__uuid__": "88e79fd5-96b4-4a77-a1f4-312467171014"
  1306. },
  1307. "_type": 1,
  1308. "_sizeMode": 0,
  1309. "_fillType": 0,
  1310. "_fillCenter": {
  1311. "__type__": "cc.Vec2",
  1312. "x": 0,
  1313. "y": 0
  1314. },
  1315. "_fillStart": 0,
  1316. "_fillRange": 0,
  1317. "_isTrimmedMode": true,
  1318. "_state": 0,
  1319. "_atlas": null,
  1320. "_id": "96bTuxSbJDJ521fQlpL5/F"
  1321. },
  1322. {
  1323. "__type__": "cc.ProgressBar",
  1324. "_name": "",
  1325. "_objFlags": 0,
  1326. "node": {
  1327. "__id__": 25
  1328. },
  1329. "_enabled": true,
  1330. "_N$totalLength": 300,
  1331. "_N$barSprite": {
  1332. "__id__": 27
  1333. },
  1334. "_N$mode": 0,
  1335. "_N$progress": 1,
  1336. "_N$reverse": false,
  1337. "_id": "1eVyc6VndGApxKJyq/V0um"
  1338. },
  1339. {
  1340. "__type__": "547b0SkGABPr5dCkO+ebID2",
  1341. "_name": "",
  1342. "_objFlags": 0,
  1343. "node": {
  1344. "__id__": 25
  1345. },
  1346. "_enabled": true,
  1347. "index": 1,
  1348. "_id": "4ehCBDOwBPEpFM6ic8NJnI"
  1349. },
  1350. {
  1351. "__type__": "cc.Node",
  1352. "_name": "playerLife",
  1353. "_objFlags": 0,
  1354. "_parent": {
  1355. "__id__": 14
  1356. },
  1357. "_children": [
  1358. {
  1359. "__id__": 37
  1360. },
  1361. {
  1362. "__id__": 39
  1363. }
  1364. ],
  1365. "_active": true,
  1366. "_level": 2,
  1367. "_components": [
  1368. {
  1369. "__id__": 44
  1370. },
  1371. {
  1372. "__id__": 45
  1373. },
  1374. {
  1375. "__id__": 46
  1376. }
  1377. ],
  1378. "_prefab": null,
  1379. "_opacity": 255,
  1380. "_color": {
  1381. "__type__": "cc.Color",
  1382. "r": 255,
  1383. "g": 0,
  1384. "b": 0,
  1385. "a": 255
  1386. },
  1387. "_contentSize": {
  1388. "__type__": "cc.Size",
  1389. "width": 300,
  1390. "height": 30
  1391. },
  1392. "_anchorPoint": {
  1393. "__type__": "cc.Vec2",
  1394. "x": 0.5,
  1395. "y": 0.5
  1396. },
  1397. "_position": {
  1398. "__type__": "cc.Vec3",
  1399. "x": -169,
  1400. "y": 530,
  1401. "z": 0
  1402. },
  1403. "_scale": {
  1404. "__type__": "cc.Vec3",
  1405. "x": 1,
  1406. "y": 1,
  1407. "z": 1
  1408. },
  1409. "_quat": {
  1410. "__type__": "cc.Quat",
  1411. "x": 0,
  1412. "y": 0,
  1413. "z": 0,
  1414. "w": 1
  1415. },
  1416. "_skewX": 0,
  1417. "_skewY": 0,
  1418. "_zIndex": 0,
  1419. "_is3DNode": false,
  1420. "groupIndex": 0,
  1421. "_rotationX": 0,
  1422. "_rotationY": 0,
  1423. "_id": "8eom9NhPNFWaS4JnLHXr99"
  1424. },
  1425. {
  1426. "__type__": "cc.Node",
  1427. "_name": "bar",
  1428. "_objFlags": 0,
  1429. "_parent": {
  1430. "__id__": 36
  1431. },
  1432. "_children": [],
  1433. "_active": true,
  1434. "_level": 0,
  1435. "_components": [
  1436. {
  1437. "__id__": 38
  1438. }
  1439. ],
  1440. "_prefab": null,
  1441. "_opacity": 255,
  1442. "_color": {
  1443. "__type__": "cc.Color",
  1444. "r": 233,
  1445. "g": 255,
  1446. "b": 56,
  1447. "a": 255
  1448. },
  1449. "_contentSize": {
  1450. "__type__": "cc.Size",
  1451. "width": 300,
  1452. "height": 30
  1453. },
  1454. "_anchorPoint": {
  1455. "__type__": "cc.Vec2",
  1456. "x": 1,
  1457. "y": 0.5
  1458. },
  1459. "_position": {
  1460. "__type__": "cc.Vec3",
  1461. "x": 150,
  1462. "y": 0,
  1463. "z": 0
  1464. },
  1465. "_scale": {
  1466. "__type__": "cc.Vec3",
  1467. "x": 1,
  1468. "y": 1,
  1469. "z": 1
  1470. },
  1471. "_quat": {
  1472. "__type__": "cc.Quat",
  1473. "x": 0,
  1474. "y": 0,
  1475. "z": 0,
  1476. "w": 1
  1477. },
  1478. "_skewX": 0,
  1479. "_skewY": 0,
  1480. "_zIndex": 0,
  1481. "_is3DNode": false,
  1482. "groupIndex": 0,
  1483. "_rotationX": 0,
  1484. "_rotationY": 0,
  1485. "_id": "b0yHn7E3NA54TE0hBx9W1x"
  1486. },
  1487. {
  1488. "__type__": "cc.Sprite",
  1489. "_name": "",
  1490. "_objFlags": 0,
  1491. "node": {
  1492. "__id__": 37
  1493. },
  1494. "_enabled": true,
  1495. "_srcBlendFactor": 770,
  1496. "_dstBlendFactor": 771,
  1497. "_spriteFrame": {
  1498. "__uuid__": "67e68bc9-dad5-4ad9-a2d8-7e03d458e32f"
  1499. },
  1500. "_type": 1,
  1501. "_sizeMode": 0,
  1502. "_fillType": 0,
  1503. "_fillCenter": {
  1504. "__type__": "cc.Vec2",
  1505. "x": 0,
  1506. "y": 0
  1507. },
  1508. "_fillStart": 1,
  1509. "_fillRange": 0,
  1510. "_isTrimmedMode": true,
  1511. "_state": 0,
  1512. "_atlas": null,
  1513. "_id": "0fn9stvJhENqt/yCAgRauM"
  1514. },
  1515. {
  1516. "__type__": "cc.Node",
  1517. "_name": "Defend",
  1518. "_objFlags": 0,
  1519. "_parent": {
  1520. "__id__": 36
  1521. },
  1522. "_children": [
  1523. {
  1524. "__id__": 40
  1525. }
  1526. ],
  1527. "_active": true,
  1528. "_level": 3,
  1529. "_components": [
  1530. {
  1531. "__id__": 42
  1532. },
  1533. {
  1534. "__id__": 43
  1535. }
  1536. ],
  1537. "_prefab": null,
  1538. "_opacity": 255,
  1539. "_color": {
  1540. "__type__": "cc.Color",
  1541. "r": 255,
  1542. "g": 255,
  1543. "b": 255,
  1544. "a": 255
  1545. },
  1546. "_contentSize": {
  1547. "__type__": "cc.Size",
  1548. "width": 100,
  1549. "height": 15
  1550. },
  1551. "_anchorPoint": {
  1552. "__type__": "cc.Vec2",
  1553. "x": 0.5,
  1554. "y": 0.5
  1555. },
  1556. "_position": {
  1557. "__type__": "cc.Vec3",
  1558. "x": 102,
  1559. "y": -53,
  1560. "z": 0
  1561. },
  1562. "_scale": {
  1563. "__type__": "cc.Vec3",
  1564. "x": 1,
  1565. "y": 1,
  1566. "z": 1
  1567. },
  1568. "_quat": {
  1569. "__type__": "cc.Quat",
  1570. "x": 0,
  1571. "y": 0,
  1572. "z": 0,
  1573. "w": 1
  1574. },
  1575. "_skewX": 0,
  1576. "_skewY": 0,
  1577. "_zIndex": 0,
  1578. "_is3DNode": false,
  1579. "groupIndex": 0,
  1580. "_rotationX": 0,
  1581. "_rotationY": 0,
  1582. "_id": "8bjjndBABNnbwgflNgHsAO"
  1583. },
  1584. {
  1585. "__type__": "cc.Node",
  1586. "_name": "bar",
  1587. "_objFlags": 0,
  1588. "_parent": {
  1589. "__id__": 39
  1590. },
  1591. "_children": [],
  1592. "_active": true,
  1593. "_level": 0,
  1594. "_components": [
  1595. {
  1596. "__id__": 41
  1597. }
  1598. ],
  1599. "_prefab": null,
  1600. "_opacity": 255,
  1601. "_color": {
  1602. "__type__": "cc.Color",
  1603. "r": 255,
  1604. "g": 255,
  1605. "b": 255,
  1606. "a": 255
  1607. },
  1608. "_contentSize": {
  1609. "__type__": "cc.Size",
  1610. "width": 100,
  1611. "height": 15
  1612. },
  1613. "_anchorPoint": {
  1614. "__type__": "cc.Vec2",
  1615. "x": 1,
  1616. "y": 0.5
  1617. },
  1618. "_position": {
  1619. "__type__": "cc.Vec3",
  1620. "x": 50,
  1621. "y": 0,
  1622. "z": 0
  1623. },
  1624. "_scale": {
  1625. "__type__": "cc.Vec3",
  1626. "x": 1,
  1627. "y": 1,
  1628. "z": 1
  1629. },
  1630. "_quat": {
  1631. "__type__": "cc.Quat",
  1632. "x": 0,
  1633. "y": 0,
  1634. "z": 0,
  1635. "w": 1
  1636. },
  1637. "_skewX": 0,
  1638. "_skewY": 0,
  1639. "_zIndex": 0,
  1640. "_is3DNode": false,
  1641. "groupIndex": 0,
  1642. "_rotationX": 0,
  1643. "_rotationY": 0,
  1644. "_id": "5fjLlSXeZK7ZSI2LhFxggO"
  1645. },
  1646. {
  1647. "__type__": "cc.Sprite",
  1648. "_name": "",
  1649. "_objFlags": 0,
  1650. "node": {
  1651. "__id__": 40
  1652. },
  1653. "_enabled": true,
  1654. "_srcBlendFactor": 770,
  1655. "_dstBlendFactor": 771,
  1656. "_spriteFrame": {
  1657. "__uuid__": "67e68bc9-dad5-4ad9-a2d8-7e03d458e32f"
  1658. },
  1659. "_type": 1,
  1660. "_sizeMode": 0,
  1661. "_fillType": 0,
  1662. "_fillCenter": {
  1663. "__type__": "cc.Vec2",
  1664. "x": 0,
  1665. "y": 0
  1666. },
  1667. "_fillStart": 1,
  1668. "_fillRange": 0,
  1669. "_isTrimmedMode": true,
  1670. "_state": 0,
  1671. "_atlas": null,
  1672. "_id": "baU/vo88lKZ7bFbqShENid"
  1673. },
  1674. {
  1675. "__type__": "cc.Sprite",
  1676. "_name": "",
  1677. "_objFlags": 0,
  1678. "node": {
  1679. "__id__": 39
  1680. },
  1681. "_enabled": true,
  1682. "_srcBlendFactor": 770,
  1683. "_dstBlendFactor": 771,
  1684. "_spriteFrame": {
  1685. "__uuid__": "88e79fd5-96b4-4a77-a1f4-312467171014"
  1686. },
  1687. "_type": 1,
  1688. "_sizeMode": 0,
  1689. "_fillType": 0,
  1690. "_fillCenter": {
  1691. "__type__": "cc.Vec2",
  1692. "x": 0,
  1693. "y": 0
  1694. },
  1695. "_fillStart": 0,
  1696. "_fillRange": 0,
  1697. "_isTrimmedMode": true,
  1698. "_state": 0,
  1699. "_atlas": null,
  1700. "_id": "0cMIJLFlFHBIJoMw/6TM1e"
  1701. },
  1702. {
  1703. "__type__": "cc.ProgressBar",
  1704. "_name": "",
  1705. "_objFlags": 0,
  1706. "node": {
  1707. "__id__": 39
  1708. },
  1709. "_enabled": true,
  1710. "_N$totalLength": 100,
  1711. "_N$barSprite": {
  1712. "__id__": 41
  1713. },
  1714. "_N$mode": 0,
  1715. "_N$progress": 1,
  1716. "_N$reverse": true,
  1717. "_id": "aaYIqKwzFCU7Ii5tJ96HU9"
  1718. },
  1719. {
  1720. "__type__": "cc.Sprite",
  1721. "_name": "",
  1722. "_objFlags": 0,
  1723. "node": {
  1724. "__id__": 36
  1725. },
  1726. "_enabled": true,
  1727. "_srcBlendFactor": 770,
  1728. "_dstBlendFactor": 771,
  1729. "_spriteFrame": {
  1730. "__uuid__": "88e79fd5-96b4-4a77-a1f4-312467171014"
  1731. },
  1732. "_type": 1,
  1733. "_sizeMode": 0,
  1734. "_fillType": 0,
  1735. "_fillCenter": {
  1736. "__type__": "cc.Vec2",
  1737. "x": 0,
  1738. "y": 0
  1739. },
  1740. "_fillStart": 0,
  1741. "_fillRange": 0,
  1742. "_isTrimmedMode": true,
  1743. "_state": 0,
  1744. "_atlas": null,
  1745. "_id": "086hqTxLhCrbU8TjrUke0/"
  1746. },
  1747. {
  1748. "__type__": "cc.ProgressBar",
  1749. "_name": "",
  1750. "_objFlags": 0,
  1751. "node": {
  1752. "__id__": 36
  1753. },
  1754. "_enabled": true,
  1755. "_N$totalLength": 300,
  1756. "_N$barSprite": {
  1757. "__id__": 38
  1758. },
  1759. "_N$mode": 0,
  1760. "_N$progress": 1,
  1761. "_N$reverse": true,
  1762. "_id": "80TTI0Zo5P6oO7VjbqmkBt"
  1763. },
  1764. {
  1765. "__type__": "547b0SkGABPr5dCkO+ebID2",
  1766. "_name": "",
  1767. "_objFlags": 0,
  1768. "node": {
  1769. "__id__": 36
  1770. },
  1771. "_enabled": true,
  1772. "index": 0,
  1773. "_id": "97WtAkjNpOBpRU8owLwVkB"
  1774. },
  1775. {
  1776. "__type__": "cc.Animation",
  1777. "_name": "",
  1778. "_objFlags": 0,
  1779. "node": {
  1780. "__id__": 14
  1781. },
  1782. "_enabled": true,
  1783. "_defaultClip": {
  1784. "__uuid__": "7859db4c-a3fb-4817-9cfd-07b0fd0fb705"
  1785. },
  1786. "_clips": [
  1787. {
  1788. "__uuid__": "7859db4c-a3fb-4817-9cfd-07b0fd0fb705"
  1789. }
  1790. ],
  1791. "playOnLoad": false,
  1792. "_id": "4ejhTDjHxJW5j6VKXQTc7K"
  1793. },
  1794. {
  1795. "__type__": "2e21bhNBLRHsJknju/xpW6g",
  1796. "_name": "",
  1797. "_objFlags": 0,
  1798. "node": {
  1799. "__id__": 14
  1800. },
  1801. "_enabled": true,
  1802. "_id": "e5d7d4gGFHNK5buOUUluz7"
  1803. },
  1804. {
  1805. "__type__": "cc.Node",
  1806. "_name": "click",
  1807. "_objFlags": 0,
  1808. "_parent": {
  1809. "__id__": 2
  1810. },
  1811. "_children": [
  1812. {
  1813. "__id__": 50
  1814. },
  1815. {
  1816. "__id__": 55
  1817. },
  1818. {
  1819. "__id__": 60
  1820. },
  1821. {
  1822. "__id__": 65
  1823. },
  1824. {
  1825. "__id__": 70
  1826. }
  1827. ],
  1828. "_active": true,
  1829. "_level": 1,
  1830. "_components": [
  1831. {
  1832. "__id__": 75
  1833. }
  1834. ],
  1835. "_prefab": null,
  1836. "_opacity": 255,
  1837. "_color": {
  1838. "__type__": "cc.Color",
  1839. "r": 255,
  1840. "g": 255,
  1841. "b": 255,
  1842. "a": 255
  1843. },
  1844. "_contentSize": {
  1845. "__type__": "cc.Size",
  1846. "width": 0,
  1847. "height": 0
  1848. },
  1849. "_anchorPoint": {
  1850. "__type__": "cc.Vec2",
  1851. "x": 0.5,
  1852. "y": 0.5
  1853. },
  1854. "_position": {
  1855. "__type__": "cc.Vec3",
  1856. "x": 0,
  1857. "y": 0,
  1858. "z": 0
  1859. },
  1860. "_scale": {
  1861. "__type__": "cc.Vec3",
  1862. "x": 1,
  1863. "y": 1,
  1864. "z": 1
  1865. },
  1866. "_quat": {
  1867. "__type__": "cc.Quat",
  1868. "x": 0,
  1869. "y": 0,
  1870. "z": 0,
  1871. "w": 1
  1872. },
  1873. "_skewX": 0,
  1874. "_skewY": 0,
  1875. "_zIndex": 0,
  1876. "_is3DNode": false,
  1877. "groupIndex": 0,
  1878. "_id": "37UrOuZNtJwIQH78QXbFki"
  1879. },
  1880. {
  1881. "__type__": "cc.Node",
  1882. "_name": "left",
  1883. "_objFlags": 0,
  1884. "_parent": {
  1885. "__id__": 49
  1886. },
  1887. "_children": [
  1888. {
  1889. "__id__": 51
  1890. }
  1891. ],
  1892. "_active": true,
  1893. "_level": 2,
  1894. "_components": [
  1895. {
  1896. "__id__": 53
  1897. },
  1898. {
  1899. "__id__": 54
  1900. }
  1901. ],
  1902. "_prefab": null,
  1903. "_opacity": 255,
  1904. "_color": {
  1905. "__type__": "cc.Color",
  1906. "r": 255,
  1907. "g": 255,
  1908. "b": 255,
  1909. "a": 255
  1910. },
  1911. "_contentSize": {
  1912. "__type__": "cc.Size",
  1913. "width": 100,
  1914. "height": 40
  1915. },
  1916. "_anchorPoint": {
  1917. "__type__": "cc.Vec2",
  1918. "x": 0.5,
  1919. "y": 0.5
  1920. },
  1921. "_position": {
  1922. "__type__": "cc.Vec3",
  1923. "x": -202,
  1924. "y": -566,
  1925. "z": 0
  1926. },
  1927. "_scale": {
  1928. "__type__": "cc.Vec3",
  1929. "x": 1,
  1930. "y": 1,
  1931. "z": 1
  1932. },
  1933. "_quat": {
  1934. "__type__": "cc.Quat",
  1935. "x": 0,
  1936. "y": 0,
  1937. "z": 0,
  1938. "w": 1
  1939. },
  1940. "_skewX": 0,
  1941. "_skewY": 0,
  1942. "_zIndex": 0,
  1943. "_is3DNode": false,
  1944. "groupIndex": 0,
  1945. "_rotationX": 0,
  1946. "_rotationY": 0,
  1947. "_id": "21thiFWX5BkIRV3Gvp7ZXf"
  1948. },
  1949. {
  1950. "__type__": "cc.Node",
  1951. "_name": "Label",
  1952. "_objFlags": 0,
  1953. "_parent": {
  1954. "__id__": 50
  1955. },
  1956. "_children": [],
  1957. "_active": true,
  1958. "_level": 0,
  1959. "_components": [
  1960. {
  1961. "__id__": 52
  1962. }
  1963. ],
  1964. "_prefab": null,
  1965. "_opacity": 255,
  1966. "_color": {
  1967. "__type__": "cc.Color",
  1968. "r": 0,
  1969. "g": 0,
  1970. "b": 0,
  1971. "a": 255
  1972. },
  1973. "_contentSize": {
  1974. "__type__": "cc.Size",
  1975. "width": 100,
  1976. "height": 40
  1977. },
  1978. "_anchorPoint": {
  1979. "__type__": "cc.Vec2",
  1980. "x": 0.5,
  1981. "y": 0.5
  1982. },
  1983. "_position": {
  1984. "__type__": "cc.Vec3",
  1985. "x": 0,
  1986. "y": 0,
  1987. "z": 0
  1988. },
  1989. "_scale": {
  1990. "__type__": "cc.Vec3",
  1991. "x": 1,
  1992. "y": 1,
  1993. "z": 1
  1994. },
  1995. "_quat": {
  1996. "__type__": "cc.Quat",
  1997. "x": 0,
  1998. "y": 0,
  1999. "z": 0,
  2000. "w": 1
  2001. },
  2002. "_skewX": 0,
  2003. "_skewY": 0,
  2004. "_zIndex": 0,
  2005. "_is3DNode": false,
  2006. "groupIndex": 0,
  2007. "_rotationX": 0,
  2008. "_rotationY": 0,
  2009. "_id": "33pHmBWadBD7WskMq9EL4p"
  2010. },
  2011. {
  2012. "__type__": "cc.Label",
  2013. "_name": "",
  2014. "_objFlags": 0,
  2015. "node": {
  2016. "__id__": 51
  2017. },
  2018. "_enabled": true,
  2019. "_srcBlendFactor": 1,
  2020. "_dstBlendFactor": 771,
  2021. "_useOriginalSize": false,
  2022. "_string": "左(20-30)",
  2023. "_N$string": "左(20-30)",
  2024. "_fontSize": 20,
  2025. "_lineHeight": 40,
  2026. "_enableWrapText": false,
  2027. "_N$file": null,
  2028. "_isSystemFontUsed": true,
  2029. "_spacingX": 0,
  2030. "_N$horizontalAlign": 1,
  2031. "_N$verticalAlign": 1,
  2032. "_N$fontFamily": "Arial",
  2033. "_N$overflow": 1,
  2034. "_id": "8e/UKNgeNAorQB4kNThi2q"
  2035. },
  2036. {
  2037. "__type__": "cc.Sprite",
  2038. "_name": "",
  2039. "_objFlags": 0,
  2040. "node": {
  2041. "__id__": 50
  2042. },
  2043. "_enabled": true,
  2044. "_srcBlendFactor": 770,
  2045. "_dstBlendFactor": 771,
  2046. "_spriteFrame": {
  2047. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  2048. },
  2049. "_type": 1,
  2050. "_sizeMode": 0,
  2051. "_fillType": 0,
  2052. "_fillCenter": {
  2053. "__type__": "cc.Vec2",
  2054. "x": 0,
  2055. "y": 0
  2056. },
  2057. "_fillStart": 0,
  2058. "_fillRange": 0,
  2059. "_isTrimmedMode": true,
  2060. "_state": 0,
  2061. "_atlas": null,
  2062. "_id": "3cG38JpnJFUpUrgtL1MgJN"
  2063. },
  2064. {
  2065. "__type__": "cc.Button",
  2066. "_name": "",
  2067. "_objFlags": 0,
  2068. "node": {
  2069. "__id__": 50
  2070. },
  2071. "_enabled": true,
  2072. "duration": 0.1,
  2073. "zoomScale": 1.2,
  2074. "clickEvents": [],
  2075. "_N$interactable": true,
  2076. "_N$enableAutoGrayEffect": false,
  2077. "_N$transition": 2,
  2078. "transition": 2,
  2079. "_N$normalColor": {
  2080. "__type__": "cc.Color",
  2081. "r": 255,
  2082. "g": 255,
  2083. "b": 255,
  2084. "a": 255
  2085. },
  2086. "_N$pressedColor": {
  2087. "__type__": "cc.Color",
  2088. "r": 255,
  2089. "g": 255,
  2090. "b": 255,
  2091. "a": 255
  2092. },
  2093. "pressedColor": {
  2094. "__type__": "cc.Color",
  2095. "r": 255,
  2096. "g": 255,
  2097. "b": 255,
  2098. "a": 255
  2099. },
  2100. "_N$hoverColor": {
  2101. "__type__": "cc.Color",
  2102. "r": 255,
  2103. "g": 255,
  2104. "b": 255,
  2105. "a": 255
  2106. },
  2107. "hoverColor": {
  2108. "__type__": "cc.Color",
  2109. "r": 255,
  2110. "g": 255,
  2111. "b": 255,
  2112. "a": 255
  2113. },
  2114. "_N$disabledColor": {
  2115. "__type__": "cc.Color",
  2116. "r": 255,
  2117. "g": 255,
  2118. "b": 255,
  2119. "a": 255
  2120. },
  2121. "_N$normalSprite": {
  2122. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  2123. },
  2124. "_N$pressedSprite": {
  2125. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  2126. },
  2127. "pressedSprite": {
  2128. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  2129. },
  2130. "_N$hoverSprite": {
  2131. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  2132. },
  2133. "hoverSprite": {
  2134. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  2135. },
  2136. "_N$disabledSprite": {
  2137. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  2138. },
  2139. "_N$target": {
  2140. "__id__": 50
  2141. },
  2142. "_id": "cbECGnE9FL3YsMA69HoIjv"
  2143. },
  2144. {
  2145. "__type__": "cc.Node",
  2146. "_name": "mid",
  2147. "_objFlags": 0,
  2148. "_parent": {
  2149. "__id__": 49
  2150. },
  2151. "_children": [
  2152. {
  2153. "__id__": 56
  2154. }
  2155. ],
  2156. "_active": true,
  2157. "_level": 2,
  2158. "_components": [
  2159. {
  2160. "__id__": 58
  2161. },
  2162. {
  2163. "__id__": 59
  2164. }
  2165. ],
  2166. "_prefab": null,
  2167. "_opacity": 255,
  2168. "_color": {
  2169. "__type__": "cc.Color",
  2170. "r": 255,
  2171. "g": 255,
  2172. "b": 255,
  2173. "a": 255
  2174. },
  2175. "_contentSize": {
  2176. "__type__": "cc.Size",
  2177. "width": 100,
  2178. "height": 40
  2179. },
  2180. "_anchorPoint": {
  2181. "__type__": "cc.Vec2",
  2182. "x": 0.5,
  2183. "y": 0.5
  2184. },
  2185. "_position": {
  2186. "__type__": "cc.Vec3",
  2187. "x": -16,
  2188. "y": -569,
  2189. "z": 0
  2190. },
  2191. "_scale": {
  2192. "__type__": "cc.Vec3",
  2193. "x": 1,
  2194. "y": 1,
  2195. "z": 1
  2196. },
  2197. "_quat": {
  2198. "__type__": "cc.Quat",
  2199. "x": 0,
  2200. "y": 0,
  2201. "z": 0,
  2202. "w": 1
  2203. },
  2204. "_skewX": 0,
  2205. "_skewY": 0,
  2206. "_zIndex": 0,
  2207. "_is3DNode": false,
  2208. "groupIndex": 0,
  2209. "_rotationX": 0,
  2210. "_rotationY": 0,
  2211. "_id": "bdqi6ro6ZDBpYvKwk3jjbi"
  2212. },
  2213. {
  2214. "__type__": "cc.Node",
  2215. "_name": "Label",
  2216. "_objFlags": 0,
  2217. "_parent": {
  2218. "__id__": 55
  2219. },
  2220. "_children": [],
  2221. "_active": true,
  2222. "_level": 0,
  2223. "_components": [
  2224. {
  2225. "__id__": 57
  2226. }
  2227. ],
  2228. "_prefab": null,
  2229. "_opacity": 255,
  2230. "_color": {
  2231. "__type__": "cc.Color",
  2232. "r": 0,
  2233. "g": 0,
  2234. "b": 0,
  2235. "a": 255
  2236. },
  2237. "_contentSize": {
  2238. "__type__": "cc.Size",
  2239. "width": 100,
  2240. "height": 40
  2241. },
  2242. "_anchorPoint": {
  2243. "__type__": "cc.Vec2",
  2244. "x": 0.5,
  2245. "y": 0.5
  2246. },
  2247. "_position": {
  2248. "__type__": "cc.Vec3",
  2249. "x": 0,
  2250. "y": 0,
  2251. "z": 0
  2252. },
  2253. "_scale": {
  2254. "__type__": "cc.Vec3",
  2255. "x": 1,
  2256. "y": 1,
  2257. "z": 1
  2258. },
  2259. "_quat": {
  2260. "__type__": "cc.Quat",
  2261. "x": 0,
  2262. "y": 0,
  2263. "z": 0,
  2264. "w": 1
  2265. },
  2266. "_skewX": 0,
  2267. "_skewY": 0,
  2268. "_zIndex": 0,
  2269. "_is3DNode": false,
  2270. "groupIndex": 0,
  2271. "_rotationX": 0,
  2272. "_rotationY": 0,
  2273. "_id": "c06GHkGY1ICZjbJlXQWvNl"
  2274. },
  2275. {
  2276. "__type__": "cc.Label",
  2277. "_name": "",
  2278. "_objFlags": 0,
  2279. "node": {
  2280. "__id__": 56
  2281. },
  2282. "_enabled": true,
  2283. "_srcBlendFactor": 1,
  2284. "_dstBlendFactor": 771,
  2285. "_useOriginalSize": false,
  2286. "_string": "中",
  2287. "_N$string": "中",
  2288. "_fontSize": 20,
  2289. "_lineHeight": 40,
  2290. "_enableWrapText": false,
  2291. "_N$file": null,
  2292. "_isSystemFontUsed": true,
  2293. "_spacingX": 0,
  2294. "_N$horizontalAlign": 1,
  2295. "_N$verticalAlign": 1,
  2296. "_N$fontFamily": "Arial",
  2297. "_N$overflow": 1,
  2298. "_id": "71a2v9hBFFAZSzuw0RfcOF"
  2299. },
  2300. {
  2301. "__type__": "cc.Sprite",
  2302. "_name": "",
  2303. "_objFlags": 0,
  2304. "node": {
  2305. "__id__": 55
  2306. },
  2307. "_enabled": true,
  2308. "_srcBlendFactor": 770,
  2309. "_dstBlendFactor": 771,
  2310. "_spriteFrame": {
  2311. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  2312. },
  2313. "_type": 1,
  2314. "_sizeMode": 0,
  2315. "_fillType": 0,
  2316. "_fillCenter": {
  2317. "__type__": "cc.Vec2",
  2318. "x": 0,
  2319. "y": 0
  2320. },
  2321. "_fillStart": 0,
  2322. "_fillRange": 0,
  2323. "_isTrimmedMode": true,
  2324. "_state": 0,
  2325. "_atlas": null,
  2326. "_id": "d6dX0QFhVAlZQseG4Hr78+"
  2327. },
  2328. {
  2329. "__type__": "cc.Button",
  2330. "_name": "",
  2331. "_objFlags": 0,
  2332. "node": {
  2333. "__id__": 55
  2334. },
  2335. "_enabled": true,
  2336. "duration": 0.1,
  2337. "zoomScale": 1.2,
  2338. "clickEvents": [],
  2339. "_N$interactable": true,
  2340. "_N$enableAutoGrayEffect": false,
  2341. "_N$transition": 2,
  2342. "transition": 2,
  2343. "_N$normalColor": {
  2344. "__type__": "cc.Color",
  2345. "r": 255,
  2346. "g": 255,
  2347. "b": 255,
  2348. "a": 255
  2349. },
  2350. "_N$pressedColor": {
  2351. "__type__": "cc.Color",
  2352. "r": 255,
  2353. "g": 255,
  2354. "b": 255,
  2355. "a": 255
  2356. },
  2357. "pressedColor": {
  2358. "__type__": "cc.Color",
  2359. "r": 255,
  2360. "g": 255,
  2361. "b": 255,
  2362. "a": 255
  2363. },
  2364. "_N$hoverColor": {
  2365. "__type__": "cc.Color",
  2366. "r": 255,
  2367. "g": 255,
  2368. "b": 255,
  2369. "a": 255
  2370. },
  2371. "hoverColor": {
  2372. "__type__": "cc.Color",
  2373. "r": 255,
  2374. "g": 255,
  2375. "b": 255,
  2376. "a": 255
  2377. },
  2378. "_N$disabledColor": {
  2379. "__type__": "cc.Color",
  2380. "r": 255,
  2381. "g": 255,
  2382. "b": 255,
  2383. "a": 255
  2384. },
  2385. "_N$normalSprite": {
  2386. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  2387. },
  2388. "_N$pressedSprite": {
  2389. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  2390. },
  2391. "pressedSprite": {
  2392. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  2393. },
  2394. "_N$hoverSprite": {
  2395. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  2396. },
  2397. "hoverSprite": {
  2398. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  2399. },
  2400. "_N$disabledSprite": {
  2401. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  2402. },
  2403. "_N$target": {
  2404. "__id__": 55
  2405. },
  2406. "_id": "e6lT1IhKZDl7hlHIBOLu9m"
  2407. },
  2408. {
  2409. "__type__": "cc.Node",
  2410. "_name": "right",
  2411. "_objFlags": 0,
  2412. "_parent": {
  2413. "__id__": 49
  2414. },
  2415. "_children": [
  2416. {
  2417. "__id__": 61
  2418. }
  2419. ],
  2420. "_active": true,
  2421. "_level": 2,
  2422. "_components": [
  2423. {
  2424. "__id__": 63
  2425. },
  2426. {
  2427. "__id__": 64
  2428. }
  2429. ],
  2430. "_prefab": null,
  2431. "_opacity": 255,
  2432. "_color": {
  2433. "__type__": "cc.Color",
  2434. "r": 255,
  2435. "g": 255,
  2436. "b": 255,
  2437. "a": 255
  2438. },
  2439. "_contentSize": {
  2440. "__type__": "cc.Size",
  2441. "width": 100,
  2442. "height": 40
  2443. },
  2444. "_anchorPoint": {
  2445. "__type__": "cc.Vec2",
  2446. "x": 0.5,
  2447. "y": 0.5
  2448. },
  2449. "_position": {
  2450. "__type__": "cc.Vec3",
  2451. "x": 166,
  2452. "y": -573,
  2453. "z": 0
  2454. },
  2455. "_scale": {
  2456. "__type__": "cc.Vec3",
  2457. "x": 1,
  2458. "y": 1,
  2459. "z": 1
  2460. },
  2461. "_quat": {
  2462. "__type__": "cc.Quat",
  2463. "x": 0,
  2464. "y": 0,
  2465. "z": 0,
  2466. "w": 1
  2467. },
  2468. "_skewX": 0,
  2469. "_skewY": 0,
  2470. "_zIndex": 0,
  2471. "_is3DNode": false,
  2472. "groupIndex": 0,
  2473. "_rotationX": 0,
  2474. "_rotationY": 0,
  2475. "_id": "b5QwAmlyRPcK6HsIneLFmb"
  2476. },
  2477. {
  2478. "__type__": "cc.Node",
  2479. "_name": "Label",
  2480. "_objFlags": 0,
  2481. "_parent": {
  2482. "__id__": 60
  2483. },
  2484. "_children": [],
  2485. "_active": true,
  2486. "_level": 0,
  2487. "_components": [
  2488. {
  2489. "__id__": 62
  2490. }
  2491. ],
  2492. "_prefab": null,
  2493. "_opacity": 255,
  2494. "_color": {
  2495. "__type__": "cc.Color",
  2496. "r": 0,
  2497. "g": 0,
  2498. "b": 0,
  2499. "a": 255
  2500. },
  2501. "_contentSize": {
  2502. "__type__": "cc.Size",
  2503. "width": 100,
  2504. "height": 40
  2505. },
  2506. "_anchorPoint": {
  2507. "__type__": "cc.Vec2",
  2508. "x": 0.5,
  2509. "y": 0.5
  2510. },
  2511. "_position": {
  2512. "__type__": "cc.Vec3",
  2513. "x": 0,
  2514. "y": 0,
  2515. "z": 0
  2516. },
  2517. "_scale": {
  2518. "__type__": "cc.Vec3",
  2519. "x": 1,
  2520. "y": 1,
  2521. "z": 1
  2522. },
  2523. "_quat": {
  2524. "__type__": "cc.Quat",
  2525. "x": 0,
  2526. "y": 0,
  2527. "z": 0,
  2528. "w": 1
  2529. },
  2530. "_skewX": 0,
  2531. "_skewY": 0,
  2532. "_zIndex": 0,
  2533. "_is3DNode": false,
  2534. "groupIndex": 0,
  2535. "_rotationX": 0,
  2536. "_rotationY": 0,
  2537. "_id": "bdP8vIHLdDDJyHJzJzYTBM"
  2538. },
  2539. {
  2540. "__type__": "cc.Label",
  2541. "_name": "",
  2542. "_objFlags": 0,
  2543. "node": {
  2544. "__id__": 61
  2545. },
  2546. "_enabled": true,
  2547. "_srcBlendFactor": 1,
  2548. "_dstBlendFactor": 771,
  2549. "_useOriginalSize": false,
  2550. "_string": "右(20-30)",
  2551. "_N$string": "右(20-30)",
  2552. "_fontSize": 20,
  2553. "_lineHeight": 40,
  2554. "_enableWrapText": false,
  2555. "_N$file": null,
  2556. "_isSystemFontUsed": true,
  2557. "_spacingX": 0,
  2558. "_N$horizontalAlign": 1,
  2559. "_N$verticalAlign": 1,
  2560. "_N$fontFamily": "Arial",
  2561. "_N$overflow": 1,
  2562. "_id": "cb9nrH6GZBQ7Rp4KwuFwDm"
  2563. },
  2564. {
  2565. "__type__": "cc.Sprite",
  2566. "_name": "",
  2567. "_objFlags": 0,
  2568. "node": {
  2569. "__id__": 60
  2570. },
  2571. "_enabled": true,
  2572. "_srcBlendFactor": 770,
  2573. "_dstBlendFactor": 771,
  2574. "_spriteFrame": {
  2575. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  2576. },
  2577. "_type": 1,
  2578. "_sizeMode": 0,
  2579. "_fillType": 0,
  2580. "_fillCenter": {
  2581. "__type__": "cc.Vec2",
  2582. "x": 0,
  2583. "y": 0
  2584. },
  2585. "_fillStart": 0,
  2586. "_fillRange": 0,
  2587. "_isTrimmedMode": true,
  2588. "_state": 0,
  2589. "_atlas": null,
  2590. "_id": "618ohU4CRCOpyco3yv5GO0"
  2591. },
  2592. {
  2593. "__type__": "cc.Button",
  2594. "_name": "",
  2595. "_objFlags": 0,
  2596. "node": {
  2597. "__id__": 60
  2598. },
  2599. "_enabled": true,
  2600. "duration": 0.1,
  2601. "zoomScale": 1.2,
  2602. "clickEvents": [],
  2603. "_N$interactable": true,
  2604. "_N$enableAutoGrayEffect": false,
  2605. "_N$transition": 2,
  2606. "transition": 2,
  2607. "_N$normalColor": {
  2608. "__type__": "cc.Color",
  2609. "r": 255,
  2610. "g": 255,
  2611. "b": 255,
  2612. "a": 255
  2613. },
  2614. "_N$pressedColor": {
  2615. "__type__": "cc.Color",
  2616. "r": 255,
  2617. "g": 255,
  2618. "b": 255,
  2619. "a": 255
  2620. },
  2621. "pressedColor": {
  2622. "__type__": "cc.Color",
  2623. "r": 255,
  2624. "g": 255,
  2625. "b": 255,
  2626. "a": 255
  2627. },
  2628. "_N$hoverColor": {
  2629. "__type__": "cc.Color",
  2630. "r": 255,
  2631. "g": 255,
  2632. "b": 255,
  2633. "a": 255
  2634. },
  2635. "hoverColor": {
  2636. "__type__": "cc.Color",
  2637. "r": 255,
  2638. "g": 255,
  2639. "b": 255,
  2640. "a": 255
  2641. },
  2642. "_N$disabledColor": {
  2643. "__type__": "cc.Color",
  2644. "r": 255,
  2645. "g": 255,
  2646. "b": 255,
  2647. "a": 255
  2648. },
  2649. "_N$normalSprite": {
  2650. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  2651. },
  2652. "_N$pressedSprite": {
  2653. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  2654. },
  2655. "pressedSprite": {
  2656. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  2657. },
  2658. "_N$hoverSprite": {
  2659. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  2660. },
  2661. "hoverSprite": {
  2662. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  2663. },
  2664. "_N$disabledSprite": {
  2665. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  2666. },
  2667. "_N$target": {
  2668. "__id__": 60
  2669. },
  2670. "_id": "87bktezxBD56WervOdbFAS"
  2671. },
  2672. {
  2673. "__type__": "cc.Node",
  2674. "_name": "left_miss",
  2675. "_objFlags": 0,
  2676. "_parent": {
  2677. "__id__": 49
  2678. },
  2679. "_children": [
  2680. {
  2681. "__id__": 66
  2682. }
  2683. ],
  2684. "_active": true,
  2685. "_level": 2,
  2686. "_components": [
  2687. {
  2688. "__id__": 68
  2689. },
  2690. {
  2691. "__id__": 69
  2692. }
  2693. ],
  2694. "_prefab": null,
  2695. "_opacity": 255,
  2696. "_color": {
  2697. "__type__": "cc.Color",
  2698. "r": 255,
  2699. "g": 255,
  2700. "b": 255,
  2701. "a": 255
  2702. },
  2703. "_contentSize": {
  2704. "__type__": "cc.Size",
  2705. "width": 200,
  2706. "height": 40
  2707. },
  2708. "_anchorPoint": {
  2709. "__type__": "cc.Vec2",
  2710. "x": 0.5,
  2711. "y": 0.5
  2712. },
  2713. "_position": {
  2714. "__type__": "cc.Vec3",
  2715. "x": -128,
  2716. "y": -467,
  2717. "z": 0
  2718. },
  2719. "_scale": {
  2720. "__type__": "cc.Vec3",
  2721. "x": 1,
  2722. "y": 1,
  2723. "z": 1
  2724. },
  2725. "_quat": {
  2726. "__type__": "cc.Quat",
  2727. "x": 0,
  2728. "y": 0,
  2729. "z": 0,
  2730. "w": 1
  2731. },
  2732. "_skewX": 0,
  2733. "_skewY": 0,
  2734. "_zIndex": 0,
  2735. "_is3DNode": false,
  2736. "groupIndex": 0,
  2737. "_rotationX": 0,
  2738. "_rotationY": 0,
  2739. "_id": "3dRS2FxndC8Jy/KgVY8hNh"
  2740. },
  2741. {
  2742. "__type__": "cc.Node",
  2743. "_name": "Label",
  2744. "_objFlags": 0,
  2745. "_parent": {
  2746. "__id__": 65
  2747. },
  2748. "_children": [],
  2749. "_active": true,
  2750. "_level": 0,
  2751. "_components": [
  2752. {
  2753. "__id__": 67
  2754. }
  2755. ],
  2756. "_prefab": null,
  2757. "_opacity": 255,
  2758. "_color": {
  2759. "__type__": "cc.Color",
  2760. "r": 0,
  2761. "g": 0,
  2762. "b": 0,
  2763. "a": 255
  2764. },
  2765. "_contentSize": {
  2766. "__type__": "cc.Size",
  2767. "width": 200,
  2768. "height": 40
  2769. },
  2770. "_anchorPoint": {
  2771. "__type__": "cc.Vec2",
  2772. "x": 0.5,
  2773. "y": 0.5
  2774. },
  2775. "_position": {
  2776. "__type__": "cc.Vec3",
  2777. "x": 0,
  2778. "y": 0,
  2779. "z": 0
  2780. },
  2781. "_scale": {
  2782. "__type__": "cc.Vec3",
  2783. "x": 1,
  2784. "y": 1,
  2785. "z": 1
  2786. },
  2787. "_quat": {
  2788. "__type__": "cc.Quat",
  2789. "x": 0,
  2790. "y": 0,
  2791. "z": 0,
  2792. "w": 1
  2793. },
  2794. "_skewX": 0,
  2795. "_skewY": 0,
  2796. "_zIndex": 0,
  2797. "_is3DNode": false,
  2798. "groupIndex": 0,
  2799. "_rotationX": 0,
  2800. "_rotationY": 0,
  2801. "_id": "93wi3PkdFP66SSApNUW6g/"
  2802. },
  2803. {
  2804. "__type__": "cc.Label",
  2805. "_name": "",
  2806. "_objFlags": 0,
  2807. "node": {
  2808. "__id__": 66
  2809. },
  2810. "_enabled": true,
  2811. "_srcBlendFactor": 1,
  2812. "_dstBlendFactor": 771,
  2813. "_useOriginalSize": false,
  2814. "_string": "左重拳(31-50)",
  2815. "_N$string": "左重拳(31-50)",
  2816. "_fontSize": 20,
  2817. "_lineHeight": 40,
  2818. "_enableWrapText": false,
  2819. "_N$file": null,
  2820. "_isSystemFontUsed": true,
  2821. "_spacingX": 0,
  2822. "_N$horizontalAlign": 1,
  2823. "_N$verticalAlign": 1,
  2824. "_N$fontFamily": "Arial",
  2825. "_N$overflow": 1,
  2826. "_id": "b49Hw3yQJAQIZ3eiXv1tPX"
  2827. },
  2828. {
  2829. "__type__": "cc.Sprite",
  2830. "_name": "",
  2831. "_objFlags": 0,
  2832. "node": {
  2833. "__id__": 65
  2834. },
  2835. "_enabled": true,
  2836. "_srcBlendFactor": 770,
  2837. "_dstBlendFactor": 771,
  2838. "_spriteFrame": {
  2839. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  2840. },
  2841. "_type": 1,
  2842. "_sizeMode": 0,
  2843. "_fillType": 0,
  2844. "_fillCenter": {
  2845. "__type__": "cc.Vec2",
  2846. "x": 0,
  2847. "y": 0
  2848. },
  2849. "_fillStart": 0,
  2850. "_fillRange": 0,
  2851. "_isTrimmedMode": true,
  2852. "_state": 0,
  2853. "_atlas": null,
  2854. "_id": "7cXcPC4tBPYY1Gt9ztnqil"
  2855. },
  2856. {
  2857. "__type__": "cc.Button",
  2858. "_name": "",
  2859. "_objFlags": 0,
  2860. "node": {
  2861. "__id__": 65
  2862. },
  2863. "_enabled": true,
  2864. "duration": 0.1,
  2865. "zoomScale": 1.2,
  2866. "clickEvents": [],
  2867. "_N$interactable": true,
  2868. "_N$enableAutoGrayEffect": false,
  2869. "_N$transition": 2,
  2870. "transition": 2,
  2871. "_N$normalColor": {
  2872. "__type__": "cc.Color",
  2873. "r": 255,
  2874. "g": 255,
  2875. "b": 255,
  2876. "a": 255
  2877. },
  2878. "_N$pressedColor": {
  2879. "__type__": "cc.Color",
  2880. "r": 255,
  2881. "g": 255,
  2882. "b": 255,
  2883. "a": 255
  2884. },
  2885. "pressedColor": {
  2886. "__type__": "cc.Color",
  2887. "r": 255,
  2888. "g": 255,
  2889. "b": 255,
  2890. "a": 255
  2891. },
  2892. "_N$hoverColor": {
  2893. "__type__": "cc.Color",
  2894. "r": 255,
  2895. "g": 255,
  2896. "b": 255,
  2897. "a": 255
  2898. },
  2899. "hoverColor": {
  2900. "__type__": "cc.Color",
  2901. "r": 255,
  2902. "g": 255,
  2903. "b": 255,
  2904. "a": 255
  2905. },
  2906. "_N$disabledColor": {
  2907. "__type__": "cc.Color",
  2908. "r": 255,
  2909. "g": 255,
  2910. "b": 255,
  2911. "a": 255
  2912. },
  2913. "_N$normalSprite": {
  2914. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  2915. },
  2916. "_N$pressedSprite": {
  2917. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  2918. },
  2919. "pressedSprite": {
  2920. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  2921. },
  2922. "_N$hoverSprite": {
  2923. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  2924. },
  2925. "hoverSprite": {
  2926. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  2927. },
  2928. "_N$disabledSprite": {
  2929. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  2930. },
  2931. "_N$target": {
  2932. "__id__": 65
  2933. },
  2934. "_id": "88wzSZDR9L7b7PJ/DX85lY"
  2935. },
  2936. {
  2937. "__type__": "cc.Node",
  2938. "_name": "right_miss",
  2939. "_objFlags": 0,
  2940. "_parent": {
  2941. "__id__": 49
  2942. },
  2943. "_children": [
  2944. {
  2945. "__id__": 71
  2946. }
  2947. ],
  2948. "_active": true,
  2949. "_level": 2,
  2950. "_components": [
  2951. {
  2952. "__id__": 73
  2953. },
  2954. {
  2955. "__id__": 74
  2956. }
  2957. ],
  2958. "_prefab": null,
  2959. "_opacity": 255,
  2960. "_color": {
  2961. "__type__": "cc.Color",
  2962. "r": 255,
  2963. "g": 255,
  2964. "b": 255,
  2965. "a": 255
  2966. },
  2967. "_contentSize": {
  2968. "__type__": "cc.Size",
  2969. "width": 200,
  2970. "height": 40
  2971. },
  2972. "_anchorPoint": {
  2973. "__type__": "cc.Vec2",
  2974. "x": 0.5,
  2975. "y": 0.5
  2976. },
  2977. "_position": {
  2978. "__type__": "cc.Vec3",
  2979. "x": 156,
  2980. "y": -467,
  2981. "z": 0
  2982. },
  2983. "_scale": {
  2984. "__type__": "cc.Vec3",
  2985. "x": 1,
  2986. "y": 1,
  2987. "z": 1
  2988. },
  2989. "_quat": {
  2990. "__type__": "cc.Quat",
  2991. "x": 0,
  2992. "y": 0,
  2993. "z": 0,
  2994. "w": 1
  2995. },
  2996. "_skewX": 0,
  2997. "_skewY": 0,
  2998. "_zIndex": 0,
  2999. "_is3DNode": false,
  3000. "groupIndex": 0,
  3001. "_rotationX": 0,
  3002. "_rotationY": 0,
  3003. "_id": "42MLrw7AtBZINtg2RqEqEq"
  3004. },
  3005. {
  3006. "__type__": "cc.Node",
  3007. "_name": "Label",
  3008. "_objFlags": 0,
  3009. "_parent": {
  3010. "__id__": 70
  3011. },
  3012. "_children": [],
  3013. "_active": true,
  3014. "_level": 0,
  3015. "_components": [
  3016. {
  3017. "__id__": 72
  3018. }
  3019. ],
  3020. "_prefab": null,
  3021. "_opacity": 255,
  3022. "_color": {
  3023. "__type__": "cc.Color",
  3024. "r": 0,
  3025. "g": 0,
  3026. "b": 0,
  3027. "a": 255
  3028. },
  3029. "_contentSize": {
  3030. "__type__": "cc.Size",
  3031. "width": 200,
  3032. "height": 40
  3033. },
  3034. "_anchorPoint": {
  3035. "__type__": "cc.Vec2",
  3036. "x": 0.5,
  3037. "y": 0.5
  3038. },
  3039. "_position": {
  3040. "__type__": "cc.Vec3",
  3041. "x": 0,
  3042. "y": 0,
  3043. "z": 0
  3044. },
  3045. "_scale": {
  3046. "__type__": "cc.Vec3",
  3047. "x": 1,
  3048. "y": 1,
  3049. "z": 1
  3050. },
  3051. "_quat": {
  3052. "__type__": "cc.Quat",
  3053. "x": 0,
  3054. "y": 0,
  3055. "z": 0,
  3056. "w": 1
  3057. },
  3058. "_skewX": 0,
  3059. "_skewY": 0,
  3060. "_zIndex": 0,
  3061. "_is3DNode": false,
  3062. "groupIndex": 0,
  3063. "_rotationX": 0,
  3064. "_rotationY": 0,
  3065. "_id": "eaVV6UYc5L6puTVWVZ2SRX"
  3066. },
  3067. {
  3068. "__type__": "cc.Label",
  3069. "_name": "",
  3070. "_objFlags": 0,
  3071. "node": {
  3072. "__id__": 71
  3073. },
  3074. "_enabled": true,
  3075. "_srcBlendFactor": 1,
  3076. "_dstBlendFactor": 771,
  3077. "_useOriginalSize": false,
  3078. "_string": "右重拳(31-50)",
  3079. "_N$string": "右重拳(31-50)",
  3080. "_fontSize": 20,
  3081. "_lineHeight": 40,
  3082. "_enableWrapText": false,
  3083. "_N$file": null,
  3084. "_isSystemFontUsed": true,
  3085. "_spacingX": 0,
  3086. "_N$horizontalAlign": 1,
  3087. "_N$verticalAlign": 1,
  3088. "_N$fontFamily": "Arial",
  3089. "_N$overflow": 1,
  3090. "_id": "29aMgj2dVNiKvkwcSlff4m"
  3091. },
  3092. {
  3093. "__type__": "cc.Sprite",
  3094. "_name": "",
  3095. "_objFlags": 0,
  3096. "node": {
  3097. "__id__": 70
  3098. },
  3099. "_enabled": true,
  3100. "_srcBlendFactor": 770,
  3101. "_dstBlendFactor": 771,
  3102. "_spriteFrame": {
  3103. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  3104. },
  3105. "_type": 1,
  3106. "_sizeMode": 0,
  3107. "_fillType": 0,
  3108. "_fillCenter": {
  3109. "__type__": "cc.Vec2",
  3110. "x": 0,
  3111. "y": 0
  3112. },
  3113. "_fillStart": 0,
  3114. "_fillRange": 0,
  3115. "_isTrimmedMode": true,
  3116. "_state": 0,
  3117. "_atlas": null,
  3118. "_id": "ccg8KLmTdNXJdEdvqxksx5"
  3119. },
  3120. {
  3121. "__type__": "cc.Button",
  3122. "_name": "",
  3123. "_objFlags": 0,
  3124. "node": {
  3125. "__id__": 70
  3126. },
  3127. "_enabled": true,
  3128. "duration": 0.1,
  3129. "zoomScale": 1.2,
  3130. "clickEvents": [],
  3131. "_N$interactable": true,
  3132. "_N$enableAutoGrayEffect": false,
  3133. "_N$transition": 2,
  3134. "transition": 2,
  3135. "_N$normalColor": {
  3136. "__type__": "cc.Color",
  3137. "r": 255,
  3138. "g": 255,
  3139. "b": 255,
  3140. "a": 255
  3141. },
  3142. "_N$pressedColor": {
  3143. "__type__": "cc.Color",
  3144. "r": 255,
  3145. "g": 255,
  3146. "b": 255,
  3147. "a": 255
  3148. },
  3149. "pressedColor": {
  3150. "__type__": "cc.Color",
  3151. "r": 255,
  3152. "g": 255,
  3153. "b": 255,
  3154. "a": 255
  3155. },
  3156. "_N$hoverColor": {
  3157. "__type__": "cc.Color",
  3158. "r": 255,
  3159. "g": 255,
  3160. "b": 255,
  3161. "a": 255
  3162. },
  3163. "hoverColor": {
  3164. "__type__": "cc.Color",
  3165. "r": 255,
  3166. "g": 255,
  3167. "b": 255,
  3168. "a": 255
  3169. },
  3170. "_N$disabledColor": {
  3171. "__type__": "cc.Color",
  3172. "r": 255,
  3173. "g": 255,
  3174. "b": 255,
  3175. "a": 255
  3176. },
  3177. "_N$normalSprite": {
  3178. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  3179. },
  3180. "_N$pressedSprite": {
  3181. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  3182. },
  3183. "pressedSprite": {
  3184. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  3185. },
  3186. "_N$hoverSprite": {
  3187. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  3188. },
  3189. "hoverSprite": {
  3190. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  3191. },
  3192. "_N$disabledSprite": {
  3193. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  3194. },
  3195. "_N$target": {
  3196. "__id__": 70
  3197. },
  3198. "_id": "2cNeZ6hZNL+JYOF/+vcGMO"
  3199. },
  3200. {
  3201. "__type__": "f0ef4mN3RhHF7+HqvhtTeRV",
  3202. "_name": "",
  3203. "_objFlags": 0,
  3204. "node": {
  3205. "__id__": 49
  3206. },
  3207. "_enabled": true,
  3208. "_id": "f79XMUfxpMJ5tXfXEvgIFZ"
  3209. },
  3210. {
  3211. "__type__": "cc.Node",
  3212. "_name": "gameover",
  3213. "_objFlags": 0,
  3214. "_parent": {
  3215. "__id__": 2
  3216. },
  3217. "_children": [
  3218. {
  3219. "__id__": 77
  3220. }
  3221. ],
  3222. "_active": true,
  3223. "_level": 1,
  3224. "_components": [
  3225. {
  3226. "__id__": 86
  3227. }
  3228. ],
  3229. "_prefab": null,
  3230. "_opacity": 255,
  3231. "_color": {
  3232. "__type__": "cc.Color",
  3233. "r": 255,
  3234. "g": 255,
  3235. "b": 255,
  3236. "a": 255
  3237. },
  3238. "_contentSize": {
  3239. "__type__": "cc.Size",
  3240. "width": 0,
  3241. "height": 0
  3242. },
  3243. "_anchorPoint": {
  3244. "__type__": "cc.Vec2",
  3245. "x": 0.5,
  3246. "y": 0.5
  3247. },
  3248. "_position": {
  3249. "__type__": "cc.Vec3",
  3250. "x": 0,
  3251. "y": 0,
  3252. "z": 0
  3253. },
  3254. "_scale": {
  3255. "__type__": "cc.Vec3",
  3256. "x": 1,
  3257. "y": 1,
  3258. "z": 1
  3259. },
  3260. "_quat": {
  3261. "__type__": "cc.Quat",
  3262. "x": 0,
  3263. "y": 0,
  3264. "z": 0,
  3265. "w": 1
  3266. },
  3267. "_skewX": 0,
  3268. "_skewY": 0,
  3269. "_zIndex": 0,
  3270. "_is3DNode": false,
  3271. "groupIndex": 0,
  3272. "_id": "c0fCCf4i1B6q7ti/GIZAQD"
  3273. },
  3274. {
  3275. "__type__": "cc.Node",
  3276. "_name": "manager",
  3277. "_objFlags": 0,
  3278. "_parent": {
  3279. "__id__": 76
  3280. },
  3281. "_children": [
  3282. {
  3283. "__id__": 78
  3284. },
  3285. {
  3286. "__id__": 81
  3287. }
  3288. ],
  3289. "_active": false,
  3290. "_level": 2,
  3291. "_components": [],
  3292. "_prefab": null,
  3293. "_opacity": 255,
  3294. "_color": {
  3295. "__type__": "cc.Color",
  3296. "r": 255,
  3297. "g": 255,
  3298. "b": 255,
  3299. "a": 255
  3300. },
  3301. "_contentSize": {
  3302. "__type__": "cc.Size",
  3303. "width": 0,
  3304. "height": 0
  3305. },
  3306. "_anchorPoint": {
  3307. "__type__": "cc.Vec2",
  3308. "x": 0.5,
  3309. "y": 0.5
  3310. },
  3311. "_position": {
  3312. "__type__": "cc.Vec3",
  3313. "x": 0,
  3314. "y": 0,
  3315. "z": 0
  3316. },
  3317. "_scale": {
  3318. "__type__": "cc.Vec3",
  3319. "x": 1,
  3320. "y": 1,
  3321. "z": 1
  3322. },
  3323. "_quat": {
  3324. "__type__": "cc.Quat",
  3325. "x": 0,
  3326. "y": 0,
  3327. "z": 0,
  3328. "w": 1
  3329. },
  3330. "_skewX": 0,
  3331. "_skewY": 0,
  3332. "_zIndex": 0,
  3333. "_is3DNode": false,
  3334. "groupIndex": 0,
  3335. "_id": "2baWIzUfpIV5MhEPyy3yiW"
  3336. },
  3337. {
  3338. "__type__": "cc.Node",
  3339. "_name": "New Sprite(Splash)",
  3340. "_objFlags": 0,
  3341. "_parent": {
  3342. "__id__": 77
  3343. },
  3344. "_children": [],
  3345. "_active": true,
  3346. "_level": 3,
  3347. "_components": [
  3348. {
  3349. "__id__": 79
  3350. },
  3351. {
  3352. "__id__": 80
  3353. }
  3354. ],
  3355. "_prefab": null,
  3356. "_opacity": 147.64499999999998,
  3357. "_color": {
  3358. "__type__": "cc.Color",
  3359. "r": 0,
  3360. "g": 0,
  3361. "b": 0,
  3362. "a": 255
  3363. },
  3364. "_contentSize": {
  3365. "__type__": "cc.Size",
  3366. "width": 2000,
  3367. "height": 2000
  3368. },
  3369. "_anchorPoint": {
  3370. "__type__": "cc.Vec2",
  3371. "x": 0.5,
  3372. "y": 0.5
  3373. },
  3374. "_position": {
  3375. "__type__": "cc.Vec3",
  3376. "x": 0,
  3377. "y": 0,
  3378. "z": 0
  3379. },
  3380. "_scale": {
  3381. "__type__": "cc.Vec3",
  3382. "x": 1,
  3383. "y": 1,
  3384. "z": 1
  3385. },
  3386. "_quat": {
  3387. "__type__": "cc.Quat",
  3388. "x": 0,
  3389. "y": 0,
  3390. "z": 0,
  3391. "w": 1
  3392. },
  3393. "_skewX": 0,
  3394. "_skewY": 0,
  3395. "_zIndex": 0,
  3396. "_is3DNode": false,
  3397. "groupIndex": 0,
  3398. "_rotationX": 0,
  3399. "_rotationY": 0,
  3400. "_id": "36r6A+dRNEiLewYqlRvQJ/"
  3401. },
  3402. {
  3403. "__type__": "cc.Sprite",
  3404. "_name": "",
  3405. "_objFlags": 0,
  3406. "node": {
  3407. "__id__": 78
  3408. },
  3409. "_enabled": true,
  3410. "_srcBlendFactor": 770,
  3411. "_dstBlendFactor": 771,
  3412. "_spriteFrame": {
  3413. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  3414. },
  3415. "_type": 0,
  3416. "_sizeMode": 0,
  3417. "_fillType": 0,
  3418. "_fillCenter": {
  3419. "__type__": "cc.Vec2",
  3420. "x": 0,
  3421. "y": 0
  3422. },
  3423. "_fillStart": 0,
  3424. "_fillRange": 0,
  3425. "_isTrimmedMode": true,
  3426. "_state": 0,
  3427. "_atlas": null,
  3428. "_id": "b3g5blJKZOzaBVZPeNVIfE"
  3429. },
  3430. {
  3431. "__type__": "cc.BlockInputEvents",
  3432. "_name": "",
  3433. "_objFlags": 0,
  3434. "node": {
  3435. "__id__": 78
  3436. },
  3437. "_enabled": true,
  3438. "_id": "48A+N7H1RHFIdTEdp8HRVy"
  3439. },
  3440. {
  3441. "__type__": "cc.Node",
  3442. "_name": "Button",
  3443. "_objFlags": 0,
  3444. "_parent": {
  3445. "__id__": 77
  3446. },
  3447. "_children": [
  3448. {
  3449. "__id__": 82
  3450. }
  3451. ],
  3452. "_active": true,
  3453. "_level": 3,
  3454. "_components": [
  3455. {
  3456. "__id__": 84
  3457. },
  3458. {
  3459. "__id__": 85
  3460. }
  3461. ],
  3462. "_prefab": null,
  3463. "_opacity": 255,
  3464. "_color": {
  3465. "__type__": "cc.Color",
  3466. "r": 255,
  3467. "g": 255,
  3468. "b": 255,
  3469. "a": 255
  3470. },
  3471. "_contentSize": {
  3472. "__type__": "cc.Size",
  3473. "width": 100,
  3474. "height": 40
  3475. },
  3476. "_anchorPoint": {
  3477. "__type__": "cc.Vec2",
  3478. "x": 0.5,
  3479. "y": 0.5
  3480. },
  3481. "_position": {
  3482. "__type__": "cc.Vec3",
  3483. "x": 0,
  3484. "y": 0,
  3485. "z": 0
  3486. },
  3487. "_scale": {
  3488. "__type__": "cc.Vec3",
  3489. "x": 1,
  3490. "y": 1,
  3491. "z": 1
  3492. },
  3493. "_quat": {
  3494. "__type__": "cc.Quat",
  3495. "x": 0,
  3496. "y": 0,
  3497. "z": 0,
  3498. "w": 1
  3499. },
  3500. "_skewX": 0,
  3501. "_skewY": 0,
  3502. "_zIndex": 0,
  3503. "_is3DNode": false,
  3504. "groupIndex": 0,
  3505. "_rotationX": 0,
  3506. "_rotationY": 0,
  3507. "_id": "b7/odgW3VCqaPfGNCT+zzr"
  3508. },
  3509. {
  3510. "__type__": "cc.Node",
  3511. "_name": "Label",
  3512. "_objFlags": 0,
  3513. "_parent": {
  3514. "__id__": 81
  3515. },
  3516. "_children": [],
  3517. "_active": true,
  3518. "_level": 0,
  3519. "_components": [
  3520. {
  3521. "__id__": 83
  3522. }
  3523. ],
  3524. "_prefab": null,
  3525. "_opacity": 255,
  3526. "_color": {
  3527. "__type__": "cc.Color",
  3528. "r": 0,
  3529. "g": 0,
  3530. "b": 0,
  3531. "a": 255
  3532. },
  3533. "_contentSize": {
  3534. "__type__": "cc.Size",
  3535. "width": 100,
  3536. "height": 40
  3537. },
  3538. "_anchorPoint": {
  3539. "__type__": "cc.Vec2",
  3540. "x": 0.5,
  3541. "y": 0.5
  3542. },
  3543. "_position": {
  3544. "__type__": "cc.Vec3",
  3545. "x": 0,
  3546. "y": 0,
  3547. "z": 0
  3548. },
  3549. "_scale": {
  3550. "__type__": "cc.Vec3",
  3551. "x": 1,
  3552. "y": 1,
  3553. "z": 1
  3554. },
  3555. "_quat": {
  3556. "__type__": "cc.Quat",
  3557. "x": 0,
  3558. "y": 0,
  3559. "z": 0,
  3560. "w": 1
  3561. },
  3562. "_skewX": 0,
  3563. "_skewY": 0,
  3564. "_zIndex": 0,
  3565. "_is3DNode": false,
  3566. "groupIndex": 0,
  3567. "_rotationX": 0,
  3568. "_rotationY": 0,
  3569. "_id": "34eUZMGWhKYq58Y16u9Xdc"
  3570. },
  3571. {
  3572. "__type__": "cc.Label",
  3573. "_name": "",
  3574. "_objFlags": 0,
  3575. "node": {
  3576. "__id__": 82
  3577. },
  3578. "_enabled": true,
  3579. "_srcBlendFactor": 1,
  3580. "_dstBlendFactor": 771,
  3581. "_useOriginalSize": false,
  3582. "_string": "重新开始",
  3583. "_N$string": "重新开始",
  3584. "_fontSize": 20,
  3585. "_lineHeight": 40,
  3586. "_enableWrapText": false,
  3587. "_N$file": null,
  3588. "_isSystemFontUsed": true,
  3589. "_spacingX": 0,
  3590. "_N$horizontalAlign": 1,
  3591. "_N$verticalAlign": 1,
  3592. "_N$fontFamily": "Arial",
  3593. "_N$overflow": 1,
  3594. "_id": "8fdjihrGNFf63LXtqpGmv6"
  3595. },
  3596. {
  3597. "__type__": "cc.Sprite",
  3598. "_name": "",
  3599. "_objFlags": 0,
  3600. "node": {
  3601. "__id__": 81
  3602. },
  3603. "_enabled": true,
  3604. "_srcBlendFactor": 770,
  3605. "_dstBlendFactor": 771,
  3606. "_spriteFrame": {
  3607. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  3608. },
  3609. "_type": 1,
  3610. "_sizeMode": 0,
  3611. "_fillType": 0,
  3612. "_fillCenter": {
  3613. "__type__": "cc.Vec2",
  3614. "x": 0,
  3615. "y": 0
  3616. },
  3617. "_fillStart": 0,
  3618. "_fillRange": 0,
  3619. "_isTrimmedMode": true,
  3620. "_state": 0,
  3621. "_atlas": null,
  3622. "_id": "d7rttReSVPZa0kOTP/b9BV"
  3623. },
  3624. {
  3625. "__type__": "cc.Button",
  3626. "_name": "",
  3627. "_objFlags": 0,
  3628. "node": {
  3629. "__id__": 81
  3630. },
  3631. "_enabled": true,
  3632. "duration": 0.1,
  3633. "zoomScale": 1.2,
  3634. "clickEvents": [],
  3635. "_N$interactable": true,
  3636. "_N$enableAutoGrayEffect": false,
  3637. "_N$transition": 2,
  3638. "transition": 2,
  3639. "_N$normalColor": {
  3640. "__type__": "cc.Color",
  3641. "r": 255,
  3642. "g": 255,
  3643. "b": 255,
  3644. "a": 255
  3645. },
  3646. "_N$pressedColor": {
  3647. "__type__": "cc.Color",
  3648. "r": 255,
  3649. "g": 255,
  3650. "b": 255,
  3651. "a": 255
  3652. },
  3653. "pressedColor": {
  3654. "__type__": "cc.Color",
  3655. "r": 255,
  3656. "g": 255,
  3657. "b": 255,
  3658. "a": 255
  3659. },
  3660. "_N$hoverColor": {
  3661. "__type__": "cc.Color",
  3662. "r": 255,
  3663. "g": 255,
  3664. "b": 255,
  3665. "a": 255
  3666. },
  3667. "hoverColor": {
  3668. "__type__": "cc.Color",
  3669. "r": 255,
  3670. "g": 255,
  3671. "b": 255,
  3672. "a": 255
  3673. },
  3674. "_N$disabledColor": {
  3675. "__type__": "cc.Color",
  3676. "r": 255,
  3677. "g": 255,
  3678. "b": 255,
  3679. "a": 255
  3680. },
  3681. "_N$normalSprite": {
  3682. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  3683. },
  3684. "_N$pressedSprite": {
  3685. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  3686. },
  3687. "pressedSprite": {
  3688. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  3689. },
  3690. "_N$hoverSprite": {
  3691. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  3692. },
  3693. "hoverSprite": {
  3694. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  3695. },
  3696. "_N$disabledSprite": {
  3697. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  3698. },
  3699. "_N$target": {
  3700. "__id__": 81
  3701. },
  3702. "_id": "3doOfgyftMWbSPKD/hMwyZ"
  3703. },
  3704. {
  3705. "__type__": "064e09EKUxAApg5wGDbDy33",
  3706. "_name": "",
  3707. "_objFlags": 0,
  3708. "node": {
  3709. "__id__": 76
  3710. },
  3711. "_enabled": true,
  3712. "_id": "afTKChAZlOIJck00yIx5DT"
  3713. },
  3714. {
  3715. "__type__": "cc.Canvas",
  3716. "_name": "",
  3717. "_objFlags": 0,
  3718. "node": {
  3719. "__id__": 2
  3720. },
  3721. "_enabled": true,
  3722. "_designResolution": {
  3723. "__type__": "cc.Size",
  3724. "width": 720,
  3725. "height": 1280
  3726. },
  3727. "_fitWidth": true,
  3728. "_fitHeight": true,
  3729. "_id": "4adTWrOdtENYZCOOANlFhA"
  3730. },
  3731. {
  3732. "__type__": "0e6c70xO3ZM3aHdBd97WLZU",
  3733. "_name": "",
  3734. "_objFlags": 0,
  3735. "node": {
  3736. "__id__": 2
  3737. },
  3738. "_enabled": true,
  3739. "_id": "bfv0QwgT5ODrQvpcdt4JVN"
  3740. },
  3741. {
  3742. "__type__": "5e11bnV0yFOVryTfaEkkQjm",
  3743. "_name": "",
  3744. "_objFlags": 0,
  3745. "node": {
  3746. "__id__": 2
  3747. },
  3748. "_enabled": true,
  3749. "_id": "1esMLHXw9LDZV8Jtwe0UNo"
  3750. },
  3751. {
  3752. "__type__": "cc.Node",
  3753. "_name": "New Node",
  3754. "_objFlags": 0,
  3755. "_parent": {
  3756. "__id__": 1
  3757. },
  3758. "_children": [
  3759. {
  3760. "__id__": 91
  3761. },
  3762. {
  3763. "__id__": 93
  3764. },
  3765. {
  3766. "__id__": 95
  3767. },
  3768. {
  3769. "__id__": 97
  3770. },
  3771. {
  3772. "__id__": 99
  3773. },
  3774. {
  3775. "__id__": 101
  3776. },
  3777. {
  3778. "__id__": 103
  3779. },
  3780. {
  3781. "__id__": 105
  3782. },
  3783. {
  3784. "__id__": 107
  3785. },
  3786. {
  3787. "__id__": 109
  3788. },
  3789. {
  3790. "__id__": 111
  3791. }
  3792. ],
  3793. "_active": false,
  3794. "_level": 1,
  3795. "_components": [],
  3796. "_prefab": null,
  3797. "_opacity": 255,
  3798. "_color": {
  3799. "__type__": "cc.Color",
  3800. "r": 255,
  3801. "g": 255,
  3802. "b": 255,
  3803. "a": 255
  3804. },
  3805. "_contentSize": {
  3806. "__type__": "cc.Size",
  3807. "width": 0,
  3808. "height": 0
  3809. },
  3810. "_anchorPoint": {
  3811. "__type__": "cc.Vec2",
  3812. "x": 0.5,
  3813. "y": 0.5
  3814. },
  3815. "_position": {
  3816. "__type__": "cc.Vec3",
  3817. "x": -2000,
  3818. "y": 870,
  3819. "z": 0
  3820. },
  3821. "_scale": {
  3822. "__type__": "cc.Vec3",
  3823. "x": 1,
  3824. "y": 1,
  3825. "z": 1
  3826. },
  3827. "_quat": {
  3828. "__type__": "cc.Quat",
  3829. "x": 0,
  3830. "y": 0,
  3831. "z": 0,
  3832. "w": 1
  3833. },
  3834. "_skewX": 0,
  3835. "_skewY": 0,
  3836. "_zIndex": 0,
  3837. "_is3DNode": false,
  3838. "groupIndex": 0,
  3839. "_id": "7aEEHmvTxIbZVXNC+8+Etx"
  3840. },
  3841. {
  3842. "__type__": "cc.Node",
  3843. "_name": "cs_boxing_e4",
  3844. "_objFlags": 0,
  3845. "_parent": {
  3846. "__id__": 90
  3847. },
  3848. "_children": [],
  3849. "_active": true,
  3850. "_level": 2,
  3851. "_components": [
  3852. {
  3853. "__id__": 92
  3854. }
  3855. ],
  3856. "_prefab": null,
  3857. "_opacity": 255,
  3858. "_color": {
  3859. "__type__": "cc.Color",
  3860. "r": 255,
  3861. "g": 255,
  3862. "b": 255,
  3863. "a": 255
  3864. },
  3865. "_contentSize": {
  3866. "__type__": "cc.Size",
  3867. "width": 1575,
  3868. "height": 1442
  3869. },
  3870. "_anchorPoint": {
  3871. "__type__": "cc.Vec2",
  3872. "x": 0.5,
  3873. "y": 0.5
  3874. },
  3875. "_position": {
  3876. "__type__": "cc.Vec3",
  3877. "x": 0,
  3878. "y": 0,
  3879. "z": 0
  3880. },
  3881. "_scale": {
  3882. "__type__": "cc.Vec3",
  3883. "x": 1,
  3884. "y": 1,
  3885. "z": 1
  3886. },
  3887. "_quat": {
  3888. "__type__": "cc.Quat",
  3889. "x": 0,
  3890. "y": 0,
  3891. "z": 0,
  3892. "w": 1
  3893. },
  3894. "_skewX": 0,
  3895. "_skewY": 0,
  3896. "_zIndex": 0,
  3897. "_is3DNode": false,
  3898. "groupIndex": 0,
  3899. "_id": "46Fku6W8JKyZd4nmlvK2bF"
  3900. },
  3901. {
  3902. "__type__": "cc.Sprite",
  3903. "_name": "",
  3904. "_objFlags": 0,
  3905. "node": {
  3906. "__id__": 91
  3907. },
  3908. "_enabled": true,
  3909. "_srcBlendFactor": 770,
  3910. "_dstBlendFactor": 771,
  3911. "_spriteFrame": {
  3912. "__uuid__": "1e4997fe-25c8-4e53-b36a-767efd66e62f"
  3913. },
  3914. "_type": 0,
  3915. "_sizeMode": 1,
  3916. "_fillType": 0,
  3917. "_fillCenter": {
  3918. "__type__": "cc.Vec2",
  3919. "x": 0,
  3920. "y": 0
  3921. },
  3922. "_fillStart": 0,
  3923. "_fillRange": 0,
  3924. "_isTrimmedMode": true,
  3925. "_state": 0,
  3926. "_atlas": null,
  3927. "_id": "6aFxW4bPJH84aj9ZEflsTf"
  3928. },
  3929. {
  3930. "__type__": "cc.Node",
  3931. "_name": "cs_boxing_e3",
  3932. "_objFlags": 0,
  3933. "_parent": {
  3934. "__id__": 90
  3935. },
  3936. "_children": [],
  3937. "_active": true,
  3938. "_level": 2,
  3939. "_components": [
  3940. {
  3941. "__id__": 94
  3942. }
  3943. ],
  3944. "_prefab": null,
  3945. "_opacity": 255,
  3946. "_color": {
  3947. "__type__": "cc.Color",
  3948. "r": 255,
  3949. "g": 255,
  3950. "b": 255,
  3951. "a": 255
  3952. },
  3953. "_contentSize": {
  3954. "__type__": "cc.Size",
  3955. "width": 1574,
  3956. "height": 1442
  3957. },
  3958. "_anchorPoint": {
  3959. "__type__": "cc.Vec2",
  3960. "x": 0.5,
  3961. "y": 0.5
  3962. },
  3963. "_position": {
  3964. "__type__": "cc.Vec3",
  3965. "x": 0,
  3966. "y": 0,
  3967. "z": 0
  3968. },
  3969. "_scale": {
  3970. "__type__": "cc.Vec3",
  3971. "x": 1,
  3972. "y": 1,
  3973. "z": 1
  3974. },
  3975. "_quat": {
  3976. "__type__": "cc.Quat",
  3977. "x": 0,
  3978. "y": 0,
  3979. "z": 0,
  3980. "w": 1
  3981. },
  3982. "_skewX": 0,
  3983. "_skewY": 0,
  3984. "_zIndex": 0,
  3985. "_is3DNode": false,
  3986. "groupIndex": 0,
  3987. "_id": "96uXDb5jxB1oTDExhleaqK"
  3988. },
  3989. {
  3990. "__type__": "cc.Sprite",
  3991. "_name": "",
  3992. "_objFlags": 0,
  3993. "node": {
  3994. "__id__": 93
  3995. },
  3996. "_enabled": true,
  3997. "_srcBlendFactor": 770,
  3998. "_dstBlendFactor": 771,
  3999. "_spriteFrame": {
  4000. "__uuid__": "b7fa93f7-a96f-4da7-91b0-512ea86cbe1c"
  4001. },
  4002. "_type": 0,
  4003. "_sizeMode": 1,
  4004. "_fillType": 0,
  4005. "_fillCenter": {
  4006. "__type__": "cc.Vec2",
  4007. "x": 0,
  4008. "y": 0
  4009. },
  4010. "_fillStart": 0,
  4011. "_fillRange": 0,
  4012. "_isTrimmedMode": true,
  4013. "_state": 0,
  4014. "_atlas": null,
  4015. "_id": "4fcxX8OY9KcLbxwqScEQGk"
  4016. },
  4017. {
  4018. "__type__": "cc.Node",
  4019. "_name": "_501390633",
  4020. "_objFlags": 0,
  4021. "_parent": {
  4022. "__id__": 90
  4023. },
  4024. "_children": [],
  4025. "_active": true,
  4026. "_level": 2,
  4027. "_components": [
  4028. {
  4029. "__id__": 96
  4030. }
  4031. ],
  4032. "_prefab": null,
  4033. "_opacity": 255,
  4034. "_color": {
  4035. "__type__": "cc.Color",
  4036. "r": 255,
  4037. "g": 255,
  4038. "b": 255,
  4039. "a": 255
  4040. },
  4041. "_contentSize": {
  4042. "__type__": "cc.Size",
  4043. "width": 3500,
  4044. "height": 2333
  4045. },
  4046. "_anchorPoint": {
  4047. "__type__": "cc.Vec2",
  4048. "x": 0.5,
  4049. "y": 0.5
  4050. },
  4051. "_position": {
  4052. "__type__": "cc.Vec3",
  4053. "x": 0,
  4054. "y": 0,
  4055. "z": 0
  4056. },
  4057. "_scale": {
  4058. "__type__": "cc.Vec3",
  4059. "x": 1,
  4060. "y": 1,
  4061. "z": 1
  4062. },
  4063. "_quat": {
  4064. "__type__": "cc.Quat",
  4065. "x": 0,
  4066. "y": 0,
  4067. "z": 0,
  4068. "w": 1
  4069. },
  4070. "_skewX": 0,
  4071. "_skewY": 0,
  4072. "_zIndex": 0,
  4073. "_is3DNode": false,
  4074. "groupIndex": 0,
  4075. "_id": "0a/BW0q8tFuJCLuBWhAFNY"
  4076. },
  4077. {
  4078. "__type__": "cc.Sprite",
  4079. "_name": "",
  4080. "_objFlags": 0,
  4081. "node": {
  4082. "__id__": 95
  4083. },
  4084. "_enabled": true,
  4085. "_srcBlendFactor": 770,
  4086. "_dstBlendFactor": 771,
  4087. "_spriteFrame": {
  4088. "__uuid__": "80e7c882-90e9-460b-8ed0-58b82803bfd4"
  4089. },
  4090. "_type": 0,
  4091. "_sizeMode": 1,
  4092. "_fillType": 0,
  4093. "_fillCenter": {
  4094. "__type__": "cc.Vec2",
  4095. "x": 0,
  4096. "y": 0
  4097. },
  4098. "_fillStart": 0,
  4099. "_fillRange": 0,
  4100. "_isTrimmedMode": true,
  4101. "_state": 0,
  4102. "_atlas": null,
  4103. "_id": "5aMqyrqF1PQIW9GrLH+h07"
  4104. },
  4105. {
  4106. "__type__": "cc.Node",
  4107. "_name": "cs_boxing1p3",
  4108. "_objFlags": 0,
  4109. "_parent": {
  4110. "__id__": 90
  4111. },
  4112. "_children": [],
  4113. "_active": true,
  4114. "_level": 2,
  4115. "_components": [
  4116. {
  4117. "__id__": 98
  4118. }
  4119. ],
  4120. "_prefab": null,
  4121. "_opacity": 255,
  4122. "_color": {
  4123. "__type__": "cc.Color",
  4124. "r": 255,
  4125. "g": 255,
  4126. "b": 255,
  4127. "a": 255
  4128. },
  4129. "_contentSize": {
  4130. "__type__": "cc.Size",
  4131. "width": 1427,
  4132. "height": 1750
  4133. },
  4134. "_anchorPoint": {
  4135. "__type__": "cc.Vec2",
  4136. "x": 0.5,
  4137. "y": 0.5
  4138. },
  4139. "_position": {
  4140. "__type__": "cc.Vec3",
  4141. "x": 0,
  4142. "y": 0,
  4143. "z": 0
  4144. },
  4145. "_scale": {
  4146. "__type__": "cc.Vec3",
  4147. "x": 1,
  4148. "y": 1,
  4149. "z": 1
  4150. },
  4151. "_quat": {
  4152. "__type__": "cc.Quat",
  4153. "x": 0,
  4154. "y": 0,
  4155. "z": 0,
  4156. "w": 1
  4157. },
  4158. "_skewX": 0,
  4159. "_skewY": 0,
  4160. "_zIndex": 0,
  4161. "_is3DNode": false,
  4162. "groupIndex": 0,
  4163. "_id": "09DUsF5CFPaqwbTjPTHlO0"
  4164. },
  4165. {
  4166. "__type__": "cc.Sprite",
  4167. "_name": "",
  4168. "_objFlags": 0,
  4169. "node": {
  4170. "__id__": 97
  4171. },
  4172. "_enabled": true,
  4173. "_srcBlendFactor": 770,
  4174. "_dstBlendFactor": 771,
  4175. "_spriteFrame": {
  4176. "__uuid__": "7c95bc2d-89d0-45b7-b7e4-879738a069db"
  4177. },
  4178. "_type": 0,
  4179. "_sizeMode": 1,
  4180. "_fillType": 0,
  4181. "_fillCenter": {
  4182. "__type__": "cc.Vec2",
  4183. "x": 0,
  4184. "y": 0
  4185. },
  4186. "_fillStart": 0,
  4187. "_fillRange": 0,
  4188. "_isTrimmedMode": true,
  4189. "_state": 0,
  4190. "_atlas": null,
  4191. "_id": "1dntm6U3ZLobygcrZY3yd3"
  4192. },
  4193. {
  4194. "__type__": "cc.Node",
  4195. "_name": "cs_boxing_parts",
  4196. "_objFlags": 0,
  4197. "_parent": {
  4198. "__id__": 90
  4199. },
  4200. "_children": [],
  4201. "_active": true,
  4202. "_level": 2,
  4203. "_components": [
  4204. {
  4205. "__id__": 100
  4206. }
  4207. ],
  4208. "_prefab": null,
  4209. "_opacity": 255,
  4210. "_color": {
  4211. "__type__": "cc.Color",
  4212. "r": 255,
  4213. "g": 255,
  4214. "b": 255,
  4215. "a": 255
  4216. },
  4217. "_contentSize": {
  4218. "__type__": "cc.Size",
  4219. "width": 537,
  4220. "height": 315
  4221. },
  4222. "_anchorPoint": {
  4223. "__type__": "cc.Vec2",
  4224. "x": 0.5,
  4225. "y": 0.5
  4226. },
  4227. "_position": {
  4228. "__type__": "cc.Vec3",
  4229. "x": 0,
  4230. "y": 0,
  4231. "z": 0
  4232. },
  4233. "_scale": {
  4234. "__type__": "cc.Vec3",
  4235. "x": 1,
  4236. "y": 1,
  4237. "z": 1
  4238. },
  4239. "_quat": {
  4240. "__type__": "cc.Quat",
  4241. "x": 0,
  4242. "y": 0,
  4243. "z": 0,
  4244. "w": 1
  4245. },
  4246. "_skewX": 0,
  4247. "_skewY": 0,
  4248. "_zIndex": 0,
  4249. "_is3DNode": false,
  4250. "groupIndex": 0,
  4251. "_id": "12itSm99VIMJu3G8m4KAA5"
  4252. },
  4253. {
  4254. "__type__": "cc.Sprite",
  4255. "_name": "",
  4256. "_objFlags": 0,
  4257. "node": {
  4258. "__id__": 99
  4259. },
  4260. "_enabled": true,
  4261. "_srcBlendFactor": 770,
  4262. "_dstBlendFactor": 771,
  4263. "_spriteFrame": {
  4264. "__uuid__": "e3903c41-8466-4175-ab11-9b8ae13a314b"
  4265. },
  4266. "_type": 0,
  4267. "_sizeMode": 1,
  4268. "_fillType": 0,
  4269. "_fillCenter": {
  4270. "__type__": "cc.Vec2",
  4271. "x": 0,
  4272. "y": 0
  4273. },
  4274. "_fillStart": 0,
  4275. "_fillRange": 0,
  4276. "_isTrimmedMode": true,
  4277. "_state": 0,
  4278. "_atlas": null,
  4279. "_id": "bcVMEqkTxJ7J9Ng3JKhmRA"
  4280. },
  4281. {
  4282. "__type__": "cc.Node",
  4283. "_name": "select",
  4284. "_objFlags": 0,
  4285. "_parent": {
  4286. "__id__": 90
  4287. },
  4288. "_children": [],
  4289. "_active": true,
  4290. "_level": 2,
  4291. "_components": [
  4292. {
  4293. "__id__": 102
  4294. }
  4295. ],
  4296. "_prefab": null,
  4297. "_opacity": 255,
  4298. "_color": {
  4299. "__type__": "cc.Color",
  4300. "r": 255,
  4301. "g": 255,
  4302. "b": 255,
  4303. "a": 255
  4304. },
  4305. "_contentSize": {
  4306. "__type__": "cc.Size",
  4307. "width": 756,
  4308. "height": 348
  4309. },
  4310. "_anchorPoint": {
  4311. "__type__": "cc.Vec2",
  4312. "x": 0.5,
  4313. "y": 0.5
  4314. },
  4315. "_position": {
  4316. "__type__": "cc.Vec3",
  4317. "x": 0,
  4318. "y": 0,
  4319. "z": 0
  4320. },
  4321. "_scale": {
  4322. "__type__": "cc.Vec3",
  4323. "x": 1,
  4324. "y": 1,
  4325. "z": 1
  4326. },
  4327. "_quat": {
  4328. "__type__": "cc.Quat",
  4329. "x": 0,
  4330. "y": 0,
  4331. "z": 0,
  4332. "w": 1
  4333. },
  4334. "_skewX": 0,
  4335. "_skewY": 0,
  4336. "_zIndex": 0,
  4337. "_is3DNode": false,
  4338. "groupIndex": 0,
  4339. "_id": "70/3sWkGlIa7ORXBXed0yw"
  4340. },
  4341. {
  4342. "__type__": "cc.Sprite",
  4343. "_name": "",
  4344. "_objFlags": 0,
  4345. "node": {
  4346. "__id__": 101
  4347. },
  4348. "_enabled": true,
  4349. "_srcBlendFactor": 770,
  4350. "_dstBlendFactor": 771,
  4351. "_spriteFrame": {
  4352. "__uuid__": "ced41b33-ad1c-4fe2-b285-8c3b08deafc7"
  4353. },
  4354. "_type": 0,
  4355. "_sizeMode": 1,
  4356. "_fillType": 0,
  4357. "_fillCenter": {
  4358. "__type__": "cc.Vec2",
  4359. "x": 0,
  4360. "y": 0
  4361. },
  4362. "_fillStart": 0,
  4363. "_fillRange": 0,
  4364. "_isTrimmedMode": true,
  4365. "_state": 0,
  4366. "_atlas": null,
  4367. "_id": "6dP6SF6StGrbSJyk0vDRhb"
  4368. },
  4369. {
  4370. "__type__": "cc.Node",
  4371. "_name": "ring1",
  4372. "_objFlags": 0,
  4373. "_parent": {
  4374. "__id__": 90
  4375. },
  4376. "_children": [],
  4377. "_active": true,
  4378. "_level": 2,
  4379. "_components": [
  4380. {
  4381. "__id__": 104
  4382. }
  4383. ],
  4384. "_prefab": null,
  4385. "_opacity": 255,
  4386. "_color": {
  4387. "__type__": "cc.Color",
  4388. "r": 255,
  4389. "g": 255,
  4390. "b": 255,
  4391. "a": 255
  4392. },
  4393. "_contentSize": {
  4394. "__type__": "cc.Size",
  4395. "width": 960,
  4396. "height": 2076
  4397. },
  4398. "_anchorPoint": {
  4399. "__type__": "cc.Vec2",
  4400. "x": 0.5,
  4401. "y": 0.5
  4402. },
  4403. "_position": {
  4404. "__type__": "cc.Vec3",
  4405. "x": 0,
  4406. "y": 0,
  4407. "z": 0
  4408. },
  4409. "_scale": {
  4410. "__type__": "cc.Vec3",
  4411. "x": 1,
  4412. "y": 1,
  4413. "z": 1
  4414. },
  4415. "_quat": {
  4416. "__type__": "cc.Quat",
  4417. "x": 0,
  4418. "y": 0,
  4419. "z": 0,
  4420. "w": 1
  4421. },
  4422. "_skewX": 0,
  4423. "_skewY": 0,
  4424. "_zIndex": 0,
  4425. "_is3DNode": false,
  4426. "groupIndex": 0,
  4427. "_id": "6fP2zqfvFOk4pXytxqYs0R"
  4428. },
  4429. {
  4430. "__type__": "cc.Sprite",
  4431. "_name": "",
  4432. "_objFlags": 0,
  4433. "node": {
  4434. "__id__": 103
  4435. },
  4436. "_enabled": true,
  4437. "_srcBlendFactor": 770,
  4438. "_dstBlendFactor": 771,
  4439. "_spriteFrame": {
  4440. "__uuid__": "2900a246-3f63-4fed-920e-08b254d617f1"
  4441. },
  4442. "_type": 0,
  4443. "_sizeMode": 1,
  4444. "_fillType": 0,
  4445. "_fillCenter": {
  4446. "__type__": "cc.Vec2",
  4447. "x": 0,
  4448. "y": 0
  4449. },
  4450. "_fillStart": 0,
  4451. "_fillRange": 0,
  4452. "_isTrimmedMode": true,
  4453. "_state": 0,
  4454. "_atlas": null,
  4455. "_id": "f7m5+oTxNJZpFrnxyP3Wcg"
  4456. },
  4457. {
  4458. "__type__": "cc.Node",
  4459. "_name": "ring2",
  4460. "_objFlags": 0,
  4461. "_parent": {
  4462. "__id__": 90
  4463. },
  4464. "_children": [],
  4465. "_active": true,
  4466. "_level": 2,
  4467. "_components": [
  4468. {
  4469. "__id__": 106
  4470. }
  4471. ],
  4472. "_prefab": null,
  4473. "_opacity": 255,
  4474. "_color": {
  4475. "__type__": "cc.Color",
  4476. "r": 255,
  4477. "g": 255,
  4478. "b": 255,
  4479. "a": 255
  4480. },
  4481. "_contentSize": {
  4482. "__type__": "cc.Size",
  4483. "width": 960,
  4484. "height": 1384
  4485. },
  4486. "_anchorPoint": {
  4487. "__type__": "cc.Vec2",
  4488. "x": 0.5,
  4489. "y": 0.5
  4490. },
  4491. "_position": {
  4492. "__type__": "cc.Vec3",
  4493. "x": 0,
  4494. "y": 0,
  4495. "z": 0
  4496. },
  4497. "_scale": {
  4498. "__type__": "cc.Vec3",
  4499. "x": 1,
  4500. "y": 1,
  4501. "z": 1
  4502. },
  4503. "_quat": {
  4504. "__type__": "cc.Quat",
  4505. "x": 0,
  4506. "y": 0,
  4507. "z": 0,
  4508. "w": 1
  4509. },
  4510. "_skewX": 0,
  4511. "_skewY": 0,
  4512. "_zIndex": 0,
  4513. "_is3DNode": false,
  4514. "groupIndex": 0,
  4515. "_id": "b135aFOoBPjKxaiO9E1hhS"
  4516. },
  4517. {
  4518. "__type__": "cc.Sprite",
  4519. "_name": "",
  4520. "_objFlags": 0,
  4521. "node": {
  4522. "__id__": 105
  4523. },
  4524. "_enabled": true,
  4525. "_srcBlendFactor": 770,
  4526. "_dstBlendFactor": 771,
  4527. "_spriteFrame": {
  4528. "__uuid__": "60442c37-77e2-462c-825b-bc461419617d"
  4529. },
  4530. "_type": 0,
  4531. "_sizeMode": 1,
  4532. "_fillType": 0,
  4533. "_fillCenter": {
  4534. "__type__": "cc.Vec2",
  4535. "x": 0,
  4536. "y": 0
  4537. },
  4538. "_fillStart": 0,
  4539. "_fillRange": 0,
  4540. "_isTrimmedMode": true,
  4541. "_state": 0,
  4542. "_atlas": null,
  4543. "_id": "f1gswUklVFxLVNT07KcrIl"
  4544. },
  4545. {
  4546. "__type__": "cc.Node",
  4547. "_name": "monster_01_tex",
  4548. "_objFlags": 0,
  4549. "_parent": {
  4550. "__id__": 90
  4551. },
  4552. "_children": [],
  4553. "_active": true,
  4554. "_level": 2,
  4555. "_components": [
  4556. {
  4557. "__id__": 108
  4558. }
  4559. ],
  4560. "_prefab": null,
  4561. "_opacity": 255,
  4562. "_color": {
  4563. "__type__": "cc.Color",
  4564. "r": 255,
  4565. "g": 255,
  4566. "b": 255,
  4567. "a": 255
  4568. },
  4569. "_contentSize": {
  4570. "__type__": "cc.Size",
  4571. "width": 978,
  4572. "height": 1020
  4573. },
  4574. "_anchorPoint": {
  4575. "__type__": "cc.Vec2",
  4576. "x": 0.5,
  4577. "y": 0.5
  4578. },
  4579. "_position": {
  4580. "__type__": "cc.Vec3",
  4581. "x": 0,
  4582. "y": 0,
  4583. "z": 0
  4584. },
  4585. "_scale": {
  4586. "__type__": "cc.Vec3",
  4587. "x": 1,
  4588. "y": 1,
  4589. "z": 1
  4590. },
  4591. "_quat": {
  4592. "__type__": "cc.Quat",
  4593. "x": 0,
  4594. "y": 0,
  4595. "z": 0,
  4596. "w": 1
  4597. },
  4598. "_skewX": 0,
  4599. "_skewY": 0,
  4600. "_zIndex": 0,
  4601. "_is3DNode": false,
  4602. "groupIndex": 0,
  4603. "_id": "05H0Lo5UJP5qOqFngAE82E"
  4604. },
  4605. {
  4606. "__type__": "cc.Sprite",
  4607. "_name": "",
  4608. "_objFlags": 0,
  4609. "node": {
  4610. "__id__": 107
  4611. },
  4612. "_enabled": true,
  4613. "_srcBlendFactor": 770,
  4614. "_dstBlendFactor": 771,
  4615. "_spriteFrame": {
  4616. "__uuid__": "cbd3b5a2-286f-4258-a1a8-96838c1bd386"
  4617. },
  4618. "_type": 0,
  4619. "_sizeMode": 1,
  4620. "_fillType": 0,
  4621. "_fillCenter": {
  4622. "__type__": "cc.Vec2",
  4623. "x": 0,
  4624. "y": 0
  4625. },
  4626. "_fillStart": 0,
  4627. "_fillRange": 0,
  4628. "_isTrimmedMode": true,
  4629. "_state": 0,
  4630. "_atlas": null,
  4631. "_id": "2ev05dk55Ljat/eUDeIaO4"
  4632. },
  4633. {
  4634. "__type__": "cc.Node",
  4635. "_name": "monster_00_tex",
  4636. "_objFlags": 0,
  4637. "_parent": {
  4638. "__id__": 90
  4639. },
  4640. "_children": [],
  4641. "_active": true,
  4642. "_level": 2,
  4643. "_components": [
  4644. {
  4645. "__id__": 110
  4646. }
  4647. ],
  4648. "_prefab": null,
  4649. "_opacity": 255,
  4650. "_color": {
  4651. "__type__": "cc.Color",
  4652. "r": 255,
  4653. "g": 255,
  4654. "b": 255,
  4655. "a": 255
  4656. },
  4657. "_contentSize": {
  4658. "__type__": "cc.Size",
  4659. "width": 996,
  4660. "height": 421
  4661. },
  4662. "_anchorPoint": {
  4663. "__type__": "cc.Vec2",
  4664. "x": 0.5,
  4665. "y": 0.5
  4666. },
  4667. "_position": {
  4668. "__type__": "cc.Vec3",
  4669. "x": 0,
  4670. "y": 0,
  4671. "z": 0
  4672. },
  4673. "_scale": {
  4674. "__type__": "cc.Vec3",
  4675. "x": 1,
  4676. "y": 1,
  4677. "z": 1
  4678. },
  4679. "_quat": {
  4680. "__type__": "cc.Quat",
  4681. "x": 0,
  4682. "y": 0,
  4683. "z": 0,
  4684. "w": 1
  4685. },
  4686. "_skewX": 0,
  4687. "_skewY": 0,
  4688. "_zIndex": 0,
  4689. "_is3DNode": false,
  4690. "groupIndex": 0,
  4691. "_id": "ebOSrd8mVMBYJby8MkwJCN"
  4692. },
  4693. {
  4694. "__type__": "cc.Sprite",
  4695. "_name": "",
  4696. "_objFlags": 0,
  4697. "node": {
  4698. "__id__": 109
  4699. },
  4700. "_enabled": true,
  4701. "_srcBlendFactor": 770,
  4702. "_dstBlendFactor": 771,
  4703. "_spriteFrame": {
  4704. "__uuid__": "0aea11db-03a2-4318-9838-258de551dc41"
  4705. },
  4706. "_type": 0,
  4707. "_sizeMode": 1,
  4708. "_fillType": 0,
  4709. "_fillCenter": {
  4710. "__type__": "cc.Vec2",
  4711. "x": 0,
  4712. "y": 0
  4713. },
  4714. "_fillStart": 0,
  4715. "_fillRange": 0,
  4716. "_isTrimmedMode": true,
  4717. "_state": 0,
  4718. "_atlas": null,
  4719. "_id": "bfDSv/RwtFiZSLEHipHf5E"
  4720. },
  4721. {
  4722. "__type__": "cc.Node",
  4723. "_name": "Dragon_2_tex",
  4724. "_objFlags": 0,
  4725. "_parent": {
  4726. "__id__": 90
  4727. },
  4728. "_children": [],
  4729. "_active": true,
  4730. "_level": 2,
  4731. "_components": [
  4732. {
  4733. "__id__": 112
  4734. }
  4735. ],
  4736. "_prefab": null,
  4737. "_opacity": 255,
  4738. "_color": {
  4739. "__type__": "cc.Color",
  4740. "r": 255,
  4741. "g": 255,
  4742. "b": 255,
  4743. "a": 255
  4744. },
  4745. "_contentSize": {
  4746. "__type__": "cc.Size",
  4747. "width": 566,
  4748. "height": 1018
  4749. },
  4750. "_anchorPoint": {
  4751. "__type__": "cc.Vec2",
  4752. "x": 0.5,
  4753. "y": 0.5
  4754. },
  4755. "_position": {
  4756. "__type__": "cc.Vec3",
  4757. "x": 0,
  4758. "y": 0,
  4759. "z": 0
  4760. },
  4761. "_scale": {
  4762. "__type__": "cc.Vec3",
  4763. "x": 1,
  4764. "y": 1,
  4765. "z": 1
  4766. },
  4767. "_quat": {
  4768. "__type__": "cc.Quat",
  4769. "x": 0,
  4770. "y": 0,
  4771. "z": 0,
  4772. "w": 1
  4773. },
  4774. "_skewX": 0,
  4775. "_skewY": 0,
  4776. "_zIndex": 0,
  4777. "_is3DNode": false,
  4778. "groupIndex": 0,
  4779. "_id": "fb8GpkPdVBA7TlRFRsW/VG"
  4780. },
  4781. {
  4782. "__type__": "cc.Sprite",
  4783. "_name": "",
  4784. "_objFlags": 0,
  4785. "node": {
  4786. "__id__": 111
  4787. },
  4788. "_enabled": true,
  4789. "_srcBlendFactor": 770,
  4790. "_dstBlendFactor": 771,
  4791. "_spriteFrame": {
  4792. "__uuid__": "81954523-28e3-40a3-aa3a-b90b06d9f69d"
  4793. },
  4794. "_type": 0,
  4795. "_sizeMode": 1,
  4796. "_fillType": 0,
  4797. "_fillCenter": {
  4798. "__type__": "cc.Vec2",
  4799. "x": 0,
  4800. "y": 0
  4801. },
  4802. "_fillStart": 0,
  4803. "_fillRange": 0,
  4804. "_isTrimmedMode": true,
  4805. "_state": 0,
  4806. "_atlas": null,
  4807. "_id": "baw2ynqCtB7og2+L5+C/SZ"
  4808. }
  4809. ]