PreloadingScene.fire 34 KB

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