SelectServer.prefab 118 KB

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