Launch.fire 36 KB

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