game.scene 81 KB

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