game.scene 84 KB

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