MainScene.scene 53 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919
  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__": 74
  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__": 75
  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__": 8
  78. },
  79. {
  80. "__id__": 11
  81. },
  82. {
  83. "__id__": 17
  84. },
  85. {
  86. "__id__": 66
  87. }
  88. ],
  89. "_active": true,
  90. "_components": [
  91. {
  92. "__id__": 70
  93. },
  94. {
  95. "__id__": 71
  96. },
  97. {
  98. "__id__": 72
  99. },
  100. {
  101. "__id__": 73
  102. }
  103. ],
  104. "_prefab": null,
  105. "_lpos": {
  106. "__type__": "cc.Vec3",
  107. "x": 480,
  108. "y": 320.00000000000006,
  109. "z": 0
  110. },
  111. "_lrot": {
  112. "__type__": "cc.Quat",
  113. "x": 0,
  114. "y": 0,
  115. "z": 0,
  116. "w": 1
  117. },
  118. "_lscale": {
  119. "__type__": "cc.Vec3",
  120. "x": 1,
  121. "y": 1,
  122. "z": 1
  123. },
  124. "_mobility": 0,
  125. "_layer": 33554432,
  126. "_euler": {
  127. "__type__": "cc.Vec3",
  128. "x": 0,
  129. "y": 0,
  130. "z": 0
  131. },
  132. "_id": "beI88Z2HpFELqR4T5EMHpg"
  133. },
  134. {
  135. "__type__": "cc.Node",
  136. "_name": "Camera",
  137. "_objFlags": 0,
  138. "__editorExtras__": {},
  139. "_parent": {
  140. "__id__": 2
  141. },
  142. "_children": [],
  143. "_active": true,
  144. "_components": [
  145. {
  146. "__id__": 4
  147. }
  148. ],
  149. "_prefab": null,
  150. "_lpos": {
  151. "__type__": "cc.Vec3",
  152. "x": 0,
  153. "y": 0,
  154. "z": 1000
  155. },
  156. "_lrot": {
  157. "__type__": "cc.Quat",
  158. "x": 0,
  159. "y": 0,
  160. "z": 0,
  161. "w": 1
  162. },
  163. "_lscale": {
  164. "__type__": "cc.Vec3",
  165. "x": 1,
  166. "y": 1,
  167. "z": 1
  168. },
  169. "_mobility": 0,
  170. "_layer": 1073741824,
  171. "_euler": {
  172. "__type__": "cc.Vec3",
  173. "x": 0,
  174. "y": 0,
  175. "z": 0
  176. },
  177. "_id": "ebFwiq8gBFaYpqYbdoDODe"
  178. },
  179. {
  180. "__type__": "cc.Camera",
  181. "_name": "",
  182. "_objFlags": 0,
  183. "__editorExtras__": {},
  184. "node": {
  185. "__id__": 3
  186. },
  187. "_enabled": true,
  188. "__prefab": null,
  189. "_projection": 0,
  190. "_priority": 0,
  191. "_fov": 45,
  192. "_fovAxis": 0,
  193. "_orthoHeight": 320,
  194. "_near": 0,
  195. "_far": 1000,
  196. "_color": {
  197. "__type__": "cc.Color",
  198. "r": 0,
  199. "g": 0,
  200. "b": 0,
  201. "a": 255
  202. },
  203. "_depth": 1,
  204. "_stencil": 0,
  205. "_clearFlags": 7,
  206. "_rect": {
  207. "__type__": "cc.Rect",
  208. "x": 0,
  209. "y": 0,
  210. "width": 1,
  211. "height": 1
  212. },
  213. "_aperture": 19,
  214. "_shutter": 7,
  215. "_iso": 0,
  216. "_screenScale": 1,
  217. "_visibility": 1108344832,
  218. "_targetTexture": null,
  219. "_postProcess": null,
  220. "_usePostProcess": false,
  221. "_cameraType": -1,
  222. "_trackingType": 0,
  223. "_id": "63WIch3o5BEYRlXzTT0oWc"
  224. },
  225. {
  226. "__type__": "cc.Node",
  227. "_name": "BG",
  228. "_objFlags": 0,
  229. "__editorExtras__": {},
  230. "_parent": {
  231. "__id__": 2
  232. },
  233. "_children": [],
  234. "_active": true,
  235. "_components": [
  236. {
  237. "__id__": 6
  238. },
  239. {
  240. "__id__": 7
  241. }
  242. ],
  243. "_prefab": null,
  244. "_lpos": {
  245. "__type__": "cc.Vec3",
  246. "x": 0,
  247. "y": 0,
  248. "z": 0
  249. },
  250. "_lrot": {
  251. "__type__": "cc.Quat",
  252. "x": 0,
  253. "y": 0,
  254. "z": 0,
  255. "w": 1
  256. },
  257. "_lscale": {
  258. "__type__": "cc.Vec3",
  259. "x": 1,
  260. "y": 1,
  261. "z": 1
  262. },
  263. "_mobility": 0,
  264. "_layer": 33554432,
  265. "_euler": {
  266. "__type__": "cc.Vec3",
  267. "x": 0,
  268. "y": 0,
  269. "z": 0
  270. },
  271. "_id": "9fR0gTUQFCtbN/gYlUtyRM"
  272. },
  273. {
  274. "__type__": "cc.UITransform",
  275. "_name": "",
  276. "_objFlags": 0,
  277. "__editorExtras__": {},
  278. "node": {
  279. "__id__": 5
  280. },
  281. "_enabled": true,
  282. "__prefab": null,
  283. "_contentSize": {
  284. "__type__": "cc.Size",
  285. "width": 960,
  286. "height": 640
  287. },
  288. "_anchorPoint": {
  289. "__type__": "cc.Vec2",
  290. "x": 0.5,
  291. "y": 0.5
  292. },
  293. "_id": "13orXE9+VDA5q1zLaASh0T"
  294. },
  295. {
  296. "__type__": "cc.Sprite",
  297. "_name": "",
  298. "_objFlags": 0,
  299. "__editorExtras__": {},
  300. "node": {
  301. "__id__": 5
  302. },
  303. "_enabled": true,
  304. "__prefab": null,
  305. "_customMaterial": null,
  306. "_srcBlendFactor": 2,
  307. "_dstBlendFactor": 4,
  308. "_color": {
  309. "__type__": "cc.Color",
  310. "r": 255,
  311. "g": 255,
  312. "b": 255,
  313. "a": 255
  314. },
  315. "_spriteFrame": {
  316. "__uuid__": "ec3f53f1-9074-4f81-8959-3bc19705926d@f9941",
  317. "__expectedType__": "cc.SpriteFrame"
  318. },
  319. "_type": 0,
  320. "_fillType": 0,
  321. "_sizeMode": 1,
  322. "_fillCenter": {
  323. "__type__": "cc.Vec2",
  324. "x": 0,
  325. "y": 0
  326. },
  327. "_fillStart": 0,
  328. "_fillRange": 0,
  329. "_isTrimmedMode": true,
  330. "_useGrayscale": false,
  331. "_atlas": null,
  332. "_id": "d5ADkT5QVKmrm0/7yOHLYU"
  333. },
  334. {
  335. "__type__": "cc.Node",
  336. "_name": "BG-hd.pvr.ccz",
  337. "_objFlags": 0,
  338. "__editorExtras__": {},
  339. "_parent": {
  340. "__id__": 2
  341. },
  342. "_children": [],
  343. "_active": true,
  344. "_components": [
  345. {
  346. "__id__": 9
  347. },
  348. {
  349. "__id__": 10
  350. }
  351. ],
  352. "_prefab": null,
  353. "_lpos": {
  354. "__type__": "cc.Vec3",
  355. "x": 0,
  356. "y": -87,
  357. "z": 0
  358. },
  359. "_lrot": {
  360. "__type__": "cc.Quat",
  361. "x": 0,
  362. "y": 0,
  363. "z": 0,
  364. "w": 1
  365. },
  366. "_lscale": {
  367. "__type__": "cc.Vec3",
  368. "x": 1,
  369. "y": 1,
  370. "z": 1
  371. },
  372. "_mobility": 0,
  373. "_layer": 33554432,
  374. "_euler": {
  375. "__type__": "cc.Vec3",
  376. "x": 0,
  377. "y": 0,
  378. "z": 0
  379. },
  380. "_id": "aborHamhBJqaZ5biE3MUfz"
  381. },
  382. {
  383. "__type__": "cc.UITransform",
  384. "_name": "",
  385. "_objFlags": 0,
  386. "__editorExtras__": {},
  387. "node": {
  388. "__id__": 8
  389. },
  390. "_enabled": true,
  391. "__prefab": null,
  392. "_contentSize": {
  393. "__type__": "cc.Size",
  394. "width": 960,
  395. "height": 464
  396. },
  397. "_anchorPoint": {
  398. "__type__": "cc.Vec2",
  399. "x": 0.5,
  400. "y": 0.5
  401. },
  402. "_id": "d9v7Gg1kxDSbf3XgCfJ9Hh"
  403. },
  404. {
  405. "__type__": "cc.Sprite",
  406. "_name": "",
  407. "_objFlags": 0,
  408. "__editorExtras__": {},
  409. "node": {
  410. "__id__": 8
  411. },
  412. "_enabled": true,
  413. "__prefab": null,
  414. "_customMaterial": null,
  415. "_srcBlendFactor": 2,
  416. "_dstBlendFactor": 4,
  417. "_color": {
  418. "__type__": "cc.Color",
  419. "r": 255,
  420. "g": 255,
  421. "b": 255,
  422. "a": 255
  423. },
  424. "_spriteFrame": {
  425. "__uuid__": "f686ec0a-8f9f-448d-b083-c8e0506a7a82@f9941",
  426. "__expectedType__": "cc.SpriteFrame"
  427. },
  428. "_type": 0,
  429. "_fillType": 0,
  430. "_sizeMode": 1,
  431. "_fillCenter": {
  432. "__type__": "cc.Vec2",
  433. "x": 0,
  434. "y": 0
  435. },
  436. "_fillStart": 0,
  437. "_fillRange": 0,
  438. "_isTrimmedMode": true,
  439. "_useGrayscale": false,
  440. "_atlas": null,
  441. "_id": "43vpgn24pFVbb6v7SuW6Qa"
  442. },
  443. {
  444. "__type__": "cc.Node",
  445. "_name": "TiledMap",
  446. "_objFlags": 0,
  447. "__editorExtras__": {},
  448. "_parent": {
  449. "__id__": 2
  450. },
  451. "_children": [
  452. {
  453. "__id__": 12
  454. }
  455. ],
  456. "_active": true,
  457. "_components": [
  458. {
  459. "__id__": 15
  460. },
  461. {
  462. "__id__": 16
  463. }
  464. ],
  465. "_prefab": null,
  466. "_lpos": {
  467. "__type__": "cc.Vec3",
  468. "x": 0,
  469. "y": 0,
  470. "z": 0
  471. },
  472. "_lrot": {
  473. "__type__": "cc.Quat",
  474. "x": 0,
  475. "y": 0,
  476. "z": 0,
  477. "w": 1
  478. },
  479. "_lscale": {
  480. "__type__": "cc.Vec3",
  481. "x": 1,
  482. "y": 1,
  483. "z": 1
  484. },
  485. "_mobility": 0,
  486. "_layer": 33554432,
  487. "_euler": {
  488. "__type__": "cc.Vec3",
  489. "x": 0,
  490. "y": 0,
  491. "z": 0
  492. },
  493. "_id": "464WciIwRE2bKX1Ev0vM25"
  494. },
  495. {
  496. "__type__": "cc.Node",
  497. "_name": "PATH",
  498. "_objFlags": 0,
  499. "__editorExtras__": {},
  500. "_parent": {
  501. "__id__": 11
  502. },
  503. "_children": [],
  504. "_active": true,
  505. "_components": [
  506. {
  507. "__id__": 13
  508. },
  509. {
  510. "__id__": 14
  511. }
  512. ],
  513. "_prefab": null,
  514. "_lpos": {
  515. "__type__": "cc.Vec3",
  516. "x": 0,
  517. "y": 0,
  518. "z": 0
  519. },
  520. "_lrot": {
  521. "__type__": "cc.Quat",
  522. "x": 0,
  523. "y": 0,
  524. "z": 0,
  525. "w": 1
  526. },
  527. "_lscale": {
  528. "__type__": "cc.Vec3",
  529. "x": 1,
  530. "y": 1,
  531. "z": 1
  532. },
  533. "_mobility": 0,
  534. "_layer": 33554432,
  535. "_euler": {
  536. "__type__": "cc.Vec3",
  537. "x": 0,
  538. "y": 0,
  539. "z": 0
  540. },
  541. "_id": "beOfwBScxEcKuTaJZfENzv"
  542. },
  543. {
  544. "__type__": "cc.UITransform",
  545. "_name": "",
  546. "_objFlags": 0,
  547. "__editorExtras__": {},
  548. "node": {
  549. "__id__": 12
  550. },
  551. "_enabled": true,
  552. "__prefab": null,
  553. "_contentSize": {
  554. "__type__": "cc.Size",
  555. "width": 960,
  556. "height": 640
  557. },
  558. "_anchorPoint": {
  559. "__type__": "cc.Vec2",
  560. "x": 0.5,
  561. "y": 0.5
  562. },
  563. "_id": "b90Sq4UyFFE5Fh0B9kjHWL"
  564. },
  565. {
  566. "__type__": "cc.TiledObjectGroup",
  567. "_name": "",
  568. "_objFlags": 0,
  569. "__editorExtras__": {},
  570. "node": {
  571. "__id__": 12
  572. },
  573. "_enabled": true,
  574. "__prefab": null,
  575. "_id": "52Qw2KI+5FWZFNIXgXqh8D"
  576. },
  577. {
  578. "__type__": "cc.UITransform",
  579. "_name": "",
  580. "_objFlags": 0,
  581. "__editorExtras__": {},
  582. "node": {
  583. "__id__": 11
  584. },
  585. "_enabled": true,
  586. "__prefab": null,
  587. "_contentSize": {
  588. "__type__": "cc.Size",
  589. "width": 960,
  590. "height": 640
  591. },
  592. "_anchorPoint": {
  593. "__type__": "cc.Vec2",
  594. "x": 0.5,
  595. "y": 0.5
  596. },
  597. "_id": "e0iwQFVZ5GPI3mZn02DTsj"
  598. },
  599. {
  600. "__type__": "cc.TiledMap",
  601. "_name": "",
  602. "_objFlags": 0,
  603. "__editorExtras__": {},
  604. "node": {
  605. "__id__": 11
  606. },
  607. "_enabled": true,
  608. "__prefab": null,
  609. "_tmxFile": {
  610. "__uuid__": "426751d3-a783-4ff7-a35d-57f3bc5e3248",
  611. "__expectedType__": "cc.TiledMapAsset"
  612. },
  613. "_enableCulling": true,
  614. "cleanupImageCache": true,
  615. "_id": "63H2ptGSRHwo87fcaipxMt"
  616. },
  617. {
  618. "__type__": "cc.Node",
  619. "_name": "Menu",
  620. "_objFlags": 0,
  621. "__editorExtras__": {},
  622. "_parent": {
  623. "__id__": 2
  624. },
  625. "_children": [
  626. {
  627. "__id__": 18
  628. },
  629. {
  630. "__id__": 21
  631. },
  632. {
  633. "__id__": 24
  634. },
  635. {
  636. "__id__": 29
  637. },
  638. {
  639. "__id__": 34
  640. },
  641. {
  642. "__id__": 39
  643. }
  644. ],
  645. "_active": true,
  646. "_components": [
  647. {
  648. "__id__": 65
  649. }
  650. ],
  651. "_prefab": null,
  652. "_lpos": {
  653. "__type__": "cc.Vec3",
  654. "x": 0,
  655. "y": 0,
  656. "z": 0
  657. },
  658. "_lrot": {
  659. "__type__": "cc.Quat",
  660. "x": 0,
  661. "y": 0,
  662. "z": 0,
  663. "w": 1
  664. },
  665. "_lscale": {
  666. "__type__": "cc.Vec3",
  667. "x": 1,
  668. "y": 1,
  669. "z": 1
  670. },
  671. "_mobility": 0,
  672. "_layer": 1073741824,
  673. "_euler": {
  674. "__type__": "cc.Vec3",
  675. "x": 0,
  676. "y": 0,
  677. "z": 0
  678. },
  679. "_id": "d3WeX0WEtJX4kiipR2G07m"
  680. },
  681. {
  682. "__type__": "cc.Node",
  683. "_name": "MenuBG",
  684. "_objFlags": 0,
  685. "__editorExtras__": {},
  686. "_parent": {
  687. "__id__": 17
  688. },
  689. "_children": [],
  690. "_active": true,
  691. "_components": [
  692. {
  693. "__id__": 19
  694. },
  695. {
  696. "__id__": 20
  697. }
  698. ],
  699. "_prefab": null,
  700. "_lpos": {
  701. "__type__": "cc.Vec3",
  702. "x": 0,
  703. "y": 280,
  704. "z": 0
  705. },
  706. "_lrot": {
  707. "__type__": "cc.Quat",
  708. "x": 0,
  709. "y": 0,
  710. "z": 0,
  711. "w": 1
  712. },
  713. "_lscale": {
  714. "__type__": "cc.Vec3",
  715. "x": 1,
  716. "y": 1,
  717. "z": 1
  718. },
  719. "_mobility": 0,
  720. "_layer": 33554432,
  721. "_euler": {
  722. "__type__": "cc.Vec3",
  723. "x": 0,
  724. "y": 0,
  725. "z": 0
  726. },
  727. "_id": "8bYU8jTR9MT7V9n5tcrB6r"
  728. },
  729. {
  730. "__type__": "cc.UITransform",
  731. "_name": "",
  732. "_objFlags": 0,
  733. "__editorExtras__": {},
  734. "node": {
  735. "__id__": 18
  736. },
  737. "_enabled": true,
  738. "__prefab": null,
  739. "_contentSize": {
  740. "__type__": "cc.Size",
  741. "width": 926,
  742. "height": 78
  743. },
  744. "_anchorPoint": {
  745. "__type__": "cc.Vec2",
  746. "x": 0.5,
  747. "y": 0.5
  748. },
  749. "_id": "4aghtgxRJEyab6Ks6LjV5e"
  750. },
  751. {
  752. "__type__": "cc.Sprite",
  753. "_name": "",
  754. "_objFlags": 0,
  755. "__editorExtras__": {},
  756. "node": {
  757. "__id__": 18
  758. },
  759. "_enabled": true,
  760. "__prefab": null,
  761. "_customMaterial": null,
  762. "_srcBlendFactor": 2,
  763. "_dstBlendFactor": 4,
  764. "_color": {
  765. "__type__": "cc.Color",
  766. "r": 255,
  767. "g": 255,
  768. "b": 255,
  769. "a": 255
  770. },
  771. "_spriteFrame": {
  772. "__uuid__": "e104c27b-9803-4bed-bb01-f58171e15ac9@9e3f8",
  773. "__expectedType__": "cc.SpriteFrame"
  774. },
  775. "_type": 0,
  776. "_fillType": 0,
  777. "_sizeMode": 1,
  778. "_fillCenter": {
  779. "__type__": "cc.Vec2",
  780. "x": 0,
  781. "y": 0
  782. },
  783. "_fillStart": 0,
  784. "_fillRange": 0,
  785. "_isTrimmedMode": true,
  786. "_useGrayscale": false,
  787. "_atlas": null,
  788. "_id": "b3YECm2ixHx41+pDbllL9X"
  789. },
  790. {
  791. "__type__": "cc.Node",
  792. "_name": "MenuCenter_01_CN",
  793. "_objFlags": 0,
  794. "__editorExtras__": {},
  795. "_parent": {
  796. "__id__": 17
  797. },
  798. "_children": [],
  799. "_active": true,
  800. "_components": [
  801. {
  802. "__id__": 22
  803. },
  804. {
  805. "__id__": 23
  806. }
  807. ],
  808. "_prefab": null,
  809. "_lpos": {
  810. "__type__": "cc.Vec3",
  811. "x": 0,
  812. "y": 288,
  813. "z": 0
  814. },
  815. "_lrot": {
  816. "__type__": "cc.Quat",
  817. "x": 0,
  818. "y": 0,
  819. "z": 0,
  820. "w": 1
  821. },
  822. "_lscale": {
  823. "__type__": "cc.Vec3",
  824. "x": 1,
  825. "y": 1,
  826. "z": 1
  827. },
  828. "_mobility": 0,
  829. "_layer": 1073741824,
  830. "_euler": {
  831. "__type__": "cc.Vec3",
  832. "x": 0,
  833. "y": 0,
  834. "z": 0
  835. },
  836. "_id": "5e5OuKwZZGv7Lq1zQQgEyN"
  837. },
  838. {
  839. "__type__": "cc.UITransform",
  840. "_name": "",
  841. "_objFlags": 0,
  842. "__editorExtras__": {},
  843. "node": {
  844. "__id__": 21
  845. },
  846. "_enabled": true,
  847. "__prefab": null,
  848. "_contentSize": {
  849. "__type__": "cc.Size",
  850. "width": 236,
  851. "height": 52
  852. },
  853. "_anchorPoint": {
  854. "__type__": "cc.Vec2",
  855. "x": 0.5,
  856. "y": 0.5
  857. },
  858. "_id": "1e6NnK82BCs7IiBPEZTSKl"
  859. },
  860. {
  861. "__type__": "cc.Sprite",
  862. "_name": "",
  863. "_objFlags": 0,
  864. "__editorExtras__": {},
  865. "node": {
  866. "__id__": 21
  867. },
  868. "_enabled": true,
  869. "__prefab": null,
  870. "_customMaterial": null,
  871. "_srcBlendFactor": 2,
  872. "_dstBlendFactor": 4,
  873. "_color": {
  874. "__type__": "cc.Color",
  875. "r": 255,
  876. "g": 255,
  877. "b": 255,
  878. "a": 255
  879. },
  880. "_spriteFrame": {
  881. "__uuid__": "e104c27b-9803-4bed-bb01-f58171e15ac9@6a672",
  882. "__expectedType__": "cc.SpriteFrame"
  883. },
  884. "_type": 0,
  885. "_fillType": 0,
  886. "_sizeMode": 1,
  887. "_fillCenter": {
  888. "__type__": "cc.Vec2",
  889. "x": 0,
  890. "y": 0
  891. },
  892. "_fillStart": 0,
  893. "_fillRange": 0,
  894. "_isTrimmedMode": true,
  895. "_useGrayscale": false,
  896. "_atlas": null,
  897. "_id": "72vdZGDldAu7xNptG8Gs91"
  898. },
  899. {
  900. "__type__": "cc.Node",
  901. "_name": "BtnMore",
  902. "_objFlags": 0,
  903. "__editorExtras__": {},
  904. "_parent": {
  905. "__id__": 17
  906. },
  907. "_children": [],
  908. "_active": true,
  909. "_components": [
  910. {
  911. "__id__": 25
  912. },
  913. {
  914. "__id__": 26
  915. },
  916. {
  917. "__id__": 27
  918. }
  919. ],
  920. "_prefab": null,
  921. "_lpos": {
  922. "__type__": "cc.Vec3",
  923. "x": 400,
  924. "y": 288,
  925. "z": 0
  926. },
  927. "_lrot": {
  928. "__type__": "cc.Quat",
  929. "x": 0,
  930. "y": 0,
  931. "z": 0,
  932. "w": 1
  933. },
  934. "_lscale": {
  935. "__type__": "cc.Vec3",
  936. "x": 1,
  937. "y": 1,
  938. "z": 1
  939. },
  940. "_mobility": 0,
  941. "_layer": 1073741824,
  942. "_euler": {
  943. "__type__": "cc.Vec3",
  944. "x": 0,
  945. "y": 0,
  946. "z": 0
  947. },
  948. "_id": "18S40KtjtKdIz4GkMOTQvk"
  949. },
  950. {
  951. "__type__": "cc.UITransform",
  952. "_name": "",
  953. "_objFlags": 0,
  954. "__editorExtras__": {},
  955. "node": {
  956. "__id__": 24
  957. },
  958. "_enabled": true,
  959. "__prefab": null,
  960. "_contentSize": {
  961. "__type__": "cc.Size",
  962. "width": 56,
  963. "height": 56
  964. },
  965. "_anchorPoint": {
  966. "__type__": "cc.Vec2",
  967. "x": 0.5,
  968. "y": 0.5
  969. },
  970. "_id": "a2Ti2WYRRFBYkGfdimBefl"
  971. },
  972. {
  973. "__type__": "cc.Sprite",
  974. "_name": "",
  975. "_objFlags": 0,
  976. "__editorExtras__": {},
  977. "node": {
  978. "__id__": 24
  979. },
  980. "_enabled": true,
  981. "__prefab": null,
  982. "_customMaterial": null,
  983. "_srcBlendFactor": 2,
  984. "_dstBlendFactor": 4,
  985. "_color": {
  986. "__type__": "cc.Color",
  987. "r": 255,
  988. "g": 255,
  989. "b": 255,
  990. "a": 255
  991. },
  992. "_spriteFrame": {
  993. "__uuid__": "e104c27b-9803-4bed-bb01-f58171e15ac9@598ce",
  994. "__expectedType__": "cc.SpriteFrame"
  995. },
  996. "_type": 1,
  997. "_fillType": 0,
  998. "_sizeMode": 0,
  999. "_fillCenter": {
  1000. "__type__": "cc.Vec2",
  1001. "x": 0,
  1002. "y": 0
  1003. },
  1004. "_fillStart": 0,
  1005. "_fillRange": 0,
  1006. "_isTrimmedMode": true,
  1007. "_useGrayscale": false,
  1008. "_atlas": null,
  1009. "_id": "f61X3Fmk9FD5TMq3Euk5NY"
  1010. },
  1011. {
  1012. "__type__": "cc.Button",
  1013. "_name": "",
  1014. "_objFlags": 0,
  1015. "__editorExtras__": {},
  1016. "node": {
  1017. "__id__": 24
  1018. },
  1019. "_enabled": true,
  1020. "__prefab": null,
  1021. "clickEvents": [
  1022. {
  1023. "__id__": 28
  1024. }
  1025. ],
  1026. "_interactable": true,
  1027. "_transition": 2,
  1028. "_normalColor": {
  1029. "__type__": "cc.Color",
  1030. "r": 214,
  1031. "g": 214,
  1032. "b": 214,
  1033. "a": 255
  1034. },
  1035. "_hoverColor": {
  1036. "__type__": "cc.Color",
  1037. "r": 211,
  1038. "g": 211,
  1039. "b": 211,
  1040. "a": 255
  1041. },
  1042. "_pressedColor": {
  1043. "__type__": "cc.Color",
  1044. "r": 255,
  1045. "g": 255,
  1046. "b": 255,
  1047. "a": 255
  1048. },
  1049. "_disabledColor": {
  1050. "__type__": "cc.Color",
  1051. "r": 124,
  1052. "g": 124,
  1053. "b": 124,
  1054. "a": 255
  1055. },
  1056. "_normalSprite": {
  1057. "__uuid__": "e104c27b-9803-4bed-bb01-f58171e15ac9@598ce",
  1058. "__expectedType__": "cc.SpriteFrame"
  1059. },
  1060. "_hoverSprite": null,
  1061. "_pressedSprite": {
  1062. "__uuid__": "e104c27b-9803-4bed-bb01-f58171e15ac9@7e74d",
  1063. "__expectedType__": "cc.SpriteFrame"
  1064. },
  1065. "_disabledSprite": null,
  1066. "_duration": 0.1,
  1067. "_zoomScale": 1.2,
  1068. "_target": {
  1069. "__id__": 24
  1070. },
  1071. "_id": "6c3/yliSlBXaPBHmzqqCfd"
  1072. },
  1073. {
  1074. "__type__": "cc.ClickEvent",
  1075. "target": {
  1076. "__id__": 17
  1077. },
  1078. "component": "",
  1079. "_componentId": "fbfafaCmx9I1L+QDG/G50o5",
  1080. "handler": "onBtnMore",
  1081. "customEventData": ""
  1082. },
  1083. {
  1084. "__type__": "cc.Node",
  1085. "_name": "BtnPause",
  1086. "_objFlags": 0,
  1087. "__editorExtras__": {},
  1088. "_parent": {
  1089. "__id__": 17
  1090. },
  1091. "_children": [],
  1092. "_active": true,
  1093. "_components": [
  1094. {
  1095. "__id__": 30
  1096. },
  1097. {
  1098. "__id__": 31
  1099. },
  1100. {
  1101. "__id__": 32
  1102. }
  1103. ],
  1104. "_prefab": null,
  1105. "_lpos": {
  1106. "__type__": "cc.Vec3",
  1107. "x": 300,
  1108. "y": 288,
  1109. "z": 0
  1110. },
  1111. "_lrot": {
  1112. "__type__": "cc.Quat",
  1113. "x": 0,
  1114. "y": 0,
  1115. "z": 0,
  1116. "w": 1
  1117. },
  1118. "_lscale": {
  1119. "__type__": "cc.Vec3",
  1120. "x": 1,
  1121. "y": 1,
  1122. "z": 1
  1123. },
  1124. "_mobility": 0,
  1125. "_layer": 1073741824,
  1126. "_euler": {
  1127. "__type__": "cc.Vec3",
  1128. "x": 0,
  1129. "y": 0,
  1130. "z": 0
  1131. },
  1132. "_id": "c2taM3oS9JyJZVlNvw7UMj"
  1133. },
  1134. {
  1135. "__type__": "cc.UITransform",
  1136. "_name": "",
  1137. "_objFlags": 0,
  1138. "__editorExtras__": {},
  1139. "node": {
  1140. "__id__": 29
  1141. },
  1142. "_enabled": true,
  1143. "__prefab": null,
  1144. "_contentSize": {
  1145. "__type__": "cc.Size",
  1146. "width": 56,
  1147. "height": 56
  1148. },
  1149. "_anchorPoint": {
  1150. "__type__": "cc.Vec2",
  1151. "x": 0.5,
  1152. "y": 0.5
  1153. },
  1154. "_id": "b5z/fdacRPv6Vruax7rQsB"
  1155. },
  1156. {
  1157. "__type__": "cc.Sprite",
  1158. "_name": "",
  1159. "_objFlags": 0,
  1160. "__editorExtras__": {},
  1161. "node": {
  1162. "__id__": 29
  1163. },
  1164. "_enabled": true,
  1165. "__prefab": null,
  1166. "_customMaterial": null,
  1167. "_srcBlendFactor": 2,
  1168. "_dstBlendFactor": 4,
  1169. "_color": {
  1170. "__type__": "cc.Color",
  1171. "r": 255,
  1172. "g": 255,
  1173. "b": 255,
  1174. "a": 255
  1175. },
  1176. "_spriteFrame": {
  1177. "__uuid__": "e104c27b-9803-4bed-bb01-f58171e15ac9@920e2",
  1178. "__expectedType__": "cc.SpriteFrame"
  1179. },
  1180. "_type": 1,
  1181. "_fillType": 0,
  1182. "_sizeMode": 0,
  1183. "_fillCenter": {
  1184. "__type__": "cc.Vec2",
  1185. "x": 0,
  1186. "y": 0
  1187. },
  1188. "_fillStart": 0,
  1189. "_fillRange": 0,
  1190. "_isTrimmedMode": true,
  1191. "_useGrayscale": false,
  1192. "_atlas": null,
  1193. "_id": "62rWSbGm1LHbKbuf5EjwT/"
  1194. },
  1195. {
  1196. "__type__": "cc.Button",
  1197. "_name": "",
  1198. "_objFlags": 0,
  1199. "__editorExtras__": {},
  1200. "node": {
  1201. "__id__": 29
  1202. },
  1203. "_enabled": true,
  1204. "__prefab": null,
  1205. "clickEvents": [
  1206. {
  1207. "__id__": 33
  1208. }
  1209. ],
  1210. "_interactable": true,
  1211. "_transition": 3,
  1212. "_normalColor": {
  1213. "__type__": "cc.Color",
  1214. "r": 214,
  1215. "g": 214,
  1216. "b": 214,
  1217. "a": 255
  1218. },
  1219. "_hoverColor": {
  1220. "__type__": "cc.Color",
  1221. "r": 211,
  1222. "g": 211,
  1223. "b": 211,
  1224. "a": 255
  1225. },
  1226. "_pressedColor": {
  1227. "__type__": "cc.Color",
  1228. "r": 255,
  1229. "g": 255,
  1230. "b": 255,
  1231. "a": 255
  1232. },
  1233. "_disabledColor": {
  1234. "__type__": "cc.Color",
  1235. "r": 124,
  1236. "g": 124,
  1237. "b": 124,
  1238. "a": 255
  1239. },
  1240. "_normalSprite": {
  1241. "__uuid__": "e104c27b-9803-4bed-bb01-f58171e15ac9@920e2",
  1242. "__expectedType__": "cc.SpriteFrame"
  1243. },
  1244. "_hoverSprite": null,
  1245. "_pressedSprite": {
  1246. "__uuid__": "e104c27b-9803-4bed-bb01-f58171e15ac9@ff7c9",
  1247. "__expectedType__": "cc.SpriteFrame"
  1248. },
  1249. "_disabledSprite": null,
  1250. "_duration": 0.1,
  1251. "_zoomScale": 1.2,
  1252. "_target": {
  1253. "__id__": 29
  1254. },
  1255. "_id": "b6XBtfRZNIlZ/DmmsFIcdP"
  1256. },
  1257. {
  1258. "__type__": "cc.ClickEvent",
  1259. "target": {
  1260. "__id__": 17
  1261. },
  1262. "component": "",
  1263. "_componentId": "fbfafaCmx9I1L+QDG/G50o5",
  1264. "handler": "onBtnPause",
  1265. "customEventData": ""
  1266. },
  1267. {
  1268. "__type__": "cc.Node",
  1269. "_name": "BtnSpeed",
  1270. "_objFlags": 0,
  1271. "__editorExtras__": {},
  1272. "_parent": {
  1273. "__id__": 17
  1274. },
  1275. "_children": [],
  1276. "_active": true,
  1277. "_components": [
  1278. {
  1279. "__id__": 35
  1280. },
  1281. {
  1282. "__id__": 36
  1283. },
  1284. {
  1285. "__id__": 37
  1286. }
  1287. ],
  1288. "_prefab": null,
  1289. "_lpos": {
  1290. "__type__": "cc.Vec3",
  1291. "x": 200,
  1292. "y": 288,
  1293. "z": 0
  1294. },
  1295. "_lrot": {
  1296. "__type__": "cc.Quat",
  1297. "x": 0,
  1298. "y": 0,
  1299. "z": 0,
  1300. "w": 1
  1301. },
  1302. "_lscale": {
  1303. "__type__": "cc.Vec3",
  1304. "x": 1,
  1305. "y": 1,
  1306. "z": 1
  1307. },
  1308. "_mobility": 0,
  1309. "_layer": 1073741824,
  1310. "_euler": {
  1311. "__type__": "cc.Vec3",
  1312. "x": 0,
  1313. "y": 0,
  1314. "z": 0
  1315. },
  1316. "_id": "087ibc6IZLLZx8I/qQgBpk"
  1317. },
  1318. {
  1319. "__type__": "cc.UITransform",
  1320. "_name": "",
  1321. "_objFlags": 0,
  1322. "__editorExtras__": {},
  1323. "node": {
  1324. "__id__": 34
  1325. },
  1326. "_enabled": true,
  1327. "__prefab": null,
  1328. "_contentSize": {
  1329. "__type__": "cc.Size",
  1330. "width": 100,
  1331. "height": 58
  1332. },
  1333. "_anchorPoint": {
  1334. "__type__": "cc.Vec2",
  1335. "x": 0.5,
  1336. "y": 0.5
  1337. },
  1338. "_id": "51YwsoO7NLso/ulwZoiMoy"
  1339. },
  1340. {
  1341. "__type__": "cc.Sprite",
  1342. "_name": "",
  1343. "_objFlags": 0,
  1344. "__editorExtras__": {},
  1345. "node": {
  1346. "__id__": 34
  1347. },
  1348. "_enabled": true,
  1349. "__prefab": null,
  1350. "_customMaterial": null,
  1351. "_srcBlendFactor": 2,
  1352. "_dstBlendFactor": 4,
  1353. "_color": {
  1354. "__type__": "cc.Color",
  1355. "r": 255,
  1356. "g": 255,
  1357. "b": 255,
  1358. "a": 255
  1359. },
  1360. "_spriteFrame": {
  1361. "__uuid__": "e104c27b-9803-4bed-bb01-f58171e15ac9@326b4",
  1362. "__expectedType__": "cc.SpriteFrame"
  1363. },
  1364. "_type": 1,
  1365. "_fillType": 0,
  1366. "_sizeMode": 0,
  1367. "_fillCenter": {
  1368. "__type__": "cc.Vec2",
  1369. "x": 0,
  1370. "y": 0
  1371. },
  1372. "_fillStart": 0,
  1373. "_fillRange": 0,
  1374. "_isTrimmedMode": true,
  1375. "_useGrayscale": false,
  1376. "_atlas": null,
  1377. "_id": "c6TxCIQd1NzaOGMzcDXZ8+"
  1378. },
  1379. {
  1380. "__type__": "cc.Button",
  1381. "_name": "",
  1382. "_objFlags": 0,
  1383. "__editorExtras__": {},
  1384. "node": {
  1385. "__id__": 34
  1386. },
  1387. "_enabled": true,
  1388. "__prefab": null,
  1389. "clickEvents": [
  1390. {
  1391. "__id__": 38
  1392. }
  1393. ],
  1394. "_interactable": true,
  1395. "_transition": 3,
  1396. "_normalColor": {
  1397. "__type__": "cc.Color",
  1398. "r": 214,
  1399. "g": 214,
  1400. "b": 214,
  1401. "a": 255
  1402. },
  1403. "_hoverColor": {
  1404. "__type__": "cc.Color",
  1405. "r": 211,
  1406. "g": 211,
  1407. "b": 211,
  1408. "a": 255
  1409. },
  1410. "_pressedColor": {
  1411. "__type__": "cc.Color",
  1412. "r": 255,
  1413. "g": 255,
  1414. "b": 255,
  1415. "a": 255
  1416. },
  1417. "_disabledColor": {
  1418. "__type__": "cc.Color",
  1419. "r": 124,
  1420. "g": 124,
  1421. "b": 124,
  1422. "a": 255
  1423. },
  1424. "_normalSprite": {
  1425. "__uuid__": "e104c27b-9803-4bed-bb01-f58171e15ac9@326b4",
  1426. "__expectedType__": "cc.SpriteFrame"
  1427. },
  1428. "_hoverSprite": null,
  1429. "_pressedSprite": {
  1430. "__uuid__": "e104c27b-9803-4bed-bb01-f58171e15ac9@8ba7e",
  1431. "__expectedType__": "cc.SpriteFrame"
  1432. },
  1433. "_disabledSprite": null,
  1434. "_duration": 0.1,
  1435. "_zoomScale": 1.2,
  1436. "_target": {
  1437. "__id__": 34
  1438. },
  1439. "_id": "05S3dcU1RBqYQY01oDfm1l"
  1440. },
  1441. {
  1442. "__type__": "cc.ClickEvent",
  1443. "target": {
  1444. "__id__": 17
  1445. },
  1446. "component": "",
  1447. "_componentId": "fbfafaCmx9I1L+QDG/G50o5",
  1448. "handler": "onBtnSpeed",
  1449. "customEventData": ""
  1450. },
  1451. {
  1452. "__type__": "cc.Node",
  1453. "_name": "Dialog",
  1454. "_objFlags": 0,
  1455. "__editorExtras__": {},
  1456. "_parent": {
  1457. "__id__": 17
  1458. },
  1459. "_children": [
  1460. {
  1461. "__id__": 40
  1462. },
  1463. {
  1464. "__id__": 44
  1465. },
  1466. {
  1467. "__id__": 47
  1468. },
  1469. {
  1470. "__id__": 51
  1471. },
  1472. {
  1473. "__id__": 55
  1474. },
  1475. {
  1476. "__id__": 59
  1477. }
  1478. ],
  1479. "_active": false,
  1480. "_components": [
  1481. {
  1482. "__id__": 63
  1483. },
  1484. {
  1485. "__id__": 64
  1486. }
  1487. ],
  1488. "_prefab": null,
  1489. "_lpos": {
  1490. "__type__": "cc.Vec3",
  1491. "x": 0,
  1492. "y": 0,
  1493. "z": 0
  1494. },
  1495. "_lrot": {
  1496. "__type__": "cc.Quat",
  1497. "x": 0,
  1498. "y": 0,
  1499. "z": 0,
  1500. "w": 1
  1501. },
  1502. "_lscale": {
  1503. "__type__": "cc.Vec3",
  1504. "x": 1,
  1505. "y": 1,
  1506. "z": 1
  1507. },
  1508. "_mobility": 0,
  1509. "_layer": 1073741824,
  1510. "_euler": {
  1511. "__type__": "cc.Vec3",
  1512. "x": 0,
  1513. "y": 0,
  1514. "z": 0
  1515. },
  1516. "_id": "73N0CtWnNEn64SLyc61v0M"
  1517. },
  1518. {
  1519. "__type__": "cc.Node",
  1520. "_name": "BgOpacity",
  1521. "_objFlags": 0,
  1522. "__editorExtras__": {},
  1523. "_parent": {
  1524. "__id__": 39
  1525. },
  1526. "_children": [],
  1527. "_active": true,
  1528. "_components": [
  1529. {
  1530. "__id__": 41
  1531. },
  1532. {
  1533. "__id__": 42
  1534. },
  1535. {
  1536. "__id__": 43
  1537. }
  1538. ],
  1539. "_prefab": null,
  1540. "_lpos": {
  1541. "__type__": "cc.Vec3",
  1542. "x": 0,
  1543. "y": 0,
  1544. "z": 0
  1545. },
  1546. "_lrot": {
  1547. "__type__": "cc.Quat",
  1548. "x": 0,
  1549. "y": 0,
  1550. "z": 0,
  1551. "w": 1
  1552. },
  1553. "_lscale": {
  1554. "__type__": "cc.Vec3",
  1555. "x": 1,
  1556. "y": 1,
  1557. "z": 1
  1558. },
  1559. "_mobility": 0,
  1560. "_layer": 1073741824,
  1561. "_euler": {
  1562. "__type__": "cc.Vec3",
  1563. "x": 0,
  1564. "y": 0,
  1565. "z": 0
  1566. },
  1567. "_id": "adkujICQZEq51jm6KQFEJO"
  1568. },
  1569. {
  1570. "__type__": "cc.UITransform",
  1571. "_name": "",
  1572. "_objFlags": 0,
  1573. "__editorExtras__": {},
  1574. "node": {
  1575. "__id__": 40
  1576. },
  1577. "_enabled": true,
  1578. "__prefab": null,
  1579. "_contentSize": {
  1580. "__type__": "cc.Size",
  1581. "width": 960,
  1582. "height": 640
  1583. },
  1584. "_anchorPoint": {
  1585. "__type__": "cc.Vec2",
  1586. "x": 0.5,
  1587. "y": 0.5
  1588. },
  1589. "_id": "e1SYB1/PhOvpvipG1+GIqk"
  1590. },
  1591. {
  1592. "__type__": "cc.Sprite",
  1593. "_name": "",
  1594. "_objFlags": 0,
  1595. "__editorExtras__": {},
  1596. "node": {
  1597. "__id__": 40
  1598. },
  1599. "_enabled": true,
  1600. "__prefab": null,
  1601. "_customMaterial": null,
  1602. "_srcBlendFactor": 2,
  1603. "_dstBlendFactor": 4,
  1604. "_color": {
  1605. "__type__": "cc.Color",
  1606. "r": 14,
  1607. "g": 13,
  1608. "b": 13,
  1609. "a": 255
  1610. },
  1611. "_spriteFrame": {
  1612. "__uuid__": "7d8f9b89-4fd1-4c9f-a3ab-38ec7cded7ca@f9941",
  1613. "__expectedType__": "cc.SpriteFrame"
  1614. },
  1615. "_type": 0,
  1616. "_fillType": 0,
  1617. "_sizeMode": 0,
  1618. "_fillCenter": {
  1619. "__type__": "cc.Vec2",
  1620. "x": 0,
  1621. "y": 0
  1622. },
  1623. "_fillStart": 0,
  1624. "_fillRange": 0,
  1625. "_isTrimmedMode": true,
  1626. "_useGrayscale": false,
  1627. "_atlas": null,
  1628. "_id": "8cHY0PqG1CTZL0RZUgzID6"
  1629. },
  1630. {
  1631. "__type__": "cc.UIOpacity",
  1632. "_name": "",
  1633. "_objFlags": 0,
  1634. "__editorExtras__": {},
  1635. "node": {
  1636. "__id__": 40
  1637. },
  1638. "_enabled": true,
  1639. "__prefab": null,
  1640. "_opacity": 125,
  1641. "_id": "11GxmaMnBAgqaKqcL5mqM4"
  1642. },
  1643. {
  1644. "__type__": "cc.Node",
  1645. "_name": "menu_bg",
  1646. "_objFlags": 0,
  1647. "__editorExtras__": {},
  1648. "_parent": {
  1649. "__id__": 39
  1650. },
  1651. "_children": [],
  1652. "_active": true,
  1653. "_components": [
  1654. {
  1655. "__id__": 45
  1656. },
  1657. {
  1658. "__id__": 46
  1659. }
  1660. ],
  1661. "_prefab": null,
  1662. "_lpos": {
  1663. "__type__": "cc.Vec3",
  1664. "x": 0,
  1665. "y": 0,
  1666. "z": 0
  1667. },
  1668. "_lrot": {
  1669. "__type__": "cc.Quat",
  1670. "x": 0,
  1671. "y": 0,
  1672. "z": 0,
  1673. "w": 1
  1674. },
  1675. "_lscale": {
  1676. "__type__": "cc.Vec3",
  1677. "x": 1,
  1678. "y": 1,
  1679. "z": 1
  1680. },
  1681. "_mobility": 0,
  1682. "_layer": 1073741824,
  1683. "_euler": {
  1684. "__type__": "cc.Vec3",
  1685. "x": 0,
  1686. "y": 0,
  1687. "z": 0
  1688. },
  1689. "_id": "e4QT3K2hFOUp7eXDJ2tbe7"
  1690. },
  1691. {
  1692. "__type__": "cc.UITransform",
  1693. "_name": "",
  1694. "_objFlags": 0,
  1695. "__editorExtras__": {},
  1696. "node": {
  1697. "__id__": 44
  1698. },
  1699. "_enabled": true,
  1700. "__prefab": null,
  1701. "_contentSize": {
  1702. "__type__": "cc.Size",
  1703. "width": 442,
  1704. "height": 338
  1705. },
  1706. "_anchorPoint": {
  1707. "__type__": "cc.Vec2",
  1708. "x": 0.5,
  1709. "y": 0.5
  1710. },
  1711. "_id": "480QbSpqBOVY67Qgw6P1KA"
  1712. },
  1713. {
  1714. "__type__": "cc.Sprite",
  1715. "_name": "",
  1716. "_objFlags": 0,
  1717. "__editorExtras__": {},
  1718. "node": {
  1719. "__id__": 44
  1720. },
  1721. "_enabled": true,
  1722. "__prefab": null,
  1723. "_customMaterial": null,
  1724. "_srcBlendFactor": 2,
  1725. "_dstBlendFactor": 4,
  1726. "_color": {
  1727. "__type__": "cc.Color",
  1728. "r": 255,
  1729. "g": 255,
  1730. "b": 255,
  1731. "a": 255
  1732. },
  1733. "_spriteFrame": {
  1734. "__uuid__": "c2000706-b131-4e95-a5d7-013d9a24d8a4@1d9ad",
  1735. "__expectedType__": "cc.SpriteFrame"
  1736. },
  1737. "_type": 0,
  1738. "_fillType": 0,
  1739. "_sizeMode": 1,
  1740. "_fillCenter": {
  1741. "__type__": "cc.Vec2",
  1742. "x": 0,
  1743. "y": 0
  1744. },
  1745. "_fillStart": 0,
  1746. "_fillRange": 0,
  1747. "_isTrimmedMode": true,
  1748. "_useGrayscale": false,
  1749. "_atlas": null,
  1750. "_id": "8cF79bYi1EfJnZaO8epl5K"
  1751. },
  1752. {
  1753. "__type__": "cc.Node",
  1754. "_name": "BtnResume",
  1755. "_objFlags": 0,
  1756. "__editorExtras__": {},
  1757. "_parent": {
  1758. "__id__": 39
  1759. },
  1760. "_children": [],
  1761. "_active": true,
  1762. "_components": [
  1763. {
  1764. "__id__": 48
  1765. },
  1766. {
  1767. "__id__": 49
  1768. },
  1769. {
  1770. "__id__": 50
  1771. }
  1772. ],
  1773. "_prefab": null,
  1774. "_lpos": {
  1775. "__type__": "cc.Vec3",
  1776. "x": -13.379,
  1777. "y": 102.083,
  1778. "z": 0
  1779. },
  1780. "_lrot": {
  1781. "__type__": "cc.Quat",
  1782. "x": 0,
  1783. "y": 0,
  1784. "z": 0,
  1785. "w": 1
  1786. },
  1787. "_lscale": {
  1788. "__type__": "cc.Vec3",
  1789. "x": 2.5,
  1790. "y": 2,
  1791. "z": 1
  1792. },
  1793. "_mobility": 0,
  1794. "_layer": 1073741824,
  1795. "_euler": {
  1796. "__type__": "cc.Vec3",
  1797. "x": 0,
  1798. "y": 0,
  1799. "z": 0
  1800. },
  1801. "_id": "f7SG+TZihH1pbXV/POZ6Ix"
  1802. },
  1803. {
  1804. "__type__": "cc.UITransform",
  1805. "_name": "",
  1806. "_objFlags": 0,
  1807. "__editorExtras__": {},
  1808. "node": {
  1809. "__id__": 47
  1810. },
  1811. "_enabled": true,
  1812. "__prefab": null,
  1813. "_contentSize": {
  1814. "__type__": "cc.Size",
  1815. "width": 100,
  1816. "height": 40
  1817. },
  1818. "_anchorPoint": {
  1819. "__type__": "cc.Vec2",
  1820. "x": 0.5,
  1821. "y": 0.5
  1822. },
  1823. "_id": "3acEkWPahGQ5gQLeZZAgTR"
  1824. },
  1825. {
  1826. "__type__": "cc.Sprite",
  1827. "_name": "",
  1828. "_objFlags": 0,
  1829. "__editorExtras__": {},
  1830. "node": {
  1831. "__id__": 47
  1832. },
  1833. "_enabled": true,
  1834. "__prefab": null,
  1835. "_customMaterial": null,
  1836. "_srcBlendFactor": 2,
  1837. "_dstBlendFactor": 4,
  1838. "_color": {
  1839. "__type__": "cc.Color",
  1840. "r": 255,
  1841. "g": 255,
  1842. "b": 255,
  1843. "a": 255
  1844. },
  1845. "_spriteFrame": {
  1846. "__uuid__": "c2000706-b131-4e95-a5d7-013d9a24d8a4@134a3",
  1847. "__expectedType__": "cc.SpriteFrame"
  1848. },
  1849. "_type": 1,
  1850. "_fillType": 0,
  1851. "_sizeMode": 0,
  1852. "_fillCenter": {
  1853. "__type__": "cc.Vec2",
  1854. "x": 0,
  1855. "y": 0
  1856. },
  1857. "_fillStart": 0,
  1858. "_fillRange": 0,
  1859. "_isTrimmedMode": true,
  1860. "_useGrayscale": false,
  1861. "_atlas": null,
  1862. "_id": "76tVG6KIVNYoeVMgRvOW/F"
  1863. },
  1864. {
  1865. "__type__": "cc.Button",
  1866. "_name": "",
  1867. "_objFlags": 0,
  1868. "__editorExtras__": {},
  1869. "node": {
  1870. "__id__": 47
  1871. },
  1872. "_enabled": true,
  1873. "__prefab": null,
  1874. "clickEvents": [],
  1875. "_interactable": true,
  1876. "_transition": 2,
  1877. "_normalColor": {
  1878. "__type__": "cc.Color",
  1879. "r": 214,
  1880. "g": 214,
  1881. "b": 214,
  1882. "a": 255
  1883. },
  1884. "_hoverColor": {
  1885. "__type__": "cc.Color",
  1886. "r": 211,
  1887. "g": 211,
  1888. "b": 211,
  1889. "a": 255
  1890. },
  1891. "_pressedColor": {
  1892. "__type__": "cc.Color",
  1893. "r": 255,
  1894. "g": 255,
  1895. "b": 255,
  1896. "a": 255
  1897. },
  1898. "_disabledColor": {
  1899. "__type__": "cc.Color",
  1900. "r": 124,
  1901. "g": 124,
  1902. "b": 124,
  1903. "a": 255
  1904. },
  1905. "_normalSprite": {
  1906. "__uuid__": "c2000706-b131-4e95-a5d7-013d9a24d8a4@134a3",
  1907. "__expectedType__": "cc.SpriteFrame"
  1908. },
  1909. "_hoverSprite": null,
  1910. "_pressedSprite": {
  1911. "__uuid__": "c2000706-b131-4e95-a5d7-013d9a24d8a4@b347e",
  1912. "__expectedType__": "cc.SpriteFrame"
  1913. },
  1914. "_disabledSprite": null,
  1915. "_duration": 0.1,
  1916. "_zoomScale": 1.2,
  1917. "_target": {
  1918. "__id__": 47
  1919. },
  1920. "_id": "75lHkwfNxGIZyWrP0AcoEP"
  1921. },
  1922. {
  1923. "__type__": "cc.Node",
  1924. "_name": "BtnRestart",
  1925. "_objFlags": 0,
  1926. "__editorExtras__": {},
  1927. "_parent": {
  1928. "__id__": 39
  1929. },
  1930. "_children": [],
  1931. "_active": true,
  1932. "_components": [
  1933. {
  1934. "__id__": 52
  1935. },
  1936. {
  1937. "__id__": 53
  1938. },
  1939. {
  1940. "__id__": 54
  1941. }
  1942. ],
  1943. "_prefab": null,
  1944. "_lpos": {
  1945. "__type__": "cc.Vec3",
  1946. "x": -13.513,
  1947. "y": 8,
  1948. "z": 0
  1949. },
  1950. "_lrot": {
  1951. "__type__": "cc.Quat",
  1952. "x": 0,
  1953. "y": 0,
  1954. "z": 0,
  1955. "w": 1
  1956. },
  1957. "_lscale": {
  1958. "__type__": "cc.Vec3",
  1959. "x": 2.5,
  1960. "y": 2,
  1961. "z": 1
  1962. },
  1963. "_mobility": 0,
  1964. "_layer": 33554432,
  1965. "_euler": {
  1966. "__type__": "cc.Vec3",
  1967. "x": 0,
  1968. "y": 0,
  1969. "z": 0
  1970. },
  1971. "_id": "8413SMA6hDHaNG2xST4oCH"
  1972. },
  1973. {
  1974. "__type__": "cc.UITransform",
  1975. "_name": "",
  1976. "_objFlags": 0,
  1977. "__editorExtras__": {},
  1978. "node": {
  1979. "__id__": 51
  1980. },
  1981. "_enabled": true,
  1982. "__prefab": null,
  1983. "_contentSize": {
  1984. "__type__": "cc.Size",
  1985. "width": 100,
  1986. "height": 40
  1987. },
  1988. "_anchorPoint": {
  1989. "__type__": "cc.Vec2",
  1990. "x": 0.5,
  1991. "y": 0.5
  1992. },
  1993. "_id": "7cWadIte9BjouAkvRKvEbh"
  1994. },
  1995. {
  1996. "__type__": "cc.Sprite",
  1997. "_name": "",
  1998. "_objFlags": 0,
  1999. "__editorExtras__": {},
  2000. "node": {
  2001. "__id__": 51
  2002. },
  2003. "_enabled": true,
  2004. "__prefab": null,
  2005. "_customMaterial": null,
  2006. "_srcBlendFactor": 2,
  2007. "_dstBlendFactor": 4,
  2008. "_color": {
  2009. "__type__": "cc.Color",
  2010. "r": 255,
  2011. "g": 255,
  2012. "b": 255,
  2013. "a": 255
  2014. },
  2015. "_spriteFrame": {
  2016. "__uuid__": "c2000706-b131-4e95-a5d7-013d9a24d8a4@c7ebf",
  2017. "__expectedType__": "cc.SpriteFrame"
  2018. },
  2019. "_type": 1,
  2020. "_fillType": 0,
  2021. "_sizeMode": 0,
  2022. "_fillCenter": {
  2023. "__type__": "cc.Vec2",
  2024. "x": 0,
  2025. "y": 0
  2026. },
  2027. "_fillStart": 0,
  2028. "_fillRange": 0,
  2029. "_isTrimmedMode": true,
  2030. "_useGrayscale": false,
  2031. "_atlas": null,
  2032. "_id": "8e26uVsutDJJUFEB8GpzQg"
  2033. },
  2034. {
  2035. "__type__": "cc.Button",
  2036. "_name": "",
  2037. "_objFlags": 0,
  2038. "__editorExtras__": {},
  2039. "node": {
  2040. "__id__": 51
  2041. },
  2042. "_enabled": true,
  2043. "__prefab": null,
  2044. "clickEvents": [],
  2045. "_interactable": true,
  2046. "_transition": 2,
  2047. "_normalColor": {
  2048. "__type__": "cc.Color",
  2049. "r": 214,
  2050. "g": 214,
  2051. "b": 214,
  2052. "a": 255
  2053. },
  2054. "_hoverColor": {
  2055. "__type__": "cc.Color",
  2056. "r": 211,
  2057. "g": 211,
  2058. "b": 211,
  2059. "a": 255
  2060. },
  2061. "_pressedColor": {
  2062. "__type__": "cc.Color",
  2063. "r": 255,
  2064. "g": 255,
  2065. "b": 255,
  2066. "a": 255
  2067. },
  2068. "_disabledColor": {
  2069. "__type__": "cc.Color",
  2070. "r": 124,
  2071. "g": 124,
  2072. "b": 124,
  2073. "a": 255
  2074. },
  2075. "_normalSprite": {
  2076. "__uuid__": "c2000706-b131-4e95-a5d7-013d9a24d8a4@c7ebf",
  2077. "__expectedType__": "cc.SpriteFrame"
  2078. },
  2079. "_hoverSprite": null,
  2080. "_pressedSprite": {
  2081. "__uuid__": "c2000706-b131-4e95-a5d7-013d9a24d8a4@d35b9",
  2082. "__expectedType__": "cc.SpriteFrame"
  2083. },
  2084. "_disabledSprite": null,
  2085. "_duration": 0.1,
  2086. "_zoomScale": 1.2,
  2087. "_target": {
  2088. "__id__": 51
  2089. },
  2090. "_id": "cf2F8+4R1PK75H3j9L3g4U"
  2091. },
  2092. {
  2093. "__type__": "cc.Node",
  2094. "_name": "BtnSelect",
  2095. "_objFlags": 0,
  2096. "__editorExtras__": {},
  2097. "_parent": {
  2098. "__id__": 39
  2099. },
  2100. "_children": [],
  2101. "_active": true,
  2102. "_components": [
  2103. {
  2104. "__id__": 56
  2105. },
  2106. {
  2107. "__id__": 57
  2108. },
  2109. {
  2110. "__id__": 58
  2111. }
  2112. ],
  2113. "_prefab": null,
  2114. "_lpos": {
  2115. "__type__": "cc.Vec3",
  2116. "x": -12.77,
  2117. "y": -86.595,
  2118. "z": 0
  2119. },
  2120. "_lrot": {
  2121. "__type__": "cc.Quat",
  2122. "x": 0,
  2123. "y": 0,
  2124. "z": 0,
  2125. "w": 1
  2126. },
  2127. "_lscale": {
  2128. "__type__": "cc.Vec3",
  2129. "x": 2.5,
  2130. "y": 2,
  2131. "z": 1
  2132. },
  2133. "_mobility": 0,
  2134. "_layer": 33554432,
  2135. "_euler": {
  2136. "__type__": "cc.Vec3",
  2137. "x": 0,
  2138. "y": 0,
  2139. "z": 0
  2140. },
  2141. "_id": "9azg9B2fBHFotgSQ6fXWwS"
  2142. },
  2143. {
  2144. "__type__": "cc.UITransform",
  2145. "_name": "",
  2146. "_objFlags": 0,
  2147. "__editorExtras__": {},
  2148. "node": {
  2149. "__id__": 55
  2150. },
  2151. "_enabled": true,
  2152. "__prefab": null,
  2153. "_contentSize": {
  2154. "__type__": "cc.Size",
  2155. "width": 100,
  2156. "height": 40
  2157. },
  2158. "_anchorPoint": {
  2159. "__type__": "cc.Vec2",
  2160. "x": 0.5,
  2161. "y": 0.5
  2162. },
  2163. "_id": "34Q2Ms6cRJDb9GnPznOcr6"
  2164. },
  2165. {
  2166. "__type__": "cc.Sprite",
  2167. "_name": "",
  2168. "_objFlags": 0,
  2169. "__editorExtras__": {},
  2170. "node": {
  2171. "__id__": 55
  2172. },
  2173. "_enabled": true,
  2174. "__prefab": null,
  2175. "_customMaterial": null,
  2176. "_srcBlendFactor": 2,
  2177. "_dstBlendFactor": 4,
  2178. "_color": {
  2179. "__type__": "cc.Color",
  2180. "r": 255,
  2181. "g": 255,
  2182. "b": 255,
  2183. "a": 255
  2184. },
  2185. "_spriteFrame": {
  2186. "__uuid__": "c2000706-b131-4e95-a5d7-013d9a24d8a4@f501c",
  2187. "__expectedType__": "cc.SpriteFrame"
  2188. },
  2189. "_type": 1,
  2190. "_fillType": 0,
  2191. "_sizeMode": 0,
  2192. "_fillCenter": {
  2193. "__type__": "cc.Vec2",
  2194. "x": 0,
  2195. "y": 0
  2196. },
  2197. "_fillStart": 0,
  2198. "_fillRange": 0,
  2199. "_isTrimmedMode": true,
  2200. "_useGrayscale": false,
  2201. "_atlas": null,
  2202. "_id": "daEWsW/tVMM7nZoRjjVzD9"
  2203. },
  2204. {
  2205. "__type__": "cc.Button",
  2206. "_name": "",
  2207. "_objFlags": 0,
  2208. "__editorExtras__": {},
  2209. "node": {
  2210. "__id__": 55
  2211. },
  2212. "_enabled": true,
  2213. "__prefab": null,
  2214. "clickEvents": [],
  2215. "_interactable": true,
  2216. "_transition": 2,
  2217. "_normalColor": {
  2218. "__type__": "cc.Color",
  2219. "r": 214,
  2220. "g": 214,
  2221. "b": 214,
  2222. "a": 255
  2223. },
  2224. "_hoverColor": {
  2225. "__type__": "cc.Color",
  2226. "r": 211,
  2227. "g": 211,
  2228. "b": 211,
  2229. "a": 255
  2230. },
  2231. "_pressedColor": {
  2232. "__type__": "cc.Color",
  2233. "r": 255,
  2234. "g": 255,
  2235. "b": 255,
  2236. "a": 255
  2237. },
  2238. "_disabledColor": {
  2239. "__type__": "cc.Color",
  2240. "r": 124,
  2241. "g": 124,
  2242. "b": 124,
  2243. "a": 255
  2244. },
  2245. "_normalSprite": {
  2246. "__uuid__": "c2000706-b131-4e95-a5d7-013d9a24d8a4@f501c",
  2247. "__expectedType__": "cc.SpriteFrame"
  2248. },
  2249. "_hoverSprite": null,
  2250. "_pressedSprite": {
  2251. "__uuid__": "c2000706-b131-4e95-a5d7-013d9a24d8a4@7c6d3",
  2252. "__expectedType__": "cc.SpriteFrame"
  2253. },
  2254. "_disabledSprite": null,
  2255. "_duration": 0.1,
  2256. "_zoomScale": 1.2,
  2257. "_target": {
  2258. "__id__": 55
  2259. },
  2260. "_id": "eeDYD2EIpH7r15I+oYxE+9"
  2261. },
  2262. {
  2263. "__type__": "cc.Node",
  2264. "_name": "BtnQuit",
  2265. "_objFlags": 0,
  2266. "__editorExtras__": {},
  2267. "_parent": {
  2268. "__id__": 39
  2269. },
  2270. "_children": [],
  2271. "_active": true,
  2272. "_components": [
  2273. {
  2274. "__id__": 60
  2275. },
  2276. {
  2277. "__id__": 61
  2278. },
  2279. {
  2280. "__id__": 62
  2281. }
  2282. ],
  2283. "_prefab": null,
  2284. "_lpos": {
  2285. "__type__": "cc.Vec3",
  2286. "x": 134.38800000000003,
  2287. "y": 163.78500000000003,
  2288. "z": 0
  2289. },
  2290. "_lrot": {
  2291. "__type__": "cc.Quat",
  2292. "x": 0,
  2293. "y": 0,
  2294. "z": 0,
  2295. "w": 1
  2296. },
  2297. "_lscale": {
  2298. "__type__": "cc.Vec3",
  2299. "x": 1,
  2300. "y": 1,
  2301. "z": 1
  2302. },
  2303. "_mobility": 0,
  2304. "_layer": 33554432,
  2305. "_euler": {
  2306. "__type__": "cc.Vec3",
  2307. "x": 0,
  2308. "y": 0,
  2309. "z": 0
  2310. },
  2311. "_id": "12nERo2TZMVJ7YJrD2W8Lh"
  2312. },
  2313. {
  2314. "__type__": "cc.UITransform",
  2315. "_name": "",
  2316. "_objFlags": 0,
  2317. "__editorExtras__": {},
  2318. "node": {
  2319. "__id__": 59
  2320. },
  2321. "_enabled": true,
  2322. "__prefab": null,
  2323. "_contentSize": {
  2324. "__type__": "cc.Size",
  2325. "width": 50,
  2326. "height": 50
  2327. },
  2328. "_anchorPoint": {
  2329. "__type__": "cc.Vec2",
  2330. "x": 0.5,
  2331. "y": 0.5
  2332. },
  2333. "_id": "42yx/8qqFGFLfSsuy0UY2I"
  2334. },
  2335. {
  2336. "__type__": "cc.Sprite",
  2337. "_name": "",
  2338. "_objFlags": 0,
  2339. "__editorExtras__": {},
  2340. "node": {
  2341. "__id__": 59
  2342. },
  2343. "_enabled": true,
  2344. "__prefab": null,
  2345. "_customMaterial": null,
  2346. "_srcBlendFactor": 2,
  2347. "_dstBlendFactor": 4,
  2348. "_color": {
  2349. "__type__": "cc.Color",
  2350. "r": 255,
  2351. "g": 255,
  2352. "b": 255,
  2353. "a": 255
  2354. },
  2355. "_spriteFrame": {
  2356. "__uuid__": "d190c982-4f13-4a3b-889d-bd57aaa6f369@12554",
  2357. "__expectedType__": "cc.SpriteFrame"
  2358. },
  2359. "_type": 1,
  2360. "_fillType": 0,
  2361. "_sizeMode": 0,
  2362. "_fillCenter": {
  2363. "__type__": "cc.Vec2",
  2364. "x": 0,
  2365. "y": 0
  2366. },
  2367. "_fillStart": 0,
  2368. "_fillRange": 0,
  2369. "_isTrimmedMode": true,
  2370. "_useGrayscale": false,
  2371. "_atlas": null,
  2372. "_id": "36GjDdTTRF67a5avsAomCT"
  2373. },
  2374. {
  2375. "__type__": "cc.Button",
  2376. "_name": "",
  2377. "_objFlags": 0,
  2378. "__editorExtras__": {},
  2379. "node": {
  2380. "__id__": 59
  2381. },
  2382. "_enabled": true,
  2383. "__prefab": null,
  2384. "clickEvents": [],
  2385. "_interactable": true,
  2386. "_transition": 2,
  2387. "_normalColor": {
  2388. "__type__": "cc.Color",
  2389. "r": 214,
  2390. "g": 214,
  2391. "b": 214,
  2392. "a": 255
  2393. },
  2394. "_hoverColor": {
  2395. "__type__": "cc.Color",
  2396. "r": 211,
  2397. "g": 211,
  2398. "b": 211,
  2399. "a": 255
  2400. },
  2401. "_pressedColor": {
  2402. "__type__": "cc.Color",
  2403. "r": 255,
  2404. "g": 255,
  2405. "b": 255,
  2406. "a": 255
  2407. },
  2408. "_disabledColor": {
  2409. "__type__": "cc.Color",
  2410. "r": 124,
  2411. "g": 124,
  2412. "b": 124,
  2413. "a": 255
  2414. },
  2415. "_normalSprite": {
  2416. "__uuid__": "d190c982-4f13-4a3b-889d-bd57aaa6f369@12554",
  2417. "__expectedType__": "cc.SpriteFrame"
  2418. },
  2419. "_hoverSprite": null,
  2420. "_pressedSprite": {
  2421. "__uuid__": "d190c982-4f13-4a3b-889d-bd57aaa6f369@0d547",
  2422. "__expectedType__": "cc.SpriteFrame"
  2423. },
  2424. "_disabledSprite": null,
  2425. "_duration": 0.1,
  2426. "_zoomScale": 1.2,
  2427. "_target": {
  2428. "__id__": 59
  2429. },
  2430. "_id": "d7e0iVyPBODbYGW+9MKuFd"
  2431. },
  2432. {
  2433. "__type__": "cc.UITransform",
  2434. "_name": "",
  2435. "_objFlags": 0,
  2436. "__editorExtras__": {},
  2437. "node": {
  2438. "__id__": 39
  2439. },
  2440. "_enabled": true,
  2441. "__prefab": null,
  2442. "_contentSize": {
  2443. "__type__": "cc.Size",
  2444. "width": 960,
  2445. "height": 640
  2446. },
  2447. "_anchorPoint": {
  2448. "__type__": "cc.Vec2",
  2449. "x": 0.5,
  2450. "y": 0.5
  2451. },
  2452. "_id": "c8hh5kRvBLe4qaAg7pylVb"
  2453. },
  2454. {
  2455. "__type__": "cc.BlockInputEvents",
  2456. "_name": "",
  2457. "_objFlags": 0,
  2458. "__editorExtras__": {},
  2459. "node": {
  2460. "__id__": 39
  2461. },
  2462. "_enabled": true,
  2463. "__prefab": null,
  2464. "_id": "87wPhEFfFJ+q4zcXdi73lT"
  2465. },
  2466. {
  2467. "__type__": "fbfafaCmx9I1L+QDG/G50o5",
  2468. "_name": "",
  2469. "_objFlags": 0,
  2470. "__editorExtras__": {},
  2471. "node": {
  2472. "__id__": 17
  2473. },
  2474. "_enabled": true,
  2475. "__prefab": null,
  2476. "btnSpeed": {
  2477. "__id__": 37
  2478. },
  2479. "imgSpeed_1": {
  2480. "__uuid__": "e104c27b-9803-4bed-bb01-f58171e15ac9@326b4",
  2481. "__expectedType__": "cc.SpriteFrame"
  2482. },
  2483. "imgSpeed_2": {
  2484. "__uuid__": "e104c27b-9803-4bed-bb01-f58171e15ac9@6821f",
  2485. "__expectedType__": "cc.SpriteFrame"
  2486. },
  2487. "btnPause": {
  2488. "__id__": 32
  2489. },
  2490. "imgPause_1": {
  2491. "__uuid__": "e104c27b-9803-4bed-bb01-f58171e15ac9@920e2",
  2492. "__expectedType__": "cc.SpriteFrame"
  2493. },
  2494. "imgPause_2": {
  2495. "__uuid__": "e104c27b-9803-4bed-bb01-f58171e15ac9@7d505",
  2496. "__expectedType__": "cc.SpriteFrame"
  2497. },
  2498. "imgMenuCenter_1": {
  2499. "__uuid__": "e104c27b-9803-4bed-bb01-f58171e15ac9@6a672",
  2500. "__expectedType__": "cc.SpriteFrame"
  2501. },
  2502. "imgMenuCenter_2": {
  2503. "__uuid__": "e104c27b-9803-4bed-bb01-f58171e15ac9@e14db",
  2504. "__expectedType__": "cc.SpriteFrame"
  2505. },
  2506. "_id": "64xmf2GdFAQI65oik8nSLs"
  2507. },
  2508. {
  2509. "__type__": "cc.Node",
  2510. "_name": "hlb21",
  2511. "_objFlags": 0,
  2512. "__editorExtras__": {},
  2513. "_parent": {
  2514. "__id__": 2
  2515. },
  2516. "_children": [],
  2517. "_active": true,
  2518. "_components": [
  2519. {
  2520. "__id__": 67
  2521. },
  2522. {
  2523. "__id__": 68
  2524. },
  2525. {
  2526. "__id__": 69
  2527. }
  2528. ],
  2529. "_prefab": null,
  2530. "_lpos": {
  2531. "__type__": "cc.Vec3",
  2532. "x": 366.584,
  2533. "y": 143.525,
  2534. "z": 0
  2535. },
  2536. "_lrot": {
  2537. "__type__": "cc.Quat",
  2538. "x": 0,
  2539. "y": 0,
  2540. "z": 0,
  2541. "w": 1
  2542. },
  2543. "_lscale": {
  2544. "__type__": "cc.Vec3",
  2545. "x": 1,
  2546. "y": 1,
  2547. "z": 1
  2548. },
  2549. "_mobility": 0,
  2550. "_layer": 33554432,
  2551. "_euler": {
  2552. "__type__": "cc.Vec3",
  2553. "x": 0,
  2554. "y": 0,
  2555. "z": 0
  2556. },
  2557. "_id": "86Iy/9jfZJw5fWLnAXOXKQ"
  2558. },
  2559. {
  2560. "__type__": "cc.UITransform",
  2561. "_name": "",
  2562. "_objFlags": 0,
  2563. "__editorExtras__": {},
  2564. "node": {
  2565. "__id__": 66
  2566. },
  2567. "_enabled": true,
  2568. "__prefab": null,
  2569. "_contentSize": {
  2570. "__type__": "cc.Size",
  2571. "width": 75,
  2572. "height": 106
  2573. },
  2574. "_anchorPoint": {
  2575. "__type__": "cc.Vec2",
  2576. "x": 0.5,
  2577. "y": 0.5
  2578. },
  2579. "_id": "eaJteNgztAUIzzSASXjA3y"
  2580. },
  2581. {
  2582. "__type__": "cc.Sprite",
  2583. "_name": "",
  2584. "_objFlags": 0,
  2585. "__editorExtras__": {},
  2586. "node": {
  2587. "__id__": 66
  2588. },
  2589. "_enabled": true,
  2590. "__prefab": null,
  2591. "_customMaterial": null,
  2592. "_srcBlendFactor": 2,
  2593. "_dstBlendFactor": 4,
  2594. "_color": {
  2595. "__type__": "cc.Color",
  2596. "r": 255,
  2597. "g": 255,
  2598. "b": 255,
  2599. "a": 255
  2600. },
  2601. "_spriteFrame": {
  2602. "__uuid__": "ac0aae0f-3272-4440-acb2-8aad28c0022f@2b0fc",
  2603. "__expectedType__": "cc.SpriteFrame"
  2604. },
  2605. "_type": 0,
  2606. "_fillType": 0,
  2607. "_sizeMode": 1,
  2608. "_fillCenter": {
  2609. "__type__": "cc.Vec2",
  2610. "x": 0,
  2611. "y": 0
  2612. },
  2613. "_fillStart": 0,
  2614. "_fillRange": 0,
  2615. "_isTrimmedMode": true,
  2616. "_useGrayscale": false,
  2617. "_atlas": null,
  2618. "_id": "2aFZRv/IdLTIalSvJreT2z"
  2619. },
  2620. {
  2621. "__type__": "cc.Animation",
  2622. "_name": "",
  2623. "_objFlags": 0,
  2624. "__editorExtras__": {},
  2625. "node": {
  2626. "__id__": 66
  2627. },
  2628. "_enabled": true,
  2629. "__prefab": null,
  2630. "playOnLoad": true,
  2631. "_clips": [
  2632. {
  2633. "__uuid__": "010dcff4-5966-4fb4-ade0-64b294461cba",
  2634. "__expectedType__": "cc.AnimationClip"
  2635. },
  2636. {
  2637. "__uuid__": "a62882fb-901e-46c6-919e-e8ebf53ed8cf",
  2638. "__expectedType__": "cc.AnimationClip"
  2639. },
  2640. {
  2641. "__uuid__": "85ab6ce2-d1f3-4bd7-9a05-ffd82d67b207",
  2642. "__expectedType__": "cc.AnimationClip"
  2643. }
  2644. ],
  2645. "_defaultClip": {
  2646. "__uuid__": "010dcff4-5966-4fb4-ade0-64b294461cba",
  2647. "__expectedType__": "cc.AnimationClip"
  2648. },
  2649. "_id": "59MIbv2EBHuZuN6QLS2qub"
  2650. },
  2651. {
  2652. "__type__": "cc.UITransform",
  2653. "_name": "",
  2654. "_objFlags": 0,
  2655. "__editorExtras__": {},
  2656. "node": {
  2657. "__id__": 2
  2658. },
  2659. "_enabled": true,
  2660. "__prefab": null,
  2661. "_contentSize": {
  2662. "__type__": "cc.Size",
  2663. "width": 960,
  2664. "height": 640
  2665. },
  2666. "_anchorPoint": {
  2667. "__type__": "cc.Vec2",
  2668. "x": 0.5,
  2669. "y": 0.5
  2670. },
  2671. "_id": "d6rUX5yfhMlKoWX2bSbawx"
  2672. },
  2673. {
  2674. "__type__": "cc.Canvas",
  2675. "_name": "",
  2676. "_objFlags": 0,
  2677. "__editorExtras__": {},
  2678. "node": {
  2679. "__id__": 2
  2680. },
  2681. "_enabled": true,
  2682. "__prefab": null,
  2683. "_cameraComponent": {
  2684. "__id__": 4
  2685. },
  2686. "_alignCanvasWithScreen": true,
  2687. "_id": "12O/ljcVlEqLmVm3U2gEOQ"
  2688. },
  2689. {
  2690. "__type__": "cc.Widget",
  2691. "_name": "",
  2692. "_objFlags": 0,
  2693. "__editorExtras__": {},
  2694. "node": {
  2695. "__id__": 2
  2696. },
  2697. "_enabled": true,
  2698. "__prefab": null,
  2699. "_alignFlags": 45,
  2700. "_target": null,
  2701. "_left": 0,
  2702. "_right": 0,
  2703. "_top": 5.684341886080802e-14,
  2704. "_bottom": 5.684341886080802e-14,
  2705. "_horizontalCenter": 0,
  2706. "_verticalCenter": 0,
  2707. "_isAbsLeft": true,
  2708. "_isAbsRight": true,
  2709. "_isAbsTop": true,
  2710. "_isAbsBottom": true,
  2711. "_isAbsHorizontalCenter": true,
  2712. "_isAbsVerticalCenter": true,
  2713. "_originalWidth": 0,
  2714. "_originalHeight": 0,
  2715. "_alignMode": 2,
  2716. "_lockFlags": 0,
  2717. "_id": "c5V1EV8IpMtrIvY1OE9t2u"
  2718. },
  2719. {
  2720. "__type__": "8a88avxvt5Ap6FnBDjWw57K",
  2721. "_name": "",
  2722. "_objFlags": 0,
  2723. "__editorExtras__": {},
  2724. "node": {
  2725. "__id__": 2
  2726. },
  2727. "_enabled": true,
  2728. "__prefab": null,
  2729. "countDown": {
  2730. "__uuid__": "7e8bd4ec-9799-4c1a-a581-99ea0db4895b",
  2731. "__expectedType__": "cc.Prefab"
  2732. },
  2733. "_id": "9c7Qp2u0JNr6hgauO2KSFg"
  2734. },
  2735. {
  2736. "__type__": "cc.PrefabInfo",
  2737. "root": null,
  2738. "asset": null,
  2739. "fileId": "c72c6c69-975b-4f6b-a208-9d0dcde54d79",
  2740. "instance": null,
  2741. "targetOverrides": []
  2742. },
  2743. {
  2744. "__type__": "cc.SceneGlobals",
  2745. "ambient": {
  2746. "__id__": 76
  2747. },
  2748. "shadows": {
  2749. "__id__": 77
  2750. },
  2751. "_skybox": {
  2752. "__id__": 78
  2753. },
  2754. "fog": {
  2755. "__id__": 79
  2756. },
  2757. "octree": {
  2758. "__id__": 80
  2759. },
  2760. "skin": {
  2761. "__id__": 81
  2762. },
  2763. "lightProbeInfo": {
  2764. "__id__": 82
  2765. },
  2766. "postSettings": {
  2767. "__id__": 83
  2768. },
  2769. "bakedWithStationaryMainLight": false,
  2770. "bakedWithHighpLightmap": false
  2771. },
  2772. {
  2773. "__type__": "cc.AmbientInfo",
  2774. "_skyColorHDR": {
  2775. "__type__": "cc.Vec4",
  2776. "x": 0,
  2777. "y": 0,
  2778. "z": 0,
  2779. "w": 0.520833125
  2780. },
  2781. "_skyColor": {
  2782. "__type__": "cc.Vec4",
  2783. "x": 0,
  2784. "y": 0,
  2785. "z": 0,
  2786. "w": 0.520833125
  2787. },
  2788. "_skyIllumHDR": 20000,
  2789. "_skyIllum": 20000,
  2790. "_groundAlbedoHDR": {
  2791. "__type__": "cc.Vec4",
  2792. "x": 0,
  2793. "y": 0,
  2794. "z": 0,
  2795. "w": 0
  2796. },
  2797. "_groundAlbedo": {
  2798. "__type__": "cc.Vec4",
  2799. "x": 0,
  2800. "y": 0,
  2801. "z": 0,
  2802. "w": 0
  2803. },
  2804. "_skyColorLDR": {
  2805. "__type__": "cc.Vec4",
  2806. "x": 0.2,
  2807. "y": 0.5,
  2808. "z": 0.8,
  2809. "w": 1
  2810. },
  2811. "_skyIllumLDR": 20000,
  2812. "_groundAlbedoLDR": {
  2813. "__type__": "cc.Vec4",
  2814. "x": 0.2,
  2815. "y": 0.2,
  2816. "z": 0.2,
  2817. "w": 1
  2818. }
  2819. },
  2820. {
  2821. "__type__": "cc.ShadowsInfo",
  2822. "_enabled": false,
  2823. "_type": 0,
  2824. "_normal": {
  2825. "__type__": "cc.Vec3",
  2826. "x": 0,
  2827. "y": 1,
  2828. "z": 0
  2829. },
  2830. "_distance": 0,
  2831. "_planeBias": 1,
  2832. "_shadowColor": {
  2833. "__type__": "cc.Color",
  2834. "r": 76,
  2835. "g": 76,
  2836. "b": 76,
  2837. "a": 255
  2838. },
  2839. "_maxReceived": 4,
  2840. "_size": {
  2841. "__type__": "cc.Vec2",
  2842. "x": 512,
  2843. "y": 512
  2844. }
  2845. },
  2846. {
  2847. "__type__": "cc.SkyboxInfo",
  2848. "_envLightingType": 0,
  2849. "_envmapHDR": null,
  2850. "_envmap": null,
  2851. "_envmapLDR": null,
  2852. "_diffuseMapHDR": null,
  2853. "_diffuseMapLDR": null,
  2854. "_enabled": false,
  2855. "_useHDR": true,
  2856. "_editableMaterial": null,
  2857. "_reflectionHDR": null,
  2858. "_reflectionLDR": null,
  2859. "_rotationAngle": 0
  2860. },
  2861. {
  2862. "__type__": "cc.FogInfo",
  2863. "_type": 0,
  2864. "_fogColor": {
  2865. "__type__": "cc.Color",
  2866. "r": 200,
  2867. "g": 200,
  2868. "b": 200,
  2869. "a": 255
  2870. },
  2871. "_enabled": false,
  2872. "_fogDensity": 0.3,
  2873. "_fogStart": 0.5,
  2874. "_fogEnd": 300,
  2875. "_fogAtten": 5,
  2876. "_fogTop": 1.5,
  2877. "_fogRange": 1.2,
  2878. "_accurate": false
  2879. },
  2880. {
  2881. "__type__": "cc.OctreeInfo",
  2882. "_enabled": false,
  2883. "_minPos": {
  2884. "__type__": "cc.Vec3",
  2885. "x": -1024,
  2886. "y": -1024,
  2887. "z": -1024
  2888. },
  2889. "_maxPos": {
  2890. "__type__": "cc.Vec3",
  2891. "x": 1024,
  2892. "y": 1024,
  2893. "z": 1024
  2894. },
  2895. "_depth": 8
  2896. },
  2897. {
  2898. "__type__": "cc.SkinInfo",
  2899. "_enabled": false,
  2900. "_blurRadius": 0.01,
  2901. "_sssIntensity": 3
  2902. },
  2903. {
  2904. "__type__": "cc.LightProbeInfo",
  2905. "_giScale": 1,
  2906. "_giSamples": 1024,
  2907. "_bounces": 2,
  2908. "_reduceRinging": 0,
  2909. "_showProbe": true,
  2910. "_showWireframe": true,
  2911. "_showConvex": false,
  2912. "_data": null,
  2913. "_lightProbeSphereVolume": 1
  2914. },
  2915. {
  2916. "__type__": "cc.PostSettingsInfo",
  2917. "_toneMappingType": 0
  2918. }
  2919. ]