moreGame.prefab 35 KB

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