reward_tips_view.prefab 33 KB

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