SelectServer.prefab 126 KB

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