game.scene 94 KB

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