game.scene 93 KB

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