storeAlbum.prefab 48 KB

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