SelectScene.scene 46 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544
  1. [
  2. {
  3. "__type__": "cc.SceneAsset",
  4. "_name": "SelectScene",
  5. "_objFlags": 0,
  6. "__editorExtras__": {},
  7. "_native": "",
  8. "scene": {
  9. "__id__": 1
  10. }
  11. },
  12. {
  13. "__type__": "cc.Scene",
  14. "_name": "SelectScene",
  15. "_objFlags": 0,
  16. "__editorExtras__": {},
  17. "_parent": null,
  18. "_children": [
  19. {
  20. "__id__": 2
  21. }
  22. ],
  23. "_active": true,
  24. "_components": [],
  25. "_prefab": null,
  26. "_lpos": {
  27. "__type__": "cc.Vec3",
  28. "x": 0,
  29. "y": 0,
  30. "z": 0
  31. },
  32. "_lrot": {
  33. "__type__": "cc.Quat",
  34. "x": 0,
  35. "y": 0,
  36. "z": 0,
  37. "w": 1
  38. },
  39. "_lscale": {
  40. "__type__": "cc.Vec3",
  41. "x": 1,
  42. "y": 1,
  43. "z": 1
  44. },
  45. "_mobility": 0,
  46. "_layer": 1073741824,
  47. "_euler": {
  48. "__type__": "cc.Vec3",
  49. "x": 0,
  50. "y": 0,
  51. "z": 0
  52. },
  53. "autoReleaseAssets": false,
  54. "_globals": {
  55. "__id__": 63
  56. },
  57. "_id": "3e363d1f-2709-411a-ab06-8d7692d5b6e9"
  58. },
  59. {
  60. "__type__": "cc.Node",
  61. "_name": "Canvas",
  62. "_objFlags": 0,
  63. "__editorExtras__": {},
  64. "_parent": {
  65. "__id__": 1
  66. },
  67. "_children": [
  68. {
  69. "__id__": 3
  70. },
  71. {
  72. "__id__": 5
  73. },
  74. {
  75. "__id__": 8
  76. },
  77. {
  78. "__id__": 37
  79. },
  80. {
  81. "__id__": 57
  82. }
  83. ],
  84. "_active": true,
  85. "_components": [
  86. {
  87. "__id__": 59
  88. },
  89. {
  90. "__id__": 60
  91. },
  92. {
  93. "__id__": 61
  94. },
  95. {
  96. "__id__": 62
  97. }
  98. ],
  99. "_prefab": null,
  100. "_lpos": {
  101. "__type__": "cc.Vec3",
  102. "x": 480,
  103. "y": 320.00000000000006,
  104. "z": 0
  105. },
  106. "_lrot": {
  107. "__type__": "cc.Quat",
  108. "x": 0,
  109. "y": 0,
  110. "z": 0,
  111. "w": 1
  112. },
  113. "_lscale": {
  114. "__type__": "cc.Vec3",
  115. "x": 1,
  116. "y": 1,
  117. "z": 1
  118. },
  119. "_mobility": 0,
  120. "_layer": 33554432,
  121. "_euler": {
  122. "__type__": "cc.Vec3",
  123. "x": 0,
  124. "y": 0,
  125. "z": 0
  126. },
  127. "_id": "beI88Z2HpFELqR4T5EMHpg"
  128. },
  129. {
  130. "__type__": "cc.Node",
  131. "_name": "Camera",
  132. "_objFlags": 0,
  133. "__editorExtras__": {},
  134. "_parent": {
  135. "__id__": 2
  136. },
  137. "_children": [],
  138. "_active": true,
  139. "_components": [
  140. {
  141. "__id__": 4
  142. }
  143. ],
  144. "_prefab": null,
  145. "_lpos": {
  146. "__type__": "cc.Vec3",
  147. "x": 0,
  148. "y": 0,
  149. "z": 1000
  150. },
  151. "_lrot": {
  152. "__type__": "cc.Quat",
  153. "x": 0,
  154. "y": 0,
  155. "z": 0,
  156. "w": 1
  157. },
  158. "_lscale": {
  159. "__type__": "cc.Vec3",
  160. "x": 1,
  161. "y": 1,
  162. "z": 1
  163. },
  164. "_mobility": 0,
  165. "_layer": 1073741824,
  166. "_euler": {
  167. "__type__": "cc.Vec3",
  168. "x": 0,
  169. "y": 0,
  170. "z": 0
  171. },
  172. "_id": "ebFwiq8gBFaYpqYbdoDODe"
  173. },
  174. {
  175. "__type__": "cc.Camera",
  176. "_name": "",
  177. "_objFlags": 0,
  178. "__editorExtras__": {},
  179. "node": {
  180. "__id__": 3
  181. },
  182. "_enabled": true,
  183. "__prefab": null,
  184. "_projection": 0,
  185. "_priority": 0,
  186. "_fov": 45,
  187. "_fovAxis": 0,
  188. "_orthoHeight": 320,
  189. "_near": 0,
  190. "_far": 1000,
  191. "_color": {
  192. "__type__": "cc.Color",
  193. "r": 0,
  194. "g": 0,
  195. "b": 0,
  196. "a": 255
  197. },
  198. "_depth": 1,
  199. "_stencil": 0,
  200. "_clearFlags": 7,
  201. "_rect": {
  202. "__type__": "cc.Rect",
  203. "x": 0,
  204. "y": 0,
  205. "width": 1,
  206. "height": 1
  207. },
  208. "_aperture": 19,
  209. "_shutter": 7,
  210. "_iso": 0,
  211. "_screenScale": 1,
  212. "_visibility": 1108344832,
  213. "_targetTexture": null,
  214. "_postProcess": null,
  215. "_usePostProcess": false,
  216. "_cameraType": -1,
  217. "_trackingType": 0,
  218. "_id": "63WIch3o5BEYRlXzTT0oWc"
  219. },
  220. {
  221. "__type__": "cc.Node",
  222. "_name": "Bg",
  223. "_objFlags": 0,
  224. "__editorExtras__": {},
  225. "_parent": {
  226. "__id__": 2
  227. },
  228. "_children": [],
  229. "_active": true,
  230. "_components": [
  231. {
  232. "__id__": 6
  233. },
  234. {
  235. "__id__": 7
  236. }
  237. ],
  238. "_prefab": null,
  239. "_lpos": {
  240. "__type__": "cc.Vec3",
  241. "x": 0,
  242. "y": 0,
  243. "z": 0
  244. },
  245. "_lrot": {
  246. "__type__": "cc.Quat",
  247. "x": 0,
  248. "y": 0,
  249. "z": 0.7071067811865475,
  250. "w": 0.7071067811865476
  251. },
  252. "_lscale": {
  253. "__type__": "cc.Vec3",
  254. "x": 1,
  255. "y": 1,
  256. "z": 1
  257. },
  258. "_mobility": 0,
  259. "_layer": 33554432,
  260. "_euler": {
  261. "__type__": "cc.Vec3",
  262. "x": 0,
  263. "y": 0,
  264. "z": 90
  265. },
  266. "_id": "c7dJQgplJNP7c2zlyIVdE/"
  267. },
  268. {
  269. "__type__": "cc.UITransform",
  270. "_name": "",
  271. "_objFlags": 0,
  272. "__editorExtras__": {},
  273. "node": {
  274. "__id__": 5
  275. },
  276. "_enabled": true,
  277. "__prefab": null,
  278. "_contentSize": {
  279. "__type__": "cc.Size",
  280. "width": 640,
  281. "height": 960
  282. },
  283. "_anchorPoint": {
  284. "__type__": "cc.Vec2",
  285. "x": 0.5,
  286. "y": 0.5
  287. },
  288. "_id": "c0gryVW4dD66vfgbrGskxM"
  289. },
  290. {
  291. "__type__": "cc.Sprite",
  292. "_name": "",
  293. "_objFlags": 0,
  294. "__editorExtras__": {},
  295. "node": {
  296. "__id__": 5
  297. },
  298. "_enabled": true,
  299. "__prefab": null,
  300. "_customMaterial": null,
  301. "_srcBlendFactor": 2,
  302. "_dstBlendFactor": 4,
  303. "_color": {
  304. "__type__": "cc.Color",
  305. "r": 255,
  306. "g": 255,
  307. "b": 255,
  308. "a": 255
  309. },
  310. "_spriteFrame": {
  311. "__uuid__": "cc194037-4478-4d21-b924-81c382276b45@f9941",
  312. "__expectedType__": "cc.SpriteFrame"
  313. },
  314. "_type": 0,
  315. "_fillType": 0,
  316. "_sizeMode": 1,
  317. "_fillCenter": {
  318. "__type__": "cc.Vec2",
  319. "x": 0,
  320. "y": 0
  321. },
  322. "_fillStart": 0,
  323. "_fillRange": 0,
  324. "_isTrimmedMode": true,
  325. "_useGrayscale": false,
  326. "_atlas": null,
  327. "_id": "7bcZquYOtDRpgl8AKbLs1m"
  328. },
  329. {
  330. "__type__": "cc.Node",
  331. "_name": "PageView",
  332. "_objFlags": 0,
  333. "__editorExtras__": {},
  334. "_parent": {
  335. "__id__": 2
  336. },
  337. "_children": [
  338. {
  339. "__id__": 9
  340. },
  341. {
  342. "__id__": 31
  343. }
  344. ],
  345. "_active": true,
  346. "_components": [
  347. {
  348. "__id__": 34
  349. },
  350. {
  351. "__id__": 35
  352. },
  353. {
  354. "__id__": 36
  355. }
  356. ],
  357. "_prefab": null,
  358. "_lpos": {
  359. "__type__": "cc.Vec3",
  360. "x": 0,
  361. "y": 0,
  362. "z": 0
  363. },
  364. "_lrot": {
  365. "__type__": "cc.Quat",
  366. "x": 0,
  367. "y": 0,
  368. "z": 0,
  369. "w": 1
  370. },
  371. "_lscale": {
  372. "__type__": "cc.Vec3",
  373. "x": 1,
  374. "y": 1,
  375. "z": 1
  376. },
  377. "_mobility": 0,
  378. "_layer": 33554432,
  379. "_euler": {
  380. "__type__": "cc.Vec3",
  381. "x": 0,
  382. "y": 0,
  383. "z": 0
  384. },
  385. "_id": "65EOweIWVA44XqaqOLXn0x"
  386. },
  387. {
  388. "__type__": "cc.Node",
  389. "_name": "view",
  390. "_objFlags": 0,
  391. "__editorExtras__": {},
  392. "_parent": {
  393. "__id__": 8
  394. },
  395. "_children": [
  396. {
  397. "__id__": 10
  398. }
  399. ],
  400. "_active": true,
  401. "_components": [
  402. {
  403. "__id__": 28
  404. },
  405. {
  406. "__id__": 29
  407. },
  408. {
  409. "__id__": 30
  410. }
  411. ],
  412. "_prefab": null,
  413. "_lpos": {
  414. "__type__": "cc.Vec3",
  415. "x": 0,
  416. "y": 0,
  417. "z": 0
  418. },
  419. "_lrot": {
  420. "__type__": "cc.Quat",
  421. "x": 0,
  422. "y": 0,
  423. "z": 0,
  424. "w": 1
  425. },
  426. "_lscale": {
  427. "__type__": "cc.Vec3",
  428. "x": 1,
  429. "y": 1,
  430. "z": 1
  431. },
  432. "_mobility": 0,
  433. "_layer": 33554432,
  434. "_euler": {
  435. "__type__": "cc.Vec3",
  436. "x": 0,
  437. "y": 0,
  438. "z": 0
  439. },
  440. "_id": "e5M5SF0OtKHIGOmPC5fYI5"
  441. },
  442. {
  443. "__type__": "cc.Node",
  444. "_name": "content",
  445. "_objFlags": 0,
  446. "__editorExtras__": {},
  447. "_parent": {
  448. "__id__": 9
  449. },
  450. "_children": [
  451. {
  452. "__id__": 11
  453. },
  454. {
  455. "__id__": 14
  456. },
  457. {
  458. "__id__": 17
  459. },
  460. {
  461. "__id__": 20
  462. },
  463. {
  464. "__id__": 23
  465. }
  466. ],
  467. "_active": true,
  468. "_components": [
  469. {
  470. "__id__": 26
  471. },
  472. {
  473. "__id__": 27
  474. }
  475. ],
  476. "_prefab": null,
  477. "_lpos": {
  478. "__type__": "cc.Vec3",
  479. "x": -250,
  480. "y": 7.549516567451064e-15,
  481. "z": 0
  482. },
  483. "_lrot": {
  484. "__type__": "cc.Quat",
  485. "x": 0,
  486. "y": 0,
  487. "z": 0,
  488. "w": 1
  489. },
  490. "_lscale": {
  491. "__type__": "cc.Vec3",
  492. "x": 1,
  493. "y": 1,
  494. "z": 1
  495. },
  496. "_mobility": 0,
  497. "_layer": 33554432,
  498. "_euler": {
  499. "__type__": "cc.Vec3",
  500. "x": 0,
  501. "y": 0,
  502. "z": 0
  503. },
  504. "_id": "a49CeKa5VCA7rcOq045wgc"
  505. },
  506. {
  507. "__type__": "cc.Node",
  508. "_name": "page1",
  509. "_objFlags": 0,
  510. "__editorExtras__": {},
  511. "_parent": {
  512. "__id__": 10
  513. },
  514. "_children": [],
  515. "_active": true,
  516. "_components": [
  517. {
  518. "__id__": 12
  519. },
  520. {
  521. "__id__": 13
  522. }
  523. ],
  524. "_prefab": null,
  525. "_lpos": {
  526. "__type__": "cc.Vec3",
  527. "x": 250,
  528. "y": 0,
  529. "z": 0
  530. },
  531. "_lrot": {
  532. "__type__": "cc.Quat",
  533. "x": 0,
  534. "y": 0,
  535. "z": 0,
  536. "w": 1
  537. },
  538. "_lscale": {
  539. "__type__": "cc.Vec3",
  540. "x": 1,
  541. "y": 1,
  542. "z": 1
  543. },
  544. "_mobility": 0,
  545. "_layer": 33554432,
  546. "_euler": {
  547. "__type__": "cc.Vec3",
  548. "x": 0,
  549. "y": 0,
  550. "z": 0
  551. },
  552. "_id": "afO4g4kB5PtazTxM/zKouA"
  553. },
  554. {
  555. "__type__": "cc.UITransform",
  556. "_name": "",
  557. "_objFlags": 0,
  558. "__editorExtras__": {},
  559. "node": {
  560. "__id__": 11
  561. },
  562. "_enabled": true,
  563. "__prefab": null,
  564. "_contentSize": {
  565. "__type__": "cc.Size",
  566. "width": 500,
  567. "height": 300
  568. },
  569. "_anchorPoint": {
  570. "__type__": "cc.Vec2",
  571. "x": 0.5,
  572. "y": 0.5
  573. },
  574. "_id": "f5Zq8fWTxCAZ/e1BKeNJ+3"
  575. },
  576. {
  577. "__type__": "cc.Sprite",
  578. "_name": "",
  579. "_objFlags": 0,
  580. "__editorExtras__": {},
  581. "node": {
  582. "__id__": 11
  583. },
  584. "_enabled": true,
  585. "__prefab": null,
  586. "_customMaterial": null,
  587. "_srcBlendFactor": 2,
  588. "_dstBlendFactor": 4,
  589. "_color": {
  590. "__type__": "cc.Color",
  591. "r": 255,
  592. "g": 255,
  593. "b": 255,
  594. "a": 255
  595. },
  596. "_spriteFrame": {
  597. "__uuid__": "386e5c3d-96c2-4008-a8b8-3d8a0a405f9e@f9941",
  598. "__expectedType__": "cc.SpriteFrame"
  599. },
  600. "_type": 1,
  601. "_fillType": 0,
  602. "_sizeMode": 0,
  603. "_fillCenter": {
  604. "__type__": "cc.Vec2",
  605. "x": 0,
  606. "y": 0
  607. },
  608. "_fillStart": 0,
  609. "_fillRange": 0,
  610. "_isTrimmedMode": true,
  611. "_useGrayscale": false,
  612. "_atlas": null,
  613. "_id": "32FcsDdYlPfq6HzDP5/XfU"
  614. },
  615. {
  616. "__type__": "cc.Node",
  617. "_name": "page2",
  618. "_objFlags": 0,
  619. "__editorExtras__": {},
  620. "_parent": {
  621. "__id__": 10
  622. },
  623. "_children": [],
  624. "_active": true,
  625. "_components": [
  626. {
  627. "__id__": 15
  628. },
  629. {
  630. "__id__": 16
  631. }
  632. ],
  633. "_prefab": null,
  634. "_lpos": {
  635. "__type__": "cc.Vec3",
  636. "x": 750,
  637. "y": 0,
  638. "z": 0
  639. },
  640. "_lrot": {
  641. "__type__": "cc.Quat",
  642. "x": 0,
  643. "y": 0,
  644. "z": 0,
  645. "w": 1
  646. },
  647. "_lscale": {
  648. "__type__": "cc.Vec3",
  649. "x": 1,
  650. "y": 1,
  651. "z": 1
  652. },
  653. "_mobility": 0,
  654. "_layer": 33554432,
  655. "_euler": {
  656. "__type__": "cc.Vec3",
  657. "x": 0,
  658. "y": 0,
  659. "z": 0
  660. },
  661. "_id": "aatywF63BEdZpeNW1neOQr"
  662. },
  663. {
  664. "__type__": "cc.UITransform",
  665. "_name": "",
  666. "_objFlags": 0,
  667. "__editorExtras__": {},
  668. "node": {
  669. "__id__": 14
  670. },
  671. "_enabled": true,
  672. "__prefab": null,
  673. "_contentSize": {
  674. "__type__": "cc.Size",
  675. "width": 500,
  676. "height": 300
  677. },
  678. "_anchorPoint": {
  679. "__type__": "cc.Vec2",
  680. "x": 0.5,
  681. "y": 0.5
  682. },
  683. "_id": "65oZjPYgRBYKwY1VSkyLBk"
  684. },
  685. {
  686. "__type__": "cc.Sprite",
  687. "_name": "",
  688. "_objFlags": 0,
  689. "__editorExtras__": {},
  690. "node": {
  691. "__id__": 14
  692. },
  693. "_enabled": true,
  694. "__prefab": null,
  695. "_customMaterial": null,
  696. "_srcBlendFactor": 2,
  697. "_dstBlendFactor": 4,
  698. "_color": {
  699. "__type__": "cc.Color",
  700. "r": 255,
  701. "g": 255,
  702. "b": 255,
  703. "a": 255
  704. },
  705. "_spriteFrame": {
  706. "__uuid__": "c0e4c1a0-379b-44cf-9047-53523bb07828@f9941",
  707. "__expectedType__": "cc.SpriteFrame"
  708. },
  709. "_type": 1,
  710. "_fillType": 0,
  711. "_sizeMode": 0,
  712. "_fillCenter": {
  713. "__type__": "cc.Vec2",
  714. "x": 0,
  715. "y": 0
  716. },
  717. "_fillStart": 0,
  718. "_fillRange": 0,
  719. "_isTrimmedMode": true,
  720. "_useGrayscale": false,
  721. "_atlas": null,
  722. "_id": "e41qLrTOlOh41CvO2gCINA"
  723. },
  724. {
  725. "__type__": "cc.Node",
  726. "_name": "page3",
  727. "_objFlags": 0,
  728. "__editorExtras__": {},
  729. "_parent": {
  730. "__id__": 10
  731. },
  732. "_children": [],
  733. "_active": true,
  734. "_components": [
  735. {
  736. "__id__": 18
  737. },
  738. {
  739. "__id__": 19
  740. }
  741. ],
  742. "_prefab": null,
  743. "_lpos": {
  744. "__type__": "cc.Vec3",
  745. "x": 1250,
  746. "y": 0,
  747. "z": 0
  748. },
  749. "_lrot": {
  750. "__type__": "cc.Quat",
  751. "x": 0,
  752. "y": 0,
  753. "z": 0,
  754. "w": 1
  755. },
  756. "_lscale": {
  757. "__type__": "cc.Vec3",
  758. "x": 1,
  759. "y": 1,
  760. "z": 1
  761. },
  762. "_mobility": 0,
  763. "_layer": 33554432,
  764. "_euler": {
  765. "__type__": "cc.Vec3",
  766. "x": 0,
  767. "y": 0,
  768. "z": 0
  769. },
  770. "_id": "06EWQ9h9pCZ6gItg+XVPqz"
  771. },
  772. {
  773. "__type__": "cc.UITransform",
  774. "_name": "",
  775. "_objFlags": 0,
  776. "__editorExtras__": {},
  777. "node": {
  778. "__id__": 17
  779. },
  780. "_enabled": true,
  781. "__prefab": null,
  782. "_contentSize": {
  783. "__type__": "cc.Size",
  784. "width": 500,
  785. "height": 300
  786. },
  787. "_anchorPoint": {
  788. "__type__": "cc.Vec2",
  789. "x": 0.5,
  790. "y": 0.5
  791. },
  792. "_id": "0eMpUdFMhAg4i2Y+Q4zYvu"
  793. },
  794. {
  795. "__type__": "cc.Sprite",
  796. "_name": "",
  797. "_objFlags": 0,
  798. "__editorExtras__": {},
  799. "node": {
  800. "__id__": 17
  801. },
  802. "_enabled": true,
  803. "__prefab": null,
  804. "_customMaterial": null,
  805. "_srcBlendFactor": 2,
  806. "_dstBlendFactor": 4,
  807. "_color": {
  808. "__type__": "cc.Color",
  809. "r": 255,
  810. "g": 255,
  811. "b": 255,
  812. "a": 255
  813. },
  814. "_spriteFrame": {
  815. "__uuid__": "1ada71e2-afbf-4ea5-997e-7a27af700c42@f9941",
  816. "__expectedType__": "cc.SpriteFrame"
  817. },
  818. "_type": 1,
  819. "_fillType": 0,
  820. "_sizeMode": 0,
  821. "_fillCenter": {
  822. "__type__": "cc.Vec2",
  823. "x": 0,
  824. "y": 0
  825. },
  826. "_fillStart": 0,
  827. "_fillRange": 0,
  828. "_isTrimmedMode": true,
  829. "_useGrayscale": false,
  830. "_atlas": null,
  831. "_id": "89dyNwARRHM6H15aKF4wbi"
  832. },
  833. {
  834. "__type__": "cc.Node",
  835. "_name": "page4",
  836. "_objFlags": 0,
  837. "__editorExtras__": {},
  838. "_parent": {
  839. "__id__": 10
  840. },
  841. "_children": [],
  842. "_active": true,
  843. "_components": [
  844. {
  845. "__id__": 21
  846. },
  847. {
  848. "__id__": 22
  849. }
  850. ],
  851. "_prefab": null,
  852. "_lpos": {
  853. "__type__": "cc.Vec3",
  854. "x": 1750,
  855. "y": 0,
  856. "z": 0
  857. },
  858. "_lrot": {
  859. "__type__": "cc.Quat",
  860. "x": 0,
  861. "y": 0,
  862. "z": 0,
  863. "w": 1
  864. },
  865. "_lscale": {
  866. "__type__": "cc.Vec3",
  867. "x": 1,
  868. "y": 1,
  869. "z": 1
  870. },
  871. "_mobility": 0,
  872. "_layer": 33554432,
  873. "_euler": {
  874. "__type__": "cc.Vec3",
  875. "x": 0,
  876. "y": 0,
  877. "z": 0
  878. },
  879. "_id": "45ml8Tf8pKuKahppMAv2QI"
  880. },
  881. {
  882. "__type__": "cc.UITransform",
  883. "_name": "",
  884. "_objFlags": 0,
  885. "__editorExtras__": {},
  886. "node": {
  887. "__id__": 20
  888. },
  889. "_enabled": true,
  890. "__prefab": null,
  891. "_contentSize": {
  892. "__type__": "cc.Size",
  893. "width": 500,
  894. "height": 300
  895. },
  896. "_anchorPoint": {
  897. "__type__": "cc.Vec2",
  898. "x": 0.5,
  899. "y": 0.5
  900. },
  901. "_id": "bdvoljGThBxbKO0Ex2yvp+"
  902. },
  903. {
  904. "__type__": "cc.Sprite",
  905. "_name": "",
  906. "_objFlags": 0,
  907. "__editorExtras__": {},
  908. "node": {
  909. "__id__": 20
  910. },
  911. "_enabled": true,
  912. "__prefab": null,
  913. "_customMaterial": null,
  914. "_srcBlendFactor": 2,
  915. "_dstBlendFactor": 4,
  916. "_color": {
  917. "__type__": "cc.Color",
  918. "r": 255,
  919. "g": 255,
  920. "b": 255,
  921. "a": 255
  922. },
  923. "_spriteFrame": {
  924. "__uuid__": "405a9205-5b81-4375-b3e2-85547b5e62de@f9941",
  925. "__expectedType__": "cc.SpriteFrame"
  926. },
  927. "_type": 1,
  928. "_fillType": 0,
  929. "_sizeMode": 0,
  930. "_fillCenter": {
  931. "__type__": "cc.Vec2",
  932. "x": 0,
  933. "y": 0
  934. },
  935. "_fillStart": 0,
  936. "_fillRange": 0,
  937. "_isTrimmedMode": true,
  938. "_useGrayscale": false,
  939. "_atlas": null,
  940. "_id": "dfGlMr0BBOQZ+iNvO2t3qO"
  941. },
  942. {
  943. "__type__": "cc.Node",
  944. "_name": "page5",
  945. "_objFlags": 0,
  946. "__editorExtras__": {},
  947. "_parent": {
  948. "__id__": 10
  949. },
  950. "_children": [],
  951. "_active": true,
  952. "_components": [
  953. {
  954. "__id__": 24
  955. },
  956. {
  957. "__id__": 25
  958. }
  959. ],
  960. "_prefab": null,
  961. "_lpos": {
  962. "__type__": "cc.Vec3",
  963. "x": 2250,
  964. "y": 0,
  965. "z": 0
  966. },
  967. "_lrot": {
  968. "__type__": "cc.Quat",
  969. "x": 0,
  970. "y": 0,
  971. "z": 0,
  972. "w": 1
  973. },
  974. "_lscale": {
  975. "__type__": "cc.Vec3",
  976. "x": 1,
  977. "y": 1,
  978. "z": 1
  979. },
  980. "_mobility": 0,
  981. "_layer": 33554432,
  982. "_euler": {
  983. "__type__": "cc.Vec3",
  984. "x": 0,
  985. "y": 0,
  986. "z": 0
  987. },
  988. "_id": "5fcDJyzj9E7rpPZ4Qjb17X"
  989. },
  990. {
  991. "__type__": "cc.UITransform",
  992. "_name": "",
  993. "_objFlags": 0,
  994. "__editorExtras__": {},
  995. "node": {
  996. "__id__": 23
  997. },
  998. "_enabled": true,
  999. "__prefab": null,
  1000. "_contentSize": {
  1001. "__type__": "cc.Size",
  1002. "width": 500,
  1003. "height": 300
  1004. },
  1005. "_anchorPoint": {
  1006. "__type__": "cc.Vec2",
  1007. "x": 0.5,
  1008. "y": 0.5
  1009. },
  1010. "_id": "8eU3Mil8tF6rNfcXBmPzKe"
  1011. },
  1012. {
  1013. "__type__": "cc.Sprite",
  1014. "_name": "",
  1015. "_objFlags": 0,
  1016. "__editorExtras__": {},
  1017. "node": {
  1018. "__id__": 23
  1019. },
  1020. "_enabled": true,
  1021. "__prefab": null,
  1022. "_customMaterial": null,
  1023. "_srcBlendFactor": 2,
  1024. "_dstBlendFactor": 4,
  1025. "_color": {
  1026. "__type__": "cc.Color",
  1027. "r": 255,
  1028. "g": 255,
  1029. "b": 255,
  1030. "a": 255
  1031. },
  1032. "_spriteFrame": {
  1033. "__uuid__": "709fb83b-f34a-4065-b463-d0e6a3811f4c@f9941",
  1034. "__expectedType__": "cc.SpriteFrame"
  1035. },
  1036. "_type": 1,
  1037. "_fillType": 0,
  1038. "_sizeMode": 0,
  1039. "_fillCenter": {
  1040. "__type__": "cc.Vec2",
  1041. "x": 0,
  1042. "y": 0
  1043. },
  1044. "_fillStart": 0,
  1045. "_fillRange": 0,
  1046. "_isTrimmedMode": true,
  1047. "_useGrayscale": false,
  1048. "_atlas": null,
  1049. "_id": "0dwEHqx8lAcbah70qe3LZp"
  1050. },
  1051. {
  1052. "__type__": "cc.UITransform",
  1053. "_name": "",
  1054. "_objFlags": 0,
  1055. "__editorExtras__": {},
  1056. "node": {
  1057. "__id__": 10
  1058. },
  1059. "_enabled": true,
  1060. "__prefab": null,
  1061. "_contentSize": {
  1062. "__type__": "cc.Size",
  1063. "width": 2500,
  1064. "height": 300
  1065. },
  1066. "_anchorPoint": {
  1067. "__type__": "cc.Vec2",
  1068. "x": 0,
  1069. "y": 0.5
  1070. },
  1071. "_id": "feaFYRHVFEhoK0iYczLx/y"
  1072. },
  1073. {
  1074. "__type__": "cc.Layout",
  1075. "_name": "",
  1076. "_objFlags": 0,
  1077. "__editorExtras__": {},
  1078. "node": {
  1079. "__id__": 10
  1080. },
  1081. "_enabled": true,
  1082. "__prefab": null,
  1083. "_resizeMode": 1,
  1084. "_layoutType": 1,
  1085. "_cellSize": {
  1086. "__type__": "cc.Size",
  1087. "width": 40,
  1088. "height": 40
  1089. },
  1090. "_startAxis": 0,
  1091. "_paddingLeft": 0,
  1092. "_paddingRight": 0,
  1093. "_paddingTop": 0,
  1094. "_paddingBottom": 0,
  1095. "_spacingX": 0,
  1096. "_spacingY": 0,
  1097. "_verticalDirection": 1,
  1098. "_horizontalDirection": 0,
  1099. "_constraint": 0,
  1100. "_constraintNum": 2,
  1101. "_affectedByScale": false,
  1102. "_isAlign": true,
  1103. "_id": "830F2vxNxGDaMPMLV0mRHn"
  1104. },
  1105. {
  1106. "__type__": "cc.UITransform",
  1107. "_name": "",
  1108. "_objFlags": 0,
  1109. "__editorExtras__": {},
  1110. "node": {
  1111. "__id__": 9
  1112. },
  1113. "_enabled": true,
  1114. "__prefab": null,
  1115. "_contentSize": {
  1116. "__type__": "cc.Size",
  1117. "width": 500,
  1118. "height": 300
  1119. },
  1120. "_anchorPoint": {
  1121. "__type__": "cc.Vec2",
  1122. "x": 0.5,
  1123. "y": 0.5
  1124. },
  1125. "_id": "90eykJs1VPtLitqf2beQrN"
  1126. },
  1127. {
  1128. "__type__": "cc.Mask",
  1129. "_name": "",
  1130. "_objFlags": 0,
  1131. "__editorExtras__": {},
  1132. "node": {
  1133. "__id__": 9
  1134. },
  1135. "_enabled": true,
  1136. "__prefab": null,
  1137. "_type": 0,
  1138. "_inverted": false,
  1139. "_segments": 64,
  1140. "_alphaThreshold": 0.1,
  1141. "_id": "50gEAasjZF0p36t27a/4lu"
  1142. },
  1143. {
  1144. "__type__": "cc.Graphics",
  1145. "_name": "",
  1146. "_objFlags": 0,
  1147. "__editorExtras__": {},
  1148. "node": {
  1149. "__id__": 9
  1150. },
  1151. "_enabled": true,
  1152. "__prefab": null,
  1153. "_customMaterial": null,
  1154. "_srcBlendFactor": 2,
  1155. "_dstBlendFactor": 4,
  1156. "_color": {
  1157. "__type__": "cc.Color",
  1158. "r": 255,
  1159. "g": 255,
  1160. "b": 255,
  1161. "a": 255
  1162. },
  1163. "_lineWidth": 1,
  1164. "_strokeColor": {
  1165. "__type__": "cc.Color",
  1166. "r": 0,
  1167. "g": 0,
  1168. "b": 0,
  1169. "a": 255
  1170. },
  1171. "_lineJoin": 2,
  1172. "_lineCap": 0,
  1173. "_fillColor": {
  1174. "__type__": "cc.Color",
  1175. "r": 255,
  1176. "g": 255,
  1177. "b": 255,
  1178. "a": 0
  1179. },
  1180. "_miterLimit": 10,
  1181. "_id": "b72b9w5aNFP6d7PPzCjUJ4"
  1182. },
  1183. {
  1184. "__type__": "cc.Node",
  1185. "_name": "indicator",
  1186. "_objFlags": 0,
  1187. "__editorExtras__": {},
  1188. "_parent": {
  1189. "__id__": 8
  1190. },
  1191. "_children": [],
  1192. "_active": true,
  1193. "_components": [
  1194. {
  1195. "__id__": 32
  1196. },
  1197. {
  1198. "__id__": 33
  1199. }
  1200. ],
  1201. "_prefab": null,
  1202. "_lpos": {
  1203. "__type__": "cc.Vec3",
  1204. "x": 0,
  1205. "y": -178.977,
  1206. "z": 0
  1207. },
  1208. "_lrot": {
  1209. "__type__": "cc.Quat",
  1210. "x": 0,
  1211. "y": 0,
  1212. "z": 0,
  1213. "w": 1
  1214. },
  1215. "_lscale": {
  1216. "__type__": "cc.Vec3",
  1217. "x": 1,
  1218. "y": 1,
  1219. "z": 1
  1220. },
  1221. "_mobility": 0,
  1222. "_layer": 33554432,
  1223. "_euler": {
  1224. "__type__": "cc.Vec3",
  1225. "x": 0,
  1226. "y": 0,
  1227. "z": 0
  1228. },
  1229. "_id": "2898+cxM5Oj58VkiIdqOa+"
  1230. },
  1231. {
  1232. "__type__": "cc.UITransform",
  1233. "_name": "",
  1234. "_objFlags": 0,
  1235. "__editorExtras__": {},
  1236. "node": {
  1237. "__id__": 31
  1238. },
  1239. "_enabled": true,
  1240. "__prefab": null,
  1241. "_contentSize": {
  1242. "__type__": "cc.Size",
  1243. "width": 500,
  1244. "height": 60
  1245. },
  1246. "_anchorPoint": {
  1247. "__type__": "cc.Vec2",
  1248. "x": 0.5,
  1249. "y": 0.5
  1250. },
  1251. "_id": "25gX3e4V5NDpVfzNtakKsQ"
  1252. },
  1253. {
  1254. "__type__": "cc.PageViewIndicator",
  1255. "_name": "",
  1256. "_objFlags": 0,
  1257. "__editorExtras__": {},
  1258. "node": {
  1259. "__id__": 31
  1260. },
  1261. "_enabled": true,
  1262. "__prefab": null,
  1263. "spacing": 20,
  1264. "_spriteFrame": {
  1265. "__uuid__": "45828f25-b50d-4c52-a591-e19491a62b8c@f9941",
  1266. "__expectedType__": "cc.SpriteFrame"
  1267. },
  1268. "_direction": 0,
  1269. "_cellSize": {
  1270. "__type__": "cc.Size",
  1271. "width": 10,
  1272. "height": 10
  1273. },
  1274. "_id": "f3euQz7qNEx50hofSai0/W"
  1275. },
  1276. {
  1277. "__type__": "cc.UITransform",
  1278. "_name": "pageView-horizontal<UITransform>",
  1279. "_objFlags": 0,
  1280. "__editorExtras__": {},
  1281. "node": {
  1282. "__id__": 8
  1283. },
  1284. "_enabled": true,
  1285. "__prefab": null,
  1286. "_contentSize": {
  1287. "__type__": "cc.Size",
  1288. "width": 960,
  1289. "height": 640
  1290. },
  1291. "_anchorPoint": {
  1292. "__type__": "cc.Vec2",
  1293. "x": 0.5,
  1294. "y": 0.5
  1295. },
  1296. "_id": "f64Yc7w29HKpdIlAJpmU5f"
  1297. },
  1298. {
  1299. "__type__": "cc.Sprite",
  1300. "_name": "pageView-horizontal<Sprite>",
  1301. "_objFlags": 0,
  1302. "__editorExtras__": {},
  1303. "node": {
  1304. "__id__": 8
  1305. },
  1306. "_enabled": true,
  1307. "__prefab": null,
  1308. "_customMaterial": null,
  1309. "_srcBlendFactor": 2,
  1310. "_dstBlendFactor": 4,
  1311. "_color": {
  1312. "__type__": "cc.Color",
  1313. "r": 255,
  1314. "g": 255,
  1315. "b": 255,
  1316. "a": 255
  1317. },
  1318. "_spriteFrame": {
  1319. "__uuid__": "050f5605-27ed-44b3-bb80-05e591e8ab07@b0e7a",
  1320. "__expectedType__": "cc.SpriteFrame"
  1321. },
  1322. "_type": 1,
  1323. "_fillType": 0,
  1324. "_sizeMode": 0,
  1325. "_fillCenter": {
  1326. "__type__": "cc.Vec2",
  1327. "x": 0,
  1328. "y": 0
  1329. },
  1330. "_fillStart": 0,
  1331. "_fillRange": 0,
  1332. "_isTrimmedMode": true,
  1333. "_useGrayscale": false,
  1334. "_atlas": null,
  1335. "_id": "33OnFvwT5D4LIDm4eV2u/m"
  1336. },
  1337. {
  1338. "__type__": "cc.PageView",
  1339. "_name": "pageView-horizontal<PageView>",
  1340. "_objFlags": 0,
  1341. "__editorExtras__": {},
  1342. "node": {
  1343. "__id__": 8
  1344. },
  1345. "_enabled": true,
  1346. "__prefab": null,
  1347. "bounceDuration": 1,
  1348. "brake": 0.5,
  1349. "elastic": true,
  1350. "inertia": true,
  1351. "horizontal": false,
  1352. "vertical": true,
  1353. "cancelInnerEvents": true,
  1354. "scrollEvents": [],
  1355. "_content": {
  1356. "__id__": 10
  1357. },
  1358. "_horizontalScrollBar": null,
  1359. "_verticalScrollBar": null,
  1360. "autoPageTurningThreshold": 100,
  1361. "pageTurningSpeed": 0.3,
  1362. "pageEvents": [],
  1363. "_sizeMode": 0,
  1364. "_direction": 0,
  1365. "_scrollThreshold": 0.5,
  1366. "_pageTurningEventTiming": 0.1,
  1367. "_indicator": {
  1368. "__id__": 33
  1369. },
  1370. "_id": "01YNbMxv5HkJ2bSy7ceD9U"
  1371. },
  1372. {
  1373. "__type__": "cc.Node",
  1374. "_name": "UIButton",
  1375. "_objFlags": 0,
  1376. "__editorExtras__": {},
  1377. "_parent": {
  1378. "__id__": 2
  1379. },
  1380. "_children": [
  1381. {
  1382. "__id__": 38
  1383. },
  1384. {
  1385. "__id__": 42
  1386. },
  1387. {
  1388. "__id__": 46
  1389. },
  1390. {
  1391. "__id__": 50
  1392. },
  1393. {
  1394. "__id__": 54
  1395. }
  1396. ],
  1397. "_active": true,
  1398. "_components": [],
  1399. "_prefab": null,
  1400. "_lpos": {
  1401. "__type__": "cc.Vec3",
  1402. "x": 0,
  1403. "y": 0,
  1404. "z": 0
  1405. },
  1406. "_lrot": {
  1407. "__type__": "cc.Quat",
  1408. "x": 0,
  1409. "y": 0,
  1410. "z": 0,
  1411. "w": 1
  1412. },
  1413. "_lscale": {
  1414. "__type__": "cc.Vec3",
  1415. "x": 1,
  1416. "y": 1,
  1417. "z": 1
  1418. },
  1419. "_mobility": 0,
  1420. "_layer": 33554432,
  1421. "_euler": {
  1422. "__type__": "cc.Vec3",
  1423. "x": 0,
  1424. "y": 0,
  1425. "z": 0
  1426. },
  1427. "_id": "16jGBJiq1MyIA1YJlYAy8i"
  1428. },
  1429. {
  1430. "__type__": "cc.Node",
  1431. "_name": "BtnHome",
  1432. "_objFlags": 0,
  1433. "__editorExtras__": {},
  1434. "_parent": {
  1435. "__id__": 37
  1436. },
  1437. "_children": [],
  1438. "_active": true,
  1439. "_components": [
  1440. {
  1441. "__id__": 39
  1442. },
  1443. {
  1444. "__id__": 40
  1445. },
  1446. {
  1447. "__id__": 41
  1448. }
  1449. ],
  1450. "_prefab": null,
  1451. "_lpos": {
  1452. "__type__": "cc.Vec3",
  1453. "x": -320,
  1454. "y": 287.99999999999994,
  1455. "z": 0
  1456. },
  1457. "_lrot": {
  1458. "__type__": "cc.Quat",
  1459. "x": 0,
  1460. "y": 0,
  1461. "z": 0,
  1462. "w": 1
  1463. },
  1464. "_lscale": {
  1465. "__type__": "cc.Vec3",
  1466. "x": 1,
  1467. "y": 1,
  1468. "z": 1
  1469. },
  1470. "_mobility": 0,
  1471. "_layer": 33554432,
  1472. "_euler": {
  1473. "__type__": "cc.Vec3",
  1474. "x": 0,
  1475. "y": 0,
  1476. "z": 0
  1477. },
  1478. "_id": "daVSnHqkpLbKlllLhkGK+2"
  1479. },
  1480. {
  1481. "__type__": "cc.UITransform",
  1482. "_name": "",
  1483. "_objFlags": 0,
  1484. "__editorExtras__": {},
  1485. "node": {
  1486. "__id__": 38
  1487. },
  1488. "_enabled": true,
  1489. "__prefab": null,
  1490. "_contentSize": {
  1491. "__type__": "cc.Size",
  1492. "width": 40,
  1493. "height": 40
  1494. },
  1495. "_anchorPoint": {
  1496. "__type__": "cc.Vec2",
  1497. "x": 0.5,
  1498. "y": 0.5
  1499. },
  1500. "_id": "e7KkSrDP9KjaeZQRVN449E"
  1501. },
  1502. {
  1503. "__type__": "cc.Sprite",
  1504. "_name": "",
  1505. "_objFlags": 0,
  1506. "__editorExtras__": {},
  1507. "node": {
  1508. "__id__": 38
  1509. },
  1510. "_enabled": true,
  1511. "__prefab": null,
  1512. "_customMaterial": null,
  1513. "_srcBlendFactor": 2,
  1514. "_dstBlendFactor": 4,
  1515. "_color": {
  1516. "__type__": "cc.Color",
  1517. "r": 255,
  1518. "g": 255,
  1519. "b": 255,
  1520. "a": 255
  1521. },
  1522. "_spriteFrame": {
  1523. "__uuid__": "fd1da44d-d05e-4ae9-aa92-e337917aa91a@f0da3",
  1524. "__expectedType__": "cc.SpriteFrame"
  1525. },
  1526. "_type": 1,
  1527. "_fillType": 0,
  1528. "_sizeMode": 0,
  1529. "_fillCenter": {
  1530. "__type__": "cc.Vec2",
  1531. "x": 0,
  1532. "y": 0
  1533. },
  1534. "_fillStart": 0,
  1535. "_fillRange": 0,
  1536. "_isTrimmedMode": true,
  1537. "_useGrayscale": false,
  1538. "_atlas": null,
  1539. "_id": "cb68RHFf1G3ZPqIlFkrmub"
  1540. },
  1541. {
  1542. "__type__": "cc.Button",
  1543. "_name": "",
  1544. "_objFlags": 0,
  1545. "__editorExtras__": {},
  1546. "node": {
  1547. "__id__": 38
  1548. },
  1549. "_enabled": true,
  1550. "__prefab": null,
  1551. "clickEvents": [],
  1552. "_interactable": true,
  1553. "_transition": 2,
  1554. "_normalColor": {
  1555. "__type__": "cc.Color",
  1556. "r": 214,
  1557. "g": 214,
  1558. "b": 214,
  1559. "a": 255
  1560. },
  1561. "_hoverColor": {
  1562. "__type__": "cc.Color",
  1563. "r": 211,
  1564. "g": 211,
  1565. "b": 211,
  1566. "a": 255
  1567. },
  1568. "_pressedColor": {
  1569. "__type__": "cc.Color",
  1570. "r": 255,
  1571. "g": 255,
  1572. "b": 255,
  1573. "a": 255
  1574. },
  1575. "_disabledColor": {
  1576. "__type__": "cc.Color",
  1577. "r": 124,
  1578. "g": 124,
  1579. "b": 124,
  1580. "a": 255
  1581. },
  1582. "_normalSprite": {
  1583. "__uuid__": "fd1da44d-d05e-4ae9-aa92-e337917aa91a@f0da3",
  1584. "__expectedType__": "cc.SpriteFrame"
  1585. },
  1586. "_hoverSprite": null,
  1587. "_pressedSprite": {
  1588. "__uuid__": "fd1da44d-d05e-4ae9-aa92-e337917aa91a@02999",
  1589. "__expectedType__": "cc.SpriteFrame"
  1590. },
  1591. "_disabledSprite": null,
  1592. "_duration": 0.1,
  1593. "_zoomScale": 1.2,
  1594. "_target": {
  1595. "__id__": 38
  1596. },
  1597. "_id": "c342/zAlBACLmjwUjSeBGH"
  1598. },
  1599. {
  1600. "__type__": "cc.Node",
  1601. "_name": "BtnHelp",
  1602. "_objFlags": 0,
  1603. "__editorExtras__": {},
  1604. "_parent": {
  1605. "__id__": 37
  1606. },
  1607. "_children": [],
  1608. "_active": true,
  1609. "_components": [
  1610. {
  1611. "__id__": 43
  1612. },
  1613. {
  1614. "__id__": 44
  1615. },
  1616. {
  1617. "__id__": 45
  1618. }
  1619. ],
  1620. "_prefab": null,
  1621. "_lpos": {
  1622. "__type__": "cc.Vec3",
  1623. "x": 320,
  1624. "y": 287.99999999999994,
  1625. "z": 0
  1626. },
  1627. "_lrot": {
  1628. "__type__": "cc.Quat",
  1629. "x": 0,
  1630. "y": 0,
  1631. "z": 0,
  1632. "w": 1
  1633. },
  1634. "_lscale": {
  1635. "__type__": "cc.Vec3",
  1636. "x": 1,
  1637. "y": 1,
  1638. "z": 1
  1639. },
  1640. "_mobility": 0,
  1641. "_layer": 33554432,
  1642. "_euler": {
  1643. "__type__": "cc.Vec3",
  1644. "x": 0,
  1645. "y": 0,
  1646. "z": 0
  1647. },
  1648. "_id": "cc2H+QO/dP6YGRtNy+VuWB"
  1649. },
  1650. {
  1651. "__type__": "cc.UITransform",
  1652. "_name": "",
  1653. "_objFlags": 0,
  1654. "__editorExtras__": {},
  1655. "node": {
  1656. "__id__": 42
  1657. },
  1658. "_enabled": true,
  1659. "__prefab": null,
  1660. "_contentSize": {
  1661. "__type__": "cc.Size",
  1662. "width": 40,
  1663. "height": 40
  1664. },
  1665. "_anchorPoint": {
  1666. "__type__": "cc.Vec2",
  1667. "x": 0.5,
  1668. "y": 0.5
  1669. },
  1670. "_id": "3bldcmx1lO9bKLEmaNt/Nx"
  1671. },
  1672. {
  1673. "__type__": "cc.Sprite",
  1674. "_name": "",
  1675. "_objFlags": 0,
  1676. "__editorExtras__": {},
  1677. "node": {
  1678. "__id__": 42
  1679. },
  1680. "_enabled": true,
  1681. "__prefab": null,
  1682. "_customMaterial": null,
  1683. "_srcBlendFactor": 2,
  1684. "_dstBlendFactor": 4,
  1685. "_color": {
  1686. "__type__": "cc.Color",
  1687. "r": 255,
  1688. "g": 255,
  1689. "b": 255,
  1690. "a": 255
  1691. },
  1692. "_spriteFrame": {
  1693. "__uuid__": "fd1da44d-d05e-4ae9-aa92-e337917aa91a@3fc31",
  1694. "__expectedType__": "cc.SpriteFrame"
  1695. },
  1696. "_type": 1,
  1697. "_fillType": 0,
  1698. "_sizeMode": 0,
  1699. "_fillCenter": {
  1700. "__type__": "cc.Vec2",
  1701. "x": 0,
  1702. "y": 0
  1703. },
  1704. "_fillStart": 0,
  1705. "_fillRange": 0,
  1706. "_isTrimmedMode": true,
  1707. "_useGrayscale": false,
  1708. "_atlas": null,
  1709. "_id": "5buvd0DlhMFavm3xXoGgFM"
  1710. },
  1711. {
  1712. "__type__": "cc.Button",
  1713. "_name": "",
  1714. "_objFlags": 0,
  1715. "__editorExtras__": {},
  1716. "node": {
  1717. "__id__": 42
  1718. },
  1719. "_enabled": true,
  1720. "__prefab": null,
  1721. "clickEvents": [],
  1722. "_interactable": true,
  1723. "_transition": 2,
  1724. "_normalColor": {
  1725. "__type__": "cc.Color",
  1726. "r": 214,
  1727. "g": 214,
  1728. "b": 214,
  1729. "a": 255
  1730. },
  1731. "_hoverColor": {
  1732. "__type__": "cc.Color",
  1733. "r": 211,
  1734. "g": 211,
  1735. "b": 211,
  1736. "a": 255
  1737. },
  1738. "_pressedColor": {
  1739. "__type__": "cc.Color",
  1740. "r": 255,
  1741. "g": 255,
  1742. "b": 255,
  1743. "a": 255
  1744. },
  1745. "_disabledColor": {
  1746. "__type__": "cc.Color",
  1747. "r": 124,
  1748. "g": 124,
  1749. "b": 124,
  1750. "a": 255
  1751. },
  1752. "_normalSprite": {
  1753. "__uuid__": "fd1da44d-d05e-4ae9-aa92-e337917aa91a@3fc31",
  1754. "__expectedType__": "cc.SpriteFrame"
  1755. },
  1756. "_hoverSprite": null,
  1757. "_pressedSprite": {
  1758. "__uuid__": "fd1da44d-d05e-4ae9-aa92-e337917aa91a@0867b",
  1759. "__expectedType__": "cc.SpriteFrame"
  1760. },
  1761. "_disabledSprite": null,
  1762. "_duration": 0.1,
  1763. "_zoomScale": 1.2,
  1764. "_target": {
  1765. "__id__": 42
  1766. },
  1767. "_id": "98TQo2knpNsqkAzlRJGWUl"
  1768. },
  1769. {
  1770. "__type__": "cc.Node",
  1771. "_name": "BtnLeft",
  1772. "_objFlags": 0,
  1773. "__editorExtras__": {},
  1774. "_parent": {
  1775. "__id__": 37
  1776. },
  1777. "_children": [],
  1778. "_active": true,
  1779. "_components": [
  1780. {
  1781. "__id__": 47
  1782. },
  1783. {
  1784. "__id__": 48
  1785. },
  1786. {
  1787. "__id__": 49
  1788. }
  1789. ],
  1790. "_prefab": null,
  1791. "_lpos": {
  1792. "__type__": "cc.Vec3",
  1793. "x": -360,
  1794. "y": 0,
  1795. "z": 0
  1796. },
  1797. "_lrot": {
  1798. "__type__": "cc.Quat",
  1799. "x": 0,
  1800. "y": 0,
  1801. "z": 0,
  1802. "w": 1
  1803. },
  1804. "_lscale": {
  1805. "__type__": "cc.Vec3",
  1806. "x": -1,
  1807. "y": 1,
  1808. "z": 1
  1809. },
  1810. "_mobility": 0,
  1811. "_layer": 33554432,
  1812. "_euler": {
  1813. "__type__": "cc.Vec3",
  1814. "x": 0,
  1815. "y": 0,
  1816. "z": 0
  1817. },
  1818. "_id": "93J3jl8k5IWZfaXH9uMtAD"
  1819. },
  1820. {
  1821. "__type__": "cc.UITransform",
  1822. "_name": "",
  1823. "_objFlags": 0,
  1824. "__editorExtras__": {},
  1825. "node": {
  1826. "__id__": 46
  1827. },
  1828. "_enabled": true,
  1829. "__prefab": null,
  1830. "_contentSize": {
  1831. "__type__": "cc.Size",
  1832. "width": 56,
  1833. "height": 58
  1834. },
  1835. "_anchorPoint": {
  1836. "__type__": "cc.Vec2",
  1837. "x": 0.5,
  1838. "y": 0.5
  1839. },
  1840. "_id": "e6Ylj09NNCJYVpzsOOd9ku"
  1841. },
  1842. {
  1843. "__type__": "cc.Sprite",
  1844. "_name": "",
  1845. "_objFlags": 0,
  1846. "__editorExtras__": {},
  1847. "node": {
  1848. "__id__": 46
  1849. },
  1850. "_enabled": true,
  1851. "__prefab": null,
  1852. "_customMaterial": null,
  1853. "_srcBlendFactor": 2,
  1854. "_dstBlendFactor": 4,
  1855. "_color": {
  1856. "__type__": "cc.Color",
  1857. "r": 255,
  1858. "g": 255,
  1859. "b": 255,
  1860. "a": 255
  1861. },
  1862. "_spriteFrame": {
  1863. "__uuid__": "e104c27b-9803-4bed-bb01-f58171e15ac9@7d505",
  1864. "__expectedType__": "cc.SpriteFrame"
  1865. },
  1866. "_type": 1,
  1867. "_fillType": 0,
  1868. "_sizeMode": 0,
  1869. "_fillCenter": {
  1870. "__type__": "cc.Vec2",
  1871. "x": 0,
  1872. "y": 0
  1873. },
  1874. "_fillStart": 0,
  1875. "_fillRange": 0,
  1876. "_isTrimmedMode": true,
  1877. "_useGrayscale": false,
  1878. "_atlas": null,
  1879. "_id": "c74zx3Q4RCF590Vc2hc4OD"
  1880. },
  1881. {
  1882. "__type__": "cc.Button",
  1883. "_name": "",
  1884. "_objFlags": 0,
  1885. "__editorExtras__": {},
  1886. "node": {
  1887. "__id__": 46
  1888. },
  1889. "_enabled": true,
  1890. "__prefab": null,
  1891. "clickEvents": [],
  1892. "_interactable": true,
  1893. "_transition": 2,
  1894. "_normalColor": {
  1895. "__type__": "cc.Color",
  1896. "r": 214,
  1897. "g": 214,
  1898. "b": 214,
  1899. "a": 255
  1900. },
  1901. "_hoverColor": {
  1902. "__type__": "cc.Color",
  1903. "r": 211,
  1904. "g": 211,
  1905. "b": 211,
  1906. "a": 255
  1907. },
  1908. "_pressedColor": {
  1909. "__type__": "cc.Color",
  1910. "r": 255,
  1911. "g": 255,
  1912. "b": 255,
  1913. "a": 255
  1914. },
  1915. "_disabledColor": {
  1916. "__type__": "cc.Color",
  1917. "r": 124,
  1918. "g": 124,
  1919. "b": 124,
  1920. "a": 255
  1921. },
  1922. "_normalSprite": {
  1923. "__uuid__": "e104c27b-9803-4bed-bb01-f58171e15ac9@7d505",
  1924. "__expectedType__": "cc.SpriteFrame"
  1925. },
  1926. "_hoverSprite": null,
  1927. "_pressedSprite": {
  1928. "__uuid__": "e104c27b-9803-4bed-bb01-f58171e15ac9@9447d",
  1929. "__expectedType__": "cc.SpriteFrame"
  1930. },
  1931. "_disabledSprite": null,
  1932. "_duration": 0.1,
  1933. "_zoomScale": 1.2,
  1934. "_target": {
  1935. "__id__": 46
  1936. },
  1937. "_id": "39dyT3MORC35gLIC9gk5iS"
  1938. },
  1939. {
  1940. "__type__": "cc.Node",
  1941. "_name": "BtnRight",
  1942. "_objFlags": 0,
  1943. "__editorExtras__": {},
  1944. "_parent": {
  1945. "__id__": 37
  1946. },
  1947. "_children": [],
  1948. "_active": true,
  1949. "_components": [
  1950. {
  1951. "__id__": 51
  1952. },
  1953. {
  1954. "__id__": 52
  1955. },
  1956. {
  1957. "__id__": 53
  1958. }
  1959. ],
  1960. "_prefab": null,
  1961. "_lpos": {
  1962. "__type__": "cc.Vec3",
  1963. "x": 360,
  1964. "y": 0,
  1965. "z": 0
  1966. },
  1967. "_lrot": {
  1968. "__type__": "cc.Quat",
  1969. "x": 0,
  1970. "y": 0,
  1971. "z": 0,
  1972. "w": 1
  1973. },
  1974. "_lscale": {
  1975. "__type__": "cc.Vec3",
  1976. "x": 1,
  1977. "y": 1,
  1978. "z": 1
  1979. },
  1980. "_mobility": 0,
  1981. "_layer": 33554432,
  1982. "_euler": {
  1983. "__type__": "cc.Vec3",
  1984. "x": 0,
  1985. "y": 0,
  1986. "z": 0
  1987. },
  1988. "_id": "4bzi6RxnBEI55PNigDJDUD"
  1989. },
  1990. {
  1991. "__type__": "cc.UITransform",
  1992. "_name": "",
  1993. "_objFlags": 0,
  1994. "__editorExtras__": {},
  1995. "node": {
  1996. "__id__": 50
  1997. },
  1998. "_enabled": true,
  1999. "__prefab": null,
  2000. "_contentSize": {
  2001. "__type__": "cc.Size",
  2002. "width": 56,
  2003. "height": 58
  2004. },
  2005. "_anchorPoint": {
  2006. "__type__": "cc.Vec2",
  2007. "x": 0.5,
  2008. "y": 0.5
  2009. },
  2010. "_id": "55DnMcMA9C36gUBcA+IEPP"
  2011. },
  2012. {
  2013. "__type__": "cc.Sprite",
  2014. "_name": "",
  2015. "_objFlags": 0,
  2016. "__editorExtras__": {},
  2017. "node": {
  2018. "__id__": 50
  2019. },
  2020. "_enabled": true,
  2021. "__prefab": null,
  2022. "_customMaterial": null,
  2023. "_srcBlendFactor": 2,
  2024. "_dstBlendFactor": 4,
  2025. "_color": {
  2026. "__type__": "cc.Color",
  2027. "r": 255,
  2028. "g": 255,
  2029. "b": 255,
  2030. "a": 255
  2031. },
  2032. "_spriteFrame": {
  2033. "__uuid__": "e104c27b-9803-4bed-bb01-f58171e15ac9@7d505",
  2034. "__expectedType__": "cc.SpriteFrame"
  2035. },
  2036. "_type": 1,
  2037. "_fillType": 0,
  2038. "_sizeMode": 0,
  2039. "_fillCenter": {
  2040. "__type__": "cc.Vec2",
  2041. "x": 0,
  2042. "y": 0
  2043. },
  2044. "_fillStart": 0,
  2045. "_fillRange": 0,
  2046. "_isTrimmedMode": true,
  2047. "_useGrayscale": false,
  2048. "_atlas": null,
  2049. "_id": "5eJZQavK1O34T9pswjOl70"
  2050. },
  2051. {
  2052. "__type__": "cc.Button",
  2053. "_name": "",
  2054. "_objFlags": 0,
  2055. "__editorExtras__": {},
  2056. "node": {
  2057. "__id__": 50
  2058. },
  2059. "_enabled": true,
  2060. "__prefab": null,
  2061. "clickEvents": [],
  2062. "_interactable": true,
  2063. "_transition": 2,
  2064. "_normalColor": {
  2065. "__type__": "cc.Color",
  2066. "r": 214,
  2067. "g": 214,
  2068. "b": 214,
  2069. "a": 255
  2070. },
  2071. "_hoverColor": {
  2072. "__type__": "cc.Color",
  2073. "r": 211,
  2074. "g": 211,
  2075. "b": 211,
  2076. "a": 255
  2077. },
  2078. "_pressedColor": {
  2079. "__type__": "cc.Color",
  2080. "r": 255,
  2081. "g": 255,
  2082. "b": 255,
  2083. "a": 255
  2084. },
  2085. "_disabledColor": {
  2086. "__type__": "cc.Color",
  2087. "r": 124,
  2088. "g": 124,
  2089. "b": 124,
  2090. "a": 255
  2091. },
  2092. "_normalSprite": {
  2093. "__uuid__": "e104c27b-9803-4bed-bb01-f58171e15ac9@7d505",
  2094. "__expectedType__": "cc.SpriteFrame"
  2095. },
  2096. "_hoverSprite": null,
  2097. "_pressedSprite": {
  2098. "__uuid__": "e104c27b-9803-4bed-bb01-f58171e15ac9@9447d",
  2099. "__expectedType__": "cc.SpriteFrame"
  2100. },
  2101. "_disabledSprite": null,
  2102. "_duration": 0.1,
  2103. "_zoomScale": 1.2,
  2104. "_target": {
  2105. "__id__": 50
  2106. },
  2107. "_id": "b94vJOl+VHMq25eLKflZRQ"
  2108. },
  2109. {
  2110. "__type__": "cc.Node",
  2111. "_name": "TitleSelect",
  2112. "_objFlags": 0,
  2113. "__editorExtras__": {},
  2114. "_parent": {
  2115. "__id__": 37
  2116. },
  2117. "_children": [],
  2118. "_active": true,
  2119. "_components": [
  2120. {
  2121. "__id__": 55
  2122. },
  2123. {
  2124. "__id__": 56
  2125. }
  2126. ],
  2127. "_prefab": null,
  2128. "_lpos": {
  2129. "__type__": "cc.Vec3",
  2130. "x": 0,
  2131. "y": 287.99999999999994,
  2132. "z": 0
  2133. },
  2134. "_lrot": {
  2135. "__type__": "cc.Quat",
  2136. "x": 0,
  2137. "y": 0,
  2138. "z": 0,
  2139. "w": 1
  2140. },
  2141. "_lscale": {
  2142. "__type__": "cc.Vec3",
  2143. "x": 1,
  2144. "y": 1,
  2145. "z": 1
  2146. },
  2147. "_mobility": 0,
  2148. "_layer": 33554432,
  2149. "_euler": {
  2150. "__type__": "cc.Vec3",
  2151. "x": 0,
  2152. "y": 0,
  2153. "z": 0
  2154. },
  2155. "_id": "d6hV6R01xNT7I4LwePzGqY"
  2156. },
  2157. {
  2158. "__type__": "cc.UITransform",
  2159. "_name": "",
  2160. "_objFlags": 0,
  2161. "__editorExtras__": {},
  2162. "node": {
  2163. "__id__": 54
  2164. },
  2165. "_enabled": true,
  2166. "__prefab": null,
  2167. "_contentSize": {
  2168. "__type__": "cc.Size",
  2169. "width": 118,
  2170. "height": 32
  2171. },
  2172. "_anchorPoint": {
  2173. "__type__": "cc.Vec2",
  2174. "x": 0.5,
  2175. "y": 0.5
  2176. },
  2177. "_id": "a9gUmMVSZN5pRYLtMT3ZHY"
  2178. },
  2179. {
  2180. "__type__": "cc.Sprite",
  2181. "_name": "",
  2182. "_objFlags": 0,
  2183. "__editorExtras__": {},
  2184. "node": {
  2185. "__id__": 54
  2186. },
  2187. "_enabled": true,
  2188. "__prefab": null,
  2189. "_customMaterial": null,
  2190. "_srcBlendFactor": 2,
  2191. "_dstBlendFactor": 4,
  2192. "_color": {
  2193. "__type__": "cc.Color",
  2194. "r": 255,
  2195. "g": 255,
  2196. "b": 255,
  2197. "a": 255
  2198. },
  2199. "_spriteFrame": {
  2200. "__uuid__": "050f5605-27ed-44b3-bb80-05e591e8ab07@c38e5",
  2201. "__expectedType__": "cc.SpriteFrame"
  2202. },
  2203. "_type": 0,
  2204. "_fillType": 0,
  2205. "_sizeMode": 1,
  2206. "_fillCenter": {
  2207. "__type__": "cc.Vec2",
  2208. "x": 0,
  2209. "y": 0
  2210. },
  2211. "_fillStart": 0,
  2212. "_fillRange": 0,
  2213. "_isTrimmedMode": true,
  2214. "_useGrayscale": false,
  2215. "_atlas": null,
  2216. "_id": "65yqPwDjdJ86ySl2MfOA9L"
  2217. },
  2218. {
  2219. "__type__": "cc.Node",
  2220. "_name": "TouchArea",
  2221. "_objFlags": 0,
  2222. "__editorExtras__": {},
  2223. "_parent": {
  2224. "__id__": 2
  2225. },
  2226. "_children": [],
  2227. "_active": true,
  2228. "_components": [
  2229. {
  2230. "__id__": 58
  2231. }
  2232. ],
  2233. "_prefab": null,
  2234. "_lpos": {
  2235. "__type__": "cc.Vec3",
  2236. "x": 0,
  2237. "y": 0,
  2238. "z": 0
  2239. },
  2240. "_lrot": {
  2241. "__type__": "cc.Quat",
  2242. "x": 0,
  2243. "y": 0,
  2244. "z": 0,
  2245. "w": 1
  2246. },
  2247. "_lscale": {
  2248. "__type__": "cc.Vec3",
  2249. "x": 1,
  2250. "y": 1,
  2251. "z": 1
  2252. },
  2253. "_mobility": 0,
  2254. "_layer": 33554432,
  2255. "_euler": {
  2256. "__type__": "cc.Vec3",
  2257. "x": 0,
  2258. "y": 0,
  2259. "z": 0
  2260. },
  2261. "_id": "beSXblOXpH2pIlUJWhXVtY"
  2262. },
  2263. {
  2264. "__type__": "cc.UITransform",
  2265. "_name": "",
  2266. "_objFlags": 0,
  2267. "__editorExtras__": {},
  2268. "node": {
  2269. "__id__": 57
  2270. },
  2271. "_enabled": true,
  2272. "__prefab": null,
  2273. "_contentSize": {
  2274. "__type__": "cc.Size",
  2275. "width": 500,
  2276. "height": 300
  2277. },
  2278. "_anchorPoint": {
  2279. "__type__": "cc.Vec2",
  2280. "x": 0.5,
  2281. "y": 0.5
  2282. },
  2283. "_id": "49pPtn5c5CDqIvxybEowlL"
  2284. },
  2285. {
  2286. "__type__": "cc.UITransform",
  2287. "_name": "",
  2288. "_objFlags": 0,
  2289. "__editorExtras__": {},
  2290. "node": {
  2291. "__id__": 2
  2292. },
  2293. "_enabled": true,
  2294. "__prefab": null,
  2295. "_contentSize": {
  2296. "__type__": "cc.Size",
  2297. "width": 960,
  2298. "height": 640
  2299. },
  2300. "_anchorPoint": {
  2301. "__type__": "cc.Vec2",
  2302. "x": 0.5,
  2303. "y": 0.5
  2304. },
  2305. "_id": "d6rUX5yfhMlKoWX2bSbawx"
  2306. },
  2307. {
  2308. "__type__": "cc.Canvas",
  2309. "_name": "",
  2310. "_objFlags": 0,
  2311. "__editorExtras__": {},
  2312. "node": {
  2313. "__id__": 2
  2314. },
  2315. "_enabled": true,
  2316. "__prefab": null,
  2317. "_cameraComponent": {
  2318. "__id__": 4
  2319. },
  2320. "_alignCanvasWithScreen": true,
  2321. "_id": "12O/ljcVlEqLmVm3U2gEOQ"
  2322. },
  2323. {
  2324. "__type__": "cc.Widget",
  2325. "_name": "",
  2326. "_objFlags": 0,
  2327. "__editorExtras__": {},
  2328. "node": {
  2329. "__id__": 2
  2330. },
  2331. "_enabled": true,
  2332. "__prefab": null,
  2333. "_alignFlags": 45,
  2334. "_target": null,
  2335. "_left": 0,
  2336. "_right": 0,
  2337. "_top": 5.684341886080802e-14,
  2338. "_bottom": 5.684341886080802e-14,
  2339. "_horizontalCenter": 0,
  2340. "_verticalCenter": 0,
  2341. "_isAbsLeft": true,
  2342. "_isAbsRight": true,
  2343. "_isAbsTop": true,
  2344. "_isAbsBottom": true,
  2345. "_isAbsHorizontalCenter": true,
  2346. "_isAbsVerticalCenter": true,
  2347. "_originalWidth": 0,
  2348. "_originalHeight": 0,
  2349. "_alignMode": 2,
  2350. "_lockFlags": 0,
  2351. "_id": "c5V1EV8IpMtrIvY1OE9t2u"
  2352. },
  2353. {
  2354. "__type__": "fa5137vrOdLJo4W/dRGIbqh",
  2355. "_name": "",
  2356. "_objFlags": 0,
  2357. "__editorExtras__": {},
  2358. "node": {
  2359. "__id__": 2
  2360. },
  2361. "_enabled": true,
  2362. "__prefab": null,
  2363. "pageView": {
  2364. "__id__": 8
  2365. },
  2366. "_id": "645D5+hdZJe6CGXYGCWCcs"
  2367. },
  2368. {
  2369. "__type__": "cc.SceneGlobals",
  2370. "ambient": {
  2371. "__id__": 64
  2372. },
  2373. "shadows": {
  2374. "__id__": 65
  2375. },
  2376. "_skybox": {
  2377. "__id__": 66
  2378. },
  2379. "fog": {
  2380. "__id__": 67
  2381. },
  2382. "octree": {
  2383. "__id__": 68
  2384. },
  2385. "skin": {
  2386. "__id__": 69
  2387. },
  2388. "lightProbeInfo": {
  2389. "__id__": 70
  2390. },
  2391. "postSettings": {
  2392. "__id__": 71
  2393. },
  2394. "bakedWithStationaryMainLight": false,
  2395. "bakedWithHighpLightmap": false
  2396. },
  2397. {
  2398. "__type__": "cc.AmbientInfo",
  2399. "_skyColorHDR": {
  2400. "__type__": "cc.Vec4",
  2401. "x": 0,
  2402. "y": 0,
  2403. "z": 0,
  2404. "w": 0.520833125
  2405. },
  2406. "_skyColor": {
  2407. "__type__": "cc.Vec4",
  2408. "x": 0,
  2409. "y": 0,
  2410. "z": 0,
  2411. "w": 0.520833125
  2412. },
  2413. "_skyIllumHDR": 20000,
  2414. "_skyIllum": 20000,
  2415. "_groundAlbedoHDR": {
  2416. "__type__": "cc.Vec4",
  2417. "x": 0,
  2418. "y": 0,
  2419. "z": 0,
  2420. "w": 0
  2421. },
  2422. "_groundAlbedo": {
  2423. "__type__": "cc.Vec4",
  2424. "x": 0,
  2425. "y": 0,
  2426. "z": 0,
  2427. "w": 0
  2428. },
  2429. "_skyColorLDR": {
  2430. "__type__": "cc.Vec4",
  2431. "x": 0.2,
  2432. "y": 0.5,
  2433. "z": 0.8,
  2434. "w": 1
  2435. },
  2436. "_skyIllumLDR": 20000,
  2437. "_groundAlbedoLDR": {
  2438. "__type__": "cc.Vec4",
  2439. "x": 0.2,
  2440. "y": 0.2,
  2441. "z": 0.2,
  2442. "w": 1
  2443. }
  2444. },
  2445. {
  2446. "__type__": "cc.ShadowsInfo",
  2447. "_enabled": false,
  2448. "_type": 0,
  2449. "_normal": {
  2450. "__type__": "cc.Vec3",
  2451. "x": 0,
  2452. "y": 1,
  2453. "z": 0
  2454. },
  2455. "_distance": 0,
  2456. "_planeBias": 1,
  2457. "_shadowColor": {
  2458. "__type__": "cc.Color",
  2459. "r": 76,
  2460. "g": 76,
  2461. "b": 76,
  2462. "a": 255
  2463. },
  2464. "_maxReceived": 4,
  2465. "_size": {
  2466. "__type__": "cc.Vec2",
  2467. "x": 512,
  2468. "y": 512
  2469. }
  2470. },
  2471. {
  2472. "__type__": "cc.SkyboxInfo",
  2473. "_envLightingType": 0,
  2474. "_envmapHDR": null,
  2475. "_envmap": null,
  2476. "_envmapLDR": null,
  2477. "_diffuseMapHDR": null,
  2478. "_diffuseMapLDR": null,
  2479. "_enabled": false,
  2480. "_useHDR": true,
  2481. "_editableMaterial": null,
  2482. "_reflectionHDR": null,
  2483. "_reflectionLDR": null,
  2484. "_rotationAngle": 0
  2485. },
  2486. {
  2487. "__type__": "cc.FogInfo",
  2488. "_type": 0,
  2489. "_fogColor": {
  2490. "__type__": "cc.Color",
  2491. "r": 200,
  2492. "g": 200,
  2493. "b": 200,
  2494. "a": 255
  2495. },
  2496. "_enabled": false,
  2497. "_fogDensity": 0.3,
  2498. "_fogStart": 0.5,
  2499. "_fogEnd": 300,
  2500. "_fogAtten": 5,
  2501. "_fogTop": 1.5,
  2502. "_fogRange": 1.2,
  2503. "_accurate": false
  2504. },
  2505. {
  2506. "__type__": "cc.OctreeInfo",
  2507. "_enabled": false,
  2508. "_minPos": {
  2509. "__type__": "cc.Vec3",
  2510. "x": -1024,
  2511. "y": -1024,
  2512. "z": -1024
  2513. },
  2514. "_maxPos": {
  2515. "__type__": "cc.Vec3",
  2516. "x": 1024,
  2517. "y": 1024,
  2518. "z": 1024
  2519. },
  2520. "_depth": 8
  2521. },
  2522. {
  2523. "__type__": "cc.SkinInfo",
  2524. "_enabled": false,
  2525. "_blurRadius": 0.01,
  2526. "_sssIntensity": 3
  2527. },
  2528. {
  2529. "__type__": "cc.LightProbeInfo",
  2530. "_giScale": 1,
  2531. "_giSamples": 1024,
  2532. "_bounces": 2,
  2533. "_reduceRinging": 0,
  2534. "_showProbe": true,
  2535. "_showWireframe": true,
  2536. "_showConvex": false,
  2537. "_data": null,
  2538. "_lightProbeSphereVolume": 1
  2539. },
  2540. {
  2541. "__type__": "cc.PostSettingsInfo",
  2542. "_toneMappingType": 0
  2543. }
  2544. ]