TokenBuySureUI.prefab 43 KB

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