RankPanel.prefab 35 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989
  1. [
  2. {
  3. "__type__": "cc.Prefab",
  4. "_name": "RankPanel",
  5. "_objFlags": 0,
  6. "__editorExtras__": {},
  7. "_native": "",
  8. "data": {
  9. "__id__": 1
  10. },
  11. "optimizationPolicy": 0,
  12. "persistent": false
  13. },
  14. {
  15. "__type__": "cc.Node",
  16. "_name": "RankPanel",
  17. "_objFlags": 0,
  18. "__editorExtras__": {},
  19. "_parent": null,
  20. "_children": [
  21. {
  22. "__id__": 2
  23. },
  24. {
  25. "__id__": 12
  26. },
  27. {
  28. "__id__": 18
  29. },
  30. {
  31. "__id__": 24
  32. },
  33. {
  34. "__id__": 33
  35. },
  36. {
  37. "__id__": 41
  38. },
  39. {
  40. "__id__": 49
  41. }
  42. ],
  43. "_active": true,
  44. "_components": [
  45. {
  46. "__id__": 82
  47. },
  48. {
  49. "__id__": 84
  50. },
  51. {
  52. "__id__": 86
  53. },
  54. {
  55. "__id__": 88
  56. }
  57. ],
  58. "_prefab": {
  59. "__id__": 90
  60. },
  61. "_lpos": {
  62. "__type__": "cc.Vec3",
  63. "x": 0,
  64. "y": 0,
  65. "z": 0
  66. },
  67. "_lrot": {
  68. "__type__": "cc.Quat",
  69. "x": 0,
  70. "y": 0,
  71. "z": 0,
  72. "w": 1
  73. },
  74. "_lscale": {
  75. "__type__": "cc.Vec3",
  76. "x": 1,
  77. "y": 1,
  78. "z": 1
  79. },
  80. "_mobility": 0,
  81. "_layer": 33554432,
  82. "_euler": {
  83. "__type__": "cc.Vec3",
  84. "x": 0,
  85. "y": 0,
  86. "z": 0
  87. },
  88. "_id": ""
  89. },
  90. {
  91. "__type__": "cc.Node",
  92. "_name": "Mask",
  93. "_objFlags": 0,
  94. "__editorExtras__": {},
  95. "_parent": {
  96. "__id__": 1
  97. },
  98. "_children": [],
  99. "_active": true,
  100. "_components": [
  101. {
  102. "__id__": 3
  103. },
  104. {
  105. "__id__": 5
  106. },
  107. {
  108. "__id__": 7
  109. },
  110. {
  111. "__id__": 9
  112. }
  113. ],
  114. "_prefab": {
  115. "__id__": 11
  116. },
  117. "_lpos": {
  118. "__type__": "cc.Vec3",
  119. "x": 0,
  120. "y": 0,
  121. "z": 0
  122. },
  123. "_lrot": {
  124. "__type__": "cc.Quat",
  125. "x": 0,
  126. "y": 0,
  127. "z": 0,
  128. "w": 1
  129. },
  130. "_lscale": {
  131. "__type__": "cc.Vec3",
  132. "x": 1,
  133. "y": 1,
  134. "z": 1
  135. },
  136. "_mobility": 0,
  137. "_layer": 33554432,
  138. "_euler": {
  139. "__type__": "cc.Vec3",
  140. "x": 0,
  141. "y": 0,
  142. "z": 0
  143. },
  144. "_id": ""
  145. },
  146. {
  147. "__type__": "cc.UITransform",
  148. "_name": "",
  149. "_objFlags": 0,
  150. "__editorExtras__": {},
  151. "node": {
  152. "__id__": 2
  153. },
  154. "_enabled": true,
  155. "__prefab": {
  156. "__id__": 4
  157. },
  158. "_contentSize": {
  159. "__type__": "cc.Size",
  160. "width": 750,
  161. "height": 1634
  162. },
  163. "_anchorPoint": {
  164. "__type__": "cc.Vec2",
  165. "x": 0.5,
  166. "y": 0.5
  167. },
  168. "_id": ""
  169. },
  170. {
  171. "__type__": "cc.CompPrefabInfo",
  172. "fileId": "04qsQV7VlB3Ij7VWVwh00U"
  173. },
  174. {
  175. "__type__": "cc.Mask",
  176. "_name": "",
  177. "_objFlags": 0,
  178. "__editorExtras__": {},
  179. "node": {
  180. "__id__": 2
  181. },
  182. "_enabled": true,
  183. "__prefab": {
  184. "__id__": 6
  185. },
  186. "_type": 0,
  187. "_inverted": false,
  188. "_segments": 64,
  189. "_alphaThreshold": 0.1,
  190. "_id": ""
  191. },
  192. {
  193. "__type__": "cc.CompPrefabInfo",
  194. "fileId": "f6wAkWEfNIgbGOiShXII/n"
  195. },
  196. {
  197. "__type__": "cc.Graphics",
  198. "_name": "",
  199. "_objFlags": 0,
  200. "__editorExtras__": {},
  201. "node": {
  202. "__id__": 2
  203. },
  204. "_enabled": true,
  205. "__prefab": {
  206. "__id__": 8
  207. },
  208. "_customMaterial": null,
  209. "_srcBlendFactor": 2,
  210. "_dstBlendFactor": 4,
  211. "_color": {
  212. "__type__": "cc.Color",
  213. "r": 255,
  214. "g": 255,
  215. "b": 255,
  216. "a": 255
  217. },
  218. "_lineWidth": 1,
  219. "_strokeColor": {
  220. "__type__": "cc.Color",
  221. "r": 0,
  222. "g": 0,
  223. "b": 0,
  224. "a": 255
  225. },
  226. "_lineJoin": 2,
  227. "_lineCap": 0,
  228. "_fillColor": {
  229. "__type__": "cc.Color",
  230. "r": 255,
  231. "g": 255,
  232. "b": 255,
  233. "a": 0
  234. },
  235. "_miterLimit": 10,
  236. "_id": ""
  237. },
  238. {
  239. "__type__": "cc.CompPrefabInfo",
  240. "fileId": "64oWLksgtNOaPflMz2u0fU"
  241. },
  242. {
  243. "__type__": "cc.BlockInputEvents",
  244. "_name": "",
  245. "_objFlags": 0,
  246. "__editorExtras__": {},
  247. "node": {
  248. "__id__": 2
  249. },
  250. "_enabled": true,
  251. "__prefab": {
  252. "__id__": 10
  253. },
  254. "_id": ""
  255. },
  256. {
  257. "__type__": "cc.CompPrefabInfo",
  258. "fileId": "33rxxki3lB4JMPSzqcaMiz"
  259. },
  260. {
  261. "__type__": "cc.PrefabInfo",
  262. "root": {
  263. "__id__": 1
  264. },
  265. "asset": {
  266. "__id__": 0
  267. },
  268. "fileId": "55DMAbKgxJ45muD/QoSUYC",
  269. "instance": null,
  270. "targetOverrides": null,
  271. "nestedPrefabInstanceRoots": null
  272. },
  273. {
  274. "__type__": "cc.Node",
  275. "_name": "Bg",
  276. "_objFlags": 0,
  277. "__editorExtras__": {},
  278. "_parent": {
  279. "__id__": 1
  280. },
  281. "_children": [],
  282. "_active": true,
  283. "_components": [
  284. {
  285. "__id__": 13
  286. },
  287. {
  288. "__id__": 15
  289. }
  290. ],
  291. "_prefab": {
  292. "__id__": 17
  293. },
  294. "_lpos": {
  295. "__type__": "cc.Vec3",
  296. "x": 0,
  297. "y": -20.659999999999968,
  298. "z": 0
  299. },
  300. "_lrot": {
  301. "__type__": "cc.Quat",
  302. "x": 0,
  303. "y": 0,
  304. "z": 0,
  305. "w": 1
  306. },
  307. "_lscale": {
  308. "__type__": "cc.Vec3",
  309. "x": 1,
  310. "y": 1,
  311. "z": 1
  312. },
  313. "_mobility": 0,
  314. "_layer": 33554432,
  315. "_euler": {
  316. "__type__": "cc.Vec3",
  317. "x": 0,
  318. "y": 0,
  319. "z": 0
  320. },
  321. "_id": ""
  322. },
  323. {
  324. "__type__": "cc.UITransform",
  325. "_name": "",
  326. "_objFlags": 0,
  327. "__editorExtras__": {},
  328. "node": {
  329. "__id__": 12
  330. },
  331. "_enabled": true,
  332. "__prefab": {
  333. "__id__": 14
  334. },
  335. "_contentSize": {
  336. "__type__": "cc.Size",
  337. "width": 680,
  338. "height": 1280
  339. },
  340. "_anchorPoint": {
  341. "__type__": "cc.Vec2",
  342. "x": 0.5,
  343. "y": 0.5
  344. },
  345. "_id": ""
  346. },
  347. {
  348. "__type__": "cc.CompPrefabInfo",
  349. "fileId": "fdBEqpbN5IQLlx/hBRX65A"
  350. },
  351. {
  352. "__type__": "cc.Sprite",
  353. "_name": "",
  354. "_objFlags": 0,
  355. "__editorExtras__": {},
  356. "node": {
  357. "__id__": 12
  358. },
  359. "_enabled": true,
  360. "__prefab": {
  361. "__id__": 16
  362. },
  363. "_customMaterial": null,
  364. "_srcBlendFactor": 2,
  365. "_dstBlendFactor": 4,
  366. "_color": {
  367. "__type__": "cc.Color",
  368. "r": 255,
  369. "g": 255,
  370. "b": 255,
  371. "a": 255
  372. },
  373. "_spriteFrame": {
  374. "__uuid__": "07dbd376-19b2-4c44-9b54-7c3c456f818a@f9941",
  375. "__expectedType__": "cc.SpriteFrame"
  376. },
  377. "_type": 1,
  378. "_fillType": 0,
  379. "_sizeMode": 0,
  380. "_fillCenter": {
  381. "__type__": "cc.Vec2",
  382. "x": 0,
  383. "y": 0
  384. },
  385. "_fillStart": 0,
  386. "_fillRange": 0,
  387. "_isTrimmedMode": true,
  388. "_useGrayscale": false,
  389. "_atlas": null,
  390. "_id": ""
  391. },
  392. {
  393. "__type__": "cc.CompPrefabInfo",
  394. "fileId": "75PNZlfWRAbKqBMxmgtphR"
  395. },
  396. {
  397. "__type__": "cc.PrefabInfo",
  398. "root": {
  399. "__id__": 1
  400. },
  401. "asset": {
  402. "__id__": 0
  403. },
  404. "fileId": "f7n0zhGFRP0Lw4GNHLlTa2",
  405. "instance": null,
  406. "targetOverrides": null,
  407. "nestedPrefabInstanceRoots": null
  408. },
  409. {
  410. "__type__": "cc.Node",
  411. "_name": "Title",
  412. "_objFlags": 0,
  413. "__editorExtras__": {},
  414. "_parent": {
  415. "__id__": 1
  416. },
  417. "_children": [],
  418. "_active": true,
  419. "_components": [
  420. {
  421. "__id__": 19
  422. },
  423. {
  424. "__id__": 21
  425. }
  426. ],
  427. "_prefab": {
  428. "__id__": 23
  429. },
  430. "_lpos": {
  431. "__type__": "cc.Vec3",
  432. "x": 0,
  433. "y": 549.6189999999999,
  434. "z": 0
  435. },
  436. "_lrot": {
  437. "__type__": "cc.Quat",
  438. "x": 0,
  439. "y": 0,
  440. "z": 0,
  441. "w": 1
  442. },
  443. "_lscale": {
  444. "__type__": "cc.Vec3",
  445. "x": 1,
  446. "y": 1,
  447. "z": 1
  448. },
  449. "_mobility": 0,
  450. "_layer": 33554432,
  451. "_euler": {
  452. "__type__": "cc.Vec3",
  453. "x": 0,
  454. "y": 0,
  455. "z": 0
  456. },
  457. "_id": ""
  458. },
  459. {
  460. "__type__": "cc.UITransform",
  461. "_name": "",
  462. "_objFlags": 0,
  463. "__editorExtras__": {},
  464. "node": {
  465. "__id__": 18
  466. },
  467. "_enabled": true,
  468. "__prefab": {
  469. "__id__": 20
  470. },
  471. "_contentSize": {
  472. "__type__": "cc.Size",
  473. "width": 237,
  474. "height": 67
  475. },
  476. "_anchorPoint": {
  477. "__type__": "cc.Vec2",
  478. "x": 0.5,
  479. "y": 0.5
  480. },
  481. "_id": ""
  482. },
  483. {
  484. "__type__": "cc.CompPrefabInfo",
  485. "fileId": "b8X+tSsu9L2L+0sSeLJCk4"
  486. },
  487. {
  488. "__type__": "cc.Sprite",
  489. "_name": "",
  490. "_objFlags": 0,
  491. "__editorExtras__": {},
  492. "node": {
  493. "__id__": 18
  494. },
  495. "_enabled": true,
  496. "__prefab": {
  497. "__id__": 22
  498. },
  499. "_customMaterial": null,
  500. "_srcBlendFactor": 2,
  501. "_dstBlendFactor": 4,
  502. "_color": {
  503. "__type__": "cc.Color",
  504. "r": 255,
  505. "g": 255,
  506. "b": 255,
  507. "a": 255
  508. },
  509. "_spriteFrame": {
  510. "__uuid__": "71cc9ca3-047d-4d28-be14-8808775e9b00@f9941",
  511. "__expectedType__": "cc.SpriteFrame"
  512. },
  513. "_type": 0,
  514. "_fillType": 0,
  515. "_sizeMode": 1,
  516. "_fillCenter": {
  517. "__type__": "cc.Vec2",
  518. "x": 0,
  519. "y": 0
  520. },
  521. "_fillStart": 0,
  522. "_fillRange": 0,
  523. "_isTrimmedMode": true,
  524. "_useGrayscale": false,
  525. "_atlas": null,
  526. "_id": ""
  527. },
  528. {
  529. "__type__": "cc.CompPrefabInfo",
  530. "fileId": "104xDmgItOr7vhqRNwfJek"
  531. },
  532. {
  533. "__type__": "cc.PrefabInfo",
  534. "root": {
  535. "__id__": 1
  536. },
  537. "asset": {
  538. "__id__": 0
  539. },
  540. "fileId": "eaFa577pZKY4tQDybOla/n",
  541. "instance": null,
  542. "targetOverrides": null,
  543. "nestedPrefabInstanceRoots": null
  544. },
  545. {
  546. "__type__": "cc.Node",
  547. "_name": "Close_Btn",
  548. "_objFlags": 0,
  549. "__editorExtras__": {},
  550. "_parent": {
  551. "__id__": 1
  552. },
  553. "_children": [],
  554. "_active": true,
  555. "_components": [
  556. {
  557. "__id__": 25
  558. },
  559. {
  560. "__id__": 27
  561. },
  562. {
  563. "__id__": 29
  564. }
  565. ],
  566. "_prefab": {
  567. "__id__": 32
  568. },
  569. "_lpos": {
  570. "__type__": "cc.Vec3",
  571. "x": 213.29899999999998,
  572. "y": 525.433,
  573. "z": 0
  574. },
  575. "_lrot": {
  576. "__type__": "cc.Quat",
  577. "x": 0,
  578. "y": 0,
  579. "z": 0,
  580. "w": 1
  581. },
  582. "_lscale": {
  583. "__type__": "cc.Vec3",
  584. "x": 1,
  585. "y": 1,
  586. "z": 1
  587. },
  588. "_mobility": 0,
  589. "_layer": 33554432,
  590. "_euler": {
  591. "__type__": "cc.Vec3",
  592. "x": 0,
  593. "y": 0,
  594. "z": 0
  595. },
  596. "_id": ""
  597. },
  598. {
  599. "__type__": "cc.UITransform",
  600. "_name": "",
  601. "_objFlags": 0,
  602. "__editorExtras__": {},
  603. "node": {
  604. "__id__": 24
  605. },
  606. "_enabled": true,
  607. "__prefab": {
  608. "__id__": 26
  609. },
  610. "_contentSize": {
  611. "__type__": "cc.Size",
  612. "width": 70,
  613. "height": 70
  614. },
  615. "_anchorPoint": {
  616. "__type__": "cc.Vec2",
  617. "x": 0.5,
  618. "y": 0.5
  619. },
  620. "_id": ""
  621. },
  622. {
  623. "__type__": "cc.CompPrefabInfo",
  624. "fileId": "1cAj3te/tGZal8geM/DtK/"
  625. },
  626. {
  627. "__type__": "cc.Sprite",
  628. "_name": "",
  629. "_objFlags": 0,
  630. "__editorExtras__": {},
  631. "node": {
  632. "__id__": 24
  633. },
  634. "_enabled": true,
  635. "__prefab": {
  636. "__id__": 28
  637. },
  638. "_customMaterial": null,
  639. "_srcBlendFactor": 2,
  640. "_dstBlendFactor": 4,
  641. "_color": {
  642. "__type__": "cc.Color",
  643. "r": 255,
  644. "g": 255,
  645. "b": 255,
  646. "a": 255
  647. },
  648. "_spriteFrame": {
  649. "__uuid__": "5985259e-6a1f-4959-b254-c8681b47d3c2@f9941",
  650. "__expectedType__": "cc.SpriteFrame"
  651. },
  652. "_type": 1,
  653. "_fillType": 0,
  654. "_sizeMode": 0,
  655. "_fillCenter": {
  656. "__type__": "cc.Vec2",
  657. "x": 0,
  658. "y": 0
  659. },
  660. "_fillStart": 0,
  661. "_fillRange": 0,
  662. "_isTrimmedMode": true,
  663. "_useGrayscale": false,
  664. "_atlas": null,
  665. "_id": ""
  666. },
  667. {
  668. "__type__": "cc.CompPrefabInfo",
  669. "fileId": "4dB+CWZMVKnJrO1ZazL/zL"
  670. },
  671. {
  672. "__type__": "cc.Button",
  673. "_name": "",
  674. "_objFlags": 0,
  675. "__editorExtras__": {},
  676. "node": {
  677. "__id__": 24
  678. },
  679. "_enabled": true,
  680. "__prefab": {
  681. "__id__": 30
  682. },
  683. "clickEvents": [
  684. {
  685. "__id__": 31
  686. }
  687. ],
  688. "_interactable": true,
  689. "_transition": 2,
  690. "_normalColor": {
  691. "__type__": "cc.Color",
  692. "r": 214,
  693. "g": 214,
  694. "b": 214,
  695. "a": 255
  696. },
  697. "_hoverColor": {
  698. "__type__": "cc.Color",
  699. "r": 211,
  700. "g": 211,
  701. "b": 211,
  702. "a": 255
  703. },
  704. "_pressedColor": {
  705. "__type__": "cc.Color",
  706. "r": 255,
  707. "g": 255,
  708. "b": 255,
  709. "a": 255
  710. },
  711. "_disabledColor": {
  712. "__type__": "cc.Color",
  713. "r": 124,
  714. "g": 124,
  715. "b": 124,
  716. "a": 255
  717. },
  718. "_normalSprite": {
  719. "__uuid__": "5985259e-6a1f-4959-b254-c8681b47d3c2@f9941",
  720. "__expectedType__": "cc.SpriteFrame"
  721. },
  722. "_hoverSprite": {
  723. "__uuid__": "5985259e-6a1f-4959-b254-c8681b47d3c2@f9941",
  724. "__expectedType__": "cc.SpriteFrame"
  725. },
  726. "_pressedSprite": {
  727. "__uuid__": "5985259e-6a1f-4959-b254-c8681b47d3c2@f9941",
  728. "__expectedType__": "cc.SpriteFrame"
  729. },
  730. "_disabledSprite": {
  731. "__uuid__": "5985259e-6a1f-4959-b254-c8681b47d3c2@f9941",
  732. "__expectedType__": "cc.SpriteFrame"
  733. },
  734. "_duration": 0.1,
  735. "_zoomScale": 1.2,
  736. "_target": {
  737. "__id__": 24
  738. },
  739. "_id": ""
  740. },
  741. {
  742. "__type__": "cc.CompPrefabInfo",
  743. "fileId": "ebi5qFScRBpZlbF6fIruR/"
  744. },
  745. {
  746. "__type__": "cc.ClickEvent",
  747. "target": null,
  748. "component": "",
  749. "_componentId": "4e079u5wGpLroCSBJdfDxK4",
  750. "handler": "CloseUI",
  751. "customEventData": ""
  752. },
  753. {
  754. "__type__": "cc.PrefabInfo",
  755. "root": {
  756. "__id__": 1
  757. },
  758. "asset": {
  759. "__id__": 0
  760. },
  761. "fileId": "b13HeYQABOnZ43l0hKv3Oe",
  762. "instance": null,
  763. "targetOverrides": null,
  764. "nestedPrefabInstanceRoots": null
  765. },
  766. {
  767. "__type__": "cc.Node",
  768. "_name": "Nation_Btn",
  769. "_objFlags": 0,
  770. "__editorExtras__": {},
  771. "_parent": {
  772. "__id__": 1
  773. },
  774. "_children": [],
  775. "_active": true,
  776. "_components": [
  777. {
  778. "__id__": 34
  779. },
  780. {
  781. "__id__": 36
  782. },
  783. {
  784. "__id__": 38
  785. }
  786. ],
  787. "_prefab": {
  788. "__id__": 40
  789. },
  790. "_lpos": {
  791. "__type__": "cc.Vec3",
  792. "x": -124.975,
  793. "y": 395.874,
  794. "z": 0
  795. },
  796. "_lrot": {
  797. "__type__": "cc.Quat",
  798. "x": 0,
  799. "y": 0,
  800. "z": 0,
  801. "w": 1
  802. },
  803. "_lscale": {
  804. "__type__": "cc.Vec3",
  805. "x": 1,
  806. "y": 1,
  807. "z": 1
  808. },
  809. "_mobility": 0,
  810. "_layer": 33554432,
  811. "_euler": {
  812. "__type__": "cc.Vec3",
  813. "x": 0,
  814. "y": 0,
  815. "z": 0
  816. },
  817. "_id": ""
  818. },
  819. {
  820. "__type__": "cc.UITransform",
  821. "_name": "",
  822. "_objFlags": 0,
  823. "__editorExtras__": {},
  824. "node": {
  825. "__id__": 33
  826. },
  827. "_enabled": true,
  828. "__prefab": {
  829. "__id__": 35
  830. },
  831. "_contentSize": {
  832. "__type__": "cc.Size",
  833. "width": 250,
  834. "height": 120
  835. },
  836. "_anchorPoint": {
  837. "__type__": "cc.Vec2",
  838. "x": 0.5,
  839. "y": 0.5
  840. },
  841. "_id": ""
  842. },
  843. {
  844. "__type__": "cc.CompPrefabInfo",
  845. "fileId": "72z+IMGopJcImm47gHP54Y"
  846. },
  847. {
  848. "__type__": "cc.Sprite",
  849. "_name": "",
  850. "_objFlags": 0,
  851. "__editorExtras__": {},
  852. "node": {
  853. "__id__": 33
  854. },
  855. "_enabled": true,
  856. "__prefab": {
  857. "__id__": 37
  858. },
  859. "_customMaterial": null,
  860. "_srcBlendFactor": 2,
  861. "_dstBlendFactor": 4,
  862. "_color": {
  863. "__type__": "cc.Color",
  864. "r": 255,
  865. "g": 255,
  866. "b": 255,
  867. "a": 255
  868. },
  869. "_spriteFrame": {
  870. "__uuid__": "68f26fd4-4d6d-446d-b74f-02a2dc0175fd@f9941",
  871. "__expectedType__": "cc.SpriteFrame"
  872. },
  873. "_type": 1,
  874. "_fillType": 0,
  875. "_sizeMode": 0,
  876. "_fillCenter": {
  877. "__type__": "cc.Vec2",
  878. "x": 0,
  879. "y": 0
  880. },
  881. "_fillStart": 0,
  882. "_fillRange": 0,
  883. "_isTrimmedMode": true,
  884. "_useGrayscale": false,
  885. "_atlas": null,
  886. "_id": ""
  887. },
  888. {
  889. "__type__": "cc.CompPrefabInfo",
  890. "fileId": "efDDZiwO1AgJc2a1fwa2F4"
  891. },
  892. {
  893. "__type__": "cc.Button",
  894. "_name": "",
  895. "_objFlags": 0,
  896. "__editorExtras__": {},
  897. "node": {
  898. "__id__": 33
  899. },
  900. "_enabled": true,
  901. "__prefab": {
  902. "__id__": 39
  903. },
  904. "clickEvents": [],
  905. "_interactable": true,
  906. "_transition": 2,
  907. "_normalColor": {
  908. "__type__": "cc.Color",
  909. "r": 214,
  910. "g": 214,
  911. "b": 214,
  912. "a": 255
  913. },
  914. "_hoverColor": {
  915. "__type__": "cc.Color",
  916. "r": 211,
  917. "g": 211,
  918. "b": 211,
  919. "a": 255
  920. },
  921. "_pressedColor": {
  922. "__type__": "cc.Color",
  923. "r": 255,
  924. "g": 255,
  925. "b": 255,
  926. "a": 255
  927. },
  928. "_disabledColor": {
  929. "__type__": "cc.Color",
  930. "r": 124,
  931. "g": 124,
  932. "b": 124,
  933. "a": 255
  934. },
  935. "_normalSprite": {
  936. "__uuid__": "68f26fd4-4d6d-446d-b74f-02a2dc0175fd@f9941",
  937. "__expectedType__": "cc.SpriteFrame"
  938. },
  939. "_hoverSprite": {
  940. "__uuid__": "1bdac685-596e-4557-8369-034dd3659626@f9941",
  941. "__expectedType__": "cc.SpriteFrame"
  942. },
  943. "_pressedSprite": {
  944. "__uuid__": "1bdac685-596e-4557-8369-034dd3659626@f9941",
  945. "__expectedType__": "cc.SpriteFrame"
  946. },
  947. "_disabledSprite": {
  948. "__uuid__": "68f26fd4-4d6d-446d-b74f-02a2dc0175fd@f9941",
  949. "__expectedType__": "cc.SpriteFrame"
  950. },
  951. "_duration": 0.1,
  952. "_zoomScale": 1.2,
  953. "_target": {
  954. "__id__": 33
  955. },
  956. "_id": ""
  957. },
  958. {
  959. "__type__": "cc.CompPrefabInfo",
  960. "fileId": "de6L6r3NZKWYnvQModT095"
  961. },
  962. {
  963. "__type__": "cc.PrefabInfo",
  964. "root": {
  965. "__id__": 1
  966. },
  967. "asset": {
  968. "__id__": 0
  969. },
  970. "fileId": "36fDl34L9NB5oJH/b53pj0",
  971. "instance": null,
  972. "targetOverrides": null,
  973. "nestedPrefabInstanceRoots": null
  974. },
  975. {
  976. "__type__": "cc.Node",
  977. "_name": "Friend_Btn",
  978. "_objFlags": 0,
  979. "__editorExtras__": {},
  980. "_parent": {
  981. "__id__": 1
  982. },
  983. "_children": [],
  984. "_active": true,
  985. "_components": [
  986. {
  987. "__id__": 42
  988. },
  989. {
  990. "__id__": 44
  991. },
  992. {
  993. "__id__": 46
  994. }
  995. ],
  996. "_prefab": {
  997. "__id__": 48
  998. },
  999. "_lpos": {
  1000. "__type__": "cc.Vec3",
  1001. "x": 127.52499999999998,
  1002. "y": 395.874,
  1003. "z": 0
  1004. },
  1005. "_lrot": {
  1006. "__type__": "cc.Quat",
  1007. "x": 0,
  1008. "y": 0,
  1009. "z": 0,
  1010. "w": 1
  1011. },
  1012. "_lscale": {
  1013. "__type__": "cc.Vec3",
  1014. "x": 1,
  1015. "y": 1,
  1016. "z": 1
  1017. },
  1018. "_mobility": 0,
  1019. "_layer": 33554432,
  1020. "_euler": {
  1021. "__type__": "cc.Vec3",
  1022. "x": 0,
  1023. "y": 0,
  1024. "z": 0
  1025. },
  1026. "_id": ""
  1027. },
  1028. {
  1029. "__type__": "cc.UITransform",
  1030. "_name": "",
  1031. "_objFlags": 0,
  1032. "__editorExtras__": {},
  1033. "node": {
  1034. "__id__": 41
  1035. },
  1036. "_enabled": true,
  1037. "__prefab": {
  1038. "__id__": 43
  1039. },
  1040. "_contentSize": {
  1041. "__type__": "cc.Size",
  1042. "width": 250,
  1043. "height": 120
  1044. },
  1045. "_anchorPoint": {
  1046. "__type__": "cc.Vec2",
  1047. "x": 0.5,
  1048. "y": 0.5
  1049. },
  1050. "_id": ""
  1051. },
  1052. {
  1053. "__type__": "cc.CompPrefabInfo",
  1054. "fileId": "5eIBGcQutDsZxhq8gh8JbR"
  1055. },
  1056. {
  1057. "__type__": "cc.Sprite",
  1058. "_name": "",
  1059. "_objFlags": 0,
  1060. "__editorExtras__": {},
  1061. "node": {
  1062. "__id__": 41
  1063. },
  1064. "_enabled": true,
  1065. "__prefab": {
  1066. "__id__": 45
  1067. },
  1068. "_customMaterial": null,
  1069. "_srcBlendFactor": 2,
  1070. "_dstBlendFactor": 4,
  1071. "_color": {
  1072. "__type__": "cc.Color",
  1073. "r": 255,
  1074. "g": 255,
  1075. "b": 255,
  1076. "a": 255
  1077. },
  1078. "_spriteFrame": {
  1079. "__uuid__": "6ad89fc2-5c8d-4fa2-8191-1589f80ea3b0@f9941",
  1080. "__expectedType__": "cc.SpriteFrame"
  1081. },
  1082. "_type": 1,
  1083. "_fillType": 0,
  1084. "_sizeMode": 0,
  1085. "_fillCenter": {
  1086. "__type__": "cc.Vec2",
  1087. "x": 0,
  1088. "y": 0
  1089. },
  1090. "_fillStart": 0,
  1091. "_fillRange": 0,
  1092. "_isTrimmedMode": true,
  1093. "_useGrayscale": false,
  1094. "_atlas": null,
  1095. "_id": ""
  1096. },
  1097. {
  1098. "__type__": "cc.CompPrefabInfo",
  1099. "fileId": "23YiCIw0xGwah5SflwzV8J"
  1100. },
  1101. {
  1102. "__type__": "cc.Button",
  1103. "_name": "",
  1104. "_objFlags": 0,
  1105. "__editorExtras__": {},
  1106. "node": {
  1107. "__id__": 41
  1108. },
  1109. "_enabled": true,
  1110. "__prefab": {
  1111. "__id__": 47
  1112. },
  1113. "clickEvents": [],
  1114. "_interactable": true,
  1115. "_transition": 2,
  1116. "_normalColor": {
  1117. "__type__": "cc.Color",
  1118. "r": 214,
  1119. "g": 214,
  1120. "b": 214,
  1121. "a": 255
  1122. },
  1123. "_hoverColor": {
  1124. "__type__": "cc.Color",
  1125. "r": 211,
  1126. "g": 211,
  1127. "b": 211,
  1128. "a": 255
  1129. },
  1130. "_pressedColor": {
  1131. "__type__": "cc.Color",
  1132. "r": 255,
  1133. "g": 255,
  1134. "b": 255,
  1135. "a": 255
  1136. },
  1137. "_disabledColor": {
  1138. "__type__": "cc.Color",
  1139. "r": 124,
  1140. "g": 124,
  1141. "b": 124,
  1142. "a": 255
  1143. },
  1144. "_normalSprite": {
  1145. "__uuid__": "6ad89fc2-5c8d-4fa2-8191-1589f80ea3b0@f9941",
  1146. "__expectedType__": "cc.SpriteFrame"
  1147. },
  1148. "_hoverSprite": {
  1149. "__uuid__": "b6eb3293-0dad-4f43-aa8a-f42c156a86ae@f9941",
  1150. "__expectedType__": "cc.SpriteFrame"
  1151. },
  1152. "_pressedSprite": {
  1153. "__uuid__": "b6eb3293-0dad-4f43-aa8a-f42c156a86ae@f9941",
  1154. "__expectedType__": "cc.SpriteFrame"
  1155. },
  1156. "_disabledSprite": {
  1157. "__uuid__": "6ad89fc2-5c8d-4fa2-8191-1589f80ea3b0@f9941",
  1158. "__expectedType__": "cc.SpriteFrame"
  1159. },
  1160. "_duration": 0.1,
  1161. "_zoomScale": 1.2,
  1162. "_target": {
  1163. "__id__": 41
  1164. },
  1165. "_id": ""
  1166. },
  1167. {
  1168. "__type__": "cc.CompPrefabInfo",
  1169. "fileId": "a1IuoSup9Er7z+etI2+yAT"
  1170. },
  1171. {
  1172. "__type__": "cc.PrefabInfo",
  1173. "root": {
  1174. "__id__": 1
  1175. },
  1176. "asset": {
  1177. "__id__": 0
  1178. },
  1179. "fileId": "eaX+Cfx/ROYLQWYQsBbGUO",
  1180. "instance": null,
  1181. "targetOverrides": null,
  1182. "nestedPrefabInstanceRoots": null
  1183. },
  1184. {
  1185. "__type__": "cc.Node",
  1186. "_name": "ScrollView",
  1187. "_objFlags": 0,
  1188. "__editorExtras__": {},
  1189. "_parent": {
  1190. "__id__": 1
  1191. },
  1192. "_children": [
  1193. {
  1194. "__id__": 50
  1195. },
  1196. {
  1197. "__id__": 56
  1198. }
  1199. ],
  1200. "_active": true,
  1201. "_components": [
  1202. {
  1203. "__id__": 70
  1204. },
  1205. {
  1206. "__id__": 72
  1207. },
  1208. {
  1209. "__id__": 74
  1210. },
  1211. {
  1212. "__id__": 76
  1213. }
  1214. ],
  1215. "_prefab": {
  1216. "__id__": 81
  1217. },
  1218. "_lpos": {
  1219. "__type__": "cc.Vec3",
  1220. "x": 0,
  1221. "y": 371.453,
  1222. "z": 0
  1223. },
  1224. "_lrot": {
  1225. "__type__": "cc.Quat",
  1226. "x": 0,
  1227. "y": 0,
  1228. "z": 0,
  1229. "w": 1
  1230. },
  1231. "_lscale": {
  1232. "__type__": "cc.Vec3",
  1233. "x": 1,
  1234. "y": 1,
  1235. "z": 1
  1236. },
  1237. "_mobility": 0,
  1238. "_layer": 33554432,
  1239. "_euler": {
  1240. "__type__": "cc.Vec3",
  1241. "x": 0,
  1242. "y": 0,
  1243. "z": 0
  1244. },
  1245. "_id": ""
  1246. },
  1247. {
  1248. "__type__": "cc.Node",
  1249. "_name": "Sprite",
  1250. "_objFlags": 0,
  1251. "__editorExtras__": {},
  1252. "_parent": {
  1253. "__id__": 49
  1254. },
  1255. "_children": [],
  1256. "_active": true,
  1257. "_components": [
  1258. {
  1259. "__id__": 51
  1260. },
  1261. {
  1262. "__id__": 53
  1263. }
  1264. ],
  1265. "_prefab": {
  1266. "__id__": 55
  1267. },
  1268. "_lpos": {
  1269. "__type__": "cc.Vec3",
  1270. "x": 0,
  1271. "y": -11.610999999999876,
  1272. "z": 0
  1273. },
  1274. "_lrot": {
  1275. "__type__": "cc.Quat",
  1276. "x": 0,
  1277. "y": 0,
  1278. "z": 0,
  1279. "w": 1
  1280. },
  1281. "_lscale": {
  1282. "__type__": "cc.Vec3",
  1283. "x": 1,
  1284. "y": 1,
  1285. "z": 1
  1286. },
  1287. "_mobility": 0,
  1288. "_layer": 33554432,
  1289. "_euler": {
  1290. "__type__": "cc.Vec3",
  1291. "x": 0,
  1292. "y": 0,
  1293. "z": 0
  1294. },
  1295. "_id": ""
  1296. },
  1297. {
  1298. "__type__": "cc.UITransform",
  1299. "_name": "",
  1300. "_objFlags": 0,
  1301. "__editorExtras__": {},
  1302. "node": {
  1303. "__id__": 50
  1304. },
  1305. "_enabled": true,
  1306. "__prefab": {
  1307. "__id__": 52
  1308. },
  1309. "_contentSize": {
  1310. "__type__": "cc.Size",
  1311. "width": 650,
  1312. "height": 40
  1313. },
  1314. "_anchorPoint": {
  1315. "__type__": "cc.Vec2",
  1316. "x": 0.5,
  1317. "y": 0.5
  1318. },
  1319. "_id": ""
  1320. },
  1321. {
  1322. "__type__": "cc.CompPrefabInfo",
  1323. "fileId": "5eC4geJvVKJI207ek457JL"
  1324. },
  1325. {
  1326. "__type__": "cc.Sprite",
  1327. "_name": "",
  1328. "_objFlags": 0,
  1329. "__editorExtras__": {},
  1330. "node": {
  1331. "__id__": 50
  1332. },
  1333. "_enabled": true,
  1334. "__prefab": {
  1335. "__id__": 54
  1336. },
  1337. "_customMaterial": null,
  1338. "_srcBlendFactor": 2,
  1339. "_dstBlendFactor": 4,
  1340. "_color": {
  1341. "__type__": "cc.Color",
  1342. "r": 255,
  1343. "g": 255,
  1344. "b": 255,
  1345. "a": 255
  1346. },
  1347. "_spriteFrame": {
  1348. "__uuid__": "b730527c-3233-41c2-aaf7-7cdab58f9749@f9941",
  1349. "__expectedType__": "cc.SpriteFrame"
  1350. },
  1351. "_type": 0,
  1352. "_fillType": 0,
  1353. "_sizeMode": 0,
  1354. "_fillCenter": {
  1355. "__type__": "cc.Vec2",
  1356. "x": 0,
  1357. "y": 0
  1358. },
  1359. "_fillStart": 0,
  1360. "_fillRange": 0,
  1361. "_isTrimmedMode": true,
  1362. "_useGrayscale": false,
  1363. "_atlas": null,
  1364. "_id": ""
  1365. },
  1366. {
  1367. "__type__": "cc.CompPrefabInfo",
  1368. "fileId": "91QHk6FYRJe79FeXaad9SC"
  1369. },
  1370. {
  1371. "__type__": "cc.PrefabInfo",
  1372. "root": {
  1373. "__id__": 1
  1374. },
  1375. "asset": {
  1376. "__id__": 0
  1377. },
  1378. "fileId": "96XFvm8NlDHYMVJsUfYnct",
  1379. "instance": null,
  1380. "targetOverrides": null,
  1381. "nestedPrefabInstanceRoots": null
  1382. },
  1383. {
  1384. "__type__": "cc.Node",
  1385. "_name": "view",
  1386. "_objFlags": 0,
  1387. "__editorExtras__": {},
  1388. "_parent": {
  1389. "__id__": 49
  1390. },
  1391. "_children": [
  1392. {
  1393. "__id__": 57
  1394. }
  1395. ],
  1396. "_active": true,
  1397. "_components": [
  1398. {
  1399. "__id__": 63
  1400. },
  1401. {
  1402. "__id__": 65
  1403. },
  1404. {
  1405. "__id__": 67
  1406. }
  1407. ],
  1408. "_prefab": {
  1409. "__id__": 69
  1410. },
  1411. "_lpos": {
  1412. "__type__": "cc.Vec3",
  1413. "x": 0,
  1414. "y": 0,
  1415. "z": 0
  1416. },
  1417. "_lrot": {
  1418. "__type__": "cc.Quat",
  1419. "x": 0,
  1420. "y": 0,
  1421. "z": 0,
  1422. "w": 1
  1423. },
  1424. "_lscale": {
  1425. "__type__": "cc.Vec3",
  1426. "x": 1,
  1427. "y": 1,
  1428. "z": 1
  1429. },
  1430. "_mobility": 0,
  1431. "_layer": 33554432,
  1432. "_euler": {
  1433. "__type__": "cc.Vec3",
  1434. "x": 0,
  1435. "y": 0,
  1436. "z": 0
  1437. },
  1438. "_id": ""
  1439. },
  1440. {
  1441. "__type__": "cc.Node",
  1442. "_name": "content",
  1443. "_objFlags": 0,
  1444. "__editorExtras__": {},
  1445. "_parent": {
  1446. "__id__": 56
  1447. },
  1448. "_children": [],
  1449. "_active": true,
  1450. "_components": [
  1451. {
  1452. "__id__": 58
  1453. },
  1454. {
  1455. "__id__": 60
  1456. }
  1457. ],
  1458. "_prefab": {
  1459. "__id__": 62
  1460. },
  1461. "_lpos": {
  1462. "__type__": "cc.Vec3",
  1463. "x": 0,
  1464. "y": -19.54000000000019,
  1465. "z": 0
  1466. },
  1467. "_lrot": {
  1468. "__type__": "cc.Quat",
  1469. "x": 0,
  1470. "y": 0,
  1471. "z": 0,
  1472. "w": 1
  1473. },
  1474. "_lscale": {
  1475. "__type__": "cc.Vec3",
  1476. "x": 1,
  1477. "y": 1,
  1478. "z": 1
  1479. },
  1480. "_mobility": 0,
  1481. "_layer": 33554432,
  1482. "_euler": {
  1483. "__type__": "cc.Vec3",
  1484. "x": 0,
  1485. "y": 0,
  1486. "z": 0
  1487. },
  1488. "_id": ""
  1489. },
  1490. {
  1491. "__type__": "cc.UITransform",
  1492. "_name": "",
  1493. "_objFlags": 0,
  1494. "__editorExtras__": {},
  1495. "node": {
  1496. "__id__": 57
  1497. },
  1498. "_enabled": true,
  1499. "__prefab": {
  1500. "__id__": 59
  1501. },
  1502. "_contentSize": {
  1503. "__type__": "cc.Size",
  1504. "width": 650,
  1505. "height": 10
  1506. },
  1507. "_anchorPoint": {
  1508. "__type__": "cc.Vec2",
  1509. "x": 0.5,
  1510. "y": 1
  1511. },
  1512. "_id": ""
  1513. },
  1514. {
  1515. "__type__": "cc.CompPrefabInfo",
  1516. "fileId": "caPhaO1ntC5ZBbxadrjqH2"
  1517. },
  1518. {
  1519. "__type__": "cc.Layout",
  1520. "_name": "",
  1521. "_objFlags": 0,
  1522. "__editorExtras__": {},
  1523. "node": {
  1524. "__id__": 57
  1525. },
  1526. "_enabled": false,
  1527. "__prefab": {
  1528. "__id__": 61
  1529. },
  1530. "_resizeMode": 0,
  1531. "_layoutType": 2,
  1532. "_cellSize": {
  1533. "__type__": "cc.Size",
  1534. "width": 40,
  1535. "height": 40
  1536. },
  1537. "_startAxis": 0,
  1538. "_paddingLeft": 0,
  1539. "_paddingRight": 0,
  1540. "_paddingTop": 10,
  1541. "_paddingBottom": 10,
  1542. "_spacingX": 0,
  1543. "_spacingY": 10,
  1544. "_verticalDirection": 1,
  1545. "_horizontalDirection": 0,
  1546. "_constraint": 0,
  1547. "_constraintNum": 2,
  1548. "_affectedByScale": false,
  1549. "_isAlign": false,
  1550. "_id": ""
  1551. },
  1552. {
  1553. "__type__": "cc.CompPrefabInfo",
  1554. "fileId": "61GayLttNL8IQMFwfs5Red"
  1555. },
  1556. {
  1557. "__type__": "cc.PrefabInfo",
  1558. "root": {
  1559. "__id__": 1
  1560. },
  1561. "asset": {
  1562. "__id__": 0
  1563. },
  1564. "fileId": "14y8l2sZVG3rPm/PcVvme2",
  1565. "instance": null,
  1566. "targetOverrides": null,
  1567. "nestedPrefabInstanceRoots": null
  1568. },
  1569. {
  1570. "__type__": "cc.UITransform",
  1571. "_name": "",
  1572. "_objFlags": 0,
  1573. "__editorExtras__": {},
  1574. "node": {
  1575. "__id__": 56
  1576. },
  1577. "_enabled": true,
  1578. "__prefab": {
  1579. "__id__": 64
  1580. },
  1581. "_contentSize": {
  1582. "__type__": "cc.Size",
  1583. "width": 650,
  1584. "height": 1000
  1585. },
  1586. "_anchorPoint": {
  1587. "__type__": "cc.Vec2",
  1588. "x": 0.5,
  1589. "y": 1
  1590. },
  1591. "_id": ""
  1592. },
  1593. {
  1594. "__type__": "cc.CompPrefabInfo",
  1595. "fileId": "21nfKMo0lAIpUPe+69T/pb"
  1596. },
  1597. {
  1598. "__type__": "cc.Mask",
  1599. "_name": "",
  1600. "_objFlags": 0,
  1601. "__editorExtras__": {},
  1602. "node": {
  1603. "__id__": 56
  1604. },
  1605. "_enabled": true,
  1606. "__prefab": {
  1607. "__id__": 66
  1608. },
  1609. "_type": 0,
  1610. "_inverted": false,
  1611. "_segments": 64,
  1612. "_alphaThreshold": 0.1,
  1613. "_id": ""
  1614. },
  1615. {
  1616. "__type__": "cc.CompPrefabInfo",
  1617. "fileId": "c5XdHSAc5OZLsuU+WvruQZ"
  1618. },
  1619. {
  1620. "__type__": "cc.Graphics",
  1621. "_name": "",
  1622. "_objFlags": 0,
  1623. "__editorExtras__": {},
  1624. "node": {
  1625. "__id__": 56
  1626. },
  1627. "_enabled": true,
  1628. "__prefab": {
  1629. "__id__": 68
  1630. },
  1631. "_customMaterial": null,
  1632. "_srcBlendFactor": 2,
  1633. "_dstBlendFactor": 4,
  1634. "_color": {
  1635. "__type__": "cc.Color",
  1636. "r": 255,
  1637. "g": 255,
  1638. "b": 255,
  1639. "a": 255
  1640. },
  1641. "_lineWidth": 1,
  1642. "_strokeColor": {
  1643. "__type__": "cc.Color",
  1644. "r": 0,
  1645. "g": 0,
  1646. "b": 0,
  1647. "a": 255
  1648. },
  1649. "_lineJoin": 2,
  1650. "_lineCap": 0,
  1651. "_fillColor": {
  1652. "__type__": "cc.Color",
  1653. "r": 255,
  1654. "g": 255,
  1655. "b": 255,
  1656. "a": 0
  1657. },
  1658. "_miterLimit": 10,
  1659. "_id": ""
  1660. },
  1661. {
  1662. "__type__": "cc.CompPrefabInfo",
  1663. "fileId": "e4pPZOtQdIRoBbdV+eICPu"
  1664. },
  1665. {
  1666. "__type__": "cc.PrefabInfo",
  1667. "root": {
  1668. "__id__": 1
  1669. },
  1670. "asset": {
  1671. "__id__": 0
  1672. },
  1673. "fileId": "b7Zr0PW5RP95LCwz3smpGh",
  1674. "instance": null,
  1675. "targetOverrides": null,
  1676. "nestedPrefabInstanceRoots": null
  1677. },
  1678. {
  1679. "__type__": "cc.UITransform",
  1680. "_name": "",
  1681. "_objFlags": 0,
  1682. "__editorExtras__": {},
  1683. "node": {
  1684. "__id__": 49
  1685. },
  1686. "_enabled": true,
  1687. "__prefab": {
  1688. "__id__": 71
  1689. },
  1690. "_contentSize": {
  1691. "__type__": "cc.Size",
  1692. "width": 650,
  1693. "height": 1000
  1694. },
  1695. "_anchorPoint": {
  1696. "__type__": "cc.Vec2",
  1697. "x": 0.5,
  1698. "y": 1
  1699. },
  1700. "_id": ""
  1701. },
  1702. {
  1703. "__type__": "cc.CompPrefabInfo",
  1704. "fileId": "36QX23KClO1omMY5oRJcVj"
  1705. },
  1706. {
  1707. "__type__": "cc.Sprite",
  1708. "_name": "",
  1709. "_objFlags": 0,
  1710. "__editorExtras__": {},
  1711. "node": {
  1712. "__id__": 49
  1713. },
  1714. "_enabled": false,
  1715. "__prefab": {
  1716. "__id__": 73
  1717. },
  1718. "_customMaterial": null,
  1719. "_srcBlendFactor": 2,
  1720. "_dstBlendFactor": 4,
  1721. "_color": {
  1722. "__type__": "cc.Color",
  1723. "r": 255,
  1724. "g": 255,
  1725. "b": 255,
  1726. "a": 255
  1727. },
  1728. "_spriteFrame": {
  1729. "__uuid__": "b730527c-3233-41c2-aaf7-7cdab58f9749@f9941",
  1730. "__expectedType__": "cc.SpriteFrame"
  1731. },
  1732. "_type": 1,
  1733. "_fillType": 0,
  1734. "_sizeMode": 0,
  1735. "_fillCenter": {
  1736. "__type__": "cc.Vec2",
  1737. "x": 0,
  1738. "y": 0
  1739. },
  1740. "_fillStart": 0,
  1741. "_fillRange": 0,
  1742. "_isTrimmedMode": true,
  1743. "_useGrayscale": false,
  1744. "_atlas": null,
  1745. "_id": ""
  1746. },
  1747. {
  1748. "__type__": "cc.CompPrefabInfo",
  1749. "fileId": "c9XxSJV9pKB6kqDr5m203x"
  1750. },
  1751. {
  1752. "__type__": "cc.ScrollView",
  1753. "_name": "",
  1754. "_objFlags": 0,
  1755. "__editorExtras__": {},
  1756. "node": {
  1757. "__id__": 49
  1758. },
  1759. "_enabled": true,
  1760. "__prefab": {
  1761. "__id__": 75
  1762. },
  1763. "bounceDuration": 1,
  1764. "brake": 0.5,
  1765. "elastic": true,
  1766. "inertia": true,
  1767. "horizontal": false,
  1768. "vertical": true,
  1769. "cancelInnerEvents": true,
  1770. "scrollEvents": [],
  1771. "_content": {
  1772. "__id__": 57
  1773. },
  1774. "_horizontalScrollBar": null,
  1775. "_verticalScrollBar": null,
  1776. "_id": ""
  1777. },
  1778. {
  1779. "__type__": "cc.CompPrefabInfo",
  1780. "fileId": "19ZjXZpZdH+7BWELL5nYir"
  1781. },
  1782. {
  1783. "__type__": "30e50g9bStDgYX3Y3vvH6ye",
  1784. "_name": "",
  1785. "_objFlags": 0,
  1786. "__editorExtras__": {},
  1787. "node": {
  1788. "__id__": 49
  1789. },
  1790. "_enabled": true,
  1791. "__prefab": {
  1792. "__id__": 77
  1793. },
  1794. "templateType": 2,
  1795. "tmpNode": null,
  1796. "tmpPrefab": {
  1797. "__uuid__": "9cb67879-e14d-4f75-afc9-277f1ebe6378",
  1798. "__expectedType__": "cc.Prefab"
  1799. },
  1800. "_slideMode": 1,
  1801. "pageDistance": 0.3,
  1802. "pageChangeEvent": {
  1803. "__id__": 78
  1804. },
  1805. "_virtual": true,
  1806. "cyclic": false,
  1807. "lackCenter": false,
  1808. "lackSlide": true,
  1809. "_updateRate": 0,
  1810. "frameByFrameRenderNum": 0,
  1811. "renderEvent": {
  1812. "__id__": 79
  1813. },
  1814. "selectedMode": 0,
  1815. "selectedEvent": {
  1816. "__id__": 80
  1817. },
  1818. "repeatEventSingle": false,
  1819. "_id": ""
  1820. },
  1821. {
  1822. "__type__": "cc.CompPrefabInfo",
  1823. "fileId": "5apu7IdbFLUYj49fzYbMXK"
  1824. },
  1825. {
  1826. "__type__": "cc.ClickEvent",
  1827. "target": null,
  1828. "component": "",
  1829. "_componentId": "",
  1830. "handler": "",
  1831. "customEventData": ""
  1832. },
  1833. {
  1834. "__type__": "cc.ClickEvent",
  1835. "target": {
  1836. "__id__": 1
  1837. },
  1838. "component": "",
  1839. "_componentId": "db8fe+gF19BuY439S5LU6Xy",
  1840. "handler": "onListRender",
  1841. "customEventData": ""
  1842. },
  1843. {
  1844. "__type__": "cc.ClickEvent",
  1845. "target": null,
  1846. "component": "",
  1847. "_componentId": "",
  1848. "handler": "",
  1849. "customEventData": ""
  1850. },
  1851. {
  1852. "__type__": "cc.PrefabInfo",
  1853. "root": {
  1854. "__id__": 1
  1855. },
  1856. "asset": {
  1857. "__id__": 0
  1858. },
  1859. "fileId": "b96bAQ2WRFP5M4BsEbtx4r",
  1860. "instance": null,
  1861. "targetOverrides": null,
  1862. "nestedPrefabInstanceRoots": null
  1863. },
  1864. {
  1865. "__type__": "cc.UITransform",
  1866. "_name": "",
  1867. "_objFlags": 0,
  1868. "__editorExtras__": {},
  1869. "node": {
  1870. "__id__": 1
  1871. },
  1872. "_enabled": true,
  1873. "__prefab": {
  1874. "__id__": 83
  1875. },
  1876. "_contentSize": {
  1877. "__type__": "cc.Size",
  1878. "width": 750,
  1879. "height": 1634
  1880. },
  1881. "_anchorPoint": {
  1882. "__type__": "cc.Vec2",
  1883. "x": 0.5,
  1884. "y": 0.5
  1885. },
  1886. "_id": ""
  1887. },
  1888. {
  1889. "__type__": "cc.CompPrefabInfo",
  1890. "fileId": "59Mb/Wlm9IW4LLe1YGQj0d"
  1891. },
  1892. {
  1893. "__type__": "cc.UIOpacity",
  1894. "_name": "",
  1895. "_objFlags": 0,
  1896. "__editorExtras__": {},
  1897. "node": {
  1898. "__id__": 1
  1899. },
  1900. "_enabled": true,
  1901. "__prefab": {
  1902. "__id__": 85
  1903. },
  1904. "_opacity": 255,
  1905. "_id": ""
  1906. },
  1907. {
  1908. "__type__": "cc.CompPrefabInfo",
  1909. "fileId": "6aTn1jIn5PQbQJ39YNUAeP"
  1910. },
  1911. {
  1912. "__type__": "db8fe+gF19BuY439S5LU6Xy",
  1913. "_name": "",
  1914. "_objFlags": 0,
  1915. "__editorExtras__": {},
  1916. "node": {
  1917. "__id__": 1
  1918. },
  1919. "_enabled": true,
  1920. "__prefab": {
  1921. "__id__": 87
  1922. },
  1923. "list": {
  1924. "__id__": 76
  1925. },
  1926. "_id": ""
  1927. },
  1928. {
  1929. "__type__": "cc.CompPrefabInfo",
  1930. "fileId": "feMue5351Go5VM90JChswd"
  1931. },
  1932. {
  1933. "__type__": "cc.Sprite",
  1934. "_name": "",
  1935. "_objFlags": 0,
  1936. "__editorExtras__": {},
  1937. "node": {
  1938. "__id__": 1
  1939. },
  1940. "_enabled": false,
  1941. "__prefab": {
  1942. "__id__": 89
  1943. },
  1944. "_customMaterial": null,
  1945. "_srcBlendFactor": 2,
  1946. "_dstBlendFactor": 4,
  1947. "_color": {
  1948. "__type__": "cc.Color",
  1949. "r": 255,
  1950. "g": 255,
  1951. "b": 255,
  1952. "a": 255
  1953. },
  1954. "_spriteFrame": {
  1955. "__uuid__": "57bc715c-6b13-42a8-8715-0226974994bc@f9941",
  1956. "__expectedType__": "cc.SpriteFrame"
  1957. },
  1958. "_type": 0,
  1959. "_fillType": 0,
  1960. "_sizeMode": 1,
  1961. "_fillCenter": {
  1962. "__type__": "cc.Vec2",
  1963. "x": 0,
  1964. "y": 0
  1965. },
  1966. "_fillStart": 0,
  1967. "_fillRange": 0,
  1968. "_isTrimmedMode": true,
  1969. "_useGrayscale": false,
  1970. "_atlas": null,
  1971. "_id": ""
  1972. },
  1973. {
  1974. "__type__": "cc.CompPrefabInfo",
  1975. "fileId": "31ZyoxBN5BQa8r2QxrHUHb"
  1976. },
  1977. {
  1978. "__type__": "cc.PrefabInfo",
  1979. "root": {
  1980. "__id__": 1
  1981. },
  1982. "asset": {
  1983. "__id__": 0
  1984. },
  1985. "fileId": "0fvB9NiRtKzpF214GIaudX",
  1986. "instance": null,
  1987. "targetOverrides": null
  1988. }
  1989. ]