game.scene 89 KB

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