game.scene 92 KB

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