MainScene.scene 35 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947
  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__": 54
  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__": 55
  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__": 20
  84. },
  85. {
  86. "__id__": 29
  87. }
  88. ],
  89. "_active": true,
  90. "_components": [
  91. {
  92. "__id__": 51
  93. },
  94. {
  95. "__id__": 52
  96. },
  97. {
  98. "__id__": 53
  99. }
  100. ],
  101. "_prefab": null,
  102. "_lpos": {
  103. "__type__": "cc.Vec3",
  104. "x": 480,
  105. "y": 320.00000000000006,
  106. "z": 0
  107. },
  108. "_lrot": {
  109. "__type__": "cc.Quat",
  110. "x": 0,
  111. "y": 0,
  112. "z": 0,
  113. "w": 1
  114. },
  115. "_lscale": {
  116. "__type__": "cc.Vec3",
  117. "x": 1,
  118. "y": 1,
  119. "z": 1
  120. },
  121. "_mobility": 0,
  122. "_layer": 33554432,
  123. "_euler": {
  124. "__type__": "cc.Vec3",
  125. "x": 0,
  126. "y": 0,
  127. "z": 0
  128. },
  129. "_id": "beI88Z2HpFELqR4T5EMHpg"
  130. },
  131. {
  132. "__type__": "cc.Node",
  133. "_name": "Camera",
  134. "_objFlags": 0,
  135. "__editorExtras__": {},
  136. "_parent": {
  137. "__id__": 2
  138. },
  139. "_children": [],
  140. "_active": true,
  141. "_components": [
  142. {
  143. "__id__": 4
  144. }
  145. ],
  146. "_prefab": null,
  147. "_lpos": {
  148. "__type__": "cc.Vec3",
  149. "x": 0,
  150. "y": 0,
  151. "z": 1000
  152. },
  153. "_lrot": {
  154. "__type__": "cc.Quat",
  155. "x": 0,
  156. "y": 0,
  157. "z": 0,
  158. "w": 1
  159. },
  160. "_lscale": {
  161. "__type__": "cc.Vec3",
  162. "x": 1,
  163. "y": 1,
  164. "z": 1
  165. },
  166. "_mobility": 0,
  167. "_layer": 1073741824,
  168. "_euler": {
  169. "__type__": "cc.Vec3",
  170. "x": 0,
  171. "y": 0,
  172. "z": 0
  173. },
  174. "_id": "ebFwiq8gBFaYpqYbdoDODe"
  175. },
  176. {
  177. "__type__": "cc.Camera",
  178. "_name": "",
  179. "_objFlags": 0,
  180. "__editorExtras__": {},
  181. "node": {
  182. "__id__": 3
  183. },
  184. "_enabled": true,
  185. "__prefab": null,
  186. "_projection": 0,
  187. "_priority": 0,
  188. "_fov": 45,
  189. "_fovAxis": 0,
  190. "_orthoHeight": 320,
  191. "_near": 0,
  192. "_far": 1000,
  193. "_color": {
  194. "__type__": "cc.Color",
  195. "r": 0,
  196. "g": 0,
  197. "b": 0,
  198. "a": 255
  199. },
  200. "_depth": 1,
  201. "_stencil": 0,
  202. "_clearFlags": 7,
  203. "_rect": {
  204. "__type__": "cc.Rect",
  205. "x": 0,
  206. "y": 0,
  207. "width": 1,
  208. "height": 1
  209. },
  210. "_aperture": 19,
  211. "_shutter": 7,
  212. "_iso": 0,
  213. "_screenScale": 1,
  214. "_visibility": 1108344832,
  215. "_targetTexture": null,
  216. "_postProcess": null,
  217. "_usePostProcess": false,
  218. "_cameraType": -1,
  219. "_trackingType": 0,
  220. "_id": "63WIch3o5BEYRlXzTT0oWc"
  221. },
  222. {
  223. "__type__": "cc.Node",
  224. "_name": "BG",
  225. "_objFlags": 0,
  226. "__editorExtras__": {},
  227. "_parent": {
  228. "__id__": 2
  229. },
  230. "_children": [],
  231. "_active": true,
  232. "_components": [
  233. {
  234. "__id__": 6
  235. },
  236. {
  237. "__id__": 7
  238. }
  239. ],
  240. "_prefab": null,
  241. "_lpos": {
  242. "__type__": "cc.Vec3",
  243. "x": 0,
  244. "y": 0,
  245. "z": 0
  246. },
  247. "_lrot": {
  248. "__type__": "cc.Quat",
  249. "x": 0,
  250. "y": 0,
  251. "z": 0,
  252. "w": 1
  253. },
  254. "_lscale": {
  255. "__type__": "cc.Vec3",
  256. "x": 1,
  257. "y": 1,
  258. "z": 1
  259. },
  260. "_mobility": 0,
  261. "_layer": 33554432,
  262. "_euler": {
  263. "__type__": "cc.Vec3",
  264. "x": 0,
  265. "y": 0,
  266. "z": 0
  267. },
  268. "_id": "9fR0gTUQFCtbN/gYlUtyRM"
  269. },
  270. {
  271. "__type__": "cc.UITransform",
  272. "_name": "",
  273. "_objFlags": 0,
  274. "__editorExtras__": {},
  275. "node": {
  276. "__id__": 5
  277. },
  278. "_enabled": true,
  279. "__prefab": null,
  280. "_contentSize": {
  281. "__type__": "cc.Size",
  282. "width": 960,
  283. "height": 640
  284. },
  285. "_anchorPoint": {
  286. "__type__": "cc.Vec2",
  287. "x": 0.5,
  288. "y": 0.5
  289. },
  290. "_id": "13orXE9+VDA5q1zLaASh0T"
  291. },
  292. {
  293. "__type__": "cc.Sprite",
  294. "_name": "",
  295. "_objFlags": 0,
  296. "__editorExtras__": {},
  297. "node": {
  298. "__id__": 5
  299. },
  300. "_enabled": true,
  301. "__prefab": null,
  302. "_customMaterial": null,
  303. "_srcBlendFactor": 2,
  304. "_dstBlendFactor": 4,
  305. "_color": {
  306. "__type__": "cc.Color",
  307. "r": 255,
  308. "g": 255,
  309. "b": 255,
  310. "a": 255
  311. },
  312. "_spriteFrame": {
  313. "__uuid__": "ec3f53f1-9074-4f81-8959-3bc19705926d@f9941",
  314. "__expectedType__": "cc.SpriteFrame"
  315. },
  316. "_type": 0,
  317. "_fillType": 0,
  318. "_sizeMode": 1,
  319. "_fillCenter": {
  320. "__type__": "cc.Vec2",
  321. "x": 0,
  322. "y": 0
  323. },
  324. "_fillStart": 0,
  325. "_fillRange": 0,
  326. "_isTrimmedMode": true,
  327. "_useGrayscale": false,
  328. "_atlas": null,
  329. "_id": "d5ADkT5QVKmrm0/7yOHLYU"
  330. },
  331. {
  332. "__type__": "cc.Node",
  333. "_name": "BG-hd.pvr.ccz",
  334. "_objFlags": 0,
  335. "__editorExtras__": {},
  336. "_parent": {
  337. "__id__": 2
  338. },
  339. "_children": [],
  340. "_active": true,
  341. "_components": [
  342. {
  343. "__id__": 9
  344. },
  345. {
  346. "__id__": 10
  347. }
  348. ],
  349. "_prefab": null,
  350. "_lpos": {
  351. "__type__": "cc.Vec3",
  352. "x": 0,
  353. "y": -87,
  354. "z": 0
  355. },
  356. "_lrot": {
  357. "__type__": "cc.Quat",
  358. "x": 0,
  359. "y": 0,
  360. "z": 0,
  361. "w": 1
  362. },
  363. "_lscale": {
  364. "__type__": "cc.Vec3",
  365. "x": 1,
  366. "y": 1,
  367. "z": 1
  368. },
  369. "_mobility": 0,
  370. "_layer": 33554432,
  371. "_euler": {
  372. "__type__": "cc.Vec3",
  373. "x": 0,
  374. "y": 0,
  375. "z": 0
  376. },
  377. "_id": "aborHamhBJqaZ5biE3MUfz"
  378. },
  379. {
  380. "__type__": "cc.UITransform",
  381. "_name": "",
  382. "_objFlags": 0,
  383. "__editorExtras__": {},
  384. "node": {
  385. "__id__": 8
  386. },
  387. "_enabled": true,
  388. "__prefab": null,
  389. "_contentSize": {
  390. "__type__": "cc.Size",
  391. "width": 960,
  392. "height": 464
  393. },
  394. "_anchorPoint": {
  395. "__type__": "cc.Vec2",
  396. "x": 0.5,
  397. "y": 0.5
  398. },
  399. "_id": "d9v7Gg1kxDSbf3XgCfJ9Hh"
  400. },
  401. {
  402. "__type__": "cc.Sprite",
  403. "_name": "",
  404. "_objFlags": 0,
  405. "__editorExtras__": {},
  406. "node": {
  407. "__id__": 8
  408. },
  409. "_enabled": true,
  410. "__prefab": null,
  411. "_customMaterial": null,
  412. "_srcBlendFactor": 2,
  413. "_dstBlendFactor": 4,
  414. "_color": {
  415. "__type__": "cc.Color",
  416. "r": 255,
  417. "g": 255,
  418. "b": 255,
  419. "a": 255
  420. },
  421. "_spriteFrame": {
  422. "__uuid__": "f686ec0a-8f9f-448d-b083-c8e0506a7a82@f9941",
  423. "__expectedType__": "cc.SpriteFrame"
  424. },
  425. "_type": 0,
  426. "_fillType": 0,
  427. "_sizeMode": 1,
  428. "_fillCenter": {
  429. "__type__": "cc.Vec2",
  430. "x": 0,
  431. "y": 0
  432. },
  433. "_fillStart": 0,
  434. "_fillRange": 0,
  435. "_isTrimmedMode": true,
  436. "_useGrayscale": false,
  437. "_atlas": null,
  438. "_id": "43vpgn24pFVbb6v7SuW6Qa"
  439. },
  440. {
  441. "__type__": "cc.Node",
  442. "_objFlags": 0,
  443. "_parent": {
  444. "__id__": 2
  445. },
  446. "_prefab": {
  447. "__id__": 12
  448. },
  449. "__editorExtras__": {}
  450. },
  451. {
  452. "__type__": "cc.PrefabInfo",
  453. "root": {
  454. "__id__": 11
  455. },
  456. "asset": {
  457. "__uuid__": "7e8bd4ec-9799-4c1a-a581-99ea0db4895b",
  458. "__expectedType__": "cc.Prefab"
  459. },
  460. "fileId": "6fIK62bKBEqpgkmsIteq70",
  461. "instance": {
  462. "__id__": 13
  463. },
  464. "targetOverrides": null,
  465. "nestedPrefabInstanceRoots": null
  466. },
  467. {
  468. "__type__": "cc.PrefabInstance",
  469. "fileId": "de5JJbD/xFa55kK/MjDERb",
  470. "prefabRootNode": null,
  471. "mountedChildren": [],
  472. "mountedComponents": [],
  473. "propertyOverrides": [
  474. {
  475. "__id__": 14
  476. },
  477. {
  478. "__id__": 16
  479. },
  480. {
  481. "__id__": 17
  482. },
  483. {
  484. "__id__": 18
  485. },
  486. {
  487. "__id__": 19
  488. }
  489. ],
  490. "removedComponents": []
  491. },
  492. {
  493. "__type__": "CCPropertyOverrideInfo",
  494. "targetInfo": {
  495. "__id__": 15
  496. },
  497. "propertyPath": [
  498. "_name"
  499. ],
  500. "value": "CountDown"
  501. },
  502. {
  503. "__type__": "cc.TargetInfo",
  504. "localID": [
  505. "6fIK62bKBEqpgkmsIteq70"
  506. ]
  507. },
  508. {
  509. "__type__": "CCPropertyOverrideInfo",
  510. "targetInfo": {
  511. "__id__": 15
  512. },
  513. "propertyPath": [
  514. "_lpos"
  515. ],
  516. "value": {
  517. "__type__": "cc.Vec3",
  518. "x": 0,
  519. "y": 0,
  520. "z": 0
  521. }
  522. },
  523. {
  524. "__type__": "CCPropertyOverrideInfo",
  525. "targetInfo": {
  526. "__id__": 15
  527. },
  528. "propertyPath": [
  529. "_lrot"
  530. ],
  531. "value": {
  532. "__type__": "cc.Quat",
  533. "x": 0,
  534. "y": 0,
  535. "z": 0,
  536. "w": 1
  537. }
  538. },
  539. {
  540. "__type__": "CCPropertyOverrideInfo",
  541. "targetInfo": {
  542. "__id__": 15
  543. },
  544. "propertyPath": [
  545. "_euler"
  546. ],
  547. "value": {
  548. "__type__": "cc.Vec3",
  549. "x": 0,
  550. "y": 0,
  551. "z": 0
  552. }
  553. },
  554. {
  555. "__type__": "CCPropertyOverrideInfo",
  556. "targetInfo": {
  557. "__id__": 15
  558. },
  559. "propertyPath": [
  560. "_active"
  561. ],
  562. "value": false
  563. },
  564. {
  565. "__type__": "cc.Node",
  566. "_name": "TiledMap",
  567. "_objFlags": 0,
  568. "__editorExtras__": {},
  569. "_parent": {
  570. "__id__": 2
  571. },
  572. "_children": [
  573. {
  574. "__id__": 21
  575. },
  576. {
  577. "__id__": 24
  578. }
  579. ],
  580. "_active": true,
  581. "_components": [
  582. {
  583. "__id__": 27
  584. },
  585. {
  586. "__id__": 28
  587. }
  588. ],
  589. "_prefab": null,
  590. "_lpos": {
  591. "__type__": "cc.Vec3",
  592. "x": 0,
  593. "y": 0,
  594. "z": 0
  595. },
  596. "_lrot": {
  597. "__type__": "cc.Quat",
  598. "x": 0,
  599. "y": 0,
  600. "z": 0,
  601. "w": 1
  602. },
  603. "_lscale": {
  604. "__type__": "cc.Vec3",
  605. "x": 1,
  606. "y": 1,
  607. "z": 1
  608. },
  609. "_mobility": 0,
  610. "_layer": 33554432,
  611. "_euler": {
  612. "__type__": "cc.Vec3",
  613. "x": 0,
  614. "y": 0,
  615. "z": 0
  616. },
  617. "_id": "464WciIwRE2bKX1Ev0vM25"
  618. },
  619. {
  620. "__type__": "cc.Node",
  621. "_name": "PATH",
  622. "_objFlags": 0,
  623. "__editorExtras__": {},
  624. "_parent": {
  625. "__id__": 20
  626. },
  627. "_children": [],
  628. "_active": true,
  629. "_components": [
  630. {
  631. "__id__": 22
  632. },
  633. {
  634. "__id__": 23
  635. }
  636. ],
  637. "_prefab": null,
  638. "_lpos": {
  639. "__type__": "cc.Vec3",
  640. "x": 0,
  641. "y": 0,
  642. "z": 0
  643. },
  644. "_lrot": {
  645. "__type__": "cc.Quat",
  646. "x": 0,
  647. "y": 0,
  648. "z": 0,
  649. "w": 1
  650. },
  651. "_lscale": {
  652. "__type__": "cc.Vec3",
  653. "x": 1,
  654. "y": 1,
  655. "z": 1
  656. },
  657. "_mobility": 0,
  658. "_layer": 33554432,
  659. "_euler": {
  660. "__type__": "cc.Vec3",
  661. "x": 0,
  662. "y": 0,
  663. "z": 0
  664. },
  665. "_id": "beOfwBScxEcKuTaJZfENzv"
  666. },
  667. {
  668. "__type__": "cc.UITransform",
  669. "_name": "",
  670. "_objFlags": 0,
  671. "__editorExtras__": {},
  672. "node": {
  673. "__id__": 21
  674. },
  675. "_enabled": true,
  676. "__prefab": null,
  677. "_contentSize": {
  678. "__type__": "cc.Size",
  679. "width": 960,
  680. "height": 640
  681. },
  682. "_anchorPoint": {
  683. "__type__": "cc.Vec2",
  684. "x": 0.5,
  685. "y": 0.5
  686. },
  687. "_id": "b90Sq4UyFFE5Fh0B9kjHWL"
  688. },
  689. {
  690. "__type__": "cc.TiledObjectGroup",
  691. "_name": "",
  692. "_objFlags": 0,
  693. "__editorExtras__": {},
  694. "node": {
  695. "__id__": 21
  696. },
  697. "_enabled": true,
  698. "__prefab": null,
  699. "_id": "52Qw2KI+5FWZFNIXgXqh8D"
  700. },
  701. {
  702. "__type__": "cc.Node",
  703. "_name": "hlb4",
  704. "_objFlags": 0,
  705. "__editorExtras__": {},
  706. "_parent": {
  707. "__id__": 20
  708. },
  709. "_children": [],
  710. "_active": true,
  711. "_components": [
  712. {
  713. "__id__": 25
  714. },
  715. {
  716. "__id__": 26
  717. }
  718. ],
  719. "_prefab": null,
  720. "_lpos": {
  721. "__type__": "cc.Vec3",
  722. "x": 376.259,
  723. "y": 178.907,
  724. "z": 0
  725. },
  726. "_lrot": {
  727. "__type__": "cc.Quat",
  728. "x": 0,
  729. "y": 0,
  730. "z": 0,
  731. "w": 1
  732. },
  733. "_lscale": {
  734. "__type__": "cc.Vec3",
  735. "x": 1,
  736. "y": 1,
  737. "z": 1
  738. },
  739. "_mobility": 0,
  740. "_layer": 33554432,
  741. "_euler": {
  742. "__type__": "cc.Vec3",
  743. "x": 0,
  744. "y": 0,
  745. "z": 0
  746. },
  747. "_id": "9dTkRv3hBKmr42EQACrf8I"
  748. },
  749. {
  750. "__type__": "cc.UITransform",
  751. "_name": "",
  752. "_objFlags": 0,
  753. "__editorExtras__": {},
  754. "node": {
  755. "__id__": 24
  756. },
  757. "_enabled": true,
  758. "__prefab": null,
  759. "_contentSize": {
  760. "__type__": "cc.Size",
  761. "width": 77,
  762. "height": 106
  763. },
  764. "_anchorPoint": {
  765. "__type__": "cc.Vec2",
  766. "x": 0.5,
  767. "y": 0.5
  768. },
  769. "_id": "b9bFG+NG9M55I5ftbFQ71w"
  770. },
  771. {
  772. "__type__": "cc.Sprite",
  773. "_name": "",
  774. "_objFlags": 0,
  775. "__editorExtras__": {},
  776. "node": {
  777. "__id__": 24
  778. },
  779. "_enabled": true,
  780. "__prefab": null,
  781. "_customMaterial": null,
  782. "_srcBlendFactor": 2,
  783. "_dstBlendFactor": 4,
  784. "_color": {
  785. "__type__": "cc.Color",
  786. "r": 255,
  787. "g": 255,
  788. "b": 255,
  789. "a": 255
  790. },
  791. "_spriteFrame": {
  792. "__uuid__": "ac0aae0f-3272-4440-acb2-8aad28c0022f@b105d",
  793. "__expectedType__": "cc.SpriteFrame"
  794. },
  795. "_type": 0,
  796. "_fillType": 0,
  797. "_sizeMode": 1,
  798. "_fillCenter": {
  799. "__type__": "cc.Vec2",
  800. "x": 0,
  801. "y": 0
  802. },
  803. "_fillStart": 0,
  804. "_fillRange": 0,
  805. "_isTrimmedMode": true,
  806. "_useGrayscale": false,
  807. "_atlas": null,
  808. "_id": "caItj/GvBGV7XjLYqwqWAs"
  809. },
  810. {
  811. "__type__": "cc.UITransform",
  812. "_name": "",
  813. "_objFlags": 0,
  814. "__editorExtras__": {},
  815. "node": {
  816. "__id__": 20
  817. },
  818. "_enabled": true,
  819. "__prefab": null,
  820. "_contentSize": {
  821. "__type__": "cc.Size",
  822. "width": 960,
  823. "height": 640
  824. },
  825. "_anchorPoint": {
  826. "__type__": "cc.Vec2",
  827. "x": 0.5,
  828. "y": 0.5
  829. },
  830. "_id": "e0iwQFVZ5GPI3mZn02DTsj"
  831. },
  832. {
  833. "__type__": "cc.TiledMap",
  834. "_name": "",
  835. "_objFlags": 0,
  836. "__editorExtras__": {},
  837. "node": {
  838. "__id__": 20
  839. },
  840. "_enabled": true,
  841. "__prefab": null,
  842. "_tmxFile": {
  843. "__uuid__": "426751d3-a783-4ff7-a35d-57f3bc5e3248",
  844. "__expectedType__": "cc.TiledMapAsset"
  845. },
  846. "_enableCulling": true,
  847. "cleanupImageCache": true,
  848. "_id": "63H2ptGSRHwo87fcaipxMt"
  849. },
  850. {
  851. "__type__": "cc.Node",
  852. "_name": "Menu",
  853. "_objFlags": 0,
  854. "__editorExtras__": {},
  855. "_parent": {
  856. "__id__": 2
  857. },
  858. "_children": [
  859. {
  860. "__id__": 30
  861. },
  862. {
  863. "__id__": 33
  864. },
  865. {
  866. "__id__": 36
  867. },
  868. {
  869. "__id__": 40
  870. },
  871. {
  872. "__id__": 45
  873. }
  874. ],
  875. "_active": true,
  876. "_components": [
  877. {
  878. "__id__": 50
  879. }
  880. ],
  881. "_prefab": null,
  882. "_lpos": {
  883. "__type__": "cc.Vec3",
  884. "x": 0,
  885. "y": 0,
  886. "z": 0
  887. },
  888. "_lrot": {
  889. "__type__": "cc.Quat",
  890. "x": 0,
  891. "y": 0,
  892. "z": 0,
  893. "w": 1
  894. },
  895. "_lscale": {
  896. "__type__": "cc.Vec3",
  897. "x": 1,
  898. "y": 1,
  899. "z": 1
  900. },
  901. "_mobility": 0,
  902. "_layer": 1073741824,
  903. "_euler": {
  904. "__type__": "cc.Vec3",
  905. "x": 0,
  906. "y": 0,
  907. "z": 0
  908. },
  909. "_id": "d3WeX0WEtJX4kiipR2G07m"
  910. },
  911. {
  912. "__type__": "cc.Node",
  913. "_name": "MenuBG",
  914. "_objFlags": 0,
  915. "__editorExtras__": {},
  916. "_parent": {
  917. "__id__": 29
  918. },
  919. "_children": [],
  920. "_active": true,
  921. "_components": [
  922. {
  923. "__id__": 31
  924. },
  925. {
  926. "__id__": 32
  927. }
  928. ],
  929. "_prefab": null,
  930. "_lpos": {
  931. "__type__": "cc.Vec3",
  932. "x": 0,
  933. "y": 280,
  934. "z": 0
  935. },
  936. "_lrot": {
  937. "__type__": "cc.Quat",
  938. "x": 0,
  939. "y": 0,
  940. "z": 0,
  941. "w": 1
  942. },
  943. "_lscale": {
  944. "__type__": "cc.Vec3",
  945. "x": 1,
  946. "y": 1,
  947. "z": 1
  948. },
  949. "_mobility": 0,
  950. "_layer": 33554432,
  951. "_euler": {
  952. "__type__": "cc.Vec3",
  953. "x": 0,
  954. "y": 0,
  955. "z": 0
  956. },
  957. "_id": "8bYU8jTR9MT7V9n5tcrB6r"
  958. },
  959. {
  960. "__type__": "cc.UITransform",
  961. "_name": "",
  962. "_objFlags": 0,
  963. "__editorExtras__": {},
  964. "node": {
  965. "__id__": 30
  966. },
  967. "_enabled": true,
  968. "__prefab": null,
  969. "_contentSize": {
  970. "__type__": "cc.Size",
  971. "width": 926,
  972. "height": 78
  973. },
  974. "_anchorPoint": {
  975. "__type__": "cc.Vec2",
  976. "x": 0.5,
  977. "y": 0.5
  978. },
  979. "_id": "4aghtgxRJEyab6Ks6LjV5e"
  980. },
  981. {
  982. "__type__": "cc.Sprite",
  983. "_name": "",
  984. "_objFlags": 0,
  985. "__editorExtras__": {},
  986. "node": {
  987. "__id__": 30
  988. },
  989. "_enabled": true,
  990. "__prefab": null,
  991. "_customMaterial": null,
  992. "_srcBlendFactor": 2,
  993. "_dstBlendFactor": 4,
  994. "_color": {
  995. "__type__": "cc.Color",
  996. "r": 255,
  997. "g": 255,
  998. "b": 255,
  999. "a": 255
  1000. },
  1001. "_spriteFrame": {
  1002. "__uuid__": "e104c27b-9803-4bed-bb01-f58171e15ac9@9e3f8",
  1003. "__expectedType__": "cc.SpriteFrame"
  1004. },
  1005. "_type": 0,
  1006. "_fillType": 0,
  1007. "_sizeMode": 1,
  1008. "_fillCenter": {
  1009. "__type__": "cc.Vec2",
  1010. "x": 0,
  1011. "y": 0
  1012. },
  1013. "_fillStart": 0,
  1014. "_fillRange": 0,
  1015. "_isTrimmedMode": true,
  1016. "_useGrayscale": false,
  1017. "_atlas": null,
  1018. "_id": "b3YECm2ixHx41+pDbllL9X"
  1019. },
  1020. {
  1021. "__type__": "cc.Node",
  1022. "_name": "MenuCenter_01_CN",
  1023. "_objFlags": 0,
  1024. "__editorExtras__": {},
  1025. "_parent": {
  1026. "__id__": 29
  1027. },
  1028. "_children": [],
  1029. "_active": true,
  1030. "_components": [
  1031. {
  1032. "__id__": 34
  1033. },
  1034. {
  1035. "__id__": 35
  1036. }
  1037. ],
  1038. "_prefab": null,
  1039. "_lpos": {
  1040. "__type__": "cc.Vec3",
  1041. "x": 0,
  1042. "y": 288,
  1043. "z": 0
  1044. },
  1045. "_lrot": {
  1046. "__type__": "cc.Quat",
  1047. "x": 0,
  1048. "y": 0,
  1049. "z": 0,
  1050. "w": 1
  1051. },
  1052. "_lscale": {
  1053. "__type__": "cc.Vec3",
  1054. "x": 1,
  1055. "y": 1,
  1056. "z": 1
  1057. },
  1058. "_mobility": 0,
  1059. "_layer": 1073741824,
  1060. "_euler": {
  1061. "__type__": "cc.Vec3",
  1062. "x": 0,
  1063. "y": 0,
  1064. "z": 0
  1065. },
  1066. "_id": "5e5OuKwZZGv7Lq1zQQgEyN"
  1067. },
  1068. {
  1069. "__type__": "cc.UITransform",
  1070. "_name": "",
  1071. "_objFlags": 0,
  1072. "__editorExtras__": {},
  1073. "node": {
  1074. "__id__": 33
  1075. },
  1076. "_enabled": true,
  1077. "__prefab": null,
  1078. "_contentSize": {
  1079. "__type__": "cc.Size",
  1080. "width": 236,
  1081. "height": 52
  1082. },
  1083. "_anchorPoint": {
  1084. "__type__": "cc.Vec2",
  1085. "x": 0.5,
  1086. "y": 0.5
  1087. },
  1088. "_id": "1e6NnK82BCs7IiBPEZTSKl"
  1089. },
  1090. {
  1091. "__type__": "cc.Sprite",
  1092. "_name": "",
  1093. "_objFlags": 0,
  1094. "__editorExtras__": {},
  1095. "node": {
  1096. "__id__": 33
  1097. },
  1098. "_enabled": true,
  1099. "__prefab": null,
  1100. "_customMaterial": null,
  1101. "_srcBlendFactor": 2,
  1102. "_dstBlendFactor": 4,
  1103. "_color": {
  1104. "__type__": "cc.Color",
  1105. "r": 255,
  1106. "g": 255,
  1107. "b": 255,
  1108. "a": 255
  1109. },
  1110. "_spriteFrame": {
  1111. "__uuid__": "e104c27b-9803-4bed-bb01-f58171e15ac9@6a672",
  1112. "__expectedType__": "cc.SpriteFrame"
  1113. },
  1114. "_type": 0,
  1115. "_fillType": 0,
  1116. "_sizeMode": 1,
  1117. "_fillCenter": {
  1118. "__type__": "cc.Vec2",
  1119. "x": 0,
  1120. "y": 0
  1121. },
  1122. "_fillStart": 0,
  1123. "_fillRange": 0,
  1124. "_isTrimmedMode": true,
  1125. "_useGrayscale": false,
  1126. "_atlas": null,
  1127. "_id": "72vdZGDldAu7xNptG8Gs91"
  1128. },
  1129. {
  1130. "__type__": "cc.Node",
  1131. "_name": "BtnMore",
  1132. "_objFlags": 0,
  1133. "__editorExtras__": {},
  1134. "_parent": {
  1135. "__id__": 29
  1136. },
  1137. "_children": [],
  1138. "_active": true,
  1139. "_components": [
  1140. {
  1141. "__id__": 37
  1142. },
  1143. {
  1144. "__id__": 38
  1145. },
  1146. {
  1147. "__id__": 39
  1148. }
  1149. ],
  1150. "_prefab": null,
  1151. "_lpos": {
  1152. "__type__": "cc.Vec3",
  1153. "x": 400,
  1154. "y": 288,
  1155. "z": 0
  1156. },
  1157. "_lrot": {
  1158. "__type__": "cc.Quat",
  1159. "x": 0,
  1160. "y": 0,
  1161. "z": 0,
  1162. "w": 1
  1163. },
  1164. "_lscale": {
  1165. "__type__": "cc.Vec3",
  1166. "x": 1,
  1167. "y": 1,
  1168. "z": 1
  1169. },
  1170. "_mobility": 0,
  1171. "_layer": 1073741824,
  1172. "_euler": {
  1173. "__type__": "cc.Vec3",
  1174. "x": 0,
  1175. "y": 0,
  1176. "z": 0
  1177. },
  1178. "_id": "18S40KtjtKdIz4GkMOTQvk"
  1179. },
  1180. {
  1181. "__type__": "cc.UITransform",
  1182. "_name": "",
  1183. "_objFlags": 0,
  1184. "__editorExtras__": {},
  1185. "node": {
  1186. "__id__": 36
  1187. },
  1188. "_enabled": true,
  1189. "__prefab": null,
  1190. "_contentSize": {
  1191. "__type__": "cc.Size",
  1192. "width": 56,
  1193. "height": 56
  1194. },
  1195. "_anchorPoint": {
  1196. "__type__": "cc.Vec2",
  1197. "x": 0.5,
  1198. "y": 0.5
  1199. },
  1200. "_id": "a2Ti2WYRRFBYkGfdimBefl"
  1201. },
  1202. {
  1203. "__type__": "cc.Sprite",
  1204. "_name": "",
  1205. "_objFlags": 0,
  1206. "__editorExtras__": {},
  1207. "node": {
  1208. "__id__": 36
  1209. },
  1210. "_enabled": true,
  1211. "__prefab": null,
  1212. "_customMaterial": null,
  1213. "_srcBlendFactor": 2,
  1214. "_dstBlendFactor": 4,
  1215. "_color": {
  1216. "__type__": "cc.Color",
  1217. "r": 255,
  1218. "g": 255,
  1219. "b": 255,
  1220. "a": 255
  1221. },
  1222. "_spriteFrame": {
  1223. "__uuid__": "e104c27b-9803-4bed-bb01-f58171e15ac9@598ce",
  1224. "__expectedType__": "cc.SpriteFrame"
  1225. },
  1226. "_type": 1,
  1227. "_fillType": 0,
  1228. "_sizeMode": 0,
  1229. "_fillCenter": {
  1230. "__type__": "cc.Vec2",
  1231. "x": 0,
  1232. "y": 0
  1233. },
  1234. "_fillStart": 0,
  1235. "_fillRange": 0,
  1236. "_isTrimmedMode": true,
  1237. "_useGrayscale": false,
  1238. "_atlas": null,
  1239. "_id": "f61X3Fmk9FD5TMq3Euk5NY"
  1240. },
  1241. {
  1242. "__type__": "cc.Button",
  1243. "_name": "",
  1244. "_objFlags": 0,
  1245. "__editorExtras__": {},
  1246. "node": {
  1247. "__id__": 36
  1248. },
  1249. "_enabled": true,
  1250. "__prefab": null,
  1251. "clickEvents": [],
  1252. "_interactable": true,
  1253. "_transition": 2,
  1254. "_normalColor": {
  1255. "__type__": "cc.Color",
  1256. "r": 214,
  1257. "g": 214,
  1258. "b": 214,
  1259. "a": 255
  1260. },
  1261. "_hoverColor": {
  1262. "__type__": "cc.Color",
  1263. "r": 211,
  1264. "g": 211,
  1265. "b": 211,
  1266. "a": 255
  1267. },
  1268. "_pressedColor": {
  1269. "__type__": "cc.Color",
  1270. "r": 255,
  1271. "g": 255,
  1272. "b": 255,
  1273. "a": 255
  1274. },
  1275. "_disabledColor": {
  1276. "__type__": "cc.Color",
  1277. "r": 124,
  1278. "g": 124,
  1279. "b": 124,
  1280. "a": 255
  1281. },
  1282. "_normalSprite": {
  1283. "__uuid__": "e104c27b-9803-4bed-bb01-f58171e15ac9@598ce",
  1284. "__expectedType__": "cc.SpriteFrame"
  1285. },
  1286. "_hoverSprite": null,
  1287. "_pressedSprite": {
  1288. "__uuid__": "e104c27b-9803-4bed-bb01-f58171e15ac9@7e74d",
  1289. "__expectedType__": "cc.SpriteFrame"
  1290. },
  1291. "_disabledSprite": null,
  1292. "_duration": 0.1,
  1293. "_zoomScale": 1.2,
  1294. "_target": {
  1295. "__id__": 36
  1296. },
  1297. "_id": "6c3/yliSlBXaPBHmzqqCfd"
  1298. },
  1299. {
  1300. "__type__": "cc.Node",
  1301. "_name": "BtnPause",
  1302. "_objFlags": 0,
  1303. "__editorExtras__": {},
  1304. "_parent": {
  1305. "__id__": 29
  1306. },
  1307. "_children": [],
  1308. "_active": true,
  1309. "_components": [
  1310. {
  1311. "__id__": 41
  1312. },
  1313. {
  1314. "__id__": 42
  1315. },
  1316. {
  1317. "__id__": 43
  1318. }
  1319. ],
  1320. "_prefab": null,
  1321. "_lpos": {
  1322. "__type__": "cc.Vec3",
  1323. "x": 300,
  1324. "y": 288,
  1325. "z": 0
  1326. },
  1327. "_lrot": {
  1328. "__type__": "cc.Quat",
  1329. "x": 0,
  1330. "y": 0,
  1331. "z": 0,
  1332. "w": 1
  1333. },
  1334. "_lscale": {
  1335. "__type__": "cc.Vec3",
  1336. "x": 1,
  1337. "y": 1,
  1338. "z": 1
  1339. },
  1340. "_mobility": 0,
  1341. "_layer": 1073741824,
  1342. "_euler": {
  1343. "__type__": "cc.Vec3",
  1344. "x": 0,
  1345. "y": 0,
  1346. "z": 0
  1347. },
  1348. "_id": "c2taM3oS9JyJZVlNvw7UMj"
  1349. },
  1350. {
  1351. "__type__": "cc.UITransform",
  1352. "_name": "",
  1353. "_objFlags": 0,
  1354. "__editorExtras__": {},
  1355. "node": {
  1356. "__id__": 40
  1357. },
  1358. "_enabled": true,
  1359. "__prefab": null,
  1360. "_contentSize": {
  1361. "__type__": "cc.Size",
  1362. "width": 56,
  1363. "height": 56
  1364. },
  1365. "_anchorPoint": {
  1366. "__type__": "cc.Vec2",
  1367. "x": 0.5,
  1368. "y": 0.5
  1369. },
  1370. "_id": "b5z/fdacRPv6Vruax7rQsB"
  1371. },
  1372. {
  1373. "__type__": "cc.Sprite",
  1374. "_name": "",
  1375. "_objFlags": 0,
  1376. "__editorExtras__": {},
  1377. "node": {
  1378. "__id__": 40
  1379. },
  1380. "_enabled": true,
  1381. "__prefab": null,
  1382. "_customMaterial": null,
  1383. "_srcBlendFactor": 2,
  1384. "_dstBlendFactor": 4,
  1385. "_color": {
  1386. "__type__": "cc.Color",
  1387. "r": 255,
  1388. "g": 255,
  1389. "b": 255,
  1390. "a": 255
  1391. },
  1392. "_spriteFrame": {
  1393. "__uuid__": "e104c27b-9803-4bed-bb01-f58171e15ac9@920e2",
  1394. "__expectedType__": "cc.SpriteFrame"
  1395. },
  1396. "_type": 1,
  1397. "_fillType": 0,
  1398. "_sizeMode": 0,
  1399. "_fillCenter": {
  1400. "__type__": "cc.Vec2",
  1401. "x": 0,
  1402. "y": 0
  1403. },
  1404. "_fillStart": 0,
  1405. "_fillRange": 0,
  1406. "_isTrimmedMode": true,
  1407. "_useGrayscale": false,
  1408. "_atlas": null,
  1409. "_id": "62rWSbGm1LHbKbuf5EjwT/"
  1410. },
  1411. {
  1412. "__type__": "cc.Button",
  1413. "_name": "",
  1414. "_objFlags": 0,
  1415. "__editorExtras__": {},
  1416. "node": {
  1417. "__id__": 40
  1418. },
  1419. "_enabled": true,
  1420. "__prefab": null,
  1421. "clickEvents": [
  1422. {
  1423. "__id__": 44
  1424. }
  1425. ],
  1426. "_interactable": true,
  1427. "_transition": 3,
  1428. "_normalColor": {
  1429. "__type__": "cc.Color",
  1430. "r": 214,
  1431. "g": 214,
  1432. "b": 214,
  1433. "a": 255
  1434. },
  1435. "_hoverColor": {
  1436. "__type__": "cc.Color",
  1437. "r": 211,
  1438. "g": 211,
  1439. "b": 211,
  1440. "a": 255
  1441. },
  1442. "_pressedColor": {
  1443. "__type__": "cc.Color",
  1444. "r": 255,
  1445. "g": 255,
  1446. "b": 255,
  1447. "a": 255
  1448. },
  1449. "_disabledColor": {
  1450. "__type__": "cc.Color",
  1451. "r": 124,
  1452. "g": 124,
  1453. "b": 124,
  1454. "a": 255
  1455. },
  1456. "_normalSprite": {
  1457. "__uuid__": "e104c27b-9803-4bed-bb01-f58171e15ac9@920e2",
  1458. "__expectedType__": "cc.SpriteFrame"
  1459. },
  1460. "_hoverSprite": null,
  1461. "_pressedSprite": {
  1462. "__uuid__": "e104c27b-9803-4bed-bb01-f58171e15ac9@ff7c9",
  1463. "__expectedType__": "cc.SpriteFrame"
  1464. },
  1465. "_disabledSprite": null,
  1466. "_duration": 0.1,
  1467. "_zoomScale": 1.2,
  1468. "_target": {
  1469. "__id__": 40
  1470. },
  1471. "_id": "b6XBtfRZNIlZ/DmmsFIcdP"
  1472. },
  1473. {
  1474. "__type__": "cc.ClickEvent",
  1475. "target": {
  1476. "__id__": 29
  1477. },
  1478. "component": "",
  1479. "_componentId": "fbfafaCmx9I1L+QDG/G50o5",
  1480. "handler": "onBtnPause",
  1481. "customEventData": ""
  1482. },
  1483. {
  1484. "__type__": "cc.Node",
  1485. "_name": "BtnSpeed",
  1486. "_objFlags": 0,
  1487. "__editorExtras__": {},
  1488. "_parent": {
  1489. "__id__": 29
  1490. },
  1491. "_children": [],
  1492. "_active": true,
  1493. "_components": [
  1494. {
  1495. "__id__": 46
  1496. },
  1497. {
  1498. "__id__": 47
  1499. },
  1500. {
  1501. "__id__": 48
  1502. }
  1503. ],
  1504. "_prefab": null,
  1505. "_lpos": {
  1506. "__type__": "cc.Vec3",
  1507. "x": 200,
  1508. "y": 288,
  1509. "z": 0
  1510. },
  1511. "_lrot": {
  1512. "__type__": "cc.Quat",
  1513. "x": 0,
  1514. "y": 0,
  1515. "z": 0,
  1516. "w": 1
  1517. },
  1518. "_lscale": {
  1519. "__type__": "cc.Vec3",
  1520. "x": 1,
  1521. "y": 1,
  1522. "z": 1
  1523. },
  1524. "_mobility": 0,
  1525. "_layer": 1073741824,
  1526. "_euler": {
  1527. "__type__": "cc.Vec3",
  1528. "x": 0,
  1529. "y": 0,
  1530. "z": 0
  1531. },
  1532. "_id": "087ibc6IZLLZx8I/qQgBpk"
  1533. },
  1534. {
  1535. "__type__": "cc.UITransform",
  1536. "_name": "",
  1537. "_objFlags": 0,
  1538. "__editorExtras__": {},
  1539. "node": {
  1540. "__id__": 45
  1541. },
  1542. "_enabled": true,
  1543. "__prefab": null,
  1544. "_contentSize": {
  1545. "__type__": "cc.Size",
  1546. "width": 100,
  1547. "height": 58
  1548. },
  1549. "_anchorPoint": {
  1550. "__type__": "cc.Vec2",
  1551. "x": 0.5,
  1552. "y": 0.5
  1553. },
  1554. "_id": "51YwsoO7NLso/ulwZoiMoy"
  1555. },
  1556. {
  1557. "__type__": "cc.Sprite",
  1558. "_name": "",
  1559. "_objFlags": 0,
  1560. "__editorExtras__": {},
  1561. "node": {
  1562. "__id__": 45
  1563. },
  1564. "_enabled": true,
  1565. "__prefab": null,
  1566. "_customMaterial": null,
  1567. "_srcBlendFactor": 2,
  1568. "_dstBlendFactor": 4,
  1569. "_color": {
  1570. "__type__": "cc.Color",
  1571. "r": 255,
  1572. "g": 255,
  1573. "b": 255,
  1574. "a": 255
  1575. },
  1576. "_spriteFrame": {
  1577. "__uuid__": "e104c27b-9803-4bed-bb01-f58171e15ac9@326b4",
  1578. "__expectedType__": "cc.SpriteFrame"
  1579. },
  1580. "_type": 1,
  1581. "_fillType": 0,
  1582. "_sizeMode": 0,
  1583. "_fillCenter": {
  1584. "__type__": "cc.Vec2",
  1585. "x": 0,
  1586. "y": 0
  1587. },
  1588. "_fillStart": 0,
  1589. "_fillRange": 0,
  1590. "_isTrimmedMode": true,
  1591. "_useGrayscale": false,
  1592. "_atlas": null,
  1593. "_id": "c6TxCIQd1NzaOGMzcDXZ8+"
  1594. },
  1595. {
  1596. "__type__": "cc.Button",
  1597. "_name": "",
  1598. "_objFlags": 0,
  1599. "__editorExtras__": {},
  1600. "node": {
  1601. "__id__": 45
  1602. },
  1603. "_enabled": true,
  1604. "__prefab": null,
  1605. "clickEvents": [
  1606. {
  1607. "__id__": 49
  1608. }
  1609. ],
  1610. "_interactable": true,
  1611. "_transition": 3,
  1612. "_normalColor": {
  1613. "__type__": "cc.Color",
  1614. "r": 214,
  1615. "g": 214,
  1616. "b": 214,
  1617. "a": 255
  1618. },
  1619. "_hoverColor": {
  1620. "__type__": "cc.Color",
  1621. "r": 211,
  1622. "g": 211,
  1623. "b": 211,
  1624. "a": 255
  1625. },
  1626. "_pressedColor": {
  1627. "__type__": "cc.Color",
  1628. "r": 255,
  1629. "g": 255,
  1630. "b": 255,
  1631. "a": 255
  1632. },
  1633. "_disabledColor": {
  1634. "__type__": "cc.Color",
  1635. "r": 124,
  1636. "g": 124,
  1637. "b": 124,
  1638. "a": 255
  1639. },
  1640. "_normalSprite": {
  1641. "__uuid__": "e104c27b-9803-4bed-bb01-f58171e15ac9@326b4",
  1642. "__expectedType__": "cc.SpriteFrame"
  1643. },
  1644. "_hoverSprite": null,
  1645. "_pressedSprite": {
  1646. "__uuid__": "e104c27b-9803-4bed-bb01-f58171e15ac9@8ba7e",
  1647. "__expectedType__": "cc.SpriteFrame"
  1648. },
  1649. "_disabledSprite": null,
  1650. "_duration": 0.1,
  1651. "_zoomScale": 1.2,
  1652. "_target": {
  1653. "__id__": 45
  1654. },
  1655. "_id": "05S3dcU1RBqYQY01oDfm1l"
  1656. },
  1657. {
  1658. "__type__": "cc.ClickEvent",
  1659. "target": {
  1660. "__id__": 29
  1661. },
  1662. "component": "",
  1663. "_componentId": "fbfafaCmx9I1L+QDG/G50o5",
  1664. "handler": "onBtnSpeed",
  1665. "customEventData": ""
  1666. },
  1667. {
  1668. "__type__": "fbfafaCmx9I1L+QDG/G50o5",
  1669. "_name": "",
  1670. "_objFlags": 0,
  1671. "__editorExtras__": {},
  1672. "node": {
  1673. "__id__": 29
  1674. },
  1675. "_enabled": true,
  1676. "__prefab": null,
  1677. "btnSpeed": {
  1678. "__id__": 48
  1679. },
  1680. "imgSpeed_1": {
  1681. "__uuid__": "e104c27b-9803-4bed-bb01-f58171e15ac9@326b4",
  1682. "__expectedType__": "cc.SpriteFrame"
  1683. },
  1684. "imgSpeed_2": {
  1685. "__uuid__": "e104c27b-9803-4bed-bb01-f58171e15ac9@6821f",
  1686. "__expectedType__": "cc.SpriteFrame"
  1687. },
  1688. "_id": "64xmf2GdFAQI65oik8nSLs"
  1689. },
  1690. {
  1691. "__type__": "cc.UITransform",
  1692. "_name": "",
  1693. "_objFlags": 0,
  1694. "__editorExtras__": {},
  1695. "node": {
  1696. "__id__": 2
  1697. },
  1698. "_enabled": true,
  1699. "__prefab": null,
  1700. "_contentSize": {
  1701. "__type__": "cc.Size",
  1702. "width": 960,
  1703. "height": 640
  1704. },
  1705. "_anchorPoint": {
  1706. "__type__": "cc.Vec2",
  1707. "x": 0.5,
  1708. "y": 0.5
  1709. },
  1710. "_id": "d6rUX5yfhMlKoWX2bSbawx"
  1711. },
  1712. {
  1713. "__type__": "cc.Canvas",
  1714. "_name": "",
  1715. "_objFlags": 0,
  1716. "__editorExtras__": {},
  1717. "node": {
  1718. "__id__": 2
  1719. },
  1720. "_enabled": true,
  1721. "__prefab": null,
  1722. "_cameraComponent": {
  1723. "__id__": 4
  1724. },
  1725. "_alignCanvasWithScreen": true,
  1726. "_id": "12O/ljcVlEqLmVm3U2gEOQ"
  1727. },
  1728. {
  1729. "__type__": "cc.Widget",
  1730. "_name": "",
  1731. "_objFlags": 0,
  1732. "__editorExtras__": {},
  1733. "node": {
  1734. "__id__": 2
  1735. },
  1736. "_enabled": true,
  1737. "__prefab": null,
  1738. "_alignFlags": 45,
  1739. "_target": null,
  1740. "_left": 0,
  1741. "_right": 0,
  1742. "_top": 5.684341886080802e-14,
  1743. "_bottom": 5.684341886080802e-14,
  1744. "_horizontalCenter": 0,
  1745. "_verticalCenter": 0,
  1746. "_isAbsLeft": true,
  1747. "_isAbsRight": true,
  1748. "_isAbsTop": true,
  1749. "_isAbsBottom": true,
  1750. "_isAbsHorizontalCenter": true,
  1751. "_isAbsVerticalCenter": true,
  1752. "_originalWidth": 0,
  1753. "_originalHeight": 0,
  1754. "_alignMode": 2,
  1755. "_lockFlags": 0,
  1756. "_id": "c5V1EV8IpMtrIvY1OE9t2u"
  1757. },
  1758. {
  1759. "__type__": "cc.PrefabInfo",
  1760. "root": null,
  1761. "asset": null,
  1762. "fileId": "c72c6c69-975b-4f6b-a208-9d0dcde54d79",
  1763. "instance": null,
  1764. "targetOverrides": null,
  1765. "nestedPrefabInstanceRoots": [
  1766. {
  1767. "__id__": 11
  1768. }
  1769. ]
  1770. },
  1771. {
  1772. "__type__": "cc.SceneGlobals",
  1773. "ambient": {
  1774. "__id__": 56
  1775. },
  1776. "shadows": {
  1777. "__id__": 57
  1778. },
  1779. "_skybox": {
  1780. "__id__": 58
  1781. },
  1782. "fog": {
  1783. "__id__": 59
  1784. },
  1785. "octree": {
  1786. "__id__": 60
  1787. },
  1788. "skin": {
  1789. "__id__": 61
  1790. },
  1791. "lightProbeInfo": {
  1792. "__id__": 62
  1793. },
  1794. "postSettings": {
  1795. "__id__": 63
  1796. },
  1797. "bakedWithStationaryMainLight": false,
  1798. "bakedWithHighpLightmap": false
  1799. },
  1800. {
  1801. "__type__": "cc.AmbientInfo",
  1802. "_skyColorHDR": {
  1803. "__type__": "cc.Vec4",
  1804. "x": 0,
  1805. "y": 0,
  1806. "z": 0,
  1807. "w": 0.520833125
  1808. },
  1809. "_skyColor": {
  1810. "__type__": "cc.Vec4",
  1811. "x": 0,
  1812. "y": 0,
  1813. "z": 0,
  1814. "w": 0.520833125
  1815. },
  1816. "_skyIllumHDR": 20000,
  1817. "_skyIllum": 20000,
  1818. "_groundAlbedoHDR": {
  1819. "__type__": "cc.Vec4",
  1820. "x": 0,
  1821. "y": 0,
  1822. "z": 0,
  1823. "w": 0
  1824. },
  1825. "_groundAlbedo": {
  1826. "__type__": "cc.Vec4",
  1827. "x": 0,
  1828. "y": 0,
  1829. "z": 0,
  1830. "w": 0
  1831. },
  1832. "_skyColorLDR": {
  1833. "__type__": "cc.Vec4",
  1834. "x": 0.2,
  1835. "y": 0.5,
  1836. "z": 0.8,
  1837. "w": 1
  1838. },
  1839. "_skyIllumLDR": 20000,
  1840. "_groundAlbedoLDR": {
  1841. "__type__": "cc.Vec4",
  1842. "x": 0.2,
  1843. "y": 0.2,
  1844. "z": 0.2,
  1845. "w": 1
  1846. }
  1847. },
  1848. {
  1849. "__type__": "cc.ShadowsInfo",
  1850. "_enabled": false,
  1851. "_type": 0,
  1852. "_normal": {
  1853. "__type__": "cc.Vec3",
  1854. "x": 0,
  1855. "y": 1,
  1856. "z": 0
  1857. },
  1858. "_distance": 0,
  1859. "_planeBias": 1,
  1860. "_shadowColor": {
  1861. "__type__": "cc.Color",
  1862. "r": 76,
  1863. "g": 76,
  1864. "b": 76,
  1865. "a": 255
  1866. },
  1867. "_maxReceived": 4,
  1868. "_size": {
  1869. "__type__": "cc.Vec2",
  1870. "x": 512,
  1871. "y": 512
  1872. }
  1873. },
  1874. {
  1875. "__type__": "cc.SkyboxInfo",
  1876. "_envLightingType": 0,
  1877. "_envmapHDR": null,
  1878. "_envmap": null,
  1879. "_envmapLDR": null,
  1880. "_diffuseMapHDR": null,
  1881. "_diffuseMapLDR": null,
  1882. "_enabled": false,
  1883. "_useHDR": true,
  1884. "_editableMaterial": null,
  1885. "_reflectionHDR": null,
  1886. "_reflectionLDR": null,
  1887. "_rotationAngle": 0
  1888. },
  1889. {
  1890. "__type__": "cc.FogInfo",
  1891. "_type": 0,
  1892. "_fogColor": {
  1893. "__type__": "cc.Color",
  1894. "r": 200,
  1895. "g": 200,
  1896. "b": 200,
  1897. "a": 255
  1898. },
  1899. "_enabled": false,
  1900. "_fogDensity": 0.3,
  1901. "_fogStart": 0.5,
  1902. "_fogEnd": 300,
  1903. "_fogAtten": 5,
  1904. "_fogTop": 1.5,
  1905. "_fogRange": 1.2,
  1906. "_accurate": false
  1907. },
  1908. {
  1909. "__type__": "cc.OctreeInfo",
  1910. "_enabled": false,
  1911. "_minPos": {
  1912. "__type__": "cc.Vec3",
  1913. "x": -1024,
  1914. "y": -1024,
  1915. "z": -1024
  1916. },
  1917. "_maxPos": {
  1918. "__type__": "cc.Vec3",
  1919. "x": 1024,
  1920. "y": 1024,
  1921. "z": 1024
  1922. },
  1923. "_depth": 8
  1924. },
  1925. {
  1926. "__type__": "cc.SkinInfo",
  1927. "_enabled": false,
  1928. "_blurRadius": 0.01,
  1929. "_sssIntensity": 3
  1930. },
  1931. {
  1932. "__type__": "cc.LightProbeInfo",
  1933. "_giScale": 1,
  1934. "_giSamples": 1024,
  1935. "_bounces": 2,
  1936. "_reduceRinging": 0,
  1937. "_showProbe": true,
  1938. "_showWireframe": true,
  1939. "_showConvex": false,
  1940. "_data": null,
  1941. "_lightProbeSphereVolume": 1
  1942. },
  1943. {
  1944. "__type__": "cc.PostSettingsInfo",
  1945. "_toneMappingType": 0
  1946. }
  1947. ]