game.scene 90 KB

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