SettingUI.prefab 176 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227
  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": "SettingUI",
  17. "_objFlags": 0,
  18. "_parent": null,
  19. "_children": [
  20. {
  21. "__id__": 2
  22. },
  23. {
  24. "__id__": 7
  25. },
  26. {
  27. "__id__": 15
  28. },
  29. {
  30. "__id__": 18
  31. },
  32. {
  33. "__id__": 59
  34. },
  35. {
  36. "__id__": 100
  37. },
  38. {
  39. "__id__": 169
  40. },
  41. {
  42. "__id__": 186
  43. },
  44. {
  45. "__id__": 192
  46. },
  47. {
  48. "__id__": 197
  49. },
  50. {
  51. "__id__": 251
  52. }
  53. ],
  54. "_active": true,
  55. "_components": [
  56. {
  57. "__id__": 302
  58. }
  59. ],
  60. "_prefab": {
  61. "__id__": 303
  62. },
  63. "_opacity": 255,
  64. "_color": {
  65. "__type__": "cc.Color",
  66. "r": 255,
  67. "g": 255,
  68. "b": 255,
  69. "a": 255
  70. },
  71. "_contentSize": {
  72. "__type__": "cc.Size",
  73. "width": 0,
  74. "height": 0
  75. },
  76. "_anchorPoint": {
  77. "__type__": "cc.Vec2",
  78. "x": 0.5,
  79. "y": 0.5
  80. },
  81. "_trs": {
  82. "__type__": "TypedArray",
  83. "ctor": "Float64Array",
  84. "array": [
  85. 0,
  86. 0,
  87. 0,
  88. 0,
  89. 0,
  90. 0,
  91. 1,
  92. 1,
  93. 1,
  94. 1
  95. ]
  96. },
  97. "_eulerAngles": {
  98. "__type__": "cc.Vec3",
  99. "x": 0,
  100. "y": 0,
  101. "z": 0
  102. },
  103. "_skewX": 0,
  104. "_skewY": 0,
  105. "_is3DNode": false,
  106. "_groupIndex": 0,
  107. "groupIndex": 0,
  108. "_id": ""
  109. },
  110. {
  111. "__type__": "cc.Node",
  112. "_name": "mask",
  113. "_objFlags": 0,
  114. "_parent": {
  115. "__id__": 1
  116. },
  117. "_children": [],
  118. "_active": true,
  119. "_components": [
  120. {
  121. "__id__": 3
  122. },
  123. {
  124. "__id__": 4
  125. },
  126. {
  127. "__id__": 5
  128. }
  129. ],
  130. "_prefab": {
  131. "__id__": 6
  132. },
  133. "_opacity": 204,
  134. "_color": {
  135. "__type__": "cc.Color",
  136. "r": 0,
  137. "g": 0,
  138. "b": 0,
  139. "a": 255
  140. },
  141. "_contentSize": {
  142. "__type__": "cc.Size",
  143. "width": 2400,
  144. "height": 1080
  145. },
  146. "_anchorPoint": {
  147. "__type__": "cc.Vec2",
  148. "x": 0.5,
  149. "y": 0.5
  150. },
  151. "_trs": {
  152. "__type__": "TypedArray",
  153. "ctor": "Float64Array",
  154. "array": [
  155. 0,
  156. 0,
  157. 0,
  158. 0,
  159. 0,
  160. 0,
  161. 1,
  162. 1,
  163. 1,
  164. 1
  165. ]
  166. },
  167. "_eulerAngles": {
  168. "__type__": "cc.Vec3",
  169. "x": 0,
  170. "y": 0,
  171. "z": 0
  172. },
  173. "_skewX": 0,
  174. "_skewY": 0,
  175. "_is3DNode": false,
  176. "_groupIndex": 0,
  177. "groupIndex": 0,
  178. "_id": ""
  179. },
  180. {
  181. "__type__": "cc.Sprite",
  182. "_name": "",
  183. "_objFlags": 0,
  184. "node": {
  185. "__id__": 2
  186. },
  187. "_enabled": true,
  188. "_materials": [
  189. {
  190. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  191. }
  192. ],
  193. "_srcBlendFactor": 770,
  194. "_dstBlendFactor": 771,
  195. "_spriteFrame": {
  196. "__uuid__": "05b69229-67ad-42c3-bf71-09c34d9def2b"
  197. },
  198. "_type": 1,
  199. "_sizeMode": 0,
  200. "_fillType": 0,
  201. "_fillCenter": {
  202. "__type__": "cc.Vec2",
  203. "x": 0,
  204. "y": 0
  205. },
  206. "_fillStart": 0,
  207. "_fillRange": 0,
  208. "_isTrimmedMode": true,
  209. "_atlas": null,
  210. "_id": ""
  211. },
  212. {
  213. "__type__": "cc.BlockInputEvents",
  214. "_name": "",
  215. "_objFlags": 0,
  216. "node": {
  217. "__id__": 2
  218. },
  219. "_enabled": true,
  220. "_id": ""
  221. },
  222. {
  223. "__type__": "62f58zwdOVN/rFVGtus3pDj",
  224. "_name": "",
  225. "_objFlags": 0,
  226. "node": {
  227. "__id__": 2
  228. },
  229. "_enabled": true,
  230. "widthFit": true,
  231. "heightFit": true,
  232. "_id": ""
  233. },
  234. {
  235. "__type__": "cc.PrefabInfo",
  236. "root": {
  237. "__id__": 1
  238. },
  239. "asset": {
  240. "__id__": 0
  241. },
  242. "fileId": "7enSE/Y9ZFqbWnCa7F2Zjx",
  243. "sync": false
  244. },
  245. {
  246. "__type__": "cc.Node",
  247. "_name": "title",
  248. "_objFlags": 0,
  249. "_parent": {
  250. "__id__": 1
  251. },
  252. "_children": [
  253. {
  254. "__id__": 8
  255. }
  256. ],
  257. "_active": true,
  258. "_components": [
  259. {
  260. "__id__": 13
  261. }
  262. ],
  263. "_prefab": {
  264. "__id__": 14
  265. },
  266. "_opacity": 255,
  267. "_color": {
  268. "__type__": "cc.Color",
  269. "r": 255,
  270. "g": 255,
  271. "b": 255,
  272. "a": 255
  273. },
  274. "_contentSize": {
  275. "__type__": "cc.Size",
  276. "width": 634,
  277. "height": 83
  278. },
  279. "_anchorPoint": {
  280. "__type__": "cc.Vec2",
  281. "x": 0.5,
  282. "y": 0.5
  283. },
  284. "_trs": {
  285. "__type__": "TypedArray",
  286. "ctor": "Float64Array",
  287. "array": [
  288. 0,
  289. 371.957,
  290. 0,
  291. 0,
  292. 0,
  293. 0,
  294. 1,
  295. 1,
  296. 1,
  297. 1
  298. ]
  299. },
  300. "_eulerAngles": {
  301. "__type__": "cc.Vec3",
  302. "x": 0,
  303. "y": 0,
  304. "z": 0
  305. },
  306. "_skewX": 0,
  307. "_skewY": 0,
  308. "_is3DNode": false,
  309. "_groupIndex": 0,
  310. "groupIndex": 0,
  311. "_id": ""
  312. },
  313. {
  314. "__type__": "cc.Node",
  315. "_name": "lb",
  316. "_objFlags": 0,
  317. "_parent": {
  318. "__id__": 7
  319. },
  320. "_children": [],
  321. "_active": true,
  322. "_components": [
  323. {
  324. "__id__": 9
  325. },
  326. {
  327. "__id__": 10
  328. },
  329. {
  330. "__id__": 11
  331. }
  332. ],
  333. "_prefab": {
  334. "__id__": 12
  335. },
  336. "_opacity": 255,
  337. "_color": {
  338. "__type__": "cc.Color",
  339. "r": 255,
  340. "g": 255,
  341. "b": 255,
  342. "a": 255
  343. },
  344. "_contentSize": {
  345. "__type__": "cc.Size",
  346. "width": 142.77,
  347. "height": 70.47999999999999
  348. },
  349. "_anchorPoint": {
  350. "__type__": "cc.Vec2",
  351. "x": 0.5,
  352. "y": 0.5
  353. },
  354. "_trs": {
  355. "__type__": "TypedArray",
  356. "ctor": "Float64Array",
  357. "array": [
  358. 1.545,
  359. -2.222,
  360. 0,
  361. 0,
  362. 0,
  363. 0,
  364. 1,
  365. 1,
  366. 1,
  367. 1
  368. ]
  369. },
  370. "_eulerAngles": {
  371. "__type__": "cc.Vec3",
  372. "x": 0,
  373. "y": 0,
  374. "z": 0
  375. },
  376. "_skewX": 0,
  377. "_skewY": 0,
  378. "_is3DNode": false,
  379. "_groupIndex": 0,
  380. "groupIndex": 0,
  381. "_id": ""
  382. },
  383. {
  384. "__type__": "cc.Label",
  385. "_name": "",
  386. "_objFlags": 0,
  387. "node": {
  388. "__id__": 8
  389. },
  390. "_enabled": true,
  391. "_materials": [
  392. {
  393. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  394. }
  395. ],
  396. "_srcBlendFactor": 770,
  397. "_dstBlendFactor": 771,
  398. "_string": "set up",
  399. "_N$string": "set up",
  400. "_fontSize": 48,
  401. "_lineHeight": 48,
  402. "_enableWrapText": true,
  403. "_N$file": {
  404. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  405. },
  406. "_isSystemFontUsed": false,
  407. "_spacingX": 0,
  408. "_batchAsBitmap": false,
  409. "_styleFlags": 0,
  410. "_underlineHeight": 0,
  411. "_N$horizontalAlign": 1,
  412. "_N$verticalAlign": 1,
  413. "_N$fontFamily": "Arial",
  414. "_N$overflow": 0,
  415. "_N$cacheMode": 0,
  416. "_id": ""
  417. },
  418. {
  419. "__type__": "cc.LabelOutline",
  420. "_name": "",
  421. "_objFlags": 0,
  422. "node": {
  423. "__id__": 8
  424. },
  425. "_enabled": true,
  426. "_color": {
  427. "__type__": "cc.Color",
  428. "r": 38,
  429. "g": 17,
  430. "b": 12,
  431. "a": 255
  432. },
  433. "_width": 5,
  434. "_id": ""
  435. },
  436. {
  437. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  438. "_name": "",
  439. "_objFlags": 0,
  440. "node": {
  441. "__id__": 8
  442. },
  443. "_enabled": true,
  444. "_englishCase": 0,
  445. "i18n_string": "t337",
  446. "i18n_params": [],
  447. "_addColon": false,
  448. "_id": ""
  449. },
  450. {
  451. "__type__": "cc.PrefabInfo",
  452. "root": {
  453. "__id__": 8
  454. },
  455. "asset": {
  456. "__uuid__": "b55c4816-1512-4abe-a683-117b4601b39a"
  457. },
  458. "fileId": "49Yg3kHxlLW4nbgia7dTfL",
  459. "sync": false
  460. },
  461. {
  462. "__type__": "cc.Sprite",
  463. "_name": "",
  464. "_objFlags": 0,
  465. "node": {
  466. "__id__": 7
  467. },
  468. "_enabled": true,
  469. "_materials": [
  470. {
  471. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  472. }
  473. ],
  474. "_srcBlendFactor": 770,
  475. "_dstBlendFactor": 771,
  476. "_spriteFrame": {
  477. "__uuid__": "272a1aee-0d11-4802-bb9f-deb5f9b22c51"
  478. },
  479. "_type": 0,
  480. "_sizeMode": 1,
  481. "_fillType": 0,
  482. "_fillCenter": {
  483. "__type__": "cc.Vec2",
  484. "x": 0,
  485. "y": 0
  486. },
  487. "_fillStart": 0,
  488. "_fillRange": 0,
  489. "_isTrimmedMode": true,
  490. "_atlas": null,
  491. "_id": ""
  492. },
  493. {
  494. "__type__": "cc.PrefabInfo",
  495. "root": {
  496. "__id__": 1
  497. },
  498. "asset": {
  499. "__id__": 0
  500. },
  501. "fileId": "03gGrWWsZHe5V82/xBBi1g",
  502. "sync": false
  503. },
  504. {
  505. "__type__": "cc.Node",
  506. "_name": "bg",
  507. "_objFlags": 0,
  508. "_parent": {
  509. "__id__": 1
  510. },
  511. "_children": [],
  512. "_active": true,
  513. "_components": [
  514. {
  515. "__id__": 16
  516. }
  517. ],
  518. "_prefab": {
  519. "__id__": 17
  520. },
  521. "_opacity": 255,
  522. "_color": {
  523. "__type__": "cc.Color",
  524. "r": 255,
  525. "g": 255,
  526. "b": 255,
  527. "a": 255
  528. },
  529. "_contentSize": {
  530. "__type__": "cc.Size",
  531. "width": 1160,
  532. "height": 727
  533. },
  534. "_anchorPoint": {
  535. "__type__": "cc.Vec2",
  536. "x": 0.5,
  537. "y": 0.5
  538. },
  539. "_trs": {
  540. "__type__": "TypedArray",
  541. "ctor": "Float64Array",
  542. "array": [
  543. 0,
  544. -25,
  545. 0,
  546. 0,
  547. 0,
  548. 0,
  549. 1,
  550. 1,
  551. 1,
  552. 1
  553. ]
  554. },
  555. "_eulerAngles": {
  556. "__type__": "cc.Vec3",
  557. "x": 0,
  558. "y": 0,
  559. "z": 0
  560. },
  561. "_skewX": 0,
  562. "_skewY": 0,
  563. "_is3DNode": false,
  564. "_groupIndex": 0,
  565. "groupIndex": 0,
  566. "_id": ""
  567. },
  568. {
  569. "__type__": "cc.Sprite",
  570. "_name": "",
  571. "_objFlags": 0,
  572. "node": {
  573. "__id__": 15
  574. },
  575. "_enabled": true,
  576. "_materials": [
  577. {
  578. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  579. }
  580. ],
  581. "_srcBlendFactor": 770,
  582. "_dstBlendFactor": 771,
  583. "_spriteFrame": {
  584. "__uuid__": "e07f7d80-677d-4def-b648-88341c7a5b1a"
  585. },
  586. "_type": 1,
  587. "_sizeMode": 0,
  588. "_fillType": 0,
  589. "_fillCenter": {
  590. "__type__": "cc.Vec2",
  591. "x": 0,
  592. "y": 0
  593. },
  594. "_fillStart": 0,
  595. "_fillRange": 0,
  596. "_isTrimmedMode": true,
  597. "_atlas": null,
  598. "_id": ""
  599. },
  600. {
  601. "__type__": "cc.PrefabInfo",
  602. "root": {
  603. "__id__": 1
  604. },
  605. "asset": {
  606. "__id__": 0
  607. },
  608. "fileId": "623cSYigdNYp0k3W6EGvcF",
  609. "sync": false
  610. },
  611. {
  612. "__type__": "cc.Node",
  613. "_name": "music",
  614. "_objFlags": 0,
  615. "_parent": {
  616. "__id__": 1
  617. },
  618. "_children": [
  619. {
  620. "__id__": 19
  621. },
  622. {
  623. "__id__": 22
  624. },
  625. {
  626. "__id__": 52
  627. }
  628. ],
  629. "_active": true,
  630. "_components": [
  631. {
  632. "__id__": 57
  633. }
  634. ],
  635. "_prefab": {
  636. "__id__": 58
  637. },
  638. "_opacity": 255,
  639. "_color": {
  640. "__type__": "cc.Color",
  641. "r": 255,
  642. "g": 255,
  643. "b": 255,
  644. "a": 255
  645. },
  646. "_contentSize": {
  647. "__type__": "cc.Size",
  648. "width": 580,
  649. "height": 100
  650. },
  651. "_anchorPoint": {
  652. "__type__": "cc.Vec2",
  653. "x": 0.5,
  654. "y": 0.5
  655. },
  656. "_trs": {
  657. "__type__": "TypedArray",
  658. "ctor": "Float64Array",
  659. "array": [
  660. 0,
  661. 227.312,
  662. 0,
  663. 0,
  664. 0,
  665. 0,
  666. 1,
  667. 1,
  668. 1,
  669. 1
  670. ]
  671. },
  672. "_eulerAngles": {
  673. "__type__": "cc.Vec3",
  674. "x": 0,
  675. "y": 0,
  676. "z": 0
  677. },
  678. "_skewX": 0,
  679. "_skewY": 0,
  680. "_is3DNode": false,
  681. "_groupIndex": 0,
  682. "groupIndex": 0,
  683. "_id": ""
  684. },
  685. {
  686. "__type__": "cc.Node",
  687. "_name": "icon",
  688. "_objFlags": 0,
  689. "_parent": {
  690. "__id__": 18
  691. },
  692. "_children": [],
  693. "_active": true,
  694. "_components": [
  695. {
  696. "__id__": 20
  697. }
  698. ],
  699. "_prefab": {
  700. "__id__": 21
  701. },
  702. "_opacity": 255,
  703. "_color": {
  704. "__type__": "cc.Color",
  705. "r": 255,
  706. "g": 255,
  707. "b": 255,
  708. "a": 255
  709. },
  710. "_contentSize": {
  711. "__type__": "cc.Size",
  712. "width": 81,
  713. "height": 80
  714. },
  715. "_anchorPoint": {
  716. "__type__": "cc.Vec2",
  717. "x": 0.5,
  718. "y": 0.5
  719. },
  720. "_trs": {
  721. "__type__": "TypedArray",
  722. "ctor": "Float64Array",
  723. "array": [
  724. -228.248,
  725. 0,
  726. 0,
  727. 0,
  728. 0,
  729. 0,
  730. 1,
  731. 1,
  732. 1,
  733. 1
  734. ]
  735. },
  736. "_eulerAngles": {
  737. "__type__": "cc.Vec3",
  738. "x": 0,
  739. "y": 0,
  740. "z": 0
  741. },
  742. "_skewX": 0,
  743. "_skewY": 0,
  744. "_is3DNode": false,
  745. "_groupIndex": 0,
  746. "groupIndex": 0,
  747. "_id": ""
  748. },
  749. {
  750. "__type__": "cc.Sprite",
  751. "_name": "",
  752. "_objFlags": 0,
  753. "node": {
  754. "__id__": 19
  755. },
  756. "_enabled": true,
  757. "_materials": [
  758. {
  759. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  760. }
  761. ],
  762. "_srcBlendFactor": 770,
  763. "_dstBlendFactor": 771,
  764. "_spriteFrame": {
  765. "__uuid__": "18de7906-d41b-48f1-8215-721211274f5f"
  766. },
  767. "_type": 0,
  768. "_sizeMode": 1,
  769. "_fillType": 0,
  770. "_fillCenter": {
  771. "__type__": "cc.Vec2",
  772. "x": 0,
  773. "y": 0
  774. },
  775. "_fillStart": 0,
  776. "_fillRange": 0,
  777. "_isTrimmedMode": true,
  778. "_atlas": null,
  779. "_id": ""
  780. },
  781. {
  782. "__type__": "cc.PrefabInfo",
  783. "root": {
  784. "__id__": 1
  785. },
  786. "asset": {
  787. "__id__": 0
  788. },
  789. "fileId": "c3Qp6z+2tHE4eAwuH86NsJ",
  790. "sync": false
  791. },
  792. {
  793. "__type__": "cc.Node",
  794. "_name": "tog",
  795. "_objFlags": 0,
  796. "_parent": {
  797. "__id__": 18
  798. },
  799. "_children": [
  800. {
  801. "__id__": 23
  802. },
  803. {
  804. "__id__": 37
  805. }
  806. ],
  807. "_active": true,
  808. "_components": [
  809. {
  810. "__id__": 48
  811. },
  812. {
  813. "__id__": 50
  814. }
  815. ],
  816. "_prefab": {
  817. "__id__": 51
  818. },
  819. "_opacity": 255,
  820. "_color": {
  821. "__type__": "cc.Color",
  822. "r": 255,
  823. "g": 255,
  824. "b": 255,
  825. "a": 255
  826. },
  827. "_contentSize": {
  828. "__type__": "cc.Size",
  829. "width": 240,
  830. "height": 80
  831. },
  832. "_anchorPoint": {
  833. "__type__": "cc.Vec2",
  834. "x": 0.5,
  835. "y": 0.5
  836. },
  837. "_trs": {
  838. "__type__": "TypedArray",
  839. "ctor": "Float64Array",
  840. "array": [
  841. 156.566,
  842. 0,
  843. 0,
  844. 0,
  845. 0,
  846. 0,
  847. 1,
  848. 1,
  849. 1,
  850. 1
  851. ]
  852. },
  853. "_eulerAngles": {
  854. "__type__": "cc.Vec3",
  855. "x": 0,
  856. "y": 0,
  857. "z": 0
  858. },
  859. "_skewX": 0,
  860. "_skewY": 0,
  861. "_is3DNode": false,
  862. "_groupIndex": 0,
  863. "groupIndex": 0,
  864. "_id": ""
  865. },
  866. {
  867. "__type__": "cc.Node",
  868. "_name": "Background",
  869. "_objFlags": 0,
  870. "_parent": {
  871. "__id__": 22
  872. },
  873. "_children": [
  874. {
  875. "__id__": 24
  876. },
  877. {
  878. "__id__": 27
  879. },
  880. {
  881. "__id__": 32
  882. }
  883. ],
  884. "_active": true,
  885. "_components": [
  886. {
  887. "__id__": 35
  888. }
  889. ],
  890. "_prefab": {
  891. "__id__": 36
  892. },
  893. "_opacity": 255,
  894. "_color": {
  895. "__type__": "cc.Color",
  896. "r": 91,
  897. "g": 91,
  898. "b": 91,
  899. "a": 255
  900. },
  901. "_contentSize": {
  902. "__type__": "cc.Size",
  903. "width": 218,
  904. "height": 58
  905. },
  906. "_anchorPoint": {
  907. "__type__": "cc.Vec2",
  908. "x": 0.5,
  909. "y": 0.5
  910. },
  911. "_trs": {
  912. "__type__": "TypedArray",
  913. "ctor": "Float64Array",
  914. "array": [
  915. 0,
  916. 0,
  917. 0,
  918. 0,
  919. 0,
  920. 0,
  921. 1,
  922. 1,
  923. 1,
  924. 0
  925. ]
  926. },
  927. "_eulerAngles": {
  928. "__type__": "cc.Vec3",
  929. "x": 0,
  930. "y": 0,
  931. "z": 0
  932. },
  933. "_skewX": 0,
  934. "_skewY": 0,
  935. "_is3DNode": false,
  936. "_groupIndex": 0,
  937. "groupIndex": 0,
  938. "_id": ""
  939. },
  940. {
  941. "__type__": "cc.Node",
  942. "_name": "frame",
  943. "_objFlags": 0,
  944. "_parent": {
  945. "__id__": 23
  946. },
  947. "_children": [],
  948. "_active": true,
  949. "_components": [
  950. {
  951. "__id__": 25
  952. }
  953. ],
  954. "_prefab": {
  955. "__id__": 26
  956. },
  957. "_opacity": 255,
  958. "_color": {
  959. "__type__": "cc.Color",
  960. "r": 255,
  961. "g": 255,
  962. "b": 255,
  963. "a": 255
  964. },
  965. "_contentSize": {
  966. "__type__": "cc.Size",
  967. "width": 120,
  968. "height": 80
  969. },
  970. "_anchorPoint": {
  971. "__type__": "cc.Vec2",
  972. "x": 0.5,
  973. "y": 0.5
  974. },
  975. "_trs": {
  976. "__type__": "TypedArray",
  977. "ctor": "Float64Array",
  978. "array": [
  979. -60,
  980. 0,
  981. 0,
  982. 0,
  983. 0,
  984. 0,
  985. 1,
  986. 1,
  987. 1,
  988. 1
  989. ]
  990. },
  991. "_eulerAngles": {
  992. "__type__": "cc.Vec3",
  993. "x": 0,
  994. "y": 0,
  995. "z": 0
  996. },
  997. "_skewX": 0,
  998. "_skewY": 0,
  999. "_is3DNode": false,
  1000. "_groupIndex": 0,
  1001. "groupIndex": 0,
  1002. "_id": ""
  1003. },
  1004. {
  1005. "__type__": "cc.Sprite",
  1006. "_name": "",
  1007. "_objFlags": 0,
  1008. "node": {
  1009. "__id__": 24
  1010. },
  1011. "_enabled": true,
  1012. "_materials": [
  1013. {
  1014. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1015. }
  1016. ],
  1017. "_srcBlendFactor": 770,
  1018. "_dstBlendFactor": 771,
  1019. "_spriteFrame": {
  1020. "__uuid__": "e5c440fd-41bb-4128-bf90-5c74b8550af2"
  1021. },
  1022. "_type": 1,
  1023. "_sizeMode": 0,
  1024. "_fillType": 0,
  1025. "_fillCenter": {
  1026. "__type__": "cc.Vec2",
  1027. "x": 0,
  1028. "y": 0
  1029. },
  1030. "_fillStart": 0,
  1031. "_fillRange": 0,
  1032. "_isTrimmedMode": true,
  1033. "_atlas": null,
  1034. "_id": ""
  1035. },
  1036. {
  1037. "__type__": "cc.PrefabInfo",
  1038. "root": {
  1039. "__id__": 1
  1040. },
  1041. "asset": {
  1042. "__id__": 0
  1043. },
  1044. "fileId": "24rdla43FOm568EQ7eTX1A",
  1045. "sync": false
  1046. },
  1047. {
  1048. "__type__": "cc.Node",
  1049. "_name": "lb",
  1050. "_objFlags": 0,
  1051. "_parent": {
  1052. "__id__": 23
  1053. },
  1054. "_children": [],
  1055. "_active": true,
  1056. "_components": [
  1057. {
  1058. "__id__": 28
  1059. },
  1060. {
  1061. "__id__": 29
  1062. },
  1063. {
  1064. "__id__": 30
  1065. }
  1066. ],
  1067. "_prefab": {
  1068. "__id__": 31
  1069. },
  1070. "_opacity": 255,
  1071. "_color": {
  1072. "__type__": "cc.Color",
  1073. "r": 170,
  1074. "g": 170,
  1075. "b": 170,
  1076. "a": 255
  1077. },
  1078. "_contentSize": {
  1079. "__type__": "cc.Size",
  1080. "width": 74.87,
  1081. "height": 51.36
  1082. },
  1083. "_anchorPoint": {
  1084. "__type__": "cc.Vec2",
  1085. "x": 0.5,
  1086. "y": 0.5
  1087. },
  1088. "_trs": {
  1089. "__type__": "TypedArray",
  1090. "ctor": "Float64Array",
  1091. "array": [
  1092. -60,
  1093. 0,
  1094. 0,
  1095. 0,
  1096. 0,
  1097. 0,
  1098. 1,
  1099. 1,
  1100. 1,
  1101. 1
  1102. ]
  1103. },
  1104. "_eulerAngles": {
  1105. "__type__": "cc.Vec3",
  1106. "x": 0,
  1107. "y": 0,
  1108. "z": 0
  1109. },
  1110. "_skewX": 0,
  1111. "_skewY": 0,
  1112. "_is3DNode": false,
  1113. "_groupIndex": 0,
  1114. "groupIndex": 0,
  1115. "_id": ""
  1116. },
  1117. {
  1118. "__type__": "cc.Label",
  1119. "_name": "",
  1120. "_objFlags": 0,
  1121. "node": {
  1122. "__id__": 27
  1123. },
  1124. "_enabled": true,
  1125. "_materials": [
  1126. {
  1127. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1128. }
  1129. ],
  1130. "_srcBlendFactor": 770,
  1131. "_dstBlendFactor": 771,
  1132. "_string": "OFF",
  1133. "_N$string": "OFF",
  1134. "_fontSize": 36,
  1135. "_lineHeight": 36,
  1136. "_enableWrapText": true,
  1137. "_N$file": {
  1138. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  1139. },
  1140. "_isSystemFontUsed": false,
  1141. "_spacingX": 0,
  1142. "_batchAsBitmap": false,
  1143. "_styleFlags": 0,
  1144. "_underlineHeight": 0,
  1145. "_N$horizontalAlign": 1,
  1146. "_N$verticalAlign": 1,
  1147. "_N$fontFamily": "Arial",
  1148. "_N$overflow": 0,
  1149. "_N$cacheMode": 0,
  1150. "_id": ""
  1151. },
  1152. {
  1153. "__type__": "cc.LabelOutline",
  1154. "_name": "",
  1155. "_objFlags": 0,
  1156. "node": {
  1157. "__id__": 27
  1158. },
  1159. "_enabled": true,
  1160. "_color": {
  1161. "__type__": "cc.Color",
  1162. "r": 38,
  1163. "g": 17,
  1164. "b": 12,
  1165. "a": 255
  1166. },
  1167. "_width": 3,
  1168. "_id": ""
  1169. },
  1170. {
  1171. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  1172. "_name": "",
  1173. "_objFlags": 0,
  1174. "node": {
  1175. "__id__": 27
  1176. },
  1177. "_enabled": true,
  1178. "_englishCase": 0,
  1179. "i18n_string": "OFF",
  1180. "i18n_params": [],
  1181. "_addColon": false,
  1182. "_id": ""
  1183. },
  1184. {
  1185. "__type__": "cc.PrefabInfo",
  1186. "root": {
  1187. "__id__": 27
  1188. },
  1189. "asset": {
  1190. "__uuid__": "b55c4816-1512-4abe-a683-117b4601b39a"
  1191. },
  1192. "fileId": "40mktb4cdD6IPYTBagWRb4",
  1193. "sync": false
  1194. },
  1195. {
  1196. "__type__": "cc.Node",
  1197. "_name": "close",
  1198. "_objFlags": 0,
  1199. "_parent": {
  1200. "__id__": 23
  1201. },
  1202. "_children": [],
  1203. "_active": true,
  1204. "_components": [
  1205. {
  1206. "__id__": 33
  1207. }
  1208. ],
  1209. "_prefab": {
  1210. "__id__": 34
  1211. },
  1212. "_opacity": 255,
  1213. "_color": {
  1214. "__type__": "cc.Color",
  1215. "r": 255,
  1216. "g": 255,
  1217. "b": 255,
  1218. "a": 255
  1219. },
  1220. "_contentSize": {
  1221. "__type__": "cc.Size",
  1222. "width": 59,
  1223. "height": 60
  1224. },
  1225. "_anchorPoint": {
  1226. "__type__": "cc.Vec2",
  1227. "x": 0.5,
  1228. "y": 0.5
  1229. },
  1230. "_trs": {
  1231. "__type__": "TypedArray",
  1232. "ctor": "Float64Array",
  1233. "array": [
  1234. -348.881,
  1235. -12.242000000000004,
  1236. 0,
  1237. 0,
  1238. 0,
  1239. 0,
  1240. 1,
  1241. 1,
  1242. 1,
  1243. 1
  1244. ]
  1245. },
  1246. "_eulerAngles": {
  1247. "__type__": "cc.Vec3",
  1248. "x": 0,
  1249. "y": 0,
  1250. "z": 0
  1251. },
  1252. "_skewX": 0,
  1253. "_skewY": 0,
  1254. "_is3DNode": false,
  1255. "_groupIndex": 0,
  1256. "groupIndex": 0,
  1257. "_id": ""
  1258. },
  1259. {
  1260. "__type__": "cc.Sprite",
  1261. "_name": "",
  1262. "_objFlags": 0,
  1263. "node": {
  1264. "__id__": 32
  1265. },
  1266. "_enabled": true,
  1267. "_materials": [
  1268. {
  1269. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1270. }
  1271. ],
  1272. "_srcBlendFactor": 770,
  1273. "_dstBlendFactor": 771,
  1274. "_spriteFrame": {
  1275. "__uuid__": "74f29d4a-bae6-4a05-b99d-89d7ba3f3c9f"
  1276. },
  1277. "_type": 0,
  1278. "_sizeMode": 1,
  1279. "_fillType": 0,
  1280. "_fillCenter": {
  1281. "__type__": "cc.Vec2",
  1282. "x": 0,
  1283. "y": 0
  1284. },
  1285. "_fillStart": 0,
  1286. "_fillRange": 0,
  1287. "_isTrimmedMode": true,
  1288. "_atlas": null,
  1289. "_id": ""
  1290. },
  1291. {
  1292. "__type__": "cc.PrefabInfo",
  1293. "root": {
  1294. "__id__": 1
  1295. },
  1296. "asset": {
  1297. "__id__": 0
  1298. },
  1299. "fileId": "7fmv0I/FtEg5rhcQcKQScb",
  1300. "sync": false
  1301. },
  1302. {
  1303. "__type__": "cc.Sprite",
  1304. "_name": "",
  1305. "_objFlags": 0,
  1306. "node": {
  1307. "__id__": 23
  1308. },
  1309. "_enabled": true,
  1310. "_materials": [
  1311. {
  1312. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1313. }
  1314. ],
  1315. "_srcBlendFactor": 770,
  1316. "_dstBlendFactor": 771,
  1317. "_spriteFrame": {
  1318. "__uuid__": "b1f64ee3-dd78-476c-bb28-83d9997f558e"
  1319. },
  1320. "_type": 1,
  1321. "_sizeMode": 0,
  1322. "_fillType": 0,
  1323. "_fillCenter": {
  1324. "__type__": "cc.Vec2",
  1325. "x": 0,
  1326. "y": 0
  1327. },
  1328. "_fillStart": 0,
  1329. "_fillRange": 0,
  1330. "_isTrimmedMode": true,
  1331. "_atlas": null,
  1332. "_id": ""
  1333. },
  1334. {
  1335. "__type__": "cc.PrefabInfo",
  1336. "root": {
  1337. "__id__": 1
  1338. },
  1339. "asset": {
  1340. "__id__": 0
  1341. },
  1342. "fileId": "a24yucJ15EHpVBMrG01vuK",
  1343. "sync": false
  1344. },
  1345. {
  1346. "__type__": "cc.Node",
  1347. "_name": "checkmark",
  1348. "_objFlags": 0,
  1349. "_parent": {
  1350. "__id__": 22
  1351. },
  1352. "_children": [
  1353. {
  1354. "__id__": 38
  1355. },
  1356. {
  1357. "__id__": 41
  1358. }
  1359. ],
  1360. "_active": false,
  1361. "_components": [
  1362. {
  1363. "__id__": 46
  1364. }
  1365. ],
  1366. "_prefab": {
  1367. "__id__": 47
  1368. },
  1369. "_opacity": 255,
  1370. "_color": {
  1371. "__type__": "cc.Color",
  1372. "r": 250,
  1373. "g": 199,
  1374. "b": 62,
  1375. "a": 255
  1376. },
  1377. "_contentSize": {
  1378. "__type__": "cc.Size",
  1379. "width": 218,
  1380. "height": 58
  1381. },
  1382. "_anchorPoint": {
  1383. "__type__": "cc.Vec2",
  1384. "x": 0.5,
  1385. "y": 0.5
  1386. },
  1387. "_trs": {
  1388. "__type__": "TypedArray",
  1389. "ctor": "Float64Array",
  1390. "array": [
  1391. 0,
  1392. 0,
  1393. 0,
  1394. 0,
  1395. 0,
  1396. 0,
  1397. 1,
  1398. 1,
  1399. 1,
  1400. 1
  1401. ]
  1402. },
  1403. "_eulerAngles": {
  1404. "__type__": "cc.Vec3",
  1405. "x": 0,
  1406. "y": 0,
  1407. "z": 0
  1408. },
  1409. "_skewX": 0,
  1410. "_skewY": 0,
  1411. "_is3DNode": false,
  1412. "_groupIndex": 0,
  1413. "groupIndex": 0,
  1414. "_id": ""
  1415. },
  1416. {
  1417. "__type__": "cc.Node",
  1418. "_name": "frame",
  1419. "_objFlags": 0,
  1420. "_parent": {
  1421. "__id__": 37
  1422. },
  1423. "_children": [],
  1424. "_active": true,
  1425. "_components": [
  1426. {
  1427. "__id__": 39
  1428. }
  1429. ],
  1430. "_prefab": {
  1431. "__id__": 40
  1432. },
  1433. "_opacity": 255,
  1434. "_color": {
  1435. "__type__": "cc.Color",
  1436. "r": 255,
  1437. "g": 255,
  1438. "b": 255,
  1439. "a": 255
  1440. },
  1441. "_contentSize": {
  1442. "__type__": "cc.Size",
  1443. "width": 120,
  1444. "height": 80
  1445. },
  1446. "_anchorPoint": {
  1447. "__type__": "cc.Vec2",
  1448. "x": 0.5,
  1449. "y": 0.5
  1450. },
  1451. "_trs": {
  1452. "__type__": "TypedArray",
  1453. "ctor": "Float64Array",
  1454. "array": [
  1455. 60,
  1456. 0,
  1457. 0,
  1458. 0,
  1459. 0,
  1460. 0,
  1461. 1,
  1462. 1,
  1463. 1,
  1464. 1
  1465. ]
  1466. },
  1467. "_eulerAngles": {
  1468. "__type__": "cc.Vec3",
  1469. "x": 0,
  1470. "y": 0,
  1471. "z": 0
  1472. },
  1473. "_skewX": 0,
  1474. "_skewY": 0,
  1475. "_is3DNode": false,
  1476. "_groupIndex": 0,
  1477. "groupIndex": 0,
  1478. "_id": ""
  1479. },
  1480. {
  1481. "__type__": "cc.Sprite",
  1482. "_name": "",
  1483. "_objFlags": 0,
  1484. "node": {
  1485. "__id__": 38
  1486. },
  1487. "_enabled": true,
  1488. "_materials": [
  1489. {
  1490. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1491. }
  1492. ],
  1493. "_srcBlendFactor": 770,
  1494. "_dstBlendFactor": 771,
  1495. "_spriteFrame": {
  1496. "__uuid__": "16ef86cd-a92f-48eb-8d2d-8b5be206246e"
  1497. },
  1498. "_type": 1,
  1499. "_sizeMode": 0,
  1500. "_fillType": 0,
  1501. "_fillCenter": {
  1502. "__type__": "cc.Vec2",
  1503. "x": 0,
  1504. "y": 0
  1505. },
  1506. "_fillStart": 0,
  1507. "_fillRange": 0,
  1508. "_isTrimmedMode": true,
  1509. "_atlas": null,
  1510. "_id": ""
  1511. },
  1512. {
  1513. "__type__": "cc.PrefabInfo",
  1514. "root": {
  1515. "__id__": 1
  1516. },
  1517. "asset": {
  1518. "__id__": 0
  1519. },
  1520. "fileId": "bdQwrFPqdAiLf14l87/nG/",
  1521. "sync": false
  1522. },
  1523. {
  1524. "__type__": "cc.Node",
  1525. "_name": "lb",
  1526. "_objFlags": 0,
  1527. "_parent": {
  1528. "__id__": 37
  1529. },
  1530. "_children": [],
  1531. "_active": true,
  1532. "_components": [
  1533. {
  1534. "__id__": 42
  1535. },
  1536. {
  1537. "__id__": 43
  1538. },
  1539. {
  1540. "__id__": 44
  1541. }
  1542. ],
  1543. "_prefab": {
  1544. "__id__": 45
  1545. },
  1546. "_opacity": 255,
  1547. "_color": {
  1548. "__type__": "cc.Color",
  1549. "r": 255,
  1550. "g": 239,
  1551. "b": 129,
  1552. "a": 255
  1553. },
  1554. "_contentSize": {
  1555. "__type__": "cc.Size",
  1556. "width": 72.95,
  1557. "height": 42
  1558. },
  1559. "_anchorPoint": {
  1560. "__type__": "cc.Vec2",
  1561. "x": 0.5,
  1562. "y": 0.5
  1563. },
  1564. "_trs": {
  1565. "__type__": "TypedArray",
  1566. "ctor": "Float64Array",
  1567. "array": [
  1568. 60,
  1569. 0,
  1570. 0,
  1571. 0,
  1572. 0,
  1573. 0,
  1574. 1,
  1575. 1,
  1576. 1,
  1577. 1
  1578. ]
  1579. },
  1580. "_eulerAngles": {
  1581. "__type__": "cc.Vec3",
  1582. "x": 0,
  1583. "y": 0,
  1584. "z": 0
  1585. },
  1586. "_skewX": 0,
  1587. "_skewY": 0,
  1588. "_is3DNode": false,
  1589. "_groupIndex": 0,
  1590. "groupIndex": 0,
  1591. "_id": ""
  1592. },
  1593. {
  1594. "__type__": "cc.Label",
  1595. "_name": "",
  1596. "_objFlags": 0,
  1597. "node": {
  1598. "__id__": 41
  1599. },
  1600. "_enabled": true,
  1601. "_materials": [
  1602. {
  1603. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1604. }
  1605. ],
  1606. "_srcBlendFactor": 770,
  1607. "_dstBlendFactor": 771,
  1608. "_string": "ON",
  1609. "_N$string": "ON",
  1610. "_fontSize": 36,
  1611. "_lineHeight": 36,
  1612. "_enableWrapText": true,
  1613. "_N$file": {
  1614. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  1615. },
  1616. "_isSystemFontUsed": false,
  1617. "_spacingX": 0,
  1618. "_batchAsBitmap": false,
  1619. "_styleFlags": 0,
  1620. "_underlineHeight": 0,
  1621. "_N$horizontalAlign": 1,
  1622. "_N$verticalAlign": 1,
  1623. "_N$fontFamily": "Arial",
  1624. "_N$overflow": 0,
  1625. "_N$cacheMode": 0,
  1626. "_id": ""
  1627. },
  1628. {
  1629. "__type__": "cc.LabelOutline",
  1630. "_name": "",
  1631. "_objFlags": 0,
  1632. "node": {
  1633. "__id__": 41
  1634. },
  1635. "_enabled": true,
  1636. "_color": {
  1637. "__type__": "cc.Color",
  1638. "r": 38,
  1639. "g": 17,
  1640. "b": 12,
  1641. "a": 255
  1642. },
  1643. "_width": 3,
  1644. "_id": ""
  1645. },
  1646. {
  1647. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  1648. "_name": "",
  1649. "_objFlags": 0,
  1650. "node": {
  1651. "__id__": 41
  1652. },
  1653. "_enabled": true,
  1654. "_englishCase": 0,
  1655. "i18n_string": "ON",
  1656. "i18n_params": [],
  1657. "_addColon": false,
  1658. "_id": ""
  1659. },
  1660. {
  1661. "__type__": "cc.PrefabInfo",
  1662. "root": {
  1663. "__id__": 41
  1664. },
  1665. "asset": {
  1666. "__uuid__": "b55c4816-1512-4abe-a683-117b4601b39a"
  1667. },
  1668. "fileId": "8e0+7h9blN9reNxpgnRY87",
  1669. "sync": false
  1670. },
  1671. {
  1672. "__type__": "cc.Sprite",
  1673. "_name": "",
  1674. "_objFlags": 0,
  1675. "node": {
  1676. "__id__": 37
  1677. },
  1678. "_enabled": true,
  1679. "_materials": [
  1680. {
  1681. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1682. }
  1683. ],
  1684. "_srcBlendFactor": 770,
  1685. "_dstBlendFactor": 771,
  1686. "_spriteFrame": {
  1687. "__uuid__": "b1f64ee3-dd78-476c-bb28-83d9997f558e"
  1688. },
  1689. "_type": 0,
  1690. "_sizeMode": 0,
  1691. "_fillType": 0,
  1692. "_fillCenter": {
  1693. "__type__": "cc.Vec2",
  1694. "x": 0,
  1695. "y": 0
  1696. },
  1697. "_fillStart": 0,
  1698. "_fillRange": 0,
  1699. "_isTrimmedMode": false,
  1700. "_atlas": null,
  1701. "_id": ""
  1702. },
  1703. {
  1704. "__type__": "cc.PrefabInfo",
  1705. "root": {
  1706. "__id__": 1
  1707. },
  1708. "asset": {
  1709. "__id__": 0
  1710. },
  1711. "fileId": "1dItZB6MdGTLW5T5IUYq79",
  1712. "sync": false
  1713. },
  1714. {
  1715. "__type__": "cc.Toggle",
  1716. "_name": "",
  1717. "_objFlags": 0,
  1718. "node": {
  1719. "__id__": 22
  1720. },
  1721. "_enabled": true,
  1722. "_normalMaterial": null,
  1723. "_grayMaterial": null,
  1724. "duration": 0.1,
  1725. "zoomScale": 1,
  1726. "clickEvents": [],
  1727. "_N$interactable": true,
  1728. "_N$enableAutoGrayEffect": false,
  1729. "_N$transition": 3,
  1730. "transition": 3,
  1731. "_N$normalColor": {
  1732. "__type__": "cc.Color",
  1733. "r": 214,
  1734. "g": 214,
  1735. "b": 214,
  1736. "a": 255
  1737. },
  1738. "_N$pressedColor": {
  1739. "__type__": "cc.Color",
  1740. "r": 211,
  1741. "g": 211,
  1742. "b": 211,
  1743. "a": 255
  1744. },
  1745. "pressedColor": {
  1746. "__type__": "cc.Color",
  1747. "r": 211,
  1748. "g": 211,
  1749. "b": 211,
  1750. "a": 255
  1751. },
  1752. "_N$hoverColor": {
  1753. "__type__": "cc.Color",
  1754. "r": 255,
  1755. "g": 255,
  1756. "b": 255,
  1757. "a": 255
  1758. },
  1759. "hoverColor": {
  1760. "__type__": "cc.Color",
  1761. "r": 255,
  1762. "g": 255,
  1763. "b": 255,
  1764. "a": 255
  1765. },
  1766. "_N$disabledColor": {
  1767. "__type__": "cc.Color",
  1768. "r": 124,
  1769. "g": 124,
  1770. "b": 124,
  1771. "a": 255
  1772. },
  1773. "_N$normalSprite": null,
  1774. "_N$pressedSprite": null,
  1775. "pressedSprite": null,
  1776. "_N$hoverSprite": null,
  1777. "hoverSprite": null,
  1778. "_N$disabledSprite": null,
  1779. "_N$target": {
  1780. "__id__": 23
  1781. },
  1782. "_N$isChecked": true,
  1783. "toggleGroup": null,
  1784. "checkMark": {
  1785. "__id__": 46
  1786. },
  1787. "checkEvents": [
  1788. {
  1789. "__id__": 49
  1790. }
  1791. ],
  1792. "_id": ""
  1793. },
  1794. {
  1795. "__type__": "cc.ClickEvent",
  1796. "target": {
  1797. "__id__": 1
  1798. },
  1799. "component": "",
  1800. "_componentId": "6874dk0AwFNj4RXgBqY+CMZ",
  1801. "handler": "onClickMusic",
  1802. "customEventData": ""
  1803. },
  1804. {
  1805. "__type__": "cc.Sprite",
  1806. "_name": "",
  1807. "_objFlags": 0,
  1808. "node": {
  1809. "__id__": 22
  1810. },
  1811. "_enabled": true,
  1812. "_materials": [
  1813. {
  1814. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1815. }
  1816. ],
  1817. "_srcBlendFactor": 770,
  1818. "_dstBlendFactor": 771,
  1819. "_spriteFrame": {
  1820. "__uuid__": "a75724db-0345-46b3-bba1-6ea6743fbe06"
  1821. },
  1822. "_type": 1,
  1823. "_sizeMode": 0,
  1824. "_fillType": 0,
  1825. "_fillCenter": {
  1826. "__type__": "cc.Vec2",
  1827. "x": 0,
  1828. "y": 0
  1829. },
  1830. "_fillStart": 0,
  1831. "_fillRange": 0,
  1832. "_isTrimmedMode": true,
  1833. "_atlas": null,
  1834. "_id": ""
  1835. },
  1836. {
  1837. "__type__": "cc.PrefabInfo",
  1838. "root": {
  1839. "__id__": 1
  1840. },
  1841. "asset": {
  1842. "__id__": 0
  1843. },
  1844. "fileId": "d2Ll+RlRVE7oSkhR1g80bT",
  1845. "sync": false
  1846. },
  1847. {
  1848. "__type__": "cc.Node",
  1849. "_name": "lb",
  1850. "_objFlags": 0,
  1851. "_parent": {
  1852. "__id__": 18
  1853. },
  1854. "_children": [],
  1855. "_active": true,
  1856. "_components": [
  1857. {
  1858. "__id__": 53
  1859. },
  1860. {
  1861. "__id__": 54
  1862. },
  1863. {
  1864. "__id__": 55
  1865. }
  1866. ],
  1867. "_prefab": {
  1868. "__id__": 56
  1869. },
  1870. "_opacity": 255,
  1871. "_color": {
  1872. "__type__": "cc.Color",
  1873. "r": 255,
  1874. "g": 255,
  1875. "b": 255,
  1876. "a": 255
  1877. },
  1878. "_contentSize": {
  1879. "__type__": "cc.Size",
  1880. "width": 120.91,
  1881. "height": 66.47999999999999
  1882. },
  1883. "_anchorPoint": {
  1884. "__type__": "cc.Vec2",
  1885. "x": 0.5,
  1886. "y": 0.5
  1887. },
  1888. "_trs": {
  1889. "__type__": "TypedArray",
  1890. "ctor": "Float64Array",
  1891. "array": [
  1892. -65,
  1893. -0.302,
  1894. 0,
  1895. 0,
  1896. 0,
  1897. 0,
  1898. 1,
  1899. 1,
  1900. 1,
  1901. 1
  1902. ]
  1903. },
  1904. "_eulerAngles": {
  1905. "__type__": "cc.Vec3",
  1906. "x": 0,
  1907. "y": 0,
  1908. "z": 0
  1909. },
  1910. "_skewX": 0,
  1911. "_skewY": 0,
  1912. "_is3DNode": false,
  1913. "_groupIndex": 0,
  1914. "groupIndex": 0,
  1915. "_id": ""
  1916. },
  1917. {
  1918. "__type__": "cc.Label",
  1919. "_name": "",
  1920. "_objFlags": 0,
  1921. "node": {
  1922. "__id__": 52
  1923. },
  1924. "_enabled": true,
  1925. "_materials": [
  1926. {
  1927. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1928. }
  1929. ],
  1930. "_srcBlendFactor": 770,
  1931. "_dstBlendFactor": 771,
  1932. "_string": "music",
  1933. "_N$string": "music",
  1934. "_fontSize": 48,
  1935. "_lineHeight": 48,
  1936. "_enableWrapText": true,
  1937. "_N$file": {
  1938. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  1939. },
  1940. "_isSystemFontUsed": false,
  1941. "_spacingX": 0,
  1942. "_batchAsBitmap": false,
  1943. "_styleFlags": 0,
  1944. "_underlineHeight": 0,
  1945. "_N$horizontalAlign": 1,
  1946. "_N$verticalAlign": 1,
  1947. "_N$fontFamily": "Arial",
  1948. "_N$overflow": 0,
  1949. "_N$cacheMode": 0,
  1950. "_id": ""
  1951. },
  1952. {
  1953. "__type__": "cc.LabelOutline",
  1954. "_name": "",
  1955. "_objFlags": 0,
  1956. "node": {
  1957. "__id__": 52
  1958. },
  1959. "_enabled": true,
  1960. "_color": {
  1961. "__type__": "cc.Color",
  1962. "r": 38,
  1963. "g": 17,
  1964. "b": 12,
  1965. "a": 255
  1966. },
  1967. "_width": 3,
  1968. "_id": ""
  1969. },
  1970. {
  1971. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  1972. "_name": "",
  1973. "_objFlags": 0,
  1974. "node": {
  1975. "__id__": 52
  1976. },
  1977. "_enabled": true,
  1978. "_englishCase": 0,
  1979. "i18n_string": "t324",
  1980. "i18n_params": [],
  1981. "_addColon": false,
  1982. "_id": ""
  1983. },
  1984. {
  1985. "__type__": "cc.PrefabInfo",
  1986. "root": {
  1987. "__id__": 52
  1988. },
  1989. "asset": {
  1990. "__uuid__": "b55c4816-1512-4abe-a683-117b4601b39a"
  1991. },
  1992. "fileId": "85gW3w/vZNxa/K/WWzqlXt",
  1993. "sync": false
  1994. },
  1995. {
  1996. "__type__": "cc.Sprite",
  1997. "_name": "",
  1998. "_objFlags": 0,
  1999. "node": {
  2000. "__id__": 18
  2001. },
  2002. "_enabled": true,
  2003. "_materials": [
  2004. {
  2005. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2006. }
  2007. ],
  2008. "_srcBlendFactor": 770,
  2009. "_dstBlendFactor": 771,
  2010. "_spriteFrame": {
  2011. "__uuid__": "f2a9fd92-10f7-4e39-b1e4-54d0059b8c1f"
  2012. },
  2013. "_type": 1,
  2014. "_sizeMode": 0,
  2015. "_fillType": 0,
  2016. "_fillCenter": {
  2017. "__type__": "cc.Vec2",
  2018. "x": 0,
  2019. "y": 0
  2020. },
  2021. "_fillStart": 0,
  2022. "_fillRange": 0,
  2023. "_isTrimmedMode": true,
  2024. "_atlas": null,
  2025. "_id": ""
  2026. },
  2027. {
  2028. "__type__": "cc.PrefabInfo",
  2029. "root": {
  2030. "__id__": 1
  2031. },
  2032. "asset": {
  2033. "__id__": 0
  2034. },
  2035. "fileId": "51TOrYudBEf7ZEqW1dQjIr",
  2036. "sync": false
  2037. },
  2038. {
  2039. "__type__": "cc.Node",
  2040. "_name": "sound",
  2041. "_objFlags": 0,
  2042. "_parent": {
  2043. "__id__": 1
  2044. },
  2045. "_children": [
  2046. {
  2047. "__id__": 60
  2048. },
  2049. {
  2050. "__id__": 63
  2051. },
  2052. {
  2053. "__id__": 93
  2054. }
  2055. ],
  2056. "_active": true,
  2057. "_components": [
  2058. {
  2059. "__id__": 98
  2060. }
  2061. ],
  2062. "_prefab": {
  2063. "__id__": 99
  2064. },
  2065. "_opacity": 255,
  2066. "_color": {
  2067. "__type__": "cc.Color",
  2068. "r": 255,
  2069. "g": 255,
  2070. "b": 255,
  2071. "a": 255
  2072. },
  2073. "_contentSize": {
  2074. "__type__": "cc.Size",
  2075. "width": 580,
  2076. "height": 100
  2077. },
  2078. "_anchorPoint": {
  2079. "__type__": "cc.Vec2",
  2080. "x": 0.5,
  2081. "y": 0.5
  2082. },
  2083. "_trs": {
  2084. "__type__": "TypedArray",
  2085. "ctor": "Float64Array",
  2086. "array": [
  2087. 0,
  2088. 114,
  2089. 0,
  2090. 0,
  2091. 0,
  2092. 0,
  2093. 1,
  2094. 1,
  2095. 1,
  2096. 1
  2097. ]
  2098. },
  2099. "_eulerAngles": {
  2100. "__type__": "cc.Vec3",
  2101. "x": 0,
  2102. "y": 0,
  2103. "z": 0
  2104. },
  2105. "_skewX": 0,
  2106. "_skewY": 0,
  2107. "_is3DNode": false,
  2108. "_groupIndex": 0,
  2109. "groupIndex": 0,
  2110. "_id": ""
  2111. },
  2112. {
  2113. "__type__": "cc.Node",
  2114. "_name": "icon",
  2115. "_objFlags": 0,
  2116. "_parent": {
  2117. "__id__": 59
  2118. },
  2119. "_children": [],
  2120. "_active": true,
  2121. "_components": [
  2122. {
  2123. "__id__": 61
  2124. }
  2125. ],
  2126. "_prefab": {
  2127. "__id__": 62
  2128. },
  2129. "_opacity": 255,
  2130. "_color": {
  2131. "__type__": "cc.Color",
  2132. "r": 255,
  2133. "g": 255,
  2134. "b": 255,
  2135. "a": 255
  2136. },
  2137. "_contentSize": {
  2138. "__type__": "cc.Size",
  2139. "width": 88,
  2140. "height": 81
  2141. },
  2142. "_anchorPoint": {
  2143. "__type__": "cc.Vec2",
  2144. "x": 0.5,
  2145. "y": 0.5
  2146. },
  2147. "_trs": {
  2148. "__type__": "TypedArray",
  2149. "ctor": "Float64Array",
  2150. "array": [
  2151. -228.248,
  2152. 0,
  2153. 0,
  2154. 0,
  2155. 0,
  2156. 0,
  2157. 1,
  2158. 1,
  2159. 1,
  2160. 1
  2161. ]
  2162. },
  2163. "_eulerAngles": {
  2164. "__type__": "cc.Vec3",
  2165. "x": 0,
  2166. "y": 0,
  2167. "z": 0
  2168. },
  2169. "_skewX": 0,
  2170. "_skewY": 0,
  2171. "_is3DNode": false,
  2172. "_groupIndex": 0,
  2173. "groupIndex": 0,
  2174. "_id": ""
  2175. },
  2176. {
  2177. "__type__": "cc.Sprite",
  2178. "_name": "",
  2179. "_objFlags": 0,
  2180. "node": {
  2181. "__id__": 60
  2182. },
  2183. "_enabled": true,
  2184. "_materials": [
  2185. {
  2186. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2187. }
  2188. ],
  2189. "_srcBlendFactor": 770,
  2190. "_dstBlendFactor": 771,
  2191. "_spriteFrame": {
  2192. "__uuid__": "742aad3d-a7f3-4691-908a-2b190fa5ebc2"
  2193. },
  2194. "_type": 0,
  2195. "_sizeMode": 1,
  2196. "_fillType": 0,
  2197. "_fillCenter": {
  2198. "__type__": "cc.Vec2",
  2199. "x": 0,
  2200. "y": 0
  2201. },
  2202. "_fillStart": 0,
  2203. "_fillRange": 0,
  2204. "_isTrimmedMode": true,
  2205. "_atlas": null,
  2206. "_id": ""
  2207. },
  2208. {
  2209. "__type__": "cc.PrefabInfo",
  2210. "root": {
  2211. "__id__": 1
  2212. },
  2213. "asset": {
  2214. "__id__": 0
  2215. },
  2216. "fileId": "bayheMubdLpKGtmQBuwKE1",
  2217. "sync": false
  2218. },
  2219. {
  2220. "__type__": "cc.Node",
  2221. "_name": "tog",
  2222. "_objFlags": 0,
  2223. "_parent": {
  2224. "__id__": 59
  2225. },
  2226. "_children": [
  2227. {
  2228. "__id__": 64
  2229. },
  2230. {
  2231. "__id__": 78
  2232. }
  2233. ],
  2234. "_active": true,
  2235. "_components": [
  2236. {
  2237. "__id__": 89
  2238. },
  2239. {
  2240. "__id__": 91
  2241. }
  2242. ],
  2243. "_prefab": {
  2244. "__id__": 92
  2245. },
  2246. "_opacity": 255,
  2247. "_color": {
  2248. "__type__": "cc.Color",
  2249. "r": 255,
  2250. "g": 255,
  2251. "b": 255,
  2252. "a": 255
  2253. },
  2254. "_contentSize": {
  2255. "__type__": "cc.Size",
  2256. "width": 240,
  2257. "height": 80
  2258. },
  2259. "_anchorPoint": {
  2260. "__type__": "cc.Vec2",
  2261. "x": 0.5,
  2262. "y": 0.5
  2263. },
  2264. "_trs": {
  2265. "__type__": "TypedArray",
  2266. "ctor": "Float64Array",
  2267. "array": [
  2268. 156.566,
  2269. 0,
  2270. 0,
  2271. 0,
  2272. 0,
  2273. 0,
  2274. 1,
  2275. 1,
  2276. 1,
  2277. 1
  2278. ]
  2279. },
  2280. "_eulerAngles": {
  2281. "__type__": "cc.Vec3",
  2282. "x": 0,
  2283. "y": 0,
  2284. "z": 0
  2285. },
  2286. "_skewX": 0,
  2287. "_skewY": 0,
  2288. "_is3DNode": false,
  2289. "_groupIndex": 0,
  2290. "groupIndex": 0,
  2291. "_id": ""
  2292. },
  2293. {
  2294. "__type__": "cc.Node",
  2295. "_name": "Background",
  2296. "_objFlags": 0,
  2297. "_parent": {
  2298. "__id__": 63
  2299. },
  2300. "_children": [
  2301. {
  2302. "__id__": 65
  2303. },
  2304. {
  2305. "__id__": 68
  2306. },
  2307. {
  2308. "__id__": 73
  2309. }
  2310. ],
  2311. "_active": true,
  2312. "_components": [
  2313. {
  2314. "__id__": 76
  2315. }
  2316. ],
  2317. "_prefab": {
  2318. "__id__": 77
  2319. },
  2320. "_opacity": 255,
  2321. "_color": {
  2322. "__type__": "cc.Color",
  2323. "r": 91,
  2324. "g": 91,
  2325. "b": 91,
  2326. "a": 255
  2327. },
  2328. "_contentSize": {
  2329. "__type__": "cc.Size",
  2330. "width": 218,
  2331. "height": 58
  2332. },
  2333. "_anchorPoint": {
  2334. "__type__": "cc.Vec2",
  2335. "x": 0.5,
  2336. "y": 0.5
  2337. },
  2338. "_trs": {
  2339. "__type__": "TypedArray",
  2340. "ctor": "Float64Array",
  2341. "array": [
  2342. 0,
  2343. 0,
  2344. 0,
  2345. 0,
  2346. 0,
  2347. 0,
  2348. 1,
  2349. 1,
  2350. 1,
  2351. 0
  2352. ]
  2353. },
  2354. "_eulerAngles": {
  2355. "__type__": "cc.Vec3",
  2356. "x": 0,
  2357. "y": 0,
  2358. "z": 0
  2359. },
  2360. "_skewX": 0,
  2361. "_skewY": 0,
  2362. "_is3DNode": false,
  2363. "_groupIndex": 0,
  2364. "groupIndex": 0,
  2365. "_id": ""
  2366. },
  2367. {
  2368. "__type__": "cc.Node",
  2369. "_name": "frame",
  2370. "_objFlags": 0,
  2371. "_parent": {
  2372. "__id__": 64
  2373. },
  2374. "_children": [],
  2375. "_active": true,
  2376. "_components": [
  2377. {
  2378. "__id__": 66
  2379. }
  2380. ],
  2381. "_prefab": {
  2382. "__id__": 67
  2383. },
  2384. "_opacity": 255,
  2385. "_color": {
  2386. "__type__": "cc.Color",
  2387. "r": 255,
  2388. "g": 255,
  2389. "b": 255,
  2390. "a": 255
  2391. },
  2392. "_contentSize": {
  2393. "__type__": "cc.Size",
  2394. "width": 120,
  2395. "height": 80
  2396. },
  2397. "_anchorPoint": {
  2398. "__type__": "cc.Vec2",
  2399. "x": 0.5,
  2400. "y": 0.5
  2401. },
  2402. "_trs": {
  2403. "__type__": "TypedArray",
  2404. "ctor": "Float64Array",
  2405. "array": [
  2406. -60,
  2407. 0,
  2408. 0,
  2409. 0,
  2410. 0,
  2411. 0,
  2412. 1,
  2413. 1,
  2414. 1,
  2415. 1
  2416. ]
  2417. },
  2418. "_eulerAngles": {
  2419. "__type__": "cc.Vec3",
  2420. "x": 0,
  2421. "y": 0,
  2422. "z": 0
  2423. },
  2424. "_skewX": 0,
  2425. "_skewY": 0,
  2426. "_is3DNode": false,
  2427. "_groupIndex": 0,
  2428. "groupIndex": 0,
  2429. "_id": ""
  2430. },
  2431. {
  2432. "__type__": "cc.Sprite",
  2433. "_name": "",
  2434. "_objFlags": 0,
  2435. "node": {
  2436. "__id__": 65
  2437. },
  2438. "_enabled": true,
  2439. "_materials": [
  2440. {
  2441. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2442. }
  2443. ],
  2444. "_srcBlendFactor": 770,
  2445. "_dstBlendFactor": 771,
  2446. "_spriteFrame": {
  2447. "__uuid__": "e5c440fd-41bb-4128-bf90-5c74b8550af2"
  2448. },
  2449. "_type": 1,
  2450. "_sizeMode": 0,
  2451. "_fillType": 0,
  2452. "_fillCenter": {
  2453. "__type__": "cc.Vec2",
  2454. "x": 0,
  2455. "y": 0
  2456. },
  2457. "_fillStart": 0,
  2458. "_fillRange": 0,
  2459. "_isTrimmedMode": true,
  2460. "_atlas": null,
  2461. "_id": ""
  2462. },
  2463. {
  2464. "__type__": "cc.PrefabInfo",
  2465. "root": {
  2466. "__id__": 1
  2467. },
  2468. "asset": {
  2469. "__id__": 0
  2470. },
  2471. "fileId": "fekmSTae5KWpoDaBbq4GDi",
  2472. "sync": false
  2473. },
  2474. {
  2475. "__type__": "cc.Node",
  2476. "_name": "lb",
  2477. "_objFlags": 0,
  2478. "_parent": {
  2479. "__id__": 64
  2480. },
  2481. "_children": [],
  2482. "_active": true,
  2483. "_components": [
  2484. {
  2485. "__id__": 69
  2486. },
  2487. {
  2488. "__id__": 70
  2489. },
  2490. {
  2491. "__id__": 71
  2492. }
  2493. ],
  2494. "_prefab": {
  2495. "__id__": 72
  2496. },
  2497. "_opacity": 255,
  2498. "_color": {
  2499. "__type__": "cc.Color",
  2500. "r": 170,
  2501. "g": 170,
  2502. "b": 170,
  2503. "a": 255
  2504. },
  2505. "_contentSize": {
  2506. "__type__": "cc.Size",
  2507. "width": 74.87,
  2508. "height": 51.36
  2509. },
  2510. "_anchorPoint": {
  2511. "__type__": "cc.Vec2",
  2512. "x": 0.5,
  2513. "y": 0.5
  2514. },
  2515. "_trs": {
  2516. "__type__": "TypedArray",
  2517. "ctor": "Float64Array",
  2518. "array": [
  2519. -60,
  2520. 0,
  2521. 0,
  2522. 0,
  2523. 0,
  2524. 0,
  2525. 1,
  2526. 1,
  2527. 1,
  2528. 1
  2529. ]
  2530. },
  2531. "_eulerAngles": {
  2532. "__type__": "cc.Vec3",
  2533. "x": 0,
  2534. "y": 0,
  2535. "z": 0
  2536. },
  2537. "_skewX": 0,
  2538. "_skewY": 0,
  2539. "_is3DNode": false,
  2540. "_groupIndex": 0,
  2541. "groupIndex": 0,
  2542. "_id": ""
  2543. },
  2544. {
  2545. "__type__": "cc.Label",
  2546. "_name": "",
  2547. "_objFlags": 0,
  2548. "node": {
  2549. "__id__": 68
  2550. },
  2551. "_enabled": true,
  2552. "_materials": [
  2553. {
  2554. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2555. }
  2556. ],
  2557. "_srcBlendFactor": 770,
  2558. "_dstBlendFactor": 771,
  2559. "_string": "OFF",
  2560. "_N$string": "OFF",
  2561. "_fontSize": 36,
  2562. "_lineHeight": 36,
  2563. "_enableWrapText": true,
  2564. "_N$file": {
  2565. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  2566. },
  2567. "_isSystemFontUsed": false,
  2568. "_spacingX": 0,
  2569. "_batchAsBitmap": false,
  2570. "_styleFlags": 0,
  2571. "_underlineHeight": 0,
  2572. "_N$horizontalAlign": 1,
  2573. "_N$verticalAlign": 1,
  2574. "_N$fontFamily": "Arial",
  2575. "_N$overflow": 0,
  2576. "_N$cacheMode": 0,
  2577. "_id": ""
  2578. },
  2579. {
  2580. "__type__": "cc.LabelOutline",
  2581. "_name": "",
  2582. "_objFlags": 0,
  2583. "node": {
  2584. "__id__": 68
  2585. },
  2586. "_enabled": true,
  2587. "_color": {
  2588. "__type__": "cc.Color",
  2589. "r": 38,
  2590. "g": 17,
  2591. "b": 12,
  2592. "a": 255
  2593. },
  2594. "_width": 3,
  2595. "_id": ""
  2596. },
  2597. {
  2598. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  2599. "_name": "",
  2600. "_objFlags": 0,
  2601. "node": {
  2602. "__id__": 68
  2603. },
  2604. "_enabled": true,
  2605. "_englishCase": 0,
  2606. "i18n_string": "OFF",
  2607. "i18n_params": [],
  2608. "_addColon": false,
  2609. "_id": ""
  2610. },
  2611. {
  2612. "__type__": "cc.PrefabInfo",
  2613. "root": {
  2614. "__id__": 68
  2615. },
  2616. "asset": {
  2617. "__uuid__": "b55c4816-1512-4abe-a683-117b4601b39a"
  2618. },
  2619. "fileId": "40mktb4cdD6IPYTBagWRb4",
  2620. "sync": false
  2621. },
  2622. {
  2623. "__type__": "cc.Node",
  2624. "_name": "close",
  2625. "_objFlags": 0,
  2626. "_parent": {
  2627. "__id__": 64
  2628. },
  2629. "_children": [],
  2630. "_active": true,
  2631. "_components": [
  2632. {
  2633. "__id__": 74
  2634. }
  2635. ],
  2636. "_prefab": {
  2637. "__id__": 75
  2638. },
  2639. "_opacity": 255,
  2640. "_color": {
  2641. "__type__": "cc.Color",
  2642. "r": 255,
  2643. "g": 255,
  2644. "b": 255,
  2645. "a": 255
  2646. },
  2647. "_contentSize": {
  2648. "__type__": "cc.Size",
  2649. "width": 59,
  2650. "height": 60
  2651. },
  2652. "_anchorPoint": {
  2653. "__type__": "cc.Vec2",
  2654. "x": 0.5,
  2655. "y": 0.5
  2656. },
  2657. "_trs": {
  2658. "__type__": "TypedArray",
  2659. "ctor": "Float64Array",
  2660. "array": [
  2661. -348.881,
  2662. -12.242,
  2663. 0,
  2664. 0,
  2665. 0,
  2666. 0,
  2667. 1,
  2668. 1,
  2669. 1,
  2670. 1
  2671. ]
  2672. },
  2673. "_eulerAngles": {
  2674. "__type__": "cc.Vec3",
  2675. "x": 0,
  2676. "y": 0,
  2677. "z": 0
  2678. },
  2679. "_skewX": 0,
  2680. "_skewY": 0,
  2681. "_is3DNode": false,
  2682. "_groupIndex": 0,
  2683. "groupIndex": 0,
  2684. "_id": ""
  2685. },
  2686. {
  2687. "__type__": "cc.Sprite",
  2688. "_name": "",
  2689. "_objFlags": 0,
  2690. "node": {
  2691. "__id__": 73
  2692. },
  2693. "_enabled": true,
  2694. "_materials": [
  2695. {
  2696. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2697. }
  2698. ],
  2699. "_srcBlendFactor": 770,
  2700. "_dstBlendFactor": 771,
  2701. "_spriteFrame": {
  2702. "__uuid__": "74f29d4a-bae6-4a05-b99d-89d7ba3f3c9f"
  2703. },
  2704. "_type": 0,
  2705. "_sizeMode": 1,
  2706. "_fillType": 0,
  2707. "_fillCenter": {
  2708. "__type__": "cc.Vec2",
  2709. "x": 0,
  2710. "y": 0
  2711. },
  2712. "_fillStart": 0,
  2713. "_fillRange": 0,
  2714. "_isTrimmedMode": true,
  2715. "_atlas": null,
  2716. "_id": ""
  2717. },
  2718. {
  2719. "__type__": "cc.PrefabInfo",
  2720. "root": {
  2721. "__id__": 1
  2722. },
  2723. "asset": {
  2724. "__id__": 0
  2725. },
  2726. "fileId": "53f1lKT7JKQJW+XaauzZOx",
  2727. "sync": false
  2728. },
  2729. {
  2730. "__type__": "cc.Sprite",
  2731. "_name": "",
  2732. "_objFlags": 0,
  2733. "node": {
  2734. "__id__": 64
  2735. },
  2736. "_enabled": true,
  2737. "_materials": [
  2738. {
  2739. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2740. }
  2741. ],
  2742. "_srcBlendFactor": 770,
  2743. "_dstBlendFactor": 771,
  2744. "_spriteFrame": {
  2745. "__uuid__": "b1f64ee3-dd78-476c-bb28-83d9997f558e"
  2746. },
  2747. "_type": 1,
  2748. "_sizeMode": 0,
  2749. "_fillType": 0,
  2750. "_fillCenter": {
  2751. "__type__": "cc.Vec2",
  2752. "x": 0,
  2753. "y": 0
  2754. },
  2755. "_fillStart": 0,
  2756. "_fillRange": 0,
  2757. "_isTrimmedMode": true,
  2758. "_atlas": null,
  2759. "_id": ""
  2760. },
  2761. {
  2762. "__type__": "cc.PrefabInfo",
  2763. "root": {
  2764. "__id__": 1
  2765. },
  2766. "asset": {
  2767. "__id__": 0
  2768. },
  2769. "fileId": "3fx/Y7nvtJVIhT5lIalYED",
  2770. "sync": false
  2771. },
  2772. {
  2773. "__type__": "cc.Node",
  2774. "_name": "checkmark",
  2775. "_objFlags": 0,
  2776. "_parent": {
  2777. "__id__": 63
  2778. },
  2779. "_children": [
  2780. {
  2781. "__id__": 79
  2782. },
  2783. {
  2784. "__id__": 82
  2785. }
  2786. ],
  2787. "_active": false,
  2788. "_components": [
  2789. {
  2790. "__id__": 87
  2791. }
  2792. ],
  2793. "_prefab": {
  2794. "__id__": 88
  2795. },
  2796. "_opacity": 255,
  2797. "_color": {
  2798. "__type__": "cc.Color",
  2799. "r": 250,
  2800. "g": 199,
  2801. "b": 62,
  2802. "a": 255
  2803. },
  2804. "_contentSize": {
  2805. "__type__": "cc.Size",
  2806. "width": 218,
  2807. "height": 58
  2808. },
  2809. "_anchorPoint": {
  2810. "__type__": "cc.Vec2",
  2811. "x": 0.5,
  2812. "y": 0.5
  2813. },
  2814. "_trs": {
  2815. "__type__": "TypedArray",
  2816. "ctor": "Float64Array",
  2817. "array": [
  2818. 0,
  2819. 0,
  2820. 0,
  2821. 0,
  2822. 0,
  2823. 0,
  2824. 1,
  2825. 1,
  2826. 1,
  2827. 1
  2828. ]
  2829. },
  2830. "_eulerAngles": {
  2831. "__type__": "cc.Vec3",
  2832. "x": 0,
  2833. "y": 0,
  2834. "z": 0
  2835. },
  2836. "_skewX": 0,
  2837. "_skewY": 0,
  2838. "_is3DNode": false,
  2839. "_groupIndex": 0,
  2840. "groupIndex": 0,
  2841. "_id": ""
  2842. },
  2843. {
  2844. "__type__": "cc.Node",
  2845. "_name": "frame",
  2846. "_objFlags": 0,
  2847. "_parent": {
  2848. "__id__": 78
  2849. },
  2850. "_children": [],
  2851. "_active": true,
  2852. "_components": [
  2853. {
  2854. "__id__": 80
  2855. }
  2856. ],
  2857. "_prefab": {
  2858. "__id__": 81
  2859. },
  2860. "_opacity": 255,
  2861. "_color": {
  2862. "__type__": "cc.Color",
  2863. "r": 255,
  2864. "g": 255,
  2865. "b": 255,
  2866. "a": 255
  2867. },
  2868. "_contentSize": {
  2869. "__type__": "cc.Size",
  2870. "width": 120,
  2871. "height": 80
  2872. },
  2873. "_anchorPoint": {
  2874. "__type__": "cc.Vec2",
  2875. "x": 0.5,
  2876. "y": 0.5
  2877. },
  2878. "_trs": {
  2879. "__type__": "TypedArray",
  2880. "ctor": "Float64Array",
  2881. "array": [
  2882. 60,
  2883. 0,
  2884. 0,
  2885. 0,
  2886. 0,
  2887. 0,
  2888. 1,
  2889. 1,
  2890. 1,
  2891. 1
  2892. ]
  2893. },
  2894. "_eulerAngles": {
  2895. "__type__": "cc.Vec3",
  2896. "x": 0,
  2897. "y": 0,
  2898. "z": 0
  2899. },
  2900. "_skewX": 0,
  2901. "_skewY": 0,
  2902. "_is3DNode": false,
  2903. "_groupIndex": 0,
  2904. "groupIndex": 0,
  2905. "_id": ""
  2906. },
  2907. {
  2908. "__type__": "cc.Sprite",
  2909. "_name": "",
  2910. "_objFlags": 0,
  2911. "node": {
  2912. "__id__": 79
  2913. },
  2914. "_enabled": true,
  2915. "_materials": [
  2916. {
  2917. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2918. }
  2919. ],
  2920. "_srcBlendFactor": 770,
  2921. "_dstBlendFactor": 771,
  2922. "_spriteFrame": {
  2923. "__uuid__": "16ef86cd-a92f-48eb-8d2d-8b5be206246e"
  2924. },
  2925. "_type": 1,
  2926. "_sizeMode": 0,
  2927. "_fillType": 0,
  2928. "_fillCenter": {
  2929. "__type__": "cc.Vec2",
  2930. "x": 0,
  2931. "y": 0
  2932. },
  2933. "_fillStart": 0,
  2934. "_fillRange": 0,
  2935. "_isTrimmedMode": true,
  2936. "_atlas": null,
  2937. "_id": ""
  2938. },
  2939. {
  2940. "__type__": "cc.PrefabInfo",
  2941. "root": {
  2942. "__id__": 1
  2943. },
  2944. "asset": {
  2945. "__id__": 0
  2946. },
  2947. "fileId": "8cCFaOxiREwJHxcbV7Og29",
  2948. "sync": false
  2949. },
  2950. {
  2951. "__type__": "cc.Node",
  2952. "_name": "lb",
  2953. "_objFlags": 0,
  2954. "_parent": {
  2955. "__id__": 78
  2956. },
  2957. "_children": [],
  2958. "_active": true,
  2959. "_components": [
  2960. {
  2961. "__id__": 83
  2962. },
  2963. {
  2964. "__id__": 84
  2965. },
  2966. {
  2967. "__id__": 85
  2968. }
  2969. ],
  2970. "_prefab": {
  2971. "__id__": 86
  2972. },
  2973. "_opacity": 255,
  2974. "_color": {
  2975. "__type__": "cc.Color",
  2976. "r": 255,
  2977. "g": 239,
  2978. "b": 129,
  2979. "a": 255
  2980. },
  2981. "_contentSize": {
  2982. "__type__": "cc.Size",
  2983. "width": 72.95,
  2984. "height": 42
  2985. },
  2986. "_anchorPoint": {
  2987. "__type__": "cc.Vec2",
  2988. "x": 0.5,
  2989. "y": 0.5
  2990. },
  2991. "_trs": {
  2992. "__type__": "TypedArray",
  2993. "ctor": "Float64Array",
  2994. "array": [
  2995. 60,
  2996. 0,
  2997. 0,
  2998. 0,
  2999. 0,
  3000. 0,
  3001. 1,
  3002. 1,
  3003. 1,
  3004. 1
  3005. ]
  3006. },
  3007. "_eulerAngles": {
  3008. "__type__": "cc.Vec3",
  3009. "x": 0,
  3010. "y": 0,
  3011. "z": 0
  3012. },
  3013. "_skewX": 0,
  3014. "_skewY": 0,
  3015. "_is3DNode": false,
  3016. "_groupIndex": 0,
  3017. "groupIndex": 0,
  3018. "_id": ""
  3019. },
  3020. {
  3021. "__type__": "cc.Label",
  3022. "_name": "",
  3023. "_objFlags": 0,
  3024. "node": {
  3025. "__id__": 82
  3026. },
  3027. "_enabled": true,
  3028. "_materials": [
  3029. {
  3030. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3031. }
  3032. ],
  3033. "_srcBlendFactor": 770,
  3034. "_dstBlendFactor": 771,
  3035. "_string": "ON",
  3036. "_N$string": "ON",
  3037. "_fontSize": 36,
  3038. "_lineHeight": 36,
  3039. "_enableWrapText": true,
  3040. "_N$file": {
  3041. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  3042. },
  3043. "_isSystemFontUsed": false,
  3044. "_spacingX": 0,
  3045. "_batchAsBitmap": false,
  3046. "_styleFlags": 0,
  3047. "_underlineHeight": 0,
  3048. "_N$horizontalAlign": 1,
  3049. "_N$verticalAlign": 1,
  3050. "_N$fontFamily": "Arial",
  3051. "_N$overflow": 0,
  3052. "_N$cacheMode": 0,
  3053. "_id": ""
  3054. },
  3055. {
  3056. "__type__": "cc.LabelOutline",
  3057. "_name": "",
  3058. "_objFlags": 0,
  3059. "node": {
  3060. "__id__": 82
  3061. },
  3062. "_enabled": true,
  3063. "_color": {
  3064. "__type__": "cc.Color",
  3065. "r": 38,
  3066. "g": 17,
  3067. "b": 12,
  3068. "a": 255
  3069. },
  3070. "_width": 3,
  3071. "_id": ""
  3072. },
  3073. {
  3074. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  3075. "_name": "",
  3076. "_objFlags": 0,
  3077. "node": {
  3078. "__id__": 82
  3079. },
  3080. "_enabled": true,
  3081. "_englishCase": 0,
  3082. "i18n_string": "ON",
  3083. "i18n_params": [],
  3084. "_addColon": false,
  3085. "_id": ""
  3086. },
  3087. {
  3088. "__type__": "cc.PrefabInfo",
  3089. "root": {
  3090. "__id__": 82
  3091. },
  3092. "asset": {
  3093. "__uuid__": "b55c4816-1512-4abe-a683-117b4601b39a"
  3094. },
  3095. "fileId": "8e0+7h9blN9reNxpgnRY87",
  3096. "sync": false
  3097. },
  3098. {
  3099. "__type__": "cc.Sprite",
  3100. "_name": "",
  3101. "_objFlags": 0,
  3102. "node": {
  3103. "__id__": 78
  3104. },
  3105. "_enabled": true,
  3106. "_materials": [
  3107. {
  3108. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3109. }
  3110. ],
  3111. "_srcBlendFactor": 770,
  3112. "_dstBlendFactor": 771,
  3113. "_spriteFrame": {
  3114. "__uuid__": "b1f64ee3-dd78-476c-bb28-83d9997f558e"
  3115. },
  3116. "_type": 0,
  3117. "_sizeMode": 0,
  3118. "_fillType": 0,
  3119. "_fillCenter": {
  3120. "__type__": "cc.Vec2",
  3121. "x": 0,
  3122. "y": 0
  3123. },
  3124. "_fillStart": 0,
  3125. "_fillRange": 0,
  3126. "_isTrimmedMode": false,
  3127. "_atlas": null,
  3128. "_id": ""
  3129. },
  3130. {
  3131. "__type__": "cc.PrefabInfo",
  3132. "root": {
  3133. "__id__": 1
  3134. },
  3135. "asset": {
  3136. "__id__": 0
  3137. },
  3138. "fileId": "f4E4QfN1BNMrnaci2fZWIK",
  3139. "sync": false
  3140. },
  3141. {
  3142. "__type__": "cc.Toggle",
  3143. "_name": "",
  3144. "_objFlags": 0,
  3145. "node": {
  3146. "__id__": 63
  3147. },
  3148. "_enabled": true,
  3149. "_normalMaterial": null,
  3150. "_grayMaterial": null,
  3151. "duration": 0.1,
  3152. "zoomScale": 1,
  3153. "clickEvents": [],
  3154. "_N$interactable": true,
  3155. "_N$enableAutoGrayEffect": false,
  3156. "_N$transition": 3,
  3157. "transition": 3,
  3158. "_N$normalColor": {
  3159. "__type__": "cc.Color",
  3160. "r": 214,
  3161. "g": 214,
  3162. "b": 214,
  3163. "a": 255
  3164. },
  3165. "_N$pressedColor": {
  3166. "__type__": "cc.Color",
  3167. "r": 211,
  3168. "g": 211,
  3169. "b": 211,
  3170. "a": 255
  3171. },
  3172. "pressedColor": {
  3173. "__type__": "cc.Color",
  3174. "r": 211,
  3175. "g": 211,
  3176. "b": 211,
  3177. "a": 255
  3178. },
  3179. "_N$hoverColor": {
  3180. "__type__": "cc.Color",
  3181. "r": 255,
  3182. "g": 255,
  3183. "b": 255,
  3184. "a": 255
  3185. },
  3186. "hoverColor": {
  3187. "__type__": "cc.Color",
  3188. "r": 255,
  3189. "g": 255,
  3190. "b": 255,
  3191. "a": 255
  3192. },
  3193. "_N$disabledColor": {
  3194. "__type__": "cc.Color",
  3195. "r": 124,
  3196. "g": 124,
  3197. "b": 124,
  3198. "a": 255
  3199. },
  3200. "_N$normalSprite": null,
  3201. "_N$pressedSprite": null,
  3202. "pressedSprite": null,
  3203. "_N$hoverSprite": null,
  3204. "hoverSprite": null,
  3205. "_N$disabledSprite": null,
  3206. "_N$target": {
  3207. "__id__": 64
  3208. },
  3209. "_N$isChecked": true,
  3210. "toggleGroup": null,
  3211. "checkMark": {
  3212. "__id__": 87
  3213. },
  3214. "checkEvents": [
  3215. {
  3216. "__id__": 90
  3217. }
  3218. ],
  3219. "_id": ""
  3220. },
  3221. {
  3222. "__type__": "cc.ClickEvent",
  3223. "target": {
  3224. "__id__": 1
  3225. },
  3226. "component": "",
  3227. "_componentId": "6874dk0AwFNj4RXgBqY+CMZ",
  3228. "handler": "onClickSound",
  3229. "customEventData": ""
  3230. },
  3231. {
  3232. "__type__": "cc.Sprite",
  3233. "_name": "",
  3234. "_objFlags": 0,
  3235. "node": {
  3236. "__id__": 63
  3237. },
  3238. "_enabled": true,
  3239. "_materials": [
  3240. {
  3241. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3242. }
  3243. ],
  3244. "_srcBlendFactor": 770,
  3245. "_dstBlendFactor": 771,
  3246. "_spriteFrame": {
  3247. "__uuid__": "a75724db-0345-46b3-bba1-6ea6743fbe06"
  3248. },
  3249. "_type": 1,
  3250. "_sizeMode": 0,
  3251. "_fillType": 0,
  3252. "_fillCenter": {
  3253. "__type__": "cc.Vec2",
  3254. "x": 0,
  3255. "y": 0
  3256. },
  3257. "_fillStart": 0,
  3258. "_fillRange": 0,
  3259. "_isTrimmedMode": true,
  3260. "_atlas": null,
  3261. "_id": ""
  3262. },
  3263. {
  3264. "__type__": "cc.PrefabInfo",
  3265. "root": {
  3266. "__id__": 1
  3267. },
  3268. "asset": {
  3269. "__id__": 0
  3270. },
  3271. "fileId": "54XsstgHxOrbehNfnsb1Qe",
  3272. "sync": false
  3273. },
  3274. {
  3275. "__type__": "cc.Node",
  3276. "_name": "lb",
  3277. "_objFlags": 0,
  3278. "_parent": {
  3279. "__id__": 59
  3280. },
  3281. "_children": [],
  3282. "_active": true,
  3283. "_components": [
  3284. {
  3285. "__id__": 94
  3286. },
  3287. {
  3288. "__id__": 95
  3289. },
  3290. {
  3291. "__id__": 96
  3292. }
  3293. ],
  3294. "_prefab": {
  3295. "__id__": 97
  3296. },
  3297. "_opacity": 255,
  3298. "_color": {
  3299. "__type__": "cc.Color",
  3300. "r": 255,
  3301. "g": 255,
  3302. "b": 255,
  3303. "a": 255
  3304. },
  3305. "_contentSize": {
  3306. "__type__": "cc.Size",
  3307. "width": 126.82,
  3308. "height": 66.47999999999999
  3309. },
  3310. "_anchorPoint": {
  3311. "__type__": "cc.Vec2",
  3312. "x": 0.5,
  3313. "y": 0.5
  3314. },
  3315. "_trs": {
  3316. "__type__": "TypedArray",
  3317. "ctor": "Float64Array",
  3318. "array": [
  3319. -65.1,
  3320. -0.302,
  3321. 0,
  3322. 0,
  3323. 0,
  3324. 0,
  3325. 1,
  3326. 1,
  3327. 1,
  3328. 1
  3329. ]
  3330. },
  3331. "_eulerAngles": {
  3332. "__type__": "cc.Vec3",
  3333. "x": 0,
  3334. "y": 0,
  3335. "z": 0
  3336. },
  3337. "_skewX": 0,
  3338. "_skewY": 0,
  3339. "_is3DNode": false,
  3340. "_groupIndex": 0,
  3341. "groupIndex": 0,
  3342. "_id": ""
  3343. },
  3344. {
  3345. "__type__": "cc.Label",
  3346. "_name": "",
  3347. "_objFlags": 0,
  3348. "node": {
  3349. "__id__": 93
  3350. },
  3351. "_enabled": true,
  3352. "_materials": [
  3353. {
  3354. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3355. }
  3356. ],
  3357. "_srcBlendFactor": 770,
  3358. "_dstBlendFactor": 771,
  3359. "_string": "sound",
  3360. "_N$string": "sound",
  3361. "_fontSize": 48,
  3362. "_lineHeight": 48,
  3363. "_enableWrapText": true,
  3364. "_N$file": {
  3365. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  3366. },
  3367. "_isSystemFontUsed": false,
  3368. "_spacingX": 0,
  3369. "_batchAsBitmap": false,
  3370. "_styleFlags": 0,
  3371. "_underlineHeight": 0,
  3372. "_N$horizontalAlign": 1,
  3373. "_N$verticalAlign": 1,
  3374. "_N$fontFamily": "Arial",
  3375. "_N$overflow": 0,
  3376. "_N$cacheMode": 0,
  3377. "_id": ""
  3378. },
  3379. {
  3380. "__type__": "cc.LabelOutline",
  3381. "_name": "",
  3382. "_objFlags": 0,
  3383. "node": {
  3384. "__id__": 93
  3385. },
  3386. "_enabled": true,
  3387. "_color": {
  3388. "__type__": "cc.Color",
  3389. "r": 38,
  3390. "g": 17,
  3391. "b": 12,
  3392. "a": 255
  3393. },
  3394. "_width": 3,
  3395. "_id": ""
  3396. },
  3397. {
  3398. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  3399. "_name": "",
  3400. "_objFlags": 0,
  3401. "node": {
  3402. "__id__": 93
  3403. },
  3404. "_enabled": true,
  3405. "_englishCase": 0,
  3406. "i18n_string": "t325",
  3407. "i18n_params": [],
  3408. "_addColon": false,
  3409. "_id": ""
  3410. },
  3411. {
  3412. "__type__": "cc.PrefabInfo",
  3413. "root": {
  3414. "__id__": 93
  3415. },
  3416. "asset": {
  3417. "__uuid__": "b55c4816-1512-4abe-a683-117b4601b39a"
  3418. },
  3419. "fileId": "85gW3w/vZNxa/K/WWzqlXt",
  3420. "sync": false
  3421. },
  3422. {
  3423. "__type__": "cc.Sprite",
  3424. "_name": "",
  3425. "_objFlags": 0,
  3426. "node": {
  3427. "__id__": 59
  3428. },
  3429. "_enabled": true,
  3430. "_materials": [
  3431. {
  3432. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3433. }
  3434. ],
  3435. "_srcBlendFactor": 770,
  3436. "_dstBlendFactor": 771,
  3437. "_spriteFrame": {
  3438. "__uuid__": "f2a9fd92-10f7-4e39-b1e4-54d0059b8c1f"
  3439. },
  3440. "_type": 1,
  3441. "_sizeMode": 0,
  3442. "_fillType": 0,
  3443. "_fillCenter": {
  3444. "__type__": "cc.Vec2",
  3445. "x": 0,
  3446. "y": 0
  3447. },
  3448. "_fillStart": 0,
  3449. "_fillRange": 0,
  3450. "_isTrimmedMode": true,
  3451. "_atlas": null,
  3452. "_id": ""
  3453. },
  3454. {
  3455. "__type__": "cc.PrefabInfo",
  3456. "root": {
  3457. "__id__": 1
  3458. },
  3459. "asset": {
  3460. "__id__": 0
  3461. },
  3462. "fileId": "66Swk0FMBDP7OrRKJ8dMvK",
  3463. "sync": false
  3464. },
  3465. {
  3466. "__type__": "cc.Node",
  3467. "_name": "btn_list",
  3468. "_objFlags": 0,
  3469. "_parent": {
  3470. "__id__": 1
  3471. },
  3472. "_children": [
  3473. {
  3474. "__id__": 101
  3475. },
  3476. {
  3477. "__id__": 112
  3478. },
  3479. {
  3480. "__id__": 123
  3481. },
  3482. {
  3483. "__id__": 134
  3484. },
  3485. {
  3486. "__id__": 145
  3487. },
  3488. {
  3489. "__id__": 156
  3490. }
  3491. ],
  3492. "_active": true,
  3493. "_components": [
  3494. {
  3495. "__id__": 167
  3496. }
  3497. ],
  3498. "_prefab": {
  3499. "__id__": 168
  3500. },
  3501. "_opacity": 255,
  3502. "_color": {
  3503. "__type__": "cc.Color",
  3504. "r": 255,
  3505. "g": 255,
  3506. "b": 255,
  3507. "a": 255
  3508. },
  3509. "_contentSize": {
  3510. "__type__": "cc.Size",
  3511. "width": 1000,
  3512. "height": 106
  3513. },
  3514. "_anchorPoint": {
  3515. "__type__": "cc.Vec2",
  3516. "x": 0,
  3517. "y": 1
  3518. },
  3519. "_trs": {
  3520. "__type__": "TypedArray",
  3521. "ctor": "Float64Array",
  3522. "array": [
  3523. -478.073,
  3524. 31.343000000000004,
  3525. 0,
  3526. 0,
  3527. 0,
  3528. 0,
  3529. 1,
  3530. 1,
  3531. 1,
  3532. 1
  3533. ]
  3534. },
  3535. "_eulerAngles": {
  3536. "__type__": "cc.Vec3",
  3537. "x": 0,
  3538. "y": 0,
  3539. "z": 0
  3540. },
  3541. "_skewX": 0,
  3542. "_skewY": 0,
  3543. "_is3DNode": false,
  3544. "_groupIndex": 0,
  3545. "groupIndex": 0,
  3546. "_id": ""
  3547. },
  3548. {
  3549. "__type__": "cc.Node",
  3550. "_name": "switch_account",
  3551. "_objFlags": 0,
  3552. "_parent": {
  3553. "__id__": 100
  3554. },
  3555. "_children": [
  3556. {
  3557. "__id__": 102
  3558. }
  3559. ],
  3560. "_active": true,
  3561. "_components": [
  3562. {
  3563. "__id__": 107
  3564. },
  3565. {
  3566. "__id__": 108
  3567. },
  3568. {
  3569. "__id__": 109
  3570. }
  3571. ],
  3572. "_prefab": {
  3573. "__id__": 111
  3574. },
  3575. "_opacity": 255,
  3576. "_color": {
  3577. "__type__": "cc.Color",
  3578. "r": 255,
  3579. "g": 255,
  3580. "b": 255,
  3581. "a": 255
  3582. },
  3583. "_contentSize": {
  3584. "__type__": "cc.Size",
  3585. "width": 306,
  3586. "height": 106
  3587. },
  3588. "_anchorPoint": {
  3589. "__type__": "cc.Vec2",
  3590. "x": 0.5,
  3591. "y": 0.5
  3592. },
  3593. "_trs": {
  3594. "__type__": "TypedArray",
  3595. "ctor": "Float64Array",
  3596. "array": [
  3597. 153,
  3598. -53,
  3599. 0,
  3600. 0,
  3601. 0,
  3602. 0,
  3603. 1,
  3604. 1,
  3605. 1,
  3606. 0
  3607. ]
  3608. },
  3609. "_eulerAngles": {
  3610. "__type__": "cc.Vec3",
  3611. "x": 0,
  3612. "y": 0,
  3613. "z": 0
  3614. },
  3615. "_skewX": 0,
  3616. "_skewY": 0,
  3617. "_is3DNode": false,
  3618. "_groupIndex": 0,
  3619. "groupIndex": 0,
  3620. "_id": ""
  3621. },
  3622. {
  3623. "__type__": "cc.Node",
  3624. "_name": "lb",
  3625. "_objFlags": 0,
  3626. "_parent": {
  3627. "__id__": 101
  3628. },
  3629. "_children": [],
  3630. "_active": true,
  3631. "_components": [
  3632. {
  3633. "__id__": 103
  3634. },
  3635. {
  3636. "__id__": 104
  3637. },
  3638. {
  3639. "__id__": 105
  3640. }
  3641. ],
  3642. "_prefab": {
  3643. "__id__": 106
  3644. },
  3645. "_opacity": 255,
  3646. "_color": {
  3647. "__type__": "cc.Color",
  3648. "r": 239,
  3649. "g": 239,
  3650. "b": 239,
  3651. "a": 255
  3652. },
  3653. "_contentSize": {
  3654. "__type__": "cc.Size",
  3655. "width": 186.91,
  3656. "height": 82.32
  3657. },
  3658. "_anchorPoint": {
  3659. "__type__": "cc.Vec2",
  3660. "x": 0.5,
  3661. "y": 0.5
  3662. },
  3663. "_trs": {
  3664. "__type__": "TypedArray",
  3665. "ctor": "Float64Array",
  3666. "array": [
  3667. 0,
  3668. 0,
  3669. 0,
  3670. 0,
  3671. 0,
  3672. 0,
  3673. 1,
  3674. 1,
  3675. 1,
  3676. 1
  3677. ]
  3678. },
  3679. "_eulerAngles": {
  3680. "__type__": "cc.Vec3",
  3681. "x": 0,
  3682. "y": 0,
  3683. "z": 0
  3684. },
  3685. "_skewX": 0,
  3686. "_skewY": 0,
  3687. "_is3DNode": false,
  3688. "_groupIndex": 0,
  3689. "groupIndex": 0,
  3690. "_id": ""
  3691. },
  3692. {
  3693. "__type__": "cc.Label",
  3694. "_name": "",
  3695. "_objFlags": 0,
  3696. "node": {
  3697. "__id__": 102
  3698. },
  3699. "_enabled": true,
  3700. "_materials": [
  3701. {
  3702. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3703. }
  3704. ],
  3705. "_srcBlendFactor": 770,
  3706. "_dstBlendFactor": 771,
  3707. "_string": "SWITCH\nACCOUNTS",
  3708. "_N$string": "SWITCH\nACCOUNTS",
  3709. "_fontSize": 32,
  3710. "_lineHeight": 32,
  3711. "_enableWrapText": true,
  3712. "_N$file": {
  3713. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  3714. },
  3715. "_isSystemFontUsed": false,
  3716. "_spacingX": 0,
  3717. "_batchAsBitmap": false,
  3718. "_styleFlags": 0,
  3719. "_underlineHeight": 0,
  3720. "_N$horizontalAlign": 1,
  3721. "_N$verticalAlign": 1,
  3722. "_N$fontFamily": "Arial",
  3723. "_N$overflow": 0,
  3724. "_N$cacheMode": 0,
  3725. "_id": ""
  3726. },
  3727. {
  3728. "__type__": "cc.LabelOutline",
  3729. "_name": "",
  3730. "_objFlags": 0,
  3731. "node": {
  3732. "__id__": 102
  3733. },
  3734. "_enabled": true,
  3735. "_color": {
  3736. "__type__": "cc.Color",
  3737. "r": 38,
  3738. "g": 17,
  3739. "b": 12,
  3740. "a": 255
  3741. },
  3742. "_width": 5,
  3743. "_id": ""
  3744. },
  3745. {
  3746. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  3747. "_name": "",
  3748. "_objFlags": 0,
  3749. "node": {
  3750. "__id__": 102
  3751. },
  3752. "_enabled": true,
  3753. "_englishCase": 2,
  3754. "i18n_string": "t319",
  3755. "i18n_params": [],
  3756. "_addColon": false,
  3757. "_id": ""
  3758. },
  3759. {
  3760. "__type__": "cc.PrefabInfo",
  3761. "root": {
  3762. "__id__": 101
  3763. },
  3764. "asset": {
  3765. "__uuid__": "d3c803b4-d439-417c-b2b6-ce1f19059868"
  3766. },
  3767. "fileId": "0257Bkg0NEyKj9p2eHdWI8",
  3768. "sync": false
  3769. },
  3770. {
  3771. "__type__": "cc.Sprite",
  3772. "_name": "",
  3773. "_objFlags": 0,
  3774. "node": {
  3775. "__id__": 101
  3776. },
  3777. "_enabled": true,
  3778. "_materials": [
  3779. {
  3780. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3781. }
  3782. ],
  3783. "_srcBlendFactor": 770,
  3784. "_dstBlendFactor": 771,
  3785. "_spriteFrame": {
  3786. "__uuid__": "011a4814-a4c3-4bef-89ff-c3a75a4cb9e1"
  3787. },
  3788. "_type": 1,
  3789. "_sizeMode": 0,
  3790. "_fillType": 0,
  3791. "_fillCenter": {
  3792. "__type__": "cc.Vec2",
  3793. "x": 0,
  3794. "y": 0
  3795. },
  3796. "_fillStart": 0,
  3797. "_fillRange": 0,
  3798. "_isTrimmedMode": true,
  3799. "_atlas": null,
  3800. "_id": ""
  3801. },
  3802. {
  3803. "__type__": "466e8BS6wJF6bKBj6rcxcSE",
  3804. "_name": "",
  3805. "_objFlags": 0,
  3806. "node": {
  3807. "__id__": 101
  3808. },
  3809. "_enabled": true,
  3810. "openContinuous": true,
  3811. "continuousTime": 0.2,
  3812. "multiTouch": false,
  3813. "_id": ""
  3814. },
  3815. {
  3816. "__type__": "61994AafntNFIbmt1zoyLq+",
  3817. "_name": "",
  3818. "_objFlags": 0,
  3819. "node": {
  3820. "__id__": 101
  3821. },
  3822. "_enabled": true,
  3823. "_normalMaterial": null,
  3824. "_grayMaterial": null,
  3825. "duration": 0.1,
  3826. "zoomScale": 1.2,
  3827. "clickEvents": [
  3828. {
  3829. "__id__": 110
  3830. }
  3831. ],
  3832. "_N$interactable": true,
  3833. "_N$enableAutoGrayEffect": false,
  3834. "_N$transition": 3,
  3835. "transition": 3,
  3836. "_N$normalColor": {
  3837. "__type__": "cc.Color",
  3838. "r": 255,
  3839. "g": 255,
  3840. "b": 255,
  3841. "a": 255
  3842. },
  3843. "_N$pressedColor": {
  3844. "__type__": "cc.Color",
  3845. "r": 211,
  3846. "g": 211,
  3847. "b": 211,
  3848. "a": 255
  3849. },
  3850. "pressedColor": {
  3851. "__type__": "cc.Color",
  3852. "r": 211,
  3853. "g": 211,
  3854. "b": 211,
  3855. "a": 255
  3856. },
  3857. "_N$hoverColor": {
  3858. "__type__": "cc.Color",
  3859. "r": 255,
  3860. "g": 255,
  3861. "b": 255,
  3862. "a": 255
  3863. },
  3864. "hoverColor": {
  3865. "__type__": "cc.Color",
  3866. "r": 255,
  3867. "g": 255,
  3868. "b": 255,
  3869. "a": 255
  3870. },
  3871. "_N$disabledColor": {
  3872. "__type__": "cc.Color",
  3873. "r": 124,
  3874. "g": 124,
  3875. "b": 124,
  3876. "a": 255
  3877. },
  3878. "_N$normalSprite": null,
  3879. "_N$pressedSprite": null,
  3880. "pressedSprite": null,
  3881. "_N$hoverSprite": null,
  3882. "hoverSprite": null,
  3883. "_N$disabledSprite": null,
  3884. "_N$target": null,
  3885. "_id": ""
  3886. },
  3887. {
  3888. "__type__": "cc.ClickEvent",
  3889. "target": {
  3890. "__id__": 1
  3891. },
  3892. "component": "",
  3893. "_componentId": "6874dk0AwFNj4RXgBqY+CMZ",
  3894. "handler": "onSwitchAccount",
  3895. "customEventData": ""
  3896. },
  3897. {
  3898. "__type__": "cc.PrefabInfo",
  3899. "root": {
  3900. "__id__": 101
  3901. },
  3902. "asset": {
  3903. "__uuid__": "d3c803b4-d439-417c-b2b6-ce1f19059868"
  3904. },
  3905. "fileId": "d7PBF9pB9P56HE4CNWiueX",
  3906. "sync": false
  3907. },
  3908. {
  3909. "__type__": "cc.Node",
  3910. "_name": "selGate",
  3911. "_objFlags": 0,
  3912. "_parent": {
  3913. "__id__": 100
  3914. },
  3915. "_children": [
  3916. {
  3917. "__id__": 113
  3918. }
  3919. ],
  3920. "_active": true,
  3921. "_components": [
  3922. {
  3923. "__id__": 118
  3924. },
  3925. {
  3926. "__id__": 119
  3927. },
  3928. {
  3929. "__id__": 120
  3930. }
  3931. ],
  3932. "_prefab": {
  3933. "__id__": 122
  3934. },
  3935. "_opacity": 255,
  3936. "_color": {
  3937. "__type__": "cc.Color",
  3938. "r": 255,
  3939. "g": 255,
  3940. "b": 255,
  3941. "a": 255
  3942. },
  3943. "_contentSize": {
  3944. "__type__": "cc.Size",
  3945. "width": 306,
  3946. "height": 106
  3947. },
  3948. "_anchorPoint": {
  3949. "__type__": "cc.Vec2",
  3950. "x": 0.5,
  3951. "y": 0.5
  3952. },
  3953. "_trs": {
  3954. "__type__": "TypedArray",
  3955. "ctor": "Float64Array",
  3956. "array": [
  3957. 477,
  3958. -53,
  3959. 0,
  3960. 0,
  3961. 0,
  3962. 0,
  3963. 1,
  3964. 1,
  3965. 1,
  3966. 0
  3967. ]
  3968. },
  3969. "_eulerAngles": {
  3970. "__type__": "cc.Vec3",
  3971. "x": 0,
  3972. "y": 0,
  3973. "z": 0
  3974. },
  3975. "_skewX": 0,
  3976. "_skewY": 0,
  3977. "_is3DNode": false,
  3978. "_groupIndex": 0,
  3979. "groupIndex": 0,
  3980. "_id": ""
  3981. },
  3982. {
  3983. "__type__": "cc.Node",
  3984. "_name": "lb",
  3985. "_objFlags": 0,
  3986. "_parent": {
  3987. "__id__": 112
  3988. },
  3989. "_children": [],
  3990. "_active": true,
  3991. "_components": [
  3992. {
  3993. "__id__": 114
  3994. },
  3995. {
  3996. "__id__": 115
  3997. },
  3998. {
  3999. "__id__": 116
  4000. }
  4001. ],
  4002. "_prefab": {
  4003. "__id__": 117
  4004. },
  4005. "_opacity": 255,
  4006. "_color": {
  4007. "__type__": "cc.Color",
  4008. "r": 239,
  4009. "g": 239,
  4010. "b": 239,
  4011. "a": 255
  4012. },
  4013. "_contentSize": {
  4014. "__type__": "cc.Size",
  4015. "width": 259.33000000000004,
  4016. "height": 50.32
  4017. },
  4018. "_anchorPoint": {
  4019. "__type__": "cc.Vec2",
  4020. "x": 0.5,
  4021. "y": 0.5
  4022. },
  4023. "_trs": {
  4024. "__type__": "TypedArray",
  4025. "ctor": "Float64Array",
  4026. "array": [
  4027. 0,
  4028. 0,
  4029. 0,
  4030. 0,
  4031. 0,
  4032. 0,
  4033. 1,
  4034. 1,
  4035. 1,
  4036. 1
  4037. ]
  4038. },
  4039. "_eulerAngles": {
  4040. "__type__": "cc.Vec3",
  4041. "x": 0,
  4042. "y": 0,
  4043. "z": 0
  4044. },
  4045. "_skewX": 0,
  4046. "_skewY": 0,
  4047. "_is3DNode": false,
  4048. "_groupIndex": 0,
  4049. "groupIndex": 0,
  4050. "_id": ""
  4051. },
  4052. {
  4053. "__type__": "cc.Label",
  4054. "_name": "",
  4055. "_objFlags": 0,
  4056. "node": {
  4057. "__id__": 113
  4058. },
  4059. "_enabled": true,
  4060. "_materials": [
  4061. {
  4062. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4063. }
  4064. ],
  4065. "_srcBlendFactor": 770,
  4066. "_dstBlendFactor": 771,
  4067. "_string": "SELECT SERVER",
  4068. "_N$string": "SELECT SERVER",
  4069. "_fontSize": 32,
  4070. "_lineHeight": 32,
  4071. "_enableWrapText": true,
  4072. "_N$file": {
  4073. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  4074. },
  4075. "_isSystemFontUsed": false,
  4076. "_spacingX": 0,
  4077. "_batchAsBitmap": false,
  4078. "_styleFlags": 0,
  4079. "_underlineHeight": 0,
  4080. "_N$horizontalAlign": 1,
  4081. "_N$verticalAlign": 1,
  4082. "_N$fontFamily": "Arial",
  4083. "_N$overflow": 0,
  4084. "_N$cacheMode": 0,
  4085. "_id": ""
  4086. },
  4087. {
  4088. "__type__": "cc.LabelOutline",
  4089. "_name": "",
  4090. "_objFlags": 0,
  4091. "node": {
  4092. "__id__": 113
  4093. },
  4094. "_enabled": true,
  4095. "_color": {
  4096. "__type__": "cc.Color",
  4097. "r": 38,
  4098. "g": 17,
  4099. "b": 12,
  4100. "a": 255
  4101. },
  4102. "_width": 5,
  4103. "_id": ""
  4104. },
  4105. {
  4106. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  4107. "_name": "",
  4108. "_objFlags": 0,
  4109. "node": {
  4110. "__id__": 113
  4111. },
  4112. "_enabled": true,
  4113. "_englishCase": 2,
  4114. "i18n_string": "t543",
  4115. "i18n_params": [],
  4116. "_addColon": false,
  4117. "_id": ""
  4118. },
  4119. {
  4120. "__type__": "cc.PrefabInfo",
  4121. "root": {
  4122. "__id__": 112
  4123. },
  4124. "asset": {
  4125. "__uuid__": "d3c803b4-d439-417c-b2b6-ce1f19059868"
  4126. },
  4127. "fileId": "0257Bkg0NEyKj9p2eHdWI8",
  4128. "sync": false
  4129. },
  4130. {
  4131. "__type__": "cc.Sprite",
  4132. "_name": "",
  4133. "_objFlags": 0,
  4134. "node": {
  4135. "__id__": 112
  4136. },
  4137. "_enabled": true,
  4138. "_materials": [
  4139. {
  4140. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4141. }
  4142. ],
  4143. "_srcBlendFactor": 770,
  4144. "_dstBlendFactor": 771,
  4145. "_spriteFrame": {
  4146. "__uuid__": "011a4814-a4c3-4bef-89ff-c3a75a4cb9e1"
  4147. },
  4148. "_type": 1,
  4149. "_sizeMode": 0,
  4150. "_fillType": 0,
  4151. "_fillCenter": {
  4152. "__type__": "cc.Vec2",
  4153. "x": 0,
  4154. "y": 0
  4155. },
  4156. "_fillStart": 0,
  4157. "_fillRange": 0,
  4158. "_isTrimmedMode": true,
  4159. "_atlas": null,
  4160. "_id": ""
  4161. },
  4162. {
  4163. "__type__": "466e8BS6wJF6bKBj6rcxcSE",
  4164. "_name": "",
  4165. "_objFlags": 0,
  4166. "node": {
  4167. "__id__": 112
  4168. },
  4169. "_enabled": true,
  4170. "openContinuous": true,
  4171. "continuousTime": 0.2,
  4172. "multiTouch": false,
  4173. "_id": ""
  4174. },
  4175. {
  4176. "__type__": "61994AafntNFIbmt1zoyLq+",
  4177. "_name": "",
  4178. "_objFlags": 0,
  4179. "node": {
  4180. "__id__": 112
  4181. },
  4182. "_enabled": true,
  4183. "_normalMaterial": null,
  4184. "_grayMaterial": null,
  4185. "duration": 0.1,
  4186. "zoomScale": 1.2,
  4187. "clickEvents": [
  4188. {
  4189. "__id__": 121
  4190. }
  4191. ],
  4192. "_N$interactable": true,
  4193. "_N$enableAutoGrayEffect": false,
  4194. "_N$transition": 3,
  4195. "transition": 3,
  4196. "_N$normalColor": {
  4197. "__type__": "cc.Color",
  4198. "r": 255,
  4199. "g": 255,
  4200. "b": 255,
  4201. "a": 255
  4202. },
  4203. "_N$pressedColor": {
  4204. "__type__": "cc.Color",
  4205. "r": 211,
  4206. "g": 211,
  4207. "b": 211,
  4208. "a": 255
  4209. },
  4210. "pressedColor": {
  4211. "__type__": "cc.Color",
  4212. "r": 211,
  4213. "g": 211,
  4214. "b": 211,
  4215. "a": 255
  4216. },
  4217. "_N$hoverColor": {
  4218. "__type__": "cc.Color",
  4219. "r": 255,
  4220. "g": 255,
  4221. "b": 255,
  4222. "a": 255
  4223. },
  4224. "hoverColor": {
  4225. "__type__": "cc.Color",
  4226. "r": 255,
  4227. "g": 255,
  4228. "b": 255,
  4229. "a": 255
  4230. },
  4231. "_N$disabledColor": {
  4232. "__type__": "cc.Color",
  4233. "r": 124,
  4234. "g": 124,
  4235. "b": 124,
  4236. "a": 255
  4237. },
  4238. "_N$normalSprite": null,
  4239. "_N$pressedSprite": null,
  4240. "pressedSprite": null,
  4241. "_N$hoverSprite": null,
  4242. "hoverSprite": null,
  4243. "_N$disabledSprite": null,
  4244. "_N$target": null,
  4245. "_id": ""
  4246. },
  4247. {
  4248. "__type__": "cc.ClickEvent",
  4249. "target": {
  4250. "__id__": 1
  4251. },
  4252. "component": "",
  4253. "_componentId": "6874dk0AwFNj4RXgBqY+CMZ",
  4254. "handler": "onClickSelGate",
  4255. "customEventData": ""
  4256. },
  4257. {
  4258. "__type__": "cc.PrefabInfo",
  4259. "root": {
  4260. "__id__": 112
  4261. },
  4262. "asset": {
  4263. "__uuid__": "d3c803b4-d439-417c-b2b6-ce1f19059868"
  4264. },
  4265. "fileId": "5fgLjAajZLQ5pI+CA4Qqsh",
  4266. "sync": false
  4267. },
  4268. {
  4269. "__type__": "cc.Node",
  4270. "_name": "problem_feedback",
  4271. "_objFlags": 0,
  4272. "_parent": {
  4273. "__id__": 100
  4274. },
  4275. "_children": [
  4276. {
  4277. "__id__": 124
  4278. }
  4279. ],
  4280. "_active": false,
  4281. "_components": [
  4282. {
  4283. "__id__": 129
  4284. },
  4285. {
  4286. "__id__": 130
  4287. },
  4288. {
  4289. "__id__": 131
  4290. }
  4291. ],
  4292. "_prefab": {
  4293. "__id__": 133
  4294. },
  4295. "_opacity": 255,
  4296. "_color": {
  4297. "__type__": "cc.Color",
  4298. "r": 255,
  4299. "g": 255,
  4300. "b": 255,
  4301. "a": 255
  4302. },
  4303. "_contentSize": {
  4304. "__type__": "cc.Size",
  4305. "width": 306,
  4306. "height": 106
  4307. },
  4308. "_anchorPoint": {
  4309. "__type__": "cc.Vec2",
  4310. "x": 0.5,
  4311. "y": 0.5
  4312. },
  4313. "_trs": {
  4314. "__type__": "TypedArray",
  4315. "ctor": "Float64Array",
  4316. "array": [
  4317. 477,
  4318. -53,
  4319. 0,
  4320. 0,
  4321. 0,
  4322. 0,
  4323. 1,
  4324. 1,
  4325. 1,
  4326. 0
  4327. ]
  4328. },
  4329. "_eulerAngles": {
  4330. "__type__": "cc.Vec3",
  4331. "x": 0,
  4332. "y": 0,
  4333. "z": 0
  4334. },
  4335. "_skewX": 0,
  4336. "_skewY": 0,
  4337. "_is3DNode": false,
  4338. "_groupIndex": 0,
  4339. "groupIndex": 0,
  4340. "_id": ""
  4341. },
  4342. {
  4343. "__type__": "cc.Node",
  4344. "_name": "lb",
  4345. "_objFlags": 0,
  4346. "_parent": {
  4347. "__id__": 123
  4348. },
  4349. "_children": [],
  4350. "_active": true,
  4351. "_components": [
  4352. {
  4353. "__id__": 125
  4354. },
  4355. {
  4356. "__id__": 126
  4357. },
  4358. {
  4359. "__id__": 127
  4360. }
  4361. ],
  4362. "_prefab": {
  4363. "__id__": 128
  4364. },
  4365. "_opacity": 255,
  4366. "_color": {
  4367. "__type__": "cc.Color",
  4368. "r": 239,
  4369. "g": 239,
  4370. "b": 239,
  4371. "a": 255
  4372. },
  4373. "_contentSize": {
  4374. "__type__": "cc.Size",
  4375. "width": 164.8,
  4376. "height": 82.32
  4377. },
  4378. "_anchorPoint": {
  4379. "__type__": "cc.Vec2",
  4380. "x": 0.5,
  4381. "y": 0.5
  4382. },
  4383. "_trs": {
  4384. "__type__": "TypedArray",
  4385. "ctor": "Float64Array",
  4386. "array": [
  4387. 0,
  4388. 0,
  4389. 0,
  4390. 0,
  4391. 0,
  4392. 0,
  4393. 1,
  4394. 1,
  4395. 1,
  4396. 1
  4397. ]
  4398. },
  4399. "_eulerAngles": {
  4400. "__type__": "cc.Vec3",
  4401. "x": 0,
  4402. "y": 0,
  4403. "z": 0
  4404. },
  4405. "_skewX": 0,
  4406. "_skewY": 0,
  4407. "_is3DNode": false,
  4408. "_groupIndex": 0,
  4409. "groupIndex": 0,
  4410. "_id": ""
  4411. },
  4412. {
  4413. "__type__": "cc.Label",
  4414. "_name": "",
  4415. "_objFlags": 0,
  4416. "node": {
  4417. "__id__": 124
  4418. },
  4419. "_enabled": true,
  4420. "_materials": [
  4421. {
  4422. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4423. }
  4424. ],
  4425. "_srcBlendFactor": 770,
  4426. "_dstBlendFactor": 771,
  4427. "_string": "PROBLEM\nFEEDBACK",
  4428. "_N$string": "PROBLEM\nFEEDBACK",
  4429. "_fontSize": 32,
  4430. "_lineHeight": 32,
  4431. "_enableWrapText": true,
  4432. "_N$file": {
  4433. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  4434. },
  4435. "_isSystemFontUsed": false,
  4436. "_spacingX": 0,
  4437. "_batchAsBitmap": false,
  4438. "_styleFlags": 0,
  4439. "_underlineHeight": 0,
  4440. "_N$horizontalAlign": 1,
  4441. "_N$verticalAlign": 1,
  4442. "_N$fontFamily": "Arial",
  4443. "_N$overflow": 0,
  4444. "_N$cacheMode": 0,
  4445. "_id": ""
  4446. },
  4447. {
  4448. "__type__": "cc.LabelOutline",
  4449. "_name": "",
  4450. "_objFlags": 0,
  4451. "node": {
  4452. "__id__": 124
  4453. },
  4454. "_enabled": true,
  4455. "_color": {
  4456. "__type__": "cc.Color",
  4457. "r": 38,
  4458. "g": 17,
  4459. "b": 12,
  4460. "a": 255
  4461. },
  4462. "_width": 5,
  4463. "_id": ""
  4464. },
  4465. {
  4466. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  4467. "_name": "",
  4468. "_objFlags": 0,
  4469. "node": {
  4470. "__id__": 124
  4471. },
  4472. "_enabled": true,
  4473. "_englishCase": 2,
  4474. "i18n_string": "t320",
  4475. "i18n_params": [],
  4476. "_addColon": false,
  4477. "_id": ""
  4478. },
  4479. {
  4480. "__type__": "cc.PrefabInfo",
  4481. "root": {
  4482. "__id__": 123
  4483. },
  4484. "asset": {
  4485. "__uuid__": "d3c803b4-d439-417c-b2b6-ce1f19059868"
  4486. },
  4487. "fileId": "0257Bkg0NEyKj9p2eHdWI8",
  4488. "sync": false
  4489. },
  4490. {
  4491. "__type__": "cc.Sprite",
  4492. "_name": "",
  4493. "_objFlags": 0,
  4494. "node": {
  4495. "__id__": 123
  4496. },
  4497. "_enabled": true,
  4498. "_materials": [
  4499. {
  4500. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4501. }
  4502. ],
  4503. "_srcBlendFactor": 770,
  4504. "_dstBlendFactor": 771,
  4505. "_spriteFrame": {
  4506. "__uuid__": "011a4814-a4c3-4bef-89ff-c3a75a4cb9e1"
  4507. },
  4508. "_type": 1,
  4509. "_sizeMode": 0,
  4510. "_fillType": 0,
  4511. "_fillCenter": {
  4512. "__type__": "cc.Vec2",
  4513. "x": 0,
  4514. "y": 0
  4515. },
  4516. "_fillStart": 0,
  4517. "_fillRange": 0,
  4518. "_isTrimmedMode": true,
  4519. "_atlas": null,
  4520. "_id": ""
  4521. },
  4522. {
  4523. "__type__": "466e8BS6wJF6bKBj6rcxcSE",
  4524. "_name": "",
  4525. "_objFlags": 0,
  4526. "node": {
  4527. "__id__": 123
  4528. },
  4529. "_enabled": true,
  4530. "openContinuous": true,
  4531. "continuousTime": 0.2,
  4532. "multiTouch": false,
  4533. "_id": ""
  4534. },
  4535. {
  4536. "__type__": "61994AafntNFIbmt1zoyLq+",
  4537. "_name": "",
  4538. "_objFlags": 0,
  4539. "node": {
  4540. "__id__": 123
  4541. },
  4542. "_enabled": true,
  4543. "_normalMaterial": null,
  4544. "_grayMaterial": null,
  4545. "duration": 0.1,
  4546. "zoomScale": 1.2,
  4547. "clickEvents": [
  4548. {
  4549. "__id__": 132
  4550. }
  4551. ],
  4552. "_N$interactable": true,
  4553. "_N$enableAutoGrayEffect": false,
  4554. "_N$transition": 3,
  4555. "transition": 3,
  4556. "_N$normalColor": {
  4557. "__type__": "cc.Color",
  4558. "r": 255,
  4559. "g": 255,
  4560. "b": 255,
  4561. "a": 255
  4562. },
  4563. "_N$pressedColor": {
  4564. "__type__": "cc.Color",
  4565. "r": 211,
  4566. "g": 211,
  4567. "b": 211,
  4568. "a": 255
  4569. },
  4570. "pressedColor": {
  4571. "__type__": "cc.Color",
  4572. "r": 211,
  4573. "g": 211,
  4574. "b": 211,
  4575. "a": 255
  4576. },
  4577. "_N$hoverColor": {
  4578. "__type__": "cc.Color",
  4579. "r": 255,
  4580. "g": 255,
  4581. "b": 255,
  4582. "a": 255
  4583. },
  4584. "hoverColor": {
  4585. "__type__": "cc.Color",
  4586. "r": 255,
  4587. "g": 255,
  4588. "b": 255,
  4589. "a": 255
  4590. },
  4591. "_N$disabledColor": {
  4592. "__type__": "cc.Color",
  4593. "r": 124,
  4594. "g": 124,
  4595. "b": 124,
  4596. "a": 255
  4597. },
  4598. "_N$normalSprite": null,
  4599. "_N$pressedSprite": null,
  4600. "pressedSprite": null,
  4601. "_N$hoverSprite": null,
  4602. "hoverSprite": null,
  4603. "_N$disabledSprite": null,
  4604. "_N$target": null,
  4605. "_id": ""
  4606. },
  4607. {
  4608. "__type__": "cc.ClickEvent",
  4609. "target": {
  4610. "__id__": 1
  4611. },
  4612. "component": "",
  4613. "_componentId": "6874dk0AwFNj4RXgBqY+CMZ",
  4614. "handler": "",
  4615. "customEventData": ""
  4616. },
  4617. {
  4618. "__type__": "cc.PrefabInfo",
  4619. "root": {
  4620. "__id__": 123
  4621. },
  4622. "asset": {
  4623. "__uuid__": "d3c803b4-d439-417c-b2b6-ce1f19059868"
  4624. },
  4625. "fileId": "4eoGfrjD9E4qMty5HdhE3w",
  4626. "sync": false
  4627. },
  4628. {
  4629. "__type__": "cc.Node",
  4630. "_name": "redeem_code",
  4631. "_objFlags": 0,
  4632. "_parent": {
  4633. "__id__": 100
  4634. },
  4635. "_children": [
  4636. {
  4637. "__id__": 135
  4638. }
  4639. ],
  4640. "_active": false,
  4641. "_components": [
  4642. {
  4643. "__id__": 140
  4644. },
  4645. {
  4646. "__id__": 141
  4647. },
  4648. {
  4649. "__id__": 142
  4650. }
  4651. ],
  4652. "_prefab": {
  4653. "__id__": 144
  4654. },
  4655. "_opacity": 255,
  4656. "_color": {
  4657. "__type__": "cc.Color",
  4658. "r": 255,
  4659. "g": 255,
  4660. "b": 255,
  4661. "a": 255
  4662. },
  4663. "_contentSize": {
  4664. "__type__": "cc.Size",
  4665. "width": 306,
  4666. "height": 106
  4667. },
  4668. "_anchorPoint": {
  4669. "__type__": "cc.Vec2",
  4670. "x": 0.5,
  4671. "y": 0.5
  4672. },
  4673. "_trs": {
  4674. "__type__": "TypedArray",
  4675. "ctor": "Float64Array",
  4676. "array": [
  4677. 477,
  4678. -53,
  4679. 0,
  4680. 0,
  4681. 0,
  4682. 0,
  4683. 1,
  4684. 1,
  4685. 1,
  4686. 0
  4687. ]
  4688. },
  4689. "_eulerAngles": {
  4690. "__type__": "cc.Vec3",
  4691. "x": 0,
  4692. "y": 0,
  4693. "z": 0
  4694. },
  4695. "_skewX": 0,
  4696. "_skewY": 0,
  4697. "_is3DNode": false,
  4698. "_groupIndex": 0,
  4699. "groupIndex": 0,
  4700. "_id": ""
  4701. },
  4702. {
  4703. "__type__": "cc.Node",
  4704. "_name": "lb",
  4705. "_objFlags": 0,
  4706. "_parent": {
  4707. "__id__": 134
  4708. },
  4709. "_children": [],
  4710. "_active": true,
  4711. "_components": [
  4712. {
  4713. "__id__": 136
  4714. },
  4715. {
  4716. "__id__": 137
  4717. },
  4718. {
  4719. "__id__": 138
  4720. }
  4721. ],
  4722. "_prefab": {
  4723. "__id__": 139
  4724. },
  4725. "_opacity": 255,
  4726. "_color": {
  4727. "__type__": "cc.Color",
  4728. "r": 239,
  4729. "g": 239,
  4730. "b": 239,
  4731. "a": 255
  4732. },
  4733. "_contentSize": {
  4734. "__type__": "cc.Size",
  4735. "width": 222.59,
  4736. "height": 82.32
  4737. },
  4738. "_anchorPoint": {
  4739. "__type__": "cc.Vec2",
  4740. "x": 0.5,
  4741. "y": 0.5
  4742. },
  4743. "_trs": {
  4744. "__type__": "TypedArray",
  4745. "ctor": "Float64Array",
  4746. "array": [
  4747. 0,
  4748. 0,
  4749. 0,
  4750. 0,
  4751. 0,
  4752. 0,
  4753. 1,
  4754. 1,
  4755. 1,
  4756. 1
  4757. ]
  4758. },
  4759. "_eulerAngles": {
  4760. "__type__": "cc.Vec3",
  4761. "x": 0,
  4762. "y": 0,
  4763. "z": 0
  4764. },
  4765. "_skewX": 0,
  4766. "_skewY": 0,
  4767. "_is3DNode": false,
  4768. "_groupIndex": 0,
  4769. "groupIndex": 0,
  4770. "_id": ""
  4771. },
  4772. {
  4773. "__type__": "cc.Label",
  4774. "_name": "",
  4775. "_objFlags": 0,
  4776. "node": {
  4777. "__id__": 135
  4778. },
  4779. "_enabled": true,
  4780. "_materials": [
  4781. {
  4782. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4783. }
  4784. ],
  4785. "_srcBlendFactor": 770,
  4786. "_dstBlendFactor": 771,
  4787. "_string": "REDEMPTION\nCODE",
  4788. "_N$string": "REDEMPTION\nCODE",
  4789. "_fontSize": 32,
  4790. "_lineHeight": 32,
  4791. "_enableWrapText": true,
  4792. "_N$file": {
  4793. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  4794. },
  4795. "_isSystemFontUsed": false,
  4796. "_spacingX": 0,
  4797. "_batchAsBitmap": false,
  4798. "_styleFlags": 0,
  4799. "_underlineHeight": 0,
  4800. "_N$horizontalAlign": 1,
  4801. "_N$verticalAlign": 1,
  4802. "_N$fontFamily": "Arial",
  4803. "_N$overflow": 0,
  4804. "_N$cacheMode": 0,
  4805. "_id": ""
  4806. },
  4807. {
  4808. "__type__": "cc.LabelOutline",
  4809. "_name": "",
  4810. "_objFlags": 0,
  4811. "node": {
  4812. "__id__": 135
  4813. },
  4814. "_enabled": true,
  4815. "_color": {
  4816. "__type__": "cc.Color",
  4817. "r": 38,
  4818. "g": 17,
  4819. "b": 12,
  4820. "a": 255
  4821. },
  4822. "_width": 5,
  4823. "_id": ""
  4824. },
  4825. {
  4826. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  4827. "_name": "",
  4828. "_objFlags": 0,
  4829. "node": {
  4830. "__id__": 135
  4831. },
  4832. "_enabled": true,
  4833. "_englishCase": 2,
  4834. "i18n_string": "t321",
  4835. "i18n_params": [],
  4836. "_addColon": false,
  4837. "_id": ""
  4838. },
  4839. {
  4840. "__type__": "cc.PrefabInfo",
  4841. "root": {
  4842. "__id__": 134
  4843. },
  4844. "asset": {
  4845. "__uuid__": "d3c803b4-d439-417c-b2b6-ce1f19059868"
  4846. },
  4847. "fileId": "0257Bkg0NEyKj9p2eHdWI8",
  4848. "sync": false
  4849. },
  4850. {
  4851. "__type__": "cc.Sprite",
  4852. "_name": "",
  4853. "_objFlags": 0,
  4854. "node": {
  4855. "__id__": 134
  4856. },
  4857. "_enabled": true,
  4858. "_materials": [
  4859. {
  4860. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4861. }
  4862. ],
  4863. "_srcBlendFactor": 770,
  4864. "_dstBlendFactor": 771,
  4865. "_spriteFrame": {
  4866. "__uuid__": "011a4814-a4c3-4bef-89ff-c3a75a4cb9e1"
  4867. },
  4868. "_type": 1,
  4869. "_sizeMode": 0,
  4870. "_fillType": 0,
  4871. "_fillCenter": {
  4872. "__type__": "cc.Vec2",
  4873. "x": 0,
  4874. "y": 0
  4875. },
  4876. "_fillStart": 0,
  4877. "_fillRange": 0,
  4878. "_isTrimmedMode": true,
  4879. "_atlas": null,
  4880. "_id": ""
  4881. },
  4882. {
  4883. "__type__": "466e8BS6wJF6bKBj6rcxcSE",
  4884. "_name": "",
  4885. "_objFlags": 0,
  4886. "node": {
  4887. "__id__": 134
  4888. },
  4889. "_enabled": true,
  4890. "openContinuous": true,
  4891. "continuousTime": 0.2,
  4892. "multiTouch": false,
  4893. "_id": ""
  4894. },
  4895. {
  4896. "__type__": "61994AafntNFIbmt1zoyLq+",
  4897. "_name": "",
  4898. "_objFlags": 0,
  4899. "node": {
  4900. "__id__": 134
  4901. },
  4902. "_enabled": true,
  4903. "_normalMaterial": null,
  4904. "_grayMaterial": null,
  4905. "duration": 0.1,
  4906. "zoomScale": 1.2,
  4907. "clickEvents": [
  4908. {
  4909. "__id__": 143
  4910. }
  4911. ],
  4912. "_N$interactable": true,
  4913. "_N$enableAutoGrayEffect": false,
  4914. "_N$transition": 3,
  4915. "transition": 3,
  4916. "_N$normalColor": {
  4917. "__type__": "cc.Color",
  4918. "r": 255,
  4919. "g": 255,
  4920. "b": 255,
  4921. "a": 255
  4922. },
  4923. "_N$pressedColor": {
  4924. "__type__": "cc.Color",
  4925. "r": 211,
  4926. "g": 211,
  4927. "b": 211,
  4928. "a": 255
  4929. },
  4930. "pressedColor": {
  4931. "__type__": "cc.Color",
  4932. "r": 211,
  4933. "g": 211,
  4934. "b": 211,
  4935. "a": 255
  4936. },
  4937. "_N$hoverColor": {
  4938. "__type__": "cc.Color",
  4939. "r": 255,
  4940. "g": 255,
  4941. "b": 255,
  4942. "a": 255
  4943. },
  4944. "hoverColor": {
  4945. "__type__": "cc.Color",
  4946. "r": 255,
  4947. "g": 255,
  4948. "b": 255,
  4949. "a": 255
  4950. },
  4951. "_N$disabledColor": {
  4952. "__type__": "cc.Color",
  4953. "r": 124,
  4954. "g": 124,
  4955. "b": 124,
  4956. "a": 255
  4957. },
  4958. "_N$normalSprite": null,
  4959. "_N$pressedSprite": null,
  4960. "pressedSprite": null,
  4961. "_N$hoverSprite": null,
  4962. "hoverSprite": null,
  4963. "_N$disabledSprite": null,
  4964. "_N$target": null,
  4965. "_id": ""
  4966. },
  4967. {
  4968. "__type__": "cc.ClickEvent",
  4969. "target": {
  4970. "__id__": 1
  4971. },
  4972. "component": "",
  4973. "_componentId": "6874dk0AwFNj4RXgBqY+CMZ",
  4974. "handler": "onClickRedeemCode",
  4975. "customEventData": ""
  4976. },
  4977. {
  4978. "__type__": "cc.PrefabInfo",
  4979. "root": {
  4980. "__id__": 134
  4981. },
  4982. "asset": {
  4983. "__uuid__": "d3c803b4-d439-417c-b2b6-ce1f19059868"
  4984. },
  4985. "fileId": "4d/W7kBUBOy5+YWtGtYw8X",
  4986. "sync": false
  4987. },
  4988. {
  4989. "__type__": "cc.Node",
  4990. "_name": "language",
  4991. "_objFlags": 0,
  4992. "_parent": {
  4993. "__id__": 100
  4994. },
  4995. "_children": [
  4996. {
  4997. "__id__": 146
  4998. }
  4999. ],
  5000. "_active": true,
  5001. "_components": [
  5002. {
  5003. "__id__": 151
  5004. },
  5005. {
  5006. "__id__": 152
  5007. },
  5008. {
  5009. "__id__": 153
  5010. }
  5011. ],
  5012. "_prefab": {
  5013. "__id__": 155
  5014. },
  5015. "_opacity": 255,
  5016. "_color": {
  5017. "__type__": "cc.Color",
  5018. "r": 255,
  5019. "g": 255,
  5020. "b": 255,
  5021. "a": 255
  5022. },
  5023. "_contentSize": {
  5024. "__type__": "cc.Size",
  5025. "width": 306,
  5026. "height": 106
  5027. },
  5028. "_anchorPoint": {
  5029. "__type__": "cc.Vec2",
  5030. "x": 0.5,
  5031. "y": 0.5
  5032. },
  5033. "_trs": {
  5034. "__type__": "TypedArray",
  5035. "ctor": "Float64Array",
  5036. "array": [
  5037. 801,
  5038. -53,
  5039. 0,
  5040. 0,
  5041. 0,
  5042. 0,
  5043. 1,
  5044. 1,
  5045. 1,
  5046. 0
  5047. ]
  5048. },
  5049. "_eulerAngles": {
  5050. "__type__": "cc.Vec3",
  5051. "x": 0,
  5052. "y": 0,
  5053. "z": 0
  5054. },
  5055. "_skewX": 0,
  5056. "_skewY": 0,
  5057. "_is3DNode": false,
  5058. "_groupIndex": 0,
  5059. "groupIndex": 0,
  5060. "_id": ""
  5061. },
  5062. {
  5063. "__type__": "cc.Node",
  5064. "_name": "lb",
  5065. "_objFlags": 0,
  5066. "_parent": {
  5067. "__id__": 145
  5068. },
  5069. "_children": [],
  5070. "_active": true,
  5071. "_components": [
  5072. {
  5073. "__id__": 147
  5074. },
  5075. {
  5076. "__id__": 148
  5077. },
  5078. {
  5079. "__id__": 149
  5080. }
  5081. ],
  5082. "_prefab": {
  5083. "__id__": 150
  5084. },
  5085. "_opacity": 255,
  5086. "_color": {
  5087. "__type__": "cc.Color",
  5088. "r": 239,
  5089. "g": 239,
  5090. "b": 239,
  5091. "a": 255
  5092. },
  5093. "_contentSize": {
  5094. "__type__": "cc.Size",
  5095. "width": 180.25,
  5096. "height": 47.8
  5097. },
  5098. "_anchorPoint": {
  5099. "__type__": "cc.Vec2",
  5100. "x": 0.5,
  5101. "y": 0.5
  5102. },
  5103. "_trs": {
  5104. "__type__": "TypedArray",
  5105. "ctor": "Float64Array",
  5106. "array": [
  5107. 0,
  5108. 0,
  5109. 0,
  5110. 0,
  5111. 0,
  5112. 0,
  5113. 1,
  5114. 1,
  5115. 1,
  5116. 1
  5117. ]
  5118. },
  5119. "_eulerAngles": {
  5120. "__type__": "cc.Vec3",
  5121. "x": 0,
  5122. "y": 0,
  5123. "z": 0
  5124. },
  5125. "_skewX": 0,
  5126. "_skewY": 0,
  5127. "_is3DNode": false,
  5128. "_groupIndex": 0,
  5129. "groupIndex": 0,
  5130. "_id": ""
  5131. },
  5132. {
  5133. "__type__": "cc.Label",
  5134. "_name": "",
  5135. "_objFlags": 0,
  5136. "node": {
  5137. "__id__": 146
  5138. },
  5139. "_enabled": true,
  5140. "_materials": [
  5141. {
  5142. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5143. }
  5144. ],
  5145. "_srcBlendFactor": 770,
  5146. "_dstBlendFactor": 771,
  5147. "_string": "LANGUAGE",
  5148. "_N$string": "LANGUAGE",
  5149. "_fontSize": 32,
  5150. "_lineHeight": 30,
  5151. "_enableWrapText": true,
  5152. "_N$file": {
  5153. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  5154. },
  5155. "_isSystemFontUsed": false,
  5156. "_spacingX": 0,
  5157. "_batchAsBitmap": false,
  5158. "_styleFlags": 0,
  5159. "_underlineHeight": 0,
  5160. "_N$horizontalAlign": 1,
  5161. "_N$verticalAlign": 1,
  5162. "_N$fontFamily": "Arial",
  5163. "_N$overflow": 0,
  5164. "_N$cacheMode": 0,
  5165. "_id": ""
  5166. },
  5167. {
  5168. "__type__": "cc.LabelOutline",
  5169. "_name": "",
  5170. "_objFlags": 0,
  5171. "node": {
  5172. "__id__": 146
  5173. },
  5174. "_enabled": true,
  5175. "_color": {
  5176. "__type__": "cc.Color",
  5177. "r": 38,
  5178. "g": 17,
  5179. "b": 12,
  5180. "a": 255
  5181. },
  5182. "_width": 5,
  5183. "_id": ""
  5184. },
  5185. {
  5186. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  5187. "_name": "",
  5188. "_objFlags": 0,
  5189. "node": {
  5190. "__id__": 146
  5191. },
  5192. "_enabled": true,
  5193. "_englishCase": 2,
  5194. "i18n_string": "t322",
  5195. "i18n_params": [],
  5196. "_addColon": false,
  5197. "_id": ""
  5198. },
  5199. {
  5200. "__type__": "cc.PrefabInfo",
  5201. "root": {
  5202. "__id__": 145
  5203. },
  5204. "asset": {
  5205. "__uuid__": "d3c803b4-d439-417c-b2b6-ce1f19059868"
  5206. },
  5207. "fileId": "0257Bkg0NEyKj9p2eHdWI8",
  5208. "sync": false
  5209. },
  5210. {
  5211. "__type__": "cc.Sprite",
  5212. "_name": "",
  5213. "_objFlags": 0,
  5214. "node": {
  5215. "__id__": 145
  5216. },
  5217. "_enabled": true,
  5218. "_materials": [
  5219. {
  5220. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5221. }
  5222. ],
  5223. "_srcBlendFactor": 770,
  5224. "_dstBlendFactor": 771,
  5225. "_spriteFrame": {
  5226. "__uuid__": "011a4814-a4c3-4bef-89ff-c3a75a4cb9e1"
  5227. },
  5228. "_type": 1,
  5229. "_sizeMode": 0,
  5230. "_fillType": 0,
  5231. "_fillCenter": {
  5232. "__type__": "cc.Vec2",
  5233. "x": 0,
  5234. "y": 0
  5235. },
  5236. "_fillStart": 0,
  5237. "_fillRange": 0,
  5238. "_isTrimmedMode": true,
  5239. "_atlas": null,
  5240. "_id": ""
  5241. },
  5242. {
  5243. "__type__": "466e8BS6wJF6bKBj6rcxcSE",
  5244. "_name": "",
  5245. "_objFlags": 0,
  5246. "node": {
  5247. "__id__": 145
  5248. },
  5249. "_enabled": true,
  5250. "openContinuous": true,
  5251. "continuousTime": 0.2,
  5252. "multiTouch": false,
  5253. "_id": ""
  5254. },
  5255. {
  5256. "__type__": "61994AafntNFIbmt1zoyLq+",
  5257. "_name": "",
  5258. "_objFlags": 0,
  5259. "node": {
  5260. "__id__": 145
  5261. },
  5262. "_enabled": true,
  5263. "_normalMaterial": null,
  5264. "_grayMaterial": null,
  5265. "duration": 0.1,
  5266. "zoomScale": 1.2,
  5267. "clickEvents": [
  5268. {
  5269. "__id__": 154
  5270. }
  5271. ],
  5272. "_N$interactable": true,
  5273. "_N$enableAutoGrayEffect": false,
  5274. "_N$transition": 3,
  5275. "transition": 3,
  5276. "_N$normalColor": {
  5277. "__type__": "cc.Color",
  5278. "r": 255,
  5279. "g": 255,
  5280. "b": 255,
  5281. "a": 255
  5282. },
  5283. "_N$pressedColor": {
  5284. "__type__": "cc.Color",
  5285. "r": 211,
  5286. "g": 211,
  5287. "b": 211,
  5288. "a": 255
  5289. },
  5290. "pressedColor": {
  5291. "__type__": "cc.Color",
  5292. "r": 211,
  5293. "g": 211,
  5294. "b": 211,
  5295. "a": 255
  5296. },
  5297. "_N$hoverColor": {
  5298. "__type__": "cc.Color",
  5299. "r": 255,
  5300. "g": 255,
  5301. "b": 255,
  5302. "a": 255
  5303. },
  5304. "hoverColor": {
  5305. "__type__": "cc.Color",
  5306. "r": 255,
  5307. "g": 255,
  5308. "b": 255,
  5309. "a": 255
  5310. },
  5311. "_N$disabledColor": {
  5312. "__type__": "cc.Color",
  5313. "r": 124,
  5314. "g": 124,
  5315. "b": 124,
  5316. "a": 255
  5317. },
  5318. "_N$normalSprite": null,
  5319. "_N$pressedSprite": null,
  5320. "pressedSprite": null,
  5321. "_N$hoverSprite": null,
  5322. "hoverSprite": null,
  5323. "_N$disabledSprite": null,
  5324. "_N$target": null,
  5325. "_id": ""
  5326. },
  5327. {
  5328. "__type__": "cc.ClickEvent",
  5329. "target": {
  5330. "__id__": 1
  5331. },
  5332. "component": "",
  5333. "_componentId": "6874dk0AwFNj4RXgBqY+CMZ",
  5334. "handler": "onClickLanguage",
  5335. "customEventData": ""
  5336. },
  5337. {
  5338. "__type__": "cc.PrefabInfo",
  5339. "root": {
  5340. "__id__": 145
  5341. },
  5342. "asset": {
  5343. "__uuid__": "d3c803b4-d439-417c-b2b6-ce1f19059868"
  5344. },
  5345. "fileId": "acLCGsf79Kv6eyYAaP5Zwl",
  5346. "sync": false
  5347. },
  5348. {
  5349. "__type__": "cc.Node",
  5350. "_name": "announcement",
  5351. "_objFlags": 0,
  5352. "_parent": {
  5353. "__id__": 100
  5354. },
  5355. "_children": [
  5356. {
  5357. "__id__": 157
  5358. }
  5359. ],
  5360. "_active": false,
  5361. "_components": [
  5362. {
  5363. "__id__": 162
  5364. },
  5365. {
  5366. "__id__": 163
  5367. },
  5368. {
  5369. "__id__": 164
  5370. }
  5371. ],
  5372. "_prefab": {
  5373. "__id__": 166
  5374. },
  5375. "_opacity": 255,
  5376. "_color": {
  5377. "__type__": "cc.Color",
  5378. "r": 255,
  5379. "g": 255,
  5380. "b": 255,
  5381. "a": 255
  5382. },
  5383. "_contentSize": {
  5384. "__type__": "cc.Size",
  5385. "width": 306,
  5386. "height": 106
  5387. },
  5388. "_anchorPoint": {
  5389. "__type__": "cc.Vec2",
  5390. "x": 0.5,
  5391. "y": 0.5
  5392. },
  5393. "_trs": {
  5394. "__type__": "TypedArray",
  5395. "ctor": "Float64Array",
  5396. "array": [
  5397. 801,
  5398. -53,
  5399. 0,
  5400. 0,
  5401. 0,
  5402. 0,
  5403. 1,
  5404. 1,
  5405. 1,
  5406. 0
  5407. ]
  5408. },
  5409. "_eulerAngles": {
  5410. "__type__": "cc.Vec3",
  5411. "x": 0,
  5412. "y": 0,
  5413. "z": 0
  5414. },
  5415. "_skewX": 0,
  5416. "_skewY": 0,
  5417. "_is3DNode": false,
  5418. "_groupIndex": 0,
  5419. "groupIndex": 0,
  5420. "_id": ""
  5421. },
  5422. {
  5423. "__type__": "cc.Node",
  5424. "_name": "lb",
  5425. "_objFlags": 0,
  5426. "_parent": {
  5427. "__id__": 156
  5428. },
  5429. "_children": [],
  5430. "_active": true,
  5431. "_components": [
  5432. {
  5433. "__id__": 158
  5434. },
  5435. {
  5436. "__id__": 159
  5437. },
  5438. {
  5439. "__id__": 160
  5440. }
  5441. ],
  5442. "_prefab": {
  5443. "__id__": 161
  5444. },
  5445. "_opacity": 255,
  5446. "_color": {
  5447. "__type__": "cc.Color",
  5448. "r": 239,
  5449. "g": 239,
  5450. "b": 239,
  5451. "a": 255
  5452. },
  5453. "_contentSize": {
  5454. "__type__": "cc.Size",
  5455. "width": 284.97,
  5456. "height": 47.8
  5457. },
  5458. "_anchorPoint": {
  5459. "__type__": "cc.Vec2",
  5460. "x": 0.5,
  5461. "y": 0.5
  5462. },
  5463. "_trs": {
  5464. "__type__": "TypedArray",
  5465. "ctor": "Float64Array",
  5466. "array": [
  5467. 0,
  5468. 0,
  5469. 0,
  5470. 0,
  5471. 0,
  5472. 0,
  5473. 1,
  5474. 1,
  5475. 1,
  5476. 1
  5477. ]
  5478. },
  5479. "_eulerAngles": {
  5480. "__type__": "cc.Vec3",
  5481. "x": 0,
  5482. "y": 0,
  5483. "z": 0
  5484. },
  5485. "_skewX": 0,
  5486. "_skewY": 0,
  5487. "_is3DNode": false,
  5488. "_groupIndex": 0,
  5489. "groupIndex": 0,
  5490. "_id": ""
  5491. },
  5492. {
  5493. "__type__": "cc.Label",
  5494. "_name": "",
  5495. "_objFlags": 0,
  5496. "node": {
  5497. "__id__": 157
  5498. },
  5499. "_enabled": true,
  5500. "_materials": [
  5501. {
  5502. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5503. }
  5504. ],
  5505. "_srcBlendFactor": 770,
  5506. "_dstBlendFactor": 771,
  5507. "_string": "ANNOUNCEMENT",
  5508. "_N$string": "ANNOUNCEMENT",
  5509. "_fontSize": 32,
  5510. "_lineHeight": 30,
  5511. "_enableWrapText": true,
  5512. "_N$file": {
  5513. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  5514. },
  5515. "_isSystemFontUsed": false,
  5516. "_spacingX": 0,
  5517. "_batchAsBitmap": false,
  5518. "_styleFlags": 0,
  5519. "_underlineHeight": 0,
  5520. "_N$horizontalAlign": 1,
  5521. "_N$verticalAlign": 1,
  5522. "_N$fontFamily": "Arial",
  5523. "_N$overflow": 0,
  5524. "_N$cacheMode": 0,
  5525. "_id": ""
  5526. },
  5527. {
  5528. "__type__": "cc.LabelOutline",
  5529. "_name": "",
  5530. "_objFlags": 0,
  5531. "node": {
  5532. "__id__": 157
  5533. },
  5534. "_enabled": true,
  5535. "_color": {
  5536. "__type__": "cc.Color",
  5537. "r": 38,
  5538. "g": 17,
  5539. "b": 12,
  5540. "a": 255
  5541. },
  5542. "_width": 5,
  5543. "_id": ""
  5544. },
  5545. {
  5546. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  5547. "_name": "",
  5548. "_objFlags": 0,
  5549. "node": {
  5550. "__id__": 157
  5551. },
  5552. "_enabled": true,
  5553. "_englishCase": 2,
  5554. "i18n_string": "t323",
  5555. "i18n_params": [],
  5556. "_addColon": false,
  5557. "_id": ""
  5558. },
  5559. {
  5560. "__type__": "cc.PrefabInfo",
  5561. "root": {
  5562. "__id__": 156
  5563. },
  5564. "asset": {
  5565. "__uuid__": "d3c803b4-d439-417c-b2b6-ce1f19059868"
  5566. },
  5567. "fileId": "0257Bkg0NEyKj9p2eHdWI8",
  5568. "sync": false
  5569. },
  5570. {
  5571. "__type__": "cc.Sprite",
  5572. "_name": "",
  5573. "_objFlags": 0,
  5574. "node": {
  5575. "__id__": 156
  5576. },
  5577. "_enabled": true,
  5578. "_materials": [
  5579. {
  5580. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5581. }
  5582. ],
  5583. "_srcBlendFactor": 770,
  5584. "_dstBlendFactor": 771,
  5585. "_spriteFrame": {
  5586. "__uuid__": "011a4814-a4c3-4bef-89ff-c3a75a4cb9e1"
  5587. },
  5588. "_type": 1,
  5589. "_sizeMode": 0,
  5590. "_fillType": 0,
  5591. "_fillCenter": {
  5592. "__type__": "cc.Vec2",
  5593. "x": 0,
  5594. "y": 0
  5595. },
  5596. "_fillStart": 0,
  5597. "_fillRange": 0,
  5598. "_isTrimmedMode": true,
  5599. "_atlas": null,
  5600. "_id": ""
  5601. },
  5602. {
  5603. "__type__": "466e8BS6wJF6bKBj6rcxcSE",
  5604. "_name": "",
  5605. "_objFlags": 0,
  5606. "node": {
  5607. "__id__": 156
  5608. },
  5609. "_enabled": true,
  5610. "openContinuous": true,
  5611. "continuousTime": 0.2,
  5612. "multiTouch": false,
  5613. "_id": ""
  5614. },
  5615. {
  5616. "__type__": "61994AafntNFIbmt1zoyLq+",
  5617. "_name": "",
  5618. "_objFlags": 0,
  5619. "node": {
  5620. "__id__": 156
  5621. },
  5622. "_enabled": true,
  5623. "_normalMaterial": null,
  5624. "_grayMaterial": null,
  5625. "duration": 0.1,
  5626. "zoomScale": 1.2,
  5627. "clickEvents": [
  5628. {
  5629. "__id__": 165
  5630. }
  5631. ],
  5632. "_N$interactable": true,
  5633. "_N$enableAutoGrayEffect": false,
  5634. "_N$transition": 3,
  5635. "transition": 3,
  5636. "_N$normalColor": {
  5637. "__type__": "cc.Color",
  5638. "r": 255,
  5639. "g": 255,
  5640. "b": 255,
  5641. "a": 255
  5642. },
  5643. "_N$pressedColor": {
  5644. "__type__": "cc.Color",
  5645. "r": 211,
  5646. "g": 211,
  5647. "b": 211,
  5648. "a": 255
  5649. },
  5650. "pressedColor": {
  5651. "__type__": "cc.Color",
  5652. "r": 211,
  5653. "g": 211,
  5654. "b": 211,
  5655. "a": 255
  5656. },
  5657. "_N$hoverColor": {
  5658. "__type__": "cc.Color",
  5659. "r": 255,
  5660. "g": 255,
  5661. "b": 255,
  5662. "a": 255
  5663. },
  5664. "hoverColor": {
  5665. "__type__": "cc.Color",
  5666. "r": 255,
  5667. "g": 255,
  5668. "b": 255,
  5669. "a": 255
  5670. },
  5671. "_N$disabledColor": {
  5672. "__type__": "cc.Color",
  5673. "r": 124,
  5674. "g": 124,
  5675. "b": 124,
  5676. "a": 255
  5677. },
  5678. "_N$normalSprite": null,
  5679. "_N$pressedSprite": null,
  5680. "pressedSprite": null,
  5681. "_N$hoverSprite": null,
  5682. "hoverSprite": null,
  5683. "_N$disabledSprite": null,
  5684. "_N$target": null,
  5685. "_id": ""
  5686. },
  5687. {
  5688. "__type__": "cc.ClickEvent",
  5689. "target": {
  5690. "__id__": 1
  5691. },
  5692. "component": "",
  5693. "_componentId": "6874dk0AwFNj4RXgBqY+CMZ",
  5694. "handler": "onClickAnnouncement",
  5695. "customEventData": ""
  5696. },
  5697. {
  5698. "__type__": "cc.PrefabInfo",
  5699. "root": {
  5700. "__id__": 156
  5701. },
  5702. "asset": {
  5703. "__uuid__": "d3c803b4-d439-417c-b2b6-ce1f19059868"
  5704. },
  5705. "fileId": "1b1vgF3QVP0bfPuK9ka+vE",
  5706. "sync": false
  5707. },
  5708. {
  5709. "__type__": "cc.Layout",
  5710. "_name": "",
  5711. "_objFlags": 0,
  5712. "node": {
  5713. "__id__": 100
  5714. },
  5715. "_enabled": true,
  5716. "_layoutSize": {
  5717. "__type__": "cc.Size",
  5718. "width": 1000,
  5719. "height": 106
  5720. },
  5721. "_resize": 1,
  5722. "_N$layoutType": 3,
  5723. "_N$cellSize": {
  5724. "__type__": "cc.Size",
  5725. "width": 40,
  5726. "height": 40
  5727. },
  5728. "_N$startAxis": 0,
  5729. "_N$paddingLeft": 0,
  5730. "_N$paddingRight": 0,
  5731. "_N$paddingTop": 0,
  5732. "_N$paddingBottom": 0,
  5733. "_N$spacingX": 18,
  5734. "_N$spacingY": 16,
  5735. "_N$verticalDirection": 1,
  5736. "_N$horizontalDirection": 0,
  5737. "_N$affectedByScale": false,
  5738. "_id": ""
  5739. },
  5740. {
  5741. "__type__": "cc.PrefabInfo",
  5742. "root": {
  5743. "__id__": 1
  5744. },
  5745. "asset": {
  5746. "__id__": 0
  5747. },
  5748. "fileId": "45vLs0neBDD6qwjQcZGrvP",
  5749. "sync": false
  5750. },
  5751. {
  5752. "__type__": "cc.Node",
  5753. "_name": "agreement",
  5754. "_objFlags": 0,
  5755. "_parent": {
  5756. "__id__": 1
  5757. },
  5758. "_children": [
  5759. {
  5760. "__id__": 170
  5761. },
  5762. {
  5763. "__id__": 179
  5764. }
  5765. ],
  5766. "_active": true,
  5767. "_components": [
  5768. {
  5769. "__id__": 184
  5770. }
  5771. ],
  5772. "_prefab": {
  5773. "__id__": 185
  5774. },
  5775. "_opacity": 255,
  5776. "_color": {
  5777. "__type__": "cc.Color",
  5778. "r": 255,
  5779. "g": 255,
  5780. "b": 255,
  5781. "a": 255
  5782. },
  5783. "_contentSize": {
  5784. "__type__": "cc.Size",
  5785. "width": 652.73,
  5786. "height": 80
  5787. },
  5788. "_anchorPoint": {
  5789. "__type__": "cc.Vec2",
  5790. "x": 0.5,
  5791. "y": 0.5
  5792. },
  5793. "_trs": {
  5794. "__type__": "TypedArray",
  5795. "ctor": "Float64Array",
  5796. "array": [
  5797. 0,
  5798. -256,
  5799. 0,
  5800. 0,
  5801. 0,
  5802. 0,
  5803. 1,
  5804. 1,
  5805. 1,
  5806. 1
  5807. ]
  5808. },
  5809. "_eulerAngles": {
  5810. "__type__": "cc.Vec3",
  5811. "x": 0,
  5812. "y": 0,
  5813. "z": 0
  5814. },
  5815. "_skewX": 0,
  5816. "_skewY": 0,
  5817. "_is3DNode": false,
  5818. "_groupIndex": 0,
  5819. "groupIndex": 0,
  5820. "_id": ""
  5821. },
  5822. {
  5823. "__type__": "cc.Node",
  5824. "_name": "agreement",
  5825. "_objFlags": 0,
  5826. "_parent": {
  5827. "__id__": 169
  5828. },
  5829. "_children": [
  5830. {
  5831. "__id__": 171
  5832. },
  5833. {
  5834. "__id__": 174
  5835. }
  5836. ],
  5837. "_active": true,
  5838. "_components": [
  5839. {
  5840. "__id__": 177
  5841. }
  5842. ],
  5843. "_prefab": {
  5844. "__id__": 178
  5845. },
  5846. "_opacity": 255,
  5847. "_color": {
  5848. "__type__": "cc.Color",
  5849. "r": 255,
  5850. "g": 255,
  5851. "b": 255,
  5852. "a": 255
  5853. },
  5854. "_contentSize": {
  5855. "__type__": "cc.Size",
  5856. "width": 60,
  5857. "height": 60
  5858. },
  5859. "_anchorPoint": {
  5860. "__type__": "cc.Vec2",
  5861. "x": 0.5,
  5862. "y": 0.5
  5863. },
  5864. "_trs": {
  5865. "__type__": "TypedArray",
  5866. "ctor": "Float64Array",
  5867. "array": [
  5868. -296.365,
  5869. 0,
  5870. 0,
  5871. 0,
  5872. 0,
  5873. 0,
  5874. 1,
  5875. 1,
  5876. 1,
  5877. 1
  5878. ]
  5879. },
  5880. "_eulerAngles": {
  5881. "__type__": "cc.Vec3",
  5882. "x": 0,
  5883. "y": 0,
  5884. "z": 0
  5885. },
  5886. "_skewX": 0,
  5887. "_skewY": 0,
  5888. "_is3DNode": false,
  5889. "_groupIndex": 0,
  5890. "groupIndex": 0,
  5891. "_id": ""
  5892. },
  5893. {
  5894. "__type__": "cc.Node",
  5895. "_name": "Background",
  5896. "_objFlags": 512,
  5897. "_parent": {
  5898. "__id__": 170
  5899. },
  5900. "_children": [],
  5901. "_active": true,
  5902. "_components": [
  5903. {
  5904. "__id__": 172
  5905. }
  5906. ],
  5907. "_prefab": {
  5908. "__id__": 173
  5909. },
  5910. "_opacity": 255,
  5911. "_color": {
  5912. "__type__": "cc.Color",
  5913. "r": 255,
  5914. "g": 255,
  5915. "b": 255,
  5916. "a": 255
  5917. },
  5918. "_contentSize": {
  5919. "__type__": "cc.Size",
  5920. "width": 60,
  5921. "height": 60
  5922. },
  5923. "_anchorPoint": {
  5924. "__type__": "cc.Vec2",
  5925. "x": 0.5,
  5926. "y": 0.5
  5927. },
  5928. "_trs": {
  5929. "__type__": "TypedArray",
  5930. "ctor": "Float64Array",
  5931. "array": [
  5932. 0,
  5933. 0,
  5934. 0,
  5935. 0,
  5936. 0,
  5937. 0,
  5938. 1,
  5939. 1,
  5940. 1,
  5941. 0
  5942. ]
  5943. },
  5944. "_eulerAngles": {
  5945. "__type__": "cc.Vec3",
  5946. "x": 0,
  5947. "y": 0,
  5948. "z": 0
  5949. },
  5950. "_skewX": 0,
  5951. "_skewY": 0,
  5952. "_is3DNode": false,
  5953. "_groupIndex": 0,
  5954. "groupIndex": 0,
  5955. "_id": ""
  5956. },
  5957. {
  5958. "__type__": "cc.Sprite",
  5959. "_name": "",
  5960. "_objFlags": 0,
  5961. "node": {
  5962. "__id__": 171
  5963. },
  5964. "_enabled": true,
  5965. "_materials": [
  5966. {
  5967. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5968. }
  5969. ],
  5970. "_srcBlendFactor": 770,
  5971. "_dstBlendFactor": 771,
  5972. "_spriteFrame": {
  5973. "__uuid__": "a75724db-0345-46b3-bba1-6ea6743fbe06"
  5974. },
  5975. "_type": 0,
  5976. "_sizeMode": 0,
  5977. "_fillType": 0,
  5978. "_fillCenter": {
  5979. "__type__": "cc.Vec2",
  5980. "x": 0,
  5981. "y": 0
  5982. },
  5983. "_fillStart": 0,
  5984. "_fillRange": 0,
  5985. "_isTrimmedMode": true,
  5986. "_atlas": null,
  5987. "_id": ""
  5988. },
  5989. {
  5990. "__type__": "cc.PrefabInfo",
  5991. "root": {
  5992. "__id__": 1
  5993. },
  5994. "asset": {
  5995. "__id__": 0
  5996. },
  5997. "fileId": "53N3wSbxpNXqoeQvmuRg8h",
  5998. "sync": false
  5999. },
  6000. {
  6001. "__type__": "cc.Node",
  6002. "_name": "checkmark",
  6003. "_objFlags": 512,
  6004. "_parent": {
  6005. "__id__": 170
  6006. },
  6007. "_children": [],
  6008. "_active": true,
  6009. "_components": [
  6010. {
  6011. "__id__": 175
  6012. }
  6013. ],
  6014. "_prefab": {
  6015. "__id__": 176
  6016. },
  6017. "_opacity": 255,
  6018. "_color": {
  6019. "__type__": "cc.Color",
  6020. "r": 255,
  6021. "g": 255,
  6022. "b": 255,
  6023. "a": 255
  6024. },
  6025. "_contentSize": {
  6026. "__type__": "cc.Size",
  6027. "width": 67,
  6028. "height": 46
  6029. },
  6030. "_anchorPoint": {
  6031. "__type__": "cc.Vec2",
  6032. "x": 0.5,
  6033. "y": 0.5
  6034. },
  6035. "_trs": {
  6036. "__type__": "TypedArray",
  6037. "ctor": "Float64Array",
  6038. "array": [
  6039. 0,
  6040. 0,
  6041. 0,
  6042. 0,
  6043. 0,
  6044. 0,
  6045. 1,
  6046. 1,
  6047. 1,
  6048. 1
  6049. ]
  6050. },
  6051. "_eulerAngles": {
  6052. "__type__": "cc.Vec3",
  6053. "x": 0,
  6054. "y": 0,
  6055. "z": 0
  6056. },
  6057. "_skewX": 0,
  6058. "_skewY": 0,
  6059. "_is3DNode": false,
  6060. "_groupIndex": 0,
  6061. "groupIndex": 0,
  6062. "_id": ""
  6063. },
  6064. {
  6065. "__type__": "cc.Sprite",
  6066. "_name": "",
  6067. "_objFlags": 0,
  6068. "node": {
  6069. "__id__": 174
  6070. },
  6071. "_enabled": true,
  6072. "_materials": [
  6073. {
  6074. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6075. }
  6076. ],
  6077. "_srcBlendFactor": 770,
  6078. "_dstBlendFactor": 771,
  6079. "_spriteFrame": {
  6080. "__uuid__": "b9e4722c-e1d5-4892-ade4-2d0f9587183e"
  6081. },
  6082. "_type": 0,
  6083. "_sizeMode": 0,
  6084. "_fillType": 0,
  6085. "_fillCenter": {
  6086. "__type__": "cc.Vec2",
  6087. "x": 0,
  6088. "y": 0
  6089. },
  6090. "_fillStart": 0,
  6091. "_fillRange": 0,
  6092. "_isTrimmedMode": false,
  6093. "_atlas": null,
  6094. "_id": ""
  6095. },
  6096. {
  6097. "__type__": "cc.PrefabInfo",
  6098. "root": {
  6099. "__id__": 1
  6100. },
  6101. "asset": {
  6102. "__id__": 0
  6103. },
  6104. "fileId": "aeM8R1NCdCxaZ2a7G1OOs9",
  6105. "sync": false
  6106. },
  6107. {
  6108. "__type__": "cc.Toggle",
  6109. "_name": "",
  6110. "_objFlags": 0,
  6111. "node": {
  6112. "__id__": 170
  6113. },
  6114. "_enabled": true,
  6115. "_normalMaterial": null,
  6116. "_grayMaterial": null,
  6117. "duration": 0.1,
  6118. "zoomScale": 1.2,
  6119. "clickEvents": [],
  6120. "_N$interactable": true,
  6121. "_N$enableAutoGrayEffect": false,
  6122. "_N$transition": 3,
  6123. "transition": 3,
  6124. "_N$normalColor": {
  6125. "__type__": "cc.Color",
  6126. "r": 214,
  6127. "g": 214,
  6128. "b": 214,
  6129. "a": 255
  6130. },
  6131. "_N$pressedColor": {
  6132. "__type__": "cc.Color",
  6133. "r": 211,
  6134. "g": 211,
  6135. "b": 211,
  6136. "a": 255
  6137. },
  6138. "pressedColor": {
  6139. "__type__": "cc.Color",
  6140. "r": 211,
  6141. "g": 211,
  6142. "b": 211,
  6143. "a": 255
  6144. },
  6145. "_N$hoverColor": {
  6146. "__type__": "cc.Color",
  6147. "r": 255,
  6148. "g": 255,
  6149. "b": 255,
  6150. "a": 255
  6151. },
  6152. "hoverColor": {
  6153. "__type__": "cc.Color",
  6154. "r": 255,
  6155. "g": 255,
  6156. "b": 255,
  6157. "a": 255
  6158. },
  6159. "_N$disabledColor": {
  6160. "__type__": "cc.Color",
  6161. "r": 124,
  6162. "g": 124,
  6163. "b": 124,
  6164. "a": 255
  6165. },
  6166. "_N$normalSprite": null,
  6167. "_N$pressedSprite": null,
  6168. "pressedSprite": null,
  6169. "_N$hoverSprite": null,
  6170. "hoverSprite": null,
  6171. "_N$disabledSprite": null,
  6172. "_N$target": {
  6173. "__id__": 171
  6174. },
  6175. "_N$isChecked": true,
  6176. "toggleGroup": null,
  6177. "checkMark": {
  6178. "__id__": 175
  6179. },
  6180. "checkEvents": [],
  6181. "_id": ""
  6182. },
  6183. {
  6184. "__type__": "cc.PrefabInfo",
  6185. "root": {
  6186. "__id__": 1
  6187. },
  6188. "asset": {
  6189. "__id__": 0
  6190. },
  6191. "fileId": "88FONJBkpA4q6dxGGSAjb3",
  6192. "sync": false
  6193. },
  6194. {
  6195. "__type__": "cc.Node",
  6196. "_name": "agreement_lb",
  6197. "_objFlags": 0,
  6198. "_parent": {
  6199. "__id__": 169
  6200. },
  6201. "_children": [],
  6202. "_active": true,
  6203. "_components": [
  6204. {
  6205. "__id__": 180
  6206. },
  6207. {
  6208. "__id__": 181
  6209. },
  6210. {
  6211. "__id__": 182
  6212. }
  6213. ],
  6214. "_prefab": {
  6215. "__id__": 183
  6216. },
  6217. "_opacity": 255,
  6218. "_color": {
  6219. "__type__": "cc.Color",
  6220. "r": 234,
  6221. "g": 194,
  6222. "b": 126,
  6223. "a": 255
  6224. },
  6225. "_contentSize": {
  6226. "__type__": "cc.Size",
  6227. "width": 592.73,
  6228. "height": 56.4
  6229. },
  6230. "_anchorPoint": {
  6231. "__type__": "cc.Vec2",
  6232. "x": 0.5,
  6233. "y": 0.5
  6234. },
  6235. "_trs": {
  6236. "__type__": "TypedArray",
  6237. "ctor": "Float64Array",
  6238. "array": [
  6239. 30,
  6240. 0,
  6241. 0,
  6242. 0,
  6243. 0,
  6244. 0,
  6245. 1,
  6246. 1,
  6247. 1,
  6248. 1
  6249. ]
  6250. },
  6251. "_eulerAngles": {
  6252. "__type__": "cc.Vec3",
  6253. "x": 0,
  6254. "y": 0,
  6255. "z": 0
  6256. },
  6257. "_skewX": 0,
  6258. "_skewY": 0,
  6259. "_is3DNode": false,
  6260. "_groupIndex": 0,
  6261. "groupIndex": 0,
  6262. "_id": ""
  6263. },
  6264. {
  6265. "__type__": "cc.Label",
  6266. "_name": "",
  6267. "_objFlags": 0,
  6268. "node": {
  6269. "__id__": 179
  6270. },
  6271. "_enabled": true,
  6272. "_materials": [
  6273. {
  6274. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6275. }
  6276. ],
  6277. "_srcBlendFactor": 770,
  6278. "_dstBlendFactor": 771,
  6279. "_string": "Account login privacy policy user agreement",
  6280. "_N$string": "Account login privacy policy user agreement",
  6281. "_fontSize": 30,
  6282. "_lineHeight": 40,
  6283. "_enableWrapText": true,
  6284. "_N$file": {
  6285. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  6286. },
  6287. "_isSystemFontUsed": false,
  6288. "_spacingX": 0,
  6289. "_batchAsBitmap": false,
  6290. "_styleFlags": 0,
  6291. "_underlineHeight": 0,
  6292. "_N$horizontalAlign": 1,
  6293. "_N$verticalAlign": 1,
  6294. "_N$fontFamily": "Arial",
  6295. "_N$overflow": 0,
  6296. "_N$cacheMode": 0,
  6297. "_id": ""
  6298. },
  6299. {
  6300. "__type__": "cc.LabelOutline",
  6301. "_name": "",
  6302. "_objFlags": 0,
  6303. "node": {
  6304. "__id__": 179
  6305. },
  6306. "_enabled": true,
  6307. "_color": {
  6308. "__type__": "cc.Color",
  6309. "r": 38,
  6310. "g": 17,
  6311. "b": 12,
  6312. "a": 255
  6313. },
  6314. "_width": 3,
  6315. "_id": ""
  6316. },
  6317. {
  6318. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  6319. "_name": "",
  6320. "_objFlags": 0,
  6321. "node": {
  6322. "__id__": 179
  6323. },
  6324. "_enabled": true,
  6325. "_englishCase": 1,
  6326. "i18n_string": "t335",
  6327. "i18n_params": [],
  6328. "_addColon": false,
  6329. "_id": ""
  6330. },
  6331. {
  6332. "__type__": "cc.PrefabInfo",
  6333. "root": {
  6334. "__id__": 179
  6335. },
  6336. "asset": {
  6337. "__uuid__": "b55c4816-1512-4abe-a683-117b4601b39a"
  6338. },
  6339. "fileId": "47yELCRS9Bh4fNl3WZxw0p",
  6340. "sync": false
  6341. },
  6342. {
  6343. "__type__": "cc.Layout",
  6344. "_name": "",
  6345. "_objFlags": 0,
  6346. "node": {
  6347. "__id__": 169
  6348. },
  6349. "_enabled": true,
  6350. "_layoutSize": {
  6351. "__type__": "cc.Size",
  6352. "width": 652.73,
  6353. "height": 80
  6354. },
  6355. "_resize": 1,
  6356. "_N$layoutType": 1,
  6357. "_N$cellSize": {
  6358. "__type__": "cc.Size",
  6359. "width": 40,
  6360. "height": 40
  6361. },
  6362. "_N$startAxis": 0,
  6363. "_N$paddingLeft": 0,
  6364. "_N$paddingRight": 0,
  6365. "_N$paddingTop": 0,
  6366. "_N$paddingBottom": 0,
  6367. "_N$spacingX": 0,
  6368. "_N$spacingY": 0,
  6369. "_N$verticalDirection": 1,
  6370. "_N$horizontalDirection": 0,
  6371. "_N$affectedByScale": false,
  6372. "_id": ""
  6373. },
  6374. {
  6375. "__type__": "cc.PrefabInfo",
  6376. "root": {
  6377. "__id__": 1
  6378. },
  6379. "asset": {
  6380. "__id__": 0
  6381. },
  6382. "fileId": "e8bINo+ctOS4y4Spc+1Wo6",
  6383. "sync": false
  6384. },
  6385. {
  6386. "__type__": "cc.Node",
  6387. "_name": "btn_close",
  6388. "_objFlags": 0,
  6389. "_parent": {
  6390. "__id__": 1
  6391. },
  6392. "_children": [],
  6393. "_active": true,
  6394. "_components": [
  6395. {
  6396. "__id__": 187
  6397. },
  6398. {
  6399. "__id__": 188
  6400. },
  6401. {
  6402. "__id__": 189
  6403. }
  6404. ],
  6405. "_prefab": {
  6406. "__id__": 191
  6407. },
  6408. "_opacity": 255,
  6409. "_color": {
  6410. "__type__": "cc.Color",
  6411. "r": 255,
  6412. "g": 255,
  6413. "b": 255,
  6414. "a": 255
  6415. },
  6416. "_contentSize": {
  6417. "__type__": "cc.Size",
  6418. "width": 135,
  6419. "height": 135
  6420. },
  6421. "_anchorPoint": {
  6422. "__type__": "cc.Vec2",
  6423. "x": 0.5,
  6424. "y": 0.5
  6425. },
  6426. "_trs": {
  6427. "__type__": "TypedArray",
  6428. "ctor": "Float64Array",
  6429. "array": [
  6430. 530,
  6431. 286,
  6432. 0,
  6433. 0,
  6434. 0,
  6435. 0,
  6436. 1,
  6437. 1,
  6438. 1,
  6439. 0
  6440. ]
  6441. },
  6442. "_eulerAngles": {
  6443. "__type__": "cc.Vec3",
  6444. "x": 0,
  6445. "y": 0,
  6446. "z": 0
  6447. },
  6448. "_skewX": 0,
  6449. "_skewY": 0,
  6450. "_is3DNode": false,
  6451. "_groupIndex": 0,
  6452. "groupIndex": 0,
  6453. "_id": ""
  6454. },
  6455. {
  6456. "__type__": "cc.Sprite",
  6457. "_name": "",
  6458. "_objFlags": 0,
  6459. "node": {
  6460. "__id__": 186
  6461. },
  6462. "_enabled": true,
  6463. "_materials": [
  6464. {
  6465. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6466. }
  6467. ],
  6468. "_srcBlendFactor": 770,
  6469. "_dstBlendFactor": 771,
  6470. "_spriteFrame": {
  6471. "__uuid__": "23c8a125-f917-46e9-bcf8-5d8af9ec00c7"
  6472. },
  6473. "_type": 0,
  6474. "_sizeMode": 1,
  6475. "_fillType": 0,
  6476. "_fillCenter": {
  6477. "__type__": "cc.Vec2",
  6478. "x": 0,
  6479. "y": 0
  6480. },
  6481. "_fillStart": 0,
  6482. "_fillRange": 0,
  6483. "_isTrimmedMode": true,
  6484. "_atlas": null,
  6485. "_id": ""
  6486. },
  6487. {
  6488. "__type__": "466e8BS6wJF6bKBj6rcxcSE",
  6489. "_name": "",
  6490. "_objFlags": 0,
  6491. "node": {
  6492. "__id__": 186
  6493. },
  6494. "_enabled": true,
  6495. "openContinuous": true,
  6496. "continuousTime": 0.2,
  6497. "multiTouch": false,
  6498. "_id": ""
  6499. },
  6500. {
  6501. "__type__": "61994AafntNFIbmt1zoyLq+",
  6502. "_name": "",
  6503. "_objFlags": 0,
  6504. "node": {
  6505. "__id__": 186
  6506. },
  6507. "_enabled": true,
  6508. "_normalMaterial": null,
  6509. "_grayMaterial": null,
  6510. "duration": 0.1,
  6511. "zoomScale": 1.1,
  6512. "clickEvents": [
  6513. {
  6514. "__id__": 190
  6515. }
  6516. ],
  6517. "_N$interactable": true,
  6518. "_N$enableAutoGrayEffect": false,
  6519. "_N$transition": 3,
  6520. "transition": 3,
  6521. "_N$normalColor": {
  6522. "__type__": "cc.Color",
  6523. "r": 255,
  6524. "g": 255,
  6525. "b": 255,
  6526. "a": 255
  6527. },
  6528. "_N$pressedColor": {
  6529. "__type__": "cc.Color",
  6530. "r": 211,
  6531. "g": 211,
  6532. "b": 211,
  6533. "a": 255
  6534. },
  6535. "pressedColor": {
  6536. "__type__": "cc.Color",
  6537. "r": 211,
  6538. "g": 211,
  6539. "b": 211,
  6540. "a": 255
  6541. },
  6542. "_N$hoverColor": {
  6543. "__type__": "cc.Color",
  6544. "r": 255,
  6545. "g": 255,
  6546. "b": 255,
  6547. "a": 255
  6548. },
  6549. "hoverColor": {
  6550. "__type__": "cc.Color",
  6551. "r": 255,
  6552. "g": 255,
  6553. "b": 255,
  6554. "a": 255
  6555. },
  6556. "_N$disabledColor": {
  6557. "__type__": "cc.Color",
  6558. "r": 124,
  6559. "g": 124,
  6560. "b": 124,
  6561. "a": 255
  6562. },
  6563. "_N$normalSprite": null,
  6564. "_N$pressedSprite": null,
  6565. "pressedSprite": null,
  6566. "_N$hoverSprite": null,
  6567. "hoverSprite": null,
  6568. "_N$disabledSprite": null,
  6569. "_N$target": null,
  6570. "_id": ""
  6571. },
  6572. {
  6573. "__type__": "cc.ClickEvent",
  6574. "target": {
  6575. "__id__": 1
  6576. },
  6577. "component": "",
  6578. "_componentId": "6874dk0AwFNj4RXgBqY+CMZ",
  6579. "handler": "hide",
  6580. "customEventData": ""
  6581. },
  6582. {
  6583. "__type__": "cc.PrefabInfo",
  6584. "root": {
  6585. "__id__": 1
  6586. },
  6587. "asset": {
  6588. "__id__": 0
  6589. },
  6590. "fileId": "1bKK1J1J9MCoxXFERENwIb",
  6591. "sync": false
  6592. },
  6593. {
  6594. "__type__": "cc.Node",
  6595. "_name": "version_lb",
  6596. "_objFlags": 0,
  6597. "_parent": {
  6598. "__id__": 1
  6599. },
  6600. "_children": [],
  6601. "_active": true,
  6602. "_components": [
  6603. {
  6604. "__id__": 193
  6605. },
  6606. {
  6607. "__id__": 194
  6608. },
  6609. {
  6610. "__id__": 195
  6611. }
  6612. ],
  6613. "_prefab": {
  6614. "__id__": 196
  6615. },
  6616. "_opacity": 255,
  6617. "_color": {
  6618. "__type__": "cc.Color",
  6619. "r": 234,
  6620. "g": 194,
  6621. "b": 126,
  6622. "a": 255
  6623. },
  6624. "_contentSize": {
  6625. "__type__": "cc.Size",
  6626. "width": 235.94,
  6627. "height": 56.4
  6628. },
  6629. "_anchorPoint": {
  6630. "__type__": "cc.Vec2",
  6631. "x": 0.5,
  6632. "y": 0.5
  6633. },
  6634. "_trs": {
  6635. "__type__": "TypedArray",
  6636. "ctor": "Float64Array",
  6637. "array": [
  6638. 0,
  6639. -305,
  6640. 0,
  6641. 0,
  6642. 0,
  6643. 0,
  6644. 1,
  6645. 1,
  6646. 1,
  6647. 1
  6648. ]
  6649. },
  6650. "_eulerAngles": {
  6651. "__type__": "cc.Vec3",
  6652. "x": 0,
  6653. "y": 0,
  6654. "z": 0
  6655. },
  6656. "_skewX": 0,
  6657. "_skewY": 0,
  6658. "_is3DNode": false,
  6659. "_groupIndex": 0,
  6660. "groupIndex": 0,
  6661. "_id": ""
  6662. },
  6663. {
  6664. "__type__": "cc.Label",
  6665. "_name": "",
  6666. "_objFlags": 0,
  6667. "node": {
  6668. "__id__": 192
  6669. },
  6670. "_enabled": true,
  6671. "_materials": [
  6672. {
  6673. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6674. }
  6675. ],
  6676. "_srcBlendFactor": 770,
  6677. "_dstBlendFactor": 771,
  6678. "_string": "version number:0",
  6679. "_N$string": "version number:0",
  6680. "_fontSize": 30,
  6681. "_lineHeight": 40,
  6682. "_enableWrapText": true,
  6683. "_N$file": {
  6684. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  6685. },
  6686. "_isSystemFontUsed": false,
  6687. "_spacingX": 0,
  6688. "_batchAsBitmap": false,
  6689. "_styleFlags": 0,
  6690. "_underlineHeight": 0,
  6691. "_N$horizontalAlign": 1,
  6692. "_N$verticalAlign": 1,
  6693. "_N$fontFamily": "Arial",
  6694. "_N$overflow": 0,
  6695. "_N$cacheMode": 0,
  6696. "_id": ""
  6697. },
  6698. {
  6699. "__type__": "cc.LabelOutline",
  6700. "_name": "",
  6701. "_objFlags": 0,
  6702. "node": {
  6703. "__id__": 192
  6704. },
  6705. "_enabled": true,
  6706. "_color": {
  6707. "__type__": "cc.Color",
  6708. "r": 38,
  6709. "g": 17,
  6710. "b": 12,
  6711. "a": 255
  6712. },
  6713. "_width": 3,
  6714. "_id": ""
  6715. },
  6716. {
  6717. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  6718. "_name": "",
  6719. "_objFlags": 0,
  6720. "node": {
  6721. "__id__": 192
  6722. },
  6723. "_enabled": true,
  6724. "_englishCase": 0,
  6725. "i18n_string": "t336",
  6726. "i18n_params": [
  6727. "0"
  6728. ],
  6729. "_addColon": false,
  6730. "_id": ""
  6731. },
  6732. {
  6733. "__type__": "cc.PrefabInfo",
  6734. "root": {
  6735. "__id__": 192
  6736. },
  6737. "asset": {
  6738. "__uuid__": "b55c4816-1512-4abe-a683-117b4601b39a"
  6739. },
  6740. "fileId": "ffT5lWubFG2YqB3/FU++4K",
  6741. "sync": false
  6742. },
  6743. {
  6744. "__type__": "cc.Node",
  6745. "_name": "redeem_code",
  6746. "_objFlags": 0,
  6747. "_parent": {
  6748. "__id__": 1
  6749. },
  6750. "_children": [
  6751. {
  6752. "__id__": 198
  6753. },
  6754. {
  6755. "__id__": 203
  6756. },
  6757. {
  6758. "__id__": 206
  6759. },
  6760. {
  6761. "__id__": 211
  6762. },
  6763. {
  6764. "__id__": 222
  6765. },
  6766. {
  6767. "__id__": 233
  6768. }
  6769. ],
  6770. "_active": false,
  6771. "_components": [],
  6772. "_prefab": {
  6773. "__id__": 250
  6774. },
  6775. "_opacity": 255,
  6776. "_color": {
  6777. "__type__": "cc.Color",
  6778. "r": 255,
  6779. "g": 255,
  6780. "b": 255,
  6781. "a": 255
  6782. },
  6783. "_contentSize": {
  6784. "__type__": "cc.Size",
  6785. "width": 2400,
  6786. "height": 1080
  6787. },
  6788. "_anchorPoint": {
  6789. "__type__": "cc.Vec2",
  6790. "x": 0.5,
  6791. "y": 0.5
  6792. },
  6793. "_trs": {
  6794. "__type__": "TypedArray",
  6795. "ctor": "Float64Array",
  6796. "array": [
  6797. 0,
  6798. 0,
  6799. 0,
  6800. 0,
  6801. 0,
  6802. 0,
  6803. 1,
  6804. 1,
  6805. 1,
  6806. 1
  6807. ]
  6808. },
  6809. "_eulerAngles": {
  6810. "__type__": "cc.Vec3",
  6811. "x": 0,
  6812. "y": 0,
  6813. "z": 0
  6814. },
  6815. "_skewX": 0,
  6816. "_skewY": 0,
  6817. "_is3DNode": false,
  6818. "_groupIndex": 0,
  6819. "groupIndex": 0,
  6820. "_id": ""
  6821. },
  6822. {
  6823. "__type__": "cc.Node",
  6824. "_name": "bg",
  6825. "_objFlags": 0,
  6826. "_parent": {
  6827. "__id__": 197
  6828. },
  6829. "_children": [],
  6830. "_active": true,
  6831. "_components": [
  6832. {
  6833. "__id__": 199
  6834. },
  6835. {
  6836. "__id__": 200
  6837. },
  6838. {
  6839. "__id__": 201
  6840. }
  6841. ],
  6842. "_prefab": {
  6843. "__id__": 202
  6844. },
  6845. "_opacity": 204,
  6846. "_color": {
  6847. "__type__": "cc.Color",
  6848. "r": 0,
  6849. "g": 0,
  6850. "b": 0,
  6851. "a": 255
  6852. },
  6853. "_contentSize": {
  6854. "__type__": "cc.Size",
  6855. "width": 2400,
  6856. "height": 1080
  6857. },
  6858. "_anchorPoint": {
  6859. "__type__": "cc.Vec2",
  6860. "x": 0.5,
  6861. "y": 0.5
  6862. },
  6863. "_trs": {
  6864. "__type__": "TypedArray",
  6865. "ctor": "Float64Array",
  6866. "array": [
  6867. 0,
  6868. 0,
  6869. 0,
  6870. 0,
  6871. 0,
  6872. 0,
  6873. 1,
  6874. 1,
  6875. 1,
  6876. 1
  6877. ]
  6878. },
  6879. "_eulerAngles": {
  6880. "__type__": "cc.Vec3",
  6881. "x": 0,
  6882. "y": 0,
  6883. "z": 0
  6884. },
  6885. "_skewX": 0,
  6886. "_skewY": 0,
  6887. "_is3DNode": false,
  6888. "_groupIndex": 0,
  6889. "groupIndex": 0,
  6890. "_id": ""
  6891. },
  6892. {
  6893. "__type__": "cc.Sprite",
  6894. "_name": "",
  6895. "_objFlags": 0,
  6896. "node": {
  6897. "__id__": 198
  6898. },
  6899. "_enabled": true,
  6900. "_materials": [
  6901. {
  6902. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6903. }
  6904. ],
  6905. "_srcBlendFactor": 770,
  6906. "_dstBlendFactor": 771,
  6907. "_spriteFrame": {
  6908. "__uuid__": "05b69229-67ad-42c3-bf71-09c34d9def2b"
  6909. },
  6910. "_type": 1,
  6911. "_sizeMode": 0,
  6912. "_fillType": 0,
  6913. "_fillCenter": {
  6914. "__type__": "cc.Vec2",
  6915. "x": 0,
  6916. "y": 0
  6917. },
  6918. "_fillStart": 0,
  6919. "_fillRange": 0,
  6920. "_isTrimmedMode": true,
  6921. "_atlas": null,
  6922. "_id": ""
  6923. },
  6924. {
  6925. "__type__": "cc.BlockInputEvents",
  6926. "_name": "",
  6927. "_objFlags": 0,
  6928. "node": {
  6929. "__id__": 198
  6930. },
  6931. "_enabled": true,
  6932. "_id": ""
  6933. },
  6934. {
  6935. "__type__": "62f58zwdOVN/rFVGtus3pDj",
  6936. "_name": "",
  6937. "_objFlags": 0,
  6938. "node": {
  6939. "__id__": 198
  6940. },
  6941. "_enabled": true,
  6942. "widthFit": true,
  6943. "heightFit": true,
  6944. "_id": ""
  6945. },
  6946. {
  6947. "__type__": "cc.PrefabInfo",
  6948. "root": {
  6949. "__id__": 197
  6950. },
  6951. "asset": {
  6952. "__uuid__": "291da56a-9598-4404-b813-4300757abe49"
  6953. },
  6954. "fileId": "62Ic/o7ThDE5tkgIgve8Hy",
  6955. "sync": false
  6956. },
  6957. {
  6958. "__type__": "cc.Node",
  6959. "_name": "em_bg",
  6960. "_objFlags": 0,
  6961. "_parent": {
  6962. "__id__": 197
  6963. },
  6964. "_children": [],
  6965. "_active": true,
  6966. "_components": [
  6967. {
  6968. "__id__": 204
  6969. }
  6970. ],
  6971. "_prefab": {
  6972. "__id__": 205
  6973. },
  6974. "_opacity": 255,
  6975. "_color": {
  6976. "__type__": "cc.Color",
  6977. "r": 255,
  6978. "g": 255,
  6979. "b": 255,
  6980. "a": 255
  6981. },
  6982. "_contentSize": {
  6983. "__type__": "cc.Size",
  6984. "width": 659,
  6985. "height": 381
  6986. },
  6987. "_anchorPoint": {
  6988. "__type__": "cc.Vec2",
  6989. "x": 0.5,
  6990. "y": 0.5
  6991. },
  6992. "_trs": {
  6993. "__type__": "TypedArray",
  6994. "ctor": "Float64Array",
  6995. "array": [
  6996. 0,
  6997. 0,
  6998. 0,
  6999. 0,
  7000. 0,
  7001. 0,
  7002. 1,
  7003. 1,
  7004. 1,
  7005. 1
  7006. ]
  7007. },
  7008. "_eulerAngles": {
  7009. "__type__": "cc.Vec3",
  7010. "x": 0,
  7011. "y": 0,
  7012. "z": 0
  7013. },
  7014. "_skewX": 0,
  7015. "_skewY": 0,
  7016. "_is3DNode": false,
  7017. "_groupIndex": 0,
  7018. "groupIndex": 0,
  7019. "_id": ""
  7020. },
  7021. {
  7022. "__type__": "cc.Sprite",
  7023. "_name": "",
  7024. "_objFlags": 0,
  7025. "node": {
  7026. "__id__": 203
  7027. },
  7028. "_enabled": true,
  7029. "_materials": [
  7030. {
  7031. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  7032. }
  7033. ],
  7034. "_srcBlendFactor": 770,
  7035. "_dstBlendFactor": 771,
  7036. "_spriteFrame": {
  7037. "__uuid__": "e07f7d80-677d-4def-b648-88341c7a5b1a"
  7038. },
  7039. "_type": 1,
  7040. "_sizeMode": 0,
  7041. "_fillType": 0,
  7042. "_fillCenter": {
  7043. "__type__": "cc.Vec2",
  7044. "x": 0,
  7045. "y": 0
  7046. },
  7047. "_fillStart": 0,
  7048. "_fillRange": 0,
  7049. "_isTrimmedMode": true,
  7050. "_atlas": null,
  7051. "_id": ""
  7052. },
  7053. {
  7054. "__type__": "cc.PrefabInfo",
  7055. "root": {
  7056. "__id__": 197
  7057. },
  7058. "asset": {
  7059. "__uuid__": "291da56a-9598-4404-b813-4300757abe49"
  7060. },
  7061. "fileId": "c2rjLGmxxM9KqVaaoOAsLn",
  7062. "sync": false
  7063. },
  7064. {
  7065. "__type__": "cc.Node",
  7066. "_name": "title_lb",
  7067. "_objFlags": 0,
  7068. "_parent": {
  7069. "__id__": 197
  7070. },
  7071. "_children": [],
  7072. "_active": true,
  7073. "_components": [
  7074. {
  7075. "__id__": 207
  7076. },
  7077. {
  7078. "__id__": 208
  7079. },
  7080. {
  7081. "__id__": 209
  7082. }
  7083. ],
  7084. "_prefab": {
  7085. "__id__": 210
  7086. },
  7087. "_opacity": 255,
  7088. "_color": {
  7089. "__type__": "cc.Color",
  7090. "r": 255,
  7091. "g": 214,
  7092. "b": 145,
  7093. "a": 255
  7094. },
  7095. "_contentSize": {
  7096. "__type__": "cc.Size",
  7097. "width": 540,
  7098. "height": 54
  7099. },
  7100. "_anchorPoint": {
  7101. "__type__": "cc.Vec2",
  7102. "x": 0.5,
  7103. "y": 0.5
  7104. },
  7105. "_trs": {
  7106. "__type__": "TypedArray",
  7107. "ctor": "Float64Array",
  7108. "array": [
  7109. 0,
  7110. 122.548,
  7111. 0,
  7112. 0,
  7113. 0,
  7114. 0,
  7115. 1,
  7116. 1,
  7117. 1,
  7118. 1
  7119. ]
  7120. },
  7121. "_eulerAngles": {
  7122. "__type__": "cc.Vec3",
  7123. "x": 0,
  7124. "y": 0,
  7125. "z": 0
  7126. },
  7127. "_skewX": 0,
  7128. "_skewY": 0,
  7129. "_is3DNode": false,
  7130. "_groupIndex": 0,
  7131. "groupIndex": 0,
  7132. "_id": ""
  7133. },
  7134. {
  7135. "__type__": "cc.Label",
  7136. "_name": "",
  7137. "_objFlags": 0,
  7138. "node": {
  7139. "__id__": 206
  7140. },
  7141. "_enabled": true,
  7142. "_materials": [
  7143. {
  7144. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  7145. }
  7146. ],
  7147. "_srcBlendFactor": 770,
  7148. "_dstBlendFactor": 771,
  7149. "_string": "Redemption Code",
  7150. "_N$string": "Redemption Code",
  7151. "_fontSize": 44,
  7152. "_lineHeight": 48,
  7153. "_enableWrapText": true,
  7154. "_N$file": {
  7155. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  7156. },
  7157. "_isSystemFontUsed": false,
  7158. "_spacingX": 0,
  7159. "_batchAsBitmap": false,
  7160. "_styleFlags": 0,
  7161. "_underlineHeight": 0,
  7162. "_N$horizontalAlign": 1,
  7163. "_N$verticalAlign": 1,
  7164. "_N$fontFamily": "Arial",
  7165. "_N$overflow": 3,
  7166. "_N$cacheMode": 0,
  7167. "_id": ""
  7168. },
  7169. {
  7170. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  7171. "_name": "",
  7172. "_objFlags": 0,
  7173. "node": {
  7174. "__id__": 206
  7175. },
  7176. "_enabled": true,
  7177. "_englishCase": 0,
  7178. "i18n_string": "t339",
  7179. "i18n_params": [],
  7180. "_addColon": false,
  7181. "_id": ""
  7182. },
  7183. {
  7184. "__type__": "cc.LabelOutline",
  7185. "_name": "",
  7186. "_objFlags": 0,
  7187. "node": {
  7188. "__id__": 206
  7189. },
  7190. "_enabled": true,
  7191. "_color": {
  7192. "__type__": "cc.Color",
  7193. "r": 38,
  7194. "g": 17,
  7195. "b": 12,
  7196. "a": 255
  7197. },
  7198. "_width": 3,
  7199. "_id": ""
  7200. },
  7201. {
  7202. "__type__": "cc.PrefabInfo",
  7203. "root": {
  7204. "__id__": 197
  7205. },
  7206. "asset": {
  7207. "__uuid__": "291da56a-9598-4404-b813-4300757abe49"
  7208. },
  7209. "fileId": "d02WArKsRF8aKyhiCVrm0O",
  7210. "sync": false
  7211. },
  7212. {
  7213. "__type__": "cc.Node",
  7214. "_name": "button_cancle",
  7215. "_objFlags": 0,
  7216. "_parent": {
  7217. "__id__": 197
  7218. },
  7219. "_children": [
  7220. {
  7221. "__id__": 212
  7222. }
  7223. ],
  7224. "_active": true,
  7225. "_components": [
  7226. {
  7227. "__id__": 217
  7228. },
  7229. {
  7230. "__id__": 218
  7231. },
  7232. {
  7233. "__id__": 219
  7234. }
  7235. ],
  7236. "_prefab": {
  7237. "__id__": 221
  7238. },
  7239. "_opacity": 255,
  7240. "_color": {
  7241. "__type__": "cc.Color",
  7242. "r": 255,
  7243. "g": 255,
  7244. "b": 255,
  7245. "a": 255
  7246. },
  7247. "_contentSize": {
  7248. "__type__": "cc.Size",
  7249. "width": 318,
  7250. "height": 129
  7251. },
  7252. "_anchorPoint": {
  7253. "__type__": "cc.Vec2",
  7254. "x": 0.5,
  7255. "y": 0.5
  7256. },
  7257. "_trs": {
  7258. "__type__": "TypedArray",
  7259. "ctor": "Float64Array",
  7260. "array": [
  7261. -133.045,
  7262. -79.019,
  7263. 0,
  7264. 0,
  7265. 0,
  7266. 0,
  7267. 1,
  7268. 0.8,
  7269. 0.8,
  7270. 0
  7271. ]
  7272. },
  7273. "_eulerAngles": {
  7274. "__type__": "cc.Vec3",
  7275. "x": 0,
  7276. "y": 0,
  7277. "z": 0
  7278. },
  7279. "_skewX": 0,
  7280. "_skewY": 0,
  7281. "_is3DNode": false,
  7282. "_groupIndex": 0,
  7283. "groupIndex": 0,
  7284. "_id": ""
  7285. },
  7286. {
  7287. "__type__": "cc.Node",
  7288. "_name": "lb",
  7289. "_objFlags": 0,
  7290. "_parent": {
  7291. "__id__": 211
  7292. },
  7293. "_children": [],
  7294. "_active": true,
  7295. "_components": [
  7296. {
  7297. "__id__": 213
  7298. },
  7299. {
  7300. "__id__": 214
  7301. },
  7302. {
  7303. "__id__": 215
  7304. }
  7305. ],
  7306. "_prefab": {
  7307. "__id__": 216
  7308. },
  7309. "_opacity": 255,
  7310. "_color": {
  7311. "__type__": "cc.Color",
  7312. "r": 80,
  7313. "g": 23,
  7314. "b": 8,
  7315. "a": 255
  7316. },
  7317. "_contentSize": {
  7318. "__type__": "cc.Size",
  7319. "width": 187.96,
  7320. "height": 60
  7321. },
  7322. "_anchorPoint": {
  7323. "__type__": "cc.Vec2",
  7324. "x": 0.5,
  7325. "y": 0.5
  7326. },
  7327. "_trs": {
  7328. "__type__": "TypedArray",
  7329. "ctor": "Float64Array",
  7330. "array": [
  7331. 0,
  7332. 5,
  7333. 0,
  7334. 0,
  7335. 0,
  7336. 0,
  7337. 1,
  7338. 1,
  7339. 1,
  7340. 1
  7341. ]
  7342. },
  7343. "_eulerAngles": {
  7344. "__type__": "cc.Vec3",
  7345. "x": 0,
  7346. "y": 0,
  7347. "z": 0
  7348. },
  7349. "_skewX": 0,
  7350. "_skewY": 0,
  7351. "_is3DNode": false,
  7352. "_groupIndex": 0,
  7353. "groupIndex": 0,
  7354. "_id": ""
  7355. },
  7356. {
  7357. "__type__": "cc.Label",
  7358. "_name": "",
  7359. "_objFlags": 0,
  7360. "node": {
  7361. "__id__": 212
  7362. },
  7363. "_enabled": true,
  7364. "_materials": [
  7365. {
  7366. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  7367. }
  7368. ],
  7369. "_srcBlendFactor": 770,
  7370. "_dstBlendFactor": 771,
  7371. "_string": "Cancle",
  7372. "_N$string": "Cancle",
  7373. "_fontSize": 48,
  7374. "_lineHeight": 50,
  7375. "_enableWrapText": false,
  7376. "_N$file": {
  7377. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  7378. },
  7379. "_isSystemFontUsed": false,
  7380. "_spacingX": 0,
  7381. "_batchAsBitmap": false,
  7382. "_styleFlags": 0,
  7383. "_underlineHeight": 0,
  7384. "_N$horizontalAlign": 1,
  7385. "_N$verticalAlign": 1,
  7386. "_N$fontFamily": "Arial",
  7387. "_N$overflow": 0,
  7388. "_N$cacheMode": 0,
  7389. "_id": ""
  7390. },
  7391. {
  7392. "__type__": "cc.LabelOutline",
  7393. "_name": "",
  7394. "_objFlags": 0,
  7395. "node": {
  7396. "__id__": 212
  7397. },
  7398. "_enabled": true,
  7399. "_color": {
  7400. "__type__": "cc.Color",
  7401. "r": 232,
  7402. "g": 80,
  7403. "b": 55,
  7404. "a": 255
  7405. },
  7406. "_width": 5,
  7407. "_id": ""
  7408. },
  7409. {
  7410. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  7411. "_name": "",
  7412. "_objFlags": 0,
  7413. "node": {
  7414. "__id__": 212
  7415. },
  7416. "_enabled": true,
  7417. "_englishCase": 1,
  7418. "i18n_string": "t53",
  7419. "i18n_params": [],
  7420. "_addColon": false,
  7421. "_id": ""
  7422. },
  7423. {
  7424. "__type__": "cc.PrefabInfo",
  7425. "root": {
  7426. "__id__": 211
  7427. },
  7428. "asset": {
  7429. "__uuid__": "2cbec70a-b14d-47a6-9d60-d93fbd5aa31b"
  7430. },
  7431. "fileId": "f3udIut1VJdIGY/LwBC+/q",
  7432. "sync": false
  7433. },
  7434. {
  7435. "__type__": "cc.Sprite",
  7436. "_name": "",
  7437. "_objFlags": 0,
  7438. "node": {
  7439. "__id__": 211
  7440. },
  7441. "_enabled": true,
  7442. "_materials": [
  7443. {
  7444. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  7445. }
  7446. ],
  7447. "_srcBlendFactor": 770,
  7448. "_dstBlendFactor": 771,
  7449. "_spriteFrame": {
  7450. "__uuid__": "6f9292f4-9162-4019-bdb1-e5313e1a0a34"
  7451. },
  7452. "_type": 0,
  7453. "_sizeMode": 1,
  7454. "_fillType": 0,
  7455. "_fillCenter": {
  7456. "__type__": "cc.Vec2",
  7457. "x": 0,
  7458. "y": 0
  7459. },
  7460. "_fillStart": 0,
  7461. "_fillRange": 0,
  7462. "_isTrimmedMode": true,
  7463. "_atlas": null,
  7464. "_id": ""
  7465. },
  7466. {
  7467. "__type__": "466e8BS6wJF6bKBj6rcxcSE",
  7468. "_name": "",
  7469. "_objFlags": 0,
  7470. "node": {
  7471. "__id__": 211
  7472. },
  7473. "_enabled": true,
  7474. "openContinuous": true,
  7475. "continuousTime": 0.2,
  7476. "multiTouch": false,
  7477. "_id": ""
  7478. },
  7479. {
  7480. "__type__": "61994AafntNFIbmt1zoyLq+",
  7481. "_name": "",
  7482. "_objFlags": 0,
  7483. "node": {
  7484. "__id__": 211
  7485. },
  7486. "_enabled": true,
  7487. "_normalMaterial": null,
  7488. "_grayMaterial": null,
  7489. "duration": 0.1,
  7490. "zoomScale": 1.2,
  7491. "clickEvents": [
  7492. {
  7493. "__id__": 220
  7494. }
  7495. ],
  7496. "_N$interactable": true,
  7497. "_N$enableAutoGrayEffect": false,
  7498. "_N$transition": 3,
  7499. "transition": 3,
  7500. "_N$normalColor": {
  7501. "__type__": "cc.Color",
  7502. "r": 255,
  7503. "g": 255,
  7504. "b": 255,
  7505. "a": 255
  7506. },
  7507. "_N$pressedColor": {
  7508. "__type__": "cc.Color",
  7509. "r": 211,
  7510. "g": 211,
  7511. "b": 211,
  7512. "a": 255
  7513. },
  7514. "pressedColor": {
  7515. "__type__": "cc.Color",
  7516. "r": 211,
  7517. "g": 211,
  7518. "b": 211,
  7519. "a": 255
  7520. },
  7521. "_N$hoverColor": {
  7522. "__type__": "cc.Color",
  7523. "r": 255,
  7524. "g": 255,
  7525. "b": 255,
  7526. "a": 255
  7527. },
  7528. "hoverColor": {
  7529. "__type__": "cc.Color",
  7530. "r": 255,
  7531. "g": 255,
  7532. "b": 255,
  7533. "a": 255
  7534. },
  7535. "_N$disabledColor": {
  7536. "__type__": "cc.Color",
  7537. "r": 124,
  7538. "g": 124,
  7539. "b": 124,
  7540. "a": 255
  7541. },
  7542. "_N$normalSprite": null,
  7543. "_N$pressedSprite": null,
  7544. "pressedSprite": null,
  7545. "_N$hoverSprite": null,
  7546. "hoverSprite": null,
  7547. "_N$disabledSprite": null,
  7548. "_N$target": null,
  7549. "_id": ""
  7550. },
  7551. {
  7552. "__type__": "cc.ClickEvent",
  7553. "target": {
  7554. "__id__": 1
  7555. },
  7556. "component": "",
  7557. "_componentId": "6874dk0AwFNj4RXgBqY+CMZ",
  7558. "handler": "onClickCloseRedeemCode",
  7559. "customEventData": ""
  7560. },
  7561. {
  7562. "__type__": "cc.PrefabInfo",
  7563. "root": {
  7564. "__id__": 211
  7565. },
  7566. "asset": {
  7567. "__uuid__": "2cbec70a-b14d-47a6-9d60-d93fbd5aa31b"
  7568. },
  7569. "fileId": "0b6VKwrYlJ7qFeenq98ZlJ",
  7570. "sync": false
  7571. },
  7572. {
  7573. "__type__": "cc.Node",
  7574. "_name": "btn_sure",
  7575. "_objFlags": 0,
  7576. "_parent": {
  7577. "__id__": 197
  7578. },
  7579. "_children": [
  7580. {
  7581. "__id__": 223
  7582. }
  7583. ],
  7584. "_active": true,
  7585. "_components": [
  7586. {
  7587. "__id__": 228
  7588. },
  7589. {
  7590. "__id__": 229
  7591. },
  7592. {
  7593. "__id__": 230
  7594. }
  7595. ],
  7596. "_prefab": {
  7597. "__id__": 232
  7598. },
  7599. "_opacity": 255,
  7600. "_color": {
  7601. "__type__": "cc.Color",
  7602. "r": 255,
  7603. "g": 255,
  7604. "b": 255,
  7605. "a": 255
  7606. },
  7607. "_contentSize": {
  7608. "__type__": "cc.Size",
  7609. "width": 318,
  7610. "height": 129
  7611. },
  7612. "_anchorPoint": {
  7613. "__type__": "cc.Vec2",
  7614. "x": 0.5,
  7615. "y": 0.5
  7616. },
  7617. "_trs": {
  7618. "__type__": "TypedArray",
  7619. "ctor": "Float64Array",
  7620. "array": [
  7621. 134.633,
  7622. -79.019,
  7623. 0,
  7624. 0,
  7625. 0,
  7626. 0,
  7627. 1,
  7628. 0.8,
  7629. 0.8,
  7630. 0
  7631. ]
  7632. },
  7633. "_eulerAngles": {
  7634. "__type__": "cc.Vec3",
  7635. "x": 0,
  7636. "y": 0,
  7637. "z": 0
  7638. },
  7639. "_skewX": 0,
  7640. "_skewY": 0,
  7641. "_is3DNode": false,
  7642. "_groupIndex": 0,
  7643. "groupIndex": 0,
  7644. "_id": ""
  7645. },
  7646. {
  7647. "__type__": "cc.Node",
  7648. "_name": "lb",
  7649. "_objFlags": 0,
  7650. "_parent": {
  7651. "__id__": 222
  7652. },
  7653. "_children": [],
  7654. "_active": true,
  7655. "_components": [
  7656. {
  7657. "__id__": 224
  7658. },
  7659. {
  7660. "__id__": 225
  7661. },
  7662. {
  7663. "__id__": 226
  7664. }
  7665. ],
  7666. "_prefab": {
  7667. "__id__": 227
  7668. },
  7669. "_opacity": 255,
  7670. "_color": {
  7671. "__type__": "cc.Color",
  7672. "r": 68,
  7673. "g": 41,
  7674. "b": 0,
  7675. "a": 255
  7676. },
  7677. "_contentSize": {
  7678. "__type__": "cc.Size",
  7679. "width": 236.5,
  7680. "height": 54
  7681. },
  7682. "_anchorPoint": {
  7683. "__type__": "cc.Vec2",
  7684. "x": 0.5,
  7685. "y": 0.5
  7686. },
  7687. "_trs": {
  7688. "__type__": "TypedArray",
  7689. "ctor": "Float64Array",
  7690. "array": [
  7691. 0,
  7692. 5,
  7693. 0,
  7694. 0,
  7695. 0,
  7696. 0,
  7697. 1,
  7698. 1,
  7699. 1,
  7700. 1
  7701. ]
  7702. },
  7703. "_eulerAngles": {
  7704. "__type__": "cc.Vec3",
  7705. "x": 0,
  7706. "y": 0,
  7707. "z": 0
  7708. },
  7709. "_skewX": 0,
  7710. "_skewY": 0,
  7711. "_is3DNode": false,
  7712. "_groupIndex": 0,
  7713. "groupIndex": 0,
  7714. "_id": ""
  7715. },
  7716. {
  7717. "__type__": "cc.Label",
  7718. "_name": "",
  7719. "_objFlags": 0,
  7720. "node": {
  7721. "__id__": 223
  7722. },
  7723. "_enabled": true,
  7724. "_materials": [
  7725. {
  7726. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  7727. }
  7728. ],
  7729. "_srcBlendFactor": 770,
  7730. "_dstBlendFactor": 771,
  7731. "_string": "Activate",
  7732. "_N$string": "Activate",
  7733. "_fontSize": 48,
  7734. "_lineHeight": 50,
  7735. "_enableWrapText": false,
  7736. "_N$file": {
  7737. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  7738. },
  7739. "_isSystemFontUsed": false,
  7740. "_spacingX": 0,
  7741. "_batchAsBitmap": false,
  7742. "_styleFlags": 0,
  7743. "_underlineHeight": 0,
  7744. "_N$horizontalAlign": 1,
  7745. "_N$verticalAlign": 1,
  7746. "_N$fontFamily": "Arial",
  7747. "_N$overflow": 0,
  7748. "_N$cacheMode": 0,
  7749. "_id": ""
  7750. },
  7751. {
  7752. "__type__": "cc.LabelOutline",
  7753. "_name": "",
  7754. "_objFlags": 0,
  7755. "node": {
  7756. "__id__": 223
  7757. },
  7758. "_enabled": true,
  7759. "_color": {
  7760. "__type__": "cc.Color",
  7761. "r": 255,
  7762. "g": 210,
  7763. "b": 0,
  7764. "a": 255
  7765. },
  7766. "_width": 2,
  7767. "_id": ""
  7768. },
  7769. {
  7770. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  7771. "_name": "",
  7772. "_objFlags": 0,
  7773. "node": {
  7774. "__id__": 223
  7775. },
  7776. "_enabled": true,
  7777. "_englishCase": 1,
  7778. "i18n_string": "t338",
  7779. "i18n_params": [],
  7780. "_addColon": false,
  7781. "_id": ""
  7782. },
  7783. {
  7784. "__type__": "cc.PrefabInfo",
  7785. "root": {
  7786. "__id__": 197
  7787. },
  7788. "asset": {
  7789. "__uuid__": "291da56a-9598-4404-b813-4300757abe49"
  7790. },
  7791. "fileId": "05kPgsyqZLfbxRagWW3LJ4",
  7792. "sync": false
  7793. },
  7794. {
  7795. "__type__": "cc.Sprite",
  7796. "_name": "",
  7797. "_objFlags": 0,
  7798. "node": {
  7799. "__id__": 222
  7800. },
  7801. "_enabled": true,
  7802. "_materials": [
  7803. {
  7804. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  7805. }
  7806. ],
  7807. "_srcBlendFactor": 770,
  7808. "_dstBlendFactor": 771,
  7809. "_spriteFrame": {
  7810. "__uuid__": "d3486a1f-4c52-44bd-924b-39e06794d99f"
  7811. },
  7812. "_type": 0,
  7813. "_sizeMode": 1,
  7814. "_fillType": 0,
  7815. "_fillCenter": {
  7816. "__type__": "cc.Vec2",
  7817. "x": 0,
  7818. "y": 0
  7819. },
  7820. "_fillStart": 0,
  7821. "_fillRange": 0,
  7822. "_isTrimmedMode": true,
  7823. "_atlas": null,
  7824. "_id": ""
  7825. },
  7826. {
  7827. "__type__": "466e8BS6wJF6bKBj6rcxcSE",
  7828. "_name": "",
  7829. "_objFlags": 0,
  7830. "node": {
  7831. "__id__": 222
  7832. },
  7833. "_enabled": true,
  7834. "openContinuous": true,
  7835. "continuousTime": 0.2,
  7836. "multiTouch": false,
  7837. "_id": ""
  7838. },
  7839. {
  7840. "__type__": "61994AafntNFIbmt1zoyLq+",
  7841. "_name": "",
  7842. "_objFlags": 0,
  7843. "node": {
  7844. "__id__": 222
  7845. },
  7846. "_enabled": true,
  7847. "_normalMaterial": null,
  7848. "_grayMaterial": null,
  7849. "duration": 0.1,
  7850. "zoomScale": 1.2,
  7851. "clickEvents": [
  7852. {
  7853. "__id__": 231
  7854. }
  7855. ],
  7856. "_N$interactable": true,
  7857. "_N$enableAutoGrayEffect": false,
  7858. "_N$transition": 3,
  7859. "transition": 3,
  7860. "_N$normalColor": {
  7861. "__type__": "cc.Color",
  7862. "r": 255,
  7863. "g": 255,
  7864. "b": 255,
  7865. "a": 255
  7866. },
  7867. "_N$pressedColor": {
  7868. "__type__": "cc.Color",
  7869. "r": 211,
  7870. "g": 211,
  7871. "b": 211,
  7872. "a": 255
  7873. },
  7874. "pressedColor": {
  7875. "__type__": "cc.Color",
  7876. "r": 211,
  7877. "g": 211,
  7878. "b": 211,
  7879. "a": 255
  7880. },
  7881. "_N$hoverColor": {
  7882. "__type__": "cc.Color",
  7883. "r": 255,
  7884. "g": 255,
  7885. "b": 255,
  7886. "a": 255
  7887. },
  7888. "hoverColor": {
  7889. "__type__": "cc.Color",
  7890. "r": 255,
  7891. "g": 255,
  7892. "b": 255,
  7893. "a": 255
  7894. },
  7895. "_N$disabledColor": {
  7896. "__type__": "cc.Color",
  7897. "r": 124,
  7898. "g": 124,
  7899. "b": 124,
  7900. "a": 255
  7901. },
  7902. "_N$normalSprite": null,
  7903. "_N$pressedSprite": null,
  7904. "pressedSprite": null,
  7905. "_N$hoverSprite": null,
  7906. "hoverSprite": null,
  7907. "_N$disabledSprite": null,
  7908. "_N$target": null,
  7909. "_id": ""
  7910. },
  7911. {
  7912. "__type__": "cc.ClickEvent",
  7913. "target": {
  7914. "__id__": 197
  7915. },
  7916. "component": "",
  7917. "_componentId": "15c37SBjRRJs65XKUK+7boA",
  7918. "handler": "onSureClick",
  7919. "customEventData": ""
  7920. },
  7921. {
  7922. "__type__": "cc.PrefabInfo",
  7923. "root": {
  7924. "__id__": 197
  7925. },
  7926. "asset": {
  7927. "__uuid__": "291da56a-9598-4404-b813-4300757abe49"
  7928. },
  7929. "fileId": "bebXaAoJxFtqVZJfpu4/yD",
  7930. "sync": false
  7931. },
  7932. {
  7933. "__type__": "cc.Node",
  7934. "_name": "input_code",
  7935. "_objFlags": 0,
  7936. "_parent": {
  7937. "__id__": 197
  7938. },
  7939. "_children": [
  7940. {
  7941. "__id__": 234
  7942. },
  7943. {
  7944. "__id__": 238
  7945. },
  7946. {
  7947. "__id__": 243
  7948. }
  7949. ],
  7950. "_active": true,
  7951. "_components": [
  7952. {
  7953. "__id__": 248
  7954. }
  7955. ],
  7956. "_prefab": {
  7957. "__id__": 249
  7958. },
  7959. "_opacity": 255,
  7960. "_color": {
  7961. "__type__": "cc.Color",
  7962. "r": 255,
  7963. "g": 255,
  7964. "b": 255,
  7965. "a": 255
  7966. },
  7967. "_contentSize": {
  7968. "__type__": "cc.Size",
  7969. "width": 560,
  7970. "height": 80
  7971. },
  7972. "_anchorPoint": {
  7973. "__type__": "cc.Vec2",
  7974. "x": 0.5,
  7975. "y": 0.5
  7976. },
  7977. "_trs": {
  7978. "__type__": "TypedArray",
  7979. "ctor": "Float64Array",
  7980. "array": [
  7981. 0,
  7982. 44.249,
  7983. 0,
  7984. 0,
  7985. 0,
  7986. 0,
  7987. 1,
  7988. 1,
  7989. 1,
  7990. 1
  7991. ]
  7992. },
  7993. "_eulerAngles": {
  7994. "__type__": "cc.Vec3",
  7995. "x": 0,
  7996. "y": 0,
  7997. "z": 0
  7998. },
  7999. "_skewX": 0,
  8000. "_skewY": 0,
  8001. "_is3DNode": false,
  8002. "_groupIndex": 0,
  8003. "groupIndex": 0,
  8004. "_id": ""
  8005. },
  8006. {
  8007. "__type__": "cc.Node",
  8008. "_name": "BACKGROUND_SPRITE",
  8009. "_objFlags": 512,
  8010. "_parent": {
  8011. "__id__": 233
  8012. },
  8013. "_children": [],
  8014. "_active": true,
  8015. "_components": [
  8016. {
  8017. "__id__": 235
  8018. },
  8019. {
  8020. "__id__": 236
  8021. }
  8022. ],
  8023. "_prefab": {
  8024. "__id__": 237
  8025. },
  8026. "_opacity": 255,
  8027. "_color": {
  8028. "__type__": "cc.Color",
  8029. "r": 255,
  8030. "g": 255,
  8031. "b": 255,
  8032. "a": 255
  8033. },
  8034. "_contentSize": {
  8035. "__type__": "cc.Size",
  8036. "width": 560,
  8037. "height": 80
  8038. },
  8039. "_anchorPoint": {
  8040. "__type__": "cc.Vec2",
  8041. "x": 0.5,
  8042. "y": 0.5
  8043. },
  8044. "_trs": {
  8045. "__type__": "TypedArray",
  8046. "ctor": "Float64Array",
  8047. "array": [
  8048. 0,
  8049. 0,
  8050. 0,
  8051. 0,
  8052. 0,
  8053. 0,
  8054. 1,
  8055. 1,
  8056. 1,
  8057. 1
  8058. ]
  8059. },
  8060. "_eulerAngles": {
  8061. "__type__": "cc.Vec3",
  8062. "x": 0,
  8063. "y": 0,
  8064. "z": 0
  8065. },
  8066. "_skewX": 0,
  8067. "_skewY": 0,
  8068. "_is3DNode": false,
  8069. "_groupIndex": 0,
  8070. "groupIndex": 0,
  8071. "_id": ""
  8072. },
  8073. {
  8074. "__type__": "cc.Sprite",
  8075. "_name": "",
  8076. "_objFlags": 0,
  8077. "node": {
  8078. "__id__": 234
  8079. },
  8080. "_enabled": true,
  8081. "_materials": [
  8082. {
  8083. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  8084. }
  8085. ],
  8086. "_srcBlendFactor": 770,
  8087. "_dstBlendFactor": 771,
  8088. "_spriteFrame": {
  8089. "__uuid__": "f2a9fd92-10f7-4e39-b1e4-54d0059b8c1f"
  8090. },
  8091. "_type": 1,
  8092. "_sizeMode": 0,
  8093. "_fillType": 0,
  8094. "_fillCenter": {
  8095. "__type__": "cc.Vec2",
  8096. "x": 0,
  8097. "y": 0
  8098. },
  8099. "_fillStart": 0,
  8100. "_fillRange": 0,
  8101. "_isTrimmedMode": true,
  8102. "_atlas": null,
  8103. "_id": ""
  8104. },
  8105. {
  8106. "__type__": "cc.Widget",
  8107. "_name": "",
  8108. "_objFlags": 0,
  8109. "node": {
  8110. "__id__": 234
  8111. },
  8112. "_enabled": true,
  8113. "alignMode": 0,
  8114. "_target": null,
  8115. "_alignFlags": 45,
  8116. "_left": 0,
  8117. "_right": 0,
  8118. "_top": 0,
  8119. "_bottom": 0,
  8120. "_verticalCenter": 0,
  8121. "_horizontalCenter": 0,
  8122. "_isAbsLeft": true,
  8123. "_isAbsRight": true,
  8124. "_isAbsTop": true,
  8125. "_isAbsBottom": true,
  8126. "_isAbsHorizontalCenter": true,
  8127. "_isAbsVerticalCenter": true,
  8128. "_originalWidth": 160,
  8129. "_originalHeight": 40,
  8130. "_id": ""
  8131. },
  8132. {
  8133. "__type__": "cc.PrefabInfo",
  8134. "root": {
  8135. "__id__": 197
  8136. },
  8137. "asset": {
  8138. "__uuid__": "291da56a-9598-4404-b813-4300757abe49"
  8139. },
  8140. "fileId": "f5o6wJcQBM3qcCXN8Zwnju",
  8141. "sync": false
  8142. },
  8143. {
  8144. "__type__": "cc.Node",
  8145. "_name": "TEXT_LABEL",
  8146. "_objFlags": 512,
  8147. "_parent": {
  8148. "__id__": 233
  8149. },
  8150. "_children": [],
  8151. "_active": false,
  8152. "_components": [
  8153. {
  8154. "__id__": 239
  8155. },
  8156. {
  8157. "__id__": 240
  8158. },
  8159. {
  8160. "__id__": 241
  8161. }
  8162. ],
  8163. "_prefab": {
  8164. "__id__": 242
  8165. },
  8166. "_opacity": 255,
  8167. "_color": {
  8168. "__type__": "cc.Color",
  8169. "r": 255,
  8170. "g": 255,
  8171. "b": 255,
  8172. "a": 255
  8173. },
  8174. "_contentSize": {
  8175. "__type__": "cc.Size",
  8176. "width": 558,
  8177. "height": 80
  8178. },
  8179. "_anchorPoint": {
  8180. "__type__": "cc.Vec2",
  8181. "x": 0,
  8182. "y": 1
  8183. },
  8184. "_trs": {
  8185. "__type__": "TypedArray",
  8186. "ctor": "Float64Array",
  8187. "array": [
  8188. -278,
  8189. 40,
  8190. 0,
  8191. 0,
  8192. 0,
  8193. 0,
  8194. 1,
  8195. 1,
  8196. 1,
  8197. 1
  8198. ]
  8199. },
  8200. "_eulerAngles": {
  8201. "__type__": "cc.Vec3",
  8202. "x": 0,
  8203. "y": 0,
  8204. "z": 0
  8205. },
  8206. "_skewX": 0,
  8207. "_skewY": 0,
  8208. "_is3DNode": false,
  8209. "_groupIndex": 0,
  8210. "groupIndex": 0,
  8211. "_id": ""
  8212. },
  8213. {
  8214. "__type__": "cc.Label",
  8215. "_name": "",
  8216. "_objFlags": 0,
  8217. "node": {
  8218. "__id__": 238
  8219. },
  8220. "_enabled": true,
  8221. "_materials": [
  8222. {
  8223. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  8224. }
  8225. ],
  8226. "_srcBlendFactor": 770,
  8227. "_dstBlendFactor": 771,
  8228. "_string": "",
  8229. "_N$string": "",
  8230. "_fontSize": 36,
  8231. "_lineHeight": 36,
  8232. "_enableWrapText": false,
  8233. "_N$file": {
  8234. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  8235. },
  8236. "_isSystemFontUsed": false,
  8237. "_spacingX": 0,
  8238. "_batchAsBitmap": false,
  8239. "_styleFlags": 0,
  8240. "_underlineHeight": 0,
  8241. "_N$horizontalAlign": 1,
  8242. "_N$verticalAlign": 1,
  8243. "_N$fontFamily": "Arial",
  8244. "_N$overflow": 1,
  8245. "_N$cacheMode": 0,
  8246. "_id": ""
  8247. },
  8248. {
  8249. "__type__": "cc.Widget",
  8250. "_name": "",
  8251. "_objFlags": 0,
  8252. "node": {
  8253. "__id__": 238
  8254. },
  8255. "_enabled": true,
  8256. "alignMode": 0,
  8257. "_target": null,
  8258. "_alignFlags": 45,
  8259. "_left": 2,
  8260. "_right": 0,
  8261. "_top": 0,
  8262. "_bottom": 0,
  8263. "_verticalCenter": 0,
  8264. "_horizontalCenter": 0,
  8265. "_isAbsLeft": true,
  8266. "_isAbsRight": true,
  8267. "_isAbsTop": true,
  8268. "_isAbsBottom": true,
  8269. "_isAbsHorizontalCenter": true,
  8270. "_isAbsVerticalCenter": true,
  8271. "_originalWidth": 158,
  8272. "_originalHeight": 40,
  8273. "_id": ""
  8274. },
  8275. {
  8276. "__type__": "cc.LabelOutline",
  8277. "_name": "",
  8278. "_objFlags": 0,
  8279. "node": {
  8280. "__id__": 238
  8281. },
  8282. "_enabled": true,
  8283. "_color": {
  8284. "__type__": "cc.Color",
  8285. "r": 38,
  8286. "g": 17,
  8287. "b": 12,
  8288. "a": 255
  8289. },
  8290. "_width": 3,
  8291. "_id": ""
  8292. },
  8293. {
  8294. "__type__": "cc.PrefabInfo",
  8295. "root": {
  8296. "__id__": 197
  8297. },
  8298. "asset": {
  8299. "__uuid__": "291da56a-9598-4404-b813-4300757abe49"
  8300. },
  8301. "fileId": "68MUgruJNEoqMC+caq6M1N",
  8302. "sync": false
  8303. },
  8304. {
  8305. "__type__": "cc.Node",
  8306. "_name": "PLACEHOLDER_LABEL",
  8307. "_objFlags": 512,
  8308. "_parent": {
  8309. "__id__": 233
  8310. },
  8311. "_children": [],
  8312. "_active": true,
  8313. "_components": [
  8314. {
  8315. "__id__": 244
  8316. },
  8317. {
  8318. "__id__": 245
  8319. },
  8320. {
  8321. "__id__": 246
  8322. }
  8323. ],
  8324. "_prefab": {
  8325. "__id__": 247
  8326. },
  8327. "_opacity": 255,
  8328. "_color": {
  8329. "__type__": "cc.Color",
  8330. "r": 255,
  8331. "g": 255,
  8332. "b": 255,
  8333. "a": 255
  8334. },
  8335. "_contentSize": {
  8336. "__type__": "cc.Size",
  8337. "width": 558,
  8338. "height": 80
  8339. },
  8340. "_anchorPoint": {
  8341. "__type__": "cc.Vec2",
  8342. "x": 0,
  8343. "y": 1
  8344. },
  8345. "_trs": {
  8346. "__type__": "TypedArray",
  8347. "ctor": "Float64Array",
  8348. "array": [
  8349. -278,
  8350. 40,
  8351. 0,
  8352. 0,
  8353. 0,
  8354. 0,
  8355. 1,
  8356. 1,
  8357. 1,
  8358. 1
  8359. ]
  8360. },
  8361. "_eulerAngles": {
  8362. "__type__": "cc.Vec3",
  8363. "x": 0,
  8364. "y": 0,
  8365. "z": 0
  8366. },
  8367. "_skewX": 0,
  8368. "_skewY": 0,
  8369. "_is3DNode": false,
  8370. "_groupIndex": 0,
  8371. "groupIndex": 0,
  8372. "_id": ""
  8373. },
  8374. {
  8375. "__type__": "cc.Label",
  8376. "_name": "",
  8377. "_objFlags": 0,
  8378. "node": {
  8379. "__id__": 243
  8380. },
  8381. "_enabled": true,
  8382. "_materials": [
  8383. {
  8384. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  8385. }
  8386. ],
  8387. "_srcBlendFactor": 770,
  8388. "_dstBlendFactor": 771,
  8389. "_string": "",
  8390. "_N$string": "",
  8391. "_fontSize": 36,
  8392. "_lineHeight": 36,
  8393. "_enableWrapText": false,
  8394. "_N$file": {
  8395. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  8396. },
  8397. "_isSystemFontUsed": false,
  8398. "_spacingX": 0,
  8399. "_batchAsBitmap": false,
  8400. "_styleFlags": 0,
  8401. "_underlineHeight": 0,
  8402. "_N$horizontalAlign": 1,
  8403. "_N$verticalAlign": 1,
  8404. "_N$fontFamily": "Arial",
  8405. "_N$overflow": 1,
  8406. "_N$cacheMode": 0,
  8407. "_id": ""
  8408. },
  8409. {
  8410. "__type__": "cc.Widget",
  8411. "_name": "",
  8412. "_objFlags": 0,
  8413. "node": {
  8414. "__id__": 243
  8415. },
  8416. "_enabled": true,
  8417. "alignMode": 0,
  8418. "_target": null,
  8419. "_alignFlags": 45,
  8420. "_left": 2,
  8421. "_right": 0,
  8422. "_top": 0,
  8423. "_bottom": 0,
  8424. "_verticalCenter": 0,
  8425. "_horizontalCenter": 0,
  8426. "_isAbsLeft": true,
  8427. "_isAbsRight": true,
  8428. "_isAbsTop": true,
  8429. "_isAbsBottom": true,
  8430. "_isAbsHorizontalCenter": true,
  8431. "_isAbsVerticalCenter": true,
  8432. "_originalWidth": 158,
  8433. "_originalHeight": 40,
  8434. "_id": ""
  8435. },
  8436. {
  8437. "__type__": "cc.LabelOutline",
  8438. "_name": "",
  8439. "_objFlags": 0,
  8440. "node": {
  8441. "__id__": 243
  8442. },
  8443. "_enabled": true,
  8444. "_color": {
  8445. "__type__": "cc.Color",
  8446. "r": 38,
  8447. "g": 17,
  8448. "b": 12,
  8449. "a": 255
  8450. },
  8451. "_width": 3,
  8452. "_id": ""
  8453. },
  8454. {
  8455. "__type__": "cc.PrefabInfo",
  8456. "root": {
  8457. "__id__": 197
  8458. },
  8459. "asset": {
  8460. "__uuid__": "291da56a-9598-4404-b813-4300757abe49"
  8461. },
  8462. "fileId": "7bQ2RQFHhBD7j1rRkcFtX0",
  8463. "sync": false
  8464. },
  8465. {
  8466. "__type__": "cc.EditBox",
  8467. "_name": "",
  8468. "_objFlags": 0,
  8469. "node": {
  8470. "__id__": 233
  8471. },
  8472. "_enabled": true,
  8473. "_string": "",
  8474. "returnType": 0,
  8475. "maxLength": 21,
  8476. "_tabIndex": 0,
  8477. "editingDidBegan": [],
  8478. "textChanged": [],
  8479. "editingDidEnded": [],
  8480. "editingReturn": [],
  8481. "_N$textLabel": {
  8482. "__id__": 239
  8483. },
  8484. "_N$placeholderLabel": {
  8485. "__id__": 244
  8486. },
  8487. "_N$background": {
  8488. "__id__": 235
  8489. },
  8490. "_N$inputFlag": 5,
  8491. "_N$inputMode": 6,
  8492. "_N$stayOnTop": false,
  8493. "_id": ""
  8494. },
  8495. {
  8496. "__type__": "cc.PrefabInfo",
  8497. "root": {
  8498. "__id__": 197
  8499. },
  8500. "asset": {
  8501. "__uuid__": "291da56a-9598-4404-b813-4300757abe49"
  8502. },
  8503. "fileId": "18dDvM08lKxqQZhH8UEzob",
  8504. "sync": false
  8505. },
  8506. {
  8507. "__type__": "cc.PrefabInfo",
  8508. "root": {
  8509. "__id__": 197
  8510. },
  8511. "asset": {
  8512. "__uuid__": "291da56a-9598-4404-b813-4300757abe49"
  8513. },
  8514. "fileId": "f3twSiSYRE6JacS0gzoYJE",
  8515. "sync": false
  8516. },
  8517. {
  8518. "__type__": "cc.Node",
  8519. "_name": "language",
  8520. "_objFlags": 0,
  8521. "_parent": {
  8522. "__id__": 1
  8523. },
  8524. "_children": [
  8525. {
  8526. "__id__": 252
  8527. },
  8528. {
  8529. "__id__": 257
  8530. },
  8531. {
  8532. "__id__": 260
  8533. },
  8534. {
  8535. "__id__": 263
  8536. },
  8537. {
  8538. "__id__": 268
  8539. },
  8540. {
  8541. "__id__": 295
  8542. }
  8543. ],
  8544. "_active": false,
  8545. "_components": [],
  8546. "_prefab": {
  8547. "__id__": 301
  8548. },
  8549. "_opacity": 255,
  8550. "_color": {
  8551. "__type__": "cc.Color",
  8552. "r": 255,
  8553. "g": 255,
  8554. "b": 255,
  8555. "a": 255
  8556. },
  8557. "_contentSize": {
  8558. "__type__": "cc.Size",
  8559. "width": 2400,
  8560. "height": 1080
  8561. },
  8562. "_anchorPoint": {
  8563. "__type__": "cc.Vec2",
  8564. "x": 0.5,
  8565. "y": 0.5
  8566. },
  8567. "_trs": {
  8568. "__type__": "TypedArray",
  8569. "ctor": "Float64Array",
  8570. "array": [
  8571. 0,
  8572. 0,
  8573. 0,
  8574. 0,
  8575. 0,
  8576. 0,
  8577. 1,
  8578. 1,
  8579. 1,
  8580. 1
  8581. ]
  8582. },
  8583. "_eulerAngles": {
  8584. "__type__": "cc.Vec3",
  8585. "x": 0,
  8586. "y": 0,
  8587. "z": 0
  8588. },
  8589. "_skewX": 0,
  8590. "_skewY": 0,
  8591. "_is3DNode": false,
  8592. "_groupIndex": 0,
  8593. "groupIndex": 0,
  8594. "_id": ""
  8595. },
  8596. {
  8597. "__type__": "cc.Node",
  8598. "_name": "mask",
  8599. "_objFlags": 0,
  8600. "_parent": {
  8601. "__id__": 251
  8602. },
  8603. "_children": [],
  8604. "_active": true,
  8605. "_components": [
  8606. {
  8607. "__id__": 253
  8608. },
  8609. {
  8610. "__id__": 254
  8611. },
  8612. {
  8613. "__id__": 255
  8614. }
  8615. ],
  8616. "_prefab": {
  8617. "__id__": 256
  8618. },
  8619. "_opacity": 204,
  8620. "_color": {
  8621. "__type__": "cc.Color",
  8622. "r": 0,
  8623. "g": 0,
  8624. "b": 0,
  8625. "a": 255
  8626. },
  8627. "_contentSize": {
  8628. "__type__": "cc.Size",
  8629. "width": 2400,
  8630. "height": 1080
  8631. },
  8632. "_anchorPoint": {
  8633. "__type__": "cc.Vec2",
  8634. "x": 0.5,
  8635. "y": 0.5
  8636. },
  8637. "_trs": {
  8638. "__type__": "TypedArray",
  8639. "ctor": "Float64Array",
  8640. "array": [
  8641. 0,
  8642. 0,
  8643. 0,
  8644. 0,
  8645. 0,
  8646. 0,
  8647. 1,
  8648. 1,
  8649. 1,
  8650. 1
  8651. ]
  8652. },
  8653. "_eulerAngles": {
  8654. "__type__": "cc.Vec3",
  8655. "x": 0,
  8656. "y": 0,
  8657. "z": 0
  8658. },
  8659. "_skewX": 0,
  8660. "_skewY": 0,
  8661. "_is3DNode": false,
  8662. "_groupIndex": 0,
  8663. "groupIndex": 0,
  8664. "_id": ""
  8665. },
  8666. {
  8667. "__type__": "cc.Sprite",
  8668. "_name": "",
  8669. "_objFlags": 0,
  8670. "node": {
  8671. "__id__": 252
  8672. },
  8673. "_enabled": true,
  8674. "_materials": [
  8675. {
  8676. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  8677. }
  8678. ],
  8679. "_srcBlendFactor": 770,
  8680. "_dstBlendFactor": 771,
  8681. "_spriteFrame": {
  8682. "__uuid__": "05b69229-67ad-42c3-bf71-09c34d9def2b"
  8683. },
  8684. "_type": 1,
  8685. "_sizeMode": 0,
  8686. "_fillType": 0,
  8687. "_fillCenter": {
  8688. "__type__": "cc.Vec2",
  8689. "x": 0,
  8690. "y": 0
  8691. },
  8692. "_fillStart": 0,
  8693. "_fillRange": 0,
  8694. "_isTrimmedMode": true,
  8695. "_atlas": null,
  8696. "_id": ""
  8697. },
  8698. {
  8699. "__type__": "cc.BlockInputEvents",
  8700. "_name": "",
  8701. "_objFlags": 0,
  8702. "node": {
  8703. "__id__": 252
  8704. },
  8705. "_enabled": true,
  8706. "_id": ""
  8707. },
  8708. {
  8709. "__type__": "62f58zwdOVN/rFVGtus3pDj",
  8710. "_name": "",
  8711. "_objFlags": 0,
  8712. "node": {
  8713. "__id__": 252
  8714. },
  8715. "_enabled": true,
  8716. "widthFit": true,
  8717. "heightFit": true,
  8718. "_id": ""
  8719. },
  8720. {
  8721. "__type__": "cc.PrefabInfo",
  8722. "root": {
  8723. "__id__": 1
  8724. },
  8725. "asset": {
  8726. "__id__": 0
  8727. },
  8728. "fileId": "8fr+XkbodMNIcFRLS54Uam",
  8729. "sync": false
  8730. },
  8731. {
  8732. "__type__": "cc.Node",
  8733. "_name": "frame",
  8734. "_objFlags": 0,
  8735. "_parent": {
  8736. "__id__": 251
  8737. },
  8738. "_children": [],
  8739. "_active": true,
  8740. "_components": [
  8741. {
  8742. "__id__": 258
  8743. }
  8744. ],
  8745. "_prefab": {
  8746. "__id__": 259
  8747. },
  8748. "_opacity": 255,
  8749. "_color": {
  8750. "__type__": "cc.Color",
  8751. "r": 255,
  8752. "g": 255,
  8753. "b": 255,
  8754. "a": 255
  8755. },
  8756. "_contentSize": {
  8757. "__type__": "cc.Size",
  8758. "width": 659,
  8759. "height": 610
  8760. },
  8761. "_anchorPoint": {
  8762. "__type__": "cc.Vec2",
  8763. "x": 0.5,
  8764. "y": 0.5
  8765. },
  8766. "_trs": {
  8767. "__type__": "TypedArray",
  8768. "ctor": "Float64Array",
  8769. "array": [
  8770. 0,
  8771. -2.622,
  8772. 0,
  8773. 0,
  8774. 0,
  8775. 0,
  8776. 1,
  8777. 1,
  8778. 1,
  8779. 1
  8780. ]
  8781. },
  8782. "_eulerAngles": {
  8783. "__type__": "cc.Vec3",
  8784. "x": 0,
  8785. "y": 0,
  8786. "z": 0
  8787. },
  8788. "_skewX": 0,
  8789. "_skewY": 0,
  8790. "_is3DNode": false,
  8791. "_groupIndex": 0,
  8792. "groupIndex": 0,
  8793. "_id": ""
  8794. },
  8795. {
  8796. "__type__": "cc.Sprite",
  8797. "_name": "",
  8798. "_objFlags": 0,
  8799. "node": {
  8800. "__id__": 257
  8801. },
  8802. "_enabled": true,
  8803. "_materials": [
  8804. {
  8805. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  8806. }
  8807. ],
  8808. "_srcBlendFactor": 770,
  8809. "_dstBlendFactor": 771,
  8810. "_spriteFrame": {
  8811. "__uuid__": "e07f7d80-677d-4def-b648-88341c7a5b1a"
  8812. },
  8813. "_type": 1,
  8814. "_sizeMode": 0,
  8815. "_fillType": 0,
  8816. "_fillCenter": {
  8817. "__type__": "cc.Vec2",
  8818. "x": 0,
  8819. "y": 0
  8820. },
  8821. "_fillStart": 0,
  8822. "_fillRange": 0,
  8823. "_isTrimmedMode": true,
  8824. "_atlas": null,
  8825. "_id": ""
  8826. },
  8827. {
  8828. "__type__": "cc.PrefabInfo",
  8829. "root": {
  8830. "__id__": 1
  8831. },
  8832. "asset": {
  8833. "__id__": 0
  8834. },
  8835. "fileId": "96EK7ueQ1FR4vlbx6Vcj9i",
  8836. "sync": false
  8837. },
  8838. {
  8839. "__type__": "cc.Node",
  8840. "_name": "bg",
  8841. "_objFlags": 0,
  8842. "_parent": {
  8843. "__id__": 251
  8844. },
  8845. "_children": [],
  8846. "_active": true,
  8847. "_components": [
  8848. {
  8849. "__id__": 261
  8850. }
  8851. ],
  8852. "_prefab": {
  8853. "__id__": 262
  8854. },
  8855. "_opacity": 255,
  8856. "_color": {
  8857. "__type__": "cc.Color",
  8858. "r": 255,
  8859. "g": 255,
  8860. "b": 255,
  8861. "a": 255
  8862. },
  8863. "_contentSize": {
  8864. "__type__": "cc.Size",
  8865. "width": 560,
  8866. "height": 420
  8867. },
  8868. "_anchorPoint": {
  8869. "__type__": "cc.Vec2",
  8870. "x": 0.5,
  8871. "y": 0.5
  8872. },
  8873. "_trs": {
  8874. "__type__": "TypedArray",
  8875. "ctor": "Float64Array",
  8876. "array": [
  8877. 0,
  8878. -35,
  8879. 0,
  8880. 0,
  8881. 0,
  8882. 0,
  8883. 1,
  8884. 1,
  8885. 1,
  8886. 1
  8887. ]
  8888. },
  8889. "_eulerAngles": {
  8890. "__type__": "cc.Vec3",
  8891. "x": 0,
  8892. "y": 0,
  8893. "z": 0
  8894. },
  8895. "_skewX": 0,
  8896. "_skewY": 0,
  8897. "_is3DNode": false,
  8898. "_groupIndex": 0,
  8899. "groupIndex": 0,
  8900. "_id": ""
  8901. },
  8902. {
  8903. "__type__": "cc.Sprite",
  8904. "_name": "",
  8905. "_objFlags": 0,
  8906. "node": {
  8907. "__id__": 260
  8908. },
  8909. "_enabled": true,
  8910. "_materials": [
  8911. {
  8912. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  8913. }
  8914. ],
  8915. "_srcBlendFactor": 770,
  8916. "_dstBlendFactor": 771,
  8917. "_spriteFrame": {
  8918. "__uuid__": "f2a9fd92-10f7-4e39-b1e4-54d0059b8c1f"
  8919. },
  8920. "_type": 1,
  8921. "_sizeMode": 0,
  8922. "_fillType": 0,
  8923. "_fillCenter": {
  8924. "__type__": "cc.Vec2",
  8925. "x": 0,
  8926. "y": 0
  8927. },
  8928. "_fillStart": 0,
  8929. "_fillRange": 0,
  8930. "_isTrimmedMode": true,
  8931. "_atlas": null,
  8932. "_id": ""
  8933. },
  8934. {
  8935. "__type__": "cc.PrefabInfo",
  8936. "root": {
  8937. "__id__": 1
  8938. },
  8939. "asset": {
  8940. "__id__": 0
  8941. },
  8942. "fileId": "fdrJr25GBKSLlfwSWqjM/b",
  8943. "sync": false
  8944. },
  8945. {
  8946. "__type__": "cc.Node",
  8947. "_name": "title_lb",
  8948. "_objFlags": 0,
  8949. "_parent": {
  8950. "__id__": 251
  8951. },
  8952. "_children": [],
  8953. "_active": true,
  8954. "_components": [
  8955. {
  8956. "__id__": 264
  8957. },
  8958. {
  8959. "__id__": 265
  8960. },
  8961. {
  8962. "__id__": 266
  8963. }
  8964. ],
  8965. "_prefab": {
  8966. "__id__": 267
  8967. },
  8968. "_opacity": 255,
  8969. "_color": {
  8970. "__type__": "cc.Color",
  8971. "r": 255,
  8972. "g": 214,
  8973. "b": 145,
  8974. "a": 255
  8975. },
  8976. "_contentSize": {
  8977. "__type__": "cc.Size",
  8978. "width": 395.83,
  8979. "height": 46
  8980. },
  8981. "_anchorPoint": {
  8982. "__type__": "cc.Vec2",
  8983. "x": 0.5,
  8984. "y": 0.5
  8985. },
  8986. "_trs": {
  8987. "__type__": "TypedArray",
  8988. "ctor": "Float64Array",
  8989. "array": [
  8990. 3.121,
  8991. 228.434,
  8992. 0,
  8993. 0,
  8994. 0,
  8995. 0,
  8996. 1,
  8997. 1,
  8998. 1,
  8999. 1
  9000. ]
  9001. },
  9002. "_eulerAngles": {
  9003. "__type__": "cc.Vec3",
  9004. "x": 0,
  9005. "y": 0,
  9006. "z": 0
  9007. },
  9008. "_skewX": 0,
  9009. "_skewY": 0,
  9010. "_is3DNode": false,
  9011. "_groupIndex": 0,
  9012. "groupIndex": 0,
  9013. "_id": ""
  9014. },
  9015. {
  9016. "__type__": "cc.Label",
  9017. "_name": "",
  9018. "_objFlags": 0,
  9019. "node": {
  9020. "__id__": 263
  9021. },
  9022. "_enabled": true,
  9023. "_materials": [
  9024. {
  9025. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  9026. }
  9027. ],
  9028. "_srcBlendFactor": 770,
  9029. "_dstBlendFactor": 771,
  9030. "_string": "Switch Language",
  9031. "_N$string": "Switch Language",
  9032. "_fontSize": 41,
  9033. "_lineHeight": 40,
  9034. "_enableWrapText": true,
  9035. "_N$file": {
  9036. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  9037. },
  9038. "_isSystemFontUsed": false,
  9039. "_spacingX": 0,
  9040. "_batchAsBitmap": false,
  9041. "_styleFlags": 0,
  9042. "_underlineHeight": 0,
  9043. "_N$horizontalAlign": 1,
  9044. "_N$verticalAlign": 1,
  9045. "_N$fontFamily": "Arial",
  9046. "_N$overflow": 0,
  9047. "_N$cacheMode": 0,
  9048. "_id": ""
  9049. },
  9050. {
  9051. "__type__": "cc.LabelOutline",
  9052. "_name": "",
  9053. "_objFlags": 0,
  9054. "node": {
  9055. "__id__": 263
  9056. },
  9057. "_enabled": true,
  9058. "_color": {
  9059. "__type__": "cc.Color",
  9060. "r": 38,
  9061. "g": 17,
  9062. "b": 12,
  9063. "a": 255
  9064. },
  9065. "_width": 3,
  9066. "_id": ""
  9067. },
  9068. {
  9069. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  9070. "_name": "",
  9071. "_objFlags": 0,
  9072. "node": {
  9073. "__id__": 263
  9074. },
  9075. "_enabled": true,
  9076. "_englishCase": 0,
  9077. "i18n_string": "t340",
  9078. "i18n_params": [],
  9079. "_addColon": false,
  9080. "_id": ""
  9081. },
  9082. {
  9083. "__type__": "cc.PrefabInfo",
  9084. "root": {
  9085. "__id__": 263
  9086. },
  9087. "asset": {
  9088. "__uuid__": "b55c4816-1512-4abe-a683-117b4601b39a"
  9089. },
  9090. "fileId": "cfoRpVe7tN1bQ27pYIFZ2x",
  9091. "sync": false
  9092. },
  9093. {
  9094. "__type__": "cc.Node",
  9095. "_name": "language_list",
  9096. "_objFlags": 0,
  9097. "_parent": {
  9098. "__id__": 251
  9099. },
  9100. "_children": [
  9101. {
  9102. "__id__": 269
  9103. }
  9104. ],
  9105. "_active": true,
  9106. "_components": [
  9107. {
  9108. "__id__": 288
  9109. },
  9110. {
  9111. "__id__": 289
  9112. },
  9113. {
  9114. "__id__": 292
  9115. },
  9116. {
  9117. "__id__": 293
  9118. }
  9119. ],
  9120. "_prefab": {
  9121. "__id__": 294
  9122. },
  9123. "_opacity": 255,
  9124. "_color": {
  9125. "__type__": "cc.Color",
  9126. "r": 255,
  9127. "g": 255,
  9128. "b": 255,
  9129. "a": 255
  9130. },
  9131. "_contentSize": {
  9132. "__type__": "cc.Size",
  9133. "width": 515,
  9134. "height": 350
  9135. },
  9136. "_anchorPoint": {
  9137. "__type__": "cc.Vec2",
  9138. "x": 0.5,
  9139. "y": 1
  9140. },
  9141. "_trs": {
  9142. "__type__": "TypedArray",
  9143. "ctor": "Float64Array",
  9144. "array": [
  9145. 0,
  9146. 128.589,
  9147. 0,
  9148. 0,
  9149. 0,
  9150. 0,
  9151. 1,
  9152. 1,
  9153. 1,
  9154. 1
  9155. ]
  9156. },
  9157. "_eulerAngles": {
  9158. "__type__": "cc.Vec3",
  9159. "x": 0,
  9160. "y": 0,
  9161. "z": 0
  9162. },
  9163. "_skewX": 0,
  9164. "_skewY": 0,
  9165. "_is3DNode": false,
  9166. "_groupIndex": 0,
  9167. "groupIndex": 0,
  9168. "_id": ""
  9169. },
  9170. {
  9171. "__type__": "cc.Node",
  9172. "_name": "view",
  9173. "_objFlags": 0,
  9174. "_parent": {
  9175. "__id__": 268
  9176. },
  9177. "_children": [
  9178. {
  9179. "__id__": 270
  9180. }
  9181. ],
  9182. "_active": true,
  9183. "_components": [
  9184. {
  9185. "__id__": 286
  9186. }
  9187. ],
  9188. "_prefab": {
  9189. "__id__": 287
  9190. },
  9191. "_opacity": 255,
  9192. "_color": {
  9193. "__type__": "cc.Color",
  9194. "r": 255,
  9195. "g": 255,
  9196. "b": 255,
  9197. "a": 255
  9198. },
  9199. "_contentSize": {
  9200. "__type__": "cc.Size",
  9201. "width": 515,
  9202. "height": 350
  9203. },
  9204. "_anchorPoint": {
  9205. "__type__": "cc.Vec2",
  9206. "x": 0.5,
  9207. "y": 1
  9208. },
  9209. "_trs": {
  9210. "__type__": "TypedArray",
  9211. "ctor": "Float64Array",
  9212. "array": [
  9213. 0,
  9214. 0,
  9215. 0,
  9216. 0,
  9217. 0,
  9218. 0,
  9219. 1,
  9220. 1,
  9221. 1,
  9222. 1
  9223. ]
  9224. },
  9225. "_eulerAngles": {
  9226. "__type__": "cc.Vec3",
  9227. "x": 0,
  9228. "y": 0,
  9229. "z": 0
  9230. },
  9231. "_skewX": 0,
  9232. "_skewY": 0,
  9233. "_is3DNode": false,
  9234. "_groupIndex": 0,
  9235. "groupIndex": 0,
  9236. "_id": ""
  9237. },
  9238. {
  9239. "__type__": "cc.Node",
  9240. "_name": "content",
  9241. "_objFlags": 0,
  9242. "_parent": {
  9243. "__id__": 269
  9244. },
  9245. "_children": [
  9246. {
  9247. "__id__": 271
  9248. }
  9249. ],
  9250. "_active": true,
  9251. "_components": [
  9252. {
  9253. "__id__": 284
  9254. }
  9255. ],
  9256. "_prefab": {
  9257. "__id__": 285
  9258. },
  9259. "_opacity": 255,
  9260. "_color": {
  9261. "__type__": "cc.Color",
  9262. "r": 255,
  9263. "g": 255,
  9264. "b": 255,
  9265. "a": 255
  9266. },
  9267. "_contentSize": {
  9268. "__type__": "cc.Size",
  9269. "width": 515,
  9270. "height": 90
  9271. },
  9272. "_anchorPoint": {
  9273. "__type__": "cc.Vec2",
  9274. "x": 0.5,
  9275. "y": 1
  9276. },
  9277. "_trs": {
  9278. "__type__": "TypedArray",
  9279. "ctor": "Float64Array",
  9280. "array": [
  9281. 0,
  9282. 0,
  9283. 0,
  9284. 0,
  9285. 0,
  9286. 0,
  9287. 1,
  9288. 1,
  9289. 1,
  9290. 1
  9291. ]
  9292. },
  9293. "_eulerAngles": {
  9294. "__type__": "cc.Vec3",
  9295. "x": 0,
  9296. "y": 0,
  9297. "z": 0
  9298. },
  9299. "_skewX": 0,
  9300. "_skewY": 0,
  9301. "_is3DNode": false,
  9302. "_groupIndex": 0,
  9303. "groupIndex": 0,
  9304. "_id": ""
  9305. },
  9306. {
  9307. "__type__": "cc.Node",
  9308. "_name": "item",
  9309. "_objFlags": 0,
  9310. "_parent": {
  9311. "__id__": 270
  9312. },
  9313. "_children": [
  9314. {
  9315. "__id__": 272
  9316. },
  9317. {
  9318. "__id__": 275
  9319. }
  9320. ],
  9321. "_active": true,
  9322. "_components": [
  9323. {
  9324. "__id__": 280
  9325. },
  9326. {
  9327. "__id__": 282
  9328. }
  9329. ],
  9330. "_prefab": {
  9331. "__id__": 283
  9332. },
  9333. "_opacity": 255,
  9334. "_color": {
  9335. "__type__": "cc.Color",
  9336. "r": 255,
  9337. "g": 255,
  9338. "b": 255,
  9339. "a": 255
  9340. },
  9341. "_contentSize": {
  9342. "__type__": "cc.Size",
  9343. "width": 515,
  9344. "height": 90
  9345. },
  9346. "_anchorPoint": {
  9347. "__type__": "cc.Vec2",
  9348. "x": 0.5,
  9349. "y": 0.5
  9350. },
  9351. "_trs": {
  9352. "__type__": "TypedArray",
  9353. "ctor": "Float64Array",
  9354. "array": [
  9355. 0,
  9356. -45,
  9357. 0,
  9358. 0,
  9359. 0,
  9360. 0,
  9361. 1,
  9362. 1,
  9363. 1,
  9364. 1
  9365. ]
  9366. },
  9367. "_eulerAngles": {
  9368. "__type__": "cc.Vec3",
  9369. "x": 0,
  9370. "y": 0,
  9371. "z": 0
  9372. },
  9373. "_skewX": 0,
  9374. "_skewY": 0,
  9375. "_is3DNode": false,
  9376. "_groupIndex": 0,
  9377. "groupIndex": 0,
  9378. "_id": ""
  9379. },
  9380. {
  9381. "__type__": "cc.Node",
  9382. "_name": "bg",
  9383. "_objFlags": 0,
  9384. "_parent": {
  9385. "__id__": 271
  9386. },
  9387. "_children": [],
  9388. "_active": true,
  9389. "_components": [
  9390. {
  9391. "__id__": 273
  9392. }
  9393. ],
  9394. "_prefab": {
  9395. "__id__": 274
  9396. },
  9397. "_opacity": 255,
  9398. "_color": {
  9399. "__type__": "cc.Color",
  9400. "r": 255,
  9401. "g": 255,
  9402. "b": 255,
  9403. "a": 255
  9404. },
  9405. "_contentSize": {
  9406. "__type__": "cc.Size",
  9407. "width": 515,
  9408. "height": 90
  9409. },
  9410. "_anchorPoint": {
  9411. "__type__": "cc.Vec2",
  9412. "x": 0.5,
  9413. "y": 0.5
  9414. },
  9415. "_trs": {
  9416. "__type__": "TypedArray",
  9417. "ctor": "Float64Array",
  9418. "array": [
  9419. 0,
  9420. 0,
  9421. 0,
  9422. 0,
  9423. 0,
  9424. 0,
  9425. 1,
  9426. 1,
  9427. 1,
  9428. 1
  9429. ]
  9430. },
  9431. "_eulerAngles": {
  9432. "__type__": "cc.Vec3",
  9433. "x": 0,
  9434. "y": 0,
  9435. "z": 0
  9436. },
  9437. "_skewX": 0,
  9438. "_skewY": 0,
  9439. "_is3DNode": false,
  9440. "_groupIndex": 0,
  9441. "groupIndex": 0,
  9442. "_id": ""
  9443. },
  9444. {
  9445. "__type__": "cc.Sprite",
  9446. "_name": "",
  9447. "_objFlags": 0,
  9448. "node": {
  9449. "__id__": 272
  9450. },
  9451. "_enabled": true,
  9452. "_materials": [
  9453. {
  9454. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  9455. }
  9456. ],
  9457. "_srcBlendFactor": 770,
  9458. "_dstBlendFactor": 771,
  9459. "_spriteFrame": {
  9460. "__uuid__": "147924ff-94f3-47c2-bed9-754856ec9715"
  9461. },
  9462. "_type": 0,
  9463. "_sizeMode": 1,
  9464. "_fillType": 0,
  9465. "_fillCenter": {
  9466. "__type__": "cc.Vec2",
  9467. "x": 0,
  9468. "y": 0
  9469. },
  9470. "_fillStart": 0,
  9471. "_fillRange": 0,
  9472. "_isTrimmedMode": true,
  9473. "_atlas": null,
  9474. "_id": ""
  9475. },
  9476. {
  9477. "__type__": "cc.PrefabInfo",
  9478. "root": {
  9479. "__id__": 1
  9480. },
  9481. "asset": {
  9482. "__id__": 0
  9483. },
  9484. "fileId": "4bY57pBbNOwZ7mhaWyJ5hJ",
  9485. "sync": false
  9486. },
  9487. {
  9488. "__type__": "cc.Node",
  9489. "_name": "lb",
  9490. "_objFlags": 0,
  9491. "_parent": {
  9492. "__id__": 271
  9493. },
  9494. "_children": [],
  9495. "_active": true,
  9496. "_components": [
  9497. {
  9498. "__id__": 276
  9499. },
  9500. {
  9501. "__id__": 277
  9502. },
  9503. {
  9504. "__id__": 278
  9505. }
  9506. ],
  9507. "_prefab": {
  9508. "__id__": 279
  9509. },
  9510. "_opacity": 255,
  9511. "_color": {
  9512. "__type__": "cc.Color",
  9513. "r": 170,
  9514. "g": 170,
  9515. "b": 170,
  9516. "a": 255
  9517. },
  9518. "_contentSize": {
  9519. "__type__": "cc.Size",
  9520. "width": 153.89,
  9521. "height": 42
  9522. },
  9523. "_anchorPoint": {
  9524. "__type__": "cc.Vec2",
  9525. "x": 0.5,
  9526. "y": 0.5
  9527. },
  9528. "_trs": {
  9529. "__type__": "TypedArray",
  9530. "ctor": "Float64Array",
  9531. "array": [
  9532. 0,
  9533. 0,
  9534. 0,
  9535. 0,
  9536. 0,
  9537. 0,
  9538. 1,
  9539. 1,
  9540. 1,
  9541. 1
  9542. ]
  9543. },
  9544. "_eulerAngles": {
  9545. "__type__": "cc.Vec3",
  9546. "x": 0,
  9547. "y": 0,
  9548. "z": 0
  9549. },
  9550. "_skewX": 0,
  9551. "_skewY": 0,
  9552. "_is3DNode": false,
  9553. "_groupIndex": 0,
  9554. "groupIndex": 0,
  9555. "_id": ""
  9556. },
  9557. {
  9558. "__type__": "cc.Label",
  9559. "_name": "",
  9560. "_objFlags": 0,
  9561. "node": {
  9562. "__id__": 275
  9563. },
  9564. "_enabled": true,
  9565. "_materials": [
  9566. {
  9567. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  9568. }
  9569. ],
  9570. "_srcBlendFactor": 770,
  9571. "_dstBlendFactor": 771,
  9572. "_string": "English",
  9573. "_N$string": "English",
  9574. "_fontSize": 36,
  9575. "_lineHeight": 36,
  9576. "_enableWrapText": true,
  9577. "_N$file": {
  9578. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  9579. },
  9580. "_isSystemFontUsed": false,
  9581. "_spacingX": 0,
  9582. "_batchAsBitmap": false,
  9583. "_styleFlags": 0,
  9584. "_underlineHeight": 0,
  9585. "_N$horizontalAlign": 1,
  9586. "_N$verticalAlign": 1,
  9587. "_N$fontFamily": "Arial",
  9588. "_N$overflow": 0,
  9589. "_N$cacheMode": 0,
  9590. "_id": ""
  9591. },
  9592. {
  9593. "__type__": "cc.LabelOutline",
  9594. "_name": "",
  9595. "_objFlags": 0,
  9596. "node": {
  9597. "__id__": 275
  9598. },
  9599. "_enabled": true,
  9600. "_color": {
  9601. "__type__": "cc.Color",
  9602. "r": 38,
  9603. "g": 17,
  9604. "b": 12,
  9605. "a": 255
  9606. },
  9607. "_width": 3,
  9608. "_id": ""
  9609. },
  9610. {
  9611. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  9612. "_name": "",
  9613. "_objFlags": 0,
  9614. "node": {
  9615. "__id__": 275
  9616. },
  9617. "_enabled": true,
  9618. "_englishCase": 0,
  9619. "i18n_string": "",
  9620. "i18n_params": [],
  9621. "_addColon": false,
  9622. "_id": ""
  9623. },
  9624. {
  9625. "__type__": "cc.PrefabInfo",
  9626. "root": {
  9627. "__id__": 275
  9628. },
  9629. "asset": {
  9630. "__uuid__": "b55c4816-1512-4abe-a683-117b4601b39a"
  9631. },
  9632. "fileId": "16Dm32Te9Gi6HTQtcd7NqW",
  9633. "sync": false
  9634. },
  9635. {
  9636. "__type__": "61994AafntNFIbmt1zoyLq+",
  9637. "_name": "",
  9638. "_objFlags": 0,
  9639. "node": {
  9640. "__id__": 271
  9641. },
  9642. "_enabled": true,
  9643. "_normalMaterial": null,
  9644. "_grayMaterial": null,
  9645. "duration": 0.1,
  9646. "zoomScale": 1.2,
  9647. "clickEvents": [
  9648. {
  9649. "__id__": 281
  9650. }
  9651. ],
  9652. "_N$interactable": true,
  9653. "_N$enableAutoGrayEffect": false,
  9654. "_N$transition": 0,
  9655. "transition": 0,
  9656. "_N$normalColor": {
  9657. "__type__": "cc.Color",
  9658. "r": 255,
  9659. "g": 255,
  9660. "b": 255,
  9661. "a": 255
  9662. },
  9663. "_N$pressedColor": {
  9664. "__type__": "cc.Color",
  9665. "r": 211,
  9666. "g": 211,
  9667. "b": 211,
  9668. "a": 255
  9669. },
  9670. "pressedColor": {
  9671. "__type__": "cc.Color",
  9672. "r": 211,
  9673. "g": 211,
  9674. "b": 211,
  9675. "a": 255
  9676. },
  9677. "_N$hoverColor": {
  9678. "__type__": "cc.Color",
  9679. "r": 255,
  9680. "g": 255,
  9681. "b": 255,
  9682. "a": 255
  9683. },
  9684. "hoverColor": {
  9685. "__type__": "cc.Color",
  9686. "r": 255,
  9687. "g": 255,
  9688. "b": 255,
  9689. "a": 255
  9690. },
  9691. "_N$disabledColor": {
  9692. "__type__": "cc.Color",
  9693. "r": 124,
  9694. "g": 124,
  9695. "b": 124,
  9696. "a": 255
  9697. },
  9698. "_N$normalSprite": null,
  9699. "_N$pressedSprite": null,
  9700. "pressedSprite": null,
  9701. "_N$hoverSprite": null,
  9702. "hoverSprite": null,
  9703. "_N$disabledSprite": null,
  9704. "_N$target": null,
  9705. "_id": ""
  9706. },
  9707. {
  9708. "__type__": "cc.ClickEvent",
  9709. "target": {
  9710. "__id__": 1
  9711. },
  9712. "component": "",
  9713. "_componentId": "6874dk0AwFNj4RXgBqY+CMZ",
  9714. "handler": "onSwitchLanguage",
  9715. "customEventData": ""
  9716. },
  9717. {
  9718. "__type__": "466e8BS6wJF6bKBj6rcxcSE",
  9719. "_name": "",
  9720. "_objFlags": 0,
  9721. "node": {
  9722. "__id__": 271
  9723. },
  9724. "_enabled": true,
  9725. "openContinuous": true,
  9726. "continuousTime": 0.2,
  9727. "multiTouch": false,
  9728. "_id": ""
  9729. },
  9730. {
  9731. "__type__": "cc.PrefabInfo",
  9732. "root": {
  9733. "__id__": 1
  9734. },
  9735. "asset": {
  9736. "__id__": 0
  9737. },
  9738. "fileId": "903RKD0LhKaa65dAuUcROt",
  9739. "sync": false
  9740. },
  9741. {
  9742. "__type__": "cc.Layout",
  9743. "_name": "",
  9744. "_objFlags": 0,
  9745. "node": {
  9746. "__id__": 270
  9747. },
  9748. "_enabled": true,
  9749. "_layoutSize": {
  9750. "__type__": "cc.Size",
  9751. "width": 515,
  9752. "height": 90
  9753. },
  9754. "_resize": 1,
  9755. "_N$layoutType": 2,
  9756. "_N$cellSize": {
  9757. "__type__": "cc.Size",
  9758. "width": 40,
  9759. "height": 40
  9760. },
  9761. "_N$startAxis": 0,
  9762. "_N$paddingLeft": 0,
  9763. "_N$paddingRight": 0,
  9764. "_N$paddingTop": 0,
  9765. "_N$paddingBottom": 0,
  9766. "_N$spacingX": 5,
  9767. "_N$spacingY": 28,
  9768. "_N$verticalDirection": 1,
  9769. "_N$horizontalDirection": 0,
  9770. "_N$affectedByScale": false,
  9771. "_id": ""
  9772. },
  9773. {
  9774. "__type__": "cc.PrefabInfo",
  9775. "root": {
  9776. "__id__": 1
  9777. },
  9778. "asset": {
  9779. "__id__": 0
  9780. },
  9781. "fileId": "12SoYS/b9HeLmos5Q/Bw5G",
  9782. "sync": false
  9783. },
  9784. {
  9785. "__type__": "cc.Mask",
  9786. "_name": "",
  9787. "_objFlags": 0,
  9788. "node": {
  9789. "__id__": 269
  9790. },
  9791. "_enabled": true,
  9792. "_materials": [
  9793. {
  9794. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  9795. }
  9796. ],
  9797. "_spriteFrame": null,
  9798. "_type": 0,
  9799. "_segments": 64,
  9800. "_N$alphaThreshold": 0,
  9801. "_N$inverted": false,
  9802. "_id": ""
  9803. },
  9804. {
  9805. "__type__": "cc.PrefabInfo",
  9806. "root": {
  9807. "__id__": 1
  9808. },
  9809. "asset": {
  9810. "__id__": 0
  9811. },
  9812. "fileId": "7bqeC4P6hP4bJ4ufEvOVe5",
  9813. "sync": false
  9814. },
  9815. {
  9816. "__type__": "cc.ScrollView",
  9817. "_name": "",
  9818. "_objFlags": 0,
  9819. "node": {
  9820. "__id__": 268
  9821. },
  9822. "_enabled": true,
  9823. "horizontal": true,
  9824. "vertical": false,
  9825. "inertia": true,
  9826. "brake": 0.75,
  9827. "elastic": false,
  9828. "bounceDuration": 0.23,
  9829. "scrollEvents": [],
  9830. "cancelInnerEvents": false,
  9831. "_N$content": {
  9832. "__id__": 270
  9833. },
  9834. "content": {
  9835. "__id__": 270
  9836. },
  9837. "_N$horizontalScrollBar": null,
  9838. "_N$verticalScrollBar": null,
  9839. "_id": ""
  9840. },
  9841. {
  9842. "__type__": "c8b0avBBlRLLLMX0ufI4l6A",
  9843. "_name": "",
  9844. "_objFlags": 0,
  9845. "node": {
  9846. "__id__": 268
  9847. },
  9848. "_enabled": true,
  9849. "templateType": 1,
  9850. "tmpNode": {
  9851. "__id__": 271
  9852. },
  9853. "tmpPrefab": null,
  9854. "_slideMode": 1,
  9855. "pageDistance": 0.3,
  9856. "pageChangeEvent": {
  9857. "__id__": 290
  9858. },
  9859. "_virtual": true,
  9860. "cyclic": false,
  9861. "lackCenter": false,
  9862. "lackSlide": false,
  9863. "_updateRate": 0,
  9864. "frameByFrameRenderNum": 0,
  9865. "renderEvent": {
  9866. "__id__": 291
  9867. },
  9868. "selectedMode": 0,
  9869. "repeatEventSingle": false,
  9870. "selectedEvent": null,
  9871. "_id": ""
  9872. },
  9873. {
  9874. "__type__": "cc.ClickEvent",
  9875. "target": null,
  9876. "component": "",
  9877. "_componentId": "",
  9878. "handler": "",
  9879. "customEventData": ""
  9880. },
  9881. {
  9882. "__type__": "cc.ClickEvent",
  9883. "target": {
  9884. "__id__": 1
  9885. },
  9886. "component": "",
  9887. "_componentId": "6874dk0AwFNj4RXgBqY+CMZ",
  9888. "handler": "initLanguageItem",
  9889. "customEventData": ""
  9890. },
  9891. {
  9892. "__type__": "466e8BS6wJF6bKBj6rcxcSE",
  9893. "_name": "",
  9894. "_objFlags": 0,
  9895. "node": {
  9896. "__id__": 268
  9897. },
  9898. "_enabled": true,
  9899. "openContinuous": true,
  9900. "continuousTime": 0.2,
  9901. "multiTouch": false,
  9902. "_id": ""
  9903. },
  9904. {
  9905. "__type__": "61994AafntNFIbmt1zoyLq+",
  9906. "_name": "",
  9907. "_objFlags": 0,
  9908. "node": {
  9909. "__id__": 268
  9910. },
  9911. "_enabled": true,
  9912. "_normalMaterial": null,
  9913. "_grayMaterial": null,
  9914. "duration": 0.1,
  9915. "zoomScale": 1.2,
  9916. "clickEvents": [],
  9917. "_N$interactable": true,
  9918. "_N$enableAutoGrayEffect": false,
  9919. "_N$transition": 0,
  9920. "transition": 0,
  9921. "_N$normalColor": {
  9922. "__type__": "cc.Color",
  9923. "r": 255,
  9924. "g": 255,
  9925. "b": 255,
  9926. "a": 255
  9927. },
  9928. "_N$pressedColor": {
  9929. "__type__": "cc.Color",
  9930. "r": 211,
  9931. "g": 211,
  9932. "b": 211,
  9933. "a": 255
  9934. },
  9935. "pressedColor": {
  9936. "__type__": "cc.Color",
  9937. "r": 211,
  9938. "g": 211,
  9939. "b": 211,
  9940. "a": 255
  9941. },
  9942. "_N$hoverColor": {
  9943. "__type__": "cc.Color",
  9944. "r": 255,
  9945. "g": 255,
  9946. "b": 255,
  9947. "a": 255
  9948. },
  9949. "hoverColor": {
  9950. "__type__": "cc.Color",
  9951. "r": 255,
  9952. "g": 255,
  9953. "b": 255,
  9954. "a": 255
  9955. },
  9956. "_N$disabledColor": {
  9957. "__type__": "cc.Color",
  9958. "r": 124,
  9959. "g": 124,
  9960. "b": 124,
  9961. "a": 255
  9962. },
  9963. "_N$normalSprite": null,
  9964. "_N$pressedSprite": null,
  9965. "pressedSprite": null,
  9966. "_N$hoverSprite": null,
  9967. "hoverSprite": null,
  9968. "_N$disabledSprite": null,
  9969. "_N$target": null,
  9970. "_id": ""
  9971. },
  9972. {
  9973. "__type__": "cc.PrefabInfo",
  9974. "root": {
  9975. "__id__": 1
  9976. },
  9977. "asset": {
  9978. "__id__": 0
  9979. },
  9980. "fileId": "acCZGT+39LI4fVbKjve5X7",
  9981. "sync": false
  9982. },
  9983. {
  9984. "__type__": "cc.Node",
  9985. "_name": "btn_close",
  9986. "_objFlags": 0,
  9987. "_parent": {
  9988. "__id__": 251
  9989. },
  9990. "_children": [],
  9991. "_active": true,
  9992. "_components": [
  9993. {
  9994. "__id__": 296
  9995. },
  9996. {
  9997. "__id__": 297
  9998. },
  9999. {
  10000. "__id__": 298
  10001. }
  10002. ],
  10003. "_prefab": {
  10004. "__id__": 300
  10005. },
  10006. "_opacity": 255,
  10007. "_color": {
  10008. "__type__": "cc.Color",
  10009. "r": 255,
  10010. "g": 255,
  10011. "b": 255,
  10012. "a": 255
  10013. },
  10014. "_contentSize": {
  10015. "__type__": "cc.Size",
  10016. "width": 109,
  10017. "height": 108
  10018. },
  10019. "_anchorPoint": {
  10020. "__type__": "cc.Vec2",
  10021. "x": 0.5,
  10022. "y": 0.5
  10023. },
  10024. "_trs": {
  10025. "__type__": "TypedArray",
  10026. "ctor": "Float64Array",
  10027. "array": [
  10028. 288.517,
  10029. 258.516,
  10030. 0,
  10031. 0,
  10032. 0,
  10033. 0,
  10034. 1,
  10035. 1,
  10036. 1,
  10037. 0
  10038. ]
  10039. },
  10040. "_eulerAngles": {
  10041. "__type__": "cc.Vec3",
  10042. "x": 0,
  10043. "y": 0,
  10044. "z": 0
  10045. },
  10046. "_skewX": 0,
  10047. "_skewY": 0,
  10048. "_is3DNode": false,
  10049. "_groupIndex": 0,
  10050. "groupIndex": 0,
  10051. "_id": ""
  10052. },
  10053. {
  10054. "__type__": "cc.Sprite",
  10055. "_name": "",
  10056. "_objFlags": 0,
  10057. "node": {
  10058. "__id__": 295
  10059. },
  10060. "_enabled": true,
  10061. "_materials": [
  10062. {
  10063. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  10064. }
  10065. ],
  10066. "_srcBlendFactor": 770,
  10067. "_dstBlendFactor": 771,
  10068. "_spriteFrame": {
  10069. "__uuid__": "23c8a125-f917-46e9-bcf8-5d8af9ec00c7"
  10070. },
  10071. "_type": 0,
  10072. "_sizeMode": 0,
  10073. "_fillType": 0,
  10074. "_fillCenter": {
  10075. "__type__": "cc.Vec2",
  10076. "x": 0,
  10077. "y": 0
  10078. },
  10079. "_fillStart": 0,
  10080. "_fillRange": 0,
  10081. "_isTrimmedMode": true,
  10082. "_atlas": null,
  10083. "_id": ""
  10084. },
  10085. {
  10086. "__type__": "466e8BS6wJF6bKBj6rcxcSE",
  10087. "_name": "",
  10088. "_objFlags": 0,
  10089. "node": {
  10090. "__id__": 295
  10091. },
  10092. "_enabled": true,
  10093. "openContinuous": true,
  10094. "continuousTime": 0.2,
  10095. "multiTouch": false,
  10096. "_id": ""
  10097. },
  10098. {
  10099. "__type__": "61994AafntNFIbmt1zoyLq+",
  10100. "_name": "",
  10101. "_objFlags": 0,
  10102. "node": {
  10103. "__id__": 295
  10104. },
  10105. "_enabled": true,
  10106. "_normalMaterial": null,
  10107. "_grayMaterial": null,
  10108. "duration": 0.1,
  10109. "zoomScale": 1.1,
  10110. "clickEvents": [
  10111. {
  10112. "__id__": 299
  10113. }
  10114. ],
  10115. "_N$interactable": true,
  10116. "_N$enableAutoGrayEffect": false,
  10117. "_N$transition": 3,
  10118. "transition": 3,
  10119. "_N$normalColor": {
  10120. "__type__": "cc.Color",
  10121. "r": 255,
  10122. "g": 255,
  10123. "b": 255,
  10124. "a": 255
  10125. },
  10126. "_N$pressedColor": {
  10127. "__type__": "cc.Color",
  10128. "r": 211,
  10129. "g": 211,
  10130. "b": 211,
  10131. "a": 255
  10132. },
  10133. "pressedColor": {
  10134. "__type__": "cc.Color",
  10135. "r": 211,
  10136. "g": 211,
  10137. "b": 211,
  10138. "a": 255
  10139. },
  10140. "_N$hoverColor": {
  10141. "__type__": "cc.Color",
  10142. "r": 255,
  10143. "g": 255,
  10144. "b": 255,
  10145. "a": 255
  10146. },
  10147. "hoverColor": {
  10148. "__type__": "cc.Color",
  10149. "r": 255,
  10150. "g": 255,
  10151. "b": 255,
  10152. "a": 255
  10153. },
  10154. "_N$disabledColor": {
  10155. "__type__": "cc.Color",
  10156. "r": 124,
  10157. "g": 124,
  10158. "b": 124,
  10159. "a": 255
  10160. },
  10161. "_N$normalSprite": null,
  10162. "_N$pressedSprite": null,
  10163. "pressedSprite": null,
  10164. "_N$hoverSprite": null,
  10165. "hoverSprite": null,
  10166. "_N$disabledSprite": null,
  10167. "_N$target": null,
  10168. "_id": ""
  10169. },
  10170. {
  10171. "__type__": "cc.ClickEvent",
  10172. "target": {
  10173. "__id__": 1
  10174. },
  10175. "component": "",
  10176. "_componentId": "6874dk0AwFNj4RXgBqY+CMZ",
  10177. "handler": "onClickCloseLanguage",
  10178. "customEventData": ""
  10179. },
  10180. {
  10181. "__type__": "cc.PrefabInfo",
  10182. "root": {
  10183. "__id__": 1
  10184. },
  10185. "asset": {
  10186. "__id__": 0
  10187. },
  10188. "fileId": "1ajf8kPHBIRba88ex21DTM",
  10189. "sync": false
  10190. },
  10191. {
  10192. "__type__": "cc.PrefabInfo",
  10193. "root": {
  10194. "__id__": 1
  10195. },
  10196. "asset": {
  10197. "__id__": 0
  10198. },
  10199. "fileId": "28gSmFiG9HJJlqwZZSfn/y",
  10200. "sync": false
  10201. },
  10202. {
  10203. "__type__": "6874dk0AwFNj4RXgBqY+CMZ",
  10204. "_name": "",
  10205. "_objFlags": 0,
  10206. "node": {
  10207. "__id__": 1
  10208. },
  10209. "_enabled": true,
  10210. "quickClose": false,
  10211. "cache": false,
  10212. "showType": 500,
  10213. "prevent": true,
  10214. "_id": ""
  10215. },
  10216. {
  10217. "__type__": "cc.PrefabInfo",
  10218. "root": {
  10219. "__id__": 1
  10220. },
  10221. "asset": {
  10222. "__id__": 0
  10223. },
  10224. "fileId": "",
  10225. "sync": false
  10226. }
  10227. ]