FightingUI.prefab 92 KB

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