moreGame.prefab 33 KB

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