store_content.prefab 77 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374
  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": ""
  174. },
  175. {
  176. "__type__": "cc.BlockInputEvents",
  177. "_name": "",
  178. "_objFlags": 0,
  179. "node": {
  180. "__id__": 2
  181. },
  182. "_enabled": true,
  183. "_id": ""
  184. },
  185. {
  186. "__type__": "cc.PrefabInfo",
  187. "root": {
  188. "__id__": 1
  189. },
  190. "asset": {
  191. "__uuid__": "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": ""
  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": ""
  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": ""
  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": ""
  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": ""
  774. },
  775. {
  776. "__type__": "cc.PrefabInfo",
  777. "root": {
  778. "__id__": 1
  779. },
  780. "asset": {
  781. "__uuid__": "cc01c6a6-0d71-48e4-a457-4519fcdfb398"
  782. },
  783. "fileId": "48XuETyUtCColX/aGzSzpF",
  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": ""
  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": ""
  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": ""
  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": ""
  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": 524,
  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": ""
  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": -127,
  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": ""
  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": ""
  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": ""
  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": ""
  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": ""
  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": ""
  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": ""
  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": ""
  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": ""
  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": ""
  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": ""
  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": ""
  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": ""
  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": 494,
  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": 18,
  2542. "y": -9,
  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": ""
  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": ""
  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": -55,
  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": ""
  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": ""
  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": ""
  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": ""
  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. "horizontal": false,
  3034. "vertical": true,
  3035. "inertia": true,
  3036. "brake": 0.75,
  3037. "elastic": true,
  3038. "bounceDuration": 0.23,
  3039. "scrollEvents": [
  3040. {
  3041. "__id__": 85
  3042. }
  3043. ],
  3044. "cancelInnerEvents": false,
  3045. "_N$content": {
  3046. "__id__": 78
  3047. },
  3048. "content": {
  3049. "__id__": 78
  3050. },
  3051. "_N$horizontalScrollBar": null,
  3052. "_N$verticalScrollBar": null,
  3053. "_id": ""
  3054. },
  3055. {
  3056. "__type__": "cc.ClickEvent",
  3057. "target": {
  3058. "__id__": 76
  3059. },
  3060. "component": "StarScrollView",
  3061. "handler": "onScroll",
  3062. "customEventData": ""
  3063. },
  3064. {
  3065. "__type__": "0ec95WrV5pN0p3N9CvU+3Ds",
  3066. "_name": "",
  3067. "_objFlags": 0,
  3068. "node": {
  3069. "__id__": 76
  3070. },
  3071. "_enabled": true,
  3072. "item": {
  3073. "__uuid__": "c53a17be-9d8c-4b3f-90c6-3fad91aec40e"
  3074. },
  3075. "content": {
  3076. "__id__": 78
  3077. },
  3078. "_id": ""
  3079. },
  3080. {
  3081. "__type__": "cc.Widget",
  3082. "_name": "",
  3083. "_objFlags": 0,
  3084. "node": {
  3085. "__id__": 76
  3086. },
  3087. "_enabled": true,
  3088. "alignMode": 1,
  3089. "_target": null,
  3090. "_alignFlags": 5,
  3091. "_left": 23,
  3092. "_right": 23,
  3093. "_top": 246,
  3094. "_bottom": 16,
  3095. "_verticalCenter": 0,
  3096. "_horizontalCenter": 0,
  3097. "_isAbsLeft": true,
  3098. "_isAbsRight": true,
  3099. "_isAbsTop": true,
  3100. "_isAbsBottom": true,
  3101. "_isAbsHorizontalCenter": true,
  3102. "_isAbsVerticalCenter": true,
  3103. "_originalWidth": 690,
  3104. "_originalHeight": 730,
  3105. "_id": ""
  3106. },
  3107. {
  3108. "__type__": "cc.PrefabInfo",
  3109. "root": {
  3110. "__id__": 1
  3111. },
  3112. "asset": {
  3113. "__uuid__": "cc01c6a6-0d71-48e4-a457-4519fcdfb398"
  3114. },
  3115. "fileId": "6e9i8K3M1OjYiia9ga2gIv",
  3116. "sync": false
  3117. },
  3118. {
  3119. "__type__": "cc.Node",
  3120. "_name": "diamond",
  3121. "_objFlags": 0,
  3122. "_parent": {
  3123. "__id__": 6
  3124. },
  3125. "_children": [
  3126. {
  3127. "__id__": 90
  3128. }
  3129. ],
  3130. "_active": false,
  3131. "_level": 3,
  3132. "_components": [
  3133. {
  3134. "__id__": 97
  3135. },
  3136. {
  3137. "__id__": 98
  3138. },
  3139. {
  3140. "__id__": 99
  3141. }
  3142. ],
  3143. "_prefab": {
  3144. "__id__": 100
  3145. },
  3146. "_opacity": 255,
  3147. "_color": {
  3148. "__type__": "cc.Color",
  3149. "r": 255,
  3150. "g": 255,
  3151. "b": 255,
  3152. "a": 255
  3153. },
  3154. "_contentSize": {
  3155. "__type__": "cc.Size",
  3156. "width": 690,
  3157. "height": 730
  3158. },
  3159. "_anchorPoint": {
  3160. "__type__": "cc.Vec2",
  3161. "x": 0.5,
  3162. "y": 0.5
  3163. },
  3164. "_position": {
  3165. "__type__": "cc.Vec3",
  3166. "x": 0,
  3167. "y": -115,
  3168. "z": 0
  3169. },
  3170. "_scale": {
  3171. "__type__": "cc.Vec3",
  3172. "x": 1,
  3173. "y": 1,
  3174. "z": 1
  3175. },
  3176. "_rotationX": 0,
  3177. "_rotationY": 0,
  3178. "_quat": {
  3179. "__type__": "cc.Quat",
  3180. "x": 0,
  3181. "y": 0,
  3182. "z": 0,
  3183. "w": 1
  3184. },
  3185. "_skewX": 0,
  3186. "_skewY": 0,
  3187. "_zIndex": 0,
  3188. "groupIndex": 0,
  3189. "_id": ""
  3190. },
  3191. {
  3192. "__type__": "cc.Node",
  3193. "_name": "view",
  3194. "_objFlags": 0,
  3195. "_parent": {
  3196. "__id__": 89
  3197. },
  3198. "_children": [
  3199. {
  3200. "__id__": 91
  3201. }
  3202. ],
  3203. "_active": true,
  3204. "_level": 0,
  3205. "_components": [
  3206. {
  3207. "__id__": 94
  3208. },
  3209. {
  3210. "__id__": 95
  3211. }
  3212. ],
  3213. "_prefab": {
  3214. "__id__": 96
  3215. },
  3216. "_opacity": 255,
  3217. "_color": {
  3218. "__type__": "cc.Color",
  3219. "r": 255,
  3220. "g": 255,
  3221. "b": 255,
  3222. "a": 255
  3223. },
  3224. "_contentSize": {
  3225. "__type__": "cc.Size",
  3226. "width": 690,
  3227. "height": 730
  3228. },
  3229. "_anchorPoint": {
  3230. "__type__": "cc.Vec2",
  3231. "x": 0.5,
  3232. "y": 0.5
  3233. },
  3234. "_position": {
  3235. "__type__": "cc.Vec3",
  3236. "x": 0,
  3237. "y": 0,
  3238. "z": 0
  3239. },
  3240. "_scale": {
  3241. "__type__": "cc.Vec3",
  3242. "x": 1,
  3243. "y": 1,
  3244. "z": 1
  3245. },
  3246. "_rotationX": 0,
  3247. "_rotationY": 0,
  3248. "_quat": {
  3249. "__type__": "cc.Quat",
  3250. "x": 0,
  3251. "y": 0,
  3252. "z": 0,
  3253. "w": 1
  3254. },
  3255. "_skewX": 0,
  3256. "_skewY": 0,
  3257. "_zIndex": 0,
  3258. "groupIndex": 0,
  3259. "_id": ""
  3260. },
  3261. {
  3262. "__type__": "cc.Node",
  3263. "_name": "content",
  3264. "_objFlags": 0,
  3265. "_parent": {
  3266. "__id__": 90
  3267. },
  3268. "_children": [],
  3269. "_active": true,
  3270. "_level": 0,
  3271. "_components": [
  3272. {
  3273. "__id__": 92
  3274. }
  3275. ],
  3276. "_prefab": {
  3277. "__id__": 93
  3278. },
  3279. "_opacity": 255,
  3280. "_color": {
  3281. "__type__": "cc.Color",
  3282. "r": 255,
  3283. "g": 255,
  3284. "b": 255,
  3285. "a": 255
  3286. },
  3287. "_contentSize": {
  3288. "__type__": "cc.Size",
  3289. "width": 630,
  3290. "height": 160
  3291. },
  3292. "_anchorPoint": {
  3293. "__type__": "cc.Vec2",
  3294. "x": 0.5,
  3295. "y": 1
  3296. },
  3297. "_position": {
  3298. "__type__": "cc.Vec3",
  3299. "x": 0,
  3300. "y": 365,
  3301. "z": 0
  3302. },
  3303. "_scale": {
  3304. "__type__": "cc.Vec3",
  3305. "x": 1,
  3306. "y": 1,
  3307. "z": 1
  3308. },
  3309. "_rotationX": 0,
  3310. "_rotationY": 0,
  3311. "_quat": {
  3312. "__type__": "cc.Quat",
  3313. "x": 0,
  3314. "y": 0,
  3315. "z": 0,
  3316. "w": 1
  3317. },
  3318. "_skewX": 0,
  3319. "_skewY": 0,
  3320. "_zIndex": 0,
  3321. "groupIndex": 0,
  3322. "_id": ""
  3323. },
  3324. {
  3325. "__type__": "cc.Layout",
  3326. "_name": "",
  3327. "_objFlags": 0,
  3328. "node": {
  3329. "__id__": 91
  3330. },
  3331. "_enabled": true,
  3332. "_layoutSize": {
  3333. "__type__": "cc.Size",
  3334. "width": 630,
  3335. "height": 160
  3336. },
  3337. "_resize": 1,
  3338. "_N$layoutType": 3,
  3339. "_N$padding": 0,
  3340. "_N$cellSize": {
  3341. "__type__": "cc.Size",
  3342. "width": 40,
  3343. "height": 40
  3344. },
  3345. "_N$startAxis": 0,
  3346. "_N$paddingLeft": 30,
  3347. "_N$paddingRight": 0,
  3348. "_N$paddingTop": 0,
  3349. "_N$paddingBottom": 0,
  3350. "_N$spacingX": 15,
  3351. "_N$spacingY": 15,
  3352. "_N$verticalDirection": 1,
  3353. "_N$horizontalDirection": 0,
  3354. "_id": ""
  3355. },
  3356. {
  3357. "__type__": "cc.PrefabInfo",
  3358. "root": {
  3359. "__id__": 1
  3360. },
  3361. "asset": {
  3362. "__uuid__": "cc01c6a6-0d71-48e4-a457-4519fcdfb398"
  3363. },
  3364. "fileId": "96QTx28BdB9KnMeqeURABF",
  3365. "sync": false
  3366. },
  3367. {
  3368. "__type__": "cc.Mask",
  3369. "_name": "",
  3370. "_objFlags": 0,
  3371. "node": {
  3372. "__id__": 90
  3373. },
  3374. "_enabled": true,
  3375. "_srcBlendFactor": 770,
  3376. "_dstBlendFactor": 771,
  3377. "_spriteFrame": null,
  3378. "_type": 0,
  3379. "_segments": 64,
  3380. "_N$alphaThreshold": 0,
  3381. "_N$inverted": false,
  3382. "_id": ""
  3383. },
  3384. {
  3385. "__type__": "cc.Widget",
  3386. "_name": "",
  3387. "_objFlags": 0,
  3388. "node": {
  3389. "__id__": 90
  3390. },
  3391. "_enabled": true,
  3392. "alignMode": 1,
  3393. "_target": null,
  3394. "_alignFlags": 45,
  3395. "_left": 0,
  3396. "_right": 0,
  3397. "_top": 0,
  3398. "_bottom": 0,
  3399. "_verticalCenter": 0,
  3400. "_horizontalCenter": 0,
  3401. "_isAbsLeft": true,
  3402. "_isAbsRight": true,
  3403. "_isAbsTop": true,
  3404. "_isAbsBottom": true,
  3405. "_isAbsHorizontalCenter": true,
  3406. "_isAbsVerticalCenter": true,
  3407. "_originalWidth": 690,
  3408. "_originalHeight": 730,
  3409. "_id": ""
  3410. },
  3411. {
  3412. "__type__": "cc.PrefabInfo",
  3413. "root": {
  3414. "__id__": 1
  3415. },
  3416. "asset": {
  3417. "__uuid__": "cc01c6a6-0d71-48e4-a457-4519fcdfb398"
  3418. },
  3419. "fileId": "39ePGHTThI8bGEivg2sShG",
  3420. "sync": false
  3421. },
  3422. {
  3423. "__type__": "cc.ScrollView",
  3424. "_name": "",
  3425. "_objFlags": 0,
  3426. "node": {
  3427. "__id__": 89
  3428. },
  3429. "_enabled": true,
  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$content": {
  3439. "__id__": 91
  3440. },
  3441. "content": {
  3442. "__id__": 91
  3443. },
  3444. "_N$horizontalScrollBar": null,
  3445. "_N$verticalScrollBar": null,
  3446. "_id": ""
  3447. },
  3448. {
  3449. "__type__": "ec284Gahy1CIYpfWKmpBKnS",
  3450. "_name": "",
  3451. "_objFlags": 0,
  3452. "node": {
  3453. "__id__": 89
  3454. },
  3455. "_enabled": true,
  3456. "item": {
  3457. "__uuid__": "f9dbb66f-b5c4-49fd-b5d2-d02c923ab1b3"
  3458. },
  3459. "content": {
  3460. "__id__": 91
  3461. },
  3462. "_id": ""
  3463. },
  3464. {
  3465. "__type__": "cc.Widget",
  3466. "_name": "",
  3467. "_objFlags": 0,
  3468. "node": {
  3469. "__id__": 89
  3470. },
  3471. "_enabled": true,
  3472. "alignMode": 1,
  3473. "_target": null,
  3474. "_alignFlags": 45,
  3475. "_left": 23,
  3476. "_right": 23,
  3477. "_top": 246,
  3478. "_bottom": 16,
  3479. "_verticalCenter": 0,
  3480. "_horizontalCenter": 0,
  3481. "_isAbsLeft": true,
  3482. "_isAbsRight": true,
  3483. "_isAbsTop": true,
  3484. "_isAbsBottom": true,
  3485. "_isAbsHorizontalCenter": true,
  3486. "_isAbsVerticalCenter": true,
  3487. "_originalWidth": 690,
  3488. "_originalHeight": 730,
  3489. "_id": ""
  3490. },
  3491. {
  3492. "__type__": "cc.PrefabInfo",
  3493. "root": {
  3494. "__id__": 1
  3495. },
  3496. "asset": {
  3497. "__uuid__": "cc01c6a6-0d71-48e4-a457-4519fcdfb398"
  3498. },
  3499. "fileId": "89L4s4etNKi4UgecVQzzJV",
  3500. "sync": false
  3501. },
  3502. {
  3503. "__type__": "cc.Node",
  3504. "_name": "coin",
  3505. "_objFlags": 0,
  3506. "_parent": {
  3507. "__id__": 6
  3508. },
  3509. "_children": [
  3510. {
  3511. "__id__": 102
  3512. }
  3513. ],
  3514. "_active": false,
  3515. "_level": 3,
  3516. "_components": [
  3517. {
  3518. "__id__": 109
  3519. },
  3520. {
  3521. "__id__": 110
  3522. },
  3523. {
  3524. "__id__": 111
  3525. }
  3526. ],
  3527. "_prefab": {
  3528. "__id__": 112
  3529. },
  3530. "_opacity": 255,
  3531. "_color": {
  3532. "__type__": "cc.Color",
  3533. "r": 255,
  3534. "g": 255,
  3535. "b": 255,
  3536. "a": 255
  3537. },
  3538. "_contentSize": {
  3539. "__type__": "cc.Size",
  3540. "width": 690,
  3541. "height": 730
  3542. },
  3543. "_anchorPoint": {
  3544. "__type__": "cc.Vec2",
  3545. "x": 0.5,
  3546. "y": 0.5
  3547. },
  3548. "_position": {
  3549. "__type__": "cc.Vec3",
  3550. "x": 0,
  3551. "y": -115,
  3552. "z": 0
  3553. },
  3554. "_scale": {
  3555. "__type__": "cc.Vec3",
  3556. "x": 1,
  3557. "y": 1,
  3558. "z": 1
  3559. },
  3560. "_rotationX": 0,
  3561. "_rotationY": 0,
  3562. "_quat": {
  3563. "__type__": "cc.Quat",
  3564. "x": 0,
  3565. "y": 0,
  3566. "z": 0,
  3567. "w": 1
  3568. },
  3569. "_skewX": 0,
  3570. "_skewY": 0,
  3571. "_zIndex": 0,
  3572. "groupIndex": 0,
  3573. "_id": ""
  3574. },
  3575. {
  3576. "__type__": "cc.Node",
  3577. "_name": "view",
  3578. "_objFlags": 0,
  3579. "_parent": {
  3580. "__id__": 101
  3581. },
  3582. "_children": [
  3583. {
  3584. "__id__": 103
  3585. }
  3586. ],
  3587. "_active": true,
  3588. "_level": 0,
  3589. "_components": [
  3590. {
  3591. "__id__": 106
  3592. },
  3593. {
  3594. "__id__": 107
  3595. }
  3596. ],
  3597. "_prefab": {
  3598. "__id__": 108
  3599. },
  3600. "_opacity": 255,
  3601. "_color": {
  3602. "__type__": "cc.Color",
  3603. "r": 255,
  3604. "g": 255,
  3605. "b": 255,
  3606. "a": 255
  3607. },
  3608. "_contentSize": {
  3609. "__type__": "cc.Size",
  3610. "width": 690,
  3611. "height": 730
  3612. },
  3613. "_anchorPoint": {
  3614. "__type__": "cc.Vec2",
  3615. "x": 0.5,
  3616. "y": 0.5
  3617. },
  3618. "_position": {
  3619. "__type__": "cc.Vec3",
  3620. "x": 0,
  3621. "y": 0,
  3622. "z": 0
  3623. },
  3624. "_scale": {
  3625. "__type__": "cc.Vec3",
  3626. "x": 1,
  3627. "y": 1,
  3628. "z": 1
  3629. },
  3630. "_rotationX": 0,
  3631. "_rotationY": 0,
  3632. "_quat": {
  3633. "__type__": "cc.Quat",
  3634. "x": 0,
  3635. "y": 0,
  3636. "z": 0,
  3637. "w": 1
  3638. },
  3639. "_skewX": 0,
  3640. "_skewY": 0,
  3641. "_zIndex": 0,
  3642. "groupIndex": 0,
  3643. "_id": ""
  3644. },
  3645. {
  3646. "__type__": "cc.Node",
  3647. "_name": "content",
  3648. "_objFlags": 0,
  3649. "_parent": {
  3650. "__id__": 102
  3651. },
  3652. "_children": [],
  3653. "_active": true,
  3654. "_level": 0,
  3655. "_components": [
  3656. {
  3657. "__id__": 104
  3658. }
  3659. ],
  3660. "_prefab": {
  3661. "__id__": 105
  3662. },
  3663. "_opacity": 255,
  3664. "_color": {
  3665. "__type__": "cc.Color",
  3666. "r": 255,
  3667. "g": 255,
  3668. "b": 255,
  3669. "a": 255
  3670. },
  3671. "_contentSize": {
  3672. "__type__": "cc.Size",
  3673. "width": 630,
  3674. "height": 160
  3675. },
  3676. "_anchorPoint": {
  3677. "__type__": "cc.Vec2",
  3678. "x": 0.5,
  3679. "y": 1
  3680. },
  3681. "_position": {
  3682. "__type__": "cc.Vec3",
  3683. "x": 0,
  3684. "y": 365,
  3685. "z": 0
  3686. },
  3687. "_scale": {
  3688. "__type__": "cc.Vec3",
  3689. "x": 1,
  3690. "y": 1,
  3691. "z": 1
  3692. },
  3693. "_rotationX": 0,
  3694. "_rotationY": 0,
  3695. "_quat": {
  3696. "__type__": "cc.Quat",
  3697. "x": 0,
  3698. "y": 0,
  3699. "z": 0,
  3700. "w": 1
  3701. },
  3702. "_skewX": 0,
  3703. "_skewY": 0,
  3704. "_zIndex": 0,
  3705. "groupIndex": 0,
  3706. "_id": ""
  3707. },
  3708. {
  3709. "__type__": "cc.Layout",
  3710. "_name": "",
  3711. "_objFlags": 0,
  3712. "node": {
  3713. "__id__": 103
  3714. },
  3715. "_enabled": true,
  3716. "_layoutSize": {
  3717. "__type__": "cc.Size",
  3718. "width": 630,
  3719. "height": 160
  3720. },
  3721. "_resize": 1,
  3722. "_N$layoutType": 3,
  3723. "_N$padding": 0,
  3724. "_N$cellSize": {
  3725. "__type__": "cc.Size",
  3726. "width": 40,
  3727. "height": 40
  3728. },
  3729. "_N$startAxis": 0,
  3730. "_N$paddingLeft": 30,
  3731. "_N$paddingRight": 0,
  3732. "_N$paddingTop": 0,
  3733. "_N$paddingBottom": 0,
  3734. "_N$spacingX": 15,
  3735. "_N$spacingY": 15,
  3736. "_N$verticalDirection": 1,
  3737. "_N$horizontalDirection": 0,
  3738. "_id": ""
  3739. },
  3740. {
  3741. "__type__": "cc.PrefabInfo",
  3742. "root": {
  3743. "__id__": 1
  3744. },
  3745. "asset": {
  3746. "__uuid__": "cc01c6a6-0d71-48e4-a457-4519fcdfb398"
  3747. },
  3748. "fileId": "18jpNjnu5HHLy0lrXT2svp",
  3749. "sync": false
  3750. },
  3751. {
  3752. "__type__": "cc.Mask",
  3753. "_name": "",
  3754. "_objFlags": 0,
  3755. "node": {
  3756. "__id__": 102
  3757. },
  3758. "_enabled": true,
  3759. "_srcBlendFactor": 770,
  3760. "_dstBlendFactor": 771,
  3761. "_spriteFrame": null,
  3762. "_type": 0,
  3763. "_segments": 64,
  3764. "_N$alphaThreshold": 0,
  3765. "_N$inverted": false,
  3766. "_id": ""
  3767. },
  3768. {
  3769. "__type__": "cc.Widget",
  3770. "_name": "",
  3771. "_objFlags": 0,
  3772. "node": {
  3773. "__id__": 102
  3774. },
  3775. "_enabled": true,
  3776. "alignMode": 1,
  3777. "_target": null,
  3778. "_alignFlags": 45,
  3779. "_left": 0,
  3780. "_right": 0,
  3781. "_top": 0,
  3782. "_bottom": 0,
  3783. "_verticalCenter": 0,
  3784. "_horizontalCenter": 0,
  3785. "_isAbsLeft": true,
  3786. "_isAbsRight": true,
  3787. "_isAbsTop": true,
  3788. "_isAbsBottom": true,
  3789. "_isAbsHorizontalCenter": true,
  3790. "_isAbsVerticalCenter": true,
  3791. "_originalWidth": 690,
  3792. "_originalHeight": 730,
  3793. "_id": ""
  3794. },
  3795. {
  3796. "__type__": "cc.PrefabInfo",
  3797. "root": {
  3798. "__id__": 1
  3799. },
  3800. "asset": {
  3801. "__uuid__": "cc01c6a6-0d71-48e4-a457-4519fcdfb398"
  3802. },
  3803. "fileId": "846YZ0xyZOhooOrRwMpKVt",
  3804. "sync": false
  3805. },
  3806. {
  3807. "__type__": "cc.ScrollView",
  3808. "_name": "",
  3809. "_objFlags": 0,
  3810. "node": {
  3811. "__id__": 101
  3812. },
  3813. "_enabled": true,
  3814. "horizontal": false,
  3815. "vertical": true,
  3816. "inertia": true,
  3817. "brake": 0.75,
  3818. "elastic": true,
  3819. "bounceDuration": 0.23,
  3820. "scrollEvents": [],
  3821. "cancelInnerEvents": true,
  3822. "_N$content": {
  3823. "__id__": 103
  3824. },
  3825. "content": {
  3826. "__id__": 103
  3827. },
  3828. "_N$horizontalScrollBar": null,
  3829. "_N$verticalScrollBar": null,
  3830. "_id": ""
  3831. },
  3832. {
  3833. "__type__": "b4785MBetlEjKLK9+rZtE+t",
  3834. "_name": "",
  3835. "_objFlags": 0,
  3836. "node": {
  3837. "__id__": 101
  3838. },
  3839. "_enabled": true,
  3840. "item": {
  3841. "__uuid__": "f9dbb66f-b5c4-49fd-b5d2-d02c923ab1b3"
  3842. },
  3843. "content": {
  3844. "__id__": 103
  3845. },
  3846. "_id": ""
  3847. },
  3848. {
  3849. "__type__": "cc.Widget",
  3850. "_name": "",
  3851. "_objFlags": 0,
  3852. "node": {
  3853. "__id__": 101
  3854. },
  3855. "_enabled": true,
  3856. "alignMode": 1,
  3857. "_target": null,
  3858. "_alignFlags": 45,
  3859. "_left": 23,
  3860. "_right": 23,
  3861. "_top": 246,
  3862. "_bottom": 16,
  3863. "_verticalCenter": 0,
  3864. "_horizontalCenter": 0,
  3865. "_isAbsLeft": true,
  3866. "_isAbsRight": true,
  3867. "_isAbsTop": true,
  3868. "_isAbsBottom": true,
  3869. "_isAbsHorizontalCenter": true,
  3870. "_isAbsVerticalCenter": true,
  3871. "_originalWidth": 690,
  3872. "_originalHeight": 730,
  3873. "_id": ""
  3874. },
  3875. {
  3876. "__type__": "cc.PrefabInfo",
  3877. "root": {
  3878. "__id__": 1
  3879. },
  3880. "asset": {
  3881. "__uuid__": "cc01c6a6-0d71-48e4-a457-4519fcdfb398"
  3882. },
  3883. "fileId": "a2jDFxSeFOWLBsktVn+OJg",
  3884. "sync": false
  3885. },
  3886. {
  3887. "__type__": "cc.Node",
  3888. "_name": "gift",
  3889. "_objFlags": 0,
  3890. "_parent": {
  3891. "__id__": 6
  3892. },
  3893. "_children": [
  3894. {
  3895. "__id__": 114
  3896. }
  3897. ],
  3898. "_active": false,
  3899. "_level": 3,
  3900. "_components": [
  3901. {
  3902. "__id__": 121
  3903. },
  3904. {
  3905. "__id__": 122
  3906. },
  3907. {
  3908. "__id__": 123
  3909. }
  3910. ],
  3911. "_prefab": {
  3912. "__id__": 124
  3913. },
  3914. "_opacity": 255,
  3915. "_color": {
  3916. "__type__": "cc.Color",
  3917. "r": 255,
  3918. "g": 255,
  3919. "b": 255,
  3920. "a": 255
  3921. },
  3922. "_contentSize": {
  3923. "__type__": "cc.Size",
  3924. "width": 690,
  3925. "height": 730
  3926. },
  3927. "_anchorPoint": {
  3928. "__type__": "cc.Vec2",
  3929. "x": 0.5,
  3930. "y": 0.5
  3931. },
  3932. "_position": {
  3933. "__type__": "cc.Vec3",
  3934. "x": 0,
  3935. "y": -115,
  3936. "z": 0
  3937. },
  3938. "_scale": {
  3939. "__type__": "cc.Vec3",
  3940. "x": 1,
  3941. "y": 1,
  3942. "z": 1
  3943. },
  3944. "_rotationX": 0,
  3945. "_rotationY": 0,
  3946. "_quat": {
  3947. "__type__": "cc.Quat",
  3948. "x": 0,
  3949. "y": 0,
  3950. "z": 0,
  3951. "w": 1
  3952. },
  3953. "_skewX": 0,
  3954. "_skewY": 0,
  3955. "_zIndex": 0,
  3956. "groupIndex": 0,
  3957. "_id": ""
  3958. },
  3959. {
  3960. "__type__": "cc.Node",
  3961. "_name": "view",
  3962. "_objFlags": 0,
  3963. "_parent": {
  3964. "__id__": 113
  3965. },
  3966. "_children": [
  3967. {
  3968. "__id__": 115
  3969. }
  3970. ],
  3971. "_active": true,
  3972. "_level": 0,
  3973. "_components": [
  3974. {
  3975. "__id__": 118
  3976. },
  3977. {
  3978. "__id__": 119
  3979. }
  3980. ],
  3981. "_prefab": {
  3982. "__id__": 120
  3983. },
  3984. "_opacity": 255,
  3985. "_color": {
  3986. "__type__": "cc.Color",
  3987. "r": 255,
  3988. "g": 255,
  3989. "b": 255,
  3990. "a": 255
  3991. },
  3992. "_contentSize": {
  3993. "__type__": "cc.Size",
  3994. "width": 690,
  3995. "height": 730
  3996. },
  3997. "_anchorPoint": {
  3998. "__type__": "cc.Vec2",
  3999. "x": 0.5,
  4000. "y": 0.5
  4001. },
  4002. "_position": {
  4003. "__type__": "cc.Vec3",
  4004. "x": 0,
  4005. "y": 0,
  4006. "z": 0
  4007. },
  4008. "_scale": {
  4009. "__type__": "cc.Vec3",
  4010. "x": 1,
  4011. "y": 1,
  4012. "z": 1
  4013. },
  4014. "_rotationX": 0,
  4015. "_rotationY": 0,
  4016. "_quat": {
  4017. "__type__": "cc.Quat",
  4018. "x": 0,
  4019. "y": 0,
  4020. "z": 0,
  4021. "w": 1
  4022. },
  4023. "_skewX": 0,
  4024. "_skewY": 0,
  4025. "_zIndex": 0,
  4026. "groupIndex": 0,
  4027. "_id": ""
  4028. },
  4029. {
  4030. "__type__": "cc.Node",
  4031. "_name": "content",
  4032. "_objFlags": 0,
  4033. "_parent": {
  4034. "__id__": 114
  4035. },
  4036. "_children": [],
  4037. "_active": true,
  4038. "_level": 0,
  4039. "_components": [
  4040. {
  4041. "__id__": 116
  4042. }
  4043. ],
  4044. "_prefab": {
  4045. "__id__": 117
  4046. },
  4047. "_opacity": 255,
  4048. "_color": {
  4049. "__type__": "cc.Color",
  4050. "r": 255,
  4051. "g": 255,
  4052. "b": 255,
  4053. "a": 255
  4054. },
  4055. "_contentSize": {
  4056. "__type__": "cc.Size",
  4057. "width": 630,
  4058. "height": 160
  4059. },
  4060. "_anchorPoint": {
  4061. "__type__": "cc.Vec2",
  4062. "x": 0.5,
  4063. "y": 1
  4064. },
  4065. "_position": {
  4066. "__type__": "cc.Vec3",
  4067. "x": 0,
  4068. "y": 365,
  4069. "z": 0
  4070. },
  4071. "_scale": {
  4072. "__type__": "cc.Vec3",
  4073. "x": 1,
  4074. "y": 1,
  4075. "z": 1
  4076. },
  4077. "_rotationX": 0,
  4078. "_rotationY": 0,
  4079. "_quat": {
  4080. "__type__": "cc.Quat",
  4081. "x": 0,
  4082. "y": 0,
  4083. "z": 0,
  4084. "w": 1
  4085. },
  4086. "_skewX": 0,
  4087. "_skewY": 0,
  4088. "_zIndex": 0,
  4089. "groupIndex": 0,
  4090. "_id": ""
  4091. },
  4092. {
  4093. "__type__": "cc.Layout",
  4094. "_name": "",
  4095. "_objFlags": 0,
  4096. "node": {
  4097. "__id__": 115
  4098. },
  4099. "_enabled": true,
  4100. "_layoutSize": {
  4101. "__type__": "cc.Size",
  4102. "width": 630,
  4103. "height": 160
  4104. },
  4105. "_resize": 1,
  4106. "_N$layoutType": 2,
  4107. "_N$padding": 0,
  4108. "_N$cellSize": {
  4109. "__type__": "cc.Size",
  4110. "width": 40,
  4111. "height": 40
  4112. },
  4113. "_N$startAxis": 0,
  4114. "_N$paddingLeft": 0,
  4115. "_N$paddingRight": 0,
  4116. "_N$paddingTop": 0,
  4117. "_N$paddingBottom": 0,
  4118. "_N$spacingX": 0,
  4119. "_N$spacingY": 10,
  4120. "_N$verticalDirection": 1,
  4121. "_N$horizontalDirection": 0,
  4122. "_id": ""
  4123. },
  4124. {
  4125. "__type__": "cc.PrefabInfo",
  4126. "root": {
  4127. "__id__": 1
  4128. },
  4129. "asset": {
  4130. "__uuid__": "cc01c6a6-0d71-48e4-a457-4519fcdfb398"
  4131. },
  4132. "fileId": "25GbUisAtD1qGhxDO6xpav",
  4133. "sync": false
  4134. },
  4135. {
  4136. "__type__": "cc.Mask",
  4137. "_name": "",
  4138. "_objFlags": 0,
  4139. "node": {
  4140. "__id__": 114
  4141. },
  4142. "_enabled": true,
  4143. "_srcBlendFactor": 770,
  4144. "_dstBlendFactor": 771,
  4145. "_spriteFrame": null,
  4146. "_type": 0,
  4147. "_segments": 64,
  4148. "_N$alphaThreshold": 0,
  4149. "_N$inverted": false,
  4150. "_id": ""
  4151. },
  4152. {
  4153. "__type__": "cc.Widget",
  4154. "_name": "",
  4155. "_objFlags": 0,
  4156. "node": {
  4157. "__id__": 114
  4158. },
  4159. "_enabled": true,
  4160. "alignMode": 1,
  4161. "_target": null,
  4162. "_alignFlags": 45,
  4163. "_left": 0,
  4164. "_right": 0,
  4165. "_top": 0,
  4166. "_bottom": 0,
  4167. "_verticalCenter": 0,
  4168. "_horizontalCenter": 0,
  4169. "_isAbsLeft": true,
  4170. "_isAbsRight": true,
  4171. "_isAbsTop": true,
  4172. "_isAbsBottom": true,
  4173. "_isAbsHorizontalCenter": true,
  4174. "_isAbsVerticalCenter": true,
  4175. "_originalWidth": 690,
  4176. "_originalHeight": 730,
  4177. "_id": ""
  4178. },
  4179. {
  4180. "__type__": "cc.PrefabInfo",
  4181. "root": {
  4182. "__id__": 1
  4183. },
  4184. "asset": {
  4185. "__uuid__": "cc01c6a6-0d71-48e4-a457-4519fcdfb398"
  4186. },
  4187. "fileId": "f0DIuwxURM3YOS6vKkk+27",
  4188. "sync": false
  4189. },
  4190. {
  4191. "__type__": "cc.ScrollView",
  4192. "_name": "",
  4193. "_objFlags": 0,
  4194. "node": {
  4195. "__id__": 113
  4196. },
  4197. "_enabled": true,
  4198. "horizontal": false,
  4199. "vertical": true,
  4200. "inertia": true,
  4201. "brake": 0.75,
  4202. "elastic": true,
  4203. "bounceDuration": 0.23,
  4204. "scrollEvents": [],
  4205. "cancelInnerEvents": true,
  4206. "_N$content": {
  4207. "__id__": 115
  4208. },
  4209. "content": {
  4210. "__id__": 115
  4211. },
  4212. "_N$horizontalScrollBar": null,
  4213. "_N$verticalScrollBar": null,
  4214. "_id": ""
  4215. },
  4216. {
  4217. "__type__": "7aa71dArJJIU4tEkreSzlcY",
  4218. "_name": "",
  4219. "_objFlags": 0,
  4220. "node": {
  4221. "__id__": 113
  4222. },
  4223. "_enabled": true,
  4224. "item": {
  4225. "__uuid__": "c53a17be-9d8c-4b3f-90c6-3fad91aec40e"
  4226. },
  4227. "content": {
  4228. "__id__": 115
  4229. },
  4230. "_id": ""
  4231. },
  4232. {
  4233. "__type__": "cc.Widget",
  4234. "_name": "",
  4235. "_objFlags": 0,
  4236. "node": {
  4237. "__id__": 113
  4238. },
  4239. "_enabled": true,
  4240. "alignMode": 1,
  4241. "_target": null,
  4242. "_alignFlags": 45,
  4243. "_left": 23,
  4244. "_right": 23,
  4245. "_top": 246,
  4246. "_bottom": 16,
  4247. "_verticalCenter": 0,
  4248. "_horizontalCenter": 0,
  4249. "_isAbsLeft": true,
  4250. "_isAbsRight": true,
  4251. "_isAbsTop": true,
  4252. "_isAbsBottom": true,
  4253. "_isAbsHorizontalCenter": true,
  4254. "_isAbsVerticalCenter": true,
  4255. "_originalWidth": 690,
  4256. "_originalHeight": 730,
  4257. "_id": ""
  4258. },
  4259. {
  4260. "__type__": "cc.PrefabInfo",
  4261. "root": {
  4262. "__id__": 1
  4263. },
  4264. "asset": {
  4265. "__uuid__": "cc01c6a6-0d71-48e4-a457-4519fcdfb398"
  4266. },
  4267. "fileId": "2el9YIbHZFs4BC2PFQxrLA",
  4268. "sync": false
  4269. },
  4270. {
  4271. "__type__": "cc.PrefabInfo",
  4272. "root": {
  4273. "__id__": 1
  4274. },
  4275. "asset": {
  4276. "__uuid__": "cc01c6a6-0d71-48e4-a457-4519fcdfb398"
  4277. },
  4278. "fileId": "381GCBpc5Pn5q9bavUrabb",
  4279. "sync": false
  4280. },
  4281. {
  4282. "__type__": "a76aaZz3AxFTqiGfweK0VGT",
  4283. "_name": "",
  4284. "_objFlags": 0,
  4285. "node": {
  4286. "__id__": 1
  4287. },
  4288. "_enabled": true,
  4289. "topBtnSpriteArr": [
  4290. {
  4291. "__id__": 33
  4292. },
  4293. {
  4294. "__id__": 40
  4295. },
  4296. {
  4297. "__id__": 50
  4298. },
  4299. {
  4300. "__id__": 60
  4301. }
  4302. ],
  4303. "titleRichText": {
  4304. "__id__": 20
  4305. },
  4306. "contentArr": [
  4307. {
  4308. "__id__": 76
  4309. },
  4310. {
  4311. "__id__": 89
  4312. },
  4313. {
  4314. "__id__": 101
  4315. },
  4316. {
  4317. "__id__": 113
  4318. }
  4319. ],
  4320. "tabSlectedSpriteFrames": [
  4321. {
  4322. "__uuid__": "7dc823cf-0055-4090-bb89-84d4abc3a504"
  4323. },
  4324. {
  4325. "__uuid__": "6f5e6939-36ad-4d20-b4fe-97bbe394606d"
  4326. },
  4327. {
  4328. "__uuid__": "b7914850-b80c-4a41-8e81-8e3b35d8ddd7"
  4329. },
  4330. {
  4331. "__uuid__": "abb4f292-551b-414f-9672-c08676f03e03"
  4332. }
  4333. ],
  4334. "tabNormalSpriteFrames": [
  4335. {
  4336. "__uuid__": "601abc8c-a80a-4d09-9af1-49c4504fbcfb"
  4337. },
  4338. {
  4339. "__uuid__": "16d92df0-d5cd-4d13-980f-8f6c6d555ab9"
  4340. },
  4341. {
  4342. "__uuid__": "5e763bee-abec-4069-94b4-55f4e2ee3272"
  4343. },
  4344. {
  4345. "__uuid__": "be4ab777-301d-46ae-b465-efc6a0e5e16b"
  4346. }
  4347. ],
  4348. "userIdLabel": {
  4349. "__id__": 12
  4350. },
  4351. "coinRedNode": {
  4352. "__id__": 52
  4353. },
  4354. "diamandRedNode": {
  4355. "__id__": 42
  4356. },
  4357. "contentNode": {
  4358. "__id__": 6
  4359. },
  4360. "_tabIndex": 1,
  4361. "_id": ""
  4362. },
  4363. {
  4364. "__type__": "cc.PrefabInfo",
  4365. "root": {
  4366. "__id__": 1
  4367. },
  4368. "asset": {
  4369. "__uuid__": "cc01c6a6-0d71-48e4-a457-4519fcdfb398"
  4370. },
  4371. "fileId": "8f3FhZS9lKYr7uP6y/A6rh",
  4372. "sync": false
  4373. }
  4374. ]