MoreGamesPanel1.prefab 45 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646
  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. },
  13. {
  14. "__type__": "cc.Node",
  15. "_name": "MoreGamesPanel1",
  16. "_objFlags": 0,
  17. "_parent": null,
  18. "_children": [
  19. {
  20. "__id__": 2
  21. },
  22. {
  23. "__id__": 7
  24. }
  25. ],
  26. "_active": true,
  27. "_level": 2,
  28. "_components": [
  29. {
  30. "__id__": 76
  31. },
  32. {
  33. "__id__": 77
  34. }
  35. ],
  36. "_prefab": {
  37. "__id__": 78
  38. },
  39. "_opacity": 255,
  40. "_color": {
  41. "__type__": "cc.Color",
  42. "r": 255,
  43. "g": 255,
  44. "b": 255,
  45. "a": 255
  46. },
  47. "_contentSize": {
  48. "__type__": "cc.Size",
  49. "width": 1080,
  50. "height": 1920
  51. },
  52. "_anchorPoint": {
  53. "__type__": "cc.Vec2",
  54. "x": 0.5,
  55. "y": 0.5
  56. },
  57. "_quat": {
  58. "__type__": "cc.Quat",
  59. "x": 0,
  60. "y": 0,
  61. "z": 0,
  62. "w": 1
  63. },
  64. "_skewX": 0,
  65. "_skewY": 0,
  66. "groupIndex": 0,
  67. "_id": "",
  68. "_trs": {
  69. "__type__": "TypedArray",
  70. "ctor": "Float64Array",
  71. "array": [
  72. 0,
  73. 0,
  74. 0,
  75. 0,
  76. 0,
  77. 0,
  78. 1,
  79. 1,
  80. 1,
  81. 1
  82. ]
  83. }
  84. },
  85. {
  86. "__type__": "cc.Node",
  87. "_name": "Mask",
  88. "_objFlags": 0,
  89. "_parent": {
  90. "__id__": 1
  91. },
  92. "_children": [],
  93. "_active": true,
  94. "_level": 0,
  95. "_components": [
  96. {
  97. "__id__": 3
  98. },
  99. {
  100. "__id__": 4
  101. },
  102. {
  103. "__id__": 5
  104. }
  105. ],
  106. "_prefab": {
  107. "__id__": 6
  108. },
  109. "_opacity": 120,
  110. "_color": {
  111. "__type__": "cc.Color",
  112. "r": 0,
  113. "g": 0,
  114. "b": 0,
  115. "a": 255
  116. },
  117. "_contentSize": {
  118. "__type__": "cc.Size",
  119. "width": 1080,
  120. "height": 1920
  121. },
  122. "_anchorPoint": {
  123. "__type__": "cc.Vec2",
  124. "x": 0.5,
  125. "y": 0.5
  126. },
  127. "_quat": {
  128. "__type__": "cc.Quat",
  129. "x": 0,
  130. "y": 0,
  131. "z": 0,
  132. "w": 1
  133. },
  134. "_skewX": 0,
  135. "_skewY": 0,
  136. "groupIndex": 0,
  137. "_id": "",
  138. "_trs": {
  139. "__type__": "TypedArray",
  140. "ctor": "Float64Array",
  141. "array": [
  142. 0,
  143. 0,
  144. 0,
  145. 0,
  146. 0,
  147. 0,
  148. 1,
  149. 1,
  150. 1,
  151. 1
  152. ]
  153. }
  154. },
  155. {
  156. "__type__": "cc.Sprite",
  157. "_name": "",
  158. "_objFlags": 0,
  159. "node": {
  160. "__id__": 2
  161. },
  162. "_enabled": true,
  163. "_spriteFrame": {
  164. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  165. },
  166. "_type": 0,
  167. "_sizeMode": 0,
  168. "_fillType": 0,
  169. "_fillCenter": {
  170. "__type__": "cc.Vec2",
  171. "x": 0,
  172. "y": 0
  173. },
  174. "_fillStart": 0,
  175. "_fillRange": 0,
  176. "_isTrimmedMode": true,
  177. "_state": 0,
  178. "_atlas": null,
  179. "_srcBlendFactor": 770,
  180. "_dstBlendFactor": 771,
  181. "_id": ""
  182. },
  183. {
  184. "__type__": "cc.Widget",
  185. "_name": "",
  186. "_objFlags": 0,
  187. "node": {
  188. "__id__": 2
  189. },
  190. "_enabled": true,
  191. "alignMode": 1,
  192. "_target": null,
  193. "_alignFlags": 45,
  194. "_left": 0,
  195. "_right": 0,
  196. "_top": 0,
  197. "_bottom": 0,
  198. "_verticalCenter": 0,
  199. "_horizontalCenter": 0,
  200. "_isAbsLeft": true,
  201. "_isAbsRight": true,
  202. "_isAbsTop": true,
  203. "_isAbsBottom": true,
  204. "_isAbsHorizontalCenter": true,
  205. "_isAbsVerticalCenter": true,
  206. "_originalWidth": 100,
  207. "_originalHeight": 100,
  208. "_id": ""
  209. },
  210. {
  211. "__type__": "cc.BlockInputEvents",
  212. "_name": "",
  213. "_objFlags": 0,
  214. "node": {
  215. "__id__": 2
  216. },
  217. "_enabled": true,
  218. "_id": ""
  219. },
  220. {
  221. "__type__": "cc.PrefabInfo",
  222. "root": {
  223. "__id__": 1
  224. },
  225. "asset": {
  226. "__uuid__": "25002cae-a097-461a-85ac-41e9878c22ff"
  227. },
  228. "fileId": "90oH2N+NZIpKpvy+sGZaWU",
  229. "sync": false
  230. },
  231. {
  232. "__type__": "cc.Node",
  233. "_name": "Panel",
  234. "_objFlags": 0,
  235. "_parent": {
  236. "__id__": 1
  237. },
  238. "_children": [
  239. {
  240. "__id__": 8
  241. },
  242. {
  243. "__id__": 12
  244. },
  245. {
  246. "__id__": 21
  247. },
  248. {
  249. "__id__": 30
  250. },
  251. {
  252. "__id__": 39
  253. }
  254. ],
  255. "_active": true,
  256. "_level": 0,
  257. "_components": [
  258. {
  259. "__id__": 74
  260. }
  261. ],
  262. "_prefab": {
  263. "__id__": 75
  264. },
  265. "_opacity": 255,
  266. "_color": {
  267. "__type__": "cc.Color",
  268. "r": 255,
  269. "g": 255,
  270. "b": 255,
  271. "a": 255
  272. },
  273. "_contentSize": {
  274. "__type__": "cc.Size",
  275. "width": 277,
  276. "height": 1414
  277. },
  278. "_anchorPoint": {
  279. "__type__": "cc.Vec2",
  280. "x": 0.5,
  281. "y": 0.5
  282. },
  283. "_quat": {
  284. "__type__": "cc.Quat",
  285. "x": 0,
  286. "y": 0,
  287. "z": 0,
  288. "w": 1
  289. },
  290. "_skewX": 0,
  291. "_skewY": 0,
  292. "groupIndex": 0,
  293. "_id": "",
  294. "_trs": {
  295. "__type__": "TypedArray",
  296. "ctor": "Float64Array",
  297. "array": [
  298. -680,
  299. 83,
  300. 0,
  301. 0,
  302. 0,
  303. 0,
  304. 1,
  305. 1,
  306. 1,
  307. 1
  308. ]
  309. }
  310. },
  311. {
  312. "__type__": "cc.Node",
  313. "_name": "Background",
  314. "_objFlags": 0,
  315. "_parent": {
  316. "__id__": 7
  317. },
  318. "_children": [],
  319. "_active": true,
  320. "_level": 0,
  321. "_components": [
  322. {
  323. "__id__": 9
  324. },
  325. {
  326. "__id__": 10
  327. }
  328. ],
  329. "_prefab": {
  330. "__id__": 11
  331. },
  332. "_opacity": 255,
  333. "_color": {
  334. "__type__": "cc.Color",
  335. "r": 255,
  336. "g": 255,
  337. "b": 255,
  338. "a": 255
  339. },
  340. "_contentSize": {
  341. "__type__": "cc.Size",
  342. "width": 277,
  343. "height": 1414
  344. },
  345. "_anchorPoint": {
  346. "__type__": "cc.Vec2",
  347. "x": 0.5,
  348. "y": 0.5
  349. },
  350. "_quat": {
  351. "__type__": "cc.Quat",
  352. "x": 0,
  353. "y": 0,
  354. "z": 0,
  355. "w": 1
  356. },
  357. "_skewX": 0,
  358. "_skewY": 0,
  359. "groupIndex": 0,
  360. "_id": "",
  361. "_trs": {
  362. "__type__": "TypedArray",
  363. "ctor": "Float64Array",
  364. "array": [
  365. 0,
  366. 0,
  367. 0,
  368. 0,
  369. 0,
  370. 0,
  371. 1,
  372. 1,
  373. 1,
  374. 1
  375. ]
  376. }
  377. },
  378. {
  379. "__type__": "cc.Sprite",
  380. "_name": "",
  381. "_objFlags": 0,
  382. "node": {
  383. "__id__": 8
  384. },
  385. "_enabled": true,
  386. "_spriteFrame": {
  387. "__uuid__": "2004bb26-dc93-4635-8a12-5d5f53a955fe"
  388. },
  389. "_type": 1,
  390. "_sizeMode": 0,
  391. "_fillType": 0,
  392. "_fillCenter": {
  393. "__type__": "cc.Vec2",
  394. "x": 0,
  395. "y": 0
  396. },
  397. "_fillStart": 0,
  398. "_fillRange": 0,
  399. "_isTrimmedMode": true,
  400. "_state": 0,
  401. "_atlas": {
  402. "__uuid__": "eaa6c9f5-9685-45dc-94b4-02b40ba68ee0"
  403. },
  404. "_srcBlendFactor": 770,
  405. "_dstBlendFactor": 771,
  406. "_id": ""
  407. },
  408. {
  409. "__type__": "cc.Widget",
  410. "_name": "",
  411. "_objFlags": 0,
  412. "node": {
  413. "__id__": 8
  414. },
  415. "_enabled": true,
  416. "alignMode": 1,
  417. "_target": null,
  418. "_alignFlags": 45,
  419. "_left": 0,
  420. "_right": 0,
  421. "_top": 0,
  422. "_bottom": 0,
  423. "_verticalCenter": 0,
  424. "_horizontalCenter": 0,
  425. "_isAbsLeft": true,
  426. "_isAbsRight": true,
  427. "_isAbsTop": true,
  428. "_isAbsBottom": true,
  429. "_isAbsHorizontalCenter": true,
  430. "_isAbsVerticalCenter": true,
  431. "_originalWidth": 684,
  432. "_originalHeight": 835,
  433. "_id": ""
  434. },
  435. {
  436. "__type__": "cc.PrefabInfo",
  437. "root": {
  438. "__id__": 1
  439. },
  440. "asset": {
  441. "__uuid__": "25002cae-a097-461a-85ac-41e9878c22ff"
  442. },
  443. "fileId": "f1MxFveJlP9bjk42UiXeO/",
  444. "sync": false
  445. },
  446. {
  447. "__type__": "cc.Node",
  448. "_name": "Title",
  449. "_objFlags": 0,
  450. "_parent": {
  451. "__id__": 7
  452. },
  453. "_children": [
  454. {
  455. "__id__": 13
  456. },
  457. {
  458. "__id__": 16
  459. }
  460. ],
  461. "_active": true,
  462. "_level": 0,
  463. "_components": [
  464. {
  465. "__id__": 19
  466. }
  467. ],
  468. "_prefab": {
  469. "__id__": 20
  470. },
  471. "_opacity": 255,
  472. "_color": {
  473. "__type__": "cc.Color",
  474. "r": 255,
  475. "g": 255,
  476. "b": 255,
  477. "a": 255
  478. },
  479. "_contentSize": {
  480. "__type__": "cc.Size",
  481. "width": 0,
  482. "height": 0
  483. },
  484. "_anchorPoint": {
  485. "__type__": "cc.Vec2",
  486. "x": 0.5,
  487. "y": 0.5
  488. },
  489. "_quat": {
  490. "__type__": "cc.Quat",
  491. "x": 0,
  492. "y": 0,
  493. "z": 0,
  494. "w": 1
  495. },
  496. "_skewX": 0,
  497. "_skewY": 0,
  498. "groupIndex": 0,
  499. "_id": "",
  500. "_trs": {
  501. "__type__": "TypedArray",
  502. "ctor": "Float64Array",
  503. "array": [
  504. -139,
  505. 694,
  506. 0,
  507. 0,
  508. 0,
  509. 0,
  510. 1,
  511. 1,
  512. 1,
  513. 1
  514. ]
  515. }
  516. },
  517. {
  518. "__type__": "cc.Node",
  519. "_name": "TitleBg",
  520. "_objFlags": 0,
  521. "_parent": {
  522. "__id__": 12
  523. },
  524. "_children": [],
  525. "_active": true,
  526. "_level": 0,
  527. "_components": [
  528. {
  529. "__id__": 14
  530. }
  531. ],
  532. "_prefab": {
  533. "__id__": 15
  534. },
  535. "_opacity": 255,
  536. "_color": {
  537. "__type__": "cc.Color",
  538. "r": 255,
  539. "g": 255,
  540. "b": 255,
  541. "a": 255
  542. },
  543. "_contentSize": {
  544. "__type__": "cc.Size",
  545. "width": 211.9,
  546. "height": 82.3
  547. },
  548. "_anchorPoint": {
  549. "__type__": "cc.Vec2",
  550. "x": 0,
  551. "y": 0.5
  552. },
  553. "_quat": {
  554. "__type__": "cc.Quat",
  555. "x": 0,
  556. "y": 0,
  557. "z": 0,
  558. "w": 1
  559. },
  560. "_skewX": 0,
  561. "_skewY": 0,
  562. "groupIndex": 0,
  563. "_id": "",
  564. "_trs": {
  565. "__type__": "TypedArray",
  566. "ctor": "Float64Array",
  567. "array": [
  568. 0,
  569. 1.6,
  570. 0,
  571. 0,
  572. 0,
  573. 0,
  574. 1,
  575. 1,
  576. 1,
  577. 1
  578. ]
  579. }
  580. },
  581. {
  582. "__type__": "cc.Sprite",
  583. "_name": "",
  584. "_objFlags": 0,
  585. "node": {
  586. "__id__": 13
  587. },
  588. "_enabled": true,
  589. "_spriteFrame": {
  590. "__uuid__": "5ce782dd-a472-415b-ba6d-dbb6436e93c9"
  591. },
  592. "_type": 1,
  593. "_sizeMode": 0,
  594. "_fillType": 0,
  595. "_fillCenter": {
  596. "__type__": "cc.Vec2",
  597. "x": 0,
  598. "y": 0
  599. },
  600. "_fillStart": 0,
  601. "_fillRange": 0,
  602. "_isTrimmedMode": true,
  603. "_state": 0,
  604. "_atlas": {
  605. "__uuid__": "eaa6c9f5-9685-45dc-94b4-02b40ba68ee0"
  606. },
  607. "_srcBlendFactor": 770,
  608. "_dstBlendFactor": 771,
  609. "_id": ""
  610. },
  611. {
  612. "__type__": "cc.PrefabInfo",
  613. "root": {
  614. "__id__": 1
  615. },
  616. "asset": {
  617. "__uuid__": "25002cae-a097-461a-85ac-41e9878c22ff"
  618. },
  619. "fileId": "3dxJtmapFKyaZ89KPVTFxj",
  620. "sync": false
  621. },
  622. {
  623. "__type__": "cc.Node",
  624. "_name": "New Label",
  625. "_objFlags": 0,
  626. "_parent": {
  627. "__id__": 12
  628. },
  629. "_children": [],
  630. "_active": true,
  631. "_level": 1,
  632. "_components": [
  633. {
  634. "__id__": 17
  635. }
  636. ],
  637. "_prefab": {
  638. "__id__": 18
  639. },
  640. "_opacity": 255,
  641. "_color": {
  642. "__type__": "cc.Color",
  643. "r": 255,
  644. "g": 255,
  645. "b": 255,
  646. "a": 255
  647. },
  648. "_contentSize": {
  649. "__type__": "cc.Size",
  650. "width": 80,
  651. "height": 40
  652. },
  653. "_anchorPoint": {
  654. "__type__": "cc.Vec2",
  655. "x": 0.5,
  656. "y": 0.5
  657. },
  658. "_quat": {
  659. "__type__": "cc.Quat",
  660. "x": 0,
  661. "y": 0,
  662. "z": 0,
  663. "w": 1
  664. },
  665. "_skewX": 0,
  666. "_skewY": 0,
  667. "groupIndex": 0,
  668. "_id": "",
  669. "_trs": {
  670. "__type__": "TypedArray",
  671. "ctor": "Float64Array",
  672. "array": [
  673. 82.7,
  674. 0,
  675. 0,
  676. 0,
  677. 0,
  678. 0,
  679. 1,
  680. 1,
  681. 1,
  682. 1
  683. ]
  684. }
  685. },
  686. {
  687. "__type__": "cc.Label",
  688. "_name": "",
  689. "_objFlags": 0,
  690. "node": {
  691. "__id__": 16
  692. },
  693. "_enabled": true,
  694. "_useOriginalSize": false,
  695. "_string": "精品",
  696. "_N$string": "精品",
  697. "_fontSize": 40,
  698. "_lineHeight": 40,
  699. "_enableWrapText": true,
  700. "_N$file": null,
  701. "_isSystemFontUsed": true,
  702. "_spacingX": 0,
  703. "_batchAsBitmap": false,
  704. "_N$horizontalAlign": 1,
  705. "_N$verticalAlign": 1,
  706. "_N$fontFamily": "Arial",
  707. "_N$overflow": 0,
  708. "_N$cacheMode": 0,
  709. "_id": ""
  710. },
  711. {
  712. "__type__": "cc.PrefabInfo",
  713. "root": {
  714. "__id__": 1
  715. },
  716. "asset": {
  717. "__uuid__": "25002cae-a097-461a-85ac-41e9878c22ff"
  718. },
  719. "fileId": "67TBNisQxE6LbYEKBLy/o1",
  720. "sync": false
  721. },
  722. {
  723. "__type__": "cc.Widget",
  724. "_name": "",
  725. "_objFlags": 0,
  726. "node": {
  727. "__id__": 12
  728. },
  729. "_enabled": true,
  730. "alignMode": 1,
  731. "_target": null,
  732. "_alignFlags": 9,
  733. "_left": -0.5,
  734. "_right": 0,
  735. "_top": 13,
  736. "_bottom": 0,
  737. "_verticalCenter": 0,
  738. "_horizontalCenter": 0,
  739. "_isAbsLeft": true,
  740. "_isAbsRight": true,
  741. "_isAbsTop": true,
  742. "_isAbsBottom": true,
  743. "_isAbsHorizontalCenter": true,
  744. "_isAbsVerticalCenter": true,
  745. "_originalWidth": 0,
  746. "_originalHeight": 0,
  747. "_id": ""
  748. },
  749. {
  750. "__type__": "cc.PrefabInfo",
  751. "root": {
  752. "__id__": 1
  753. },
  754. "asset": {
  755. "__uuid__": "25002cae-a097-461a-85ac-41e9878c22ff"
  756. },
  757. "fileId": "41NWDjjOxL4Lm1Ovrd18Cv",
  758. "sync": false
  759. },
  760. {
  761. "__type__": "cc.Node",
  762. "_name": "Btn_Close",
  763. "_objFlags": 0,
  764. "_parent": {
  765. "__id__": 7
  766. },
  767. "_children": [
  768. {
  769. "__id__": 22
  770. }
  771. ],
  772. "_active": true,
  773. "_level": 0,
  774. "_components": [
  775. {
  776. "__id__": 26
  777. },
  778. {
  779. "__id__": 28
  780. }
  781. ],
  782. "_prefab": {
  783. "__id__": 29
  784. },
  785. "_opacity": 255,
  786. "_color": {
  787. "__type__": "cc.Color",
  788. "r": 255,
  789. "g": 255,
  790. "b": 255,
  791. "a": 255
  792. },
  793. "_contentSize": {
  794. "__type__": "cc.Size",
  795. "width": 35,
  796. "height": 35
  797. },
  798. "_anchorPoint": {
  799. "__type__": "cc.Vec2",
  800. "x": 0.5,
  801. "y": 0.5
  802. },
  803. "_quat": {
  804. "__type__": "cc.Quat",
  805. "x": 0,
  806. "y": 0,
  807. "z": 0,
  808. "w": 1
  809. },
  810. "_skewX": 0,
  811. "_skewY": 0,
  812. "groupIndex": 0,
  813. "_id": "",
  814. "_trs": {
  815. "__type__": "TypedArray",
  816. "ctor": "Float64Array",
  817. "array": [
  818. 93,
  819. 668,
  820. 0,
  821. 0,
  822. 0,
  823. 0,
  824. 1,
  825. 1,
  826. 1,
  827. 1
  828. ]
  829. }
  830. },
  831. {
  832. "__type__": "cc.Node",
  833. "_name": "Background",
  834. "_objFlags": 0,
  835. "_parent": {
  836. "__id__": 21
  837. },
  838. "_children": [],
  839. "_active": true,
  840. "_level": 0,
  841. "_components": [
  842. {
  843. "__id__": 23
  844. },
  845. {
  846. "__id__": 24
  847. }
  848. ],
  849. "_prefab": {
  850. "__id__": 25
  851. },
  852. "_opacity": 255,
  853. "_color": {
  854. "__type__": "cc.Color",
  855. "r": 230,
  856. "g": 230,
  857. "b": 230,
  858. "a": 255
  859. },
  860. "_contentSize": {
  861. "__type__": "cc.Size",
  862. "width": 35,
  863. "height": 35
  864. },
  865. "_anchorPoint": {
  866. "__type__": "cc.Vec2",
  867. "x": 0.5,
  868. "y": 0.5
  869. },
  870. "_quat": {
  871. "__type__": "cc.Quat",
  872. "x": 0,
  873. "y": 0,
  874. "z": 0,
  875. "w": 1
  876. },
  877. "_skewX": 0,
  878. "_skewY": 0,
  879. "groupIndex": 0,
  880. "_id": "",
  881. "_trs": {
  882. "__type__": "TypedArray",
  883. "ctor": "Float64Array",
  884. "array": [
  885. 0,
  886. 0,
  887. 0,
  888. 0,
  889. 0,
  890. 0,
  891. 1,
  892. 1,
  893. 1,
  894. 1
  895. ]
  896. }
  897. },
  898. {
  899. "__type__": "cc.Sprite",
  900. "_name": "",
  901. "_objFlags": 0,
  902. "node": {
  903. "__id__": 22
  904. },
  905. "_enabled": true,
  906. "_spriteFrame": {
  907. "__uuid__": "d35b5a08-a1de-4bd2-aa67-50ee05431679"
  908. },
  909. "_type": 1,
  910. "_sizeMode": 0,
  911. "_fillType": 0,
  912. "_fillCenter": {
  913. "__type__": "cc.Vec2",
  914. "x": 0,
  915. "y": 0
  916. },
  917. "_fillStart": 0,
  918. "_fillRange": 0,
  919. "_isTrimmedMode": true,
  920. "_state": 0,
  921. "_atlas": {
  922. "__uuid__": "eaa6c9f5-9685-45dc-94b4-02b40ba68ee0"
  923. },
  924. "_srcBlendFactor": 770,
  925. "_dstBlendFactor": 771,
  926. "_id": ""
  927. },
  928. {
  929. "__type__": "cc.Widget",
  930. "_name": "",
  931. "_objFlags": 0,
  932. "node": {
  933. "__id__": 22
  934. },
  935. "_enabled": true,
  936. "alignMode": 0,
  937. "_target": null,
  938. "_alignFlags": 45,
  939. "_left": 0,
  940. "_right": 0,
  941. "_top": 0,
  942. "_bottom": 0,
  943. "_verticalCenter": 0,
  944. "_horizontalCenter": 0,
  945. "_isAbsLeft": true,
  946. "_isAbsRight": true,
  947. "_isAbsTop": true,
  948. "_isAbsBottom": true,
  949. "_isAbsHorizontalCenter": true,
  950. "_isAbsVerticalCenter": true,
  951. "_originalWidth": 100,
  952. "_originalHeight": 40,
  953. "_id": ""
  954. },
  955. {
  956. "__type__": "cc.PrefabInfo",
  957. "root": {
  958. "__id__": 1
  959. },
  960. "asset": {
  961. "__uuid__": "25002cae-a097-461a-85ac-41e9878c22ff"
  962. },
  963. "fileId": "34GgnfIYZKNZoZFY6w7u79",
  964. "sync": false
  965. },
  966. {
  967. "__type__": "cc.Button",
  968. "_name": "",
  969. "_objFlags": 0,
  970. "node": {
  971. "__id__": 21
  972. },
  973. "_enabled": true,
  974. "duration": 0.1,
  975. "zoomScale": 1.2,
  976. "clickEvents": [
  977. {
  978. "__id__": 27
  979. }
  980. ],
  981. "_N$interactable": true,
  982. "_N$enableAutoGrayEffect": false,
  983. "_N$transition": 3,
  984. "transition": 3,
  985. "_N$normalColor": {
  986. "__type__": "cc.Color",
  987. "r": 230,
  988. "g": 230,
  989. "b": 230,
  990. "a": 255
  991. },
  992. "_N$pressedColor": {
  993. "__type__": "cc.Color",
  994. "r": 200,
  995. "g": 200,
  996. "b": 200,
  997. "a": 255
  998. },
  999. "pressedColor": {
  1000. "__type__": "cc.Color",
  1001. "r": 200,
  1002. "g": 200,
  1003. "b": 200,
  1004. "a": 255
  1005. },
  1006. "_N$hoverColor": {
  1007. "__type__": "cc.Color",
  1008. "r": 255,
  1009. "g": 255,
  1010. "b": 255,
  1011. "a": 255
  1012. },
  1013. "hoverColor": {
  1014. "__type__": "cc.Color",
  1015. "r": 255,
  1016. "g": 255,
  1017. "b": 255,
  1018. "a": 255
  1019. },
  1020. "_N$disabledColor": {
  1021. "__type__": "cc.Color",
  1022. "r": 120,
  1023. "g": 120,
  1024. "b": 120,
  1025. "a": 200
  1026. },
  1027. "_N$normalSprite": {
  1028. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  1029. },
  1030. "_N$pressedSprite": {
  1031. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  1032. },
  1033. "pressedSprite": {
  1034. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  1035. },
  1036. "_N$hoverSprite": {
  1037. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  1038. },
  1039. "hoverSprite": {
  1040. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  1041. },
  1042. "_N$disabledSprite": {
  1043. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  1044. },
  1045. "_N$target": {
  1046. "__id__": 22
  1047. },
  1048. "_id": ""
  1049. },
  1050. {
  1051. "__type__": "cc.ClickEvent",
  1052. "target": {
  1053. "__id__": 1
  1054. },
  1055. "component": "",
  1056. "_componentId": "92ac1akrqlDIJvoROkqJAWr",
  1057. "handler": "onCloseBtnHandler",
  1058. "customEventData": ""
  1059. },
  1060. {
  1061. "__type__": "cc.Widget",
  1062. "_name": "",
  1063. "_objFlags": 0,
  1064. "node": {
  1065. "__id__": 21
  1066. },
  1067. "_enabled": true,
  1068. "alignMode": 1,
  1069. "_target": null,
  1070. "_alignFlags": 33,
  1071. "_left": 0,
  1072. "_right": 28,
  1073. "_top": 21.499999999999943,
  1074. "_bottom": 0,
  1075. "_verticalCenter": 0,
  1076. "_horizontalCenter": 0,
  1077. "_isAbsLeft": true,
  1078. "_isAbsRight": true,
  1079. "_isAbsTop": true,
  1080. "_isAbsBottom": true,
  1081. "_isAbsHorizontalCenter": true,
  1082. "_isAbsVerticalCenter": true,
  1083. "_originalWidth": 0,
  1084. "_originalHeight": 0,
  1085. "_id": ""
  1086. },
  1087. {
  1088. "__type__": "cc.PrefabInfo",
  1089. "root": {
  1090. "__id__": 1
  1091. },
  1092. "asset": {
  1093. "__uuid__": "25002cae-a097-461a-85ac-41e9878c22ff"
  1094. },
  1095. "fileId": "e4WrAUO8FLNag1G+Mo23mE",
  1096. "sync": false
  1097. },
  1098. {
  1099. "__type__": "cc.Node",
  1100. "_name": "Btn_CloseSide",
  1101. "_objFlags": 0,
  1102. "_parent": {
  1103. "__id__": 7
  1104. },
  1105. "_children": [
  1106. {
  1107. "__id__": 31
  1108. }
  1109. ],
  1110. "_active": true,
  1111. "_level": 0,
  1112. "_components": [
  1113. {
  1114. "__id__": 35
  1115. },
  1116. {
  1117. "__id__": 37
  1118. }
  1119. ],
  1120. "_prefab": {
  1121. "__id__": 38
  1122. },
  1123. "_opacity": 255,
  1124. "_color": {
  1125. "__type__": "cc.Color",
  1126. "r": 255,
  1127. "g": 255,
  1128. "b": 255,
  1129. "a": 255
  1130. },
  1131. "_contentSize": {
  1132. "__type__": "cc.Size",
  1133. "width": 50,
  1134. "height": 50
  1135. },
  1136. "_anchorPoint": {
  1137. "__type__": "cc.Vec2",
  1138. "x": 0.5,
  1139. "y": 0.5
  1140. },
  1141. "_quat": {
  1142. "__type__": "cc.Quat",
  1143. "x": 0,
  1144. "y": 0,
  1145. "z": 0,
  1146. "w": 1
  1147. },
  1148. "_skewX": 0,
  1149. "_skewY": 0,
  1150. "groupIndex": 0,
  1151. "_id": "",
  1152. "_trs": {
  1153. "__type__": "TypedArray",
  1154. "ctor": "Float64Array",
  1155. "array": [
  1156. 27.49799999999999,
  1157. 496.1,
  1158. 0,
  1159. 0,
  1160. 0,
  1161. 0,
  1162. 1,
  1163. 1,
  1164. 1,
  1165. 1
  1166. ]
  1167. }
  1168. },
  1169. {
  1170. "__type__": "cc.Node",
  1171. "_name": "Background",
  1172. "_objFlags": 0,
  1173. "_parent": {
  1174. "__id__": 30
  1175. },
  1176. "_children": [],
  1177. "_active": true,
  1178. "_level": 0,
  1179. "_components": [
  1180. {
  1181. "__id__": 32
  1182. },
  1183. {
  1184. "__id__": 33
  1185. }
  1186. ],
  1187. "_prefab": {
  1188. "__id__": 34
  1189. },
  1190. "_opacity": 255,
  1191. "_color": {
  1192. "__type__": "cc.Color",
  1193. "r": 230,
  1194. "g": 230,
  1195. "b": 230,
  1196. "a": 255
  1197. },
  1198. "_contentSize": {
  1199. "__type__": "cc.Size",
  1200. "width": 50,
  1201. "height": 50
  1202. },
  1203. "_anchorPoint": {
  1204. "__type__": "cc.Vec2",
  1205. "x": 0.5,
  1206. "y": 0.5
  1207. },
  1208. "_quat": {
  1209. "__type__": "cc.Quat",
  1210. "x": 0,
  1211. "y": 0,
  1212. "z": 0,
  1213. "w": 1
  1214. },
  1215. "_skewX": 0,
  1216. "_skewY": 0,
  1217. "groupIndex": 0,
  1218. "_id": "",
  1219. "_trs": {
  1220. "__type__": "TypedArray",
  1221. "ctor": "Float64Array",
  1222. "array": [
  1223. 0,
  1224. 0,
  1225. 0,
  1226. 0,
  1227. 0,
  1228. 0,
  1229. 1,
  1230. 1,
  1231. 1,
  1232. 1
  1233. ]
  1234. }
  1235. },
  1236. {
  1237. "__type__": "cc.Sprite",
  1238. "_name": "",
  1239. "_objFlags": 0,
  1240. "node": {
  1241. "__id__": 31
  1242. },
  1243. "_enabled": true,
  1244. "_spriteFrame": null,
  1245. "_type": 1,
  1246. "_sizeMode": 0,
  1247. "_fillType": 0,
  1248. "_fillCenter": {
  1249. "__type__": "cc.Vec2",
  1250. "x": 0,
  1251. "y": 0
  1252. },
  1253. "_fillStart": 0,
  1254. "_fillRange": 0,
  1255. "_isTrimmedMode": true,
  1256. "_state": 0,
  1257. "_atlas": null,
  1258. "_srcBlendFactor": 770,
  1259. "_dstBlendFactor": 771,
  1260. "_id": ""
  1261. },
  1262. {
  1263. "__type__": "cc.Widget",
  1264. "_name": "",
  1265. "_objFlags": 0,
  1266. "node": {
  1267. "__id__": 31
  1268. },
  1269. "_enabled": true,
  1270. "alignMode": 0,
  1271. "_target": null,
  1272. "_alignFlags": 45,
  1273. "_left": 0,
  1274. "_right": 0,
  1275. "_top": 0,
  1276. "_bottom": 0,
  1277. "_verticalCenter": 0,
  1278. "_horizontalCenter": 0,
  1279. "_isAbsLeft": true,
  1280. "_isAbsRight": true,
  1281. "_isAbsTop": true,
  1282. "_isAbsBottom": true,
  1283. "_isAbsHorizontalCenter": true,
  1284. "_isAbsVerticalCenter": true,
  1285. "_originalWidth": 100,
  1286. "_originalHeight": 40,
  1287. "_id": ""
  1288. },
  1289. {
  1290. "__type__": "cc.PrefabInfo",
  1291. "root": {
  1292. "__id__": 1
  1293. },
  1294. "asset": {
  1295. "__uuid__": "25002cae-a097-461a-85ac-41e9878c22ff"
  1296. },
  1297. "fileId": "91PnH8l5FDUJTevwfOUQl/",
  1298. "sync": false
  1299. },
  1300. {
  1301. "__type__": "cc.Button",
  1302. "_name": "",
  1303. "_objFlags": 0,
  1304. "node": {
  1305. "__id__": 30
  1306. },
  1307. "_enabled": true,
  1308. "duration": 0.1,
  1309. "zoomScale": 1.2,
  1310. "clickEvents": [
  1311. {
  1312. "__id__": 36
  1313. }
  1314. ],
  1315. "_N$interactable": true,
  1316. "_N$enableAutoGrayEffect": false,
  1317. "_N$transition": 3,
  1318. "transition": 3,
  1319. "_N$normalColor": {
  1320. "__type__": "cc.Color",
  1321. "r": 230,
  1322. "g": 230,
  1323. "b": 230,
  1324. "a": 255
  1325. },
  1326. "_N$pressedColor": {
  1327. "__type__": "cc.Color",
  1328. "r": 200,
  1329. "g": 200,
  1330. "b": 200,
  1331. "a": 255
  1332. },
  1333. "pressedColor": {
  1334. "__type__": "cc.Color",
  1335. "r": 200,
  1336. "g": 200,
  1337. "b": 200,
  1338. "a": 255
  1339. },
  1340. "_N$hoverColor": {
  1341. "__type__": "cc.Color",
  1342. "r": 255,
  1343. "g": 255,
  1344. "b": 255,
  1345. "a": 255
  1346. },
  1347. "hoverColor": {
  1348. "__type__": "cc.Color",
  1349. "r": 255,
  1350. "g": 255,
  1351. "b": 255,
  1352. "a": 255
  1353. },
  1354. "_N$disabledColor": {
  1355. "__type__": "cc.Color",
  1356. "r": 120,
  1357. "g": 120,
  1358. "b": 120,
  1359. "a": 200
  1360. },
  1361. "_N$normalSprite": {
  1362. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  1363. },
  1364. "_N$pressedSprite": {
  1365. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  1366. },
  1367. "pressedSprite": {
  1368. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  1369. },
  1370. "_N$hoverSprite": {
  1371. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  1372. },
  1373. "hoverSprite": {
  1374. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  1375. },
  1376. "_N$disabledSprite": {
  1377. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  1378. },
  1379. "_N$target": {
  1380. "__id__": 31
  1381. },
  1382. "_id": ""
  1383. },
  1384. {
  1385. "__type__": "cc.ClickEvent",
  1386. "target": {
  1387. "__id__": 1
  1388. },
  1389. "component": "",
  1390. "_componentId": "92ac1akrqlDIJvoROkqJAWr",
  1391. "handler": "onCloseBtnHandler",
  1392. "customEventData": ""
  1393. },
  1394. {
  1395. "__type__": "cc.Widget",
  1396. "_name": "",
  1397. "_objFlags": 0,
  1398. "node": {
  1399. "__id__": 30
  1400. },
  1401. "_enabled": true,
  1402. "alignMode": 1,
  1403. "_target": null,
  1404. "_alignFlags": 33,
  1405. "_left": 0,
  1406. "_right": 86.00200000000001,
  1407. "_top": 185.89999999999998,
  1408. "_bottom": 0,
  1409. "_verticalCenter": 0,
  1410. "_horizontalCenter": 0,
  1411. "_isAbsLeft": true,
  1412. "_isAbsRight": true,
  1413. "_isAbsTop": true,
  1414. "_isAbsBottom": true,
  1415. "_isAbsHorizontalCenter": true,
  1416. "_isAbsVerticalCenter": true,
  1417. "_originalWidth": 0,
  1418. "_originalHeight": 0,
  1419. "_id": ""
  1420. },
  1421. {
  1422. "__type__": "cc.PrefabInfo",
  1423. "root": {
  1424. "__id__": 1
  1425. },
  1426. "asset": {
  1427. "__uuid__": "25002cae-a097-461a-85ac-41e9878c22ff"
  1428. },
  1429. "fileId": "91ESyhM+pGrKpXW8inlJO+",
  1430. "sync": false
  1431. },
  1432. {
  1433. "__type__": "cc.Node",
  1434. "_name": "GameList",
  1435. "_objFlags": 0,
  1436. "_parent": {
  1437. "__id__": 7
  1438. },
  1439. "_children": [
  1440. {
  1441. "__id__": 40
  1442. }
  1443. ],
  1444. "_active": true,
  1445. "_level": 1,
  1446. "_components": [
  1447. {
  1448. "__id__": 68
  1449. },
  1450. {
  1451. "__id__": 69
  1452. },
  1453. {
  1454. "__id__": 70
  1455. }
  1456. ],
  1457. "_prefab": {
  1458. "__id__": 73
  1459. },
  1460. "_opacity": 255,
  1461. "_color": {
  1462. "__type__": "cc.Color",
  1463. "r": 255,
  1464. "g": 255,
  1465. "b": 255,
  1466. "a": 255
  1467. },
  1468. "_contentSize": {
  1469. "__type__": "cc.Size",
  1470. "width": 259,
  1471. "height": 1310.3
  1472. },
  1473. "_anchorPoint": {
  1474. "__type__": "cc.Vec2",
  1475. "x": 0.5,
  1476. "y": 0.5
  1477. },
  1478. "_quat": {
  1479. "__type__": "cc.Quat",
  1480. "x": 0,
  1481. "y": 0,
  1482. "z": 0,
  1483. "w": 1
  1484. },
  1485. "_skewX": 0,
  1486. "_skewY": 0,
  1487. "groupIndex": 0,
  1488. "_id": "",
  1489. "_trs": {
  1490. "__type__": "TypedArray",
  1491. "ctor": "Float64Array",
  1492. "array": [
  1493. -6,
  1494. -9.7,
  1495. 0,
  1496. 0,
  1497. 0,
  1498. 0,
  1499. 1,
  1500. 1,
  1501. 1,
  1502. 1
  1503. ]
  1504. }
  1505. },
  1506. {
  1507. "__type__": "cc.Node",
  1508. "_name": "view",
  1509. "_objFlags": 0,
  1510. "_parent": {
  1511. "__id__": 39
  1512. },
  1513. "_children": [
  1514. {
  1515. "__id__": 41
  1516. }
  1517. ],
  1518. "_active": true,
  1519. "_level": 0,
  1520. "_components": [
  1521. {
  1522. "__id__": 66
  1523. }
  1524. ],
  1525. "_prefab": {
  1526. "__id__": 67
  1527. },
  1528. "_opacity": 255,
  1529. "_color": {
  1530. "__type__": "cc.Color",
  1531. "r": 255,
  1532. "g": 255,
  1533. "b": 255,
  1534. "a": 255
  1535. },
  1536. "_contentSize": {
  1537. "__type__": "cc.Size",
  1538. "width": 259,
  1539. "height": 1310
  1540. },
  1541. "_anchorPoint": {
  1542. "__type__": "cc.Vec2",
  1543. "x": 0.5,
  1544. "y": 0.5
  1545. },
  1546. "_quat": {
  1547. "__type__": "cc.Quat",
  1548. "x": 0,
  1549. "y": 0,
  1550. "z": 0,
  1551. "w": 1
  1552. },
  1553. "_skewX": 0,
  1554. "_skewY": 0,
  1555. "groupIndex": 0,
  1556. "_id": "",
  1557. "_trs": {
  1558. "__type__": "TypedArray",
  1559. "ctor": "Float64Array",
  1560. "array": [
  1561. 0,
  1562. 0,
  1563. 0,
  1564. 0,
  1565. 0,
  1566. 0,
  1567. 1,
  1568. 1,
  1569. 1,
  1570. 1
  1571. ]
  1572. }
  1573. },
  1574. {
  1575. "__type__": "cc.Node",
  1576. "_name": "content",
  1577. "_objFlags": 0,
  1578. "_parent": {
  1579. "__id__": 40
  1580. },
  1581. "_children": [
  1582. {
  1583. "__id__": 42
  1584. }
  1585. ],
  1586. "_active": true,
  1587. "_level": 0,
  1588. "_components": [
  1589. {
  1590. "__id__": 64
  1591. }
  1592. ],
  1593. "_prefab": {
  1594. "__id__": 65
  1595. },
  1596. "_opacity": 255,
  1597. "_color": {
  1598. "__type__": "cc.Color",
  1599. "r": 255,
  1600. "g": 255,
  1601. "b": 255,
  1602. "a": 255
  1603. },
  1604. "_contentSize": {
  1605. "__type__": "cc.Size",
  1606. "width": 259,
  1607. "height": 262.2
  1608. },
  1609. "_anchorPoint": {
  1610. "__type__": "cc.Vec2",
  1611. "x": 0.5,
  1612. "y": 1
  1613. },
  1614. "_quat": {
  1615. "__type__": "cc.Quat",
  1616. "x": 0,
  1617. "y": 0,
  1618. "z": 0,
  1619. "w": 1
  1620. },
  1621. "_skewX": 0,
  1622. "_skewY": 0,
  1623. "groupIndex": 0,
  1624. "_id": "",
  1625. "_trs": {
  1626. "__type__": "TypedArray",
  1627. "ctor": "Float64Array",
  1628. "array": [
  1629. 0,
  1630. 655.6,
  1631. 0,
  1632. 0,
  1633. 0,
  1634. 0,
  1635. 1,
  1636. 1,
  1637. 1,
  1638. 1
  1639. ]
  1640. }
  1641. },
  1642. {
  1643. "__type__": "cc.Node",
  1644. "_name": "GameItem",
  1645. "_objFlags": 0,
  1646. "_parent": {
  1647. "__id__": 41
  1648. },
  1649. "_children": [
  1650. {
  1651. "__id__": 43
  1652. },
  1653. {
  1654. "__id__": 55
  1655. },
  1656. {
  1657. "__id__": 58
  1658. }
  1659. ],
  1660. "_active": true,
  1661. "_level": 1,
  1662. "_components": [
  1663. {
  1664. "__id__": 61
  1665. },
  1666. {
  1667. "__id__": 62
  1668. }
  1669. ],
  1670. "_prefab": {
  1671. "__id__": 63
  1672. },
  1673. "_opacity": 255,
  1674. "_color": {
  1675. "__type__": "cc.Color",
  1676. "r": 255,
  1677. "g": 155,
  1678. "b": 155,
  1679. "a": 255
  1680. },
  1681. "_contentSize": {
  1682. "__type__": "cc.Size",
  1683. "width": 205.7,
  1684. "height": 249.2
  1685. },
  1686. "_anchorPoint": {
  1687. "__type__": "cc.Vec2",
  1688. "x": 0.5,
  1689. "y": 0.5
  1690. },
  1691. "_quat": {
  1692. "__type__": "cc.Quat",
  1693. "x": 0,
  1694. "y": 0,
  1695. "z": 0,
  1696. "w": 1
  1697. },
  1698. "_skewX": 0,
  1699. "_skewY": 0,
  1700. "groupIndex": 0,
  1701. "_id": "",
  1702. "_trs": {
  1703. "__type__": "TypedArray",
  1704. "ctor": "Float64Array",
  1705. "array": [
  1706. 1.5,
  1707. -137.6,
  1708. 0,
  1709. 0,
  1710. 0,
  1711. 0,
  1712. 1,
  1713. 1,
  1714. 1,
  1715. 1
  1716. ]
  1717. }
  1718. },
  1719. {
  1720. "__type__": "cc.Node",
  1721. "_name": "Mask",
  1722. "_objFlags": 0,
  1723. "_parent": {
  1724. "__id__": 42
  1725. },
  1726. "_children": [
  1727. {
  1728. "__id__": 44
  1729. },
  1730. {
  1731. "__id__": 47
  1732. },
  1733. {
  1734. "__id__": 50
  1735. }
  1736. ],
  1737. "_active": true,
  1738. "_level": 2,
  1739. "_components": [],
  1740. "_prefab": {
  1741. "__id__": 54
  1742. },
  1743. "_opacity": 255,
  1744. "_color": {
  1745. "__type__": "cc.Color",
  1746. "r": 255,
  1747. "g": 255,
  1748. "b": 255,
  1749. "a": 255
  1750. },
  1751. "_contentSize": {
  1752. "__type__": "cc.Size",
  1753. "width": 207,
  1754. "height": 206.3
  1755. },
  1756. "_anchorPoint": {
  1757. "__type__": "cc.Vec2",
  1758. "x": 0.5,
  1759. "y": 0.5
  1760. },
  1761. "_quat": {
  1762. "__type__": "cc.Quat",
  1763. "x": 0,
  1764. "y": 0,
  1765. "z": 0,
  1766. "w": 1
  1767. },
  1768. "_skewX": 0,
  1769. "_skewY": 0,
  1770. "groupIndex": 0,
  1771. "_id": "",
  1772. "_trs": {
  1773. "__type__": "TypedArray",
  1774. "ctor": "Float64Array",
  1775. "array": [
  1776. 0,
  1777. 22.8,
  1778. 0,
  1779. 0,
  1780. 0,
  1781. 0,
  1782. 1,
  1783. 1,
  1784. 1,
  1785. 1
  1786. ]
  1787. }
  1788. },
  1789. {
  1790. "__type__": "cc.Node",
  1791. "_name": "itemBg",
  1792. "_objFlags": 0,
  1793. "_parent": {
  1794. "__id__": 43
  1795. },
  1796. "_children": [],
  1797. "_active": true,
  1798. "_level": 3,
  1799. "_components": [
  1800. {
  1801. "__id__": 45
  1802. }
  1803. ],
  1804. "_prefab": {
  1805. "__id__": 46
  1806. },
  1807. "_opacity": 255,
  1808. "_color": {
  1809. "__type__": "cc.Color",
  1810. "r": 255,
  1811. "g": 255,
  1812. "b": 255,
  1813. "a": 255
  1814. },
  1815. "_contentSize": {
  1816. "__type__": "cc.Size",
  1817. "width": 206,
  1818. "height": 207.8
  1819. },
  1820. "_anchorPoint": {
  1821. "__type__": "cc.Vec2",
  1822. "x": 0.5,
  1823. "y": 0.5
  1824. },
  1825. "_quat": {
  1826. "__type__": "cc.Quat",
  1827. "x": 0,
  1828. "y": 0,
  1829. "z": 0,
  1830. "w": 1
  1831. },
  1832. "_skewX": 0,
  1833. "_skewY": 0,
  1834. "groupIndex": 0,
  1835. "_id": "",
  1836. "_trs": {
  1837. "__type__": "TypedArray",
  1838. "ctor": "Float64Array",
  1839. "array": [
  1840. 0.5,
  1841. -1.4,
  1842. 0,
  1843. 0,
  1844. 0,
  1845. 0,
  1846. 1,
  1847. 1,
  1848. 1,
  1849. 1
  1850. ]
  1851. }
  1852. },
  1853. {
  1854. "__type__": "cc.Sprite",
  1855. "_name": "",
  1856. "_objFlags": 0,
  1857. "node": {
  1858. "__id__": 44
  1859. },
  1860. "_enabled": true,
  1861. "_spriteFrame": {
  1862. "__uuid__": "c6c48f2b-5f42-4535-b724-34d63a5ddd50"
  1863. },
  1864. "_type": 0,
  1865. "_sizeMode": 0,
  1866. "_fillType": 0,
  1867. "_fillCenter": {
  1868. "__type__": "cc.Vec2",
  1869. "x": 0,
  1870. "y": 0
  1871. },
  1872. "_fillStart": 0,
  1873. "_fillRange": 0,
  1874. "_isTrimmedMode": true,
  1875. "_state": 0,
  1876. "_atlas": {
  1877. "__uuid__": "eaa6c9f5-9685-45dc-94b4-02b40ba68ee0"
  1878. },
  1879. "_srcBlendFactor": 770,
  1880. "_dstBlendFactor": 771,
  1881. "_id": ""
  1882. },
  1883. {
  1884. "__type__": "cc.PrefabInfo",
  1885. "root": {
  1886. "__id__": 1
  1887. },
  1888. "asset": {
  1889. "__uuid__": "25002cae-a097-461a-85ac-41e9878c22ff"
  1890. },
  1891. "fileId": "37SSo9czhBlogASDw6Xy6L",
  1892. "sync": false
  1893. },
  1894. {
  1895. "__type__": "cc.Node",
  1896. "_name": "Icon",
  1897. "_objFlags": 0,
  1898. "_parent": {
  1899. "__id__": 43
  1900. },
  1901. "_children": [],
  1902. "_active": true,
  1903. "_level": 3,
  1904. "_components": [
  1905. {
  1906. "__id__": 48
  1907. }
  1908. ],
  1909. "_prefab": {
  1910. "__id__": 49
  1911. },
  1912. "_opacity": 255,
  1913. "_color": {
  1914. "__type__": "cc.Color",
  1915. "r": 255,
  1916. "g": 255,
  1917. "b": 255,
  1918. "a": 255
  1919. },
  1920. "_contentSize": {
  1921. "__type__": "cc.Size",
  1922. "width": 179.9,
  1923. "height": 186.2
  1924. },
  1925. "_anchorPoint": {
  1926. "__type__": "cc.Vec2",
  1927. "x": 0.5,
  1928. "y": 0.5
  1929. },
  1930. "_quat": {
  1931. "__type__": "cc.Quat",
  1932. "x": 0,
  1933. "y": 0,
  1934. "z": 0,
  1935. "w": 1
  1936. },
  1937. "_skewX": 0,
  1938. "_skewY": 0,
  1939. "groupIndex": 0,
  1940. "_id": "",
  1941. "_trs": {
  1942. "__type__": "TypedArray",
  1943. "ctor": "Float64Array",
  1944. "array": [
  1945. -0.1,
  1946. 0,
  1947. 0,
  1948. 0,
  1949. 0,
  1950. 0,
  1951. 1,
  1952. 1,
  1953. 1,
  1954. 1
  1955. ]
  1956. }
  1957. },
  1958. {
  1959. "__type__": "cc.Sprite",
  1960. "_name": "",
  1961. "_objFlags": 0,
  1962. "node": {
  1963. "__id__": 47
  1964. },
  1965. "_enabled": true,
  1966. "_spriteFrame": {
  1967. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  1968. },
  1969. "_type": 0,
  1970. "_sizeMode": 0,
  1971. "_fillType": 0,
  1972. "_fillCenter": {
  1973. "__type__": "cc.Vec2",
  1974. "x": 0,
  1975. "y": 0
  1976. },
  1977. "_fillStart": 0,
  1978. "_fillRange": 0,
  1979. "_isTrimmedMode": true,
  1980. "_state": 0,
  1981. "_atlas": null,
  1982. "_srcBlendFactor": 770,
  1983. "_dstBlendFactor": 771,
  1984. "_id": ""
  1985. },
  1986. {
  1987. "__type__": "cc.PrefabInfo",
  1988. "root": {
  1989. "__id__": 1
  1990. },
  1991. "asset": {
  1992. "__uuid__": "25002cae-a097-461a-85ac-41e9878c22ff"
  1993. },
  1994. "fileId": "0eRUMQuwxMp6+fP9uKR6wK",
  1995. "sync": false
  1996. },
  1997. {
  1998. "__type__": "cc.Node",
  1999. "_name": "redpoint",
  2000. "_objFlags": 0,
  2001. "_parent": {
  2002. "__id__": 43
  2003. },
  2004. "_children": [],
  2005. "_active": true,
  2006. "_level": 3,
  2007. "_components": [
  2008. {
  2009. "__id__": 51
  2010. },
  2011. {
  2012. "__id__": 52
  2013. }
  2014. ],
  2015. "_prefab": {
  2016. "__id__": 53
  2017. },
  2018. "_opacity": 255,
  2019. "_color": {
  2020. "__type__": "cc.Color",
  2021. "r": 255,
  2022. "g": 255,
  2023. "b": 255,
  2024. "a": 255
  2025. },
  2026. "_contentSize": {
  2027. "__type__": "cc.Size",
  2028. "width": 28,
  2029. "height": 28
  2030. },
  2031. "_anchorPoint": {
  2032. "__type__": "cc.Vec2",
  2033. "x": 0.5,
  2034. "y": 0.5
  2035. },
  2036. "_quat": {
  2037. "__type__": "cc.Quat",
  2038. "x": 0,
  2039. "y": 0,
  2040. "z": 0,
  2041. "w": 1
  2042. },
  2043. "_skewX": 0,
  2044. "_skewY": 0,
  2045. "groupIndex": 0,
  2046. "_id": "",
  2047. "_trs": {
  2048. "__type__": "TypedArray",
  2049. "ctor": "Float64Array",
  2050. "array": [
  2051. -85.2,
  2052. 80.8,
  2053. 0,
  2054. 0,
  2055. 0,
  2056. 0,
  2057. 1,
  2058. 1,
  2059. 1,
  2060. 1
  2061. ]
  2062. }
  2063. },
  2064. {
  2065. "__type__": "cc.Sprite",
  2066. "_name": "",
  2067. "_objFlags": 0,
  2068. "node": {
  2069. "__id__": 50
  2070. },
  2071. "_enabled": true,
  2072. "_spriteFrame": {
  2073. "__uuid__": "35bedd17-5e47-4233-9e85-2a5e323208cb"
  2074. },
  2075. "_type": 0,
  2076. "_sizeMode": 1,
  2077. "_fillType": 0,
  2078. "_fillCenter": {
  2079. "__type__": "cc.Vec2",
  2080. "x": 0,
  2081. "y": 0
  2082. },
  2083. "_fillStart": 0,
  2084. "_fillRange": 0,
  2085. "_isTrimmedMode": true,
  2086. "_state": 0,
  2087. "_atlas": {
  2088. "__uuid__": "eaa6c9f5-9685-45dc-94b4-02b40ba68ee0"
  2089. },
  2090. "_srcBlendFactor": 770,
  2091. "_dstBlendFactor": 771,
  2092. "_id": ""
  2093. },
  2094. {
  2095. "__type__": "8ecccKnp/lLRYK/tCxltDQL",
  2096. "_name": "",
  2097. "_objFlags": 0,
  2098. "node": {
  2099. "__id__": 50
  2100. },
  2101. "_enabled": true,
  2102. "_id": ""
  2103. },
  2104. {
  2105. "__type__": "cc.PrefabInfo",
  2106. "root": {
  2107. "__id__": 1
  2108. },
  2109. "asset": {
  2110. "__uuid__": "25002cae-a097-461a-85ac-41e9878c22ff"
  2111. },
  2112. "fileId": "2dX2R9vOBHaLtO31S2qx+j",
  2113. "sync": false
  2114. },
  2115. {
  2116. "__type__": "cc.PrefabInfo",
  2117. "root": {
  2118. "__id__": 1
  2119. },
  2120. "asset": {
  2121. "__uuid__": "25002cae-a097-461a-85ac-41e9878c22ff"
  2122. },
  2123. "fileId": "c0NcaGMldKPrzdX9q6XuxE",
  2124. "sync": false
  2125. },
  2126. {
  2127. "__type__": "cc.Node",
  2128. "_name": "LabelShadow",
  2129. "_objFlags": 0,
  2130. "_parent": {
  2131. "__id__": 42
  2132. },
  2133. "_children": [],
  2134. "_active": false,
  2135. "_level": 2,
  2136. "_components": [
  2137. {
  2138. "__id__": 56
  2139. }
  2140. ],
  2141. "_prefab": {
  2142. "__id__": 57
  2143. },
  2144. "_opacity": 255,
  2145. "_color": {
  2146. "__type__": "cc.Color",
  2147. "r": 229,
  2148. "g": 212,
  2149. "b": 40,
  2150. "a": 255
  2151. },
  2152. "_contentSize": {
  2153. "__type__": "cc.Size",
  2154. "width": 88,
  2155. "height": 30
  2156. },
  2157. "_anchorPoint": {
  2158. "__type__": "cc.Vec2",
  2159. "x": 0.5,
  2160. "y": 0.5
  2161. },
  2162. "_quat": {
  2163. "__type__": "cc.Quat",
  2164. "x": 0,
  2165. "y": 0,
  2166. "z": 0,
  2167. "w": 1
  2168. },
  2169. "_skewX": 0,
  2170. "_skewY": 0,
  2171. "groupIndex": 0,
  2172. "_id": "",
  2173. "_trs": {
  2174. "__type__": "TypedArray",
  2175. "ctor": "Float64Array",
  2176. "array": [
  2177. 0.2,
  2178. -77.7,
  2179. 0,
  2180. 0,
  2181. 0,
  2182. 0,
  2183. 1,
  2184. 1,
  2185. 1,
  2186. 1
  2187. ]
  2188. }
  2189. },
  2190. {
  2191. "__type__": "cc.Label",
  2192. "_name": "",
  2193. "_objFlags": 0,
  2194. "node": {
  2195. "__id__": 55
  2196. },
  2197. "_enabled": true,
  2198. "_useOriginalSize": false,
  2199. "_string": "绝地求生",
  2200. "_N$string": "绝地求生",
  2201. "_fontSize": 22,
  2202. "_lineHeight": 30,
  2203. "_enableWrapText": true,
  2204. "_N$file": null,
  2205. "_isSystemFontUsed": true,
  2206. "_spacingX": 0,
  2207. "_batchAsBitmap": false,
  2208. "_N$horizontalAlign": 1,
  2209. "_N$verticalAlign": 1,
  2210. "_N$fontFamily": "Arial",
  2211. "_N$overflow": 0,
  2212. "_N$cacheMode": 0,
  2213. "_id": ""
  2214. },
  2215. {
  2216. "__type__": "cc.PrefabInfo",
  2217. "root": {
  2218. "__id__": 1
  2219. },
  2220. "asset": {
  2221. "__uuid__": "25002cae-a097-461a-85ac-41e9878c22ff"
  2222. },
  2223. "fileId": "47IMq3o9RJPpb+scc+AGfS",
  2224. "sync": false
  2225. },
  2226. {
  2227. "__type__": "cc.Node",
  2228. "_name": "Label",
  2229. "_objFlags": 0,
  2230. "_parent": {
  2231. "__id__": 42
  2232. },
  2233. "_children": [],
  2234. "_active": true,
  2235. "_level": 2,
  2236. "_components": [
  2237. {
  2238. "__id__": 59
  2239. }
  2240. ],
  2241. "_prefab": {
  2242. "__id__": 60
  2243. },
  2244. "_opacity": 255,
  2245. "_color": {
  2246. "__type__": "cc.Color",
  2247. "r": 0,
  2248. "g": 0,
  2249. "b": 0,
  2250. "a": 255
  2251. },
  2252. "_contentSize": {
  2253. "__type__": "cc.Size",
  2254. "width": 120,
  2255. "height": 35
  2256. },
  2257. "_anchorPoint": {
  2258. "__type__": "cc.Vec2",
  2259. "x": 0.5,
  2260. "y": 0.5
  2261. },
  2262. "_quat": {
  2263. "__type__": "cc.Quat",
  2264. "x": 0,
  2265. "y": 0,
  2266. "z": 0,
  2267. "w": 1
  2268. },
  2269. "_skewX": 0,
  2270. "_skewY": 0,
  2271. "groupIndex": 0,
  2272. "_id": "",
  2273. "_trs": {
  2274. "__type__": "TypedArray",
  2275. "ctor": "Float64Array",
  2276. "array": [
  2277. -0.4,
  2278. -106.8,
  2279. 0,
  2280. 0,
  2281. 0,
  2282. 0,
  2283. 1,
  2284. 1,
  2285. 1,
  2286. 1
  2287. ]
  2288. }
  2289. },
  2290. {
  2291. "__type__": "cc.Label",
  2292. "_name": "",
  2293. "_objFlags": 0,
  2294. "node": {
  2295. "__id__": 58
  2296. },
  2297. "_enabled": true,
  2298. "_useOriginalSize": false,
  2299. "_string": "绝地求生",
  2300. "_N$string": "绝地求生",
  2301. "_fontSize": 30,
  2302. "_lineHeight": 35,
  2303. "_enableWrapText": true,
  2304. "_N$file": null,
  2305. "_isSystemFontUsed": true,
  2306. "_spacingX": 0,
  2307. "_batchAsBitmap": false,
  2308. "_N$horizontalAlign": 1,
  2309. "_N$verticalAlign": 1,
  2310. "_N$fontFamily": "Arial",
  2311. "_N$overflow": 0,
  2312. "_N$cacheMode": 0,
  2313. "_id": ""
  2314. },
  2315. {
  2316. "__type__": "cc.PrefabInfo",
  2317. "root": {
  2318. "__id__": 1
  2319. },
  2320. "asset": {
  2321. "__uuid__": "25002cae-a097-461a-85ac-41e9878c22ff"
  2322. },
  2323. "fileId": "26Ia2J0uRB65R4p7ap2U1M",
  2324. "sync": false
  2325. },
  2326. {
  2327. "__type__": "cc.Sprite",
  2328. "_name": "",
  2329. "_objFlags": 0,
  2330. "node": {
  2331. "__id__": 42
  2332. },
  2333. "_enabled": false,
  2334. "_spriteFrame": {
  2335. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  2336. },
  2337. "_type": 0,
  2338. "_sizeMode": 0,
  2339. "_fillType": 0,
  2340. "_fillCenter": {
  2341. "__type__": "cc.Vec2",
  2342. "x": 0,
  2343. "y": 0
  2344. },
  2345. "_fillStart": 0,
  2346. "_fillRange": 0,
  2347. "_isTrimmedMode": true,
  2348. "_state": 0,
  2349. "_atlas": null,
  2350. "_srcBlendFactor": 770,
  2351. "_dstBlendFactor": 771,
  2352. "_id": ""
  2353. },
  2354. {
  2355. "__type__": "e2d27IwlQ5B5pmeL0p/D+5H",
  2356. "_name": "",
  2357. "_objFlags": 0,
  2358. "node": {
  2359. "__id__": 42
  2360. },
  2361. "_enabled": true,
  2362. "_id": ""
  2363. },
  2364. {
  2365. "__type__": "cc.PrefabInfo",
  2366. "root": {
  2367. "__id__": 1
  2368. },
  2369. "asset": {
  2370. "__uuid__": "25002cae-a097-461a-85ac-41e9878c22ff"
  2371. },
  2372. "fileId": "bf4kK5m01Kz4ylem5uW02f",
  2373. "sync": false
  2374. },
  2375. {
  2376. "__type__": "cc.Layout",
  2377. "_name": "",
  2378. "_objFlags": 0,
  2379. "node": {
  2380. "__id__": 41
  2381. },
  2382. "_enabled": true,
  2383. "_layoutSize": {
  2384. "__type__": "cc.Size",
  2385. "width": 259,
  2386. "height": 262.2
  2387. },
  2388. "_resize": 1,
  2389. "_N$layoutType": 2,
  2390. "_N$padding": 0,
  2391. "_N$cellSize": {
  2392. "__type__": "cc.Size",
  2393. "width": 40,
  2394. "height": 40
  2395. },
  2396. "_N$startAxis": 0,
  2397. "_N$paddingLeft": 0,
  2398. "_N$paddingRight": 0,
  2399. "_N$paddingTop": 13,
  2400. "_N$paddingBottom": 0,
  2401. "_N$spacingX": 0,
  2402. "_N$spacingY": 12,
  2403. "_N$verticalDirection": 1,
  2404. "_N$horizontalDirection": 0,
  2405. "_N$affectedByScale": false,
  2406. "_id": ""
  2407. },
  2408. {
  2409. "__type__": "cc.PrefabInfo",
  2410. "root": {
  2411. "__id__": 1
  2412. },
  2413. "asset": {
  2414. "__uuid__": "25002cae-a097-461a-85ac-41e9878c22ff"
  2415. },
  2416. "fileId": "f1wBocwI1PRY6Nm4jTl3dW",
  2417. "sync": false
  2418. },
  2419. {
  2420. "__type__": "cc.Mask",
  2421. "_name": "",
  2422. "_objFlags": 0,
  2423. "node": {
  2424. "__id__": 40
  2425. },
  2426. "_enabled": true,
  2427. "_spriteFrame": null,
  2428. "_type": 0,
  2429. "_segments": 64,
  2430. "_N$alphaThreshold": 0.1,
  2431. "_N$inverted": false,
  2432. "_id": ""
  2433. },
  2434. {
  2435. "__type__": "cc.PrefabInfo",
  2436. "root": {
  2437. "__id__": 1
  2438. },
  2439. "asset": {
  2440. "__uuid__": "25002cae-a097-461a-85ac-41e9878c22ff"
  2441. },
  2442. "fileId": "efFRnfg95O4Y3gW9esHahi",
  2443. "sync": false
  2444. },
  2445. {
  2446. "__type__": "cc.Sprite",
  2447. "_name": "",
  2448. "_objFlags": 0,
  2449. "node": {
  2450. "__id__": 39
  2451. },
  2452. "_enabled": true,
  2453. "_spriteFrame": {
  2454. "__uuid__": "9bbda31e-ad49-43c9-aaf2-f7d9896bac69"
  2455. },
  2456. "_type": 1,
  2457. "_sizeMode": 0,
  2458. "_fillType": 0,
  2459. "_fillCenter": {
  2460. "__type__": "cc.Vec2",
  2461. "x": 0,
  2462. "y": 0
  2463. },
  2464. "_fillStart": 0,
  2465. "_fillRange": 0,
  2466. "_isTrimmedMode": true,
  2467. "_state": 0,
  2468. "_atlas": null,
  2469. "_srcBlendFactor": 770,
  2470. "_dstBlendFactor": 771,
  2471. "_id": ""
  2472. },
  2473. {
  2474. "__type__": "cc.ScrollView",
  2475. "_name": "",
  2476. "_objFlags": 0,
  2477. "node": {
  2478. "__id__": 39
  2479. },
  2480. "_enabled": true,
  2481. "horizontal": false,
  2482. "vertical": true,
  2483. "inertia": false,
  2484. "brake": 0.75,
  2485. "elastic": true,
  2486. "bounceDuration": 0.23,
  2487. "scrollEvents": [],
  2488. "cancelInnerEvents": true,
  2489. "_N$content": {
  2490. "__id__": 41
  2491. },
  2492. "content": {
  2493. "__id__": 41
  2494. },
  2495. "_N$horizontalScrollBar": null,
  2496. "_N$verticalScrollBar": null,
  2497. "_id": ""
  2498. },
  2499. {
  2500. "__type__": "987bdrXWC5Lz6Y5yNsCVEwF",
  2501. "_name": "",
  2502. "_objFlags": 0,
  2503. "node": {
  2504. "__id__": 39
  2505. },
  2506. "_enabled": true,
  2507. "templateType": 1,
  2508. "tmpNode": {
  2509. "__id__": 42
  2510. },
  2511. "tmpPrefab": null,
  2512. "_slideMode": 1,
  2513. "pageDistance": 0.3,
  2514. "pageChangeEvent": {
  2515. "__id__": 71
  2516. },
  2517. "_virtual": false,
  2518. "cyclic": true,
  2519. "lackCenter": false,
  2520. "lackSlide": false,
  2521. "_updateRate": 0,
  2522. "frameByFrameRenderNum": 0,
  2523. "renderEvent": {
  2524. "__id__": 72
  2525. },
  2526. "selectedMode": 0,
  2527. "repeatEventSingle": false,
  2528. "selectedEvent": null,
  2529. "_id": ""
  2530. },
  2531. {
  2532. "__type__": "cc.ClickEvent",
  2533. "target": null,
  2534. "component": "",
  2535. "_componentId": "",
  2536. "handler": "",
  2537. "customEventData": ""
  2538. },
  2539. {
  2540. "__type__": "cc.ClickEvent",
  2541. "target": {
  2542. "__id__": 1
  2543. },
  2544. "component": "",
  2545. "_componentId": "92ac1akrqlDIJvoROkqJAWr",
  2546. "handler": "onListRender",
  2547. "customEventData": ""
  2548. },
  2549. {
  2550. "__type__": "cc.PrefabInfo",
  2551. "root": {
  2552. "__id__": 1
  2553. },
  2554. "asset": {
  2555. "__uuid__": "25002cae-a097-461a-85ac-41e9878c22ff"
  2556. },
  2557. "fileId": "2d3o+H8MpO15CDf0Zrgez4",
  2558. "sync": false
  2559. },
  2560. {
  2561. "__type__": "cc.Widget",
  2562. "_name": "",
  2563. "_objFlags": 0,
  2564. "node": {
  2565. "__id__": 7
  2566. },
  2567. "_enabled": true,
  2568. "alignMode": 0,
  2569. "_target": null,
  2570. "_alignFlags": 8,
  2571. "_left": -278.5,
  2572. "_right": 0,
  2573. "_top": 170,
  2574. "_bottom": 336,
  2575. "_verticalCenter": 0,
  2576. "_horizontalCenter": 0,
  2577. "_isAbsLeft": true,
  2578. "_isAbsRight": true,
  2579. "_isAbsTop": true,
  2580. "_isAbsBottom": true,
  2581. "_isAbsHorizontalCenter": true,
  2582. "_isAbsVerticalCenter": true,
  2583. "_originalWidth": 0,
  2584. "_originalHeight": 1414,
  2585. "_id": ""
  2586. },
  2587. {
  2588. "__type__": "cc.PrefabInfo",
  2589. "root": {
  2590. "__id__": 1
  2591. },
  2592. "asset": {
  2593. "__uuid__": "25002cae-a097-461a-85ac-41e9878c22ff"
  2594. },
  2595. "fileId": "73dWW5a+FOY5+dOXt1+0rj",
  2596. "sync": false
  2597. },
  2598. {
  2599. "__type__": "cc.Widget",
  2600. "_name": "",
  2601. "_objFlags": 0,
  2602. "node": {
  2603. "__id__": 1
  2604. },
  2605. "_enabled": true,
  2606. "alignMode": 1,
  2607. "_target": null,
  2608. "_alignFlags": 45,
  2609. "_left": 0,
  2610. "_right": 0,
  2611. "_top": 0,
  2612. "_bottom": 0,
  2613. "_verticalCenter": 0,
  2614. "_horizontalCenter": 0,
  2615. "_isAbsLeft": true,
  2616. "_isAbsRight": true,
  2617. "_isAbsTop": true,
  2618. "_isAbsBottom": true,
  2619. "_isAbsHorizontalCenter": true,
  2620. "_isAbsVerticalCenter": true,
  2621. "_originalWidth": 1080,
  2622. "_originalHeight": 1920,
  2623. "_id": ""
  2624. },
  2625. {
  2626. "__type__": "92ac1akrqlDIJvoROkqJAWr",
  2627. "_name": "",
  2628. "_objFlags": 0,
  2629. "node": {
  2630. "__id__": 1
  2631. },
  2632. "_enabled": true,
  2633. "_id": ""
  2634. },
  2635. {
  2636. "__type__": "cc.PrefabInfo",
  2637. "root": {
  2638. "__id__": 1
  2639. },
  2640. "asset": {
  2641. "__uuid__": "25002cae-a097-461a-85ac-41e9878c22ff"
  2642. },
  2643. "fileId": "5bepqZKdtM0IvZsc7GAvQY",
  2644. "sync": false
  2645. }
  2646. ]