announcement.prefab 38 KB

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