scene_update_version.fire 33 KB

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