LoadScene.fire 33 KB

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