CelebrationUI.prefab 98 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767
  1. [
  2. {
  3. "__type__": "cc.Prefab",
  4. "_name": "",
  5. "_objFlags": 0,
  6. "_native": "",
  7. "data": {
  8. "__id__": 1
  9. },
  10. "optimizationPolicy": 0,
  11. "asyncLoadAssets": false,
  12. "readonly": false
  13. },
  14. {
  15. "__type__": "cc.Node",
  16. "_name": "CelebrationUI",
  17. "_objFlags": 0,
  18. "_parent": null,
  19. "_children": [
  20. {
  21. "__id__": 2
  22. },
  23. {
  24. "__id__": 7
  25. },
  26. {
  27. "__id__": 13
  28. },
  29. {
  30. "__id__": 18
  31. },
  32. {
  33. "__id__": 33
  34. },
  35. {
  36. "__id__": 36
  37. },
  38. {
  39. "__id__": 152
  40. }
  41. ],
  42. "_active": true,
  43. "_components": [
  44. {
  45. "__id__": 169
  46. }
  47. ],
  48. "_prefab": {
  49. "__id__": 170
  50. },
  51. "_opacity": 255,
  52. "_color": {
  53. "__type__": "cc.Color",
  54. "r": 255,
  55. "g": 255,
  56. "b": 255,
  57. "a": 255
  58. },
  59. "_contentSize": {
  60. "__type__": "cc.Size",
  61. "width": 2400,
  62. "height": 1080
  63. },
  64. "_anchorPoint": {
  65. "__type__": "cc.Vec2",
  66. "x": 0.5,
  67. "y": 0.5
  68. },
  69. "_trs": {
  70. "__type__": "TypedArray",
  71. "ctor": "Float64Array",
  72. "array": [
  73. 0,
  74. 0,
  75. 0,
  76. 0,
  77. 0,
  78. 0,
  79. 1,
  80. 1,
  81. 1,
  82. 1
  83. ]
  84. },
  85. "_eulerAngles": {
  86. "__type__": "cc.Vec3",
  87. "x": 0,
  88. "y": 0,
  89. "z": 0
  90. },
  91. "_skewX": 0,
  92. "_skewY": 0,
  93. "_is3DNode": false,
  94. "_groupIndex": 0,
  95. "groupIndex": 0,
  96. "_id": ""
  97. },
  98. {
  99. "__type__": "cc.Node",
  100. "_name": "bg",
  101. "_objFlags": 0,
  102. "_parent": {
  103. "__id__": 1
  104. },
  105. "_children": [],
  106. "_active": true,
  107. "_components": [
  108. {
  109. "__id__": 3
  110. },
  111. {
  112. "__id__": 4
  113. },
  114. {
  115. "__id__": 5
  116. }
  117. ],
  118. "_prefab": {
  119. "__id__": 6
  120. },
  121. "_opacity": 255,
  122. "_color": {
  123. "__type__": "cc.Color",
  124. "r": 255,
  125. "g": 255,
  126. "b": 255,
  127. "a": 255
  128. },
  129. "_contentSize": {
  130. "__type__": "cc.Size",
  131. "width": 2340,
  132. "height": 1080
  133. },
  134. "_anchorPoint": {
  135. "__type__": "cc.Vec2",
  136. "x": 0.5,
  137. "y": 0.5
  138. },
  139. "_trs": {
  140. "__type__": "TypedArray",
  141. "ctor": "Float64Array",
  142. "array": [
  143. 0,
  144. 0,
  145. 0,
  146. 0,
  147. 0,
  148. 0,
  149. 1,
  150. 1,
  151. 1,
  152. 1
  153. ]
  154. },
  155. "_eulerAngles": {
  156. "__type__": "cc.Vec3",
  157. "x": 0,
  158. "y": 0,
  159. "z": 0
  160. },
  161. "_skewX": 0,
  162. "_skewY": 0,
  163. "_is3DNode": false,
  164. "_groupIndex": 0,
  165. "groupIndex": 0,
  166. "_id": ""
  167. },
  168. {
  169. "__type__": "cc.Sprite",
  170. "_name": "",
  171. "_objFlags": 0,
  172. "node": {
  173. "__id__": 2
  174. },
  175. "_enabled": true,
  176. "_materials": [
  177. {
  178. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  179. }
  180. ],
  181. "_srcBlendFactor": 770,
  182. "_dstBlendFactor": 771,
  183. "_spriteFrame": {
  184. "__uuid__": "9c65fb73-0545-4b53-9ecb-ee9eb1972867"
  185. },
  186. "_type": 0,
  187. "_sizeMode": 1,
  188. "_fillType": 0,
  189. "_fillCenter": {
  190. "__type__": "cc.Vec2",
  191. "x": 0,
  192. "y": 0
  193. },
  194. "_fillStart": 0,
  195. "_fillRange": 0,
  196. "_isTrimmedMode": true,
  197. "_atlas": null,
  198. "_id": ""
  199. },
  200. {
  201. "__type__": "cc.BlockInputEvents",
  202. "_name": "",
  203. "_objFlags": 0,
  204. "node": {
  205. "__id__": 2
  206. },
  207. "_enabled": true,
  208. "_id": ""
  209. },
  210. {
  211. "__type__": "62f58zwdOVN/rFVGtus3pDj",
  212. "_name": "",
  213. "_objFlags": 0,
  214. "node": {
  215. "__id__": 2
  216. },
  217. "_enabled": true,
  218. "widthFit": true,
  219. "heightFit": true,
  220. "_id": ""
  221. },
  222. {
  223. "__type__": "cc.PrefabInfo",
  224. "root": {
  225. "__id__": 1
  226. },
  227. "asset": {
  228. "__id__": 0
  229. },
  230. "fileId": "4bjiA25FtHJIzZCW+GJzUt",
  231. "sync": false
  232. },
  233. {
  234. "__type__": "cc.Node",
  235. "_name": "return_btn",
  236. "_objFlags": 0,
  237. "_parent": {
  238. "__id__": 1
  239. },
  240. "_children": [],
  241. "_active": true,
  242. "_components": [
  243. {
  244. "__id__": 8
  245. },
  246. {
  247. "__id__": 9
  248. },
  249. {
  250. "__id__": 10
  251. }
  252. ],
  253. "_prefab": {
  254. "__id__": 12
  255. },
  256. "_opacity": 255,
  257. "_color": {
  258. "__type__": "cc.Color",
  259. "r": 255,
  260. "g": 255,
  261. "b": 255,
  262. "a": 255
  263. },
  264. "_contentSize": {
  265. "__type__": "cc.Size",
  266. "width": 106,
  267. "height": 106
  268. },
  269. "_anchorPoint": {
  270. "__type__": "cc.Vec2",
  271. "x": 0.5,
  272. "y": 0.5
  273. },
  274. "_trs": {
  275. "__type__": "TypedArray",
  276. "ctor": "Float64Array",
  277. "array": [
  278. -900,
  279. 480,
  280. 0,
  281. 0,
  282. 0,
  283. 0,
  284. 1,
  285. 1,
  286. 1,
  287. 1
  288. ]
  289. },
  290. "_eulerAngles": {
  291. "__type__": "cc.Vec3",
  292. "x": 0,
  293. "y": 0,
  294. "z": 0
  295. },
  296. "_skewX": 0,
  297. "_skewY": 0,
  298. "_is3DNode": false,
  299. "_groupIndex": 0,
  300. "groupIndex": 0,
  301. "_id": ""
  302. },
  303. {
  304. "__type__": "cc.Sprite",
  305. "_name": "",
  306. "_objFlags": 0,
  307. "node": {
  308. "__id__": 7
  309. },
  310. "_enabled": true,
  311. "_materials": [
  312. {
  313. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  314. }
  315. ],
  316. "_srcBlendFactor": 770,
  317. "_dstBlendFactor": 771,
  318. "_spriteFrame": {
  319. "__uuid__": "aad0ef4a-c231-4830-bea5-9b59c21d6548"
  320. },
  321. "_type": 0,
  322. "_sizeMode": 1,
  323. "_fillType": 0,
  324. "_fillCenter": {
  325. "__type__": "cc.Vec2",
  326. "x": 0,
  327. "y": 0
  328. },
  329. "_fillStart": 0,
  330. "_fillRange": 0,
  331. "_isTrimmedMode": true,
  332. "_atlas": null,
  333. "_id": ""
  334. },
  335. {
  336. "__type__": "466e8BS6wJF6bKBj6rcxcSE",
  337. "_name": "",
  338. "_objFlags": 0,
  339. "node": {
  340. "__id__": 7
  341. },
  342. "_enabled": true,
  343. "openContinuous": true,
  344. "continuousTime": 0.2,
  345. "multiTouch": false,
  346. "_id": ""
  347. },
  348. {
  349. "__type__": "61994AafntNFIbmt1zoyLq+",
  350. "_name": "",
  351. "_objFlags": 0,
  352. "node": {
  353. "__id__": 7
  354. },
  355. "_enabled": true,
  356. "_normalMaterial": null,
  357. "_grayMaterial": null,
  358. "duration": 0.1,
  359. "zoomScale": 1.2,
  360. "clickEvents": [
  361. {
  362. "__id__": 11
  363. }
  364. ],
  365. "_N$interactable": true,
  366. "_N$enableAutoGrayEffect": false,
  367. "_N$transition": 0,
  368. "transition": 0,
  369. "_N$normalColor": {
  370. "__type__": "cc.Color",
  371. "r": 255,
  372. "g": 255,
  373. "b": 255,
  374. "a": 255
  375. },
  376. "_N$pressedColor": {
  377. "__type__": "cc.Color",
  378. "r": 211,
  379. "g": 211,
  380. "b": 211,
  381. "a": 255
  382. },
  383. "pressedColor": {
  384. "__type__": "cc.Color",
  385. "r": 211,
  386. "g": 211,
  387. "b": 211,
  388. "a": 255
  389. },
  390. "_N$hoverColor": {
  391. "__type__": "cc.Color",
  392. "r": 255,
  393. "g": 255,
  394. "b": 255,
  395. "a": 255
  396. },
  397. "hoverColor": {
  398. "__type__": "cc.Color",
  399. "r": 255,
  400. "g": 255,
  401. "b": 255,
  402. "a": 255
  403. },
  404. "_N$disabledColor": {
  405. "__type__": "cc.Color",
  406. "r": 124,
  407. "g": 124,
  408. "b": 124,
  409. "a": 255
  410. },
  411. "_N$normalSprite": null,
  412. "_N$pressedSprite": null,
  413. "pressedSprite": null,
  414. "_N$hoverSprite": null,
  415. "hoverSprite": null,
  416. "_N$disabledSprite": null,
  417. "_N$target": null,
  418. "_id": ""
  419. },
  420. {
  421. "__type__": "cc.ClickEvent",
  422. "target": {
  423. "__id__": 1
  424. },
  425. "component": "",
  426. "_componentId": "50212zWjTZBW5V20BLdVCdO",
  427. "handler": "hide",
  428. "customEventData": ""
  429. },
  430. {
  431. "__type__": "cc.PrefabInfo",
  432. "root": {
  433. "__id__": 1
  434. },
  435. "asset": {
  436. "__id__": 0
  437. },
  438. "fileId": "c9rO/ZOkNNDaHdccUx8QQi",
  439. "sync": false
  440. },
  441. {
  442. "__type__": "cc.Node",
  443. "_name": "title_lb",
  444. "_objFlags": 0,
  445. "_parent": {
  446. "__id__": 1
  447. },
  448. "_children": [],
  449. "_active": true,
  450. "_components": [
  451. {
  452. "__id__": 14
  453. },
  454. {
  455. "__id__": 15
  456. },
  457. {
  458. "__id__": 16
  459. }
  460. ],
  461. "_prefab": {
  462. "__id__": 17
  463. },
  464. "_opacity": 255,
  465. "_color": {
  466. "__type__": "cc.Color",
  467. "r": 255,
  468. "g": 255,
  469. "b": 255,
  470. "a": 255
  471. },
  472. "_contentSize": {
  473. "__type__": "cc.Size",
  474. "width": 138.46,
  475. "height": 73
  476. },
  477. "_anchorPoint": {
  478. "__type__": "cc.Vec2",
  479. "x": 0,
  480. "y": 0.5
  481. },
  482. "_trs": {
  483. "__type__": "TypedArray",
  484. "ctor": "Float64Array",
  485. "array": [
  486. -840,
  487. 480,
  488. 0,
  489. 0,
  490. 0,
  491. 0,
  492. 1,
  493. 1,
  494. 1,
  495. 1
  496. ]
  497. },
  498. "_eulerAngles": {
  499. "__type__": "cc.Vec3",
  500. "x": 0,
  501. "y": 0,
  502. "z": 0
  503. },
  504. "_skewX": 0,
  505. "_skewY": 0,
  506. "_is3DNode": false,
  507. "_groupIndex": 0,
  508. "groupIndex": 0,
  509. "_id": ""
  510. },
  511. {
  512. "__type__": "cc.Label",
  513. "_name": "",
  514. "_objFlags": 0,
  515. "node": {
  516. "__id__": 13
  517. },
  518. "_enabled": true,
  519. "_materials": [
  520. {
  521. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  522. }
  523. ],
  524. "_srcBlendFactor": 770,
  525. "_dstBlendFactor": 771,
  526. "_string": "SHOP",
  527. "_N$string": "SHOP",
  528. "_fontSize": 48,
  529. "_lineHeight": 50,
  530. "_enableWrapText": true,
  531. "_N$file": {
  532. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  533. },
  534. "_isSystemFontUsed": false,
  535. "_spacingX": 0,
  536. "_batchAsBitmap": false,
  537. "_styleFlags": 0,
  538. "_underlineHeight": 0,
  539. "_N$horizontalAlign": 1,
  540. "_N$verticalAlign": 1,
  541. "_N$fontFamily": "Arial",
  542. "_N$overflow": 0,
  543. "_N$cacheMode": 0,
  544. "_id": ""
  545. },
  546. {
  547. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  548. "_name": "",
  549. "_objFlags": 0,
  550. "node": {
  551. "__id__": 13
  552. },
  553. "_enabled": true,
  554. "_englishCase": 2,
  555. "i18n_string": "t612",
  556. "i18n_params": [],
  557. "_addColon": false,
  558. "_id": ""
  559. },
  560. {
  561. "__type__": "cc.LabelOutline",
  562. "_name": "",
  563. "_objFlags": 0,
  564. "node": {
  565. "__id__": 13
  566. },
  567. "_enabled": true,
  568. "_color": {
  569. "__type__": "cc.Color",
  570. "r": 38,
  571. "g": 17,
  572. "b": 12,
  573. "a": 255
  574. },
  575. "_width": 5,
  576. "_id": ""
  577. },
  578. {
  579. "__type__": "cc.PrefabInfo",
  580. "root": {
  581. "__id__": 1
  582. },
  583. "asset": {
  584. "__id__": 0
  585. },
  586. "fileId": "57md8c9tVC6rTyIM54dlWh",
  587. "sync": false
  588. },
  589. {
  590. "__type__": "cc.Node",
  591. "_name": "frame",
  592. "_objFlags": 0,
  593. "_parent": {
  594. "__id__": 1
  595. },
  596. "_children": [
  597. {
  598. "__id__": 19
  599. },
  600. {
  601. "__id__": 22
  602. },
  603. {
  604. "__id__": 25
  605. },
  606. {
  607. "__id__": 28
  608. }
  609. ],
  610. "_active": true,
  611. "_components": [
  612. {
  613. "__id__": 31
  614. }
  615. ],
  616. "_prefab": {
  617. "__id__": 32
  618. },
  619. "_opacity": 255,
  620. "_color": {
  621. "__type__": "cc.Color",
  622. "r": 255,
  623. "g": 255,
  624. "b": 255,
  625. "a": 255
  626. },
  627. "_contentSize": {
  628. "__type__": "cc.Size",
  629. "width": 1888,
  630. "height": 807
  631. },
  632. "_anchorPoint": {
  633. "__type__": "cc.Vec2",
  634. "x": 0.5,
  635. "y": 0.5
  636. },
  637. "_trs": {
  638. "__type__": "TypedArray",
  639. "ctor": "Float64Array",
  640. "array": [
  641. 0,
  642. 17,
  643. 0,
  644. 0,
  645. 0,
  646. 0,
  647. 1,
  648. 1,
  649. 1,
  650. 1
  651. ]
  652. },
  653. "_eulerAngles": {
  654. "__type__": "cc.Vec3",
  655. "x": 0,
  656. "y": 0,
  657. "z": 0
  658. },
  659. "_skewX": 0,
  660. "_skewY": 0,
  661. "_is3DNode": false,
  662. "_groupIndex": 0,
  663. "groupIndex": 0,
  664. "_id": ""
  665. },
  666. {
  667. "__type__": "cc.Node",
  668. "_name": "sheet",
  669. "_objFlags": 0,
  670. "_parent": {
  671. "__id__": 18
  672. },
  673. "_children": [],
  674. "_active": true,
  675. "_components": [
  676. {
  677. "__id__": 20
  678. }
  679. ],
  680. "_prefab": {
  681. "__id__": 21
  682. },
  683. "_opacity": 255,
  684. "_color": {
  685. "__type__": "cc.Color",
  686. "r": 255,
  687. "g": 255,
  688. "b": 255,
  689. "a": 255
  690. },
  691. "_contentSize": {
  692. "__type__": "cc.Size",
  693. "width": 44,
  694. "height": 34
  695. },
  696. "_anchorPoint": {
  697. "__type__": "cc.Vec2",
  698. "x": 0.5,
  699. "y": 0.5
  700. },
  701. "_trs": {
  702. "__type__": "TypedArray",
  703. "ctor": "Float64Array",
  704. "array": [
  705. -925,
  706. 185,
  707. 0,
  708. 0,
  709. 0,
  710. 0,
  711. 1,
  712. 1,
  713. 1,
  714. 1
  715. ]
  716. },
  717. "_eulerAngles": {
  718. "__type__": "cc.Vec3",
  719. "x": 0,
  720. "y": 0,
  721. "z": 0
  722. },
  723. "_skewX": 0,
  724. "_skewY": 0,
  725. "_is3DNode": false,
  726. "_groupIndex": 0,
  727. "groupIndex": 0,
  728. "_id": ""
  729. },
  730. {
  731. "__type__": "cc.Sprite",
  732. "_name": "",
  733. "_objFlags": 0,
  734. "node": {
  735. "__id__": 19
  736. },
  737. "_enabled": true,
  738. "_materials": [
  739. {
  740. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  741. }
  742. ],
  743. "_srcBlendFactor": 770,
  744. "_dstBlendFactor": 771,
  745. "_spriteFrame": {
  746. "__uuid__": "0bd73a5a-8abc-4f55-9508-4e6016218120"
  747. },
  748. "_type": 0,
  749. "_sizeMode": 1,
  750. "_fillType": 0,
  751. "_fillCenter": {
  752. "__type__": "cc.Vec2",
  753. "x": 0,
  754. "y": 0
  755. },
  756. "_fillStart": 0,
  757. "_fillRange": 0,
  758. "_isTrimmedMode": true,
  759. "_atlas": null,
  760. "_id": ""
  761. },
  762. {
  763. "__type__": "cc.PrefabInfo",
  764. "root": {
  765. "__id__": 1
  766. },
  767. "asset": {
  768. "__id__": 0
  769. },
  770. "fileId": "9bqQXLaTdNbqqx1gwksBUc",
  771. "sync": false
  772. },
  773. {
  774. "__type__": "cc.Node",
  775. "_name": "sheet",
  776. "_objFlags": 0,
  777. "_parent": {
  778. "__id__": 18
  779. },
  780. "_children": [],
  781. "_active": true,
  782. "_components": [
  783. {
  784. "__id__": 23
  785. }
  786. ],
  787. "_prefab": {
  788. "__id__": 24
  789. },
  790. "_opacity": 255,
  791. "_color": {
  792. "__type__": "cc.Color",
  793. "r": 255,
  794. "g": 255,
  795. "b": 255,
  796. "a": 255
  797. },
  798. "_contentSize": {
  799. "__type__": "cc.Size",
  800. "width": 44,
  801. "height": 34
  802. },
  803. "_anchorPoint": {
  804. "__type__": "cc.Vec2",
  805. "x": 0.5,
  806. "y": 0.5
  807. },
  808. "_trs": {
  809. "__type__": "TypedArray",
  810. "ctor": "Float64Array",
  811. "array": [
  812. -925,
  813. 344,
  814. 0,
  815. 0,
  816. 0,
  817. 0,
  818. 1,
  819. 1,
  820. 1,
  821. 1
  822. ]
  823. },
  824. "_eulerAngles": {
  825. "__type__": "cc.Vec3",
  826. "x": 0,
  827. "y": 0,
  828. "z": 0
  829. },
  830. "_skewX": 0,
  831. "_skewY": 0,
  832. "_is3DNode": false,
  833. "_groupIndex": 0,
  834. "groupIndex": 0,
  835. "_id": ""
  836. },
  837. {
  838. "__type__": "cc.Sprite",
  839. "_name": "",
  840. "_objFlags": 0,
  841. "node": {
  842. "__id__": 22
  843. },
  844. "_enabled": true,
  845. "_materials": [
  846. {
  847. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  848. }
  849. ],
  850. "_srcBlendFactor": 770,
  851. "_dstBlendFactor": 771,
  852. "_spriteFrame": {
  853. "__uuid__": "0bd73a5a-8abc-4f55-9508-4e6016218120"
  854. },
  855. "_type": 0,
  856. "_sizeMode": 1,
  857. "_fillType": 0,
  858. "_fillCenter": {
  859. "__type__": "cc.Vec2",
  860. "x": 0,
  861. "y": 0
  862. },
  863. "_fillStart": 0,
  864. "_fillRange": 0,
  865. "_isTrimmedMode": true,
  866. "_atlas": null,
  867. "_id": ""
  868. },
  869. {
  870. "__type__": "cc.PrefabInfo",
  871. "root": {
  872. "__id__": 1
  873. },
  874. "asset": {
  875. "__id__": 0
  876. },
  877. "fileId": "1ajCUI52NFDIHLoCjnL2sO",
  878. "sync": false
  879. },
  880. {
  881. "__type__": "cc.Node",
  882. "_name": "sheet",
  883. "_objFlags": 0,
  884. "_parent": {
  885. "__id__": 18
  886. },
  887. "_children": [],
  888. "_active": true,
  889. "_components": [
  890. {
  891. "__id__": 26
  892. }
  893. ],
  894. "_prefab": {
  895. "__id__": 27
  896. },
  897. "_opacity": 255,
  898. "_color": {
  899. "__type__": "cc.Color",
  900. "r": 255,
  901. "g": 255,
  902. "b": 255,
  903. "a": 255
  904. },
  905. "_contentSize": {
  906. "__type__": "cc.Size",
  907. "width": 44,
  908. "height": 34
  909. },
  910. "_anchorPoint": {
  911. "__type__": "cc.Vec2",
  912. "x": 0.5,
  913. "y": 0.5
  914. },
  915. "_trs": {
  916. "__type__": "TypedArray",
  917. "ctor": "Float64Array",
  918. "array": [
  919. 922.03,
  920. 185,
  921. 0,
  922. 0,
  923. 0,
  924. 0,
  925. 1,
  926. -1,
  927. 1,
  928. 1
  929. ]
  930. },
  931. "_eulerAngles": {
  932. "__type__": "cc.Vec3",
  933. "x": 0,
  934. "y": 0,
  935. "z": 0
  936. },
  937. "_skewX": 0,
  938. "_skewY": 0,
  939. "_is3DNode": false,
  940. "_groupIndex": 0,
  941. "groupIndex": 0,
  942. "_id": ""
  943. },
  944. {
  945. "__type__": "cc.Sprite",
  946. "_name": "",
  947. "_objFlags": 0,
  948. "node": {
  949. "__id__": 25
  950. },
  951. "_enabled": true,
  952. "_materials": [
  953. {
  954. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  955. }
  956. ],
  957. "_srcBlendFactor": 770,
  958. "_dstBlendFactor": 771,
  959. "_spriteFrame": {
  960. "__uuid__": "0bd73a5a-8abc-4f55-9508-4e6016218120"
  961. },
  962. "_type": 0,
  963. "_sizeMode": 1,
  964. "_fillType": 0,
  965. "_fillCenter": {
  966. "__type__": "cc.Vec2",
  967. "x": 0,
  968. "y": 0
  969. },
  970. "_fillStart": 0,
  971. "_fillRange": 0,
  972. "_isTrimmedMode": true,
  973. "_atlas": null,
  974. "_id": ""
  975. },
  976. {
  977. "__type__": "cc.PrefabInfo",
  978. "root": {
  979. "__id__": 1
  980. },
  981. "asset": {
  982. "__id__": 0
  983. },
  984. "fileId": "0dhReFrKVHm5kpRmMWYX5d",
  985. "sync": false
  986. },
  987. {
  988. "__type__": "cc.Node",
  989. "_name": "sheet",
  990. "_objFlags": 0,
  991. "_parent": {
  992. "__id__": 18
  993. },
  994. "_children": [],
  995. "_active": true,
  996. "_components": [
  997. {
  998. "__id__": 29
  999. }
  1000. ],
  1001. "_prefab": {
  1002. "__id__": 30
  1003. },
  1004. "_opacity": 255,
  1005. "_color": {
  1006. "__type__": "cc.Color",
  1007. "r": 255,
  1008. "g": 255,
  1009. "b": 255,
  1010. "a": 255
  1011. },
  1012. "_contentSize": {
  1013. "__type__": "cc.Size",
  1014. "width": 44,
  1015. "height": 34
  1016. },
  1017. "_anchorPoint": {
  1018. "__type__": "cc.Vec2",
  1019. "x": 0.5,
  1020. "y": 0.5
  1021. },
  1022. "_trs": {
  1023. "__type__": "TypedArray",
  1024. "ctor": "Float64Array",
  1025. "array": [
  1026. 922.03,
  1027. 344,
  1028. 0,
  1029. 0,
  1030. 0,
  1031. 0,
  1032. 1,
  1033. -1,
  1034. 1,
  1035. 1
  1036. ]
  1037. },
  1038. "_eulerAngles": {
  1039. "__type__": "cc.Vec3",
  1040. "x": 0,
  1041. "y": 0,
  1042. "z": 0
  1043. },
  1044. "_skewX": 0,
  1045. "_skewY": 0,
  1046. "_is3DNode": false,
  1047. "_groupIndex": 0,
  1048. "groupIndex": 0,
  1049. "_id": ""
  1050. },
  1051. {
  1052. "__type__": "cc.Sprite",
  1053. "_name": "",
  1054. "_objFlags": 0,
  1055. "node": {
  1056. "__id__": 28
  1057. },
  1058. "_enabled": true,
  1059. "_materials": [
  1060. {
  1061. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1062. }
  1063. ],
  1064. "_srcBlendFactor": 770,
  1065. "_dstBlendFactor": 771,
  1066. "_spriteFrame": {
  1067. "__uuid__": "0bd73a5a-8abc-4f55-9508-4e6016218120"
  1068. },
  1069. "_type": 0,
  1070. "_sizeMode": 1,
  1071. "_fillType": 0,
  1072. "_fillCenter": {
  1073. "__type__": "cc.Vec2",
  1074. "x": 0,
  1075. "y": 0
  1076. },
  1077. "_fillStart": 0,
  1078. "_fillRange": 0,
  1079. "_isTrimmedMode": true,
  1080. "_atlas": null,
  1081. "_id": ""
  1082. },
  1083. {
  1084. "__type__": "cc.PrefabInfo",
  1085. "root": {
  1086. "__id__": 1
  1087. },
  1088. "asset": {
  1089. "__id__": 0
  1090. },
  1091. "fileId": "92/udDKQpFKbtGcjU92354",
  1092. "sync": false
  1093. },
  1094. {
  1095. "__type__": "cc.Sprite",
  1096. "_name": "",
  1097. "_objFlags": 0,
  1098. "node": {
  1099. "__id__": 18
  1100. },
  1101. "_enabled": true,
  1102. "_materials": [
  1103. {
  1104. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1105. }
  1106. ],
  1107. "_srcBlendFactor": 770,
  1108. "_dstBlendFactor": 771,
  1109. "_spriteFrame": {
  1110. "__uuid__": "081dc70f-4e06-4aa8-aed4-915ef25eff26"
  1111. },
  1112. "_type": 1,
  1113. "_sizeMode": 0,
  1114. "_fillType": 0,
  1115. "_fillCenter": {
  1116. "__type__": "cc.Vec2",
  1117. "x": 0,
  1118. "y": 0
  1119. },
  1120. "_fillStart": 0,
  1121. "_fillRange": 0,
  1122. "_isTrimmedMode": true,
  1123. "_atlas": null,
  1124. "_id": ""
  1125. },
  1126. {
  1127. "__type__": "cc.PrefabInfo",
  1128. "root": {
  1129. "__id__": 1
  1130. },
  1131. "asset": {
  1132. "__id__": 0
  1133. },
  1134. "fileId": "bbzJtJxy5BY5Xm68t8bNOx",
  1135. "sync": false
  1136. },
  1137. {
  1138. "__type__": "cc.Node",
  1139. "_name": "colour",
  1140. "_objFlags": 0,
  1141. "_parent": {
  1142. "__id__": 1
  1143. },
  1144. "_children": [],
  1145. "_active": true,
  1146. "_components": [
  1147. {
  1148. "__id__": 34
  1149. }
  1150. ],
  1151. "_prefab": {
  1152. "__id__": 35
  1153. },
  1154. "_opacity": 255,
  1155. "_color": {
  1156. "__type__": "cc.Color",
  1157. "r": 255,
  1158. "g": 255,
  1159. "b": 255,
  1160. "a": 255
  1161. },
  1162. "_contentSize": {
  1163. "__type__": "cc.Size",
  1164. "width": 1802,
  1165. "height": 500
  1166. },
  1167. "_anchorPoint": {
  1168. "__type__": "cc.Vec2",
  1169. "x": 0.5,
  1170. "y": 0.5
  1171. },
  1172. "_trs": {
  1173. "__type__": "TypedArray",
  1174. "ctor": "Float64Array",
  1175. "array": [
  1176. 0,
  1177. -98,
  1178. 0,
  1179. 0,
  1180. 0,
  1181. 0,
  1182. 1,
  1183. 1,
  1184. 1,
  1185. 1
  1186. ]
  1187. },
  1188. "_eulerAngles": {
  1189. "__type__": "cc.Vec3",
  1190. "x": 0,
  1191. "y": 0,
  1192. "z": 0
  1193. },
  1194. "_skewX": 0,
  1195. "_skewY": 0,
  1196. "_is3DNode": false,
  1197. "_groupIndex": 0,
  1198. "groupIndex": 0,
  1199. "_id": ""
  1200. },
  1201. {
  1202. "__type__": "cc.Sprite",
  1203. "_name": "",
  1204. "_objFlags": 0,
  1205. "node": {
  1206. "__id__": 33
  1207. },
  1208. "_enabled": true,
  1209. "_materials": [
  1210. {
  1211. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1212. }
  1213. ],
  1214. "_srcBlendFactor": 770,
  1215. "_dstBlendFactor": 771,
  1216. "_spriteFrame": {
  1217. "__uuid__": "f2a9fd92-10f7-4e39-b1e4-54d0059b8c1f"
  1218. },
  1219. "_type": 1,
  1220. "_sizeMode": 0,
  1221. "_fillType": 0,
  1222. "_fillCenter": {
  1223. "__type__": "cc.Vec2",
  1224. "x": 0,
  1225. "y": 0
  1226. },
  1227. "_fillStart": 0,
  1228. "_fillRange": 0,
  1229. "_isTrimmedMode": true,
  1230. "_atlas": null,
  1231. "_id": ""
  1232. },
  1233. {
  1234. "__type__": "cc.PrefabInfo",
  1235. "root": {
  1236. "__id__": 1
  1237. },
  1238. "asset": {
  1239. "__id__": 0
  1240. },
  1241. "fileId": "f33CRKj2xJdYuJZRlOWAIZ",
  1242. "sync": false
  1243. },
  1244. {
  1245. "__type__": "cc.Node",
  1246. "_name": "continuous",
  1247. "_objFlags": 0,
  1248. "_parent": {
  1249. "__id__": 1
  1250. },
  1251. "_children": [
  1252. {
  1253. "__id__": 37
  1254. },
  1255. {
  1256. "__id__": 40
  1257. },
  1258. {
  1259. "__id__": 96
  1260. }
  1261. ],
  1262. "_active": true,
  1263. "_components": [],
  1264. "_prefab": {
  1265. "__id__": 151
  1266. },
  1267. "_opacity": 255,
  1268. "_color": {
  1269. "__type__": "cc.Color",
  1270. "r": 255,
  1271. "g": 255,
  1272. "b": 255,
  1273. "a": 255
  1274. },
  1275. "_contentSize": {
  1276. "__type__": "cc.Size",
  1277. "width": 1888,
  1278. "height": 807
  1279. },
  1280. "_anchorPoint": {
  1281. "__type__": "cc.Vec2",
  1282. "x": 0.5,
  1283. "y": 0.5
  1284. },
  1285. "_trs": {
  1286. "__type__": "TypedArray",
  1287. "ctor": "Float64Array",
  1288. "array": [
  1289. 0,
  1290. 17,
  1291. 0,
  1292. 0,
  1293. 0,
  1294. 0,
  1295. 1,
  1296. 1,
  1297. 1,
  1298. 1
  1299. ]
  1300. },
  1301. "_eulerAngles": {
  1302. "__type__": "cc.Vec3",
  1303. "x": 0,
  1304. "y": 0,
  1305. "z": 0
  1306. },
  1307. "_skewX": 0,
  1308. "_skewY": 0,
  1309. "_is3DNode": false,
  1310. "_groupIndex": 0,
  1311. "groupIndex": 0,
  1312. "_id": ""
  1313. },
  1314. {
  1315. "__type__": "cc.Node",
  1316. "_name": "frame",
  1317. "_objFlags": 0,
  1318. "_parent": {
  1319. "__id__": 36
  1320. },
  1321. "_children": [],
  1322. "_active": true,
  1323. "_components": [
  1324. {
  1325. "__id__": 38
  1326. }
  1327. ],
  1328. "_prefab": {
  1329. "__id__": 39
  1330. },
  1331. "_opacity": 255,
  1332. "_color": {
  1333. "__type__": "cc.Color",
  1334. "r": 255,
  1335. "g": 255,
  1336. "b": 255,
  1337. "a": 255
  1338. },
  1339. "_contentSize": {
  1340. "__type__": "cc.Size",
  1341. "width": 1888,
  1342. "height": 807
  1343. },
  1344. "_anchorPoint": {
  1345. "__type__": "cc.Vec2",
  1346. "x": 0.5,
  1347. "y": 0.5
  1348. },
  1349. "_trs": {
  1350. "__type__": "TypedArray",
  1351. "ctor": "Float64Array",
  1352. "array": [
  1353. 0,
  1354. 0,
  1355. 0,
  1356. 0,
  1357. 0,
  1358. 0,
  1359. 1,
  1360. 1,
  1361. 1,
  1362. 1
  1363. ]
  1364. },
  1365. "_eulerAngles": {
  1366. "__type__": "cc.Vec3",
  1367. "x": 0,
  1368. "y": 0,
  1369. "z": 0
  1370. },
  1371. "_skewX": 0,
  1372. "_skewY": 0,
  1373. "_is3DNode": false,
  1374. "_groupIndex": 0,
  1375. "groupIndex": 0,
  1376. "_id": ""
  1377. },
  1378. {
  1379. "__type__": "cc.Sprite",
  1380. "_name": "",
  1381. "_objFlags": 0,
  1382. "node": {
  1383. "__id__": 37
  1384. },
  1385. "_enabled": false,
  1386. "_materials": [
  1387. {
  1388. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1389. }
  1390. ],
  1391. "_srcBlendFactor": 770,
  1392. "_dstBlendFactor": 771,
  1393. "_spriteFrame": {
  1394. "__uuid__": "081dc70f-4e06-4aa8-aed4-915ef25eff26"
  1395. },
  1396. "_type": 1,
  1397. "_sizeMode": 0,
  1398. "_fillType": 0,
  1399. "_fillCenter": {
  1400. "__type__": "cc.Vec2",
  1401. "x": 0,
  1402. "y": 0
  1403. },
  1404. "_fillStart": 0,
  1405. "_fillRange": 0,
  1406. "_isTrimmedMode": true,
  1407. "_atlas": null,
  1408. "_id": ""
  1409. },
  1410. {
  1411. "__type__": "cc.PrefabInfo",
  1412. "root": {
  1413. "__id__": 1
  1414. },
  1415. "asset": {
  1416. "__id__": 0
  1417. },
  1418. "fileId": "22aa6AlQtLrbM6+kpDASGS",
  1419. "sync": false
  1420. },
  1421. {
  1422. "__type__": "cc.Node",
  1423. "_name": "top",
  1424. "_objFlags": 0,
  1425. "_parent": {
  1426. "__id__": 36
  1427. },
  1428. "_children": [
  1429. {
  1430. "__id__": 41
  1431. },
  1432. {
  1433. "__id__": 44
  1434. },
  1435. {
  1436. "__id__": 47
  1437. },
  1438. {
  1439. "__id__": 50
  1440. },
  1441. {
  1442. "__id__": 53
  1443. },
  1444. {
  1445. "__id__": 58
  1446. },
  1447. {
  1448. "__id__": 63
  1449. },
  1450. {
  1451. "__id__": 66
  1452. },
  1453. {
  1454. "__id__": 79
  1455. },
  1456. {
  1457. "__id__": 90
  1458. }
  1459. ],
  1460. "_active": true,
  1461. "_components": [],
  1462. "_prefab": {
  1463. "__id__": 95
  1464. },
  1465. "_opacity": 255,
  1466. "_color": {
  1467. "__type__": "cc.Color",
  1468. "r": 255,
  1469. "g": 255,
  1470. "b": 255,
  1471. "a": 255
  1472. },
  1473. "_contentSize": {
  1474. "__type__": "cc.Size",
  1475. "width": 1846,
  1476. "height": 238
  1477. },
  1478. "_anchorPoint": {
  1479. "__type__": "cc.Vec2",
  1480. "x": 0.5,
  1481. "y": 0.5
  1482. },
  1483. "_trs": {
  1484. "__type__": "TypedArray",
  1485. "ctor": "Float64Array",
  1486. "array": [
  1487. 0,
  1488. 264,
  1489. 0,
  1490. 0,
  1491. 0,
  1492. 0,
  1493. 1,
  1494. 1,
  1495. 1,
  1496. 1
  1497. ]
  1498. },
  1499. "_eulerAngles": {
  1500. "__type__": "cc.Vec3",
  1501. "x": 0,
  1502. "y": 0,
  1503. "z": 0
  1504. },
  1505. "_skewX": 0,
  1506. "_skewY": 0,
  1507. "_is3DNode": false,
  1508. "_groupIndex": 0,
  1509. "groupIndex": 0,
  1510. "_id": ""
  1511. },
  1512. {
  1513. "__type__": "cc.Node",
  1514. "_name": "frame",
  1515. "_objFlags": 0,
  1516. "_parent": {
  1517. "__id__": 40
  1518. },
  1519. "_children": [],
  1520. "_active": true,
  1521. "_components": [
  1522. {
  1523. "__id__": 42
  1524. }
  1525. ],
  1526. "_prefab": {
  1527. "__id__": 43
  1528. },
  1529. "_opacity": 255,
  1530. "_color": {
  1531. "__type__": "cc.Color",
  1532. "r": 255,
  1533. "g": 255,
  1534. "b": 255,
  1535. "a": 255
  1536. },
  1537. "_contentSize": {
  1538. "__type__": "cc.Size",
  1539. "width": 1846,
  1540. "height": 238
  1541. },
  1542. "_anchorPoint": {
  1543. "__type__": "cc.Vec2",
  1544. "x": 0.5,
  1545. "y": 0.5
  1546. },
  1547. "_trs": {
  1548. "__type__": "TypedArray",
  1549. "ctor": "Float64Array",
  1550. "array": [
  1551. 0,
  1552. 0,
  1553. 0,
  1554. 0,
  1555. 0,
  1556. 0,
  1557. 1,
  1558. 1,
  1559. 1,
  1560. 1
  1561. ]
  1562. },
  1563. "_eulerAngles": {
  1564. "__type__": "cc.Vec3",
  1565. "x": 0,
  1566. "y": 0,
  1567. "z": 0
  1568. },
  1569. "_skewX": 0,
  1570. "_skewY": 0,
  1571. "_is3DNode": false,
  1572. "_groupIndex": 0,
  1573. "groupIndex": 0,
  1574. "_id": ""
  1575. },
  1576. {
  1577. "__type__": "cc.Sprite",
  1578. "_name": "",
  1579. "_objFlags": 0,
  1580. "node": {
  1581. "__id__": 41
  1582. },
  1583. "_enabled": true,
  1584. "_materials": [
  1585. {
  1586. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1587. }
  1588. ],
  1589. "_srcBlendFactor": 770,
  1590. "_dstBlendFactor": 771,
  1591. "_spriteFrame": {
  1592. "__uuid__": "b1a8283a-e9dc-4ae5-8002-86908496c590"
  1593. },
  1594. "_type": 1,
  1595. "_sizeMode": 0,
  1596. "_fillType": 0,
  1597. "_fillCenter": {
  1598. "__type__": "cc.Vec2",
  1599. "x": 0,
  1600. "y": 0
  1601. },
  1602. "_fillStart": 0,
  1603. "_fillRange": 0,
  1604. "_isTrimmedMode": true,
  1605. "_atlas": null,
  1606. "_id": ""
  1607. },
  1608. {
  1609. "__type__": "cc.PrefabInfo",
  1610. "root": {
  1611. "__id__": 1
  1612. },
  1613. "asset": {
  1614. "__id__": 0
  1615. },
  1616. "fileId": "44X6poh1NP6bqeds0hON+D",
  1617. "sync": false
  1618. },
  1619. {
  1620. "__type__": "cc.Node",
  1621. "_name": "bg",
  1622. "_objFlags": 0,
  1623. "_parent": {
  1624. "__id__": 40
  1625. },
  1626. "_children": [],
  1627. "_active": true,
  1628. "_components": [
  1629. {
  1630. "__id__": 45
  1631. }
  1632. ],
  1633. "_prefab": {
  1634. "__id__": 46
  1635. },
  1636. "_opacity": 255,
  1637. "_color": {
  1638. "__type__": "cc.Color",
  1639. "r": 255,
  1640. "g": 255,
  1641. "b": 255,
  1642. "a": 255
  1643. },
  1644. "_contentSize": {
  1645. "__type__": "cc.Size",
  1646. "width": 1825,
  1647. "height": 220
  1648. },
  1649. "_anchorPoint": {
  1650. "__type__": "cc.Vec2",
  1651. "x": 0.5,
  1652. "y": 0.5
  1653. },
  1654. "_trs": {
  1655. "__type__": "TypedArray",
  1656. "ctor": "Float64Array",
  1657. "array": [
  1658. 0,
  1659. 0,
  1660. 0,
  1661. 0,
  1662. 0,
  1663. 0,
  1664. 1,
  1665. 1,
  1666. 1,
  1667. 1
  1668. ]
  1669. },
  1670. "_eulerAngles": {
  1671. "__type__": "cc.Vec3",
  1672. "x": 0,
  1673. "y": 0,
  1674. "z": 0
  1675. },
  1676. "_skewX": 0,
  1677. "_skewY": 0,
  1678. "_is3DNode": false,
  1679. "_groupIndex": 0,
  1680. "groupIndex": 0,
  1681. "_id": ""
  1682. },
  1683. {
  1684. "__type__": "cc.Sprite",
  1685. "_name": "",
  1686. "_objFlags": 0,
  1687. "node": {
  1688. "__id__": 44
  1689. },
  1690. "_enabled": true,
  1691. "_materials": [
  1692. {
  1693. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1694. }
  1695. ],
  1696. "_srcBlendFactor": 770,
  1697. "_dstBlendFactor": 771,
  1698. "_spriteFrame": {
  1699. "__uuid__": "783ed0ff-0dfb-49a6-a19c-af0ad143afe3"
  1700. },
  1701. "_type": 1,
  1702. "_sizeMode": 0,
  1703. "_fillType": 0,
  1704. "_fillCenter": {
  1705. "__type__": "cc.Vec2",
  1706. "x": 0,
  1707. "y": 0
  1708. },
  1709. "_fillStart": 0,
  1710. "_fillRange": 0,
  1711. "_isTrimmedMode": true,
  1712. "_atlas": null,
  1713. "_id": ""
  1714. },
  1715. {
  1716. "__type__": "cc.PrefabInfo",
  1717. "root": {
  1718. "__id__": 1
  1719. },
  1720. "asset": {
  1721. "__id__": 0
  1722. },
  1723. "fileId": "96nQt9Ay5GHJz59PxD/CrB",
  1724. "sync": false
  1725. },
  1726. {
  1727. "__type__": "cc.Node",
  1728. "_name": "img",
  1729. "_objFlags": 0,
  1730. "_parent": {
  1731. "__id__": 40
  1732. },
  1733. "_children": [],
  1734. "_active": true,
  1735. "_components": [
  1736. {
  1737. "__id__": 48
  1738. }
  1739. ],
  1740. "_prefab": {
  1741. "__id__": 49
  1742. },
  1743. "_opacity": 255,
  1744. "_color": {
  1745. "__type__": "cc.Color",
  1746. "r": 255,
  1747. "g": 255,
  1748. "b": 255,
  1749. "a": 255
  1750. },
  1751. "_contentSize": {
  1752. "__type__": "cc.Size",
  1753. "width": 226,
  1754. "height": 211
  1755. },
  1756. "_anchorPoint": {
  1757. "__type__": "cc.Vec2",
  1758. "x": 0.5,
  1759. "y": 0.5
  1760. },
  1761. "_trs": {
  1762. "__type__": "TypedArray",
  1763. "ctor": "Float64Array",
  1764. "array": [
  1765. -650,
  1766. 0,
  1767. 0,
  1768. 0,
  1769. 0,
  1770. 0,
  1771. 1,
  1772. 1,
  1773. 1,
  1774. 1
  1775. ]
  1776. },
  1777. "_eulerAngles": {
  1778. "__type__": "cc.Vec3",
  1779. "x": 0,
  1780. "y": 0,
  1781. "z": 0
  1782. },
  1783. "_skewX": 0,
  1784. "_skewY": 0,
  1785. "_is3DNode": false,
  1786. "_groupIndex": 0,
  1787. "groupIndex": 0,
  1788. "_id": ""
  1789. },
  1790. {
  1791. "__type__": "cc.Sprite",
  1792. "_name": "",
  1793. "_objFlags": 0,
  1794. "node": {
  1795. "__id__": 47
  1796. },
  1797. "_enabled": true,
  1798. "_materials": [
  1799. {
  1800. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1801. }
  1802. ],
  1803. "_srcBlendFactor": 770,
  1804. "_dstBlendFactor": 771,
  1805. "_spriteFrame": {
  1806. "__uuid__": "416a70a3-f689-4423-818e-c27024c8c73b"
  1807. },
  1808. "_type": 0,
  1809. "_sizeMode": 1,
  1810. "_fillType": 0,
  1811. "_fillCenter": {
  1812. "__type__": "cc.Vec2",
  1813. "x": 0,
  1814. "y": 0
  1815. },
  1816. "_fillStart": 0,
  1817. "_fillRange": 0,
  1818. "_isTrimmedMode": true,
  1819. "_atlas": null,
  1820. "_id": ""
  1821. },
  1822. {
  1823. "__type__": "cc.PrefabInfo",
  1824. "root": {
  1825. "__id__": 1
  1826. },
  1827. "asset": {
  1828. "__id__": 0
  1829. },
  1830. "fileId": "c9BXVymdlCHb7QIPbBZNXs",
  1831. "sync": false
  1832. },
  1833. {
  1834. "__type__": "cc.Node",
  1835. "_name": "fund_bottom_0",
  1836. "_objFlags": 0,
  1837. "_parent": {
  1838. "__id__": 40
  1839. },
  1840. "_children": [],
  1841. "_active": true,
  1842. "_components": [
  1843. {
  1844. "__id__": 51
  1845. }
  1846. ],
  1847. "_prefab": {
  1848. "__id__": 52
  1849. },
  1850. "_opacity": 255,
  1851. "_color": {
  1852. "__type__": "cc.Color",
  1853. "r": 86,
  1854. "g": 29,
  1855. "b": 149,
  1856. "a": 255
  1857. },
  1858. "_contentSize": {
  1859. "__type__": "cc.Size",
  1860. "width": 474,
  1861. "height": 194
  1862. },
  1863. "_anchorPoint": {
  1864. "__type__": "cc.Vec2",
  1865. "x": 0.5,
  1866. "y": 0.5
  1867. },
  1868. "_trs": {
  1869. "__type__": "TypedArray",
  1870. "ctor": "Float64Array",
  1871. "array": [
  1872. 660,
  1873. 0,
  1874. 0,
  1875. 0,
  1876. 0,
  1877. 0,
  1878. 1,
  1879. 1,
  1880. 1,
  1881. 1
  1882. ]
  1883. },
  1884. "_eulerAngles": {
  1885. "__type__": "cc.Vec3",
  1886. "x": 0,
  1887. "y": 0,
  1888. "z": 0
  1889. },
  1890. "_skewX": 0,
  1891. "_skewY": 0,
  1892. "_is3DNode": false,
  1893. "_groupIndex": 0,
  1894. "groupIndex": 0,
  1895. "_id": ""
  1896. },
  1897. {
  1898. "__type__": "cc.Sprite",
  1899. "_name": "",
  1900. "_objFlags": 0,
  1901. "node": {
  1902. "__id__": 50
  1903. },
  1904. "_enabled": true,
  1905. "_materials": [
  1906. {
  1907. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1908. }
  1909. ],
  1910. "_srcBlendFactor": 770,
  1911. "_dstBlendFactor": 771,
  1912. "_spriteFrame": {
  1913. "__uuid__": "a061b52e-092e-445f-a528-cbc997d85cd4"
  1914. },
  1915. "_type": 1,
  1916. "_sizeMode": 0,
  1917. "_fillType": 0,
  1918. "_fillCenter": {
  1919. "__type__": "cc.Vec2",
  1920. "x": 0,
  1921. "y": 0
  1922. },
  1923. "_fillStart": 0,
  1924. "_fillRange": 0,
  1925. "_isTrimmedMode": true,
  1926. "_atlas": null,
  1927. "_id": ""
  1928. },
  1929. {
  1930. "__type__": "cc.PrefabInfo",
  1931. "root": {
  1932. "__id__": 1
  1933. },
  1934. "asset": {
  1935. "__id__": 0
  1936. },
  1937. "fileId": "4eklEzeehCTpS26RJAbm3/",
  1938. "sync": false
  1939. },
  1940. {
  1941. "__type__": "cc.Node",
  1942. "_name": "lb_day",
  1943. "_objFlags": 0,
  1944. "_parent": {
  1945. "__id__": 40
  1946. },
  1947. "_children": [],
  1948. "_active": true,
  1949. "_components": [
  1950. {
  1951. "__id__": 54
  1952. },
  1953. {
  1954. "__id__": 55
  1955. },
  1956. {
  1957. "__id__": 56
  1958. }
  1959. ],
  1960. "_prefab": {
  1961. "__id__": 57
  1962. },
  1963. "_opacity": 255,
  1964. "_color": {
  1965. "__type__": "cc.Color",
  1966. "r": 255,
  1967. "g": 240,
  1968. "b": 0,
  1969. "a": 255
  1970. },
  1971. "_contentSize": {
  1972. "__type__": "cc.Size",
  1973. "width": 782.7,
  1974. "height": 69
  1975. },
  1976. "_anchorPoint": {
  1977. "__type__": "cc.Vec2",
  1978. "x": 0.5,
  1979. "y": 0.5
  1980. },
  1981. "_trs": {
  1982. "__type__": "TypedArray",
  1983. "ctor": "Float64Array",
  1984. "array": [
  1985. -68,
  1986. 69.668,
  1987. 0,
  1988. 0,
  1989. 0,
  1990. 0,
  1991. 1,
  1992. 1,
  1993. 1,
  1994. 1
  1995. ]
  1996. },
  1997. "_eulerAngles": {
  1998. "__type__": "cc.Vec3",
  1999. "x": 0,
  2000. "y": 0,
  2001. "z": 0
  2002. },
  2003. "_skewX": 0,
  2004. "_skewY": 0,
  2005. "_is3DNode": false,
  2006. "_groupIndex": 0,
  2007. "groupIndex": 0,
  2008. "_id": ""
  2009. },
  2010. {
  2011. "__type__": "cc.Label",
  2012. "_name": "",
  2013. "_objFlags": 0,
  2014. "node": {
  2015. "__id__": 53
  2016. },
  2017. "_enabled": true,
  2018. "_materials": [
  2019. {
  2020. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2021. }
  2022. ],
  2023. "_srcBlendFactor": 770,
  2024. "_dstBlendFactor": 771,
  2025. "_string": "Daily continuous recharge $4.99",
  2026. "_N$string": "Daily continuous recharge $4.99",
  2027. "_fontSize": 53,
  2028. "_lineHeight": 50,
  2029. "_enableWrapText": true,
  2030. "_N$file": {
  2031. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  2032. },
  2033. "_isSystemFontUsed": false,
  2034. "_spacingX": 0,
  2035. "_batchAsBitmap": false,
  2036. "_styleFlags": 0,
  2037. "_underlineHeight": 0,
  2038. "_N$horizontalAlign": 1,
  2039. "_N$verticalAlign": 1,
  2040. "_N$fontFamily": "Arial",
  2041. "_N$overflow": 0,
  2042. "_N$cacheMode": 0,
  2043. "_id": ""
  2044. },
  2045. {
  2046. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  2047. "_name": "",
  2048. "_objFlags": 0,
  2049. "node": {
  2050. "__id__": 53
  2051. },
  2052. "_enabled": true,
  2053. "_englishCase": 1,
  2054. "i18n_string": "t500",
  2055. "i18n_params": [
  2056. "$4.99"
  2057. ],
  2058. "_addColon": false,
  2059. "_id": ""
  2060. },
  2061. {
  2062. "__type__": "cc.LabelOutline",
  2063. "_name": "",
  2064. "_objFlags": 0,
  2065. "node": {
  2066. "__id__": 53
  2067. },
  2068. "_enabled": true,
  2069. "_color": {
  2070. "__type__": "cc.Color",
  2071. "r": 38,
  2072. "g": 17,
  2073. "b": 12,
  2074. "a": 255
  2075. },
  2076. "_width": 3,
  2077. "_id": ""
  2078. },
  2079. {
  2080. "__type__": "cc.PrefabInfo",
  2081. "root": {
  2082. "__id__": 1
  2083. },
  2084. "asset": {
  2085. "__id__": 0
  2086. },
  2087. "fileId": "0dVWlJPgBK37nMi4qF+/sB",
  2088. "sync": false
  2089. },
  2090. {
  2091. "__type__": "cc.Node",
  2092. "_name": "lb_gift",
  2093. "_objFlags": 0,
  2094. "_parent": {
  2095. "__id__": 40
  2096. },
  2097. "_children": [],
  2098. "_active": true,
  2099. "_components": [
  2100. {
  2101. "__id__": 59
  2102. },
  2103. {
  2104. "__id__": 60
  2105. },
  2106. {
  2107. "__id__": 61
  2108. }
  2109. ],
  2110. "_prefab": {
  2111. "__id__": 62
  2112. },
  2113. "_opacity": 255,
  2114. "_color": {
  2115. "__type__": "cc.Color",
  2116. "r": 255,
  2117. "g": 240,
  2118. "b": 0,
  2119. "a": 255
  2120. },
  2121. "_contentSize": {
  2122. "__type__": "cc.Size",
  2123. "width": 413.77,
  2124. "height": 69
  2125. },
  2126. "_anchorPoint": {
  2127. "__type__": "cc.Vec2",
  2128. "x": 0.5,
  2129. "y": 0.5
  2130. },
  2131. "_trs": {
  2132. "__type__": "TypedArray",
  2133. "ctor": "Float64Array",
  2134. "array": [
  2135. -88.038,
  2136. 9.144,
  2137. 0,
  2138. 0,
  2139. 0,
  2140. 0,
  2141. 1,
  2142. 1,
  2143. 1,
  2144. 1
  2145. ]
  2146. },
  2147. "_eulerAngles": {
  2148. "__type__": "cc.Vec3",
  2149. "x": 0,
  2150. "y": 0,
  2151. "z": 0
  2152. },
  2153. "_skewX": 0,
  2154. "_skewY": 0,
  2155. "_is3DNode": false,
  2156. "_groupIndex": 0,
  2157. "groupIndex": 0,
  2158. "_id": ""
  2159. },
  2160. {
  2161. "__type__": "cc.Label",
  2162. "_name": "",
  2163. "_objFlags": 0,
  2164. "node": {
  2165. "__id__": 58
  2166. },
  2167. "_enabled": true,
  2168. "_materials": [
  2169. {
  2170. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2171. }
  2172. ],
  2173. "_srcBlendFactor": 770,
  2174. "_dstBlendFactor": 771,
  2175. "_string": "Send a good gift!",
  2176. "_N$string": "Send a good gift!",
  2177. "_fontSize": 53,
  2178. "_lineHeight": 50,
  2179. "_enableWrapText": true,
  2180. "_N$file": {
  2181. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  2182. },
  2183. "_isSystemFontUsed": false,
  2184. "_spacingX": 0,
  2185. "_batchAsBitmap": false,
  2186. "_styleFlags": 0,
  2187. "_underlineHeight": 0,
  2188. "_N$horizontalAlign": 1,
  2189. "_N$verticalAlign": 1,
  2190. "_N$fontFamily": "Arial",
  2191. "_N$overflow": 0,
  2192. "_N$cacheMode": 0,
  2193. "_id": ""
  2194. },
  2195. {
  2196. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  2197. "_name": "",
  2198. "_objFlags": 0,
  2199. "node": {
  2200. "__id__": 58
  2201. },
  2202. "_enabled": true,
  2203. "_englishCase": 1,
  2204. "i18n_string": "t501",
  2205. "i18n_params": [],
  2206. "_addColon": false,
  2207. "_id": ""
  2208. },
  2209. {
  2210. "__type__": "cc.LabelOutline",
  2211. "_name": "",
  2212. "_objFlags": 0,
  2213. "node": {
  2214. "__id__": 58
  2215. },
  2216. "_enabled": true,
  2217. "_color": {
  2218. "__type__": "cc.Color",
  2219. "r": 38,
  2220. "g": 17,
  2221. "b": 12,
  2222. "a": 255
  2223. },
  2224. "_width": 3,
  2225. "_id": ""
  2226. },
  2227. {
  2228. "__type__": "cc.PrefabInfo",
  2229. "root": {
  2230. "__id__": 1
  2231. },
  2232. "asset": {
  2233. "__id__": 0
  2234. },
  2235. "fileId": "dekdqMaa9GY7m/9OHDPkVA",
  2236. "sync": false
  2237. },
  2238. {
  2239. "__type__": "cc.Node",
  2240. "_name": "img_block",
  2241. "_objFlags": 0,
  2242. "_parent": {
  2243. "__id__": 40
  2244. },
  2245. "_children": [],
  2246. "_active": true,
  2247. "_components": [
  2248. {
  2249. "__id__": 64
  2250. }
  2251. ],
  2252. "_prefab": {
  2253. "__id__": 65
  2254. },
  2255. "_opacity": 255,
  2256. "_color": {
  2257. "__type__": "cc.Color",
  2258. "r": 142,
  2259. "g": 89,
  2260. "b": 202,
  2261. "a": 255
  2262. },
  2263. "_contentSize": {
  2264. "__type__": "cc.Size",
  2265. "width": 571,
  2266. "height": 48
  2267. },
  2268. "_anchorPoint": {
  2269. "__type__": "cc.Vec2",
  2270. "x": 0.5,
  2271. "y": 0.5
  2272. },
  2273. "_trs": {
  2274. "__type__": "TypedArray",
  2275. "ctor": "Float64Array",
  2276. "array": [
  2277. -76.026,
  2278. -65.165,
  2279. 0,
  2280. 0,
  2281. 0,
  2282. 0,
  2283. 1,
  2284. 1,
  2285. 1,
  2286. 1
  2287. ]
  2288. },
  2289. "_eulerAngles": {
  2290. "__type__": "cc.Vec3",
  2291. "x": 0,
  2292. "y": 0,
  2293. "z": 0
  2294. },
  2295. "_skewX": 0,
  2296. "_skewY": 0,
  2297. "_is3DNode": false,
  2298. "_groupIndex": 0,
  2299. "groupIndex": 0,
  2300. "_id": ""
  2301. },
  2302. {
  2303. "__type__": "cc.Sprite",
  2304. "_name": "",
  2305. "_objFlags": 0,
  2306. "node": {
  2307. "__id__": 63
  2308. },
  2309. "_enabled": true,
  2310. "_materials": [
  2311. {
  2312. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2313. }
  2314. ],
  2315. "_srcBlendFactor": 770,
  2316. "_dstBlendFactor": 771,
  2317. "_spriteFrame": {
  2318. "__uuid__": "2ca873ac-9537-49d8-aa42-8d31e8271dae"
  2319. },
  2320. "_type": 1,
  2321. "_sizeMode": 0,
  2322. "_fillType": 0,
  2323. "_fillCenter": {
  2324. "__type__": "cc.Vec2",
  2325. "x": 0,
  2326. "y": 0
  2327. },
  2328. "_fillStart": 0,
  2329. "_fillRange": 0,
  2330. "_isTrimmedMode": true,
  2331. "_atlas": null,
  2332. "_id": ""
  2333. },
  2334. {
  2335. "__type__": "cc.PrefabInfo",
  2336. "root": {
  2337. "__id__": 1
  2338. },
  2339. "asset": {
  2340. "__id__": 0
  2341. },
  2342. "fileId": "b6YAkufEhPi4vI39CwDV4M",
  2343. "sync": false
  2344. },
  2345. {
  2346. "__type__": "cc.Node",
  2347. "_name": "lbs",
  2348. "_objFlags": 0,
  2349. "_parent": {
  2350. "__id__": 40
  2351. },
  2352. "_children": [
  2353. {
  2354. "__id__": 67
  2355. },
  2356. {
  2357. "__id__": 72
  2358. }
  2359. ],
  2360. "_active": true,
  2361. "_components": [
  2362. {
  2363. "__id__": 77
  2364. }
  2365. ],
  2366. "_prefab": {
  2367. "__id__": 78
  2368. },
  2369. "_opacity": 255,
  2370. "_color": {
  2371. "__type__": "cc.Color",
  2372. "r": 255,
  2373. "g": 255,
  2374. "b": 255,
  2375. "a": 255
  2376. },
  2377. "_contentSize": {
  2378. "__type__": "cc.Size",
  2379. "width": 518.94,
  2380. "height": 50
  2381. },
  2382. "_anchorPoint": {
  2383. "__type__": "cc.Vec2",
  2384. "x": 0.5,
  2385. "y": 0.5
  2386. },
  2387. "_trs": {
  2388. "__type__": "TypedArray",
  2389. "ctor": "Float64Array",
  2390. "array": [
  2391. -76.026,
  2392. -65.165,
  2393. 0,
  2394. 0,
  2395. 0,
  2396. 0,
  2397. 1,
  2398. 1,
  2399. 1,
  2400. 1
  2401. ]
  2402. },
  2403. "_eulerAngles": {
  2404. "__type__": "cc.Vec3",
  2405. "x": 0,
  2406. "y": 0,
  2407. "z": 0
  2408. },
  2409. "_skewX": 0,
  2410. "_skewY": 0,
  2411. "_is3DNode": false,
  2412. "_groupIndex": 0,
  2413. "groupIndex": 0,
  2414. "_id": ""
  2415. },
  2416. {
  2417. "__type__": "cc.Node",
  2418. "_name": "lb_re_time",
  2419. "_objFlags": 0,
  2420. "_parent": {
  2421. "__id__": 66
  2422. },
  2423. "_children": [],
  2424. "_active": true,
  2425. "_components": [
  2426. {
  2427. "__id__": 68
  2428. },
  2429. {
  2430. "__id__": 69
  2431. },
  2432. {
  2433. "__id__": 70
  2434. }
  2435. ],
  2436. "_prefab": {
  2437. "__id__": 71
  2438. },
  2439. "_opacity": 255,
  2440. "_color": {
  2441. "__type__": "cc.Color",
  2442. "r": 255,
  2443. "g": 255,
  2444. "b": 255,
  2445. "a": 255
  2446. },
  2447. "_contentSize": {
  2448. "__type__": "cc.Size",
  2449. "width": 223.97,
  2450. "height": 43.8
  2451. },
  2452. "_anchorPoint": {
  2453. "__type__": "cc.Vec2",
  2454. "x": 1,
  2455. "y": 0.5
  2456. },
  2457. "_trs": {
  2458. "__type__": "TypedArray",
  2459. "ctor": "Float64Array",
  2460. "array": [
  2461. -35.50000000000003,
  2462. 2.079,
  2463. 0,
  2464. 0,
  2465. 0,
  2466. 0,
  2467. 1,
  2468. 1,
  2469. 1,
  2470. 1
  2471. ]
  2472. },
  2473. "_eulerAngles": {
  2474. "__type__": "cc.Vec3",
  2475. "x": 0,
  2476. "y": 0,
  2477. "z": 0
  2478. },
  2479. "_skewX": 0,
  2480. "_skewY": 0,
  2481. "_is3DNode": false,
  2482. "_groupIndex": 0,
  2483. "groupIndex": 0,
  2484. "_id": ""
  2485. },
  2486. {
  2487. "__type__": "cc.Label",
  2488. "_name": "",
  2489. "_objFlags": 0,
  2490. "node": {
  2491. "__id__": 67
  2492. },
  2493. "_enabled": true,
  2494. "_materials": [
  2495. {
  2496. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2497. }
  2498. ],
  2499. "_srcBlendFactor": 770,
  2500. "_dstBlendFactor": 771,
  2501. "_string": "Remaining time:",
  2502. "_N$string": "Remaining time:",
  2503. "_fontSize": 32,
  2504. "_lineHeight": 30,
  2505. "_enableWrapText": true,
  2506. "_N$file": {
  2507. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  2508. },
  2509. "_isSystemFontUsed": false,
  2510. "_spacingX": 0,
  2511. "_batchAsBitmap": false,
  2512. "_styleFlags": 0,
  2513. "_underlineHeight": 0,
  2514. "_N$horizontalAlign": 1,
  2515. "_N$verticalAlign": 1,
  2516. "_N$fontFamily": "Arial",
  2517. "_N$overflow": 0,
  2518. "_N$cacheMode": 0,
  2519. "_id": ""
  2520. },
  2521. {
  2522. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  2523. "_name": "",
  2524. "_objFlags": 0,
  2525. "node": {
  2526. "__id__": 67
  2527. },
  2528. "_enabled": true,
  2529. "_englishCase": 1,
  2530. "i18n_string": "t121",
  2531. "i18n_params": [],
  2532. "_addColon": true,
  2533. "_id": ""
  2534. },
  2535. {
  2536. "__type__": "cc.LabelOutline",
  2537. "_name": "",
  2538. "_objFlags": 0,
  2539. "node": {
  2540. "__id__": 67
  2541. },
  2542. "_enabled": true,
  2543. "_color": {
  2544. "__type__": "cc.Color",
  2545. "r": 38,
  2546. "g": 17,
  2547. "b": 12,
  2548. "a": 255
  2549. },
  2550. "_width": 3,
  2551. "_id": ""
  2552. },
  2553. {
  2554. "__type__": "cc.PrefabInfo",
  2555. "root": {
  2556. "__id__": 1
  2557. },
  2558. "asset": {
  2559. "__id__": 0
  2560. },
  2561. "fileId": "e8TyruX0NCYaDg40N3aMAD",
  2562. "sync": false
  2563. },
  2564. {
  2565. "__type__": "cc.Node",
  2566. "_name": "lb_time_num",
  2567. "_objFlags": 0,
  2568. "_parent": {
  2569. "__id__": 66
  2570. },
  2571. "_children": [],
  2572. "_active": true,
  2573. "_components": [
  2574. {
  2575. "__id__": 73
  2576. },
  2577. {
  2578. "__id__": 74
  2579. },
  2580. {
  2581. "__id__": 75
  2582. }
  2583. ],
  2584. "_prefab": {
  2585. "__id__": 76
  2586. },
  2587. "_opacity": 255,
  2588. "_color": {
  2589. "__type__": "cc.Color",
  2590. "r": 186,
  2591. "g": 255,
  2592. "b": 39,
  2593. "a": 255
  2594. },
  2595. "_contentSize": {
  2596. "__type__": "cc.Size",
  2597. "width": 294.97,
  2598. "height": 43.8
  2599. },
  2600. "_anchorPoint": {
  2601. "__type__": "cc.Vec2",
  2602. "x": 0.5,
  2603. "y": 0.5
  2604. },
  2605. "_trs": {
  2606. "__type__": "TypedArray",
  2607. "ctor": "Float64Array",
  2608. "array": [
  2609. 111.98499999999999,
  2610. 2.079,
  2611. 0,
  2612. 0,
  2613. 0,
  2614. 0,
  2615. 1,
  2616. 1,
  2617. 1,
  2618. 1
  2619. ]
  2620. },
  2621. "_eulerAngles": {
  2622. "__type__": "cc.Vec3",
  2623. "x": 0,
  2624. "y": 0,
  2625. "z": 0
  2626. },
  2627. "_skewX": 0,
  2628. "_skewY": 0,
  2629. "_is3DNode": false,
  2630. "_groupIndex": 0,
  2631. "groupIndex": 0,
  2632. "_id": ""
  2633. },
  2634. {
  2635. "__type__": "cc.Label",
  2636. "_name": "",
  2637. "_objFlags": 0,
  2638. "node": {
  2639. "__id__": 72
  2640. },
  2641. "_enabled": true,
  2642. "_materials": [
  2643. {
  2644. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2645. }
  2646. ],
  2647. "_srcBlendFactor": 770,
  2648. "_dstBlendFactor": 771,
  2649. "_string": "3天20小时40分钟",
  2650. "_N$string": "3天20小时40分钟",
  2651. "_fontSize": 34,
  2652. "_lineHeight": 30,
  2653. "_enableWrapText": true,
  2654. "_N$file": {
  2655. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  2656. },
  2657. "_isSystemFontUsed": false,
  2658. "_spacingX": 0,
  2659. "_batchAsBitmap": false,
  2660. "_styleFlags": 0,
  2661. "_underlineHeight": 0,
  2662. "_N$horizontalAlign": 1,
  2663. "_N$verticalAlign": 1,
  2664. "_N$fontFamily": "Arial",
  2665. "_N$overflow": 0,
  2666. "_N$cacheMode": 0,
  2667. "_id": ""
  2668. },
  2669. {
  2670. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  2671. "_name": "",
  2672. "_objFlags": 0,
  2673. "node": {
  2674. "__id__": 72
  2675. },
  2676. "_enabled": true,
  2677. "_englishCase": 1,
  2678. "i18n_string": "",
  2679. "i18n_params": [],
  2680. "_addColon": false,
  2681. "_id": ""
  2682. },
  2683. {
  2684. "__type__": "cc.LabelOutline",
  2685. "_name": "",
  2686. "_objFlags": 0,
  2687. "node": {
  2688. "__id__": 72
  2689. },
  2690. "_enabled": true,
  2691. "_color": {
  2692. "__type__": "cc.Color",
  2693. "r": 38,
  2694. "g": 17,
  2695. "b": 12,
  2696. "a": 255
  2697. },
  2698. "_width": 3,
  2699. "_id": ""
  2700. },
  2701. {
  2702. "__type__": "cc.PrefabInfo",
  2703. "root": {
  2704. "__id__": 1
  2705. },
  2706. "asset": {
  2707. "__id__": 0
  2708. },
  2709. "fileId": "1frv94qeRKDZYTeuWGKoR+",
  2710. "sync": false
  2711. },
  2712. {
  2713. "__type__": "cc.Layout",
  2714. "_name": "",
  2715. "_objFlags": 0,
  2716. "node": {
  2717. "__id__": 66
  2718. },
  2719. "_enabled": true,
  2720. "_layoutSize": {
  2721. "__type__": "cc.Size",
  2722. "width": 518.94,
  2723. "height": 50
  2724. },
  2725. "_resize": 1,
  2726. "_N$layoutType": 1,
  2727. "_N$cellSize": {
  2728. "__type__": "cc.Size",
  2729. "width": 40,
  2730. "height": 40
  2731. },
  2732. "_N$startAxis": 0,
  2733. "_N$paddingLeft": 0,
  2734. "_N$paddingRight": 0,
  2735. "_N$paddingTop": 0,
  2736. "_N$paddingBottom": 0,
  2737. "_N$spacingX": 0,
  2738. "_N$spacingY": 0,
  2739. "_N$verticalDirection": 1,
  2740. "_N$horizontalDirection": 0,
  2741. "_N$affectedByScale": false,
  2742. "_id": ""
  2743. },
  2744. {
  2745. "__type__": "cc.PrefabInfo",
  2746. "root": {
  2747. "__id__": 1
  2748. },
  2749. "asset": {
  2750. "__id__": 0
  2751. },
  2752. "fileId": "48UgeN3x1KY5MjcBvzY+Kr",
  2753. "sync": false
  2754. },
  2755. {
  2756. "__type__": "cc.Node",
  2757. "_name": "btn_recharge",
  2758. "_objFlags": 0,
  2759. "_parent": {
  2760. "__id__": 40
  2761. },
  2762. "_children": [
  2763. {
  2764. "__id__": 80
  2765. }
  2766. ],
  2767. "_active": true,
  2768. "_components": [
  2769. {
  2770. "__id__": 85
  2771. },
  2772. {
  2773. "__id__": 86
  2774. },
  2775. {
  2776. "__id__": 87
  2777. }
  2778. ],
  2779. "_prefab": {
  2780. "__id__": 89
  2781. },
  2782. "_opacity": 255,
  2783. "_color": {
  2784. "__type__": "cc.Color",
  2785. "r": 255,
  2786. "g": 255,
  2787. "b": 255,
  2788. "a": 255
  2789. },
  2790. "_contentSize": {
  2791. "__type__": "cc.Size",
  2792. "width": 318,
  2793. "height": 129
  2794. },
  2795. "_anchorPoint": {
  2796. "__type__": "cc.Vec2",
  2797. "x": 0.5,
  2798. "y": 0.5
  2799. },
  2800. "_trs": {
  2801. "__type__": "TypedArray",
  2802. "ctor": "Float64Array",
  2803. "array": [
  2804. 702.082,
  2805. 23.213,
  2806. 0,
  2807. 0,
  2808. 0,
  2809. 0,
  2810. 1,
  2811. 1,
  2812. 1,
  2813. 0
  2814. ]
  2815. },
  2816. "_eulerAngles": {
  2817. "__type__": "cc.Vec3",
  2818. "x": 0,
  2819. "y": 0,
  2820. "z": 0
  2821. },
  2822. "_skewX": 0,
  2823. "_skewY": 0,
  2824. "_is3DNode": false,
  2825. "_groupIndex": 0,
  2826. "groupIndex": 0,
  2827. "_id": ""
  2828. },
  2829. {
  2830. "__type__": "cc.Node",
  2831. "_name": "lb",
  2832. "_objFlags": 0,
  2833. "_parent": {
  2834. "__id__": 79
  2835. },
  2836. "_children": [],
  2837. "_active": true,
  2838. "_components": [
  2839. {
  2840. "__id__": 81
  2841. },
  2842. {
  2843. "__id__": 82
  2844. },
  2845. {
  2846. "__id__": 83
  2847. }
  2848. ],
  2849. "_prefab": {
  2850. "__id__": 84
  2851. },
  2852. "_opacity": 255,
  2853. "_color": {
  2854. "__type__": "cc.Color",
  2855. "r": 68,
  2856. "g": 41,
  2857. "b": 0,
  2858. "a": 255
  2859. },
  2860. "_contentSize": {
  2861. "__type__": "cc.Size",
  2862. "width": 196.99,
  2863. "height": 123
  2864. },
  2865. "_anchorPoint": {
  2866. "__type__": "cc.Vec2",
  2867. "x": 0.5,
  2868. "y": 0.5
  2869. },
  2870. "_trs": {
  2871. "__type__": "TypedArray",
  2872. "ctor": "Float64Array",
  2873. "array": [
  2874. 0,
  2875. 5,
  2876. 0,
  2877. 0,
  2878. 0,
  2879. 0,
  2880. 1,
  2881. 1,
  2882. 1,
  2883. 1
  2884. ]
  2885. },
  2886. "_eulerAngles": {
  2887. "__type__": "cc.Vec3",
  2888. "x": 0,
  2889. "y": 0,
  2890. "z": 0
  2891. },
  2892. "_skewX": 0,
  2893. "_skewY": 0,
  2894. "_is3DNode": false,
  2895. "_groupIndex": 0,
  2896. "groupIndex": 0,
  2897. "_id": ""
  2898. },
  2899. {
  2900. "__type__": "cc.Label",
  2901. "_name": "",
  2902. "_objFlags": 0,
  2903. "node": {
  2904. "__id__": 80
  2905. },
  2906. "_enabled": true,
  2907. "_materials": [
  2908. {
  2909. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2910. }
  2911. ],
  2912. "_srcBlendFactor": 770,
  2913. "_dstBlendFactor": 771,
  2914. "_string": "Go to \nrecharge",
  2915. "_N$string": "Go to \nrecharge",
  2916. "_fontSize": 46,
  2917. "_lineHeight": 50,
  2918. "_enableWrapText": false,
  2919. "_N$file": {
  2920. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  2921. },
  2922. "_isSystemFontUsed": false,
  2923. "_spacingX": 0,
  2924. "_batchAsBitmap": false,
  2925. "_styleFlags": 0,
  2926. "_underlineHeight": 0,
  2927. "_N$horizontalAlign": 1,
  2928. "_N$verticalAlign": 1,
  2929. "_N$fontFamily": "Arial",
  2930. "_N$overflow": 0,
  2931. "_N$cacheMode": 0,
  2932. "_id": ""
  2933. },
  2934. {
  2935. "__type__": "cc.LabelOutline",
  2936. "_name": "",
  2937. "_objFlags": 0,
  2938. "node": {
  2939. "__id__": 80
  2940. },
  2941. "_enabled": true,
  2942. "_color": {
  2943. "__type__": "cc.Color",
  2944. "r": 255,
  2945. "g": 210,
  2946. "b": 0,
  2947. "a": 255
  2948. },
  2949. "_width": 5,
  2950. "_id": ""
  2951. },
  2952. {
  2953. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  2954. "_name": "",
  2955. "_objFlags": 0,
  2956. "node": {
  2957. "__id__": 80
  2958. },
  2959. "_enabled": true,
  2960. "_englishCase": 1,
  2961. "i18n_string": "t504",
  2962. "i18n_params": [],
  2963. "_addColon": false,
  2964. "_id": ""
  2965. },
  2966. {
  2967. "__type__": "cc.PrefabInfo",
  2968. "root": {
  2969. "__id__": 79
  2970. },
  2971. "asset": {
  2972. "__uuid__": "6fd1167f-a67b-42ee-8c6b-8c2850d41319"
  2973. },
  2974. "fileId": "12tNP2G5xGpY9oecBiNRvR",
  2975. "sync": false
  2976. },
  2977. {
  2978. "__type__": "cc.Sprite",
  2979. "_name": "",
  2980. "_objFlags": 0,
  2981. "node": {
  2982. "__id__": 79
  2983. },
  2984. "_enabled": true,
  2985. "_materials": [
  2986. {
  2987. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2988. }
  2989. ],
  2990. "_srcBlendFactor": 770,
  2991. "_dstBlendFactor": 771,
  2992. "_spriteFrame": {
  2993. "__uuid__": "d3486a1f-4c52-44bd-924b-39e06794d99f"
  2994. },
  2995. "_type": 0,
  2996. "_sizeMode": 1,
  2997. "_fillType": 0,
  2998. "_fillCenter": {
  2999. "__type__": "cc.Vec2",
  3000. "x": 0,
  3001. "y": 0
  3002. },
  3003. "_fillStart": 0,
  3004. "_fillRange": 0,
  3005. "_isTrimmedMode": true,
  3006. "_atlas": null,
  3007. "_id": ""
  3008. },
  3009. {
  3010. "__type__": "466e8BS6wJF6bKBj6rcxcSE",
  3011. "_name": "",
  3012. "_objFlags": 0,
  3013. "node": {
  3014. "__id__": 79
  3015. },
  3016. "_enabled": true,
  3017. "openContinuous": true,
  3018. "continuousTime": 0.2,
  3019. "multiTouch": false,
  3020. "_id": ""
  3021. },
  3022. {
  3023. "__type__": "61994AafntNFIbmt1zoyLq+",
  3024. "_name": "",
  3025. "_objFlags": 0,
  3026. "node": {
  3027. "__id__": 79
  3028. },
  3029. "_enabled": true,
  3030. "_normalMaterial": null,
  3031. "_grayMaterial": null,
  3032. "duration": 0.1,
  3033. "zoomScale": 1.2,
  3034. "clickEvents": [
  3035. {
  3036. "__id__": 88
  3037. }
  3038. ],
  3039. "_N$interactable": true,
  3040. "_N$enableAutoGrayEffect": false,
  3041. "_N$transition": 3,
  3042. "transition": 3,
  3043. "_N$normalColor": {
  3044. "__type__": "cc.Color",
  3045. "r": 255,
  3046. "g": 255,
  3047. "b": 255,
  3048. "a": 255
  3049. },
  3050. "_N$pressedColor": {
  3051. "__type__": "cc.Color",
  3052. "r": 211,
  3053. "g": 211,
  3054. "b": 211,
  3055. "a": 255
  3056. },
  3057. "pressedColor": {
  3058. "__type__": "cc.Color",
  3059. "r": 211,
  3060. "g": 211,
  3061. "b": 211,
  3062. "a": 255
  3063. },
  3064. "_N$hoverColor": {
  3065. "__type__": "cc.Color",
  3066. "r": 255,
  3067. "g": 255,
  3068. "b": 255,
  3069. "a": 255
  3070. },
  3071. "hoverColor": {
  3072. "__type__": "cc.Color",
  3073. "r": 255,
  3074. "g": 255,
  3075. "b": 255,
  3076. "a": 255
  3077. },
  3078. "_N$disabledColor": {
  3079. "__type__": "cc.Color",
  3080. "r": 124,
  3081. "g": 124,
  3082. "b": 124,
  3083. "a": 255
  3084. },
  3085. "_N$normalSprite": null,
  3086. "_N$pressedSprite": null,
  3087. "pressedSprite": null,
  3088. "_N$hoverSprite": null,
  3089. "hoverSprite": null,
  3090. "_N$disabledSprite": null,
  3091. "_N$target": null,
  3092. "_id": ""
  3093. },
  3094. {
  3095. "__type__": "cc.ClickEvent",
  3096. "target": {
  3097. "__id__": 1
  3098. },
  3099. "component": "",
  3100. "_componentId": "50212zWjTZBW5V20BLdVCdO",
  3101. "handler": "onClickGoToRecharge",
  3102. "customEventData": ""
  3103. },
  3104. {
  3105. "__type__": "cc.PrefabInfo",
  3106. "root": {
  3107. "__id__": 79
  3108. },
  3109. "asset": {
  3110. "__uuid__": "6fd1167f-a67b-42ee-8c6b-8c2850d41319"
  3111. },
  3112. "fileId": "71WlfI8uZBMLhn7OTCQtce",
  3113. "sync": false
  3114. },
  3115. {
  3116. "__type__": "cc.Node",
  3117. "_name": "lb_re_num",
  3118. "_objFlags": 0,
  3119. "_parent": {
  3120. "__id__": 40
  3121. },
  3122. "_children": [],
  3123. "_active": true,
  3124. "_components": [
  3125. {
  3126. "__id__": 91
  3127. },
  3128. {
  3129. "__id__": 92
  3130. },
  3131. {
  3132. "__id__": 93
  3133. }
  3134. ],
  3135. "_prefab": {
  3136. "__id__": 94
  3137. },
  3138. "_opacity": 255,
  3139. "_color": {
  3140. "__type__": "cc.Color",
  3141. "r": 255,
  3142. "g": 255,
  3143. "b": 255,
  3144. "a": 255
  3145. },
  3146. "_contentSize": {
  3147. "__type__": "cc.Size",
  3148. "width": 292.85,
  3149. "height": 43.8
  3150. },
  3151. "_anchorPoint": {
  3152. "__type__": "cc.Vec2",
  3153. "x": 0.5,
  3154. "y": 0.5
  3155. },
  3156. "_trs": {
  3157. "__type__": "TypedArray",
  3158. "ctor": "Float64Array",
  3159. "array": [
  3160. 692.689,
  3161. -69.08,
  3162. 0,
  3163. 0,
  3164. 0,
  3165. 0,
  3166. 1,
  3167. 1,
  3168. 1,
  3169. 1
  3170. ]
  3171. },
  3172. "_eulerAngles": {
  3173. "__type__": "cc.Vec3",
  3174. "x": 0,
  3175. "y": 0,
  3176. "z": 0
  3177. },
  3178. "_skewX": 0,
  3179. "_skewY": 0,
  3180. "_is3DNode": false,
  3181. "_groupIndex": 0,
  3182. "groupIndex": 0,
  3183. "_id": ""
  3184. },
  3185. {
  3186. "__type__": "cc.Label",
  3187. "_name": "",
  3188. "_objFlags": 0,
  3189. "node": {
  3190. "__id__": 90
  3191. },
  3192. "_enabled": true,
  3193. "_materials": [
  3194. {
  3195. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3196. }
  3197. ],
  3198. "_srcBlendFactor": 770,
  3199. "_dstBlendFactor": 771,
  3200. "_string": "Recharge today:30",
  3201. "_N$string": "Recharge today:30",
  3202. "_fontSize": 30,
  3203. "_lineHeight": 30,
  3204. "_enableWrapText": true,
  3205. "_N$file": {
  3206. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  3207. },
  3208. "_isSystemFontUsed": false,
  3209. "_spacingX": 0,
  3210. "_batchAsBitmap": false,
  3211. "_styleFlags": 0,
  3212. "_underlineHeight": 0,
  3213. "_N$horizontalAlign": 1,
  3214. "_N$verticalAlign": 1,
  3215. "_N$fontFamily": "Arial",
  3216. "_N$overflow": 0,
  3217. "_N$cacheMode": 0,
  3218. "_id": ""
  3219. },
  3220. {
  3221. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  3222. "_name": "",
  3223. "_objFlags": 0,
  3224. "node": {
  3225. "__id__": 90
  3226. },
  3227. "_enabled": true,
  3228. "_englishCase": 1,
  3229. "i18n_string": "t502",
  3230. "i18n_params": [
  3231. "30"
  3232. ],
  3233. "_addColon": false,
  3234. "_id": ""
  3235. },
  3236. {
  3237. "__type__": "cc.LabelOutline",
  3238. "_name": "",
  3239. "_objFlags": 0,
  3240. "node": {
  3241. "__id__": 90
  3242. },
  3243. "_enabled": true,
  3244. "_color": {
  3245. "__type__": "cc.Color",
  3246. "r": 38,
  3247. "g": 17,
  3248. "b": 12,
  3249. "a": 255
  3250. },
  3251. "_width": 3,
  3252. "_id": ""
  3253. },
  3254. {
  3255. "__type__": "cc.PrefabInfo",
  3256. "root": {
  3257. "__id__": 1
  3258. },
  3259. "asset": {
  3260. "__id__": 0
  3261. },
  3262. "fileId": "d1UAjskRRI0qE786Y4UGj9",
  3263. "sync": false
  3264. },
  3265. {
  3266. "__type__": "cc.PrefabInfo",
  3267. "root": {
  3268. "__id__": 1
  3269. },
  3270. "asset": {
  3271. "__id__": 0
  3272. },
  3273. "fileId": "98l3JblDJMYoD7g7XaXLYo",
  3274. "sync": false
  3275. },
  3276. {
  3277. "__type__": "cc.Node",
  3278. "_name": "gift_list",
  3279. "_objFlags": 0,
  3280. "_parent": {
  3281. "__id__": 36
  3282. },
  3283. "_children": [
  3284. {
  3285. "__id__": 97
  3286. }
  3287. ],
  3288. "_active": true,
  3289. "_components": [
  3290. {
  3291. "__id__": 146
  3292. },
  3293. {
  3294. "__id__": 147
  3295. }
  3296. ],
  3297. "_prefab": {
  3298. "__id__": 150
  3299. },
  3300. "_opacity": 255,
  3301. "_color": {
  3302. "__type__": "cc.Color",
  3303. "r": 255,
  3304. "g": 255,
  3305. "b": 255,
  3306. "a": 255
  3307. },
  3308. "_contentSize": {
  3309. "__type__": "cc.Size",
  3310. "width": 1800,
  3311. "height": 500
  3312. },
  3313. "_anchorPoint": {
  3314. "__type__": "cc.Vec2",
  3315. "x": 0.5,
  3316. "y": 0.5
  3317. },
  3318. "_trs": {
  3319. "__type__": "TypedArray",
  3320. "ctor": "Float64Array",
  3321. "array": [
  3322. 0,
  3323. -117,
  3324. 0,
  3325. 0,
  3326. 0,
  3327. 0,
  3328. 1,
  3329. 1,
  3330. 1,
  3331. 1
  3332. ]
  3333. },
  3334. "_eulerAngles": {
  3335. "__type__": "cc.Vec3",
  3336. "x": 0,
  3337. "y": 0,
  3338. "z": 0
  3339. },
  3340. "_skewX": 0,
  3341. "_skewY": 0,
  3342. "_is3DNode": false,
  3343. "_groupIndex": 0,
  3344. "groupIndex": 0,
  3345. "_id": ""
  3346. },
  3347. {
  3348. "__type__": "cc.Node",
  3349. "_name": "view",
  3350. "_objFlags": 0,
  3351. "_parent": {
  3352. "__id__": 96
  3353. },
  3354. "_children": [
  3355. {
  3356. "__id__": 98
  3357. }
  3358. ],
  3359. "_active": true,
  3360. "_components": [
  3361. {
  3362. "__id__": 144
  3363. }
  3364. ],
  3365. "_prefab": {
  3366. "__id__": 145
  3367. },
  3368. "_opacity": 255,
  3369. "_color": {
  3370. "__type__": "cc.Color",
  3371. "r": 255,
  3372. "g": 255,
  3373. "b": 255,
  3374. "a": 255
  3375. },
  3376. "_contentSize": {
  3377. "__type__": "cc.Size",
  3378. "width": 1800,
  3379. "height": 500
  3380. },
  3381. "_anchorPoint": {
  3382. "__type__": "cc.Vec2",
  3383. "x": 0,
  3384. "y": 0.5
  3385. },
  3386. "_trs": {
  3387. "__type__": "TypedArray",
  3388. "ctor": "Float64Array",
  3389. "array": [
  3390. -900,
  3391. 0,
  3392. 0,
  3393. 0,
  3394. 0,
  3395. 0,
  3396. 1,
  3397. 1,
  3398. 1,
  3399. 1
  3400. ]
  3401. },
  3402. "_eulerAngles": {
  3403. "__type__": "cc.Vec3",
  3404. "x": 0,
  3405. "y": 0,
  3406. "z": 0
  3407. },
  3408. "_skewX": 0,
  3409. "_skewY": 0,
  3410. "_is3DNode": false,
  3411. "_groupIndex": 0,
  3412. "groupIndex": 0,
  3413. "_id": ""
  3414. },
  3415. {
  3416. "__type__": "cc.Node",
  3417. "_name": "content",
  3418. "_objFlags": 0,
  3419. "_parent": {
  3420. "__id__": 97
  3421. },
  3422. "_children": [
  3423. {
  3424. "__id__": 99
  3425. }
  3426. ],
  3427. "_active": true,
  3428. "_components": [
  3429. {
  3430. "__id__": 142
  3431. }
  3432. ],
  3433. "_prefab": {
  3434. "__id__": 143
  3435. },
  3436. "_opacity": 255,
  3437. "_color": {
  3438. "__type__": "cc.Color",
  3439. "r": 255,
  3440. "g": 255,
  3441. "b": 255,
  3442. "a": 255
  3443. },
  3444. "_contentSize": {
  3445. "__type__": "cc.Size",
  3446. "width": 1800,
  3447. "height": 500
  3448. },
  3449. "_anchorPoint": {
  3450. "__type__": "cc.Vec2",
  3451. "x": 0,
  3452. "y": 0.5
  3453. },
  3454. "_trs": {
  3455. "__type__": "TypedArray",
  3456. "ctor": "Float64Array",
  3457. "array": [
  3458. 0,
  3459. 0,
  3460. 0,
  3461. 0,
  3462. 0,
  3463. 0,
  3464. 1,
  3465. 1,
  3466. 1,
  3467. 1
  3468. ]
  3469. },
  3470. "_eulerAngles": {
  3471. "__type__": "cc.Vec3",
  3472. "x": 0,
  3473. "y": 0,
  3474. "z": 0
  3475. },
  3476. "_skewX": 0,
  3477. "_skewY": 0,
  3478. "_is3DNode": false,
  3479. "_groupIndex": 0,
  3480. "groupIndex": 0,
  3481. "_id": ""
  3482. },
  3483. {
  3484. "__type__": "cc.Node",
  3485. "_name": "gift",
  3486. "_objFlags": 0,
  3487. "_parent": {
  3488. "__id__": 98
  3489. },
  3490. "_children": [
  3491. {
  3492. "__id__": 100
  3493. },
  3494. {
  3495. "__id__": 107
  3496. },
  3497. {
  3498. "__id__": 126
  3499. },
  3500. {
  3501. "__id__": 137
  3502. }
  3503. ],
  3504. "_active": true,
  3505. "_components": [
  3506. {
  3507. "__id__": 140
  3508. }
  3509. ],
  3510. "_prefab": {
  3511. "__id__": 141
  3512. },
  3513. "_opacity": 255,
  3514. "_color": {
  3515. "__type__": "cc.Color",
  3516. "r": 255,
  3517. "g": 255,
  3518. "b": 255,
  3519. "a": 255
  3520. },
  3521. "_contentSize": {
  3522. "__type__": "cc.Size",
  3523. "width": 366,
  3524. "height": 456
  3525. },
  3526. "_anchorPoint": {
  3527. "__type__": "cc.Vec2",
  3528. "x": 0.5,
  3529. "y": 0.5
  3530. },
  3531. "_trs": {
  3532. "__type__": "TypedArray",
  3533. "ctor": "Float64Array",
  3534. "array": [
  3535. 204,
  3536. 1.5,
  3537. 0,
  3538. 0,
  3539. 0,
  3540. 0,
  3541. 1,
  3542. 1,
  3543. 1,
  3544. 1
  3545. ]
  3546. },
  3547. "_eulerAngles": {
  3548. "__type__": "cc.Vec3",
  3549. "x": 0,
  3550. "y": 0,
  3551. "z": 0
  3552. },
  3553. "_skewX": 0,
  3554. "_skewY": 0,
  3555. "_is3DNode": false,
  3556. "_groupIndex": 0,
  3557. "groupIndex": 0,
  3558. "_id": ""
  3559. },
  3560. {
  3561. "__type__": "cc.Node",
  3562. "_name": "item",
  3563. "_objFlags": 0,
  3564. "_parent": {
  3565. "__id__": 99
  3566. },
  3567. "_children": [
  3568. {
  3569. "__id__": 101
  3570. }
  3571. ],
  3572. "_active": true,
  3573. "_components": [],
  3574. "_prefab": {
  3575. "__id__": 106
  3576. },
  3577. "_opacity": 255,
  3578. "_color": {
  3579. "__type__": "cc.Color",
  3580. "r": 255,
  3581. "g": 255,
  3582. "b": 255,
  3583. "a": 255
  3584. },
  3585. "_contentSize": {
  3586. "__type__": "cc.Size",
  3587. "width": 366,
  3588. "height": 456
  3589. },
  3590. "_anchorPoint": {
  3591. "__type__": "cc.Vec2",
  3592. "x": 0.5,
  3593. "y": 0.5
  3594. },
  3595. "_trs": {
  3596. "__type__": "TypedArray",
  3597. "ctor": "Float64Array",
  3598. "array": [
  3599. 0,
  3600. 0,
  3601. 0,
  3602. 0,
  3603. 0,
  3604. 0,
  3605. 1,
  3606. 1,
  3607. 1,
  3608. 1
  3609. ]
  3610. },
  3611. "_eulerAngles": {
  3612. "__type__": "cc.Vec3",
  3613. "x": 0,
  3614. "y": 0,
  3615. "z": 0
  3616. },
  3617. "_skewX": 0,
  3618. "_skewY": 0,
  3619. "_is3DNode": false,
  3620. "_groupIndex": 0,
  3621. "groupIndex": 0,
  3622. "_id": ""
  3623. },
  3624. {
  3625. "__type__": "cc.Node",
  3626. "_name": "lb",
  3627. "_objFlags": 0,
  3628. "_parent": {
  3629. "__id__": 100
  3630. },
  3631. "_children": [],
  3632. "_active": true,
  3633. "_components": [
  3634. {
  3635. "__id__": 102
  3636. },
  3637. {
  3638. "__id__": 103
  3639. },
  3640. {
  3641. "__id__": 104
  3642. }
  3643. ],
  3644. "_prefab": {
  3645. "__id__": 105
  3646. },
  3647. "_opacity": 255,
  3648. "_color": {
  3649. "__type__": "cc.Color",
  3650. "r": 255,
  3651. "g": 201,
  3652. "b": 98,
  3653. "a": 255
  3654. },
  3655. "_contentSize": {
  3656. "__type__": "cc.Size",
  3657. "width": 295.19,
  3658. "height": 73.8
  3659. },
  3660. "_anchorPoint": {
  3661. "__type__": "cc.Vec2",
  3662. "x": 0.5,
  3663. "y": 0.5
  3664. },
  3665. "_trs": {
  3666. "__type__": "TypedArray",
  3667. "ctor": "Float64Array",
  3668. "array": [
  3669. 0,
  3670. -151.556,
  3671. 0,
  3672. 0,
  3673. 0,
  3674. 0,
  3675. 1,
  3676. 1,
  3677. 1,
  3678. 1
  3679. ]
  3680. },
  3681. "_eulerAngles": {
  3682. "__type__": "cc.Vec3",
  3683. "x": 0,
  3684. "y": 0,
  3685. "z": 0
  3686. },
  3687. "_skewX": 0,
  3688. "_skewY": 0,
  3689. "_is3DNode": false,
  3690. "_groupIndex": 0,
  3691. "groupIndex": 0,
  3692. "_id": ""
  3693. },
  3694. {
  3695. "__type__": "cc.Label",
  3696. "_name": "",
  3697. "_objFlags": 0,
  3698. "node": {
  3699. "__id__": 101
  3700. },
  3701. "_enabled": true,
  3702. "_materials": [
  3703. {
  3704. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3705. }
  3706. ],
  3707. "_srcBlendFactor": 770,
  3708. "_dstBlendFactor": 771,
  3709. "_string": "Unlocking after 1 days\nof cumulative recharge",
  3710. "_N$string": "Unlocking after 1 days\nof cumulative recharge",
  3711. "_fontSize": 28,
  3712. "_lineHeight": 30,
  3713. "_enableWrapText": true,
  3714. "_N$file": {
  3715. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  3716. },
  3717. "_isSystemFontUsed": false,
  3718. "_spacingX": 0,
  3719. "_batchAsBitmap": false,
  3720. "_styleFlags": 0,
  3721. "_underlineHeight": 0,
  3722. "_N$horizontalAlign": 1,
  3723. "_N$verticalAlign": 1,
  3724. "_N$fontFamily": "Arial",
  3725. "_N$overflow": 0,
  3726. "_N$cacheMode": 0,
  3727. "_id": ""
  3728. },
  3729. {
  3730. "__type__": "cc.LabelOutline",
  3731. "_name": "",
  3732. "_objFlags": 0,
  3733. "node": {
  3734. "__id__": 101
  3735. },
  3736. "_enabled": true,
  3737. "_color": {
  3738. "__type__": "cc.Color",
  3739. "r": 38,
  3740. "g": 17,
  3741. "b": 12,
  3742. "a": 255
  3743. },
  3744. "_width": 3,
  3745. "_id": ""
  3746. },
  3747. {
  3748. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  3749. "_name": "",
  3750. "_objFlags": 0,
  3751. "node": {
  3752. "__id__": 101
  3753. },
  3754. "_enabled": true,
  3755. "_englishCase": 1,
  3756. "i18n_string": "t503",
  3757. "i18n_params": [
  3758. "1"
  3759. ],
  3760. "_addColon": false,
  3761. "_id": ""
  3762. },
  3763. {
  3764. "__type__": "cc.PrefabInfo",
  3765. "root": {
  3766. "__id__": 101
  3767. },
  3768. "asset": {
  3769. "__uuid__": "b55c4816-1512-4abe-a683-117b4601b39a"
  3770. },
  3771. "fileId": "b45jf45o9AHIEtbaloX8xz",
  3772. "sync": false
  3773. },
  3774. {
  3775. "__type__": "cc.PrefabInfo",
  3776. "root": {
  3777. "__id__": 1
  3778. },
  3779. "asset": {
  3780. "__id__": 0
  3781. },
  3782. "fileId": "deO2OQMr9H6qx0llP7IEGb",
  3783. "sync": false
  3784. },
  3785. {
  3786. "__type__": "cc.Node",
  3787. "_name": "goods",
  3788. "_objFlags": 0,
  3789. "_parent": {
  3790. "__id__": 99
  3791. },
  3792. "_children": [
  3793. {
  3794. "__id__": 108
  3795. }
  3796. ],
  3797. "_active": true,
  3798. "_components": [
  3799. {
  3800. "__id__": 123
  3801. },
  3802. {
  3803. "__id__": 124
  3804. }
  3805. ],
  3806. "_prefab": {
  3807. "__id__": 125
  3808. },
  3809. "_opacity": 255,
  3810. "_color": {
  3811. "__type__": "cc.Color",
  3812. "r": 255,
  3813. "g": 255,
  3814. "b": 255,
  3815. "a": 255
  3816. },
  3817. "_contentSize": {
  3818. "__type__": "cc.Size",
  3819. "width": 166,
  3820. "height": 116.2
  3821. },
  3822. "_anchorPoint": {
  3823. "__type__": "cc.Vec2",
  3824. "x": 0.5,
  3825. "y": 0.52
  3826. },
  3827. "_trs": {
  3828. "__type__": "TypedArray",
  3829. "ctor": "Float64Array",
  3830. "array": [
  3831. 0,
  3832. 60,
  3833. 0,
  3834. 0,
  3835. 0,
  3836. 0,
  3837. 1,
  3838. 1,
  3839. 1,
  3840. 1
  3841. ]
  3842. },
  3843. "_eulerAngles": {
  3844. "__type__": "cc.Vec3",
  3845. "x": 0,
  3846. "y": 0,
  3847. "z": 0
  3848. },
  3849. "_skewX": 0,
  3850. "_skewY": 0,
  3851. "_is3DNode": false,
  3852. "_groupIndex": 0,
  3853. "groupIndex": 0,
  3854. "_id": ""
  3855. },
  3856. {
  3857. "__type__": "cc.Node",
  3858. "_name": "horizon",
  3859. "_objFlags": 0,
  3860. "_parent": {
  3861. "__id__": 107
  3862. },
  3863. "_children": [
  3864. {
  3865. "__id__": 109
  3866. }
  3867. ],
  3868. "_active": true,
  3869. "_components": [
  3870. {
  3871. "__id__": 121
  3872. }
  3873. ],
  3874. "_prefab": {
  3875. "__id__": 122
  3876. },
  3877. "_opacity": 255,
  3878. "_color": {
  3879. "__type__": "cc.Color",
  3880. "r": 255,
  3881. "g": 255,
  3882. "b": 255,
  3883. "a": 255
  3884. },
  3885. "_contentSize": {
  3886. "__type__": "cc.Size",
  3887. "width": 116.2,
  3888. "height": 116.2
  3889. },
  3890. "_anchorPoint": {
  3891. "__type__": "cc.Vec2",
  3892. "x": 0.5,
  3893. "y": 0.5
  3894. },
  3895. "_trs": {
  3896. "__type__": "TypedArray",
  3897. "ctor": "Float64Array",
  3898. "array": [
  3899. 0,
  3900. -2.324000000000005,
  3901. 0,
  3902. 0,
  3903. 0,
  3904. 0,
  3905. 1,
  3906. 1,
  3907. 1,
  3908. 1
  3909. ]
  3910. },
  3911. "_eulerAngles": {
  3912. "__type__": "cc.Vec3",
  3913. "x": 0,
  3914. "y": 0,
  3915. "z": 0
  3916. },
  3917. "_skewX": 0,
  3918. "_skewY": 0,
  3919. "_is3DNode": false,
  3920. "_groupIndex": 0,
  3921. "groupIndex": 0,
  3922. "_id": ""
  3923. },
  3924. {
  3925. "__type__": "cc.Node",
  3926. "_name": "item",
  3927. "_objFlags": 0,
  3928. "_parent": {
  3929. "__id__": 108
  3930. },
  3931. "_children": [
  3932. {
  3933. "__id__": 110
  3934. },
  3935. {
  3936. "__id__": 112
  3937. },
  3938. {
  3939. "__id__": 115
  3940. }
  3941. ],
  3942. "_active": true,
  3943. "_components": [
  3944. {
  3945. "__id__": 118
  3946. },
  3947. {
  3948. "__id__": 119
  3949. }
  3950. ],
  3951. "_prefab": {
  3952. "__id__": 120
  3953. },
  3954. "_opacity": 255,
  3955. "_color": {
  3956. "__type__": "cc.Color",
  3957. "r": 255,
  3958. "g": 255,
  3959. "b": 255,
  3960. "a": 255
  3961. },
  3962. "_contentSize": {
  3963. "__type__": "cc.Size",
  3964. "width": 116.2,
  3965. "height": 116.2
  3966. },
  3967. "_anchorPoint": {
  3968. "__type__": "cc.Vec2",
  3969. "x": 0.5,
  3970. "y": 0.5
  3971. },
  3972. "_trs": {
  3973. "__type__": "TypedArray",
  3974. "ctor": "Float64Array",
  3975. "array": [
  3976. 7.105427357601002e-15,
  3977. 0,
  3978. 0,
  3979. 0,
  3980. 0,
  3981. 0,
  3982. 1,
  3983. 1,
  3984. 1,
  3985. 1
  3986. ]
  3987. },
  3988. "_eulerAngles": {
  3989. "__type__": "cc.Vec3",
  3990. "x": 0,
  3991. "y": 0,
  3992. "z": 0
  3993. },
  3994. "_skewX": 0,
  3995. "_skewY": 0,
  3996. "_is3DNode": false,
  3997. "_groupIndex": 0,
  3998. "groupIndex": 0,
  3999. "_id": ""
  4000. },
  4001. {
  4002. "__type__": "cc.Node",
  4003. "_name": "goods",
  4004. "_objFlags": 0,
  4005. "_parent": {
  4006. "__id__": 109
  4007. },
  4008. "_children": [],
  4009. "_active": true,
  4010. "_components": [],
  4011. "_prefab": {
  4012. "__id__": 111
  4013. },
  4014. "_opacity": 255,
  4015. "_color": {
  4016. "__type__": "cc.Color",
  4017. "r": 255,
  4018. "g": 255,
  4019. "b": 255,
  4020. "a": 255
  4021. },
  4022. "_contentSize": {
  4023. "__type__": "cc.Size",
  4024. "width": 166,
  4025. "height": 166
  4026. },
  4027. "_anchorPoint": {
  4028. "__type__": "cc.Vec2",
  4029. "x": 0.5,
  4030. "y": 0.5
  4031. },
  4032. "_trs": {
  4033. "__type__": "TypedArray",
  4034. "ctor": "Float64Array",
  4035. "array": [
  4036. 0,
  4037. 0,
  4038. 0,
  4039. 0,
  4040. 0,
  4041. 0,
  4042. 1,
  4043. 0.8,
  4044. 0.8,
  4045. 0.7
  4046. ]
  4047. },
  4048. "_eulerAngles": {
  4049. "__type__": "cc.Vec3",
  4050. "x": 0,
  4051. "y": 0,
  4052. "z": 0
  4053. },
  4054. "_skewX": 0,
  4055. "_skewY": 0,
  4056. "_is3DNode": false,
  4057. "_groupIndex": 0,
  4058. "groupIndex": 0,
  4059. "_id": ""
  4060. },
  4061. {
  4062. "__type__": "cc.PrefabInfo",
  4063. "root": {
  4064. "__id__": 110
  4065. },
  4066. "asset": {
  4067. "__uuid__": "304eee68-47d8-489e-9653-3ffe326cc362"
  4068. },
  4069. "fileId": "43UZ9wbK9JLbcZDJebq363",
  4070. "sync": false
  4071. },
  4072. {
  4073. "__type__": "cc.Node",
  4074. "_name": "gray",
  4075. "_objFlags": 0,
  4076. "_parent": {
  4077. "__id__": 109
  4078. },
  4079. "_children": [],
  4080. "_active": false,
  4081. "_components": [
  4082. {
  4083. "__id__": 113
  4084. }
  4085. ],
  4086. "_prefab": {
  4087. "__id__": 114
  4088. },
  4089. "_opacity": 153,
  4090. "_color": {
  4091. "__type__": "cc.Color",
  4092. "r": 0,
  4093. "g": 0,
  4094. "b": 0,
  4095. "a": 255
  4096. },
  4097. "_contentSize": {
  4098. "__type__": "cc.Size",
  4099. "width": 166,
  4100. "height": 166
  4101. },
  4102. "_anchorPoint": {
  4103. "__type__": "cc.Vec2",
  4104. "x": 0.5,
  4105. "y": 0.5
  4106. },
  4107. "_trs": {
  4108. "__type__": "TypedArray",
  4109. "ctor": "Float64Array",
  4110. "array": [
  4111. 0,
  4112. 0,
  4113. 0,
  4114. 0,
  4115. 0,
  4116. 0,
  4117. 1,
  4118. 0.8,
  4119. 0.8,
  4120. 1
  4121. ]
  4122. },
  4123. "_eulerAngles": {
  4124. "__type__": "cc.Vec3",
  4125. "x": 0,
  4126. "y": 0,
  4127. "z": 0
  4128. },
  4129. "_skewX": 0,
  4130. "_skewY": 0,
  4131. "_is3DNode": false,
  4132. "_groupIndex": 0,
  4133. "groupIndex": 0,
  4134. "_id": ""
  4135. },
  4136. {
  4137. "__type__": "cc.Sprite",
  4138. "_name": "",
  4139. "_objFlags": 0,
  4140. "node": {
  4141. "__id__": 112
  4142. },
  4143. "_enabled": true,
  4144. "_materials": [
  4145. {
  4146. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4147. }
  4148. ],
  4149. "_srcBlendFactor": 770,
  4150. "_dstBlendFactor": 771,
  4151. "_spriteFrame": {
  4152. "__uuid__": "05b69229-67ad-42c3-bf71-09c34d9def2b"
  4153. },
  4154. "_type": 1,
  4155. "_sizeMode": 0,
  4156. "_fillType": 0,
  4157. "_fillCenter": {
  4158. "__type__": "cc.Vec2",
  4159. "x": 0,
  4160. "y": 0
  4161. },
  4162. "_fillStart": 0,
  4163. "_fillRange": 0,
  4164. "_isTrimmedMode": true,
  4165. "_atlas": null,
  4166. "_id": ""
  4167. },
  4168. {
  4169. "__type__": "cc.PrefabInfo",
  4170. "root": {
  4171. "__id__": 1
  4172. },
  4173. "asset": {
  4174. "__id__": 0
  4175. },
  4176. "fileId": "cagoEKAuVFebn2uxEVnWs3",
  4177. "sync": false
  4178. },
  4179. {
  4180. "__type__": "cc.Node",
  4181. "_name": "select_1",
  4182. "_objFlags": 0,
  4183. "_parent": {
  4184. "__id__": 109
  4185. },
  4186. "_children": [],
  4187. "_active": false,
  4188. "_components": [
  4189. {
  4190. "__id__": 116
  4191. }
  4192. ],
  4193. "_prefab": {
  4194. "__id__": 117
  4195. },
  4196. "_opacity": 255,
  4197. "_color": {
  4198. "__type__": "cc.Color",
  4199. "r": 255,
  4200. "g": 255,
  4201. "b": 255,
  4202. "a": 255
  4203. },
  4204. "_contentSize": {
  4205. "__type__": "cc.Size",
  4206. "width": 92,
  4207. "height": 66
  4208. },
  4209. "_anchorPoint": {
  4210. "__type__": "cc.Vec2",
  4211. "x": 0.5,
  4212. "y": 0.5
  4213. },
  4214. "_trs": {
  4215. "__type__": "TypedArray",
  4216. "ctor": "Float64Array",
  4217. "array": [
  4218. 0,
  4219. 0,
  4220. 0,
  4221. 0,
  4222. 0,
  4223. 0,
  4224. 1,
  4225. 0.8,
  4226. 0.8,
  4227. 1
  4228. ]
  4229. },
  4230. "_eulerAngles": {
  4231. "__type__": "cc.Vec3",
  4232. "x": 0,
  4233. "y": 0,
  4234. "z": 0
  4235. },
  4236. "_skewX": 0,
  4237. "_skewY": 0,
  4238. "_is3DNode": false,
  4239. "_groupIndex": 0,
  4240. "groupIndex": 0,
  4241. "_id": ""
  4242. },
  4243. {
  4244. "__type__": "cc.Sprite",
  4245. "_name": "",
  4246. "_objFlags": 0,
  4247. "node": {
  4248. "__id__": 115
  4249. },
  4250. "_enabled": true,
  4251. "_materials": [
  4252. {
  4253. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4254. }
  4255. ],
  4256. "_srcBlendFactor": 770,
  4257. "_dstBlendFactor": 771,
  4258. "_spriteFrame": {
  4259. "__uuid__": "b9e4722c-e1d5-4892-ade4-2d0f9587183e"
  4260. },
  4261. "_type": 0,
  4262. "_sizeMode": 1,
  4263. "_fillType": 0,
  4264. "_fillCenter": {
  4265. "__type__": "cc.Vec2",
  4266. "x": 0,
  4267. "y": 0
  4268. },
  4269. "_fillStart": 0,
  4270. "_fillRange": 0,
  4271. "_isTrimmedMode": true,
  4272. "_atlas": null,
  4273. "_id": ""
  4274. },
  4275. {
  4276. "__type__": "cc.PrefabInfo",
  4277. "root": {
  4278. "__id__": 1
  4279. },
  4280. "asset": {
  4281. "__id__": 0
  4282. },
  4283. "fileId": "cfsUysO6FCFZmT+T0uLczN",
  4284. "sync": false
  4285. },
  4286. {
  4287. "__type__": "466e8BS6wJF6bKBj6rcxcSE",
  4288. "_name": "",
  4289. "_objFlags": 0,
  4290. "node": {
  4291. "__id__": 109
  4292. },
  4293. "_enabled": true,
  4294. "openContinuous": true,
  4295. "continuousTime": 0.2,
  4296. "multiTouch": false,
  4297. "_id": ""
  4298. },
  4299. {
  4300. "__type__": "61994AafntNFIbmt1zoyLq+",
  4301. "_name": "",
  4302. "_objFlags": 0,
  4303. "node": {
  4304. "__id__": 109
  4305. },
  4306. "_enabled": true,
  4307. "_normalMaterial": null,
  4308. "_grayMaterial": null,
  4309. "duration": 0.1,
  4310. "zoomScale": 1.2,
  4311. "clickEvents": [],
  4312. "_N$interactable": true,
  4313. "_N$enableAutoGrayEffect": false,
  4314. "_N$transition": 0,
  4315. "transition": 0,
  4316. "_N$normalColor": {
  4317. "__type__": "cc.Color",
  4318. "r": 255,
  4319. "g": 255,
  4320. "b": 255,
  4321. "a": 255
  4322. },
  4323. "_N$pressedColor": {
  4324. "__type__": "cc.Color",
  4325. "r": 211,
  4326. "g": 211,
  4327. "b": 211,
  4328. "a": 255
  4329. },
  4330. "pressedColor": {
  4331. "__type__": "cc.Color",
  4332. "r": 211,
  4333. "g": 211,
  4334. "b": 211,
  4335. "a": 255
  4336. },
  4337. "_N$hoverColor": {
  4338. "__type__": "cc.Color",
  4339. "r": 255,
  4340. "g": 255,
  4341. "b": 255,
  4342. "a": 255
  4343. },
  4344. "hoverColor": {
  4345. "__type__": "cc.Color",
  4346. "r": 255,
  4347. "g": 255,
  4348. "b": 255,
  4349. "a": 255
  4350. },
  4351. "_N$disabledColor": {
  4352. "__type__": "cc.Color",
  4353. "r": 124,
  4354. "g": 124,
  4355. "b": 124,
  4356. "a": 255
  4357. },
  4358. "_N$normalSprite": null,
  4359. "_N$pressedSprite": null,
  4360. "pressedSprite": null,
  4361. "_N$hoverSprite": null,
  4362. "hoverSprite": null,
  4363. "_N$disabledSprite": null,
  4364. "_N$target": {
  4365. "__id__": 109
  4366. },
  4367. "_id": ""
  4368. },
  4369. {
  4370. "__type__": "cc.PrefabInfo",
  4371. "root": {
  4372. "__id__": 1
  4373. },
  4374. "asset": {
  4375. "__id__": 0
  4376. },
  4377. "fileId": "edBzx3oqxJG6VIbFZm72t2",
  4378. "sync": false
  4379. },
  4380. {
  4381. "__type__": "cc.Layout",
  4382. "_name": "",
  4383. "_objFlags": 0,
  4384. "node": {
  4385. "__id__": 108
  4386. },
  4387. "_enabled": true,
  4388. "_layoutSize": {
  4389. "__type__": "cc.Size",
  4390. "width": 116.2,
  4391. "height": 116.2
  4392. },
  4393. "_resize": 1,
  4394. "_N$layoutType": 1,
  4395. "_N$cellSize": {
  4396. "__type__": "cc.Size",
  4397. "width": 40,
  4398. "height": 40
  4399. },
  4400. "_N$startAxis": 0,
  4401. "_N$paddingLeft": 0,
  4402. "_N$paddingRight": 0,
  4403. "_N$paddingTop": 0,
  4404. "_N$paddingBottom": 0,
  4405. "_N$spacingX": 25,
  4406. "_N$spacingY": 0,
  4407. "_N$verticalDirection": 1,
  4408. "_N$horizontalDirection": 0,
  4409. "_N$affectedByScale": false,
  4410. "_id": ""
  4411. },
  4412. {
  4413. "__type__": "cc.PrefabInfo",
  4414. "root": {
  4415. "__id__": 1
  4416. },
  4417. "asset": {
  4418. "__id__": 0
  4419. },
  4420. "fileId": "afpicxyC5BG5zVeLmZ2Xsy",
  4421. "sync": false
  4422. },
  4423. {
  4424. "__type__": "cc.Layout",
  4425. "_name": "",
  4426. "_objFlags": 0,
  4427. "node": {
  4428. "__id__": 107
  4429. },
  4430. "_enabled": true,
  4431. "_layoutSize": {
  4432. "__type__": "cc.Size",
  4433. "width": 166,
  4434. "height": 116.2
  4435. },
  4436. "_resize": 1,
  4437. "_N$layoutType": 2,
  4438. "_N$cellSize": {
  4439. "__type__": "cc.Size",
  4440. "width": 40,
  4441. "height": 40
  4442. },
  4443. "_N$startAxis": 0,
  4444. "_N$paddingLeft": 0,
  4445. "_N$paddingRight": 0,
  4446. "_N$paddingTop": 0,
  4447. "_N$paddingBottom": 0,
  4448. "_N$spacingX": 0,
  4449. "_N$spacingY": 25,
  4450. "_N$verticalDirection": 1,
  4451. "_N$horizontalDirection": 0,
  4452. "_N$affectedByScale": false,
  4453. "_id": ""
  4454. },
  4455. {
  4456. "__type__": "6fe05O3ILdFqo8zVEf4BWs1",
  4457. "_name": "",
  4458. "_objFlags": 0,
  4459. "node": {
  4460. "__id__": 107
  4461. },
  4462. "_enabled": true,
  4463. "rawLay": {
  4464. "__id__": 108
  4465. },
  4466. "maxRaw": 2,
  4467. "maxCol": 2,
  4468. "_id": ""
  4469. },
  4470. {
  4471. "__type__": "cc.PrefabInfo",
  4472. "root": {
  4473. "__id__": 1
  4474. },
  4475. "asset": {
  4476. "__id__": 0
  4477. },
  4478. "fileId": "6537iMiM5NuJBcesnJYIeF",
  4479. "sync": false
  4480. },
  4481. {
  4482. "__type__": "cc.Node",
  4483. "_name": "btn_claim",
  4484. "_objFlags": 0,
  4485. "_parent": {
  4486. "__id__": 99
  4487. },
  4488. "_children": [
  4489. {
  4490. "__id__": 127
  4491. }
  4492. ],
  4493. "_active": false,
  4494. "_components": [
  4495. {
  4496. "__id__": 132
  4497. },
  4498. {
  4499. "__id__": 133
  4500. },
  4501. {
  4502. "__id__": 134
  4503. }
  4504. ],
  4505. "_prefab": {
  4506. "__id__": 136
  4507. },
  4508. "_opacity": 255,
  4509. "_color": {
  4510. "__type__": "cc.Color",
  4511. "r": 255,
  4512. "g": 255,
  4513. "b": 255,
  4514. "a": 255
  4515. },
  4516. "_contentSize": {
  4517. "__type__": "cc.Size",
  4518. "width": 318,
  4519. "height": 129
  4520. },
  4521. "_anchorPoint": {
  4522. "__type__": "cc.Vec2",
  4523. "x": 0.5,
  4524. "y": 0.5
  4525. },
  4526. "_trs": {
  4527. "__type__": "TypedArray",
  4528. "ctor": "Float64Array",
  4529. "array": [
  4530. 0,
  4531. -155,
  4532. 0,
  4533. 0,
  4534. 0,
  4535. 0,
  4536. 1,
  4537. 0.8,
  4538. 0.8,
  4539. 0
  4540. ]
  4541. },
  4542. "_eulerAngles": {
  4543. "__type__": "cc.Vec3",
  4544. "x": 0,
  4545. "y": 0,
  4546. "z": 0
  4547. },
  4548. "_skewX": 0,
  4549. "_skewY": 0,
  4550. "_is3DNode": false,
  4551. "_groupIndex": 0,
  4552. "groupIndex": 0,
  4553. "_id": ""
  4554. },
  4555. {
  4556. "__type__": "cc.Node",
  4557. "_name": "lb",
  4558. "_objFlags": 0,
  4559. "_parent": {
  4560. "__id__": 126
  4561. },
  4562. "_children": [],
  4563. "_active": true,
  4564. "_components": [
  4565. {
  4566. "__id__": 128
  4567. },
  4568. {
  4569. "__id__": 129
  4570. },
  4571. {
  4572. "__id__": 130
  4573. }
  4574. ],
  4575. "_prefab": {
  4576. "__id__": 131
  4577. },
  4578. "_opacity": 255,
  4579. "_color": {
  4580. "__type__": "cc.Color",
  4581. "r": 29,
  4582. "g": 37,
  4583. "b": 7,
  4584. "a": 255
  4585. },
  4586. "_contentSize": {
  4587. "__type__": "cc.Size",
  4588. "width": 128.5,
  4589. "height": 73
  4590. },
  4591. "_anchorPoint": {
  4592. "__type__": "cc.Vec2",
  4593. "x": 0.5,
  4594. "y": 0.5
  4595. },
  4596. "_trs": {
  4597. "__type__": "TypedArray",
  4598. "ctor": "Float64Array",
  4599. "array": [
  4600. 0,
  4601. 0,
  4602. 0,
  4603. 0,
  4604. 0,
  4605. 0,
  4606. 1,
  4607. 1.2,
  4608. 1.2,
  4609. 1
  4610. ]
  4611. },
  4612. "_eulerAngles": {
  4613. "__type__": "cc.Vec3",
  4614. "x": 0,
  4615. "y": 0,
  4616. "z": 0
  4617. },
  4618. "_skewX": 0,
  4619. "_skewY": 0,
  4620. "_is3DNode": false,
  4621. "_groupIndex": 0,
  4622. "groupIndex": 0,
  4623. "_id": ""
  4624. },
  4625. {
  4626. "__type__": "cc.Label",
  4627. "_name": "",
  4628. "_objFlags": 0,
  4629. "node": {
  4630. "__id__": 127
  4631. },
  4632. "_enabled": true,
  4633. "_materials": [
  4634. {
  4635. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4636. }
  4637. ],
  4638. "_srcBlendFactor": 770,
  4639. "_dstBlendFactor": 771,
  4640. "_string": "Claim",
  4641. "_N$string": "Claim",
  4642. "_fontSize": 52,
  4643. "_lineHeight": 50,
  4644. "_enableWrapText": true,
  4645. "_N$file": {
  4646. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  4647. },
  4648. "_isSystemFontUsed": false,
  4649. "_spacingX": 0,
  4650. "_batchAsBitmap": false,
  4651. "_styleFlags": 0,
  4652. "_underlineHeight": 0,
  4653. "_N$horizontalAlign": 1,
  4654. "_N$verticalAlign": 1,
  4655. "_N$fontFamily": "Arial",
  4656. "_N$overflow": 0,
  4657. "_N$cacheMode": 0,
  4658. "_id": ""
  4659. },
  4660. {
  4661. "__type__": "cc.LabelOutline",
  4662. "_name": "",
  4663. "_objFlags": 0,
  4664. "node": {
  4665. "__id__": 127
  4666. },
  4667. "_enabled": true,
  4668. "_color": {
  4669. "__type__": "cc.Color",
  4670. "r": 190,
  4671. "g": 213,
  4672. "b": 4,
  4673. "a": 255
  4674. },
  4675. "_width": 5,
  4676. "_id": ""
  4677. },
  4678. {
  4679. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  4680. "_name": "",
  4681. "_objFlags": 0,
  4682. "node": {
  4683. "__id__": 127
  4684. },
  4685. "_enabled": true,
  4686. "_englishCase": 1,
  4687. "i18n_string": "t15",
  4688. "i18n_params": [],
  4689. "_addColon": false,
  4690. "_id": ""
  4691. },
  4692. {
  4693. "__type__": "cc.PrefabInfo",
  4694. "root": {
  4695. "__id__": 126
  4696. },
  4697. "asset": {
  4698. "__uuid__": "1d0c5047-03dd-40b0-ab83-09536f4a8565"
  4699. },
  4700. "fileId": "0257Bkg0NEyKj9p2eHdWI8",
  4701. "sync": false
  4702. },
  4703. {
  4704. "__type__": "cc.Sprite",
  4705. "_name": "",
  4706. "_objFlags": 0,
  4707. "node": {
  4708. "__id__": 126
  4709. },
  4710. "_enabled": true,
  4711. "_materials": [
  4712. {
  4713. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4714. }
  4715. ],
  4716. "_srcBlendFactor": 770,
  4717. "_dstBlendFactor": 771,
  4718. "_spriteFrame": {
  4719. "__uuid__": "79ade49c-941d-4e47-a06a-8c8504fa6f4a"
  4720. },
  4721. "_type": 0,
  4722. "_sizeMode": 1,
  4723. "_fillType": 0,
  4724. "_fillCenter": {
  4725. "__type__": "cc.Vec2",
  4726. "x": 0,
  4727. "y": 0
  4728. },
  4729. "_fillStart": 0,
  4730. "_fillRange": 0,
  4731. "_isTrimmedMode": true,
  4732. "_atlas": null,
  4733. "_id": ""
  4734. },
  4735. {
  4736. "__type__": "466e8BS6wJF6bKBj6rcxcSE",
  4737. "_name": "",
  4738. "_objFlags": 0,
  4739. "node": {
  4740. "__id__": 126
  4741. },
  4742. "_enabled": true,
  4743. "openContinuous": true,
  4744. "continuousTime": 0.2,
  4745. "multiTouch": false,
  4746. "_id": ""
  4747. },
  4748. {
  4749. "__type__": "61994AafntNFIbmt1zoyLq+",
  4750. "_name": "",
  4751. "_objFlags": 0,
  4752. "node": {
  4753. "__id__": 126
  4754. },
  4755. "_enabled": true,
  4756. "_normalMaterial": null,
  4757. "_grayMaterial": null,
  4758. "duration": 0.1,
  4759. "zoomScale": 1.2,
  4760. "clickEvents": [
  4761. {
  4762. "__id__": 135
  4763. }
  4764. ],
  4765. "_N$interactable": true,
  4766. "_N$enableAutoGrayEffect": false,
  4767. "_N$transition": 3,
  4768. "transition": 3,
  4769. "_N$normalColor": {
  4770. "__type__": "cc.Color",
  4771. "r": 255,
  4772. "g": 255,
  4773. "b": 255,
  4774. "a": 255
  4775. },
  4776. "_N$pressedColor": {
  4777. "__type__": "cc.Color",
  4778. "r": 211,
  4779. "g": 211,
  4780. "b": 211,
  4781. "a": 255
  4782. },
  4783. "pressedColor": {
  4784. "__type__": "cc.Color",
  4785. "r": 211,
  4786. "g": 211,
  4787. "b": 211,
  4788. "a": 255
  4789. },
  4790. "_N$hoverColor": {
  4791. "__type__": "cc.Color",
  4792. "r": 255,
  4793. "g": 255,
  4794. "b": 255,
  4795. "a": 255
  4796. },
  4797. "hoverColor": {
  4798. "__type__": "cc.Color",
  4799. "r": 255,
  4800. "g": 255,
  4801. "b": 255,
  4802. "a": 255
  4803. },
  4804. "_N$disabledColor": {
  4805. "__type__": "cc.Color",
  4806. "r": 124,
  4807. "g": 124,
  4808. "b": 124,
  4809. "a": 255
  4810. },
  4811. "_N$normalSprite": null,
  4812. "_N$pressedSprite": null,
  4813. "pressedSprite": null,
  4814. "_N$hoverSprite": null,
  4815. "hoverSprite": null,
  4816. "_N$disabledSprite": null,
  4817. "_N$target": null,
  4818. "_id": ""
  4819. },
  4820. {
  4821. "__type__": "cc.ClickEvent",
  4822. "target": {
  4823. "__id__": 1
  4824. },
  4825. "component": "",
  4826. "_componentId": "50212zWjTZBW5V20BLdVCdO",
  4827. "handler": "onClickClaimRewards",
  4828. "customEventData": ""
  4829. },
  4830. {
  4831. "__type__": "cc.PrefabInfo",
  4832. "root": {
  4833. "__id__": 126
  4834. },
  4835. "asset": {
  4836. "__uuid__": "1d0c5047-03dd-40b0-ab83-09536f4a8565"
  4837. },
  4838. "fileId": "39bpJOmHxEiYSxVDgm4qyA",
  4839. "sync": false
  4840. },
  4841. {
  4842. "__type__": "cc.Node",
  4843. "_name": "effect",
  4844. "_objFlags": 0,
  4845. "_parent": {
  4846. "__id__": 99
  4847. },
  4848. "_children": [],
  4849. "_active": false,
  4850. "_components": [
  4851. {
  4852. "__id__": 138
  4853. }
  4854. ],
  4855. "_prefab": {
  4856. "__id__": 139
  4857. },
  4858. "_opacity": 255,
  4859. "_color": {
  4860. "__type__": "cc.Color",
  4861. "r": 255,
  4862. "g": 255,
  4863. "b": 255,
  4864. "a": 255
  4865. },
  4866. "_contentSize": {
  4867. "__type__": "cc.Size",
  4868. "width": 365,
  4869. "height": 460
  4870. },
  4871. "_anchorPoint": {
  4872. "__type__": "cc.Vec2",
  4873. "x": 0.5,
  4874. "y": 0.5
  4875. },
  4876. "_trs": {
  4877. "__type__": "TypedArray",
  4878. "ctor": "Float64Array",
  4879. "array": [
  4880. 0,
  4881. 0,
  4882. 0,
  4883. 0,
  4884. 0,
  4885. 0,
  4886. 1,
  4887. 1,
  4888. 1,
  4889. 1
  4890. ]
  4891. },
  4892. "_eulerAngles": {
  4893. "__type__": "cc.Vec3",
  4894. "x": 0,
  4895. "y": 0,
  4896. "z": 0
  4897. },
  4898. "_skewX": 0,
  4899. "_skewY": 0,
  4900. "_is3DNode": false,
  4901. "_groupIndex": 0,
  4902. "groupIndex": 0,
  4903. "_id": ""
  4904. },
  4905. {
  4906. "__type__": "cc.Sprite",
  4907. "_name": "",
  4908. "_objFlags": 0,
  4909. "node": {
  4910. "__id__": 137
  4911. },
  4912. "_enabled": true,
  4913. "_materials": [
  4914. {
  4915. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4916. }
  4917. ],
  4918. "_srcBlendFactor": 770,
  4919. "_dstBlendFactor": 771,
  4920. "_spriteFrame": {
  4921. "__uuid__": "a8fb128c-38bf-454b-af8e-a91e2666c148"
  4922. },
  4923. "_type": 1,
  4924. "_sizeMode": 0,
  4925. "_fillType": 0,
  4926. "_fillCenter": {
  4927. "__type__": "cc.Vec2",
  4928. "x": 0,
  4929. "y": 0
  4930. },
  4931. "_fillStart": 0,
  4932. "_fillRange": 0,
  4933. "_isTrimmedMode": true,
  4934. "_atlas": null,
  4935. "_id": ""
  4936. },
  4937. {
  4938. "__type__": "cc.PrefabInfo",
  4939. "root": {
  4940. "__id__": 1
  4941. },
  4942. "asset": {
  4943. "__id__": 0
  4944. },
  4945. "fileId": "b5Xf0Gn1hEF65qqFhOjqzk",
  4946. "sync": false
  4947. },
  4948. {
  4949. "__type__": "cc.Sprite",
  4950. "_name": "",
  4951. "_objFlags": 0,
  4952. "node": {
  4953. "__id__": 99
  4954. },
  4955. "_enabled": true,
  4956. "_materials": [
  4957. {
  4958. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4959. }
  4960. ],
  4961. "_srcBlendFactor": 770,
  4962. "_dstBlendFactor": 771,
  4963. "_spriteFrame": {
  4964. "__uuid__": "22e6603d-2964-4935-aaa1-e80dc40e7896"
  4965. },
  4966. "_type": 0,
  4967. "_sizeMode": 0,
  4968. "_fillType": 0,
  4969. "_fillCenter": {
  4970. "__type__": "cc.Vec2",
  4971. "x": 0,
  4972. "y": 0
  4973. },
  4974. "_fillStart": 0,
  4975. "_fillRange": 0,
  4976. "_isTrimmedMode": true,
  4977. "_atlas": null,
  4978. "_id": ""
  4979. },
  4980. {
  4981. "__type__": "cc.PrefabInfo",
  4982. "root": {
  4983. "__id__": 1
  4984. },
  4985. "asset": {
  4986. "__id__": 0
  4987. },
  4988. "fileId": "e7AOATWrZJTr9r+tbgw+jm",
  4989. "sync": false
  4990. },
  4991. {
  4992. "__type__": "cc.Layout",
  4993. "_name": "",
  4994. "_objFlags": 0,
  4995. "node": {
  4996. "__id__": 98
  4997. },
  4998. "_enabled": true,
  4999. "_layoutSize": {
  5000. "__type__": "cc.Size",
  5001. "width": 1800,
  5002. "height": 500
  5003. },
  5004. "_resize": 0,
  5005. "_N$layoutType": 1,
  5006. "_N$cellSize": {
  5007. "__type__": "cc.Size",
  5008. "width": 40,
  5009. "height": 40
  5010. },
  5011. "_N$startAxis": 0,
  5012. "_N$paddingLeft": 21,
  5013. "_N$paddingRight": 0,
  5014. "_N$paddingTop": 0,
  5015. "_N$paddingBottom": 0,
  5016. "_N$spacingX": 13,
  5017. "_N$spacingY": 0,
  5018. "_N$verticalDirection": 1,
  5019. "_N$horizontalDirection": 0,
  5020. "_N$affectedByScale": false,
  5021. "_id": ""
  5022. },
  5023. {
  5024. "__type__": "cc.PrefabInfo",
  5025. "root": {
  5026. "__id__": 1
  5027. },
  5028. "asset": {
  5029. "__id__": 0
  5030. },
  5031. "fileId": "aeV/qx+DdARq8HSfgy+Pdj",
  5032. "sync": false
  5033. },
  5034. {
  5035. "__type__": "cc.Mask",
  5036. "_name": "",
  5037. "_objFlags": 0,
  5038. "node": {
  5039. "__id__": 97
  5040. },
  5041. "_enabled": true,
  5042. "_materials": [
  5043. {
  5044. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5045. }
  5046. ],
  5047. "_spriteFrame": null,
  5048. "_type": 0,
  5049. "_segments": 64,
  5050. "_N$alphaThreshold": 0.1,
  5051. "_N$inverted": false,
  5052. "_id": ""
  5053. },
  5054. {
  5055. "__type__": "cc.PrefabInfo",
  5056. "root": {
  5057. "__id__": 1
  5058. },
  5059. "asset": {
  5060. "__id__": 0
  5061. },
  5062. "fileId": "b43bG1BcxEE5lLrS28xm0/",
  5063. "sync": false
  5064. },
  5065. {
  5066. "__type__": "cc.ScrollView",
  5067. "_name": "",
  5068. "_objFlags": 0,
  5069. "node": {
  5070. "__id__": 96
  5071. },
  5072. "_enabled": true,
  5073. "horizontal": true,
  5074. "vertical": false,
  5075. "inertia": true,
  5076. "brake": 0.5,
  5077. "elastic": true,
  5078. "bounceDuration": 1,
  5079. "scrollEvents": [],
  5080. "cancelInnerEvents": true,
  5081. "_N$content": {
  5082. "__id__": 98
  5083. },
  5084. "content": {
  5085. "__id__": 98
  5086. },
  5087. "_id": ""
  5088. },
  5089. {
  5090. "__type__": "c8b0avBBlRLLLMX0ufI4l6A",
  5091. "_name": "",
  5092. "_objFlags": 0,
  5093. "node": {
  5094. "__id__": 96
  5095. },
  5096. "_enabled": true,
  5097. "templateType": 1,
  5098. "tmpNode": {
  5099. "__id__": 99
  5100. },
  5101. "tmpPrefab": null,
  5102. "_slideMode": 1,
  5103. "pageDistance": 0.3,
  5104. "pageChangeEvent": {
  5105. "__id__": 148
  5106. },
  5107. "_virtual": true,
  5108. "cyclic": false,
  5109. "lackCenter": false,
  5110. "lackSlide": false,
  5111. "_updateRate": 0,
  5112. "frameByFrameRenderNum": 0,
  5113. "renderEvent": {
  5114. "__id__": 149
  5115. },
  5116. "selectedMode": 0,
  5117. "repeatEventSingle": false,
  5118. "selectedEvent": null,
  5119. "_id": ""
  5120. },
  5121. {
  5122. "__type__": "cc.ClickEvent",
  5123. "target": null,
  5124. "component": "",
  5125. "_componentId": "",
  5126. "handler": "",
  5127. "customEventData": ""
  5128. },
  5129. {
  5130. "__type__": "cc.ClickEvent",
  5131. "target": {
  5132. "__id__": 1
  5133. },
  5134. "component": "",
  5135. "_componentId": "50212zWjTZBW5V20BLdVCdO",
  5136. "handler": "initContinuousItem",
  5137. "customEventData": ""
  5138. },
  5139. {
  5140. "__type__": "cc.PrefabInfo",
  5141. "root": {
  5142. "__id__": 1
  5143. },
  5144. "asset": {
  5145. "__id__": 0
  5146. },
  5147. "fileId": "4fixKpSxJCDqSGi82kl0ij",
  5148. "sync": false
  5149. },
  5150. {
  5151. "__type__": "cc.PrefabInfo",
  5152. "root": {
  5153. "__id__": 1
  5154. },
  5155. "asset": {
  5156. "__id__": 0
  5157. },
  5158. "fileId": "8fAqyn0BxAO5Rf66l7dE8Z",
  5159. "sync": false
  5160. },
  5161. {
  5162. "__type__": "cc.Node",
  5163. "_name": "title_gourp",
  5164. "_objFlags": 0,
  5165. "_parent": {
  5166. "__id__": 1
  5167. },
  5168. "_children": [
  5169. {
  5170. "__id__": 153
  5171. }
  5172. ],
  5173. "_active": true,
  5174. "_components": [
  5175. {
  5176. "__id__": 167
  5177. }
  5178. ],
  5179. "_prefab": {
  5180. "__id__": 168
  5181. },
  5182. "_opacity": 255,
  5183. "_color": {
  5184. "__type__": "cc.Color",
  5185. "r": 255,
  5186. "g": 255,
  5187. "b": 255,
  5188. "a": 255
  5189. },
  5190. "_contentSize": {
  5191. "__type__": "cc.Size",
  5192. "width": 300,
  5193. "height": 200
  5194. },
  5195. "_anchorPoint": {
  5196. "__type__": "cc.Vec2",
  5197. "x": 0,
  5198. "y": 0.5
  5199. },
  5200. "_trs": {
  5201. "__type__": "TypedArray",
  5202. "ctor": "Float64Array",
  5203. "array": [
  5204. -909.954,
  5205. -434,
  5206. 0,
  5207. 0,
  5208. 0,
  5209. 0,
  5210. 1,
  5211. 1,
  5212. 1,
  5213. 1
  5214. ]
  5215. },
  5216. "_eulerAngles": {
  5217. "__type__": "cc.Vec3",
  5218. "x": 0,
  5219. "y": 0,
  5220. "z": 0
  5221. },
  5222. "_skewX": 0,
  5223. "_skewY": 0,
  5224. "_is3DNode": false,
  5225. "_groupIndex": 0,
  5226. "groupIndex": 0,
  5227. "_id": ""
  5228. },
  5229. {
  5230. "__type__": "cc.Node",
  5231. "_name": "btn_title",
  5232. "_objFlags": 0,
  5233. "_parent": {
  5234. "__id__": 152
  5235. },
  5236. "_children": [
  5237. {
  5238. "__id__": 154
  5239. },
  5240. {
  5241. "__id__": 157
  5242. }
  5243. ],
  5244. "_active": true,
  5245. "_components": [
  5246. {
  5247. "__id__": 162
  5248. },
  5249. {
  5250. "__id__": 163
  5251. },
  5252. {
  5253. "__id__": 164
  5254. }
  5255. ],
  5256. "_prefab": {
  5257. "__id__": 166
  5258. },
  5259. "_opacity": 255,
  5260. "_color": {
  5261. "__type__": "cc.Color",
  5262. "r": 255,
  5263. "g": 255,
  5264. "b": 255,
  5265. "a": 255
  5266. },
  5267. "_contentSize": {
  5268. "__type__": "cc.Size",
  5269. "width": 300,
  5270. "height": 127
  5271. },
  5272. "_anchorPoint": {
  5273. "__type__": "cc.Vec2",
  5274. "x": 0.5,
  5275. "y": 0.5
  5276. },
  5277. "_trs": {
  5278. "__type__": "TypedArray",
  5279. "ctor": "Float64Array",
  5280. "array": [
  5281. 150,
  5282. -8,
  5283. 0,
  5284. 0,
  5285. 0,
  5286. 0,
  5287. 1,
  5288. 1,
  5289. 1,
  5290. 1
  5291. ]
  5292. },
  5293. "_eulerAngles": {
  5294. "__type__": "cc.Vec3",
  5295. "x": 0,
  5296. "y": 0,
  5297. "z": 0
  5298. },
  5299. "_skewX": 0,
  5300. "_skewY": 0,
  5301. "_is3DNode": false,
  5302. "_groupIndex": 0,
  5303. "groupIndex": 0,
  5304. "_id": ""
  5305. },
  5306. {
  5307. "__type__": "cc.Node",
  5308. "_name": "select",
  5309. "_objFlags": 0,
  5310. "_parent": {
  5311. "__id__": 153
  5312. },
  5313. "_children": [],
  5314. "_active": true,
  5315. "_components": [
  5316. {
  5317. "__id__": 155
  5318. }
  5319. ],
  5320. "_prefab": {
  5321. "__id__": 156
  5322. },
  5323. "_opacity": 255,
  5324. "_color": {
  5325. "__type__": "cc.Color",
  5326. "r": 255,
  5327. "g": 255,
  5328. "b": 255,
  5329. "a": 255
  5330. },
  5331. "_contentSize": {
  5332. "__type__": "cc.Size",
  5333. "width": 300,
  5334. "height": 168
  5335. },
  5336. "_anchorPoint": {
  5337. "__type__": "cc.Vec2",
  5338. "x": 0.5,
  5339. "y": 0.5
  5340. },
  5341. "_trs": {
  5342. "__type__": "TypedArray",
  5343. "ctor": "Float64Array",
  5344. "array": [
  5345. 0,
  5346. 0,
  5347. 0,
  5348. 0,
  5349. 0,
  5350. 0,
  5351. 1,
  5352. 1,
  5353. 1,
  5354. 1
  5355. ]
  5356. },
  5357. "_eulerAngles": {
  5358. "__type__": "cc.Vec3",
  5359. "x": 0,
  5360. "y": 0,
  5361. "z": 0
  5362. },
  5363. "_skewX": 0,
  5364. "_skewY": 0,
  5365. "_is3DNode": false,
  5366. "_groupIndex": 0,
  5367. "groupIndex": 0,
  5368. "_id": ""
  5369. },
  5370. {
  5371. "__type__": "cc.Sprite",
  5372. "_name": "",
  5373. "_objFlags": 0,
  5374. "node": {
  5375. "__id__": 154
  5376. },
  5377. "_enabled": true,
  5378. "_materials": [
  5379. {
  5380. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5381. }
  5382. ],
  5383. "_srcBlendFactor": 770,
  5384. "_dstBlendFactor": 771,
  5385. "_spriteFrame": {
  5386. "__uuid__": "25e54a90-3bde-4b40-818a-4426ffd041d9"
  5387. },
  5388. "_type": 0,
  5389. "_sizeMode": 0,
  5390. "_fillType": 0,
  5391. "_fillCenter": {
  5392. "__type__": "cc.Vec2",
  5393. "x": 0,
  5394. "y": 0
  5395. },
  5396. "_fillStart": 0,
  5397. "_fillRange": 0,
  5398. "_isTrimmedMode": true,
  5399. "_atlas": null,
  5400. "_id": ""
  5401. },
  5402. {
  5403. "__type__": "cc.PrefabInfo",
  5404. "root": {
  5405. "__id__": 1
  5406. },
  5407. "asset": {
  5408. "__id__": 0
  5409. },
  5410. "fileId": "f91NVV5c9ED6r0RQEuwz/D",
  5411. "sync": false
  5412. },
  5413. {
  5414. "__type__": "cc.Node",
  5415. "_name": "lb",
  5416. "_objFlags": 0,
  5417. "_parent": {
  5418. "__id__": 153
  5419. },
  5420. "_children": [],
  5421. "_active": true,
  5422. "_components": [
  5423. {
  5424. "__id__": 158
  5425. },
  5426. {
  5427. "__id__": 159
  5428. },
  5429. {
  5430. "__id__": 160
  5431. }
  5432. ],
  5433. "_prefab": {
  5434. "__id__": 161
  5435. },
  5436. "_opacity": 255,
  5437. "_color": {
  5438. "__type__": "cc.Color",
  5439. "r": 255,
  5440. "g": 222,
  5441. "b": 0,
  5442. "a": 255
  5443. },
  5444. "_contentSize": {
  5445. "__type__": "cc.Size",
  5446. "width": 190.85,
  5447. "height": 95.88
  5448. },
  5449. "_anchorPoint": {
  5450. "__type__": "cc.Vec2",
  5451. "x": 0.5,
  5452. "y": 0.5
  5453. },
  5454. "_trs": {
  5455. "__type__": "TypedArray",
  5456. "ctor": "Float64Array",
  5457. "array": [
  5458. 0,
  5459. 20.213,
  5460. 0,
  5461. 0,
  5462. 0,
  5463. 0,
  5464. 1,
  5465. 1,
  5466. 1,
  5467. 1
  5468. ]
  5469. },
  5470. "_eulerAngles": {
  5471. "__type__": "cc.Vec3",
  5472. "x": 0,
  5473. "y": 0,
  5474. "z": 0
  5475. },
  5476. "_skewX": 0,
  5477. "_skewY": 0,
  5478. "_is3DNode": false,
  5479. "_groupIndex": 0,
  5480. "groupIndex": 0,
  5481. "_id": ""
  5482. },
  5483. {
  5484. "__type__": "cc.Label",
  5485. "_name": "",
  5486. "_objFlags": 0,
  5487. "node": {
  5488. "__id__": 157
  5489. },
  5490. "_enabled": true,
  5491. "_materials": [
  5492. {
  5493. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5494. }
  5495. ],
  5496. "_srcBlendFactor": 770,
  5497. "_dstBlendFactor": 771,
  5498. "_string": "Continuous\nrecharge",
  5499. "_N$string": "Continuous\nrecharge",
  5500. "_fontSize": 38,
  5501. "_lineHeight": 38,
  5502. "_enableWrapText": true,
  5503. "_N$file": {
  5504. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  5505. },
  5506. "_isSystemFontUsed": false,
  5507. "_spacingX": 0,
  5508. "_batchAsBitmap": false,
  5509. "_styleFlags": 0,
  5510. "_underlineHeight": 0,
  5511. "_N$horizontalAlign": 1,
  5512. "_N$verticalAlign": 1,
  5513. "_N$fontFamily": "Arial",
  5514. "_N$overflow": 0,
  5515. "_N$cacheMode": 0,
  5516. "_id": ""
  5517. },
  5518. {
  5519. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  5520. "_name": "",
  5521. "_objFlags": 0,
  5522. "node": {
  5523. "__id__": 157
  5524. },
  5525. "_enabled": true,
  5526. "_englishCase": 1,
  5527. "i18n_string": "t505",
  5528. "i18n_params": [
  5529. "30"
  5530. ],
  5531. "_addColon": false,
  5532. "_id": ""
  5533. },
  5534. {
  5535. "__type__": "cc.LabelOutline",
  5536. "_name": "",
  5537. "_objFlags": 0,
  5538. "node": {
  5539. "__id__": 157
  5540. },
  5541. "_enabled": true,
  5542. "_color": {
  5543. "__type__": "cc.Color",
  5544. "r": 38,
  5545. "g": 17,
  5546. "b": 12,
  5547. "a": 255
  5548. },
  5549. "_width": 5,
  5550. "_id": ""
  5551. },
  5552. {
  5553. "__type__": "cc.PrefabInfo",
  5554. "root": {
  5555. "__id__": 1
  5556. },
  5557. "asset": {
  5558. "__id__": 0
  5559. },
  5560. "fileId": "190S4iiKtPKpmKittQGUnX",
  5561. "sync": false
  5562. },
  5563. {
  5564. "__type__": "cc.Sprite",
  5565. "_name": "",
  5566. "_objFlags": 0,
  5567. "node": {
  5568. "__id__": 153
  5569. },
  5570. "_enabled": true,
  5571. "_materials": [
  5572. {
  5573. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5574. }
  5575. ],
  5576. "_srcBlendFactor": 770,
  5577. "_dstBlendFactor": 771,
  5578. "_spriteFrame": {
  5579. "__uuid__": "516f518e-29e5-43f9-aaf0-5649b4868b33"
  5580. },
  5581. "_type": 0,
  5582. "_sizeMode": 0,
  5583. "_fillType": 0,
  5584. "_fillCenter": {
  5585. "__type__": "cc.Vec2",
  5586. "x": 0,
  5587. "y": 0
  5588. },
  5589. "_fillStart": 0,
  5590. "_fillRange": 0,
  5591. "_isTrimmedMode": true,
  5592. "_atlas": null,
  5593. "_id": ""
  5594. },
  5595. {
  5596. "__type__": "466e8BS6wJF6bKBj6rcxcSE",
  5597. "_name": "",
  5598. "_objFlags": 0,
  5599. "node": {
  5600. "__id__": 153
  5601. },
  5602. "_enabled": true,
  5603. "openContinuous": true,
  5604. "continuousTime": 0.2,
  5605. "multiTouch": false,
  5606. "_id": ""
  5607. },
  5608. {
  5609. "__type__": "61994AafntNFIbmt1zoyLq+",
  5610. "_name": "",
  5611. "_objFlags": 0,
  5612. "node": {
  5613. "__id__": 153
  5614. },
  5615. "_enabled": true,
  5616. "_normalMaterial": null,
  5617. "_grayMaterial": null,
  5618. "duration": 0.1,
  5619. "zoomScale": 1.2,
  5620. "clickEvents": [
  5621. {
  5622. "__id__": 165
  5623. }
  5624. ],
  5625. "_N$interactable": true,
  5626. "_N$enableAutoGrayEffect": false,
  5627. "_N$transition": 0,
  5628. "transition": 0,
  5629. "_N$normalColor": {
  5630. "__type__": "cc.Color",
  5631. "r": 255,
  5632. "g": 255,
  5633. "b": 255,
  5634. "a": 255
  5635. },
  5636. "_N$pressedColor": {
  5637. "__type__": "cc.Color",
  5638. "r": 211,
  5639. "g": 211,
  5640. "b": 211,
  5641. "a": 255
  5642. },
  5643. "pressedColor": {
  5644. "__type__": "cc.Color",
  5645. "r": 211,
  5646. "g": 211,
  5647. "b": 211,
  5648. "a": 255
  5649. },
  5650. "_N$hoverColor": {
  5651. "__type__": "cc.Color",
  5652. "r": 255,
  5653. "g": 255,
  5654. "b": 255,
  5655. "a": 255
  5656. },
  5657. "hoverColor": {
  5658. "__type__": "cc.Color",
  5659. "r": 255,
  5660. "g": 255,
  5661. "b": 255,
  5662. "a": 255
  5663. },
  5664. "_N$disabledColor": {
  5665. "__type__": "cc.Color",
  5666. "r": 124,
  5667. "g": 124,
  5668. "b": 124,
  5669. "a": 255
  5670. },
  5671. "_N$normalSprite": null,
  5672. "_N$pressedSprite": null,
  5673. "pressedSprite": null,
  5674. "_N$hoverSprite": null,
  5675. "hoverSprite": null,
  5676. "_N$disabledSprite": null,
  5677. "_N$target": null,
  5678. "_id": ""
  5679. },
  5680. {
  5681. "__type__": "cc.ClickEvent",
  5682. "target": null,
  5683. "component": "",
  5684. "_componentId": "",
  5685. "handler": "",
  5686. "customEventData": ""
  5687. },
  5688. {
  5689. "__type__": "cc.PrefabInfo",
  5690. "root": {
  5691. "__id__": 1
  5692. },
  5693. "asset": {
  5694. "__id__": 0
  5695. },
  5696. "fileId": "29cN8u9rBFj490bgveS9/D",
  5697. "sync": false
  5698. },
  5699. {
  5700. "__type__": "cc.Layout",
  5701. "_name": "",
  5702. "_objFlags": 0,
  5703. "node": {
  5704. "__id__": 152
  5705. },
  5706. "_enabled": true,
  5707. "_layoutSize": {
  5708. "__type__": "cc.Size",
  5709. "width": 300,
  5710. "height": 200
  5711. },
  5712. "_resize": 1,
  5713. "_N$layoutType": 1,
  5714. "_N$cellSize": {
  5715. "__type__": "cc.Size",
  5716. "width": 40,
  5717. "height": 40
  5718. },
  5719. "_N$startAxis": 0,
  5720. "_N$paddingLeft": 0,
  5721. "_N$paddingRight": 0,
  5722. "_N$paddingTop": 0,
  5723. "_N$paddingBottom": 0,
  5724. "_N$spacingX": 5,
  5725. "_N$spacingY": 0,
  5726. "_N$verticalDirection": 1,
  5727. "_N$horizontalDirection": 0,
  5728. "_N$affectedByScale": false,
  5729. "_id": ""
  5730. },
  5731. {
  5732. "__type__": "cc.PrefabInfo",
  5733. "root": {
  5734. "__id__": 1
  5735. },
  5736. "asset": {
  5737. "__id__": 0
  5738. },
  5739. "fileId": "c3OxY105tIEqndpjDu4mmn",
  5740. "sync": false
  5741. },
  5742. {
  5743. "__type__": "50212zWjTZBW5V20BLdVCdO",
  5744. "_name": "",
  5745. "_objFlags": 0,
  5746. "node": {
  5747. "__id__": 1
  5748. },
  5749. "_enabled": true,
  5750. "quickClose": false,
  5751. "cache": false,
  5752. "showType": 0,
  5753. "prevent": true,
  5754. "_id": ""
  5755. },
  5756. {
  5757. "__type__": "cc.PrefabInfo",
  5758. "root": {
  5759. "__id__": 1
  5760. },
  5761. "asset": {
  5762. "__id__": 0
  5763. },
  5764. "fileId": "",
  5765. "sync": false
  5766. }
  5767. ]