PreloadingScene.scene 39 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208
  1. [
  2. {
  3. "__type__": "cc.SceneAsset",
  4. "_name": "",
  5. "_objFlags": 0,
  6. "_native": "",
  7. "scene": {
  8. "__id__": 1
  9. },
  10. "asyncLoadAssets": false
  11. },
  12. {
  13. "__type__": "cc.Scene",
  14. "_name": "",
  15. "_objFlags": 0,
  16. "_parent": null,
  17. "_children": [
  18. {
  19. "__id__": 2
  20. },
  21. {
  22. "__id__": 5
  23. },
  24. {
  25. "__id__": 8
  26. }
  27. ],
  28. "_active": true,
  29. "_components": [],
  30. "_prefab": null,
  31. "autoReleaseAssets": false,
  32. "_globals": {
  33. "__id__": 68
  34. },
  35. "_id": "9916a420-a917-4e24-b00b-1a7d12964c38"
  36. },
  37. {
  38. "__type__": "cc.Node",
  39. "_name": "Main Light",
  40. "_objFlags": 0,
  41. "_parent": {
  42. "__id__": 1
  43. },
  44. "_children": [],
  45. "_active": true,
  46. "_components": [
  47. {
  48. "__id__": 3
  49. }
  50. ],
  51. "_prefab": null,
  52. "_lpos": {
  53. "__type__": "cc.Vec3",
  54. "x": 0,
  55. "y": 0,
  56. "z": 0
  57. },
  58. "_lrot": {
  59. "__type__": "cc.Quat",
  60. "x": -0.24999999999999997,
  61. "y": -0.24999999999999997,
  62. "z": -0.06698729810778066,
  63. "w": 0.9330127018922194
  64. },
  65. "_lscale": {
  66. "__type__": "cc.Vec3",
  67. "x": 1,
  68. "y": 1,
  69. "z": 1
  70. },
  71. "_layer": 1073741824,
  72. "_euler": {
  73. "__type__": "cc.Vec3",
  74. "x": -30,
  75. "y": -30,
  76. "z": 0
  77. },
  78. "_id": "c0y6F5f+pAvI805TdmxIjx"
  79. },
  80. {
  81. "__type__": "cc.DirectionalLightComponent",
  82. "_name": "",
  83. "_objFlags": 0,
  84. "node": {
  85. "__id__": 2
  86. },
  87. "_enabled": true,
  88. "_color": {
  89. "__type__": "cc.Color",
  90. "r": 255,
  91. "g": 255,
  92. "b": 255,
  93. "a": 255
  94. },
  95. "_useColorTemperature": false,
  96. "_colorTemperature": 6550,
  97. "_staticSettings": {
  98. "__id__": 4
  99. },
  100. "_illuminance": 65000,
  101. "_id": "597uMYCbhEtJQc0ffJlcgA"
  102. },
  103. {
  104. "__type__": "cc.StaticLightSettings",
  105. "_editorOnly": false,
  106. "_bakeable": false,
  107. "_castShadow": false
  108. },
  109. {
  110. "__type__": "cc.Node",
  111. "_name": "Camera",
  112. "_objFlags": 0,
  113. "_parent": {
  114. "__id__": 1
  115. },
  116. "_children": [],
  117. "_active": true,
  118. "_components": [
  119. {
  120. "__id__": 6
  121. },
  122. {
  123. "__id__": 7
  124. }
  125. ],
  126. "_prefab": null,
  127. "_lpos": {
  128. "__type__": "cc.Vec3",
  129. "x": 0,
  130. "y": 0,
  131. "z": 0
  132. },
  133. "_lrot": {
  134. "__type__": "cc.Quat",
  135. "x": 0,
  136. "y": 0,
  137. "z": 0,
  138. "w": 1
  139. },
  140. "_lscale": {
  141. "__type__": "cc.Vec3",
  142. "x": 1,
  143. "y": 1,
  144. "z": 1
  145. },
  146. "_layer": 1073741824,
  147. "_euler": {
  148. "__type__": "cc.Vec3",
  149. "x": 0,
  150. "y": 0,
  151. "z": 0
  152. },
  153. "_id": "c9DMICJLFO5IeO07EPon7U"
  154. },
  155. {
  156. "__type__": "cc.CameraComponent",
  157. "_name": "",
  158. "_objFlags": 0,
  159. "node": {
  160. "__id__": 5
  161. },
  162. "_enabled": true,
  163. "_projection": 1,
  164. "_priority": 0,
  165. "_fov": 45,
  166. "_fovAxis": 0,
  167. "_orthoHeight": 10,
  168. "_near": 1,
  169. "_far": 1000,
  170. "_color": {
  171. "__type__": "cc.Color",
  172. "r": 51,
  173. "g": 51,
  174. "b": 51,
  175. "a": 255
  176. },
  177. "_depth": 1,
  178. "_stencil": 0,
  179. "_clearFlags": 7,
  180. "_rect": {
  181. "__type__": "cc.Rect",
  182. "x": 0,
  183. "y": 0,
  184. "width": 1,
  185. "height": 1
  186. },
  187. "_aperture": 19,
  188. "_shutter": 7,
  189. "_iso": 0,
  190. "_screenScale": 1,
  191. "_visibility": 1822425087,
  192. "_targetTexture": null,
  193. "_id": "7dWQTpwS5LrIHnc1zAPUtf"
  194. },
  195. {
  196. "__type__": "84e62/U3o5F44s+HaeEcYls",
  197. "_name": "",
  198. "_objFlags": 0,
  199. "node": {
  200. "__id__": 5
  201. },
  202. "_enabled": true,
  203. "_id": "4bKVYXpNVEoLxMQN0u05Tv"
  204. },
  205. {
  206. "__type__": "cc.Node",
  207. "_name": "Canvas",
  208. "_objFlags": 0,
  209. "_parent": {
  210. "__id__": 1
  211. },
  212. "_children": [
  213. {
  214. "__id__": 9
  215. },
  216. {
  217. "__id__": 11
  218. }
  219. ],
  220. "_active": true,
  221. "_components": [
  222. {
  223. "__id__": 66
  224. },
  225. {
  226. "__id__": 67
  227. }
  228. ],
  229. "_prefab": null,
  230. "_lpos": {
  231. "__type__": "cc.Vec3",
  232. "x": 375,
  233. "y": 667,
  234. "z": 1
  235. },
  236. "_lrot": {
  237. "__type__": "cc.Quat",
  238. "x": 0,
  239. "y": 0,
  240. "z": 0,
  241. "w": 1
  242. },
  243. "_lscale": {
  244. "__type__": "cc.Vec3",
  245. "x": 1,
  246. "y": 1,
  247. "z": 1
  248. },
  249. "_layer": 33554432,
  250. "_euler": {
  251. "__type__": "cc.Vec3",
  252. "x": 0,
  253. "y": 0,
  254. "z": 0
  255. },
  256. "_id": "b3LTgBXGJHr6lIyqbp6FHX"
  257. },
  258. {
  259. "__type__": "cc.Node",
  260. "_name": "SoundManager",
  261. "_objFlags": 0,
  262. "_parent": {
  263. "__id__": 8
  264. },
  265. "_children": [],
  266. "_active": true,
  267. "_components": [
  268. {
  269. "__id__": 10
  270. }
  271. ],
  272. "_prefab": null,
  273. "_lpos": {
  274. "__type__": "cc.Vec3",
  275. "x": 0,
  276. "y": 0,
  277. "z": 0
  278. },
  279. "_lrot": {
  280. "__type__": "cc.Quat",
  281. "x": 0,
  282. "y": 0,
  283. "z": 0,
  284. "w": 1
  285. },
  286. "_lscale": {
  287. "__type__": "cc.Vec3",
  288. "x": 1,
  289. "y": 1,
  290. "z": 1
  291. },
  292. "_layer": 1073741824,
  293. "_euler": {
  294. "__type__": "cc.Vec3",
  295. "x": 0,
  296. "y": 0,
  297. "z": 0
  298. },
  299. "_id": "b8T1ij2UVAK7ZoXTwhi8Wb"
  300. },
  301. {
  302. "__type__": "69d50bWpypNLb7KGIRPtfDN",
  303. "_name": "",
  304. "_objFlags": 0,
  305. "node": {
  306. "__id__": 9
  307. },
  308. "_enabled": true,
  309. "_id": "65EpZnkrdJoY8M7HrWlcTn"
  310. },
  311. {
  312. "__type__": "cc.Node",
  313. "_name": "UIRoot",
  314. "_objFlags": 0,
  315. "_parent": {
  316. "__id__": 8
  317. },
  318. "_children": [
  319. {
  320. "__id__": 12
  321. },
  322. {
  323. "__id__": 42
  324. },
  325. {
  326. "__id__": 45
  327. }
  328. ],
  329. "_active": true,
  330. "_components": [
  331. {
  332. "__id__": 64
  333. },
  334. {
  335. "__id__": 65
  336. }
  337. ],
  338. "_prefab": null,
  339. "_lpos": {
  340. "__type__": "cc.Vec3",
  341. "x": 0,
  342. "y": 0,
  343. "z": 0
  344. },
  345. "_lrot": {
  346. "__type__": "cc.Quat",
  347. "x": 0,
  348. "y": 0,
  349. "z": 0,
  350. "w": 1
  351. },
  352. "_lscale": {
  353. "__type__": "cc.Vec3",
  354. "x": 1,
  355. "y": 1,
  356. "z": 1
  357. },
  358. "_layer": 1073741824,
  359. "_euler": {
  360. "__type__": "cc.Vec3",
  361. "x": 0,
  362. "y": 0,
  363. "z": 0
  364. },
  365. "_id": "09p3ICY7JPv7OZgBwv2myd"
  366. },
  367. {
  368. "__type__": "cc.Node",
  369. "_name": "LayerRoot",
  370. "_objFlags": 0,
  371. "_parent": {
  372. "__id__": 11
  373. },
  374. "_children": [
  375. {
  376. "__id__": 13
  377. },
  378. {
  379. "__id__": 16
  380. },
  381. {
  382. "__id__": 19
  383. },
  384. {
  385. "__id__": 22
  386. },
  387. {
  388. "__id__": 25
  389. },
  390. {
  391. "__id__": 28
  392. },
  393. {
  394. "__id__": 31
  395. },
  396. {
  397. "__id__": 34
  398. },
  399. {
  400. "__id__": 37
  401. }
  402. ],
  403. "_active": true,
  404. "_components": [
  405. {
  406. "__id__": 40
  407. },
  408. {
  409. "__id__": 41
  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. "_layer": 1073741824,
  433. "_euler": {
  434. "__type__": "cc.Vec3",
  435. "x": 0,
  436. "y": 0,
  437. "z": 0
  438. },
  439. "_id": "fdZ4kQE4FOHa2tSGbjOdtZ"
  440. },
  441. {
  442. "__type__": "cc.Node",
  443. "_name": "1",
  444. "_objFlags": 0,
  445. "_parent": {
  446. "__id__": 12
  447. },
  448. "_children": [],
  449. "_active": true,
  450. "_components": [
  451. {
  452. "__id__": 14
  453. },
  454. {
  455. "__id__": 15
  456. }
  457. ],
  458. "_prefab": null,
  459. "_lpos": {
  460. "__type__": "cc.Vec3",
  461. "x": 0,
  462. "y": 0,
  463. "z": 0
  464. },
  465. "_lrot": {
  466. "__type__": "cc.Quat",
  467. "x": 0,
  468. "y": 0,
  469. "z": 0,
  470. "w": 1
  471. },
  472. "_lscale": {
  473. "__type__": "cc.Vec3",
  474. "x": 1,
  475. "y": 1,
  476. "z": 1
  477. },
  478. "_layer": 1073741824,
  479. "_euler": {
  480. "__type__": "cc.Vec3",
  481. "x": 0,
  482. "y": 0,
  483. "z": 0
  484. },
  485. "_id": "42k8uBxAFGxrYRbwxkkMnE"
  486. },
  487. {
  488. "__type__": "cc.UITransformComponent",
  489. "_name": "",
  490. "_objFlags": 0,
  491. "node": {
  492. "__id__": 13
  493. },
  494. "_enabled": true,
  495. "_priority": 0,
  496. "_contentSize": {
  497. "__type__": "cc.Size",
  498. "width": 750,
  499. "height": 1334
  500. },
  501. "_anchorPoint": {
  502. "__type__": "cc.Vec2",
  503. "x": 0.5,
  504. "y": 0.5
  505. },
  506. "_id": "97W91z/19M5JjoSpsJW5DN"
  507. },
  508. {
  509. "__type__": "cc.WidgetComponent",
  510. "_name": "1<WidgetComponent>",
  511. "_objFlags": 0,
  512. "node": {
  513. "__id__": 13
  514. },
  515. "_enabled": true,
  516. "_alignFlags": 45,
  517. "_target": null,
  518. "_left": 0,
  519. "_right": 0,
  520. "_top": 0,
  521. "_bottom": 0,
  522. "_horizontalCenter": 0,
  523. "_verticalCenter": 0,
  524. "_isAbsLeft": true,
  525. "_isAbsRight": true,
  526. "_isAbsTop": true,
  527. "_isAbsBottom": true,
  528. "_isAbsHorizontalCenter": true,
  529. "_isAbsVerticalCenter": true,
  530. "_originalWidth": 100,
  531. "_originalHeight": 100,
  532. "_alignMode": 2,
  533. "_lockFlags": 0,
  534. "_id": "69QFKm9q5EGb3X+8yqC+TI"
  535. },
  536. {
  537. "__type__": "cc.Node",
  538. "_name": "2",
  539. "_objFlags": 0,
  540. "_parent": {
  541. "__id__": 12
  542. },
  543. "_children": [],
  544. "_active": true,
  545. "_components": [
  546. {
  547. "__id__": 17
  548. },
  549. {
  550. "__id__": 18
  551. }
  552. ],
  553. "_prefab": null,
  554. "_lpos": {
  555. "__type__": "cc.Vec3",
  556. "x": 0,
  557. "y": 0,
  558. "z": 0
  559. },
  560. "_lrot": {
  561. "__type__": "cc.Quat",
  562. "x": 0,
  563. "y": 0,
  564. "z": 0,
  565. "w": 1
  566. },
  567. "_lscale": {
  568. "__type__": "cc.Vec3",
  569. "x": 1,
  570. "y": 1,
  571. "z": 1
  572. },
  573. "_layer": 1073741824,
  574. "_euler": {
  575. "__type__": "cc.Vec3",
  576. "x": 0,
  577. "y": 0,
  578. "z": 0
  579. },
  580. "_id": "70WKMjRzZND4P2mZSB+87w"
  581. },
  582. {
  583. "__type__": "cc.UITransformComponent",
  584. "_name": "",
  585. "_objFlags": 0,
  586. "node": {
  587. "__id__": 16
  588. },
  589. "_enabled": true,
  590. "_priority": 0,
  591. "_contentSize": {
  592. "__type__": "cc.Size",
  593. "width": 750,
  594. "height": 1334
  595. },
  596. "_anchorPoint": {
  597. "__type__": "cc.Vec2",
  598. "x": 0.5,
  599. "y": 0.5
  600. },
  601. "_id": "82i0bD8G5M6b5IJDjOaP+P"
  602. },
  603. {
  604. "__type__": "cc.WidgetComponent",
  605. "_name": "1<WidgetComponent>",
  606. "_objFlags": 0,
  607. "node": {
  608. "__id__": 16
  609. },
  610. "_enabled": true,
  611. "_alignFlags": 45,
  612. "_target": null,
  613. "_left": 0,
  614. "_right": 0,
  615. "_top": 0,
  616. "_bottom": 0,
  617. "_horizontalCenter": 0,
  618. "_verticalCenter": 0,
  619. "_isAbsLeft": true,
  620. "_isAbsRight": true,
  621. "_isAbsTop": true,
  622. "_isAbsBottom": true,
  623. "_isAbsHorizontalCenter": true,
  624. "_isAbsVerticalCenter": true,
  625. "_originalWidth": 100,
  626. "_originalHeight": 100,
  627. "_alignMode": 2,
  628. "_lockFlags": 0,
  629. "_id": "225MrdQahFnosMZGEUEusB"
  630. },
  631. {
  632. "__type__": "cc.Node",
  633. "_name": "3",
  634. "_objFlags": 0,
  635. "_parent": {
  636. "__id__": 12
  637. },
  638. "_children": [],
  639. "_active": true,
  640. "_components": [
  641. {
  642. "__id__": 20
  643. },
  644. {
  645. "__id__": 21
  646. }
  647. ],
  648. "_prefab": null,
  649. "_lpos": {
  650. "__type__": "cc.Vec3",
  651. "x": 0,
  652. "y": 0,
  653. "z": 0
  654. },
  655. "_lrot": {
  656. "__type__": "cc.Quat",
  657. "x": 0,
  658. "y": 0,
  659. "z": 0,
  660. "w": 1
  661. },
  662. "_lscale": {
  663. "__type__": "cc.Vec3",
  664. "x": 1,
  665. "y": 1,
  666. "z": 1
  667. },
  668. "_layer": 1073741824,
  669. "_euler": {
  670. "__type__": "cc.Vec3",
  671. "x": 0,
  672. "y": 0,
  673. "z": 0
  674. },
  675. "_id": "48s2ubSzNDPpGoccC44UXs"
  676. },
  677. {
  678. "__type__": "cc.UITransformComponent",
  679. "_name": "",
  680. "_objFlags": 0,
  681. "node": {
  682. "__id__": 19
  683. },
  684. "_enabled": true,
  685. "_priority": 0,
  686. "_contentSize": {
  687. "__type__": "cc.Size",
  688. "width": 750,
  689. "height": 1334
  690. },
  691. "_anchorPoint": {
  692. "__type__": "cc.Vec2",
  693. "x": 0.5,
  694. "y": 0.5
  695. },
  696. "_id": "62ReXftctKfKVfFZOpNZw4"
  697. },
  698. {
  699. "__type__": "cc.WidgetComponent",
  700. "_name": "1<WidgetComponent>",
  701. "_objFlags": 0,
  702. "node": {
  703. "__id__": 19
  704. },
  705. "_enabled": true,
  706. "_alignFlags": 45,
  707. "_target": null,
  708. "_left": 0,
  709. "_right": 0,
  710. "_top": 0,
  711. "_bottom": 0,
  712. "_horizontalCenter": 0,
  713. "_verticalCenter": 0,
  714. "_isAbsLeft": true,
  715. "_isAbsRight": true,
  716. "_isAbsTop": true,
  717. "_isAbsBottom": true,
  718. "_isAbsHorizontalCenter": true,
  719. "_isAbsVerticalCenter": true,
  720. "_originalWidth": 100,
  721. "_originalHeight": 100,
  722. "_alignMode": 2,
  723. "_lockFlags": 0,
  724. "_id": "adKSZALYlOO7qcFKpxdY7y"
  725. },
  726. {
  727. "__type__": "cc.Node",
  728. "_name": "4",
  729. "_objFlags": 0,
  730. "_parent": {
  731. "__id__": 12
  732. },
  733. "_children": [],
  734. "_active": true,
  735. "_components": [
  736. {
  737. "__id__": 23
  738. },
  739. {
  740. "__id__": 24
  741. }
  742. ],
  743. "_prefab": null,
  744. "_lpos": {
  745. "__type__": "cc.Vec3",
  746. "x": 0,
  747. "y": 0,
  748. "z": 0
  749. },
  750. "_lrot": {
  751. "__type__": "cc.Quat",
  752. "x": 0,
  753. "y": 0,
  754. "z": 0,
  755. "w": 1
  756. },
  757. "_lscale": {
  758. "__type__": "cc.Vec3",
  759. "x": 1,
  760. "y": 1,
  761. "z": 1
  762. },
  763. "_layer": 1073741824,
  764. "_euler": {
  765. "__type__": "cc.Vec3",
  766. "x": 0,
  767. "y": 0,
  768. "z": 0
  769. },
  770. "_id": "2b5sgW2CZHkopSqwIwcEza"
  771. },
  772. {
  773. "__type__": "cc.UITransformComponent",
  774. "_name": "",
  775. "_objFlags": 0,
  776. "node": {
  777. "__id__": 22
  778. },
  779. "_enabled": true,
  780. "_priority": 0,
  781. "_contentSize": {
  782. "__type__": "cc.Size",
  783. "width": 750,
  784. "height": 1334
  785. },
  786. "_anchorPoint": {
  787. "__type__": "cc.Vec2",
  788. "x": 0.5,
  789. "y": 0.5
  790. },
  791. "_id": "a6GErKEAJEgrE/3arQ6mCK"
  792. },
  793. {
  794. "__type__": "cc.WidgetComponent",
  795. "_name": "1<WidgetComponent>",
  796. "_objFlags": 0,
  797. "node": {
  798. "__id__": 22
  799. },
  800. "_enabled": true,
  801. "_alignFlags": 45,
  802. "_target": null,
  803. "_left": 0,
  804. "_right": 0,
  805. "_top": 0,
  806. "_bottom": 0,
  807. "_horizontalCenter": 0,
  808. "_verticalCenter": 0,
  809. "_isAbsLeft": true,
  810. "_isAbsRight": true,
  811. "_isAbsTop": true,
  812. "_isAbsBottom": true,
  813. "_isAbsHorizontalCenter": true,
  814. "_isAbsVerticalCenter": true,
  815. "_originalWidth": 100,
  816. "_originalHeight": 100,
  817. "_alignMode": 2,
  818. "_lockFlags": 0,
  819. "_id": "09/o0iTylEoovaneZW4KJN"
  820. },
  821. {
  822. "__type__": "cc.Node",
  823. "_name": "5",
  824. "_objFlags": 0,
  825. "_parent": {
  826. "__id__": 12
  827. },
  828. "_children": [],
  829. "_active": true,
  830. "_components": [
  831. {
  832. "__id__": 26
  833. },
  834. {
  835. "__id__": 27
  836. }
  837. ],
  838. "_prefab": null,
  839. "_lpos": {
  840. "__type__": "cc.Vec3",
  841. "x": 0,
  842. "y": 0,
  843. "z": 0
  844. },
  845. "_lrot": {
  846. "__type__": "cc.Quat",
  847. "x": 0,
  848. "y": 0,
  849. "z": 0,
  850. "w": 1
  851. },
  852. "_lscale": {
  853. "__type__": "cc.Vec3",
  854. "x": 1,
  855. "y": 1,
  856. "z": 1
  857. },
  858. "_layer": 1073741824,
  859. "_euler": {
  860. "__type__": "cc.Vec3",
  861. "x": 0,
  862. "y": 0,
  863. "z": 0
  864. },
  865. "_id": "5flP+ib6FEa55lE6jybY8U"
  866. },
  867. {
  868. "__type__": "cc.UITransformComponent",
  869. "_name": "",
  870. "_objFlags": 0,
  871. "node": {
  872. "__id__": 25
  873. },
  874. "_enabled": true,
  875. "_priority": 0,
  876. "_contentSize": {
  877. "__type__": "cc.Size",
  878. "width": 750,
  879. "height": 1334
  880. },
  881. "_anchorPoint": {
  882. "__type__": "cc.Vec2",
  883. "x": 0.5,
  884. "y": 0.5
  885. },
  886. "_id": "258ZzzCKdKgb90JP3WzDqS"
  887. },
  888. {
  889. "__type__": "cc.WidgetComponent",
  890. "_name": "1<WidgetComponent>",
  891. "_objFlags": 0,
  892. "node": {
  893. "__id__": 25
  894. },
  895. "_enabled": true,
  896. "_alignFlags": 45,
  897. "_target": null,
  898. "_left": 0,
  899. "_right": 0,
  900. "_top": 0,
  901. "_bottom": 0,
  902. "_horizontalCenter": 0,
  903. "_verticalCenter": 0,
  904. "_isAbsLeft": true,
  905. "_isAbsRight": true,
  906. "_isAbsTop": true,
  907. "_isAbsBottom": true,
  908. "_isAbsHorizontalCenter": true,
  909. "_isAbsVerticalCenter": true,
  910. "_originalWidth": 100,
  911. "_originalHeight": 100,
  912. "_alignMode": 2,
  913. "_lockFlags": 0,
  914. "_id": "b8aB1JPW9OtI42OWrzvKGG"
  915. },
  916. {
  917. "__type__": "cc.Node",
  918. "_name": "6",
  919. "_objFlags": 0,
  920. "_parent": {
  921. "__id__": 12
  922. },
  923. "_children": [],
  924. "_active": true,
  925. "_components": [
  926. {
  927. "__id__": 29
  928. },
  929. {
  930. "__id__": 30
  931. }
  932. ],
  933. "_prefab": null,
  934. "_lpos": {
  935. "__type__": "cc.Vec3",
  936. "x": 0,
  937. "y": 0,
  938. "z": 0
  939. },
  940. "_lrot": {
  941. "__type__": "cc.Quat",
  942. "x": 0,
  943. "y": 0,
  944. "z": 0,
  945. "w": 1
  946. },
  947. "_lscale": {
  948. "__type__": "cc.Vec3",
  949. "x": 1,
  950. "y": 1,
  951. "z": 1
  952. },
  953. "_layer": 1073741824,
  954. "_euler": {
  955. "__type__": "cc.Vec3",
  956. "x": 0,
  957. "y": 0,
  958. "z": 0
  959. },
  960. "_id": "5827XwcuZMMpzSLz2Ga3sc"
  961. },
  962. {
  963. "__type__": "cc.UITransformComponent",
  964. "_name": "",
  965. "_objFlags": 0,
  966. "node": {
  967. "__id__": 28
  968. },
  969. "_enabled": true,
  970. "_priority": 0,
  971. "_contentSize": {
  972. "__type__": "cc.Size",
  973. "width": 750,
  974. "height": 1334
  975. },
  976. "_anchorPoint": {
  977. "__type__": "cc.Vec2",
  978. "x": 0.5,
  979. "y": 0.5
  980. },
  981. "_id": "658dSUCBpGQ6Xf1K6gk0pe"
  982. },
  983. {
  984. "__type__": "cc.WidgetComponent",
  985. "_name": "1<WidgetComponent>",
  986. "_objFlags": 0,
  987. "node": {
  988. "__id__": 28
  989. },
  990. "_enabled": true,
  991. "_alignFlags": 45,
  992. "_target": null,
  993. "_left": 0,
  994. "_right": 0,
  995. "_top": 0,
  996. "_bottom": 0,
  997. "_horizontalCenter": 0,
  998. "_verticalCenter": 0,
  999. "_isAbsLeft": true,
  1000. "_isAbsRight": true,
  1001. "_isAbsTop": true,
  1002. "_isAbsBottom": true,
  1003. "_isAbsHorizontalCenter": true,
  1004. "_isAbsVerticalCenter": true,
  1005. "_originalWidth": 100,
  1006. "_originalHeight": 100,
  1007. "_alignMode": 2,
  1008. "_lockFlags": 0,
  1009. "_id": "45ZYyqUz5Pc5047Biz2VQo"
  1010. },
  1011. {
  1012. "__type__": "cc.Node",
  1013. "_name": "7",
  1014. "_objFlags": 0,
  1015. "_parent": {
  1016. "__id__": 12
  1017. },
  1018. "_children": [],
  1019. "_active": true,
  1020. "_components": [
  1021. {
  1022. "__id__": 32
  1023. },
  1024. {
  1025. "__id__": 33
  1026. }
  1027. ],
  1028. "_prefab": null,
  1029. "_lpos": {
  1030. "__type__": "cc.Vec3",
  1031. "x": 0,
  1032. "y": 0,
  1033. "z": 0
  1034. },
  1035. "_lrot": {
  1036. "__type__": "cc.Quat",
  1037. "x": 0,
  1038. "y": 0,
  1039. "z": 0,
  1040. "w": 1
  1041. },
  1042. "_lscale": {
  1043. "__type__": "cc.Vec3",
  1044. "x": 1,
  1045. "y": 1,
  1046. "z": 1
  1047. },
  1048. "_layer": 1073741824,
  1049. "_euler": {
  1050. "__type__": "cc.Vec3",
  1051. "x": 0,
  1052. "y": 0,
  1053. "z": 0
  1054. },
  1055. "_id": "28qLqnWd5EA4uhWrj/9E0C"
  1056. },
  1057. {
  1058. "__type__": "cc.UITransformComponent",
  1059. "_name": "",
  1060. "_objFlags": 0,
  1061. "node": {
  1062. "__id__": 31
  1063. },
  1064. "_enabled": true,
  1065. "_priority": 0,
  1066. "_contentSize": {
  1067. "__type__": "cc.Size",
  1068. "width": 750,
  1069. "height": 1334
  1070. },
  1071. "_anchorPoint": {
  1072. "__type__": "cc.Vec2",
  1073. "x": 0.5,
  1074. "y": 0.5
  1075. },
  1076. "_id": "62E2j2mPdC6ZmzCNfYzxIy"
  1077. },
  1078. {
  1079. "__type__": "cc.WidgetComponent",
  1080. "_name": "1<WidgetComponent>",
  1081. "_objFlags": 0,
  1082. "node": {
  1083. "__id__": 31
  1084. },
  1085. "_enabled": true,
  1086. "_alignFlags": 45,
  1087. "_target": null,
  1088. "_left": 0,
  1089. "_right": 0,
  1090. "_top": 0,
  1091. "_bottom": 0,
  1092. "_horizontalCenter": 0,
  1093. "_verticalCenter": 0,
  1094. "_isAbsLeft": true,
  1095. "_isAbsRight": true,
  1096. "_isAbsTop": true,
  1097. "_isAbsBottom": true,
  1098. "_isAbsHorizontalCenter": true,
  1099. "_isAbsVerticalCenter": true,
  1100. "_originalWidth": 100,
  1101. "_originalHeight": 100,
  1102. "_alignMode": 2,
  1103. "_lockFlags": 0,
  1104. "_id": "97nfQyYThNuouT1Se52+BK"
  1105. },
  1106. {
  1107. "__type__": "cc.Node",
  1108. "_name": "8",
  1109. "_objFlags": 0,
  1110. "_parent": {
  1111. "__id__": 12
  1112. },
  1113. "_children": [],
  1114. "_active": true,
  1115. "_components": [
  1116. {
  1117. "__id__": 35
  1118. },
  1119. {
  1120. "__id__": 36
  1121. }
  1122. ],
  1123. "_prefab": null,
  1124. "_lpos": {
  1125. "__type__": "cc.Vec3",
  1126. "x": 0,
  1127. "y": 0,
  1128. "z": 0
  1129. },
  1130. "_lrot": {
  1131. "__type__": "cc.Quat",
  1132. "x": 0,
  1133. "y": 0,
  1134. "z": 0,
  1135. "w": 1
  1136. },
  1137. "_lscale": {
  1138. "__type__": "cc.Vec3",
  1139. "x": 1,
  1140. "y": 1,
  1141. "z": 1
  1142. },
  1143. "_layer": 1073741824,
  1144. "_euler": {
  1145. "__type__": "cc.Vec3",
  1146. "x": 0,
  1147. "y": 0,
  1148. "z": 0
  1149. },
  1150. "_id": "67NrHTrfhG3J0s64iuXqTE"
  1151. },
  1152. {
  1153. "__type__": "cc.UITransformComponent",
  1154. "_name": "",
  1155. "_objFlags": 0,
  1156. "node": {
  1157. "__id__": 34
  1158. },
  1159. "_enabled": true,
  1160. "_priority": 0,
  1161. "_contentSize": {
  1162. "__type__": "cc.Size",
  1163. "width": 750,
  1164. "height": 1334
  1165. },
  1166. "_anchorPoint": {
  1167. "__type__": "cc.Vec2",
  1168. "x": 0.5,
  1169. "y": 0.5
  1170. },
  1171. "_id": "e0lRzUtqhG849kaF80ebmd"
  1172. },
  1173. {
  1174. "__type__": "cc.WidgetComponent",
  1175. "_name": "1<WidgetComponent>",
  1176. "_objFlags": 0,
  1177. "node": {
  1178. "__id__": 34
  1179. },
  1180. "_enabled": true,
  1181. "_alignFlags": 45,
  1182. "_target": null,
  1183. "_left": 0,
  1184. "_right": 0,
  1185. "_top": 0,
  1186. "_bottom": 0,
  1187. "_horizontalCenter": 0,
  1188. "_verticalCenter": 0,
  1189. "_isAbsLeft": true,
  1190. "_isAbsRight": true,
  1191. "_isAbsTop": true,
  1192. "_isAbsBottom": true,
  1193. "_isAbsHorizontalCenter": true,
  1194. "_isAbsVerticalCenter": true,
  1195. "_originalWidth": 100,
  1196. "_originalHeight": 100,
  1197. "_alignMode": 2,
  1198. "_lockFlags": 0,
  1199. "_id": "1bTZRU0/9DoaaCsNcRCIw/"
  1200. },
  1201. {
  1202. "__type__": "cc.Node",
  1203. "_name": "9",
  1204. "_objFlags": 0,
  1205. "_parent": {
  1206. "__id__": 12
  1207. },
  1208. "_children": [],
  1209. "_active": true,
  1210. "_components": [
  1211. {
  1212. "__id__": 38
  1213. },
  1214. {
  1215. "__id__": 39
  1216. }
  1217. ],
  1218. "_prefab": null,
  1219. "_lpos": {
  1220. "__type__": "cc.Vec3",
  1221. "x": 0,
  1222. "y": 0,
  1223. "z": 0
  1224. },
  1225. "_lrot": {
  1226. "__type__": "cc.Quat",
  1227. "x": 0,
  1228. "y": 0,
  1229. "z": 0,
  1230. "w": 1
  1231. },
  1232. "_lscale": {
  1233. "__type__": "cc.Vec3",
  1234. "x": 1,
  1235. "y": 1,
  1236. "z": 1
  1237. },
  1238. "_layer": 1073741824,
  1239. "_euler": {
  1240. "__type__": "cc.Vec3",
  1241. "x": 0,
  1242. "y": 0,
  1243. "z": 0
  1244. },
  1245. "_id": "35LLYyfW9HcotsKOtIBLCa"
  1246. },
  1247. {
  1248. "__type__": "cc.UITransformComponent",
  1249. "_name": "",
  1250. "_objFlags": 0,
  1251. "node": {
  1252. "__id__": 37
  1253. },
  1254. "_enabled": true,
  1255. "_priority": 0,
  1256. "_contentSize": {
  1257. "__type__": "cc.Size",
  1258. "width": 750,
  1259. "height": 1334
  1260. },
  1261. "_anchorPoint": {
  1262. "__type__": "cc.Vec2",
  1263. "x": 0.5,
  1264. "y": 0.5
  1265. },
  1266. "_id": "f5lVgSSVRNZ7X1uEJBHN0i"
  1267. },
  1268. {
  1269. "__type__": "cc.WidgetComponent",
  1270. "_name": "1<WidgetComponent>",
  1271. "_objFlags": 0,
  1272. "node": {
  1273. "__id__": 37
  1274. },
  1275. "_enabled": true,
  1276. "_alignFlags": 45,
  1277. "_target": null,
  1278. "_left": 0,
  1279. "_right": 0,
  1280. "_top": 0,
  1281. "_bottom": 0,
  1282. "_horizontalCenter": 0,
  1283. "_verticalCenter": 0,
  1284. "_isAbsLeft": true,
  1285. "_isAbsRight": true,
  1286. "_isAbsTop": true,
  1287. "_isAbsBottom": true,
  1288. "_isAbsHorizontalCenter": true,
  1289. "_isAbsVerticalCenter": true,
  1290. "_originalWidth": 100,
  1291. "_originalHeight": 100,
  1292. "_alignMode": 2,
  1293. "_lockFlags": 0,
  1294. "_id": "0cG49DAuRAQLXYXGaienaY"
  1295. },
  1296. {
  1297. "__type__": "cc.UITransformComponent",
  1298. "_name": "",
  1299. "_objFlags": 0,
  1300. "node": {
  1301. "__id__": 12
  1302. },
  1303. "_enabled": true,
  1304. "_priority": 0,
  1305. "_contentSize": {
  1306. "__type__": "cc.Size",
  1307. "width": 750,
  1308. "height": 1334
  1309. },
  1310. "_anchorPoint": {
  1311. "__type__": "cc.Vec2",
  1312. "x": 0.5,
  1313. "y": 0.5
  1314. },
  1315. "_id": "9cPegErUNOJogMgf9iQ/F2"
  1316. },
  1317. {
  1318. "__type__": "cc.WidgetComponent",
  1319. "_name": "LayerRoot<WidgetComponent>",
  1320. "_objFlags": 0,
  1321. "node": {
  1322. "__id__": 12
  1323. },
  1324. "_enabled": true,
  1325. "_alignFlags": 45,
  1326. "_target": null,
  1327. "_left": 0,
  1328. "_right": 0,
  1329. "_top": 0,
  1330. "_bottom": 0,
  1331. "_horizontalCenter": 0,
  1332. "_verticalCenter": 0,
  1333. "_isAbsLeft": true,
  1334. "_isAbsRight": true,
  1335. "_isAbsTop": true,
  1336. "_isAbsBottom": true,
  1337. "_isAbsHorizontalCenter": true,
  1338. "_isAbsVerticalCenter": true,
  1339. "_originalWidth": 100,
  1340. "_originalHeight": 100,
  1341. "_alignMode": 2,
  1342. "_lockFlags": 0,
  1343. "_id": "94Zs+CFfxCg4mPFPW+otsC"
  1344. },
  1345. {
  1346. "__type__": "cc.Node",
  1347. "_name": "NoticeLayer",
  1348. "_objFlags": 0,
  1349. "_parent": {
  1350. "__id__": 11
  1351. },
  1352. "_children": [],
  1353. "_active": true,
  1354. "_components": [
  1355. {
  1356. "__id__": 43
  1357. },
  1358. {
  1359. "__id__": 44
  1360. }
  1361. ],
  1362. "_prefab": null,
  1363. "_lpos": {
  1364. "__type__": "cc.Vec3",
  1365. "x": -375,
  1366. "y": -667,
  1367. "z": 0
  1368. },
  1369. "_lrot": {
  1370. "__type__": "cc.Quat",
  1371. "x": 0,
  1372. "y": 0,
  1373. "z": 0,
  1374. "w": 1
  1375. },
  1376. "_lscale": {
  1377. "__type__": "cc.Vec3",
  1378. "x": 1,
  1379. "y": 1,
  1380. "z": 1
  1381. },
  1382. "_layer": 1073741824,
  1383. "_euler": {
  1384. "__type__": "cc.Vec3",
  1385. "x": 0,
  1386. "y": 0,
  1387. "z": 0
  1388. },
  1389. "_id": "3dQ1bGbQVMz7bfHyQpgekP"
  1390. },
  1391. {
  1392. "__type__": "cc.UITransformComponent",
  1393. "_name": "",
  1394. "_objFlags": 0,
  1395. "node": {
  1396. "__id__": 42
  1397. },
  1398. "_enabled": true,
  1399. "_priority": 0,
  1400. "_contentSize": {
  1401. "__type__": "cc.Size",
  1402. "width": 750,
  1403. "height": 1334
  1404. },
  1405. "_anchorPoint": {
  1406. "__type__": "cc.Vec2",
  1407. "x": 0,
  1408. "y": 0
  1409. },
  1410. "_id": "ebriM/+SJIrb9AghgYVfeW"
  1411. },
  1412. {
  1413. "__type__": "cc.WidgetComponent",
  1414. "_name": "NoticeLayer<WidgetComponent>",
  1415. "_objFlags": 0,
  1416. "node": {
  1417. "__id__": 42
  1418. },
  1419. "_enabled": true,
  1420. "_alignFlags": 45,
  1421. "_target": null,
  1422. "_left": 0,
  1423. "_right": 0,
  1424. "_top": 0,
  1425. "_bottom": 0,
  1426. "_horizontalCenter": 0,
  1427. "_verticalCenter": 0,
  1428. "_isAbsLeft": true,
  1429. "_isAbsRight": true,
  1430. "_isAbsTop": true,
  1431. "_isAbsBottom": true,
  1432. "_isAbsHorizontalCenter": true,
  1433. "_isAbsVerticalCenter": true,
  1434. "_originalWidth": 100,
  1435. "_originalHeight": 100,
  1436. "_alignMode": 2,
  1437. "_lockFlags": 0,
  1438. "_id": "43yH5jKC9AvpsdwY6lOUt/"
  1439. },
  1440. {
  1441. "__type__": "cc.Node",
  1442. "_name": "LoadingView",
  1443. "_objFlags": 0,
  1444. "_parent": {
  1445. "__id__": 11
  1446. },
  1447. "_children": [
  1448. {
  1449. "__id__": 46
  1450. },
  1451. {
  1452. "__id__": 50
  1453. }
  1454. ],
  1455. "_active": true,
  1456. "_components": [
  1457. {
  1458. "__id__": 61
  1459. },
  1460. {
  1461. "__id__": 62
  1462. },
  1463. {
  1464. "__id__": 63
  1465. }
  1466. ],
  1467. "_prefab": null,
  1468. "_lpos": {
  1469. "__type__": "cc.Vec3",
  1470. "x": 0,
  1471. "y": 0,
  1472. "z": 0
  1473. },
  1474. "_lrot": {
  1475. "__type__": "cc.Quat",
  1476. "x": 0,
  1477. "y": 0,
  1478. "z": 0,
  1479. "w": 1
  1480. },
  1481. "_lscale": {
  1482. "__type__": "cc.Vec3",
  1483. "x": 1,
  1484. "y": 1,
  1485. "z": 1
  1486. },
  1487. "_layer": 1073741824,
  1488. "_euler": {
  1489. "__type__": "cc.Vec3",
  1490. "x": 0,
  1491. "y": 0,
  1492. "z": 0
  1493. },
  1494. "_id": "4c+tz0oR9I8L4DkIXjYuH5"
  1495. },
  1496. {
  1497. "__type__": "cc.Node",
  1498. "_name": "BG",
  1499. "_objFlags": 0,
  1500. "_parent": {
  1501. "__id__": 45
  1502. },
  1503. "_children": [],
  1504. "_active": true,
  1505. "_components": [
  1506. {
  1507. "__id__": 47
  1508. },
  1509. {
  1510. "__id__": 48
  1511. },
  1512. {
  1513. "__id__": 49
  1514. }
  1515. ],
  1516. "_prefab": null,
  1517. "_lpos": {
  1518. "__type__": "cc.Vec3",
  1519. "x": 0,
  1520. "y": 0,
  1521. "z": 0
  1522. },
  1523. "_lrot": {
  1524. "__type__": "cc.Quat",
  1525. "x": 0,
  1526. "y": 0,
  1527. "z": 0,
  1528. "w": 1
  1529. },
  1530. "_lscale": {
  1531. "__type__": "cc.Vec3",
  1532. "x": 1,
  1533. "y": 1,
  1534. "z": 1
  1535. },
  1536. "_layer": 33554432,
  1537. "_euler": {
  1538. "__type__": "cc.Vec3",
  1539. "x": 0,
  1540. "y": 0,
  1541. "z": 0
  1542. },
  1543. "_id": "9ahpLg9lVFw4DJ9Y+YmoQo"
  1544. },
  1545. {
  1546. "__type__": "cc.UITransformComponent",
  1547. "_name": "",
  1548. "_objFlags": 0,
  1549. "node": {
  1550. "__id__": 46
  1551. },
  1552. "_enabled": true,
  1553. "_priority": 0,
  1554. "_contentSize": {
  1555. "__type__": "cc.Size",
  1556. "width": 750,
  1557. "height": 1334
  1558. },
  1559. "_anchorPoint": {
  1560. "__type__": "cc.Vec2",
  1561. "x": 0.5,
  1562. "y": 0.5
  1563. },
  1564. "_id": "b5wMs3KOJGYI1KREeh/SMB"
  1565. },
  1566. {
  1567. "__type__": "cc.SpriteComponent",
  1568. "_name": "",
  1569. "_objFlags": 0,
  1570. "node": {
  1571. "__id__": 46
  1572. },
  1573. "_enabled": true,
  1574. "_srcBlendFactor": 2,
  1575. "_dstBlendFactor": 4,
  1576. "_color": {
  1577. "__type__": "cc.Color",
  1578. "r": 255,
  1579. "g": 255,
  1580. "b": 255,
  1581. "a": 255
  1582. },
  1583. "_sharedMaterial": null,
  1584. "_spriteFrame": {
  1585. "__uuid__": "58505213-51b7-4d75-9914-7bb055bfe23a@f9941"
  1586. },
  1587. "_type": 0,
  1588. "_fillType": 0,
  1589. "_sizeMode": 0,
  1590. "_fillCenter": {
  1591. "__type__": "cc.Vec2",
  1592. "x": 0,
  1593. "y": 0
  1594. },
  1595. "_fillStart": 0,
  1596. "_fillRange": 0,
  1597. "_isTrimmedMode": true,
  1598. "_useGrayscale": false,
  1599. "_atlas": null,
  1600. "_id": "13CJPhUsZKYoFgZOMSW5as"
  1601. },
  1602. {
  1603. "__type__": "cc.WidgetComponent",
  1604. "_name": "Sprite<WidgetComponent>",
  1605. "_objFlags": 0,
  1606. "node": {
  1607. "__id__": 46
  1608. },
  1609. "_enabled": true,
  1610. "_alignFlags": 45,
  1611. "_target": null,
  1612. "_left": 0,
  1613. "_right": 0,
  1614. "_top": 0,
  1615. "_bottom": 0,
  1616. "_horizontalCenter": 0,
  1617. "_verticalCenter": 0,
  1618. "_isAbsLeft": true,
  1619. "_isAbsRight": true,
  1620. "_isAbsTop": true,
  1621. "_isAbsBottom": true,
  1622. "_isAbsHorizontalCenter": true,
  1623. "_isAbsVerticalCenter": true,
  1624. "_originalWidth": 40,
  1625. "_originalHeight": 36,
  1626. "_alignMode": 2,
  1627. "_lockFlags": 0,
  1628. "_id": "daDK6typpNT61sT1ufhfu4"
  1629. },
  1630. {
  1631. "__type__": "cc.Node",
  1632. "_name": "ProgressBar",
  1633. "_objFlags": 0,
  1634. "_parent": {
  1635. "__id__": 45
  1636. },
  1637. "_children": [
  1638. {
  1639. "__id__": 51
  1640. },
  1641. {
  1642. "__id__": 54
  1643. }
  1644. ],
  1645. "_active": true,
  1646. "_components": [
  1647. {
  1648. "__id__": 57
  1649. },
  1650. {
  1651. "__id__": 58
  1652. },
  1653. {
  1654. "__id__": 59
  1655. },
  1656. {
  1657. "__id__": 60
  1658. }
  1659. ],
  1660. "_prefab": null,
  1661. "_lpos": {
  1662. "__type__": "cc.Vec3",
  1663. "x": 0,
  1664. "y": -538.951,
  1665. "z": 0
  1666. },
  1667. "_lrot": {
  1668. "__type__": "cc.Quat",
  1669. "x": 0,
  1670. "y": 0,
  1671. "z": 0,
  1672. "w": 1
  1673. },
  1674. "_lscale": {
  1675. "__type__": "cc.Vec3",
  1676. "x": 1,
  1677. "y": 1,
  1678. "z": 1
  1679. },
  1680. "_layer": 33554432,
  1681. "_euler": {
  1682. "__type__": "cc.Vec3",
  1683. "x": 0,
  1684. "y": 0,
  1685. "z": 0
  1686. },
  1687. "_id": "537H/VRXVFsaoborpUuqUO"
  1688. },
  1689. {
  1690. "__type__": "cc.Node",
  1691. "_name": "Bar",
  1692. "_objFlags": 0,
  1693. "_parent": {
  1694. "__id__": 50
  1695. },
  1696. "_children": [],
  1697. "_active": true,
  1698. "_components": [
  1699. {
  1700. "__id__": 52
  1701. },
  1702. {
  1703. "__id__": 53
  1704. }
  1705. ],
  1706. "_prefab": null,
  1707. "_lpos": {
  1708. "__type__": "cc.Vec3",
  1709. "x": -150,
  1710. "y": 0,
  1711. "z": 0
  1712. },
  1713. "_lrot": {
  1714. "__type__": "cc.Quat",
  1715. "x": 0,
  1716. "y": 0,
  1717. "z": 0,
  1718. "w": 1
  1719. },
  1720. "_lscale": {
  1721. "__type__": "cc.Vec3",
  1722. "x": 1,
  1723. "y": 1,
  1724. "z": 1
  1725. },
  1726. "_layer": 33554432,
  1727. "_euler": {
  1728. "__type__": "cc.Vec3",
  1729. "x": 0,
  1730. "y": 0,
  1731. "z": 0
  1732. },
  1733. "_id": "86vbEDh0xG+Kcu///27kHs"
  1734. },
  1735. {
  1736. "__type__": "cc.UITransformComponent",
  1737. "_name": "",
  1738. "_objFlags": 0,
  1739. "node": {
  1740. "__id__": 51
  1741. },
  1742. "_enabled": true,
  1743. "_priority": 0,
  1744. "_contentSize": {
  1745. "__type__": "cc.Size",
  1746. "width": 150,
  1747. "height": 15
  1748. },
  1749. "_anchorPoint": {
  1750. "__type__": "cc.Vec2",
  1751. "x": 0,
  1752. "y": 0.5
  1753. },
  1754. "_id": "81kLdYgm5MJKFoBz+uGV5l"
  1755. },
  1756. {
  1757. "__type__": "cc.SpriteComponent",
  1758. "_name": "",
  1759. "_objFlags": 0,
  1760. "node": {
  1761. "__id__": 51
  1762. },
  1763. "_enabled": true,
  1764. "_srcBlendFactor": 2,
  1765. "_dstBlendFactor": 4,
  1766. "_color": {
  1767. "__type__": "cc.Color",
  1768. "r": 255,
  1769. "g": 255,
  1770. "b": 255,
  1771. "a": 255
  1772. },
  1773. "_sharedMaterial": null,
  1774. "_spriteFrame": {
  1775. "__uuid__": "24a704da-2867-446d-8d1a-5e920c75e09d@f9941"
  1776. },
  1777. "_type": 1,
  1778. "_fillType": 0,
  1779. "_sizeMode": 0,
  1780. "_fillCenter": {
  1781. "__type__": "cc.Vec2",
  1782. "x": 0,
  1783. "y": 0
  1784. },
  1785. "_fillStart": 0,
  1786. "_fillRange": 0,
  1787. "_isTrimmedMode": true,
  1788. "_useGrayscale": false,
  1789. "_atlas": null,
  1790. "_id": "afiba1PENFir6Qja9cCI65"
  1791. },
  1792. {
  1793. "__type__": "cc.Node",
  1794. "_name": "Label",
  1795. "_objFlags": 0,
  1796. "_parent": {
  1797. "__id__": 50
  1798. },
  1799. "_children": [],
  1800. "_active": true,
  1801. "_components": [
  1802. {
  1803. "__id__": 55
  1804. },
  1805. {
  1806. "__id__": 56
  1807. }
  1808. ],
  1809. "_prefab": null,
  1810. "_lpos": {
  1811. "__type__": "cc.Vec3",
  1812. "x": 0,
  1813. "y": 34.38,
  1814. "z": 0
  1815. },
  1816. "_lrot": {
  1817. "__type__": "cc.Quat",
  1818. "x": 0,
  1819. "y": 0,
  1820. "z": 0,
  1821. "w": 1
  1822. },
  1823. "_lscale": {
  1824. "__type__": "cc.Vec3",
  1825. "x": 1,
  1826. "y": 1,
  1827. "z": 1
  1828. },
  1829. "_layer": 33554432,
  1830. "_euler": {
  1831. "__type__": "cc.Vec3",
  1832. "x": 0,
  1833. "y": 0,
  1834. "z": 0
  1835. },
  1836. "_id": "17so4P0YpMwZFDE9HYwCpV"
  1837. },
  1838. {
  1839. "__type__": "cc.UITransformComponent",
  1840. "_name": "",
  1841. "_objFlags": 0,
  1842. "node": {
  1843. "__id__": 54
  1844. },
  1845. "_enabled": true,
  1846. "_priority": 0,
  1847. "_contentSize": {
  1848. "__type__": "cc.Size",
  1849. "width": 207.92,
  1850. "height": 50.4
  1851. },
  1852. "_anchorPoint": {
  1853. "__type__": "cc.Vec2",
  1854. "x": 0.5,
  1855. "y": 0.5
  1856. },
  1857. "_id": "0dxeNWHFdNlbceFUNcJ9xq"
  1858. },
  1859. {
  1860. "__type__": "cc.LabelComponent",
  1861. "_name": "",
  1862. "_objFlags": 0,
  1863. "node": {
  1864. "__id__": 54
  1865. },
  1866. "_enabled": true,
  1867. "_srcBlendFactor": 2,
  1868. "_dstBlendFactor": 4,
  1869. "_color": {
  1870. "__type__": "cc.Color",
  1871. "r": 255,
  1872. "g": 255,
  1873. "b": 255,
  1874. "a": 255
  1875. },
  1876. "_sharedMaterial": null,
  1877. "_useOriginalSize": true,
  1878. "_string": "PreloadingView",
  1879. "_horizontalAlign": 1,
  1880. "_verticalAlign": 1,
  1881. "_actualFontSize": 30,
  1882. "_fontSize": 30,
  1883. "_fontFamily": "Arial",
  1884. "_lineHeight": 40,
  1885. "_overflow": 0,
  1886. "_enableWrapText": true,
  1887. "_font": null,
  1888. "_isSystemFontUsed": true,
  1889. "_isItalic": false,
  1890. "_isBold": false,
  1891. "_isUnderline": false,
  1892. "_cacheMode": 0,
  1893. "_id": "a5bFWemoxPr4LZhN//G1AT"
  1894. },
  1895. {
  1896. "__type__": "cc.UITransformComponent",
  1897. "_name": "",
  1898. "_objFlags": 0,
  1899. "node": {
  1900. "__id__": 50
  1901. },
  1902. "_enabled": true,
  1903. "_priority": 0,
  1904. "_contentSize": {
  1905. "__type__": "cc.Size",
  1906. "width": 300,
  1907. "height": 15
  1908. },
  1909. "_anchorPoint": {
  1910. "__type__": "cc.Vec2",
  1911. "x": 0.5,
  1912. "y": 0.5
  1913. },
  1914. "_id": "05HqOIANtHjrYaZvn5Rv/n"
  1915. },
  1916. {
  1917. "__type__": "cc.SpriteComponent",
  1918. "_name": "",
  1919. "_objFlags": 0,
  1920. "node": {
  1921. "__id__": 50
  1922. },
  1923. "_enabled": true,
  1924. "_srcBlendFactor": 2,
  1925. "_dstBlendFactor": 4,
  1926. "_color": {
  1927. "__type__": "cc.Color",
  1928. "r": 255,
  1929. "g": 255,
  1930. "b": 255,
  1931. "a": 255
  1932. },
  1933. "_sharedMaterial": null,
  1934. "_spriteFrame": {
  1935. "__uuid__": "9fd900dd-221b-4f89-8f2c-fba34243c835@f9941"
  1936. },
  1937. "_type": 1,
  1938. "_fillType": 0,
  1939. "_sizeMode": 0,
  1940. "_fillCenter": {
  1941. "__type__": "cc.Vec2",
  1942. "x": 0,
  1943. "y": 0
  1944. },
  1945. "_fillStart": 0,
  1946. "_fillRange": 0,
  1947. "_isTrimmedMode": true,
  1948. "_useGrayscale": false,
  1949. "_atlas": null,
  1950. "_id": "e1V9FZ99lPH7+8wgbgVrn9"
  1951. },
  1952. {
  1953. "__type__": "cc.ProgressBarComponent",
  1954. "_name": "",
  1955. "_objFlags": 0,
  1956. "node": {
  1957. "__id__": 50
  1958. },
  1959. "_enabled": true,
  1960. "_barSprite": {
  1961. "__id__": 53
  1962. },
  1963. "_mode": 0,
  1964. "_totalLength": 300,
  1965. "_progress": 0.5,
  1966. "_reverse": false,
  1967. "_id": "c453aDEWlLrIDgTBCKFPnU"
  1968. },
  1969. {
  1970. "__type__": "cc.WidgetComponent",
  1971. "_name": "ProgressBar<WidgetComponent>",
  1972. "_objFlags": 0,
  1973. "node": {
  1974. "__id__": 50
  1975. },
  1976. "_enabled": true,
  1977. "_alignFlags": 18,
  1978. "_target": null,
  1979. "_left": 0,
  1980. "_right": 0,
  1981. "_top": 0,
  1982. "_bottom": 0,
  1983. "_horizontalCenter": 0,
  1984. "_verticalCenter": -538.951,
  1985. "_isAbsLeft": true,
  1986. "_isAbsRight": true,
  1987. "_isAbsTop": true,
  1988. "_isAbsBottom": true,
  1989. "_isAbsHorizontalCenter": true,
  1990. "_isAbsVerticalCenter": true,
  1991. "_originalWidth": 0,
  1992. "_originalHeight": 0,
  1993. "_alignMode": 2,
  1994. "_lockFlags": 0,
  1995. "_id": "5bjQFxPWFFKIREUtiWeFhF"
  1996. },
  1997. {
  1998. "__type__": "cc.UITransformComponent",
  1999. "_name": "",
  2000. "_objFlags": 0,
  2001. "node": {
  2002. "__id__": 45
  2003. },
  2004. "_enabled": true,
  2005. "_priority": 0,
  2006. "_contentSize": {
  2007. "__type__": "cc.Size",
  2008. "width": 750,
  2009. "height": 1334
  2010. },
  2011. "_anchorPoint": {
  2012. "__type__": "cc.Vec2",
  2013. "x": 0.5,
  2014. "y": 0.5
  2015. },
  2016. "_id": "97QSboendHy57KDYaOZTyx"
  2017. },
  2018. {
  2019. "__type__": "cc.WidgetComponent",
  2020. "_name": "LoadingView<WidgetComponent>",
  2021. "_objFlags": 0,
  2022. "node": {
  2023. "__id__": 45
  2024. },
  2025. "_enabled": true,
  2026. "_alignFlags": 45,
  2027. "_target": null,
  2028. "_left": 0,
  2029. "_right": 0,
  2030. "_top": 0,
  2031. "_bottom": 0,
  2032. "_horizontalCenter": 0,
  2033. "_verticalCenter": 0,
  2034. "_isAbsLeft": true,
  2035. "_isAbsRight": true,
  2036. "_isAbsTop": true,
  2037. "_isAbsBottom": true,
  2038. "_isAbsHorizontalCenter": true,
  2039. "_isAbsVerticalCenter": true,
  2040. "_originalWidth": 100,
  2041. "_originalHeight": 100,
  2042. "_alignMode": 2,
  2043. "_lockFlags": 0,
  2044. "_id": "ec6ZvoZStFTLBgvhhcPigN"
  2045. },
  2046. {
  2047. "__type__": "45731CajrFNHKa3NLJuDgPh",
  2048. "_name": "",
  2049. "_objFlags": 0,
  2050. "node": {
  2051. "__id__": 45
  2052. },
  2053. "_enabled": true,
  2054. "pregressBar": {
  2055. "__id__": 59
  2056. },
  2057. "label": {
  2058. "__id__": 56
  2059. },
  2060. "_id": "83opnQN/1AUYDky00YJeG0"
  2061. },
  2062. {
  2063. "__type__": "cc.UITransformComponent",
  2064. "_name": "",
  2065. "_objFlags": 0,
  2066. "node": {
  2067. "__id__": 11
  2068. },
  2069. "_enabled": true,
  2070. "_priority": 0,
  2071. "_contentSize": {
  2072. "__type__": "cc.Size",
  2073. "width": 750,
  2074. "height": 1334
  2075. },
  2076. "_anchorPoint": {
  2077. "__type__": "cc.Vec2",
  2078. "x": 0.5,
  2079. "y": 0.5
  2080. },
  2081. "_id": "54hs4hZCJH5qZikc4Fif/c"
  2082. },
  2083. {
  2084. "__type__": "cc.WidgetComponent",
  2085. "_name": "UIRoot<WidgetComponent>",
  2086. "_objFlags": 0,
  2087. "node": {
  2088. "__id__": 11
  2089. },
  2090. "_enabled": true,
  2091. "_alignFlags": 45,
  2092. "_target": null,
  2093. "_left": 0,
  2094. "_right": 0,
  2095. "_top": 0,
  2096. "_bottom": 0,
  2097. "_horizontalCenter": 0,
  2098. "_verticalCenter": 0,
  2099. "_isAbsLeft": true,
  2100. "_isAbsRight": true,
  2101. "_isAbsTop": true,
  2102. "_isAbsBottom": true,
  2103. "_isAbsHorizontalCenter": true,
  2104. "_isAbsVerticalCenter": true,
  2105. "_originalWidth": 100,
  2106. "_originalHeight": 100,
  2107. "_alignMode": 2,
  2108. "_lockFlags": 0,
  2109. "_id": "4e+ZLeQJ9KzLpFqRvh/Dml"
  2110. },
  2111. {
  2112. "__type__": "cc.UITransformComponent",
  2113. "_name": "",
  2114. "_objFlags": 0,
  2115. "node": {
  2116. "__id__": 8
  2117. },
  2118. "_enabled": true,
  2119. "_priority": 0,
  2120. "_contentSize": {
  2121. "__type__": "cc.Size",
  2122. "width": 750,
  2123. "height": 1334
  2124. },
  2125. "_anchorPoint": {
  2126. "__type__": "cc.Vec2",
  2127. "x": 0.5,
  2128. "y": 0.5
  2129. },
  2130. "_id": "f2Q1B6NqdI+6zfhBbkmU3/"
  2131. },
  2132. {
  2133. "__type__": "cc.CanvasComponent",
  2134. "_name": "",
  2135. "_objFlags": 0,
  2136. "node": {
  2137. "__id__": 8
  2138. },
  2139. "_enabled": true,
  2140. "_priority": 0,
  2141. "_targetTexture": null,
  2142. "_clearFlag": 0,
  2143. "_color": {
  2144. "__type__": "cc.Color",
  2145. "r": 0,
  2146. "g": 0,
  2147. "b": 0,
  2148. "a": 0
  2149. },
  2150. "_renderMode": 0,
  2151. "_id": "08kQErUdFCMJhaqtXzfhVq"
  2152. },
  2153. {
  2154. "__type__": "cc.SceneGlobals",
  2155. "ambient": {
  2156. "__id__": 69
  2157. },
  2158. "planarShadows": {
  2159. "__id__": 70
  2160. },
  2161. "_skybox": {
  2162. "__id__": 71
  2163. }
  2164. },
  2165. {
  2166. "__type__": "cc.AmbientInfo",
  2167. "_skyColor": {
  2168. "__type__": "cc.Color",
  2169. "r": 51,
  2170. "g": 128,
  2171. "b": 204,
  2172. "a": 1
  2173. },
  2174. "_skyIllum": 20000,
  2175. "_groundAlbedo": {
  2176. "__type__": "cc.Color",
  2177. "r": 51,
  2178. "g": 51,
  2179. "b": 51,
  2180. "a": 255
  2181. }
  2182. },
  2183. {
  2184. "__type__": "cc.PlanarShadowInfo",
  2185. "_enabled": false,
  2186. "_normal": {
  2187. "__type__": "cc.Vec3",
  2188. "x": 0,
  2189. "y": 1,
  2190. "z": 0
  2191. },
  2192. "_distance": 0,
  2193. "_shadowColor": {
  2194. "__type__": "cc.Color",
  2195. "r": 0,
  2196. "g": 0,
  2197. "b": 0,
  2198. "a": 76
  2199. }
  2200. },
  2201. {
  2202. "__type__": "cc.SkyboxInfo",
  2203. "_envmap": null,
  2204. "_isRGBE": false,
  2205. "_enabled": false,
  2206. "_useIBL": false
  2207. }
  2208. ]