store_content.prefab 77 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362
  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": "store_content",
  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__": 126
  31. }
  32. ],
  33. "_prefab": {
  34. "__id__": 127
  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": 750,
  47. "height": 1334
  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": "60xcduMRtIGpz96wtQ/ya9"
  174. },
  175. {
  176. "__type__": "cc.BlockInputEvents",
  177. "_name": "",
  178. "_objFlags": 0,
  179. "node": {
  180. "__id__": 2
  181. },
  182. "_enabled": true,
  183. "_id": "d9iQAONcVOk4R/k9iUQqqu"
  184. },
  185. {
  186. "__type__": "cc.PrefabInfo",
  187. "root": {
  188. "__id__": 1
  189. },
  190. "asset": {
  191. "__uuid__": "cc01c6a6-0d71-48e4-a457-4519fcdfb398"
  192. },
  193. "fileId": "01xVA6k/lC2bP2+0hwgchA",
  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__": 11
  209. },
  210. {
  211. "__id__": 15
  212. },
  213. {
  214. "__id__": 26
  215. },
  216. {
  217. "__id__": 30
  218. },
  219. {
  220. "__id__": 68
  221. },
  222. {
  223. "__id__": 76
  224. },
  225. {
  226. "__id__": 89
  227. },
  228. {
  229. "__id__": 101
  230. },
  231. {
  232. "__id__": 113
  233. }
  234. ],
  235. "_active": true,
  236. "_level": 2,
  237. "_components": [],
  238. "_prefab": {
  239. "__id__": 125
  240. },
  241. "_opacity": 255,
  242. "_color": {
  243. "__type__": "cc.Color",
  244. "r": 255,
  245. "g": 255,
  246. "b": 255,
  247. "a": 255
  248. },
  249. "_contentSize": {
  250. "__type__": "cc.Size",
  251. "width": 736,
  252. "height": 992
  253. },
  254. "_anchorPoint": {
  255. "__type__": "cc.Vec2",
  256. "x": 0.5,
  257. "y": 0.5
  258. },
  259. "_position": {
  260. "__type__": "cc.Vec3",
  261. "x": 0,
  262. "y": -50,
  263. "z": 0
  264. },
  265. "_scale": {
  266. "__type__": "cc.Vec3",
  267. "x": 1,
  268. "y": 1,
  269. "z": 1
  270. },
  271. "_rotationX": 0,
  272. "_rotationY": 0,
  273. "_quat": {
  274. "__type__": "cc.Quat",
  275. "x": 0,
  276. "y": 0,
  277. "z": 0,
  278. "w": 1
  279. },
  280. "_skewX": 0,
  281. "_skewY": 0,
  282. "_zIndex": 0,
  283. "groupIndex": 0,
  284. "_id": ""
  285. },
  286. {
  287. "__type__": "cc.Node",
  288. "_name": "big_bg",
  289. "_objFlags": 0,
  290. "_parent": {
  291. "__id__": 6
  292. },
  293. "_children": [],
  294. "_active": true,
  295. "_level": 3,
  296. "_components": [
  297. {
  298. "__id__": 8
  299. },
  300. {
  301. "__id__": 9
  302. }
  303. ],
  304. "_prefab": {
  305. "__id__": 10
  306. },
  307. "_opacity": 255,
  308. "_color": {
  309. "__type__": "cc.Color",
  310. "r": 255,
  311. "g": 255,
  312. "b": 255,
  313. "a": 255
  314. },
  315. "_contentSize": {
  316. "__type__": "cc.Size",
  317. "width": 700,
  318. "height": 992
  319. },
  320. "_anchorPoint": {
  321. "__type__": "cc.Vec2",
  322. "x": 0.5,
  323. "y": 0.5
  324. },
  325. "_position": {
  326. "__type__": "cc.Vec3",
  327. "x": 0,
  328. "y": 0,
  329. "z": 0
  330. },
  331. "_scale": {
  332. "__type__": "cc.Vec3",
  333. "x": 1,
  334. "y": 1,
  335. "z": 1
  336. },
  337. "_rotationX": 0,
  338. "_rotationY": 0,
  339. "_quat": {
  340. "__type__": "cc.Quat",
  341. "x": 0,
  342. "y": 0,
  343. "z": 0,
  344. "w": 1
  345. },
  346. "_skewX": 0,
  347. "_skewY": 0,
  348. "_zIndex": 0,
  349. "groupIndex": 0,
  350. "_id": ""
  351. },
  352. {
  353. "__type__": "cc.Sprite",
  354. "_name": "",
  355. "_objFlags": 0,
  356. "node": {
  357. "__id__": 7
  358. },
  359. "_enabled": true,
  360. "_srcBlendFactor": 770,
  361. "_dstBlendFactor": 771,
  362. "_spriteFrame": {
  363. "__uuid__": "46fff2fd-a06a-4b3d-a835-547c67766224"
  364. },
  365. "_type": 1,
  366. "_sizeMode": 0,
  367. "_fillType": 0,
  368. "_fillCenter": {
  369. "__type__": "cc.Vec2",
  370. "x": 0,
  371. "y": 0
  372. },
  373. "_fillStart": 0,
  374. "_fillRange": 0,
  375. "_isTrimmedMode": true,
  376. "_state": 0,
  377. "_atlas": null,
  378. "_id": "9ci+bH3xlLtqHn3bhW5JXy"
  379. },
  380. {
  381. "__type__": "cc.Widget",
  382. "_name": "",
  383. "_objFlags": 0,
  384. "node": {
  385. "__id__": 7
  386. },
  387. "_enabled": true,
  388. "alignMode": 1,
  389. "_target": null,
  390. "_alignFlags": 45,
  391. "_left": 18,
  392. "_right": 18,
  393. "_top": 0,
  394. "_bottom": 0,
  395. "_verticalCenter": 0,
  396. "_horizontalCenter": 0,
  397. "_isAbsLeft": true,
  398. "_isAbsRight": true,
  399. "_isAbsTop": true,
  400. "_isAbsBottom": true,
  401. "_isAbsHorizontalCenter": true,
  402. "_isAbsVerticalCenter": true,
  403. "_originalWidth": 700,
  404. "_originalHeight": 992,
  405. "_id": "b9EEEol0RFnrhJvvajzAWr"
  406. },
  407. {
  408. "__type__": "cc.PrefabInfo",
  409. "root": {
  410. "__id__": 1
  411. },
  412. "asset": {
  413. "__uuid__": "cc01c6a6-0d71-48e4-a457-4519fcdfb398"
  414. },
  415. "fileId": "62Ca0u1BZC6LX/YmOn2jxM",
  416. "sync": false
  417. },
  418. {
  419. "__type__": "cc.Node",
  420. "_name": "label",
  421. "_objFlags": 0,
  422. "_parent": {
  423. "__id__": 6
  424. },
  425. "_children": [],
  426. "_active": true,
  427. "_level": 3,
  428. "_components": [
  429. {
  430. "__id__": 12
  431. },
  432. {
  433. "__id__": 13
  434. }
  435. ],
  436. "_prefab": {
  437. "__id__": 14
  438. },
  439. "_opacity": 255,
  440. "_color": {
  441. "__type__": "cc.Color",
  442. "r": 110,
  443. "g": 48,
  444. "b": 17,
  445. "a": 255
  446. },
  447. "_contentSize": {
  448. "__type__": "cc.Size",
  449. "width": 106.76,
  450. "height": 26
  451. },
  452. "_anchorPoint": {
  453. "__type__": "cc.Vec2",
  454. "x": 1,
  455. "y": 1
  456. },
  457. "_position": {
  458. "__type__": "cc.Vec3",
  459. "x": 303.99,
  460. "y": 410,
  461. "z": 0
  462. },
  463. "_scale": {
  464. "__type__": "cc.Vec3",
  465. "x": 1,
  466. "y": 1,
  467. "z": 1
  468. },
  469. "_rotationX": 0,
  470. "_rotationY": 0,
  471. "_quat": {
  472. "__type__": "cc.Quat",
  473. "x": 0,
  474. "y": 0,
  475. "z": 0,
  476. "w": 1
  477. },
  478. "_skewX": 0,
  479. "_skewY": 0,
  480. "_zIndex": 0,
  481. "groupIndex": 0,
  482. "_id": ""
  483. },
  484. {
  485. "__type__": "cc.Label",
  486. "_name": "",
  487. "_objFlags": 0,
  488. "node": {
  489. "__id__": 11
  490. },
  491. "_enabled": true,
  492. "_srcBlendFactor": 1,
  493. "_dstBlendFactor": 771,
  494. "_useOriginalSize": false,
  495. "_string": "fdafdafdfa",
  496. "_N$string": "fdafdafdfa",
  497. "_fontSize": 24,
  498. "_lineHeight": 26,
  499. "_enableWrapText": true,
  500. "_N$file": null,
  501. "_isSystemFontUsed": true,
  502. "_spacingX": 0,
  503. "_N$horizontalAlign": 0,
  504. "_N$verticalAlign": 1,
  505. "_N$fontFamily": "Arial",
  506. "_N$overflow": 0,
  507. "_id": "d51Ywkl5FLkKhIkIAIdujf"
  508. },
  509. {
  510. "__type__": "cc.Widget",
  511. "_name": "",
  512. "_objFlags": 0,
  513. "node": {
  514. "__id__": 11
  515. },
  516. "_enabled": true,
  517. "alignMode": 1,
  518. "_target": null,
  519. "_alignFlags": 33,
  520. "_left": 0,
  521. "_right": 64.00999999999998,
  522. "_top": 86,
  523. "_bottom": 0,
  524. "_verticalCenter": 0,
  525. "_horizontalCenter": 0,
  526. "_isAbsLeft": true,
  527. "_isAbsRight": true,
  528. "_isAbsTop": true,
  529. "_isAbsBottom": true,
  530. "_isAbsHorizontalCenter": true,
  531. "_isAbsVerticalCenter": true,
  532. "_originalWidth": 0,
  533. "_originalHeight": 0,
  534. "_id": "8cZ32EqQFDdZURoEKkTUrV"
  535. },
  536. {
  537. "__type__": "cc.PrefabInfo",
  538. "root": {
  539. "__id__": 1
  540. },
  541. "asset": {
  542. "__uuid__": "cc01c6a6-0d71-48e4-a457-4519fcdfb398"
  543. },
  544. "fileId": "e9rIzLIBVO05wyzAlUA2CO",
  545. "sync": false
  546. },
  547. {
  548. "__type__": "cc.Node",
  549. "_name": "diamiond_bg",
  550. "_objFlags": 0,
  551. "_parent": {
  552. "__id__": 6
  553. },
  554. "_children": [
  555. {
  556. "__id__": 16
  557. }
  558. ],
  559. "_active": true,
  560. "_level": 3,
  561. "_components": [
  562. {
  563. "__id__": 23
  564. },
  565. {
  566. "__id__": 24
  567. }
  568. ],
  569. "_prefab": {
  570. "__id__": 25
  571. },
  572. "_opacity": 255,
  573. "_color": {
  574. "__type__": "cc.Color",
  575. "r": 255,
  576. "g": 255,
  577. "b": 255,
  578. "a": 255
  579. },
  580. "_contentSize": {
  581. "__type__": "cc.Size",
  582. "width": 180,
  583. "height": 50
  584. },
  585. "_anchorPoint": {
  586. "__type__": "cc.Vec2",
  587. "x": 0.5,
  588. "y": 0.5
  589. },
  590. "_position": {
  591. "__type__": "cc.Vec3",
  592. "x": 0,
  593. "y": 395,
  594. "z": 0
  595. },
  596. "_scale": {
  597. "__type__": "cc.Vec3",
  598. "x": 1,
  599. "y": 1,
  600. "z": 1
  601. },
  602. "_rotationX": 0,
  603. "_rotationY": 0,
  604. "_quat": {
  605. "__type__": "cc.Quat",
  606. "x": 0,
  607. "y": 0,
  608. "z": 0,
  609. "w": 1
  610. },
  611. "_skewX": 0,
  612. "_skewY": 0,
  613. "_zIndex": 0,
  614. "groupIndex": 0,
  615. "_id": ""
  616. },
  617. {
  618. "__type__": "cc.Node",
  619. "_name": "starTitleRichText",
  620. "_objFlags": 0,
  621. "_parent": {
  622. "__id__": 15
  623. },
  624. "_children": [
  625. {
  626. "__id__": 17
  627. }
  628. ],
  629. "_active": true,
  630. "_level": 4,
  631. "_components": [
  632. {
  633. "__id__": 20
  634. },
  635. {
  636. "__id__": 21
  637. }
  638. ],
  639. "_prefab": {
  640. "__id__": 22
  641. },
  642. "_opacity": 255,
  643. "_color": {
  644. "__type__": "cc.Color",
  645. "r": 255,
  646. "g": 255,
  647. "b": 255,
  648. "a": 255
  649. },
  650. "_contentSize": {
  651. "__type__": "cc.Size",
  652. "width": 48,
  653. "height": 26
  654. },
  655. "_anchorPoint": {
  656. "__type__": "cc.Vec2",
  657. "x": 0.5,
  658. "y": 0.5
  659. },
  660. "_position": {
  661. "__type__": "cc.Vec3",
  662. "x": 0,
  663. "y": 0,
  664. "z": 0
  665. },
  666. "_scale": {
  667. "__type__": "cc.Vec3",
  668. "x": 1,
  669. "y": 1,
  670. "z": 1
  671. },
  672. "_rotationX": 0,
  673. "_rotationY": 0,
  674. "_quat": {
  675. "__type__": "cc.Quat",
  676. "x": 0,
  677. "y": 0,
  678. "z": 0,
  679. "w": 1
  680. },
  681. "_skewX": 0,
  682. "_skewY": 0,
  683. "_zIndex": 0,
  684. "groupIndex": 0,
  685. "_id": ""
  686. },
  687. {
  688. "__type__": "cc.PrivateNode",
  689. "_name": "RICHTEXT_CHILD",
  690. "_objFlags": 0,
  691. "_parent": {
  692. "__id__": 16
  693. },
  694. "_children": [],
  695. "_active": true,
  696. "_level": 5,
  697. "_components": [
  698. {
  699. "__id__": 18
  700. }
  701. ],
  702. "_prefab": {
  703. "__id__": 19
  704. },
  705. "_opacity": 255,
  706. "_color": {
  707. "__type__": "cc.Color",
  708. "r": 110,
  709. "g": 48,
  710. "b": 17,
  711. "a": 255
  712. },
  713. "_contentSize": {
  714. "__type__": "cc.Size",
  715. "width": 48,
  716. "height": 26
  717. },
  718. "_anchorPoint": {
  719. "__type__": "cc.Vec2",
  720. "x": 0,
  721. "y": 0
  722. },
  723. "_position": {
  724. "__type__": "cc.Vec3",
  725. "x": -24,
  726. "y": -13,
  727. "z": 0
  728. },
  729. "_scale": {
  730. "__type__": "cc.Vec3",
  731. "x": 1,
  732. "y": 1,
  733. "z": 1
  734. },
  735. "_rotationX": 0,
  736. "_rotationY": 0,
  737. "_quat": {
  738. "__type__": "cc.Quat",
  739. "x": 0,
  740. "y": 0,
  741. "z": 0,
  742. "w": 1
  743. },
  744. "_skewX": 0,
  745. "_skewY": 0,
  746. "_zIndex": -32768,
  747. "groupIndex": 0,
  748. "_id": ""
  749. },
  750. {
  751. "__type__": "cc.Label",
  752. "_name": "",
  753. "_objFlags": 0,
  754. "node": {
  755. "__id__": 17
  756. },
  757. "_enabled": true,
  758. "_srcBlendFactor": 1,
  759. "_dstBlendFactor": 771,
  760. "_useOriginalSize": true,
  761. "_string": "明星",
  762. "_N$string": "明星",
  763. "_fontSize": 24,
  764. "_lineHeight": 26,
  765. "_enableWrapText": true,
  766. "_N$file": null,
  767. "_isSystemFontUsed": true,
  768. "_spacingX": 0,
  769. "_N$horizontalAlign": 0,
  770. "_N$verticalAlign": 1,
  771. "_N$fontFamily": "Arial",
  772. "_N$overflow": 0,
  773. "_id": "faOrofHSlMgKAJxZztXVLx"
  774. },
  775. {
  776. "__type__": "cc.PrefabInfo",
  777. "root": {
  778. "__id__": 1
  779. },
  780. "asset": {
  781. "__uuid__": "cc01c6a6-0d71-48e4-a457-4519fcdfb398"
  782. },
  783. "fileId": "bcrC/osCZFzJZExDpTAqxz",
  784. "sync": false
  785. },
  786. {
  787. "__type__": "cc.RichText",
  788. "_name": "",
  789. "_objFlags": 0,
  790. "node": {
  791. "__id__": 16
  792. },
  793. "_enabled": true,
  794. "_N$string": "<b><color=#6E3011>明星</c></b>",
  795. "_N$horizontalAlign": 0,
  796. "_N$fontSize": 24,
  797. "_N$font": null,
  798. "_N$maxWidth": 0,
  799. "_N$lineHeight": 26,
  800. "_N$imageAtlas": {
  801. "__uuid__": "9a199f9b-2e79-467b-85f6-b6ebe5f54f18"
  802. },
  803. "_N$handleTouchEvent": true,
  804. "_id": "44GB4iMPxH7YoSAC4IibqV"
  805. },
  806. {
  807. "__type__": "cc.Widget",
  808. "_name": "",
  809. "_objFlags": 0,
  810. "node": {
  811. "__id__": 16
  812. },
  813. "_enabled": true,
  814. "alignMode": 1,
  815. "_target": null,
  816. "_alignFlags": 17,
  817. "_left": 0,
  818. "_right": 0,
  819. "_top": 12,
  820. "_bottom": 0,
  821. "_verticalCenter": 0,
  822. "_horizontalCenter": 0,
  823. "_isAbsLeft": true,
  824. "_isAbsRight": true,
  825. "_isAbsTop": true,
  826. "_isAbsBottom": true,
  827. "_isAbsHorizontalCenter": true,
  828. "_isAbsVerticalCenter": true,
  829. "_originalWidth": 0,
  830. "_originalHeight": 0,
  831. "_id": "3eXUNkx7lNRKbdIIcScpNr"
  832. },
  833. {
  834. "__type__": "cc.PrefabInfo",
  835. "root": {
  836. "__id__": 1
  837. },
  838. "asset": {
  839. "__uuid__": "cc01c6a6-0d71-48e4-a457-4519fcdfb398"
  840. },
  841. "fileId": "05bbdXJ01NTJoa8x3fBe2s",
  842. "sync": false
  843. },
  844. {
  845. "__type__": "cc.Sprite",
  846. "_name": "",
  847. "_objFlags": 0,
  848. "node": {
  849. "__id__": 15
  850. },
  851. "_enabled": true,
  852. "_srcBlendFactor": 770,
  853. "_dstBlendFactor": 771,
  854. "_spriteFrame": {
  855. "__uuid__": "e765852c-efa3-49c1-8c41-5f1d12ad4960"
  856. },
  857. "_type": 0,
  858. "_sizeMode": 1,
  859. "_fillType": 0,
  860. "_fillCenter": {
  861. "__type__": "cc.Vec2",
  862. "x": 0,
  863. "y": 0
  864. },
  865. "_fillStart": 0,
  866. "_fillRange": 0,
  867. "_isTrimmedMode": true,
  868. "_state": 0,
  869. "_atlas": null,
  870. "_id": "38BFPdl0VGGL8McaSOSUnc"
  871. },
  872. {
  873. "__type__": "cc.Widget",
  874. "_name": "",
  875. "_objFlags": 0,
  876. "node": {
  877. "__id__": 15
  878. },
  879. "_enabled": true,
  880. "alignMode": 1,
  881. "_target": null,
  882. "_alignFlags": 1,
  883. "_left": 0,
  884. "_right": 0,
  885. "_top": 76,
  886. "_bottom": 0,
  887. "_verticalCenter": 0,
  888. "_horizontalCenter": 0,
  889. "_isAbsLeft": true,
  890. "_isAbsRight": true,
  891. "_isAbsTop": true,
  892. "_isAbsBottom": true,
  893. "_isAbsHorizontalCenter": true,
  894. "_isAbsVerticalCenter": true,
  895. "_originalWidth": 0,
  896. "_originalHeight": 0,
  897. "_id": "63uwINjN9O7a5rjO8DCwdr"
  898. },
  899. {
  900. "__type__": "cc.PrefabInfo",
  901. "root": {
  902. "__id__": 1
  903. },
  904. "asset": {
  905. "__uuid__": "cc01c6a6-0d71-48e4-a457-4519fcdfb398"
  906. },
  907. "fileId": "c0HulQj65F0rMZHRWUrNqf",
  908. "sync": false
  909. },
  910. {
  911. "__type__": "cc.Node",
  912. "_name": "store_top_banner",
  913. "_objFlags": 0,
  914. "_parent": {
  915. "__id__": 6
  916. },
  917. "_children": [],
  918. "_active": true,
  919. "_level": 3,
  920. "_components": [
  921. {
  922. "__id__": 27
  923. },
  924. {
  925. "__id__": 28
  926. }
  927. ],
  928. "_prefab": {
  929. "__id__": 29
  930. },
  931. "_opacity": 255,
  932. "_color": {
  933. "__type__": "cc.Color",
  934. "r": 255,
  935. "g": 255,
  936. "b": 255,
  937. "a": 255
  938. },
  939. "_contentSize": {
  940. "__type__": "cc.Size",
  941. "width": 736,
  942. "height": 198
  943. },
  944. "_anchorPoint": {
  945. "__type__": "cc.Vec2",
  946. "x": 0.5,
  947. "y": 0.5
  948. },
  949. "_position": {
  950. "__type__": "cc.Vec3",
  951. "x": 0,
  952. "y": 500,
  953. "z": 0
  954. },
  955. "_scale": {
  956. "__type__": "cc.Vec3",
  957. "x": 1,
  958. "y": 1,
  959. "z": 1
  960. },
  961. "_rotationX": 0,
  962. "_rotationY": 0,
  963. "_quat": {
  964. "__type__": "cc.Quat",
  965. "x": 0,
  966. "y": 0,
  967. "z": 0,
  968. "w": 1
  969. },
  970. "_skewX": 0,
  971. "_skewY": 0,
  972. "_zIndex": 0,
  973. "groupIndex": 0,
  974. "_id": ""
  975. },
  976. {
  977. "__type__": "cc.Sprite",
  978. "_name": "",
  979. "_objFlags": 0,
  980. "node": {
  981. "__id__": 26
  982. },
  983. "_enabled": true,
  984. "_srcBlendFactor": 770,
  985. "_dstBlendFactor": 771,
  986. "_spriteFrame": {
  987. "__uuid__": "b9af76f3-8844-456f-9f3a-89ff930d1375"
  988. },
  989. "_type": 0,
  990. "_sizeMode": 0,
  991. "_fillType": 0,
  992. "_fillCenter": {
  993. "__type__": "cc.Vec2",
  994. "x": 0,
  995. "y": 0
  996. },
  997. "_fillStart": 0,
  998. "_fillRange": 0,
  999. "_isTrimmedMode": true,
  1000. "_state": 0,
  1001. "_atlas": null,
  1002. "_id": "53C86Fuo5KSqsl/9GcKgLT"
  1003. },
  1004. {
  1005. "__type__": "cc.Widget",
  1006. "_name": "",
  1007. "_objFlags": 0,
  1008. "node": {
  1009. "__id__": 26
  1010. },
  1011. "_enabled": true,
  1012. "alignMode": 1,
  1013. "_target": null,
  1014. "_alignFlags": 1,
  1015. "_left": 0,
  1016. "_right": 0,
  1017. "_top": -103,
  1018. "_bottom": 845.5,
  1019. "_verticalCenter": 0,
  1020. "_horizontalCenter": 0,
  1021. "_isAbsLeft": true,
  1022. "_isAbsRight": true,
  1023. "_isAbsTop": true,
  1024. "_isAbsBottom": true,
  1025. "_isAbsHorizontalCenter": true,
  1026. "_isAbsVerticalCenter": true,
  1027. "_originalWidth": 0,
  1028. "_originalHeight": 198,
  1029. "_id": "30q42rgS1CkrOcgr/4Mz4K"
  1030. },
  1031. {
  1032. "__type__": "cc.PrefabInfo",
  1033. "root": {
  1034. "__id__": 1
  1035. },
  1036. "asset": {
  1037. "__uuid__": "cc01c6a6-0d71-48e4-a457-4519fcdfb398"
  1038. },
  1039. "fileId": "e58DiMTZ1AmYc5gUUWrsTC",
  1040. "sync": false
  1041. },
  1042. {
  1043. "__type__": "cc.Node",
  1044. "_name": "store_top",
  1045. "_objFlags": 0,
  1046. "_parent": {
  1047. "__id__": 6
  1048. },
  1049. "_children": [
  1050. {
  1051. "__id__": 31
  1052. },
  1053. {
  1054. "__id__": 38
  1055. },
  1056. {
  1057. "__id__": 48
  1058. },
  1059. {
  1060. "__id__": 58
  1061. }
  1062. ],
  1063. "_active": true,
  1064. "_level": 3,
  1065. "_components": [
  1066. {
  1067. "__id__": 65
  1068. },
  1069. {
  1070. "__id__": 66
  1071. }
  1072. ],
  1073. "_prefab": {
  1074. "__id__": 67
  1075. },
  1076. "_opacity": 255,
  1077. "_color": {
  1078. "__type__": "cc.Color",
  1079. "r": 255,
  1080. "g": 255,
  1081. "b": 255,
  1082. "a": 255
  1083. },
  1084. "_contentSize": {
  1085. "__type__": "cc.Size",
  1086. "width": 666,
  1087. "height": 100
  1088. },
  1089. "_anchorPoint": {
  1090. "__type__": "cc.Vec2",
  1091. "x": 0.5,
  1092. "y": 0.5
  1093. },
  1094. "_position": {
  1095. "__type__": "cc.Vec3",
  1096. "x": 0,
  1097. "y": 313,
  1098. "z": 0
  1099. },
  1100. "_scale": {
  1101. "__type__": "cc.Vec3",
  1102. "x": 1,
  1103. "y": 1,
  1104. "z": 1
  1105. },
  1106. "_rotationX": 0,
  1107. "_rotationY": 0,
  1108. "_quat": {
  1109. "__type__": "cc.Quat",
  1110. "x": 0,
  1111. "y": 0,
  1112. "z": 0,
  1113. "w": 1
  1114. },
  1115. "_skewX": 0,
  1116. "_skewY": 0,
  1117. "_zIndex": 0,
  1118. "groupIndex": 0,
  1119. "_id": ""
  1120. },
  1121. {
  1122. "__type__": "cc.Node",
  1123. "_name": "button",
  1124. "_objFlags": 0,
  1125. "_parent": {
  1126. "__id__": 30
  1127. },
  1128. "_children": [
  1129. {
  1130. "__id__": 32
  1131. }
  1132. ],
  1133. "_active": true,
  1134. "_level": 4,
  1135. "_components": [
  1136. {
  1137. "__id__": 35
  1138. }
  1139. ],
  1140. "_prefab": {
  1141. "__id__": 37
  1142. },
  1143. "_opacity": 255,
  1144. "_color": {
  1145. "__type__": "cc.Color",
  1146. "r": 255,
  1147. "g": 255,
  1148. "b": 255,
  1149. "a": 255
  1150. },
  1151. "_contentSize": {
  1152. "__type__": "cc.Size",
  1153. "width": 150,
  1154. "height": 96
  1155. },
  1156. "_anchorPoint": {
  1157. "__type__": "cc.Vec2",
  1158. "x": 0.5,
  1159. "y": 0.5
  1160. },
  1161. "_position": {
  1162. "__type__": "cc.Vec3",
  1163. "x": -243,
  1164. "y": 0,
  1165. "z": 0
  1166. },
  1167. "_scale": {
  1168. "__type__": "cc.Vec3",
  1169. "x": 1,
  1170. "y": 1,
  1171. "z": 1
  1172. },
  1173. "_rotationX": 0,
  1174. "_rotationY": 0,
  1175. "_quat": {
  1176. "__type__": "cc.Quat",
  1177. "x": 0,
  1178. "y": 0,
  1179. "z": 0,
  1180. "w": 1
  1181. },
  1182. "_skewX": 0,
  1183. "_skewY": 0,
  1184. "_zIndex": 0,
  1185. "groupIndex": 0,
  1186. "_id": ""
  1187. },
  1188. {
  1189. "__type__": "cc.Node",
  1190. "_name": "80001_s",
  1191. "_objFlags": 0,
  1192. "_parent": {
  1193. "__id__": 31
  1194. },
  1195. "_children": [],
  1196. "_active": true,
  1197. "_level": 5,
  1198. "_components": [
  1199. {
  1200. "__id__": 33
  1201. }
  1202. ],
  1203. "_prefab": {
  1204. "__id__": 34
  1205. },
  1206. "_opacity": 255,
  1207. "_color": {
  1208. "__type__": "cc.Color",
  1209. "r": 255,
  1210. "g": 255,
  1211. "b": 255,
  1212. "a": 255
  1213. },
  1214. "_contentSize": {
  1215. "__type__": "cc.Size",
  1216. "width": 150,
  1217. "height": 96
  1218. },
  1219. "_anchorPoint": {
  1220. "__type__": "cc.Vec2",
  1221. "x": 0.5,
  1222. "y": 0.5
  1223. },
  1224. "_position": {
  1225. "__type__": "cc.Vec3",
  1226. "x": 0,
  1227. "y": 0,
  1228. "z": 0
  1229. },
  1230. "_scale": {
  1231. "__type__": "cc.Vec3",
  1232. "x": 1,
  1233. "y": 1,
  1234. "z": 1
  1235. },
  1236. "_rotationX": 0,
  1237. "_rotationY": 0,
  1238. "_quat": {
  1239. "__type__": "cc.Quat",
  1240. "x": 0,
  1241. "y": 0,
  1242. "z": 0,
  1243. "w": 1
  1244. },
  1245. "_skewX": 0,
  1246. "_skewY": 0,
  1247. "_zIndex": 0,
  1248. "groupIndex": 0,
  1249. "_id": ""
  1250. },
  1251. {
  1252. "__type__": "cc.Sprite",
  1253. "_name": "",
  1254. "_objFlags": 0,
  1255. "node": {
  1256. "__id__": 32
  1257. },
  1258. "_enabled": true,
  1259. "_srcBlendFactor": 770,
  1260. "_dstBlendFactor": 771,
  1261. "_spriteFrame": {
  1262. "__uuid__": "7dc823cf-0055-4090-bb89-84d4abc3a504"
  1263. },
  1264. "_type": 0,
  1265. "_sizeMode": 1,
  1266. "_fillType": 0,
  1267. "_fillCenter": {
  1268. "__type__": "cc.Vec2",
  1269. "x": 0,
  1270. "y": 0
  1271. },
  1272. "_fillStart": 0,
  1273. "_fillRange": 0,
  1274. "_isTrimmedMode": true,
  1275. "_state": 0,
  1276. "_atlas": null,
  1277. "_id": "3f3JUZDAtDJrWC2sVLV5t6"
  1278. },
  1279. {
  1280. "__type__": "cc.PrefabInfo",
  1281. "root": {
  1282. "__id__": 1
  1283. },
  1284. "asset": {
  1285. "__uuid__": "cc01c6a6-0d71-48e4-a457-4519fcdfb398"
  1286. },
  1287. "fileId": "a7ey/428pPo7Rk+ag/xAOG",
  1288. "sync": false
  1289. },
  1290. {
  1291. "__type__": "cc.Button",
  1292. "_name": "",
  1293. "_objFlags": 0,
  1294. "node": {
  1295. "__id__": 31
  1296. },
  1297. "_enabled": true,
  1298. "transition": 1,
  1299. "pressedColor": {
  1300. "__type__": "cc.Color",
  1301. "r": 120,
  1302. "g": 120,
  1303. "b": 120,
  1304. "a": 255
  1305. },
  1306. "hoverColor": {
  1307. "__type__": "cc.Color",
  1308. "r": 255,
  1309. "g": 255,
  1310. "b": 255,
  1311. "a": 255
  1312. },
  1313. "duration": 0.1,
  1314. "zoomScale": 1.2,
  1315. "clickEvents": [
  1316. {
  1317. "__id__": 36
  1318. }
  1319. ],
  1320. "_N$interactable": true,
  1321. "_N$enableAutoGrayEffect": false,
  1322. "_N$normalColor": {
  1323. "__type__": "cc.Color",
  1324. "r": 255,
  1325. "g": 255,
  1326. "b": 255,
  1327. "a": 255
  1328. },
  1329. "_N$disabledColor": {
  1330. "__type__": "cc.Color",
  1331. "r": 255,
  1332. "g": 255,
  1333. "b": 255,
  1334. "a": 255
  1335. },
  1336. "_N$normalSprite": {
  1337. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  1338. },
  1339. "_N$pressedSprite": {
  1340. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  1341. },
  1342. "pressedSprite": {
  1343. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  1344. },
  1345. "_N$hoverSprite": {
  1346. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  1347. },
  1348. "hoverSprite": {
  1349. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  1350. },
  1351. "_N$disabledSprite": {
  1352. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  1353. },
  1354. "_N$target": {
  1355. "__id__": 31
  1356. },
  1357. "_id": "63P6y5YZBM3KzwF9ToM678"
  1358. },
  1359. {
  1360. "__type__": "cc.ClickEvent",
  1361. "target": {
  1362. "__id__": 1
  1363. },
  1364. "component": "StoreContent",
  1365. "handler": "tabButtonAction",
  1366. "customEventData": "1"
  1367. },
  1368. {
  1369. "__type__": "cc.PrefabInfo",
  1370. "root": {
  1371. "__id__": 1
  1372. },
  1373. "asset": {
  1374. "__uuid__": "cc01c6a6-0d71-48e4-a457-4519fcdfb398"
  1375. },
  1376. "fileId": "b6mu2VkSZEzKKj9von2gf3",
  1377. "sync": false
  1378. },
  1379. {
  1380. "__type__": "cc.Node",
  1381. "_name": "button",
  1382. "_objFlags": 0,
  1383. "_parent": {
  1384. "__id__": 30
  1385. },
  1386. "_children": [
  1387. {
  1388. "__id__": 39
  1389. },
  1390. {
  1391. "__id__": 42
  1392. }
  1393. ],
  1394. "_active": true,
  1395. "_level": 4,
  1396. "_components": [
  1397. {
  1398. "__id__": 45
  1399. }
  1400. ],
  1401. "_prefab": {
  1402. "__id__": 47
  1403. },
  1404. "_opacity": 255,
  1405. "_color": {
  1406. "__type__": "cc.Color",
  1407. "r": 255,
  1408. "g": 255,
  1409. "b": 255,
  1410. "a": 255
  1411. },
  1412. "_contentSize": {
  1413. "__type__": "cc.Size",
  1414. "width": 150,
  1415. "height": 80
  1416. },
  1417. "_anchorPoint": {
  1418. "__type__": "cc.Vec2",
  1419. "x": 0.5,
  1420. "y": 0.5
  1421. },
  1422. "_position": {
  1423. "__type__": "cc.Vec3",
  1424. "x": -81,
  1425. "y": 0,
  1426. "z": 0
  1427. },
  1428. "_scale": {
  1429. "__type__": "cc.Vec3",
  1430. "x": 1,
  1431. "y": 1,
  1432. "z": 1
  1433. },
  1434. "_rotationX": 0,
  1435. "_rotationY": 0,
  1436. "_quat": {
  1437. "__type__": "cc.Quat",
  1438. "x": 0,
  1439. "y": 0,
  1440. "z": 0,
  1441. "w": 1
  1442. },
  1443. "_skewX": 0,
  1444. "_skewY": 0,
  1445. "_zIndex": 0,
  1446. "groupIndex": 0,
  1447. "_id": ""
  1448. },
  1449. {
  1450. "__type__": "cc.Node",
  1451. "_name": "80002_u",
  1452. "_objFlags": 0,
  1453. "_parent": {
  1454. "__id__": 38
  1455. },
  1456. "_children": [],
  1457. "_active": true,
  1458. "_level": 5,
  1459. "_components": [
  1460. {
  1461. "__id__": 40
  1462. }
  1463. ],
  1464. "_prefab": {
  1465. "__id__": 41
  1466. },
  1467. "_opacity": 255,
  1468. "_color": {
  1469. "__type__": "cc.Color",
  1470. "r": 255,
  1471. "g": 255,
  1472. "b": 255,
  1473. "a": 255
  1474. },
  1475. "_contentSize": {
  1476. "__type__": "cc.Size",
  1477. "width": 150,
  1478. "height": 80
  1479. },
  1480. "_anchorPoint": {
  1481. "__type__": "cc.Vec2",
  1482. "x": 0.5,
  1483. "y": 0.5
  1484. },
  1485. "_position": {
  1486. "__type__": "cc.Vec3",
  1487. "x": 0,
  1488. "y": 0,
  1489. "z": 0
  1490. },
  1491. "_scale": {
  1492. "__type__": "cc.Vec3",
  1493. "x": 1,
  1494. "y": 1,
  1495. "z": 1
  1496. },
  1497. "_rotationX": 0,
  1498. "_rotationY": 0,
  1499. "_quat": {
  1500. "__type__": "cc.Quat",
  1501. "x": 0,
  1502. "y": 0,
  1503. "z": 0,
  1504. "w": 1
  1505. },
  1506. "_skewX": 0,
  1507. "_skewY": 0,
  1508. "_zIndex": 0,
  1509. "groupIndex": 0,
  1510. "_id": ""
  1511. },
  1512. {
  1513. "__type__": "cc.Sprite",
  1514. "_name": "",
  1515. "_objFlags": 0,
  1516. "node": {
  1517. "__id__": 39
  1518. },
  1519. "_enabled": true,
  1520. "_srcBlendFactor": 770,
  1521. "_dstBlendFactor": 771,
  1522. "_spriteFrame": {
  1523. "__uuid__": "16d92df0-d5cd-4d13-980f-8f6c6d555ab9"
  1524. },
  1525. "_type": 0,
  1526. "_sizeMode": 1,
  1527. "_fillType": 0,
  1528. "_fillCenter": {
  1529. "__type__": "cc.Vec2",
  1530. "x": 0,
  1531. "y": 0
  1532. },
  1533. "_fillStart": 0,
  1534. "_fillRange": 0,
  1535. "_isTrimmedMode": true,
  1536. "_state": 0,
  1537. "_atlas": null,
  1538. "_id": "3cmeFy/h9OR7fdl7YS+Z/X"
  1539. },
  1540. {
  1541. "__type__": "cc.PrefabInfo",
  1542. "root": {
  1543. "__id__": 1
  1544. },
  1545. "asset": {
  1546. "__uuid__": "cc01c6a6-0d71-48e4-a457-4519fcdfb398"
  1547. },
  1548. "fileId": "4dja6YPbpC/p1Tok/4pjl3",
  1549. "sync": false
  1550. },
  1551. {
  1552. "__type__": "cc.Node",
  1553. "_name": "notice_point",
  1554. "_objFlags": 0,
  1555. "_parent": {
  1556. "__id__": 38
  1557. },
  1558. "_children": [],
  1559. "_active": false,
  1560. "_level": 5,
  1561. "_components": [
  1562. {
  1563. "__id__": 43
  1564. }
  1565. ],
  1566. "_prefab": {
  1567. "__id__": 44
  1568. },
  1569. "_opacity": 255,
  1570. "_color": {
  1571. "__type__": "cc.Color",
  1572. "r": 255,
  1573. "g": 255,
  1574. "b": 255,
  1575. "a": 255
  1576. },
  1577. "_contentSize": {
  1578. "__type__": "cc.Size",
  1579. "width": 22,
  1580. "height": 23
  1581. },
  1582. "_anchorPoint": {
  1583. "__type__": "cc.Vec2",
  1584. "x": 0.5,
  1585. "y": 0.5
  1586. },
  1587. "_position": {
  1588. "__type__": "cc.Vec3",
  1589. "x": 63,
  1590. "y": 31,
  1591. "z": 0
  1592. },
  1593. "_scale": {
  1594. "__type__": "cc.Vec3",
  1595. "x": 1,
  1596. "y": 1,
  1597. "z": 1
  1598. },
  1599. "_rotationX": 0,
  1600. "_rotationY": 0,
  1601. "_quat": {
  1602. "__type__": "cc.Quat",
  1603. "x": 0,
  1604. "y": 0,
  1605. "z": 0,
  1606. "w": 1
  1607. },
  1608. "_skewX": 0,
  1609. "_skewY": 0,
  1610. "_zIndex": 0,
  1611. "groupIndex": 0,
  1612. "_id": ""
  1613. },
  1614. {
  1615. "__type__": "cc.Sprite",
  1616. "_name": "",
  1617. "_objFlags": 0,
  1618. "node": {
  1619. "__id__": 42
  1620. },
  1621. "_enabled": true,
  1622. "_srcBlendFactor": 770,
  1623. "_dstBlendFactor": 771,
  1624. "_spriteFrame": {
  1625. "__uuid__": "58d3f5a3-1941-49af-822a-e8e04f7e457e"
  1626. },
  1627. "_type": 0,
  1628. "_sizeMode": 1,
  1629. "_fillType": 0,
  1630. "_fillCenter": {
  1631. "__type__": "cc.Vec2",
  1632. "x": 0,
  1633. "y": 0
  1634. },
  1635. "_fillStart": 0,
  1636. "_fillRange": 0,
  1637. "_isTrimmedMode": true,
  1638. "_state": 0,
  1639. "_atlas": null,
  1640. "_id": "5c8YlSpm5JJL4MIuAQ329a"
  1641. },
  1642. {
  1643. "__type__": "cc.PrefabInfo",
  1644. "root": {
  1645. "__id__": 1
  1646. },
  1647. "asset": {
  1648. "__uuid__": "cc01c6a6-0d71-48e4-a457-4519fcdfb398"
  1649. },
  1650. "fileId": "a48wj1smVE8LxHTKL11q1e",
  1651. "sync": false
  1652. },
  1653. {
  1654. "__type__": "cc.Button",
  1655. "_name": "",
  1656. "_objFlags": 0,
  1657. "node": {
  1658. "__id__": 38
  1659. },
  1660. "_enabled": true,
  1661. "transition": 1,
  1662. "pressedColor": {
  1663. "__type__": "cc.Color",
  1664. "r": 120,
  1665. "g": 120,
  1666. "b": 120,
  1667. "a": 255
  1668. },
  1669. "hoverColor": {
  1670. "__type__": "cc.Color",
  1671. "r": 255,
  1672. "g": 255,
  1673. "b": 255,
  1674. "a": 255
  1675. },
  1676. "duration": 0.1,
  1677. "zoomScale": 1.2,
  1678. "clickEvents": [
  1679. {
  1680. "__id__": 46
  1681. }
  1682. ],
  1683. "_N$interactable": true,
  1684. "_N$enableAutoGrayEffect": false,
  1685. "_N$normalColor": {
  1686. "__type__": "cc.Color",
  1687. "r": 255,
  1688. "g": 255,
  1689. "b": 255,
  1690. "a": 255
  1691. },
  1692. "_N$disabledColor": {
  1693. "__type__": "cc.Color",
  1694. "r": 255,
  1695. "g": 255,
  1696. "b": 255,
  1697. "a": 255
  1698. },
  1699. "_N$normalSprite": {
  1700. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  1701. },
  1702. "_N$pressedSprite": {
  1703. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  1704. },
  1705. "pressedSprite": {
  1706. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  1707. },
  1708. "_N$hoverSprite": {
  1709. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  1710. },
  1711. "hoverSprite": {
  1712. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  1713. },
  1714. "_N$disabledSprite": {
  1715. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  1716. },
  1717. "_N$target": {
  1718. "__id__": 38
  1719. },
  1720. "_id": "34LtH01rtO16kIUvwHtBPn"
  1721. },
  1722. {
  1723. "__type__": "cc.ClickEvent",
  1724. "target": {
  1725. "__id__": 1
  1726. },
  1727. "component": "StoreContent",
  1728. "handler": "tabButtonAction",
  1729. "customEventData": "2"
  1730. },
  1731. {
  1732. "__type__": "cc.PrefabInfo",
  1733. "root": {
  1734. "__id__": 1
  1735. },
  1736. "asset": {
  1737. "__uuid__": "cc01c6a6-0d71-48e4-a457-4519fcdfb398"
  1738. },
  1739. "fileId": "57+d2Jr1lFlob2VxMDrY9+",
  1740. "sync": false
  1741. },
  1742. {
  1743. "__type__": "cc.Node",
  1744. "_name": "button",
  1745. "_objFlags": 0,
  1746. "_parent": {
  1747. "__id__": 30
  1748. },
  1749. "_children": [
  1750. {
  1751. "__id__": 49
  1752. },
  1753. {
  1754. "__id__": 52
  1755. }
  1756. ],
  1757. "_active": true,
  1758. "_level": 4,
  1759. "_components": [
  1760. {
  1761. "__id__": 55
  1762. }
  1763. ],
  1764. "_prefab": {
  1765. "__id__": 57
  1766. },
  1767. "_opacity": 255,
  1768. "_color": {
  1769. "__type__": "cc.Color",
  1770. "r": 255,
  1771. "g": 255,
  1772. "b": 255,
  1773. "a": 255
  1774. },
  1775. "_contentSize": {
  1776. "__type__": "cc.Size",
  1777. "width": 150,
  1778. "height": 80
  1779. },
  1780. "_anchorPoint": {
  1781. "__type__": "cc.Vec2",
  1782. "x": 0.5,
  1783. "y": 0.5
  1784. },
  1785. "_position": {
  1786. "__type__": "cc.Vec3",
  1787. "x": 81,
  1788. "y": 0,
  1789. "z": 0
  1790. },
  1791. "_scale": {
  1792. "__type__": "cc.Vec3",
  1793. "x": 1,
  1794. "y": 1,
  1795. "z": 1
  1796. },
  1797. "_rotationX": 0,
  1798. "_rotationY": 0,
  1799. "_quat": {
  1800. "__type__": "cc.Quat",
  1801. "x": 0,
  1802. "y": 0,
  1803. "z": 0,
  1804. "w": 1
  1805. },
  1806. "_skewX": 0,
  1807. "_skewY": 0,
  1808. "_zIndex": 0,
  1809. "groupIndex": 0,
  1810. "_id": ""
  1811. },
  1812. {
  1813. "__type__": "cc.Node",
  1814. "_name": "80003_u",
  1815. "_objFlags": 0,
  1816. "_parent": {
  1817. "__id__": 48
  1818. },
  1819. "_children": [],
  1820. "_active": true,
  1821. "_level": 5,
  1822. "_components": [
  1823. {
  1824. "__id__": 50
  1825. }
  1826. ],
  1827. "_prefab": {
  1828. "__id__": 51
  1829. },
  1830. "_opacity": 255,
  1831. "_color": {
  1832. "__type__": "cc.Color",
  1833. "r": 255,
  1834. "g": 255,
  1835. "b": 255,
  1836. "a": 255
  1837. },
  1838. "_contentSize": {
  1839. "__type__": "cc.Size",
  1840. "width": 150,
  1841. "height": 80
  1842. },
  1843. "_anchorPoint": {
  1844. "__type__": "cc.Vec2",
  1845. "x": 0.5,
  1846. "y": 0.5
  1847. },
  1848. "_position": {
  1849. "__type__": "cc.Vec3",
  1850. "x": 0,
  1851. "y": 0,
  1852. "z": 0
  1853. },
  1854. "_scale": {
  1855. "__type__": "cc.Vec3",
  1856. "x": 1,
  1857. "y": 1,
  1858. "z": 1
  1859. },
  1860. "_rotationX": 0,
  1861. "_rotationY": 0,
  1862. "_quat": {
  1863. "__type__": "cc.Quat",
  1864. "x": 0,
  1865. "y": 0,
  1866. "z": 0,
  1867. "w": 1
  1868. },
  1869. "_skewX": 0,
  1870. "_skewY": 0,
  1871. "_zIndex": 0,
  1872. "groupIndex": 0,
  1873. "_id": ""
  1874. },
  1875. {
  1876. "__type__": "cc.Sprite",
  1877. "_name": "",
  1878. "_objFlags": 0,
  1879. "node": {
  1880. "__id__": 49
  1881. },
  1882. "_enabled": true,
  1883. "_srcBlendFactor": 770,
  1884. "_dstBlendFactor": 771,
  1885. "_spriteFrame": {
  1886. "__uuid__": "5e763bee-abec-4069-94b4-55f4e2ee3272"
  1887. },
  1888. "_type": 0,
  1889. "_sizeMode": 1,
  1890. "_fillType": 0,
  1891. "_fillCenter": {
  1892. "__type__": "cc.Vec2",
  1893. "x": 0,
  1894. "y": 0
  1895. },
  1896. "_fillStart": 0,
  1897. "_fillRange": 0,
  1898. "_isTrimmedMode": true,
  1899. "_state": 0,
  1900. "_atlas": null,
  1901. "_id": "61v1MxNMFCPLqnRMnhFM5W"
  1902. },
  1903. {
  1904. "__type__": "cc.PrefabInfo",
  1905. "root": {
  1906. "__id__": 1
  1907. },
  1908. "asset": {
  1909. "__uuid__": "cc01c6a6-0d71-48e4-a457-4519fcdfb398"
  1910. },
  1911. "fileId": "98uxe7jEdIjqEYwyybJQno",
  1912. "sync": false
  1913. },
  1914. {
  1915. "__type__": "cc.Node",
  1916. "_name": "notice_point",
  1917. "_objFlags": 0,
  1918. "_parent": {
  1919. "__id__": 48
  1920. },
  1921. "_children": [],
  1922. "_active": false,
  1923. "_level": 5,
  1924. "_components": [
  1925. {
  1926. "__id__": 53
  1927. }
  1928. ],
  1929. "_prefab": {
  1930. "__id__": 54
  1931. },
  1932. "_opacity": 255,
  1933. "_color": {
  1934. "__type__": "cc.Color",
  1935. "r": 255,
  1936. "g": 255,
  1937. "b": 255,
  1938. "a": 255
  1939. },
  1940. "_contentSize": {
  1941. "__type__": "cc.Size",
  1942. "width": 22,
  1943. "height": 23
  1944. },
  1945. "_anchorPoint": {
  1946. "__type__": "cc.Vec2",
  1947. "x": 0.5,
  1948. "y": 0.5
  1949. },
  1950. "_position": {
  1951. "__type__": "cc.Vec3",
  1952. "x": 63,
  1953. "y": 31,
  1954. "z": 0
  1955. },
  1956. "_scale": {
  1957. "__type__": "cc.Vec3",
  1958. "x": 1,
  1959. "y": 1,
  1960. "z": 1
  1961. },
  1962. "_rotationX": 0,
  1963. "_rotationY": 0,
  1964. "_quat": {
  1965. "__type__": "cc.Quat",
  1966. "x": 0,
  1967. "y": 0,
  1968. "z": 0,
  1969. "w": 1
  1970. },
  1971. "_skewX": 0,
  1972. "_skewY": 0,
  1973. "_zIndex": 0,
  1974. "groupIndex": 0,
  1975. "_id": ""
  1976. },
  1977. {
  1978. "__type__": "cc.Sprite",
  1979. "_name": "",
  1980. "_objFlags": 0,
  1981. "node": {
  1982. "__id__": 52
  1983. },
  1984. "_enabled": true,
  1985. "_srcBlendFactor": 770,
  1986. "_dstBlendFactor": 771,
  1987. "_spriteFrame": {
  1988. "__uuid__": "58d3f5a3-1941-49af-822a-e8e04f7e457e"
  1989. },
  1990. "_type": 0,
  1991. "_sizeMode": 1,
  1992. "_fillType": 0,
  1993. "_fillCenter": {
  1994. "__type__": "cc.Vec2",
  1995. "x": 0,
  1996. "y": 0
  1997. },
  1998. "_fillStart": 0,
  1999. "_fillRange": 0,
  2000. "_isTrimmedMode": true,
  2001. "_state": 0,
  2002. "_atlas": null,
  2003. "_id": "78TN1okVZD+I2MTvT89g0B"
  2004. },
  2005. {
  2006. "__type__": "cc.PrefabInfo",
  2007. "root": {
  2008. "__id__": 1
  2009. },
  2010. "asset": {
  2011. "__uuid__": "cc01c6a6-0d71-48e4-a457-4519fcdfb398"
  2012. },
  2013. "fileId": "feM4R7MqxOgL8uDKYtOJgc",
  2014. "sync": false
  2015. },
  2016. {
  2017. "__type__": "cc.Button",
  2018. "_name": "",
  2019. "_objFlags": 0,
  2020. "node": {
  2021. "__id__": 48
  2022. },
  2023. "_enabled": true,
  2024. "transition": 1,
  2025. "pressedColor": {
  2026. "__type__": "cc.Color",
  2027. "r": 120,
  2028. "g": 120,
  2029. "b": 120,
  2030. "a": 255
  2031. },
  2032. "hoverColor": {
  2033. "__type__": "cc.Color",
  2034. "r": 255,
  2035. "g": 255,
  2036. "b": 255,
  2037. "a": 255
  2038. },
  2039. "duration": 0.1,
  2040. "zoomScale": 1.2,
  2041. "clickEvents": [
  2042. {
  2043. "__id__": 56
  2044. }
  2045. ],
  2046. "_N$interactable": true,
  2047. "_N$enableAutoGrayEffect": false,
  2048. "_N$normalColor": {
  2049. "__type__": "cc.Color",
  2050. "r": 255,
  2051. "g": 255,
  2052. "b": 255,
  2053. "a": 255
  2054. },
  2055. "_N$disabledColor": {
  2056. "__type__": "cc.Color",
  2057. "r": 255,
  2058. "g": 255,
  2059. "b": 255,
  2060. "a": 255
  2061. },
  2062. "_N$normalSprite": {
  2063. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  2064. },
  2065. "_N$pressedSprite": {
  2066. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  2067. },
  2068. "pressedSprite": {
  2069. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  2070. },
  2071. "_N$hoverSprite": {
  2072. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  2073. },
  2074. "hoverSprite": {
  2075. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  2076. },
  2077. "_N$disabledSprite": {
  2078. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  2079. },
  2080. "_N$target": {
  2081. "__id__": 48
  2082. },
  2083. "_id": "daBkDerdlL8KPQ9UaQfC3J"
  2084. },
  2085. {
  2086. "__type__": "cc.ClickEvent",
  2087. "target": {
  2088. "__id__": 1
  2089. },
  2090. "component": "StoreContent",
  2091. "handler": "tabButtonAction",
  2092. "customEventData": "3"
  2093. },
  2094. {
  2095. "__type__": "cc.PrefabInfo",
  2096. "root": {
  2097. "__id__": 1
  2098. },
  2099. "asset": {
  2100. "__uuid__": "cc01c6a6-0d71-48e4-a457-4519fcdfb398"
  2101. },
  2102. "fileId": "3daCbSPlZJZqgXC3xk/ls6",
  2103. "sync": false
  2104. },
  2105. {
  2106. "__type__": "cc.Node",
  2107. "_name": "button",
  2108. "_objFlags": 0,
  2109. "_parent": {
  2110. "__id__": 30
  2111. },
  2112. "_children": [
  2113. {
  2114. "__id__": 59
  2115. }
  2116. ],
  2117. "_active": true,
  2118. "_level": 4,
  2119. "_components": [
  2120. {
  2121. "__id__": 62
  2122. }
  2123. ],
  2124. "_prefab": {
  2125. "__id__": 64
  2126. },
  2127. "_opacity": 255,
  2128. "_color": {
  2129. "__type__": "cc.Color",
  2130. "r": 255,
  2131. "g": 255,
  2132. "b": 255,
  2133. "a": 255
  2134. },
  2135. "_contentSize": {
  2136. "__type__": "cc.Size",
  2137. "width": 150,
  2138. "height": 80
  2139. },
  2140. "_anchorPoint": {
  2141. "__type__": "cc.Vec2",
  2142. "x": 0.5,
  2143. "y": 0.5
  2144. },
  2145. "_position": {
  2146. "__type__": "cc.Vec3",
  2147. "x": 243,
  2148. "y": 0,
  2149. "z": 0
  2150. },
  2151. "_scale": {
  2152. "__type__": "cc.Vec3",
  2153. "x": 1,
  2154. "y": 1,
  2155. "z": 1
  2156. },
  2157. "_rotationX": 0,
  2158. "_rotationY": 0,
  2159. "_quat": {
  2160. "__type__": "cc.Quat",
  2161. "x": 0,
  2162. "y": 0,
  2163. "z": 0,
  2164. "w": 1
  2165. },
  2166. "_skewX": 0,
  2167. "_skewY": 0,
  2168. "_zIndex": 0,
  2169. "groupIndex": 0,
  2170. "_id": ""
  2171. },
  2172. {
  2173. "__type__": "cc.Node",
  2174. "_name": "80004_u",
  2175. "_objFlags": 0,
  2176. "_parent": {
  2177. "__id__": 58
  2178. },
  2179. "_children": [],
  2180. "_active": true,
  2181. "_level": 5,
  2182. "_components": [
  2183. {
  2184. "__id__": 60
  2185. }
  2186. ],
  2187. "_prefab": {
  2188. "__id__": 61
  2189. },
  2190. "_opacity": 255,
  2191. "_color": {
  2192. "__type__": "cc.Color",
  2193. "r": 255,
  2194. "g": 255,
  2195. "b": 255,
  2196. "a": 255
  2197. },
  2198. "_contentSize": {
  2199. "__type__": "cc.Size",
  2200. "width": 150,
  2201. "height": 80
  2202. },
  2203. "_anchorPoint": {
  2204. "__type__": "cc.Vec2",
  2205. "x": 0.5,
  2206. "y": 0.5
  2207. },
  2208. "_position": {
  2209. "__type__": "cc.Vec3",
  2210. "x": 0,
  2211. "y": 0,
  2212. "z": 0
  2213. },
  2214. "_scale": {
  2215. "__type__": "cc.Vec3",
  2216. "x": 1,
  2217. "y": 1,
  2218. "z": 1
  2219. },
  2220. "_rotationX": 0,
  2221. "_rotationY": 0,
  2222. "_quat": {
  2223. "__type__": "cc.Quat",
  2224. "x": 0,
  2225. "y": 0,
  2226. "z": 0,
  2227. "w": 1
  2228. },
  2229. "_skewX": 0,
  2230. "_skewY": 0,
  2231. "_zIndex": 0,
  2232. "groupIndex": 0,
  2233. "_id": ""
  2234. },
  2235. {
  2236. "__type__": "cc.Sprite",
  2237. "_name": "",
  2238. "_objFlags": 0,
  2239. "node": {
  2240. "__id__": 59
  2241. },
  2242. "_enabled": true,
  2243. "_srcBlendFactor": 770,
  2244. "_dstBlendFactor": 771,
  2245. "_spriteFrame": {
  2246. "__uuid__": "be4ab777-301d-46ae-b465-efc6a0e5e16b"
  2247. },
  2248. "_type": 0,
  2249. "_sizeMode": 1,
  2250. "_fillType": 0,
  2251. "_fillCenter": {
  2252. "__type__": "cc.Vec2",
  2253. "x": 0,
  2254. "y": 0
  2255. },
  2256. "_fillStart": 0,
  2257. "_fillRange": 0,
  2258. "_isTrimmedMode": true,
  2259. "_state": 0,
  2260. "_atlas": null,
  2261. "_id": "c7ZLCqJ4lDJLF+J+ThIm8X"
  2262. },
  2263. {
  2264. "__type__": "cc.PrefabInfo",
  2265. "root": {
  2266. "__id__": 1
  2267. },
  2268. "asset": {
  2269. "__uuid__": "cc01c6a6-0d71-48e4-a457-4519fcdfb398"
  2270. },
  2271. "fileId": "f48ytEopxPT4FrDREtAFNZ",
  2272. "sync": false
  2273. },
  2274. {
  2275. "__type__": "cc.Button",
  2276. "_name": "",
  2277. "_objFlags": 0,
  2278. "node": {
  2279. "__id__": 58
  2280. },
  2281. "_enabled": true,
  2282. "transition": 1,
  2283. "pressedColor": {
  2284. "__type__": "cc.Color",
  2285. "r": 120,
  2286. "g": 120,
  2287. "b": 120,
  2288. "a": 255
  2289. },
  2290. "hoverColor": {
  2291. "__type__": "cc.Color",
  2292. "r": 255,
  2293. "g": 255,
  2294. "b": 255,
  2295. "a": 255
  2296. },
  2297. "duration": 0.1,
  2298. "zoomScale": 1.2,
  2299. "clickEvents": [
  2300. {
  2301. "__id__": 63
  2302. }
  2303. ],
  2304. "_N$interactable": true,
  2305. "_N$enableAutoGrayEffect": false,
  2306. "_N$normalColor": {
  2307. "__type__": "cc.Color",
  2308. "r": 255,
  2309. "g": 255,
  2310. "b": 255,
  2311. "a": 255
  2312. },
  2313. "_N$disabledColor": {
  2314. "__type__": "cc.Color",
  2315. "r": 255,
  2316. "g": 255,
  2317. "b": 255,
  2318. "a": 255
  2319. },
  2320. "_N$normalSprite": {
  2321. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  2322. },
  2323. "_N$pressedSprite": {
  2324. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  2325. },
  2326. "pressedSprite": {
  2327. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  2328. },
  2329. "_N$hoverSprite": {
  2330. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  2331. },
  2332. "hoverSprite": {
  2333. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  2334. },
  2335. "_N$disabledSprite": {
  2336. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  2337. },
  2338. "_N$target": {
  2339. "__id__": 58
  2340. },
  2341. "_id": "b4ZBY5x7RCN7l1WSuDk5Wb"
  2342. },
  2343. {
  2344. "__type__": "cc.ClickEvent",
  2345. "target": {
  2346. "__id__": 1
  2347. },
  2348. "component": "StoreContent",
  2349. "handler": "tabButtonAction",
  2350. "customEventData": "4"
  2351. },
  2352. {
  2353. "__type__": "cc.PrefabInfo",
  2354. "root": {
  2355. "__id__": 1
  2356. },
  2357. "asset": {
  2358. "__uuid__": "cc01c6a6-0d71-48e4-a457-4519fcdfb398"
  2359. },
  2360. "fileId": "fedfSSB4pAAa5CJc7w5pjx",
  2361. "sync": false
  2362. },
  2363. {
  2364. "__type__": "cc.Layout",
  2365. "_name": "",
  2366. "_objFlags": 0,
  2367. "node": {
  2368. "__id__": 30
  2369. },
  2370. "_enabled": true,
  2371. "_layoutSize": {
  2372. "__type__": "cc.Size",
  2373. "width": 666,
  2374. "height": 100
  2375. },
  2376. "_resize": 1,
  2377. "_N$layoutType": 1,
  2378. "_N$padding": 0,
  2379. "_N$cellSize": {
  2380. "__type__": "cc.Size",
  2381. "width": 40,
  2382. "height": 40
  2383. },
  2384. "_N$startAxis": 0,
  2385. "_N$paddingLeft": 15,
  2386. "_N$paddingRight": 15,
  2387. "_N$paddingTop": 0,
  2388. "_N$paddingBottom": 0,
  2389. "_N$spacingX": 12,
  2390. "_N$spacingY": 0,
  2391. "_N$verticalDirection": 1,
  2392. "_N$horizontalDirection": 0,
  2393. "_id": "71kdHAm5xFFJSNF5+sNMwM"
  2394. },
  2395. {
  2396. "__type__": "cc.Widget",
  2397. "_name": "",
  2398. "_objFlags": 0,
  2399. "node": {
  2400. "__id__": 30
  2401. },
  2402. "_enabled": true,
  2403. "alignMode": 1,
  2404. "_target": null,
  2405. "_alignFlags": 1,
  2406. "_left": 0,
  2407. "_right": 0,
  2408. "_top": 133,
  2409. "_bottom": 0,
  2410. "_verticalCenter": 0,
  2411. "_horizontalCenter": 0,
  2412. "_isAbsLeft": true,
  2413. "_isAbsRight": true,
  2414. "_isAbsTop": true,
  2415. "_isAbsBottom": true,
  2416. "_isAbsHorizontalCenter": true,
  2417. "_isAbsVerticalCenter": true,
  2418. "_originalWidth": 0,
  2419. "_originalHeight": 0,
  2420. "_id": "6dwdeahedHNZZ/8fA9sIrj"
  2421. },
  2422. {
  2423. "__type__": "cc.PrefabInfo",
  2424. "root": {
  2425. "__id__": 1
  2426. },
  2427. "asset": {
  2428. "__uuid__": "cc01c6a6-0d71-48e4-a457-4519fcdfb398"
  2429. },
  2430. "fileId": "e7rBjKOstHnopjl6Db2tWZ",
  2431. "sync": false
  2432. },
  2433. {
  2434. "__type__": "cc.Node",
  2435. "_name": "strore_close_btn",
  2436. "_objFlags": 0,
  2437. "_parent": {
  2438. "__id__": 6
  2439. },
  2440. "_children": [
  2441. {
  2442. "__id__": 69
  2443. }
  2444. ],
  2445. "_active": true,
  2446. "_level": 3,
  2447. "_components": [
  2448. {
  2449. "__id__": 72
  2450. },
  2451. {
  2452. "__id__": 74
  2453. }
  2454. ],
  2455. "_prefab": {
  2456. "__id__": 75
  2457. },
  2458. "_opacity": 255,
  2459. "_color": {
  2460. "__type__": "cc.Color",
  2461. "r": 255,
  2462. "g": 255,
  2463. "b": 255,
  2464. "a": 255
  2465. },
  2466. "_contentSize": {
  2467. "__type__": "cc.Size",
  2468. "width": 99,
  2469. "height": 114
  2470. },
  2471. "_anchorPoint": {
  2472. "__type__": "cc.Vec2",
  2473. "x": 0.5,
  2474. "y": 0.5
  2475. },
  2476. "_position": {
  2477. "__type__": "cc.Vec3",
  2478. "x": 316,
  2479. "y": 530,
  2480. "z": 0
  2481. },
  2482. "_scale": {
  2483. "__type__": "cc.Vec3",
  2484. "x": 1,
  2485. "y": 1,
  2486. "z": 1
  2487. },
  2488. "_rotationX": 0,
  2489. "_rotationY": 0,
  2490. "_quat": {
  2491. "__type__": "cc.Quat",
  2492. "x": 0,
  2493. "y": 0,
  2494. "z": 0,
  2495. "w": 1
  2496. },
  2497. "_skewX": 0,
  2498. "_skewY": 0,
  2499. "_zIndex": 0,
  2500. "groupIndex": 0,
  2501. "_id": ""
  2502. },
  2503. {
  2504. "__type__": "cc.Node",
  2505. "_name": "store_close",
  2506. "_objFlags": 0,
  2507. "_parent": {
  2508. "__id__": 68
  2509. },
  2510. "_children": [],
  2511. "_active": true,
  2512. "_level": 4,
  2513. "_components": [
  2514. {
  2515. "__id__": 70
  2516. }
  2517. ],
  2518. "_prefab": {
  2519. "__id__": 71
  2520. },
  2521. "_opacity": 255,
  2522. "_color": {
  2523. "__type__": "cc.Color",
  2524. "r": 255,
  2525. "g": 255,
  2526. "b": 255,
  2527. "a": 255
  2528. },
  2529. "_contentSize": {
  2530. "__type__": "cc.Size",
  2531. "width": 66,
  2532. "height": 71
  2533. },
  2534. "_anchorPoint": {
  2535. "__type__": "cc.Vec2",
  2536. "x": 0.5,
  2537. "y": 0.5
  2538. },
  2539. "_position": {
  2540. "__type__": "cc.Vec3",
  2541. "x": 16,
  2542. "y": -1,
  2543. "z": 0
  2544. },
  2545. "_scale": {
  2546. "__type__": "cc.Vec3",
  2547. "x": 1,
  2548. "y": 1,
  2549. "z": 1
  2550. },
  2551. "_rotationX": 0,
  2552. "_rotationY": 0,
  2553. "_quat": {
  2554. "__type__": "cc.Quat",
  2555. "x": 0,
  2556. "y": 0,
  2557. "z": 0,
  2558. "w": 1
  2559. },
  2560. "_skewX": 0,
  2561. "_skewY": 0,
  2562. "_zIndex": 0,
  2563. "groupIndex": 0,
  2564. "_id": ""
  2565. },
  2566. {
  2567. "__type__": "cc.Sprite",
  2568. "_name": "",
  2569. "_objFlags": 0,
  2570. "node": {
  2571. "__id__": 69
  2572. },
  2573. "_enabled": true,
  2574. "_srcBlendFactor": 770,
  2575. "_dstBlendFactor": 771,
  2576. "_spriteFrame": {
  2577. "__uuid__": "3b53aea6-e62a-4433-9e69-df03a3a718a7"
  2578. },
  2579. "_type": 0,
  2580. "_sizeMode": 1,
  2581. "_fillType": 0,
  2582. "_fillCenter": {
  2583. "__type__": "cc.Vec2",
  2584. "x": 0,
  2585. "y": 0
  2586. },
  2587. "_fillStart": 0,
  2588. "_fillRange": 0,
  2589. "_isTrimmedMode": true,
  2590. "_state": 0,
  2591. "_atlas": null,
  2592. "_id": "03XF037bZCHaIyN0MIoznZ"
  2593. },
  2594. {
  2595. "__type__": "cc.PrefabInfo",
  2596. "root": {
  2597. "__id__": 1
  2598. },
  2599. "asset": {
  2600. "__uuid__": "cc01c6a6-0d71-48e4-a457-4519fcdfb398"
  2601. },
  2602. "fileId": "70xeRePP5FkZzQU43zCIaD",
  2603. "sync": false
  2604. },
  2605. {
  2606. "__type__": "cc.Button",
  2607. "_name": "",
  2608. "_objFlags": 0,
  2609. "node": {
  2610. "__id__": 68
  2611. },
  2612. "_enabled": true,
  2613. "transition": 1,
  2614. "pressedColor": {
  2615. "__type__": "cc.Color",
  2616. "r": 120,
  2617. "g": 120,
  2618. "b": 120,
  2619. "a": 255
  2620. },
  2621. "hoverColor": {
  2622. "__type__": "cc.Color",
  2623. "r": 255,
  2624. "g": 255,
  2625. "b": 255,
  2626. "a": 255
  2627. },
  2628. "duration": 0.1,
  2629. "zoomScale": 1.2,
  2630. "clickEvents": [
  2631. {
  2632. "__id__": 73
  2633. }
  2634. ],
  2635. "_N$interactable": true,
  2636. "_N$enableAutoGrayEffect": false,
  2637. "_N$normalColor": {
  2638. "__type__": "cc.Color",
  2639. "r": 255,
  2640. "g": 255,
  2641. "b": 255,
  2642. "a": 255
  2643. },
  2644. "_N$disabledColor": {
  2645. "__type__": "cc.Color",
  2646. "r": 255,
  2647. "g": 255,
  2648. "b": 255,
  2649. "a": 255
  2650. },
  2651. "_N$normalSprite": {
  2652. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  2653. },
  2654. "_N$pressedSprite": {
  2655. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  2656. },
  2657. "pressedSprite": {
  2658. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  2659. },
  2660. "_N$hoverSprite": {
  2661. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  2662. },
  2663. "hoverSprite": {
  2664. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  2665. },
  2666. "_N$disabledSprite": {
  2667. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  2668. },
  2669. "_N$target": {
  2670. "__id__": 69
  2671. },
  2672. "_id": "78SERbHAVGwYWKKg6rhmKr"
  2673. },
  2674. {
  2675. "__type__": "cc.ClickEvent",
  2676. "target": {
  2677. "__id__": 1
  2678. },
  2679. "component": "StoreContent",
  2680. "handler": "closeBtnAction",
  2681. "customEventData": ""
  2682. },
  2683. {
  2684. "__type__": "cc.Widget",
  2685. "_name": "",
  2686. "_objFlags": 0,
  2687. "node": {
  2688. "__id__": 68
  2689. },
  2690. "_enabled": true,
  2691. "alignMode": 1,
  2692. "_target": null,
  2693. "_alignFlags": 33,
  2694. "_left": 0,
  2695. "_right": 2.5,
  2696. "_top": -91,
  2697. "_bottom": 0,
  2698. "_verticalCenter": 0,
  2699. "_horizontalCenter": 0,
  2700. "_isAbsLeft": true,
  2701. "_isAbsRight": true,
  2702. "_isAbsTop": true,
  2703. "_isAbsBottom": true,
  2704. "_isAbsHorizontalCenter": true,
  2705. "_isAbsVerticalCenter": true,
  2706. "_originalWidth": 0,
  2707. "_originalHeight": 0,
  2708. "_id": "0dkakFSG5DDKvbAuRq1mFR"
  2709. },
  2710. {
  2711. "__type__": "cc.PrefabInfo",
  2712. "root": {
  2713. "__id__": 1
  2714. },
  2715. "asset": {
  2716. "__uuid__": "cc01c6a6-0d71-48e4-a457-4519fcdfb398"
  2717. },
  2718. "fileId": "fan3pShBhFH4GkR3qT/TcU",
  2719. "sync": false
  2720. },
  2721. {
  2722. "__type__": "cc.Node",
  2723. "_name": "recommend",
  2724. "_objFlags": 0,
  2725. "_parent": {
  2726. "__id__": 6
  2727. },
  2728. "_children": [
  2729. {
  2730. "__id__": 77
  2731. }
  2732. ],
  2733. "_active": true,
  2734. "_level": 3,
  2735. "_components": [
  2736. {
  2737. "__id__": 84
  2738. },
  2739. {
  2740. "__id__": 86
  2741. },
  2742. {
  2743. "__id__": 87
  2744. }
  2745. ],
  2746. "_prefab": {
  2747. "__id__": 88
  2748. },
  2749. "_opacity": 255,
  2750. "_color": {
  2751. "__type__": "cc.Color",
  2752. "r": 255,
  2753. "g": 255,
  2754. "b": 255,
  2755. "a": 255
  2756. },
  2757. "_contentSize": {
  2758. "__type__": "cc.Size",
  2759. "width": 690,
  2760. "height": 730
  2761. },
  2762. "_anchorPoint": {
  2763. "__type__": "cc.Vec2",
  2764. "x": 0.5,
  2765. "y": 0.5
  2766. },
  2767. "_position": {
  2768. "__type__": "cc.Vec3",
  2769. "x": 0,
  2770. "y": -115,
  2771. "z": 0
  2772. },
  2773. "_scale": {
  2774. "__type__": "cc.Vec3",
  2775. "x": 1,
  2776. "y": 1,
  2777. "z": 1
  2778. },
  2779. "_rotationX": 0,
  2780. "_rotationY": 0,
  2781. "_quat": {
  2782. "__type__": "cc.Quat",
  2783. "x": 0,
  2784. "y": 0,
  2785. "z": 0,
  2786. "w": 1
  2787. },
  2788. "_skewX": 0,
  2789. "_skewY": 0,
  2790. "_zIndex": 0,
  2791. "groupIndex": 0,
  2792. "_id": ""
  2793. },
  2794. {
  2795. "__type__": "cc.Node",
  2796. "_name": "view",
  2797. "_objFlags": 0,
  2798. "_parent": {
  2799. "__id__": 76
  2800. },
  2801. "_children": [
  2802. {
  2803. "__id__": 78
  2804. }
  2805. ],
  2806. "_active": true,
  2807. "_level": 0,
  2808. "_components": [
  2809. {
  2810. "__id__": 81
  2811. },
  2812. {
  2813. "__id__": 82
  2814. }
  2815. ],
  2816. "_prefab": {
  2817. "__id__": 83
  2818. },
  2819. "_opacity": 255,
  2820. "_color": {
  2821. "__type__": "cc.Color",
  2822. "r": 255,
  2823. "g": 255,
  2824. "b": 255,
  2825. "a": 255
  2826. },
  2827. "_contentSize": {
  2828. "__type__": "cc.Size",
  2829. "width": 690,
  2830. "height": 730
  2831. },
  2832. "_anchorPoint": {
  2833. "__type__": "cc.Vec2",
  2834. "x": 0.5,
  2835. "y": 0.5
  2836. },
  2837. "_position": {
  2838. "__type__": "cc.Vec3",
  2839. "x": 0,
  2840. "y": 0,
  2841. "z": 0
  2842. },
  2843. "_scale": {
  2844. "__type__": "cc.Vec3",
  2845. "x": 1,
  2846. "y": 1,
  2847. "z": 1
  2848. },
  2849. "_rotationX": 0,
  2850. "_rotationY": 0,
  2851. "_quat": {
  2852. "__type__": "cc.Quat",
  2853. "x": 0,
  2854. "y": 0,
  2855. "z": 0,
  2856. "w": 1
  2857. },
  2858. "_skewX": 0,
  2859. "_skewY": 0,
  2860. "_zIndex": 0,
  2861. "groupIndex": 0,
  2862. "_id": ""
  2863. },
  2864. {
  2865. "__type__": "cc.Node",
  2866. "_name": "content",
  2867. "_objFlags": 0,
  2868. "_parent": {
  2869. "__id__": 77
  2870. },
  2871. "_children": [],
  2872. "_active": true,
  2873. "_level": 0,
  2874. "_components": [
  2875. {
  2876. "__id__": 79
  2877. }
  2878. ],
  2879. "_prefab": {
  2880. "__id__": 80
  2881. },
  2882. "_opacity": 255,
  2883. "_color": {
  2884. "__type__": "cc.Color",
  2885. "r": 255,
  2886. "g": 255,
  2887. "b": 255,
  2888. "a": 255
  2889. },
  2890. "_contentSize": {
  2891. "__type__": "cc.Size",
  2892. "width": 690,
  2893. "height": 160
  2894. },
  2895. "_anchorPoint": {
  2896. "__type__": "cc.Vec2",
  2897. "x": 0.5,
  2898. "y": 1
  2899. },
  2900. "_position": {
  2901. "__type__": "cc.Vec3",
  2902. "x": 0,
  2903. "y": 365,
  2904. "z": 0
  2905. },
  2906. "_scale": {
  2907. "__type__": "cc.Vec3",
  2908. "x": 1,
  2909. "y": 1,
  2910. "z": 1
  2911. },
  2912. "_rotationX": 0,
  2913. "_rotationY": 0,
  2914. "_quat": {
  2915. "__type__": "cc.Quat",
  2916. "x": 0,
  2917. "y": 0,
  2918. "z": 0,
  2919. "w": 1
  2920. },
  2921. "_skewX": 0,
  2922. "_skewY": 0,
  2923. "_zIndex": 0,
  2924. "groupIndex": 0,
  2925. "_id": ""
  2926. },
  2927. {
  2928. "__type__": "cc.Layout",
  2929. "_name": "",
  2930. "_objFlags": 0,
  2931. "node": {
  2932. "__id__": 78
  2933. },
  2934. "_enabled": true,
  2935. "_layoutSize": {
  2936. "__type__": "cc.Size",
  2937. "width": 690,
  2938. "height": 160
  2939. },
  2940. "_resize": 1,
  2941. "_N$layoutType": 2,
  2942. "_N$padding": 0,
  2943. "_N$cellSize": {
  2944. "__type__": "cc.Size",
  2945. "width": 40,
  2946. "height": 40
  2947. },
  2948. "_N$startAxis": 0,
  2949. "_N$paddingLeft": 0,
  2950. "_N$paddingRight": 0,
  2951. "_N$paddingTop": 0,
  2952. "_N$paddingBottom": 0,
  2953. "_N$spacingX": 0,
  2954. "_N$spacingY": 10,
  2955. "_N$verticalDirection": 1,
  2956. "_N$horizontalDirection": 0,
  2957. "_id": "3002UqGlhNepKobVsejXvg"
  2958. },
  2959. {
  2960. "__type__": "cc.PrefabInfo",
  2961. "root": {
  2962. "__id__": 1
  2963. },
  2964. "asset": {
  2965. "__uuid__": "cc01c6a6-0d71-48e4-a457-4519fcdfb398"
  2966. },
  2967. "fileId": "27jdg8p7hHNpwzlzAshcLr",
  2968. "sync": false
  2969. },
  2970. {
  2971. "__type__": "cc.Mask",
  2972. "_name": "",
  2973. "_objFlags": 0,
  2974. "node": {
  2975. "__id__": 77
  2976. },
  2977. "_enabled": true,
  2978. "_srcBlendFactor": 770,
  2979. "_dstBlendFactor": 771,
  2980. "_spriteFrame": null,
  2981. "_type": 0,
  2982. "_segments": 64,
  2983. "_N$alphaThreshold": 0,
  2984. "_N$inverted": false,
  2985. "_id": "b2EmED00dBjp+WyKMky5Gb"
  2986. },
  2987. {
  2988. "__type__": "cc.Widget",
  2989. "_name": "",
  2990. "_objFlags": 0,
  2991. "node": {
  2992. "__id__": 77
  2993. },
  2994. "_enabled": true,
  2995. "alignMode": 1,
  2996. "_target": null,
  2997. "_alignFlags": 45,
  2998. "_left": 0,
  2999. "_right": 0,
  3000. "_top": 0,
  3001. "_bottom": 0,
  3002. "_verticalCenter": 0,
  3003. "_horizontalCenter": 0,
  3004. "_isAbsLeft": true,
  3005. "_isAbsRight": true,
  3006. "_isAbsTop": true,
  3007. "_isAbsBottom": true,
  3008. "_isAbsHorizontalCenter": true,
  3009. "_isAbsVerticalCenter": true,
  3010. "_originalWidth": 690,
  3011. "_originalHeight": 730,
  3012. "_id": "20f3nD33hLuJduHq0iIHtD"
  3013. },
  3014. {
  3015. "__type__": "cc.PrefabInfo",
  3016. "root": {
  3017. "__id__": 1
  3018. },
  3019. "asset": {
  3020. "__uuid__": "cc01c6a6-0d71-48e4-a457-4519fcdfb398"
  3021. },
  3022. "fileId": "2f03qpzg5CmbyW0LPG+ZFH",
  3023. "sync": false
  3024. },
  3025. {
  3026. "__type__": "cc.ScrollView",
  3027. "_name": "",
  3028. "_objFlags": 0,
  3029. "node": {
  3030. "__id__": 76
  3031. },
  3032. "_enabled": true,
  3033. "content": {
  3034. "__id__": 78
  3035. },
  3036. "horizontal": false,
  3037. "vertical": true,
  3038. "inertia": true,
  3039. "brake": 0.75,
  3040. "elastic": true,
  3041. "bounceDuration": 0.23,
  3042. "scrollEvents": [
  3043. {
  3044. "__id__": 85
  3045. }
  3046. ],
  3047. "cancelInnerEvents": false,
  3048. "_N$horizontalScrollBar": null,
  3049. "_N$verticalScrollBar": null,
  3050. "_id": "eaz8ixd69L2KJx4+rIKPM/"
  3051. },
  3052. {
  3053. "__type__": "cc.ClickEvent",
  3054. "target": {
  3055. "__id__": 76
  3056. },
  3057. "component": "StarScrollView",
  3058. "handler": "onScroll",
  3059. "customEventData": ""
  3060. },
  3061. {
  3062. "__type__": "0ec95WrV5pN0p3N9CvU+3Ds",
  3063. "_name": "",
  3064. "_objFlags": 0,
  3065. "node": {
  3066. "__id__": 76
  3067. },
  3068. "_enabled": true,
  3069. "item": {
  3070. "__uuid__": "c53a17be-9d8c-4b3f-90c6-3fad91aec40e"
  3071. },
  3072. "content": {
  3073. "__id__": 78
  3074. },
  3075. "_id": "b0Uh2FctxBHKgrzR7CWjtG"
  3076. },
  3077. {
  3078. "__type__": "cc.Widget",
  3079. "_name": "",
  3080. "_objFlags": 0,
  3081. "node": {
  3082. "__id__": 76
  3083. },
  3084. "_enabled": true,
  3085. "alignMode": 1,
  3086. "_target": null,
  3087. "_alignFlags": 5,
  3088. "_left": 23,
  3089. "_right": 23,
  3090. "_top": 246,
  3091. "_bottom": 16,
  3092. "_verticalCenter": 0,
  3093. "_horizontalCenter": 0,
  3094. "_isAbsLeft": true,
  3095. "_isAbsRight": true,
  3096. "_isAbsTop": true,
  3097. "_isAbsBottom": true,
  3098. "_isAbsHorizontalCenter": true,
  3099. "_isAbsVerticalCenter": true,
  3100. "_originalWidth": 690,
  3101. "_originalHeight": 730,
  3102. "_id": "e5T8BFPHxMKYwnLqTB5DJH"
  3103. },
  3104. {
  3105. "__type__": "cc.PrefabInfo",
  3106. "root": {
  3107. "__id__": 1
  3108. },
  3109. "asset": {
  3110. "__uuid__": "cc01c6a6-0d71-48e4-a457-4519fcdfb398"
  3111. },
  3112. "fileId": "6e9i8K3M1OjYiia9ga2gIv",
  3113. "sync": false
  3114. },
  3115. {
  3116. "__type__": "cc.Node",
  3117. "_name": "diamond",
  3118. "_objFlags": 0,
  3119. "_parent": {
  3120. "__id__": 6
  3121. },
  3122. "_children": [
  3123. {
  3124. "__id__": 90
  3125. }
  3126. ],
  3127. "_active": false,
  3128. "_level": 3,
  3129. "_components": [
  3130. {
  3131. "__id__": 97
  3132. },
  3133. {
  3134. "__id__": 98
  3135. },
  3136. {
  3137. "__id__": 99
  3138. }
  3139. ],
  3140. "_prefab": {
  3141. "__id__": 100
  3142. },
  3143. "_opacity": 255,
  3144. "_color": {
  3145. "__type__": "cc.Color",
  3146. "r": 255,
  3147. "g": 255,
  3148. "b": 255,
  3149. "a": 255
  3150. },
  3151. "_contentSize": {
  3152. "__type__": "cc.Size",
  3153. "width": 690,
  3154. "height": 730
  3155. },
  3156. "_anchorPoint": {
  3157. "__type__": "cc.Vec2",
  3158. "x": 0.5,
  3159. "y": 0.5
  3160. },
  3161. "_position": {
  3162. "__type__": "cc.Vec3",
  3163. "x": 0,
  3164. "y": -115,
  3165. "z": 0
  3166. },
  3167. "_scale": {
  3168. "__type__": "cc.Vec3",
  3169. "x": 1,
  3170. "y": 1,
  3171. "z": 1
  3172. },
  3173. "_rotationX": 0,
  3174. "_rotationY": 0,
  3175. "_quat": {
  3176. "__type__": "cc.Quat",
  3177. "x": 0,
  3178. "y": 0,
  3179. "z": 0,
  3180. "w": 1
  3181. },
  3182. "_skewX": 0,
  3183. "_skewY": 0,
  3184. "_zIndex": 0,
  3185. "groupIndex": 0,
  3186. "_id": ""
  3187. },
  3188. {
  3189. "__type__": "cc.Node",
  3190. "_name": "view",
  3191. "_objFlags": 0,
  3192. "_parent": {
  3193. "__id__": 89
  3194. },
  3195. "_children": [
  3196. {
  3197. "__id__": 91
  3198. }
  3199. ],
  3200. "_active": true,
  3201. "_level": 0,
  3202. "_components": [
  3203. {
  3204. "__id__": 94
  3205. },
  3206. {
  3207. "__id__": 95
  3208. }
  3209. ],
  3210. "_prefab": {
  3211. "__id__": 96
  3212. },
  3213. "_opacity": 255,
  3214. "_color": {
  3215. "__type__": "cc.Color",
  3216. "r": 255,
  3217. "g": 255,
  3218. "b": 255,
  3219. "a": 255
  3220. },
  3221. "_contentSize": {
  3222. "__type__": "cc.Size",
  3223. "width": 690,
  3224. "height": 730
  3225. },
  3226. "_anchorPoint": {
  3227. "__type__": "cc.Vec2",
  3228. "x": 0.5,
  3229. "y": 0.5
  3230. },
  3231. "_position": {
  3232. "__type__": "cc.Vec3",
  3233. "x": 0,
  3234. "y": 0,
  3235. "z": 0
  3236. },
  3237. "_scale": {
  3238. "__type__": "cc.Vec3",
  3239. "x": 1,
  3240. "y": 1,
  3241. "z": 1
  3242. },
  3243. "_rotationX": 0,
  3244. "_rotationY": 0,
  3245. "_quat": {
  3246. "__type__": "cc.Quat",
  3247. "x": 0,
  3248. "y": 0,
  3249. "z": 0,
  3250. "w": 1
  3251. },
  3252. "_skewX": 0,
  3253. "_skewY": 0,
  3254. "_zIndex": 0,
  3255. "groupIndex": 0,
  3256. "_id": ""
  3257. },
  3258. {
  3259. "__type__": "cc.Node",
  3260. "_name": "content",
  3261. "_objFlags": 0,
  3262. "_parent": {
  3263. "__id__": 90
  3264. },
  3265. "_children": [],
  3266. "_active": true,
  3267. "_level": 0,
  3268. "_components": [
  3269. {
  3270. "__id__": 92
  3271. }
  3272. ],
  3273. "_prefab": {
  3274. "__id__": 93
  3275. },
  3276. "_opacity": 255,
  3277. "_color": {
  3278. "__type__": "cc.Color",
  3279. "r": 255,
  3280. "g": 255,
  3281. "b": 255,
  3282. "a": 255
  3283. },
  3284. "_contentSize": {
  3285. "__type__": "cc.Size",
  3286. "width": 630,
  3287. "height": 160
  3288. },
  3289. "_anchorPoint": {
  3290. "__type__": "cc.Vec2",
  3291. "x": 0.5,
  3292. "y": 1
  3293. },
  3294. "_position": {
  3295. "__type__": "cc.Vec3",
  3296. "x": 0,
  3297. "y": 365,
  3298. "z": 0
  3299. },
  3300. "_scale": {
  3301. "__type__": "cc.Vec3",
  3302. "x": 1,
  3303. "y": 1,
  3304. "z": 1
  3305. },
  3306. "_rotationX": 0,
  3307. "_rotationY": 0,
  3308. "_quat": {
  3309. "__type__": "cc.Quat",
  3310. "x": 0,
  3311. "y": 0,
  3312. "z": 0,
  3313. "w": 1
  3314. },
  3315. "_skewX": 0,
  3316. "_skewY": 0,
  3317. "_zIndex": 0,
  3318. "groupIndex": 0,
  3319. "_id": ""
  3320. },
  3321. {
  3322. "__type__": "cc.Layout",
  3323. "_name": "",
  3324. "_objFlags": 0,
  3325. "node": {
  3326. "__id__": 91
  3327. },
  3328. "_enabled": true,
  3329. "_layoutSize": {
  3330. "__type__": "cc.Size",
  3331. "width": 630,
  3332. "height": 160
  3333. },
  3334. "_resize": 1,
  3335. "_N$layoutType": 3,
  3336. "_N$padding": 0,
  3337. "_N$cellSize": {
  3338. "__type__": "cc.Size",
  3339. "width": 40,
  3340. "height": 40
  3341. },
  3342. "_N$startAxis": 0,
  3343. "_N$paddingLeft": 30,
  3344. "_N$paddingRight": 0,
  3345. "_N$paddingTop": 0,
  3346. "_N$paddingBottom": 0,
  3347. "_N$spacingX": 15,
  3348. "_N$spacingY": 15,
  3349. "_N$verticalDirection": 1,
  3350. "_N$horizontalDirection": 0,
  3351. "_id": "e1ax5K9a1Me7df55mcUn1I"
  3352. },
  3353. {
  3354. "__type__": "cc.PrefabInfo",
  3355. "root": {
  3356. "__id__": 1
  3357. },
  3358. "asset": {
  3359. "__uuid__": "cc01c6a6-0d71-48e4-a457-4519fcdfb398"
  3360. },
  3361. "fileId": "96QTx28BdB9KnMeqeURABF",
  3362. "sync": false
  3363. },
  3364. {
  3365. "__type__": "cc.Mask",
  3366. "_name": "",
  3367. "_objFlags": 0,
  3368. "node": {
  3369. "__id__": 90
  3370. },
  3371. "_enabled": true,
  3372. "_srcBlendFactor": 770,
  3373. "_dstBlendFactor": 771,
  3374. "_spriteFrame": null,
  3375. "_type": 0,
  3376. "_segments": 64,
  3377. "_N$alphaThreshold": 0,
  3378. "_N$inverted": false,
  3379. "_id": "0dO9wALYNHRpJCRMco9No0"
  3380. },
  3381. {
  3382. "__type__": "cc.Widget",
  3383. "_name": "",
  3384. "_objFlags": 0,
  3385. "node": {
  3386. "__id__": 90
  3387. },
  3388. "_enabled": true,
  3389. "alignMode": 1,
  3390. "_target": null,
  3391. "_alignFlags": 45,
  3392. "_left": 0,
  3393. "_right": 0,
  3394. "_top": 0,
  3395. "_bottom": 0,
  3396. "_verticalCenter": 0,
  3397. "_horizontalCenter": 0,
  3398. "_isAbsLeft": true,
  3399. "_isAbsRight": true,
  3400. "_isAbsTop": true,
  3401. "_isAbsBottom": true,
  3402. "_isAbsHorizontalCenter": true,
  3403. "_isAbsVerticalCenter": true,
  3404. "_originalWidth": 690,
  3405. "_originalHeight": 730,
  3406. "_id": "58c4BCKZJAhohttFm3pIMl"
  3407. },
  3408. {
  3409. "__type__": "cc.PrefabInfo",
  3410. "root": {
  3411. "__id__": 1
  3412. },
  3413. "asset": {
  3414. "__uuid__": "cc01c6a6-0d71-48e4-a457-4519fcdfb398"
  3415. },
  3416. "fileId": "39ePGHTThI8bGEivg2sShG",
  3417. "sync": false
  3418. },
  3419. {
  3420. "__type__": "cc.ScrollView",
  3421. "_name": "",
  3422. "_objFlags": 0,
  3423. "node": {
  3424. "__id__": 89
  3425. },
  3426. "_enabled": true,
  3427. "content": {
  3428. "__id__": 91
  3429. },
  3430. "horizontal": false,
  3431. "vertical": true,
  3432. "inertia": true,
  3433. "brake": 0.75,
  3434. "elastic": true,
  3435. "bounceDuration": 0.23,
  3436. "scrollEvents": [],
  3437. "cancelInnerEvents": true,
  3438. "_N$horizontalScrollBar": null,
  3439. "_N$verticalScrollBar": null,
  3440. "_id": "00pGBEckZJmpfnrBbA6g/B"
  3441. },
  3442. {
  3443. "__type__": "ec284Gahy1CIYpfWKmpBKnS",
  3444. "_name": "",
  3445. "_objFlags": 0,
  3446. "node": {
  3447. "__id__": 89
  3448. },
  3449. "_enabled": true,
  3450. "item": {
  3451. "__uuid__": "f9dbb66f-b5c4-49fd-b5d2-d02c923ab1b3"
  3452. },
  3453. "content": {
  3454. "__id__": 91
  3455. },
  3456. "_id": "e8W4AxJH5J74M4kbUqoVAY"
  3457. },
  3458. {
  3459. "__type__": "cc.Widget",
  3460. "_name": "",
  3461. "_objFlags": 0,
  3462. "node": {
  3463. "__id__": 89
  3464. },
  3465. "_enabled": true,
  3466. "alignMode": 1,
  3467. "_target": null,
  3468. "_alignFlags": 45,
  3469. "_left": 23,
  3470. "_right": 23,
  3471. "_top": 246,
  3472. "_bottom": 16,
  3473. "_verticalCenter": 0,
  3474. "_horizontalCenter": 0,
  3475. "_isAbsLeft": true,
  3476. "_isAbsRight": true,
  3477. "_isAbsTop": true,
  3478. "_isAbsBottom": true,
  3479. "_isAbsHorizontalCenter": true,
  3480. "_isAbsVerticalCenter": true,
  3481. "_originalWidth": 690,
  3482. "_originalHeight": 730,
  3483. "_id": "8fonpSUa9IHYmmZo/zApCN"
  3484. },
  3485. {
  3486. "__type__": "cc.PrefabInfo",
  3487. "root": {
  3488. "__id__": 1
  3489. },
  3490. "asset": {
  3491. "__uuid__": "cc01c6a6-0d71-48e4-a457-4519fcdfb398"
  3492. },
  3493. "fileId": "89L4s4etNKi4UgecVQzzJV",
  3494. "sync": false
  3495. },
  3496. {
  3497. "__type__": "cc.Node",
  3498. "_name": "coin",
  3499. "_objFlags": 0,
  3500. "_parent": {
  3501. "__id__": 6
  3502. },
  3503. "_children": [
  3504. {
  3505. "__id__": 102
  3506. }
  3507. ],
  3508. "_active": false,
  3509. "_level": 3,
  3510. "_components": [
  3511. {
  3512. "__id__": 109
  3513. },
  3514. {
  3515. "__id__": 110
  3516. },
  3517. {
  3518. "__id__": 111
  3519. }
  3520. ],
  3521. "_prefab": {
  3522. "__id__": 112
  3523. },
  3524. "_opacity": 255,
  3525. "_color": {
  3526. "__type__": "cc.Color",
  3527. "r": 255,
  3528. "g": 255,
  3529. "b": 255,
  3530. "a": 255
  3531. },
  3532. "_contentSize": {
  3533. "__type__": "cc.Size",
  3534. "width": 690,
  3535. "height": 730
  3536. },
  3537. "_anchorPoint": {
  3538. "__type__": "cc.Vec2",
  3539. "x": 0.5,
  3540. "y": 0.5
  3541. },
  3542. "_position": {
  3543. "__type__": "cc.Vec3",
  3544. "x": 0,
  3545. "y": -115,
  3546. "z": 0
  3547. },
  3548. "_scale": {
  3549. "__type__": "cc.Vec3",
  3550. "x": 1,
  3551. "y": 1,
  3552. "z": 1
  3553. },
  3554. "_rotationX": 0,
  3555. "_rotationY": 0,
  3556. "_quat": {
  3557. "__type__": "cc.Quat",
  3558. "x": 0,
  3559. "y": 0,
  3560. "z": 0,
  3561. "w": 1
  3562. },
  3563. "_skewX": 0,
  3564. "_skewY": 0,
  3565. "_zIndex": 0,
  3566. "groupIndex": 0,
  3567. "_id": ""
  3568. },
  3569. {
  3570. "__type__": "cc.Node",
  3571. "_name": "view",
  3572. "_objFlags": 0,
  3573. "_parent": {
  3574. "__id__": 101
  3575. },
  3576. "_children": [
  3577. {
  3578. "__id__": 103
  3579. }
  3580. ],
  3581. "_active": true,
  3582. "_level": 0,
  3583. "_components": [
  3584. {
  3585. "__id__": 106
  3586. },
  3587. {
  3588. "__id__": 107
  3589. }
  3590. ],
  3591. "_prefab": {
  3592. "__id__": 108
  3593. },
  3594. "_opacity": 255,
  3595. "_color": {
  3596. "__type__": "cc.Color",
  3597. "r": 255,
  3598. "g": 255,
  3599. "b": 255,
  3600. "a": 255
  3601. },
  3602. "_contentSize": {
  3603. "__type__": "cc.Size",
  3604. "width": 690,
  3605. "height": 730
  3606. },
  3607. "_anchorPoint": {
  3608. "__type__": "cc.Vec2",
  3609. "x": 0.5,
  3610. "y": 0.5
  3611. },
  3612. "_position": {
  3613. "__type__": "cc.Vec3",
  3614. "x": 0,
  3615. "y": 0,
  3616. "z": 0
  3617. },
  3618. "_scale": {
  3619. "__type__": "cc.Vec3",
  3620. "x": 1,
  3621. "y": 1,
  3622. "z": 1
  3623. },
  3624. "_rotationX": 0,
  3625. "_rotationY": 0,
  3626. "_quat": {
  3627. "__type__": "cc.Quat",
  3628. "x": 0,
  3629. "y": 0,
  3630. "z": 0,
  3631. "w": 1
  3632. },
  3633. "_skewX": 0,
  3634. "_skewY": 0,
  3635. "_zIndex": 0,
  3636. "groupIndex": 0,
  3637. "_id": ""
  3638. },
  3639. {
  3640. "__type__": "cc.Node",
  3641. "_name": "content",
  3642. "_objFlags": 0,
  3643. "_parent": {
  3644. "__id__": 102
  3645. },
  3646. "_children": [],
  3647. "_active": true,
  3648. "_level": 0,
  3649. "_components": [
  3650. {
  3651. "__id__": 104
  3652. }
  3653. ],
  3654. "_prefab": {
  3655. "__id__": 105
  3656. },
  3657. "_opacity": 255,
  3658. "_color": {
  3659. "__type__": "cc.Color",
  3660. "r": 255,
  3661. "g": 255,
  3662. "b": 255,
  3663. "a": 255
  3664. },
  3665. "_contentSize": {
  3666. "__type__": "cc.Size",
  3667. "width": 630,
  3668. "height": 160
  3669. },
  3670. "_anchorPoint": {
  3671. "__type__": "cc.Vec2",
  3672. "x": 0.5,
  3673. "y": 1
  3674. },
  3675. "_position": {
  3676. "__type__": "cc.Vec3",
  3677. "x": 0,
  3678. "y": 365,
  3679. "z": 0
  3680. },
  3681. "_scale": {
  3682. "__type__": "cc.Vec3",
  3683. "x": 1,
  3684. "y": 1,
  3685. "z": 1
  3686. },
  3687. "_rotationX": 0,
  3688. "_rotationY": 0,
  3689. "_quat": {
  3690. "__type__": "cc.Quat",
  3691. "x": 0,
  3692. "y": 0,
  3693. "z": 0,
  3694. "w": 1
  3695. },
  3696. "_skewX": 0,
  3697. "_skewY": 0,
  3698. "_zIndex": 0,
  3699. "groupIndex": 0,
  3700. "_id": ""
  3701. },
  3702. {
  3703. "__type__": "cc.Layout",
  3704. "_name": "",
  3705. "_objFlags": 0,
  3706. "node": {
  3707. "__id__": 103
  3708. },
  3709. "_enabled": true,
  3710. "_layoutSize": {
  3711. "__type__": "cc.Size",
  3712. "width": 630,
  3713. "height": 160
  3714. },
  3715. "_resize": 1,
  3716. "_N$layoutType": 3,
  3717. "_N$padding": 0,
  3718. "_N$cellSize": {
  3719. "__type__": "cc.Size",
  3720. "width": 40,
  3721. "height": 40
  3722. },
  3723. "_N$startAxis": 0,
  3724. "_N$paddingLeft": 30,
  3725. "_N$paddingRight": 0,
  3726. "_N$paddingTop": 0,
  3727. "_N$paddingBottom": 0,
  3728. "_N$spacingX": 15,
  3729. "_N$spacingY": 15,
  3730. "_N$verticalDirection": 1,
  3731. "_N$horizontalDirection": 0,
  3732. "_id": "5cCnsejdNNEKzfGc2xQW92"
  3733. },
  3734. {
  3735. "__type__": "cc.PrefabInfo",
  3736. "root": {
  3737. "__id__": 1
  3738. },
  3739. "asset": {
  3740. "__uuid__": "cc01c6a6-0d71-48e4-a457-4519fcdfb398"
  3741. },
  3742. "fileId": "18jpNjnu5HHLy0lrXT2svp",
  3743. "sync": false
  3744. },
  3745. {
  3746. "__type__": "cc.Mask",
  3747. "_name": "",
  3748. "_objFlags": 0,
  3749. "node": {
  3750. "__id__": 102
  3751. },
  3752. "_enabled": true,
  3753. "_srcBlendFactor": 770,
  3754. "_dstBlendFactor": 771,
  3755. "_spriteFrame": null,
  3756. "_type": 0,
  3757. "_segments": 64,
  3758. "_N$alphaThreshold": 0,
  3759. "_N$inverted": false,
  3760. "_id": "dc8FotewhAk7aH1Q6NKpJW"
  3761. },
  3762. {
  3763. "__type__": "cc.Widget",
  3764. "_name": "",
  3765. "_objFlags": 0,
  3766. "node": {
  3767. "__id__": 102
  3768. },
  3769. "_enabled": true,
  3770. "alignMode": 1,
  3771. "_target": null,
  3772. "_alignFlags": 45,
  3773. "_left": 0,
  3774. "_right": 0,
  3775. "_top": 0,
  3776. "_bottom": 0,
  3777. "_verticalCenter": 0,
  3778. "_horizontalCenter": 0,
  3779. "_isAbsLeft": true,
  3780. "_isAbsRight": true,
  3781. "_isAbsTop": true,
  3782. "_isAbsBottom": true,
  3783. "_isAbsHorizontalCenter": true,
  3784. "_isAbsVerticalCenter": true,
  3785. "_originalWidth": 690,
  3786. "_originalHeight": 730,
  3787. "_id": "3eb28P3qFEWaqhSLnfgsYz"
  3788. },
  3789. {
  3790. "__type__": "cc.PrefabInfo",
  3791. "root": {
  3792. "__id__": 1
  3793. },
  3794. "asset": {
  3795. "__uuid__": "cc01c6a6-0d71-48e4-a457-4519fcdfb398"
  3796. },
  3797. "fileId": "846YZ0xyZOhooOrRwMpKVt",
  3798. "sync": false
  3799. },
  3800. {
  3801. "__type__": "cc.ScrollView",
  3802. "_name": "",
  3803. "_objFlags": 0,
  3804. "node": {
  3805. "__id__": 101
  3806. },
  3807. "_enabled": true,
  3808. "content": {
  3809. "__id__": 103
  3810. },
  3811. "horizontal": false,
  3812. "vertical": true,
  3813. "inertia": true,
  3814. "brake": 0.75,
  3815. "elastic": true,
  3816. "bounceDuration": 0.23,
  3817. "scrollEvents": [],
  3818. "cancelInnerEvents": true,
  3819. "_N$horizontalScrollBar": null,
  3820. "_N$verticalScrollBar": null,
  3821. "_id": "13CvZB7rBDNoNh813hZRrR"
  3822. },
  3823. {
  3824. "__type__": "b4785MBetlEjKLK9+rZtE+t",
  3825. "_name": "",
  3826. "_objFlags": 0,
  3827. "node": {
  3828. "__id__": 101
  3829. },
  3830. "_enabled": true,
  3831. "item": {
  3832. "__uuid__": "f9dbb66f-b5c4-49fd-b5d2-d02c923ab1b3"
  3833. },
  3834. "content": {
  3835. "__id__": 103
  3836. },
  3837. "_id": "1c+6ztMfdEVJ/gDbJ4RDma"
  3838. },
  3839. {
  3840. "__type__": "cc.Widget",
  3841. "_name": "",
  3842. "_objFlags": 0,
  3843. "node": {
  3844. "__id__": 101
  3845. },
  3846. "_enabled": true,
  3847. "alignMode": 1,
  3848. "_target": null,
  3849. "_alignFlags": 45,
  3850. "_left": 23,
  3851. "_right": 23,
  3852. "_top": 246,
  3853. "_bottom": 16,
  3854. "_verticalCenter": 0,
  3855. "_horizontalCenter": 0,
  3856. "_isAbsLeft": true,
  3857. "_isAbsRight": true,
  3858. "_isAbsTop": true,
  3859. "_isAbsBottom": true,
  3860. "_isAbsHorizontalCenter": true,
  3861. "_isAbsVerticalCenter": true,
  3862. "_originalWidth": 690,
  3863. "_originalHeight": 730,
  3864. "_id": "d8sDZgPD5EKrvXovGqDhSF"
  3865. },
  3866. {
  3867. "__type__": "cc.PrefabInfo",
  3868. "root": {
  3869. "__id__": 1
  3870. },
  3871. "asset": {
  3872. "__uuid__": "cc01c6a6-0d71-48e4-a457-4519fcdfb398"
  3873. },
  3874. "fileId": "a2jDFxSeFOWLBsktVn+OJg",
  3875. "sync": false
  3876. },
  3877. {
  3878. "__type__": "cc.Node",
  3879. "_name": "gift",
  3880. "_objFlags": 0,
  3881. "_parent": {
  3882. "__id__": 6
  3883. },
  3884. "_children": [
  3885. {
  3886. "__id__": 114
  3887. }
  3888. ],
  3889. "_active": false,
  3890. "_level": 3,
  3891. "_components": [
  3892. {
  3893. "__id__": 121
  3894. },
  3895. {
  3896. "__id__": 122
  3897. },
  3898. {
  3899. "__id__": 123
  3900. }
  3901. ],
  3902. "_prefab": {
  3903. "__id__": 124
  3904. },
  3905. "_opacity": 255,
  3906. "_color": {
  3907. "__type__": "cc.Color",
  3908. "r": 255,
  3909. "g": 255,
  3910. "b": 255,
  3911. "a": 255
  3912. },
  3913. "_contentSize": {
  3914. "__type__": "cc.Size",
  3915. "width": 690,
  3916. "height": 730
  3917. },
  3918. "_anchorPoint": {
  3919. "__type__": "cc.Vec2",
  3920. "x": 0.5,
  3921. "y": 0.5
  3922. },
  3923. "_position": {
  3924. "__type__": "cc.Vec3",
  3925. "x": 0,
  3926. "y": -115,
  3927. "z": 0
  3928. },
  3929. "_scale": {
  3930. "__type__": "cc.Vec3",
  3931. "x": 1,
  3932. "y": 1,
  3933. "z": 1
  3934. },
  3935. "_rotationX": 0,
  3936. "_rotationY": 0,
  3937. "_quat": {
  3938. "__type__": "cc.Quat",
  3939. "x": 0,
  3940. "y": 0,
  3941. "z": 0,
  3942. "w": 1
  3943. },
  3944. "_skewX": 0,
  3945. "_skewY": 0,
  3946. "_zIndex": 0,
  3947. "groupIndex": 0,
  3948. "_id": ""
  3949. },
  3950. {
  3951. "__type__": "cc.Node",
  3952. "_name": "view",
  3953. "_objFlags": 0,
  3954. "_parent": {
  3955. "__id__": 113
  3956. },
  3957. "_children": [
  3958. {
  3959. "__id__": 115
  3960. }
  3961. ],
  3962. "_active": true,
  3963. "_level": 0,
  3964. "_components": [
  3965. {
  3966. "__id__": 118
  3967. },
  3968. {
  3969. "__id__": 119
  3970. }
  3971. ],
  3972. "_prefab": {
  3973. "__id__": 120
  3974. },
  3975. "_opacity": 255,
  3976. "_color": {
  3977. "__type__": "cc.Color",
  3978. "r": 255,
  3979. "g": 255,
  3980. "b": 255,
  3981. "a": 255
  3982. },
  3983. "_contentSize": {
  3984. "__type__": "cc.Size",
  3985. "width": 690,
  3986. "height": 730
  3987. },
  3988. "_anchorPoint": {
  3989. "__type__": "cc.Vec2",
  3990. "x": 0.5,
  3991. "y": 0.5
  3992. },
  3993. "_position": {
  3994. "__type__": "cc.Vec3",
  3995. "x": 0,
  3996. "y": 0,
  3997. "z": 0
  3998. },
  3999. "_scale": {
  4000. "__type__": "cc.Vec3",
  4001. "x": 1,
  4002. "y": 1,
  4003. "z": 1
  4004. },
  4005. "_rotationX": 0,
  4006. "_rotationY": 0,
  4007. "_quat": {
  4008. "__type__": "cc.Quat",
  4009. "x": 0,
  4010. "y": 0,
  4011. "z": 0,
  4012. "w": 1
  4013. },
  4014. "_skewX": 0,
  4015. "_skewY": 0,
  4016. "_zIndex": 0,
  4017. "groupIndex": 0,
  4018. "_id": ""
  4019. },
  4020. {
  4021. "__type__": "cc.Node",
  4022. "_name": "content",
  4023. "_objFlags": 0,
  4024. "_parent": {
  4025. "__id__": 114
  4026. },
  4027. "_children": [],
  4028. "_active": true,
  4029. "_level": 0,
  4030. "_components": [
  4031. {
  4032. "__id__": 116
  4033. }
  4034. ],
  4035. "_prefab": {
  4036. "__id__": 117
  4037. },
  4038. "_opacity": 255,
  4039. "_color": {
  4040. "__type__": "cc.Color",
  4041. "r": 255,
  4042. "g": 255,
  4043. "b": 255,
  4044. "a": 255
  4045. },
  4046. "_contentSize": {
  4047. "__type__": "cc.Size",
  4048. "width": 630,
  4049. "height": 160
  4050. },
  4051. "_anchorPoint": {
  4052. "__type__": "cc.Vec2",
  4053. "x": 0.5,
  4054. "y": 1
  4055. },
  4056. "_position": {
  4057. "__type__": "cc.Vec3",
  4058. "x": 0,
  4059. "y": 365,
  4060. "z": 0
  4061. },
  4062. "_scale": {
  4063. "__type__": "cc.Vec3",
  4064. "x": 1,
  4065. "y": 1,
  4066. "z": 1
  4067. },
  4068. "_rotationX": 0,
  4069. "_rotationY": 0,
  4070. "_quat": {
  4071. "__type__": "cc.Quat",
  4072. "x": 0,
  4073. "y": 0,
  4074. "z": 0,
  4075. "w": 1
  4076. },
  4077. "_skewX": 0,
  4078. "_skewY": 0,
  4079. "_zIndex": 0,
  4080. "groupIndex": 0,
  4081. "_id": ""
  4082. },
  4083. {
  4084. "__type__": "cc.Layout",
  4085. "_name": "",
  4086. "_objFlags": 0,
  4087. "node": {
  4088. "__id__": 115
  4089. },
  4090. "_enabled": true,
  4091. "_layoutSize": {
  4092. "__type__": "cc.Size",
  4093. "width": 630,
  4094. "height": 160
  4095. },
  4096. "_resize": 1,
  4097. "_N$layoutType": 2,
  4098. "_N$padding": 0,
  4099. "_N$cellSize": {
  4100. "__type__": "cc.Size",
  4101. "width": 40,
  4102. "height": 40
  4103. },
  4104. "_N$startAxis": 0,
  4105. "_N$paddingLeft": 0,
  4106. "_N$paddingRight": 0,
  4107. "_N$paddingTop": 0,
  4108. "_N$paddingBottom": 0,
  4109. "_N$spacingX": 0,
  4110. "_N$spacingY": 10,
  4111. "_N$verticalDirection": 1,
  4112. "_N$horizontalDirection": 0,
  4113. "_id": "d4sQtTm6xKvZB5/IjKyfmv"
  4114. },
  4115. {
  4116. "__type__": "cc.PrefabInfo",
  4117. "root": {
  4118. "__id__": 1
  4119. },
  4120. "asset": {
  4121. "__uuid__": "cc01c6a6-0d71-48e4-a457-4519fcdfb398"
  4122. },
  4123. "fileId": "25GbUisAtD1qGhxDO6xpav",
  4124. "sync": false
  4125. },
  4126. {
  4127. "__type__": "cc.Mask",
  4128. "_name": "",
  4129. "_objFlags": 0,
  4130. "node": {
  4131. "__id__": 114
  4132. },
  4133. "_enabled": true,
  4134. "_srcBlendFactor": 770,
  4135. "_dstBlendFactor": 771,
  4136. "_spriteFrame": null,
  4137. "_type": 0,
  4138. "_segments": 64,
  4139. "_N$alphaThreshold": 0,
  4140. "_N$inverted": false,
  4141. "_id": "521PdXX0NCgYwXWGAISuWM"
  4142. },
  4143. {
  4144. "__type__": "cc.Widget",
  4145. "_name": "",
  4146. "_objFlags": 0,
  4147. "node": {
  4148. "__id__": 114
  4149. },
  4150. "_enabled": true,
  4151. "alignMode": 1,
  4152. "_target": null,
  4153. "_alignFlags": 45,
  4154. "_left": 0,
  4155. "_right": 0,
  4156. "_top": 0,
  4157. "_bottom": 0,
  4158. "_verticalCenter": 0,
  4159. "_horizontalCenter": 0,
  4160. "_isAbsLeft": true,
  4161. "_isAbsRight": true,
  4162. "_isAbsTop": true,
  4163. "_isAbsBottom": true,
  4164. "_isAbsHorizontalCenter": true,
  4165. "_isAbsVerticalCenter": true,
  4166. "_originalWidth": 690,
  4167. "_originalHeight": 730,
  4168. "_id": "7f5+QQ2x9NaZTeMdQQ+N+C"
  4169. },
  4170. {
  4171. "__type__": "cc.PrefabInfo",
  4172. "root": {
  4173. "__id__": 1
  4174. },
  4175. "asset": {
  4176. "__uuid__": "cc01c6a6-0d71-48e4-a457-4519fcdfb398"
  4177. },
  4178. "fileId": "f0DIuwxURM3YOS6vKkk+27",
  4179. "sync": false
  4180. },
  4181. {
  4182. "__type__": "cc.ScrollView",
  4183. "_name": "",
  4184. "_objFlags": 0,
  4185. "node": {
  4186. "__id__": 113
  4187. },
  4188. "_enabled": true,
  4189. "content": {
  4190. "__id__": 115
  4191. },
  4192. "horizontal": false,
  4193. "vertical": true,
  4194. "inertia": true,
  4195. "brake": 0.75,
  4196. "elastic": true,
  4197. "bounceDuration": 0.23,
  4198. "scrollEvents": [],
  4199. "cancelInnerEvents": true,
  4200. "_N$horizontalScrollBar": null,
  4201. "_N$verticalScrollBar": null,
  4202. "_id": "b7Vk7n/VpB2YFXE3fmQwPS"
  4203. },
  4204. {
  4205. "__type__": "7aa71dArJJIU4tEkreSzlcY",
  4206. "_name": "",
  4207. "_objFlags": 0,
  4208. "node": {
  4209. "__id__": 113
  4210. },
  4211. "_enabled": true,
  4212. "item": {
  4213. "__uuid__": "c53a17be-9d8c-4b3f-90c6-3fad91aec40e"
  4214. },
  4215. "content": {
  4216. "__id__": 115
  4217. },
  4218. "_id": "07OVVWRhJEgL2cI7LkoGBI"
  4219. },
  4220. {
  4221. "__type__": "cc.Widget",
  4222. "_name": "",
  4223. "_objFlags": 0,
  4224. "node": {
  4225. "__id__": 113
  4226. },
  4227. "_enabled": true,
  4228. "alignMode": 1,
  4229. "_target": null,
  4230. "_alignFlags": 45,
  4231. "_left": 23,
  4232. "_right": 23,
  4233. "_top": 246,
  4234. "_bottom": 16,
  4235. "_verticalCenter": 0,
  4236. "_horizontalCenter": 0,
  4237. "_isAbsLeft": true,
  4238. "_isAbsRight": true,
  4239. "_isAbsTop": true,
  4240. "_isAbsBottom": true,
  4241. "_isAbsHorizontalCenter": true,
  4242. "_isAbsVerticalCenter": true,
  4243. "_originalWidth": 690,
  4244. "_originalHeight": 730,
  4245. "_id": "37JCFQBDtMrJL+D+c907ju"
  4246. },
  4247. {
  4248. "__type__": "cc.PrefabInfo",
  4249. "root": {
  4250. "__id__": 1
  4251. },
  4252. "asset": {
  4253. "__uuid__": "cc01c6a6-0d71-48e4-a457-4519fcdfb398"
  4254. },
  4255. "fileId": "2el9YIbHZFs4BC2PFQxrLA",
  4256. "sync": false
  4257. },
  4258. {
  4259. "__type__": "cc.PrefabInfo",
  4260. "root": {
  4261. "__id__": 1
  4262. },
  4263. "asset": {
  4264. "__uuid__": "cc01c6a6-0d71-48e4-a457-4519fcdfb398"
  4265. },
  4266. "fileId": "381GCBpc5Pn5q9bavUrabb",
  4267. "sync": false
  4268. },
  4269. {
  4270. "__type__": "a76aaZz3AxFTqiGfweK0VGT",
  4271. "_name": "",
  4272. "_objFlags": 0,
  4273. "node": {
  4274. "__id__": 1
  4275. },
  4276. "_enabled": true,
  4277. "topBtnSpriteArr": [
  4278. {
  4279. "__id__": 33
  4280. },
  4281. {
  4282. "__id__": 40
  4283. },
  4284. {
  4285. "__id__": 50
  4286. },
  4287. {
  4288. "__id__": 60
  4289. }
  4290. ],
  4291. "titleRichText": {
  4292. "__id__": 20
  4293. },
  4294. "contentArr": [
  4295. {
  4296. "__id__": 76
  4297. },
  4298. {
  4299. "__id__": 89
  4300. },
  4301. {
  4302. "__id__": 101
  4303. },
  4304. {
  4305. "__id__": 113
  4306. }
  4307. ],
  4308. "tabSlectedSpriteFrames": [
  4309. {
  4310. "__uuid__": "7dc823cf-0055-4090-bb89-84d4abc3a504"
  4311. },
  4312. {
  4313. "__uuid__": "6f5e6939-36ad-4d20-b4fe-97bbe394606d"
  4314. },
  4315. {
  4316. "__uuid__": "b7914850-b80c-4a41-8e81-8e3b35d8ddd7"
  4317. },
  4318. {
  4319. "__uuid__": "abb4f292-551b-414f-9672-c08676f03e03"
  4320. }
  4321. ],
  4322. "tabNormalSpriteFrames": [
  4323. {
  4324. "__uuid__": "601abc8c-a80a-4d09-9af1-49c4504fbcfb"
  4325. },
  4326. {
  4327. "__uuid__": "16d92df0-d5cd-4d13-980f-8f6c6d555ab9"
  4328. },
  4329. {
  4330. "__uuid__": "5e763bee-abec-4069-94b4-55f4e2ee3272"
  4331. },
  4332. {
  4333. "__uuid__": "be4ab777-301d-46ae-b465-efc6a0e5e16b"
  4334. }
  4335. ],
  4336. "userIdLabel": {
  4337. "__id__": 12
  4338. },
  4339. "coinRedNode": {
  4340. "__id__": 52
  4341. },
  4342. "diamandRedNode": {
  4343. "__id__": 42
  4344. },
  4345. "contentNode": {
  4346. "__id__": 6
  4347. },
  4348. "_tabIndex": 1,
  4349. "_id": "c0TSYGEr5H25hcFmaZokz9"
  4350. },
  4351. {
  4352. "__type__": "cc.PrefabInfo",
  4353. "root": {
  4354. "__id__": 1
  4355. },
  4356. "asset": {
  4357. "__uuid__": "cc01c6a6-0d71-48e4-a457-4519fcdfb398"
  4358. },
  4359. "fileId": "8f3FhZS9lKYr7uP6y/A6rh",
  4360. "sync": false
  4361. }
  4362. ]