game.scene 84 KB

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