SettingUI.prefab 174 KB

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