039e9a19-0873-4bf4-8500-bba7fbb006e8.json 32 KB

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