SelectServer.prefab 111 KB

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