game.scene 91 KB

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