MainScene.scene 82 KB

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