ClubUserList.prefab 224 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367
  1. [
  2. {
  3. "__type__": "cc.Prefab",
  4. "_name": "",
  5. "_objFlags": 0,
  6. "_native": "",
  7. "data": {
  8. "__id__": 1
  9. },
  10. "optimizationPolicy": 0,
  11. "asyncLoadAssets": false,
  12. "readonly": false
  13. },
  14. {
  15. "__type__": "cc.Node",
  16. "_name": "ClubUserList",
  17. "_objFlags": 0,
  18. "_parent": null,
  19. "_children": [
  20. {
  21. "__id__": 2
  22. },
  23. {
  24. "__id__": 6
  25. },
  26. {
  27. "__id__": 24
  28. },
  29. {
  30. "__id__": 76
  31. },
  32. {
  33. "__id__": 79
  34. },
  35. {
  36. "__id__": 82
  37. },
  38. {
  39. "__id__": 96
  40. },
  41. {
  42. "__id__": 101
  43. },
  44. {
  45. "__id__": 210
  46. },
  47. {
  48. "__id__": 271
  49. }
  50. ],
  51. "_active": true,
  52. "_components": [
  53. {
  54. "__id__": 334
  55. },
  56. {
  57. "__id__": 335
  58. },
  59. {
  60. "__id__": 336
  61. }
  62. ],
  63. "_prefab": {
  64. "__id__": 337
  65. },
  66. "_opacity": 255,
  67. "_color": {
  68. "__type__": "cc.Color",
  69. "r": 255,
  70. "g": 255,
  71. "b": 255,
  72. "a": 255
  73. },
  74. "_contentSize": {
  75. "__type__": "cc.Size",
  76. "width": 1344,
  77. "height": 750
  78. },
  79. "_anchorPoint": {
  80. "__type__": "cc.Vec2",
  81. "x": 0.5,
  82. "y": 0.5
  83. },
  84. "_trs": {
  85. "__type__": "TypedArray",
  86. "ctor": "Float64Array",
  87. "array": [
  88. 0,
  89. 0,
  90. 0,
  91. 0,
  92. 0,
  93. 0,
  94. 1,
  95. 1,
  96. 1,
  97. 1
  98. ]
  99. },
  100. "_eulerAngles": {
  101. "__type__": "cc.Vec3",
  102. "x": 0,
  103. "y": 0,
  104. "z": 0
  105. },
  106. "_skewX": 0,
  107. "_skewY": 0,
  108. "_is3DNode": false,
  109. "_groupIndex": 0,
  110. "groupIndex": 0,
  111. "_id": ""
  112. },
  113. {
  114. "__type__": "cc.Node",
  115. "_name": "New Sprite(Splash)",
  116. "_objFlags": 0,
  117. "_parent": {
  118. "__id__": 1
  119. },
  120. "_children": [],
  121. "_active": true,
  122. "_components": [
  123. {
  124. "__id__": 3
  125. },
  126. {
  127. "__id__": 4
  128. }
  129. ],
  130. "_prefab": {
  131. "__id__": 5
  132. },
  133. "_opacity": 180,
  134. "_color": {
  135. "__type__": "cc.Color",
  136. "r": 0,
  137. "g": 0,
  138. "b": 0,
  139. "a": 255
  140. },
  141. "_contentSize": {
  142. "__type__": "cc.Size",
  143. "width": 1665,
  144. "height": 750
  145. },
  146. "_anchorPoint": {
  147. "__type__": "cc.Vec2",
  148. "x": 0.5,
  149. "y": 0.5
  150. },
  151. "_trs": {
  152. "__type__": "TypedArray",
  153. "ctor": "Float64Array",
  154. "array": [
  155. 0,
  156. 0,
  157. 0,
  158. 0,
  159. 0,
  160. 0,
  161. 1,
  162. 1,
  163. 1,
  164. 1
  165. ]
  166. },
  167. "_eulerAngles": {
  168. "__type__": "cc.Vec3",
  169. "x": 0,
  170. "y": 0,
  171. "z": 0
  172. },
  173. "_skewX": 0,
  174. "_skewY": 0,
  175. "_is3DNode": false,
  176. "_groupIndex": 0,
  177. "groupIndex": 0,
  178. "_id": ""
  179. },
  180. {
  181. "__type__": "cc.Sprite",
  182. "_name": "",
  183. "_objFlags": 0,
  184. "node": {
  185. "__id__": 2
  186. },
  187. "_enabled": true,
  188. "_materials": [
  189. {
  190. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  191. }
  192. ],
  193. "_srcBlendFactor": 770,
  194. "_dstBlendFactor": 771,
  195. "_spriteFrame": {
  196. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  197. },
  198. "_type": 0,
  199. "_sizeMode": 0,
  200. "_fillType": 0,
  201. "_fillCenter": {
  202. "__type__": "cc.Vec2",
  203. "x": 0,
  204. "y": 0
  205. },
  206. "_fillStart": 0,
  207. "_fillRange": 0,
  208. "_isTrimmedMode": true,
  209. "_atlas": null,
  210. "_id": ""
  211. },
  212. {
  213. "__type__": "cc.BlockInputEvents",
  214. "_name": "",
  215. "_objFlags": 0,
  216. "node": {
  217. "__id__": 2
  218. },
  219. "_enabled": true,
  220. "_id": ""
  221. },
  222. {
  223. "__type__": "cc.PrefabInfo",
  224. "root": {
  225. "__id__": 1
  226. },
  227. "asset": {
  228. "__id__": 0
  229. },
  230. "fileId": "791Ix2Sh9KQLpva1HJy8r6",
  231. "sync": false
  232. },
  233. {
  234. "__type__": "cc.Node",
  235. "_name": "BGB",
  236. "_objFlags": 0,
  237. "_parent": {
  238. "__id__": 1
  239. },
  240. "_children": [
  241. {
  242. "__id__": 7
  243. },
  244. {
  245. "__id__": 10
  246. },
  247. {
  248. "__id__": 13
  249. },
  250. {
  251. "__id__": 19
  252. }
  253. ],
  254. "_active": true,
  255. "_components": [
  256. {
  257. "__id__": 22
  258. }
  259. ],
  260. "_prefab": {
  261. "__id__": 23
  262. },
  263. "_opacity": 255,
  264. "_color": {
  265. "__type__": "cc.Color",
  266. "r": 255,
  267. "g": 255,
  268. "b": 255,
  269. "a": 255
  270. },
  271. "_contentSize": {
  272. "__type__": "cc.Size",
  273. "width": 1344,
  274. "height": 750
  275. },
  276. "_anchorPoint": {
  277. "__type__": "cc.Vec2",
  278. "x": 0.5,
  279. "y": 0.5
  280. },
  281. "_trs": {
  282. "__type__": "TypedArray",
  283. "ctor": "Float64Array",
  284. "array": [
  285. 0,
  286. 2,
  287. 0,
  288. 0,
  289. 0,
  290. 0,
  291. 1,
  292. 1,
  293. 1,
  294. 1
  295. ]
  296. },
  297. "_eulerAngles": {
  298. "__type__": "cc.Vec3",
  299. "x": 0,
  300. "y": 0,
  301. "z": 0
  302. },
  303. "_skewX": 0,
  304. "_skewY": 0,
  305. "_is3DNode": false,
  306. "_groupIndex": 0,
  307. "groupIndex": 0,
  308. "_id": ""
  309. },
  310. {
  311. "__type__": "cc.Node",
  312. "_name": "TMember",
  313. "_objFlags": 0,
  314. "_parent": {
  315. "__id__": 6
  316. },
  317. "_children": [],
  318. "_active": true,
  319. "_components": [
  320. {
  321. "__id__": 8
  322. }
  323. ],
  324. "_prefab": {
  325. "__id__": 9
  326. },
  327. "_opacity": 255,
  328. "_color": {
  329. "__type__": "cc.Color",
  330. "r": 255,
  331. "g": 255,
  332. "b": 255,
  333. "a": 255
  334. },
  335. "_contentSize": {
  336. "__type__": "cc.Size",
  337. "width": 180,
  338. "height": 50
  339. },
  340. "_anchorPoint": {
  341. "__type__": "cc.Vec2",
  342. "x": 0.5,
  343. "y": 0.5
  344. },
  345. "_trs": {
  346. "__type__": "TypedArray",
  347. "ctor": "Float64Array",
  348. "array": [
  349. 0,
  350. 336,
  351. 0,
  352. 0,
  353. 0,
  354. 0,
  355. 1,
  356. 1,
  357. 1,
  358. 1
  359. ]
  360. },
  361. "_eulerAngles": {
  362. "__type__": "cc.Vec3",
  363. "x": 0,
  364. "y": 0,
  365. "z": 0
  366. },
  367. "_skewX": 0,
  368. "_skewY": 0,
  369. "_is3DNode": false,
  370. "_groupIndex": 0,
  371. "groupIndex": 0,
  372. "_id": ""
  373. },
  374. {
  375. "__type__": "cc.Sprite",
  376. "_name": "",
  377. "_objFlags": 0,
  378. "node": {
  379. "__id__": 7
  380. },
  381. "_enabled": true,
  382. "_materials": [
  383. {
  384. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  385. }
  386. ],
  387. "_srcBlendFactor": 770,
  388. "_dstBlendFactor": 771,
  389. "_spriteFrame": {
  390. "__uuid__": "e747a383-30ed-4b48-9959-94d038476024"
  391. },
  392. "_type": 0,
  393. "_sizeMode": 1,
  394. "_fillType": 0,
  395. "_fillCenter": {
  396. "__type__": "cc.Vec2",
  397. "x": 0,
  398. "y": 0
  399. },
  400. "_fillStart": 0,
  401. "_fillRange": 0,
  402. "_isTrimmedMode": true,
  403. "_atlas": null,
  404. "_id": ""
  405. },
  406. {
  407. "__type__": "cc.PrefabInfo",
  408. "root": {
  409. "__id__": 1
  410. },
  411. "asset": {
  412. "__id__": 0
  413. },
  414. "fileId": "9cPiPl2WxJ2IK4n+CELBG5",
  415. "sync": false
  416. },
  417. {
  418. "__type__": "cc.Node",
  419. "_name": "BGT4",
  420. "_objFlags": 0,
  421. "_parent": {
  422. "__id__": 6
  423. },
  424. "_children": [],
  425. "_active": true,
  426. "_components": [
  427. {
  428. "__id__": 11
  429. }
  430. ],
  431. "_prefab": {
  432. "__id__": 12
  433. },
  434. "_opacity": 255,
  435. "_color": {
  436. "__type__": "cc.Color",
  437. "r": 255,
  438. "g": 255,
  439. "b": 255,
  440. "a": 255
  441. },
  442. "_contentSize": {
  443. "__type__": "cc.Size",
  444. "width": 421,
  445. "height": 28
  446. },
  447. "_anchorPoint": {
  448. "__type__": "cc.Vec2",
  449. "x": 0.5,
  450. "y": 0.5
  451. },
  452. "_trs": {
  453. "__type__": "TypedArray",
  454. "ctor": "Float64Array",
  455. "array": [
  456. 0,
  457. 336,
  458. 0,
  459. 0,
  460. 0,
  461. 0,
  462. 1,
  463. 1,
  464. 1,
  465. 1
  466. ]
  467. },
  468. "_eulerAngles": {
  469. "__type__": "cc.Vec3",
  470. "x": 0,
  471. "y": 0,
  472. "z": 0
  473. },
  474. "_skewX": 0,
  475. "_skewY": 0,
  476. "_is3DNode": false,
  477. "_groupIndex": 0,
  478. "groupIndex": 0,
  479. "_id": ""
  480. },
  481. {
  482. "__type__": "cc.Sprite",
  483. "_name": "",
  484. "_objFlags": 0,
  485. "node": {
  486. "__id__": 10
  487. },
  488. "_enabled": true,
  489. "_materials": [
  490. {
  491. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  492. }
  493. ],
  494. "_srcBlendFactor": 770,
  495. "_dstBlendFactor": 771,
  496. "_spriteFrame": {
  497. "__uuid__": "6b58055b-5b84-4f90-9ed8-e9097240f3a5"
  498. },
  499. "_type": 0,
  500. "_sizeMode": 1,
  501. "_fillType": 0,
  502. "_fillCenter": {
  503. "__type__": "cc.Vec2",
  504. "x": 0,
  505. "y": 0
  506. },
  507. "_fillStart": 0,
  508. "_fillRange": 0,
  509. "_isTrimmedMode": true,
  510. "_atlas": null,
  511. "_id": ""
  512. },
  513. {
  514. "__type__": "cc.PrefabInfo",
  515. "root": {
  516. "__id__": 1
  517. },
  518. "asset": {
  519. "__id__": 0
  520. },
  521. "fileId": "42wstqjfdFeIY4gCyqJvaq",
  522. "sync": false
  523. },
  524. {
  525. "__type__": "cc.Node",
  526. "_name": "BtCloseDlg",
  527. "_objFlags": 0,
  528. "_parent": {
  529. "__id__": 6
  530. },
  531. "_children": [],
  532. "_active": true,
  533. "_components": [
  534. {
  535. "__id__": 14
  536. },
  537. {
  538. "__id__": 15
  539. },
  540. {
  541. "__id__": 17
  542. }
  543. ],
  544. "_prefab": {
  545. "__id__": 18
  546. },
  547. "_opacity": 255,
  548. "_color": {
  549. "__type__": "cc.Color",
  550. "r": 255,
  551. "g": 255,
  552. "b": 255,
  553. "a": 255
  554. },
  555. "_contentSize": {
  556. "__type__": "cc.Size",
  557. "width": 52,
  558. "height": 55
  559. },
  560. "_anchorPoint": {
  561. "__type__": "cc.Vec2",
  562. "x": 0.5,
  563. "y": 0.5
  564. },
  565. "_trs": {
  566. "__type__": "TypedArray",
  567. "ctor": "Float64Array",
  568. "array": [
  569. 622,
  570. 338,
  571. 0,
  572. 0,
  573. 0,
  574. 0,
  575. 1,
  576. 1,
  577. 1,
  578. 1
  579. ]
  580. },
  581. "_eulerAngles": {
  582. "__type__": "cc.Vec3",
  583. "x": 0,
  584. "y": 0,
  585. "z": 0
  586. },
  587. "_skewX": 0,
  588. "_skewY": 0,
  589. "_is3DNode": false,
  590. "_groupIndex": 0,
  591. "groupIndex": 0,
  592. "_id": ""
  593. },
  594. {
  595. "__type__": "cc.Sprite",
  596. "_name": "",
  597. "_objFlags": 0,
  598. "node": {
  599. "__id__": 13
  600. },
  601. "_enabled": true,
  602. "_materials": [
  603. {
  604. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  605. }
  606. ],
  607. "_srcBlendFactor": 770,
  608. "_dstBlendFactor": 771,
  609. "_spriteFrame": {
  610. "__uuid__": "0af21981-27d3-4f38-a8c5-4dcc169dc3f8"
  611. },
  612. "_type": 0,
  613. "_sizeMode": 1,
  614. "_fillType": 0,
  615. "_fillCenter": {
  616. "__type__": "cc.Vec2",
  617. "x": 0,
  618. "y": 0
  619. },
  620. "_fillStart": 0,
  621. "_fillRange": 0,
  622. "_isTrimmedMode": true,
  623. "_atlas": null,
  624. "_id": ""
  625. },
  626. {
  627. "__type__": "cc.Button",
  628. "_name": "",
  629. "_objFlags": 0,
  630. "node": {
  631. "__id__": 13
  632. },
  633. "_enabled": true,
  634. "_normalMaterial": null,
  635. "_grayMaterial": null,
  636. "duration": 0,
  637. "zoomScale": 1.2,
  638. "clickEvents": [
  639. {
  640. "__id__": 16
  641. }
  642. ],
  643. "_N$interactable": true,
  644. "_N$enableAutoGrayEffect": false,
  645. "_N$transition": 1,
  646. "transition": 1,
  647. "_N$normalColor": {
  648. "__type__": "cc.Color",
  649. "r": 255,
  650. "g": 255,
  651. "b": 255,
  652. "a": 255
  653. },
  654. "_N$pressedColor": {
  655. "__type__": "cc.Color",
  656. "r": 180,
  657. "g": 180,
  658. "b": 180,
  659. "a": 255
  660. },
  661. "pressedColor": {
  662. "__type__": "cc.Color",
  663. "r": 180,
  664. "g": 180,
  665. "b": 180,
  666. "a": 255
  667. },
  668. "_N$hoverColor": {
  669. "__type__": "cc.Color",
  670. "r": 255,
  671. "g": 255,
  672. "b": 255,
  673. "a": 255
  674. },
  675. "hoverColor": {
  676. "__type__": "cc.Color",
  677. "r": 255,
  678. "g": 255,
  679. "b": 255,
  680. "a": 255
  681. },
  682. "_N$disabledColor": {
  683. "__type__": "cc.Color",
  684. "r": 255,
  685. "g": 255,
  686. "b": 255,
  687. "a": 255
  688. },
  689. "_N$normalSprite": null,
  690. "_N$pressedSprite": null,
  691. "pressedSprite": null,
  692. "_N$hoverSprite": null,
  693. "hoverSprite": null,
  694. "_N$disabledSprite": null,
  695. "_N$target": {
  696. "__id__": 13
  697. },
  698. "_id": ""
  699. },
  700. {
  701. "__type__": "cc.ClickEvent",
  702. "target": {
  703. "__id__": 1
  704. },
  705. "component": "",
  706. "_componentId": "3efb7TR+3VB5oYxlOA7dbXx",
  707. "handler": "HideView",
  708. "customEventData": ""
  709. },
  710. {
  711. "__type__": "cc.Widget",
  712. "_name": "",
  713. "_objFlags": 0,
  714. "node": {
  715. "__id__": 13
  716. },
  717. "_enabled": true,
  718. "alignMode": 1,
  719. "_target": null,
  720. "_alignFlags": 33,
  721. "_left": 0,
  722. "_right": 24,
  723. "_top": 9.5,
  724. "_bottom": 0,
  725. "_verticalCenter": 0,
  726. "_horizontalCenter": 0,
  727. "_isAbsLeft": true,
  728. "_isAbsRight": true,
  729. "_isAbsTop": true,
  730. "_isAbsBottom": true,
  731. "_isAbsHorizontalCenter": true,
  732. "_isAbsVerticalCenter": true,
  733. "_originalWidth": 0,
  734. "_originalHeight": 0,
  735. "_id": ""
  736. },
  737. {
  738. "__type__": "cc.PrefabInfo",
  739. "root": {
  740. "__id__": 1
  741. },
  742. "asset": {
  743. "__id__": 0
  744. },
  745. "fileId": "10CZ/TIYRLX5CiA8t+ib+l",
  746. "sync": false
  747. },
  748. {
  749. "__type__": "cc.Node",
  750. "_name": "LeftBG",
  751. "_objFlags": 0,
  752. "_parent": {
  753. "__id__": 6
  754. },
  755. "_children": [],
  756. "_active": true,
  757. "_components": [
  758. {
  759. "__id__": 20
  760. }
  761. ],
  762. "_prefab": {
  763. "__id__": 21
  764. },
  765. "_opacity": 255,
  766. "_color": {
  767. "__type__": "cc.Color",
  768. "r": 255,
  769. "g": 255,
  770. "b": 255,
  771. "a": 255
  772. },
  773. "_contentSize": {
  774. "__type__": "cc.Size",
  775. "width": 246,
  776. "height": 657
  777. },
  778. "_anchorPoint": {
  779. "__type__": "cc.Vec2",
  780. "x": 0.5,
  781. "y": 0.5
  782. },
  783. "_trs": {
  784. "__type__": "TypedArray",
  785. "ctor": "Float64Array",
  786. "array": [
  787. -538,
  788. -39,
  789. 0,
  790. 0,
  791. 0,
  792. 0,
  793. 1,
  794. 1,
  795. 1,
  796. 1
  797. ]
  798. },
  799. "_eulerAngles": {
  800. "__type__": "cc.Vec3",
  801. "x": 0,
  802. "y": 0,
  803. "z": 0
  804. },
  805. "_skewX": 0,
  806. "_skewY": 0,
  807. "_is3DNode": false,
  808. "_groupIndex": 0,
  809. "groupIndex": 0,
  810. "_id": ""
  811. },
  812. {
  813. "__type__": "cc.Sprite",
  814. "_name": "",
  815. "_objFlags": 0,
  816. "node": {
  817. "__id__": 19
  818. },
  819. "_enabled": true,
  820. "_materials": [
  821. {
  822. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  823. }
  824. ],
  825. "_srcBlendFactor": 770,
  826. "_dstBlendFactor": 771,
  827. "_spriteFrame": {
  828. "__uuid__": "18561051-dd02-4875-8ed0-986e857bf6ad"
  829. },
  830. "_type": 0,
  831. "_sizeMode": 1,
  832. "_fillType": 0,
  833. "_fillCenter": {
  834. "__type__": "cc.Vec2",
  835. "x": 0,
  836. "y": 0
  837. },
  838. "_fillStart": 0,
  839. "_fillRange": 0,
  840. "_isTrimmedMode": true,
  841. "_atlas": null,
  842. "_id": ""
  843. },
  844. {
  845. "__type__": "cc.PrefabInfo",
  846. "root": {
  847. "__id__": 1
  848. },
  849. "asset": {
  850. "__id__": 0
  851. },
  852. "fileId": "ecUi4PWydD0IGwilfEo9Ku",
  853. "sync": false
  854. },
  855. {
  856. "__type__": "cc.Sprite",
  857. "_name": "",
  858. "_objFlags": 0,
  859. "node": {
  860. "__id__": 6
  861. },
  862. "_enabled": true,
  863. "_materials": [
  864. {
  865. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  866. }
  867. ],
  868. "_srcBlendFactor": 770,
  869. "_dstBlendFactor": 771,
  870. "_spriteFrame": {
  871. "__uuid__": "7ca9422f-4264-423c-958d-3e0684f183b2"
  872. },
  873. "_type": 1,
  874. "_sizeMode": 1,
  875. "_fillType": 0,
  876. "_fillCenter": {
  877. "__type__": "cc.Vec2",
  878. "x": 0,
  879. "y": 0
  880. },
  881. "_fillStart": 0,
  882. "_fillRange": 0,
  883. "_isTrimmedMode": true,
  884. "_atlas": null,
  885. "_id": ""
  886. },
  887. {
  888. "__type__": "cc.PrefabInfo",
  889. "root": {
  890. "__id__": 1
  891. },
  892. "asset": {
  893. "__id__": 0
  894. },
  895. "fileId": "af2OdBOERKEKlrPQ0qPsrj",
  896. "sync": false
  897. },
  898. {
  899. "__type__": "cc.Node",
  900. "_name": "Type",
  901. "_objFlags": 0,
  902. "_parent": {
  903. "__id__": 1
  904. },
  905. "_children": [
  906. {
  907. "__id__": 25
  908. },
  909. {
  910. "__id__": 41
  911. },
  912. {
  913. "__id__": 57
  914. }
  915. ],
  916. "_active": true,
  917. "_components": [
  918. {
  919. "__id__": 73
  920. },
  921. {
  922. "__id__": 74
  923. }
  924. ],
  925. "_prefab": {
  926. "__id__": 75
  927. },
  928. "_opacity": 255,
  929. "_color": {
  930. "__type__": "cc.Color",
  931. "r": 255,
  932. "g": 255,
  933. "b": 255,
  934. "a": 255
  935. },
  936. "_contentSize": {
  937. "__type__": "cc.Size",
  938. "width": 259,
  939. "height": 337
  940. },
  941. "_anchorPoint": {
  942. "__type__": "cc.Vec2",
  943. "x": 0.5,
  944. "y": 1
  945. },
  946. "_trs": {
  947. "__type__": "TypedArray",
  948. "ctor": "Float64Array",
  949. "array": [
  950. -533.897,
  951. 291.379,
  952. 0,
  953. 0,
  954. 0,
  955. 0,
  956. 1,
  957. 1,
  958. 1,
  959. 1
  960. ]
  961. },
  962. "_eulerAngles": {
  963. "__type__": "cc.Vec3",
  964. "x": 0,
  965. "y": 0,
  966. "z": 0
  967. },
  968. "_skewX": 0,
  969. "_skewY": 0,
  970. "_is3DNode": false,
  971. "_groupIndex": 0,
  972. "groupIndex": 0,
  973. "_id": ""
  974. },
  975. {
  976. "__type__": "cc.Node",
  977. "_name": "0",
  978. "_objFlags": 0,
  979. "_parent": {
  980. "__id__": 24
  981. },
  982. "_children": [
  983. {
  984. "__id__": 26
  985. },
  986. {
  987. "__id__": 32
  988. }
  989. ],
  990. "_active": true,
  991. "_components": [
  992. {
  993. "__id__": 38
  994. }
  995. ],
  996. "_prefab": {
  997. "__id__": 40
  998. },
  999. "_opacity": 255,
  1000. "_color": {
  1001. "__type__": "cc.Color",
  1002. "r": 255,
  1003. "g": 255,
  1004. "b": 255,
  1005. "a": 255
  1006. },
  1007. "_contentSize": {
  1008. "__type__": "cc.Size",
  1009. "width": 259,
  1010. "height": 113
  1011. },
  1012. "_anchorPoint": {
  1013. "__type__": "cc.Vec2",
  1014. "x": 0.5,
  1015. "y": 0.5
  1016. },
  1017. "_trs": {
  1018. "__type__": "TypedArray",
  1019. "ctor": "Float64Array",
  1020. "array": [
  1021. 0,
  1022. -56.5,
  1023. 0,
  1024. 0,
  1025. 0,
  1026. 0,
  1027. 1,
  1028. 1,
  1029. 1,
  1030. 1
  1031. ]
  1032. },
  1033. "_eulerAngles": {
  1034. "__type__": "cc.Vec3",
  1035. "x": 0,
  1036. "y": 0,
  1037. "z": 0
  1038. },
  1039. "_skewX": 0,
  1040. "_skewY": 0,
  1041. "_is3DNode": false,
  1042. "_groupIndex": 0,
  1043. "groupIndex": 0,
  1044. "_id": ""
  1045. },
  1046. {
  1047. "__type__": "cc.Node",
  1048. "_name": "Background",
  1049. "_objFlags": 512,
  1050. "_parent": {
  1051. "__id__": 25
  1052. },
  1053. "_children": [
  1054. {
  1055. "__id__": 27
  1056. }
  1057. ],
  1058. "_active": true,
  1059. "_components": [
  1060. {
  1061. "__id__": 30
  1062. }
  1063. ],
  1064. "_prefab": {
  1065. "__id__": 31
  1066. },
  1067. "_opacity": 255,
  1068. "_color": {
  1069. "__type__": "cc.Color",
  1070. "r": 255,
  1071. "g": 255,
  1072. "b": 255,
  1073. "a": 255
  1074. },
  1075. "_contentSize": {
  1076. "__type__": "cc.Size",
  1077. "width": 246,
  1078. "height": 3
  1079. },
  1080. "_anchorPoint": {
  1081. "__type__": "cc.Vec2",
  1082. "x": 0.5,
  1083. "y": 0.5
  1084. },
  1085. "_trs": {
  1086. "__type__": "TypedArray",
  1087. "ctor": "Float64Array",
  1088. "array": [
  1089. 0,
  1090. -46,
  1091. 0,
  1092. 0,
  1093. 0,
  1094. 0,
  1095. 1,
  1096. 1,
  1097. 1,
  1098. 0
  1099. ]
  1100. },
  1101. "_eulerAngles": {
  1102. "__type__": "cc.Vec3",
  1103. "x": 0,
  1104. "y": 0,
  1105. "z": 0
  1106. },
  1107. "_skewX": 0,
  1108. "_skewY": 0,
  1109. "_is3DNode": false,
  1110. "_groupIndex": 0,
  1111. "groupIndex": 0,
  1112. "_id": ""
  1113. },
  1114. {
  1115. "__type__": "cc.Node",
  1116. "_name": "Label",
  1117. "_objFlags": 0,
  1118. "_parent": {
  1119. "__id__": 26
  1120. },
  1121. "_children": [],
  1122. "_active": true,
  1123. "_components": [
  1124. {
  1125. "__id__": 28
  1126. }
  1127. ],
  1128. "_prefab": {
  1129. "__id__": 29
  1130. },
  1131. "_opacity": 255,
  1132. "_color": {
  1133. "__type__": "cc.Color",
  1134. "r": 179,
  1135. "g": 139,
  1136. "b": 76,
  1137. "a": 255
  1138. },
  1139. "_contentSize": {
  1140. "__type__": "cc.Size",
  1141. "width": 144,
  1142. "height": 47.88
  1143. },
  1144. "_anchorPoint": {
  1145. "__type__": "cc.Vec2",
  1146. "x": 0.5,
  1147. "y": 0.5
  1148. },
  1149. "_trs": {
  1150. "__type__": "TypedArray",
  1151. "ctor": "Float64Array",
  1152. "array": [
  1153. 0,
  1154. 46,
  1155. 0,
  1156. 0,
  1157. 0,
  1158. 0,
  1159. 1,
  1160. 1,
  1161. 1,
  1162. 1
  1163. ]
  1164. },
  1165. "_eulerAngles": {
  1166. "__type__": "cc.Vec3",
  1167. "x": 0,
  1168. "y": 0,
  1169. "z": 0
  1170. },
  1171. "_skewX": 0,
  1172. "_skewY": 0,
  1173. "_is3DNode": false,
  1174. "_groupIndex": 0,
  1175. "groupIndex": 0,
  1176. "_id": ""
  1177. },
  1178. {
  1179. "__type__": "cc.Label",
  1180. "_name": "",
  1181. "_objFlags": 0,
  1182. "node": {
  1183. "__id__": 27
  1184. },
  1185. "_enabled": true,
  1186. "_materials": [
  1187. {
  1188. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1189. }
  1190. ],
  1191. "_srcBlendFactor": 770,
  1192. "_dstBlendFactor": 771,
  1193. "_string": "成員列表",
  1194. "_N$string": "成員列表",
  1195. "_fontSize": 36,
  1196. "_lineHeight": 38,
  1197. "_enableWrapText": true,
  1198. "_N$file": {
  1199. "__uuid__": "8232a6ae-f8d5-41ca-a32f-6ce1a50a585f"
  1200. },
  1201. "_isSystemFontUsed": false,
  1202. "_spacingX": 0,
  1203. "_batchAsBitmap": false,
  1204. "_styleFlags": 0,
  1205. "_underlineHeight": 0,
  1206. "_N$horizontalAlign": 1,
  1207. "_N$verticalAlign": 1,
  1208. "_N$fontFamily": "Arial",
  1209. "_N$overflow": 0,
  1210. "_N$cacheMode": 0,
  1211. "_id": ""
  1212. },
  1213. {
  1214. "__type__": "cc.PrefabInfo",
  1215. "root": {
  1216. "__id__": 1
  1217. },
  1218. "asset": {
  1219. "__id__": 0
  1220. },
  1221. "fileId": "acaSHNeBlOXbEUteWQsUdq",
  1222. "sync": false
  1223. },
  1224. {
  1225. "__type__": "cc.Sprite",
  1226. "_name": "",
  1227. "_objFlags": 0,
  1228. "node": {
  1229. "__id__": 26
  1230. },
  1231. "_enabled": true,
  1232. "_materials": [
  1233. {
  1234. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1235. }
  1236. ],
  1237. "_srcBlendFactor": 770,
  1238. "_dstBlendFactor": 771,
  1239. "_spriteFrame": {
  1240. "__uuid__": "917f3d3d-ff48-440f-b779-2509ff16aa2e"
  1241. },
  1242. "_type": 0,
  1243. "_sizeMode": 1,
  1244. "_fillType": 0,
  1245. "_fillCenter": {
  1246. "__type__": "cc.Vec2",
  1247. "x": 0,
  1248. "y": 0
  1249. },
  1250. "_fillStart": 0,
  1251. "_fillRange": 0,
  1252. "_isTrimmedMode": true,
  1253. "_atlas": null,
  1254. "_id": ""
  1255. },
  1256. {
  1257. "__type__": "cc.PrefabInfo",
  1258. "root": {
  1259. "__id__": 1
  1260. },
  1261. "asset": {
  1262. "__id__": 0
  1263. },
  1264. "fileId": "62e8vx22hGd4Wx+5nl16FY",
  1265. "sync": false
  1266. },
  1267. {
  1268. "__type__": "cc.Node",
  1269. "_name": "checkmark",
  1270. "_objFlags": 512,
  1271. "_parent": {
  1272. "__id__": 25
  1273. },
  1274. "_children": [
  1275. {
  1276. "__id__": 33
  1277. }
  1278. ],
  1279. "_active": true,
  1280. "_components": [
  1281. {
  1282. "__id__": 36
  1283. }
  1284. ],
  1285. "_prefab": {
  1286. "__id__": 37
  1287. },
  1288. "_opacity": 255,
  1289. "_color": {
  1290. "__type__": "cc.Color",
  1291. "r": 255,
  1292. "g": 255,
  1293. "b": 255,
  1294. "a": 255
  1295. },
  1296. "_contentSize": {
  1297. "__type__": "cc.Size",
  1298. "width": 259,
  1299. "height": 113
  1300. },
  1301. "_anchorPoint": {
  1302. "__type__": "cc.Vec2",
  1303. "x": 0.5,
  1304. "y": 0.5
  1305. },
  1306. "_trs": {
  1307. "__type__": "TypedArray",
  1308. "ctor": "Float64Array",
  1309. "array": [
  1310. 0,
  1311. 0,
  1312. 0,
  1313. 0,
  1314. 0,
  1315. 0,
  1316. 1,
  1317. 1,
  1318. 1,
  1319. 1
  1320. ]
  1321. },
  1322. "_eulerAngles": {
  1323. "__type__": "cc.Vec3",
  1324. "x": 0,
  1325. "y": 0,
  1326. "z": 0
  1327. },
  1328. "_skewX": 0,
  1329. "_skewY": 0,
  1330. "_is3DNode": false,
  1331. "_groupIndex": 0,
  1332. "groupIndex": 0,
  1333. "_id": ""
  1334. },
  1335. {
  1336. "__type__": "cc.Node",
  1337. "_name": "Label",
  1338. "_objFlags": 0,
  1339. "_parent": {
  1340. "__id__": 32
  1341. },
  1342. "_children": [],
  1343. "_active": true,
  1344. "_components": [
  1345. {
  1346. "__id__": 34
  1347. }
  1348. ],
  1349. "_prefab": {
  1350. "__id__": 35
  1351. },
  1352. "_opacity": 255,
  1353. "_color": {
  1354. "__type__": "cc.Color",
  1355. "r": 166,
  1356. "g": 71,
  1357. "b": 29,
  1358. "a": 255
  1359. },
  1360. "_contentSize": {
  1361. "__type__": "cc.Size",
  1362. "width": 144,
  1363. "height": 47.88
  1364. },
  1365. "_anchorPoint": {
  1366. "__type__": "cc.Vec2",
  1367. "x": 0.5,
  1368. "y": 0.5
  1369. },
  1370. "_trs": {
  1371. "__type__": "TypedArray",
  1372. "ctor": "Float64Array",
  1373. "array": [
  1374. 0,
  1375. 0,
  1376. 0,
  1377. 0,
  1378. 0,
  1379. 0,
  1380. 1,
  1381. 1,
  1382. 1,
  1383. 1
  1384. ]
  1385. },
  1386. "_eulerAngles": {
  1387. "__type__": "cc.Vec3",
  1388. "x": 0,
  1389. "y": 0,
  1390. "z": 0
  1391. },
  1392. "_skewX": 0,
  1393. "_skewY": 0,
  1394. "_is3DNode": false,
  1395. "_groupIndex": 0,
  1396. "groupIndex": 0,
  1397. "_id": ""
  1398. },
  1399. {
  1400. "__type__": "cc.Label",
  1401. "_name": "",
  1402. "_objFlags": 0,
  1403. "node": {
  1404. "__id__": 33
  1405. },
  1406. "_enabled": true,
  1407. "_materials": [
  1408. {
  1409. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1410. }
  1411. ],
  1412. "_srcBlendFactor": 770,
  1413. "_dstBlendFactor": 771,
  1414. "_string": "成員列表",
  1415. "_N$string": "成員列表",
  1416. "_fontSize": 36,
  1417. "_lineHeight": 38,
  1418. "_enableWrapText": true,
  1419. "_N$file": {
  1420. "__uuid__": "8232a6ae-f8d5-41ca-a32f-6ce1a50a585f"
  1421. },
  1422. "_isSystemFontUsed": false,
  1423. "_spacingX": 0,
  1424. "_batchAsBitmap": false,
  1425. "_styleFlags": 0,
  1426. "_underlineHeight": 0,
  1427. "_N$horizontalAlign": 1,
  1428. "_N$verticalAlign": 1,
  1429. "_N$fontFamily": "Arial",
  1430. "_N$overflow": 0,
  1431. "_N$cacheMode": 0,
  1432. "_id": ""
  1433. },
  1434. {
  1435. "__type__": "cc.PrefabInfo",
  1436. "root": {
  1437. "__id__": 1
  1438. },
  1439. "asset": {
  1440. "__id__": 0
  1441. },
  1442. "fileId": "782FEmRX5B1ouyp7kXc+9m",
  1443. "sync": false
  1444. },
  1445. {
  1446. "__type__": "cc.Sprite",
  1447. "_name": "",
  1448. "_objFlags": 0,
  1449. "node": {
  1450. "__id__": 32
  1451. },
  1452. "_enabled": true,
  1453. "_materials": [
  1454. {
  1455. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1456. }
  1457. ],
  1458. "_srcBlendFactor": 770,
  1459. "_dstBlendFactor": 771,
  1460. "_spriteFrame": {
  1461. "__uuid__": "c1a1ccc2-f6d5-455b-80a8-d2e6bd6806d6"
  1462. },
  1463. "_type": 0,
  1464. "_sizeMode": 2,
  1465. "_fillType": 0,
  1466. "_fillCenter": {
  1467. "__type__": "cc.Vec2",
  1468. "x": 0,
  1469. "y": 0
  1470. },
  1471. "_fillStart": 0,
  1472. "_fillRange": 0,
  1473. "_isTrimmedMode": false,
  1474. "_atlas": null,
  1475. "_id": ""
  1476. },
  1477. {
  1478. "__type__": "cc.PrefabInfo",
  1479. "root": {
  1480. "__id__": 1
  1481. },
  1482. "asset": {
  1483. "__id__": 0
  1484. },
  1485. "fileId": "e2QoZas19O354tJqT3hVVm",
  1486. "sync": false
  1487. },
  1488. {
  1489. "__type__": "cc.Toggle",
  1490. "_name": "",
  1491. "_objFlags": 0,
  1492. "node": {
  1493. "__id__": 25
  1494. },
  1495. "_enabled": true,
  1496. "_normalMaterial": null,
  1497. "_grayMaterial": null,
  1498. "duration": 0.1,
  1499. "zoomScale": 1.2,
  1500. "clickEvents": [],
  1501. "_N$interactable": true,
  1502. "_N$enableAutoGrayEffect": false,
  1503. "_N$transition": 0,
  1504. "transition": 0,
  1505. "_N$normalColor": {
  1506. "__type__": "cc.Color",
  1507. "r": 214,
  1508. "g": 214,
  1509. "b": 214,
  1510. "a": 255
  1511. },
  1512. "_N$pressedColor": {
  1513. "__type__": "cc.Color",
  1514. "r": 211,
  1515. "g": 211,
  1516. "b": 211,
  1517. "a": 255
  1518. },
  1519. "pressedColor": {
  1520. "__type__": "cc.Color",
  1521. "r": 211,
  1522. "g": 211,
  1523. "b": 211,
  1524. "a": 255
  1525. },
  1526. "_N$hoverColor": {
  1527. "__type__": "cc.Color",
  1528. "r": 255,
  1529. "g": 255,
  1530. "b": 255,
  1531. "a": 255
  1532. },
  1533. "hoverColor": {
  1534. "__type__": "cc.Color",
  1535. "r": 255,
  1536. "g": 255,
  1537. "b": 255,
  1538. "a": 255
  1539. },
  1540. "_N$disabledColor": {
  1541. "__type__": "cc.Color",
  1542. "r": 124,
  1543. "g": 124,
  1544. "b": 124,
  1545. "a": 255
  1546. },
  1547. "_N$normalSprite": null,
  1548. "_N$pressedSprite": null,
  1549. "pressedSprite": null,
  1550. "_N$hoverSprite": null,
  1551. "hoverSprite": null,
  1552. "_N$disabledSprite": null,
  1553. "_N$target": {
  1554. "__id__": 26
  1555. },
  1556. "_N$isChecked": true,
  1557. "toggleGroup": null,
  1558. "checkMark": {
  1559. "__id__": 36
  1560. },
  1561. "checkEvents": [
  1562. {
  1563. "__id__": 39
  1564. }
  1565. ],
  1566. "_id": ""
  1567. },
  1568. {
  1569. "__type__": "cc.ClickEvent",
  1570. "target": {
  1571. "__id__": 1
  1572. },
  1573. "component": "",
  1574. "_componentId": "3efb7TR+3VB5oYxlOA7dbXx",
  1575. "handler": "onClickToggle",
  1576. "customEventData": ""
  1577. },
  1578. {
  1579. "__type__": "cc.PrefabInfo",
  1580. "root": {
  1581. "__id__": 1
  1582. },
  1583. "asset": {
  1584. "__id__": 0
  1585. },
  1586. "fileId": "c7jqFqyTxPSKtXoqWqmb8i",
  1587. "sync": false
  1588. },
  1589. {
  1590. "__type__": "cc.Node",
  1591. "_name": "1",
  1592. "_objFlags": 0,
  1593. "_parent": {
  1594. "__id__": 24
  1595. },
  1596. "_children": [
  1597. {
  1598. "__id__": 42
  1599. },
  1600. {
  1601. "__id__": 48
  1602. }
  1603. ],
  1604. "_active": true,
  1605. "_components": [
  1606. {
  1607. "__id__": 54
  1608. }
  1609. ],
  1610. "_prefab": {
  1611. "__id__": 56
  1612. },
  1613. "_opacity": 255,
  1614. "_color": {
  1615. "__type__": "cc.Color",
  1616. "r": 255,
  1617. "g": 255,
  1618. "b": 255,
  1619. "a": 255
  1620. },
  1621. "_contentSize": {
  1622. "__type__": "cc.Size",
  1623. "width": 259,
  1624. "height": 112
  1625. },
  1626. "_anchorPoint": {
  1627. "__type__": "cc.Vec2",
  1628. "x": 0.5,
  1629. "y": 0.5
  1630. },
  1631. "_trs": {
  1632. "__type__": "TypedArray",
  1633. "ctor": "Float64Array",
  1634. "array": [
  1635. 0,
  1636. -169,
  1637. 0,
  1638. 0,
  1639. 0,
  1640. 0,
  1641. 1,
  1642. 1,
  1643. 1,
  1644. 1
  1645. ]
  1646. },
  1647. "_eulerAngles": {
  1648. "__type__": "cc.Vec3",
  1649. "x": 0,
  1650. "y": 0,
  1651. "z": 0
  1652. },
  1653. "_skewX": 0,
  1654. "_skewY": 0,
  1655. "_is3DNode": false,
  1656. "_groupIndex": 0,
  1657. "groupIndex": 0,
  1658. "_id": ""
  1659. },
  1660. {
  1661. "__type__": "cc.Node",
  1662. "_name": "Background",
  1663. "_objFlags": 512,
  1664. "_parent": {
  1665. "__id__": 41
  1666. },
  1667. "_children": [
  1668. {
  1669. "__id__": 43
  1670. }
  1671. ],
  1672. "_active": true,
  1673. "_components": [
  1674. {
  1675. "__id__": 46
  1676. }
  1677. ],
  1678. "_prefab": {
  1679. "__id__": 47
  1680. },
  1681. "_opacity": 255,
  1682. "_color": {
  1683. "__type__": "cc.Color",
  1684. "r": 255,
  1685. "g": 255,
  1686. "b": 255,
  1687. "a": 255
  1688. },
  1689. "_contentSize": {
  1690. "__type__": "cc.Size",
  1691. "width": 246,
  1692. "height": 3
  1693. },
  1694. "_anchorPoint": {
  1695. "__type__": "cc.Vec2",
  1696. "x": 0.5,
  1697. "y": 0.5
  1698. },
  1699. "_trs": {
  1700. "__type__": "TypedArray",
  1701. "ctor": "Float64Array",
  1702. "array": [
  1703. 0,
  1704. -46,
  1705. 0,
  1706. 0,
  1707. 0,
  1708. 0,
  1709. 1,
  1710. 1,
  1711. 1,
  1712. 0
  1713. ]
  1714. },
  1715. "_eulerAngles": {
  1716. "__type__": "cc.Vec3",
  1717. "x": 0,
  1718. "y": 0,
  1719. "z": 0
  1720. },
  1721. "_skewX": 0,
  1722. "_skewY": 0,
  1723. "_is3DNode": false,
  1724. "_groupIndex": 0,
  1725. "groupIndex": 0,
  1726. "_id": ""
  1727. },
  1728. {
  1729. "__type__": "cc.Node",
  1730. "_name": "Label",
  1731. "_objFlags": 0,
  1732. "_parent": {
  1733. "__id__": 42
  1734. },
  1735. "_children": [],
  1736. "_active": true,
  1737. "_components": [
  1738. {
  1739. "__id__": 44
  1740. }
  1741. ],
  1742. "_prefab": {
  1743. "__id__": 45
  1744. },
  1745. "_opacity": 255,
  1746. "_color": {
  1747. "__type__": "cc.Color",
  1748. "r": 179,
  1749. "g": 139,
  1750. "b": 76,
  1751. "a": 255
  1752. },
  1753. "_contentSize": {
  1754. "__type__": "cc.Size",
  1755. "width": 144,
  1756. "height": 47.88
  1757. },
  1758. "_anchorPoint": {
  1759. "__type__": "cc.Vec2",
  1760. "x": 0.5,
  1761. "y": 0.5
  1762. },
  1763. "_trs": {
  1764. "__type__": "TypedArray",
  1765. "ctor": "Float64Array",
  1766. "array": [
  1767. 0,
  1768. 46,
  1769. 0,
  1770. 0,
  1771. 0,
  1772. 0,
  1773. 1,
  1774. 1,
  1775. 1,
  1776. 1
  1777. ]
  1778. },
  1779. "_eulerAngles": {
  1780. "__type__": "cc.Vec3",
  1781. "x": 0,
  1782. "y": 0,
  1783. "z": 0
  1784. },
  1785. "_skewX": 0,
  1786. "_skewY": 0,
  1787. "_is3DNode": false,
  1788. "_groupIndex": 0,
  1789. "groupIndex": 0,
  1790. "_id": ""
  1791. },
  1792. {
  1793. "__type__": "cc.Label",
  1794. "_name": "",
  1795. "_objFlags": 0,
  1796. "node": {
  1797. "__id__": 43
  1798. },
  1799. "_enabled": true,
  1800. "_materials": [
  1801. {
  1802. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1803. }
  1804. ],
  1805. "_srcBlendFactor": 770,
  1806. "_dstBlendFactor": 771,
  1807. "_string": "稽核管理",
  1808. "_N$string": "稽核管理",
  1809. "_fontSize": 36,
  1810. "_lineHeight": 38,
  1811. "_enableWrapText": true,
  1812. "_N$file": {
  1813. "__uuid__": "8232a6ae-f8d5-41ca-a32f-6ce1a50a585f"
  1814. },
  1815. "_isSystemFontUsed": false,
  1816. "_spacingX": 0,
  1817. "_batchAsBitmap": false,
  1818. "_styleFlags": 0,
  1819. "_underlineHeight": 0,
  1820. "_N$horizontalAlign": 1,
  1821. "_N$verticalAlign": 1,
  1822. "_N$fontFamily": "Arial",
  1823. "_N$overflow": 0,
  1824. "_N$cacheMode": 0,
  1825. "_id": ""
  1826. },
  1827. {
  1828. "__type__": "cc.PrefabInfo",
  1829. "root": {
  1830. "__id__": 1
  1831. },
  1832. "asset": {
  1833. "__id__": 0
  1834. },
  1835. "fileId": "20iHNYM+hLe52posAS1THX",
  1836. "sync": false
  1837. },
  1838. {
  1839. "__type__": "cc.Sprite",
  1840. "_name": "",
  1841. "_objFlags": 0,
  1842. "node": {
  1843. "__id__": 42
  1844. },
  1845. "_enabled": true,
  1846. "_materials": [
  1847. {
  1848. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1849. }
  1850. ],
  1851. "_srcBlendFactor": 770,
  1852. "_dstBlendFactor": 771,
  1853. "_spriteFrame": {
  1854. "__uuid__": "917f3d3d-ff48-440f-b779-2509ff16aa2e"
  1855. },
  1856. "_type": 0,
  1857. "_sizeMode": 1,
  1858. "_fillType": 0,
  1859. "_fillCenter": {
  1860. "__type__": "cc.Vec2",
  1861. "x": 0,
  1862. "y": 0
  1863. },
  1864. "_fillStart": 0,
  1865. "_fillRange": 0,
  1866. "_isTrimmedMode": true,
  1867. "_atlas": null,
  1868. "_id": ""
  1869. },
  1870. {
  1871. "__type__": "cc.PrefabInfo",
  1872. "root": {
  1873. "__id__": 1
  1874. },
  1875. "asset": {
  1876. "__id__": 0
  1877. },
  1878. "fileId": "b19DbK3KJCqbmjc4e+HR3H",
  1879. "sync": false
  1880. },
  1881. {
  1882. "__type__": "cc.Node",
  1883. "_name": "checkmark",
  1884. "_objFlags": 512,
  1885. "_parent": {
  1886. "__id__": 41
  1887. },
  1888. "_children": [
  1889. {
  1890. "__id__": 49
  1891. }
  1892. ],
  1893. "_active": false,
  1894. "_components": [
  1895. {
  1896. "__id__": 52
  1897. }
  1898. ],
  1899. "_prefab": {
  1900. "__id__": 53
  1901. },
  1902. "_opacity": 255,
  1903. "_color": {
  1904. "__type__": "cc.Color",
  1905. "r": 255,
  1906. "g": 255,
  1907. "b": 255,
  1908. "a": 255
  1909. },
  1910. "_contentSize": {
  1911. "__type__": "cc.Size",
  1912. "width": 259,
  1913. "height": 113
  1914. },
  1915. "_anchorPoint": {
  1916. "__type__": "cc.Vec2",
  1917. "x": 0.5,
  1918. "y": 0.5
  1919. },
  1920. "_trs": {
  1921. "__type__": "TypedArray",
  1922. "ctor": "Float64Array",
  1923. "array": [
  1924. 0,
  1925. 0,
  1926. 0,
  1927. 0,
  1928. 0,
  1929. 0,
  1930. 1,
  1931. 1,
  1932. 1,
  1933. 1
  1934. ]
  1935. },
  1936. "_eulerAngles": {
  1937. "__type__": "cc.Vec3",
  1938. "x": 0,
  1939. "y": 0,
  1940. "z": 0
  1941. },
  1942. "_skewX": 0,
  1943. "_skewY": 0,
  1944. "_is3DNode": false,
  1945. "_groupIndex": 0,
  1946. "groupIndex": 0,
  1947. "_id": ""
  1948. },
  1949. {
  1950. "__type__": "cc.Node",
  1951. "_name": "Label",
  1952. "_objFlags": 0,
  1953. "_parent": {
  1954. "__id__": 48
  1955. },
  1956. "_children": [],
  1957. "_active": true,
  1958. "_components": [
  1959. {
  1960. "__id__": 50
  1961. }
  1962. ],
  1963. "_prefab": {
  1964. "__id__": 51
  1965. },
  1966. "_opacity": 255,
  1967. "_color": {
  1968. "__type__": "cc.Color",
  1969. "r": 166,
  1970. "g": 71,
  1971. "b": 29,
  1972. "a": 255
  1973. },
  1974. "_contentSize": {
  1975. "__type__": "cc.Size",
  1976. "width": 144,
  1977. "height": 47.88
  1978. },
  1979. "_anchorPoint": {
  1980. "__type__": "cc.Vec2",
  1981. "x": 0.5,
  1982. "y": 0.5
  1983. },
  1984. "_trs": {
  1985. "__type__": "TypedArray",
  1986. "ctor": "Float64Array",
  1987. "array": [
  1988. 0,
  1989. 0,
  1990. 0,
  1991. 0,
  1992. 0,
  1993. 0,
  1994. 1,
  1995. 1,
  1996. 1,
  1997. 1
  1998. ]
  1999. },
  2000. "_eulerAngles": {
  2001. "__type__": "cc.Vec3",
  2002. "x": 0,
  2003. "y": 0,
  2004. "z": 0
  2005. },
  2006. "_skewX": 0,
  2007. "_skewY": 0,
  2008. "_is3DNode": false,
  2009. "_groupIndex": 0,
  2010. "groupIndex": 0,
  2011. "_id": ""
  2012. },
  2013. {
  2014. "__type__": "cc.Label",
  2015. "_name": "",
  2016. "_objFlags": 0,
  2017. "node": {
  2018. "__id__": 49
  2019. },
  2020. "_enabled": true,
  2021. "_materials": [
  2022. {
  2023. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2024. }
  2025. ],
  2026. "_srcBlendFactor": 770,
  2027. "_dstBlendFactor": 771,
  2028. "_string": "稽核管理",
  2029. "_N$string": "稽核管理",
  2030. "_fontSize": 36,
  2031. "_lineHeight": 38,
  2032. "_enableWrapText": true,
  2033. "_N$file": {
  2034. "__uuid__": "8232a6ae-f8d5-41ca-a32f-6ce1a50a585f"
  2035. },
  2036. "_isSystemFontUsed": false,
  2037. "_spacingX": 0,
  2038. "_batchAsBitmap": false,
  2039. "_styleFlags": 0,
  2040. "_underlineHeight": 0,
  2041. "_N$horizontalAlign": 1,
  2042. "_N$verticalAlign": 1,
  2043. "_N$fontFamily": "Arial",
  2044. "_N$overflow": 0,
  2045. "_N$cacheMode": 0,
  2046. "_id": ""
  2047. },
  2048. {
  2049. "__type__": "cc.PrefabInfo",
  2050. "root": {
  2051. "__id__": 1
  2052. },
  2053. "asset": {
  2054. "__id__": 0
  2055. },
  2056. "fileId": "cbSJuyX3tBKLPMprpvREli",
  2057. "sync": false
  2058. },
  2059. {
  2060. "__type__": "cc.Sprite",
  2061. "_name": "",
  2062. "_objFlags": 0,
  2063. "node": {
  2064. "__id__": 48
  2065. },
  2066. "_enabled": true,
  2067. "_materials": [
  2068. {
  2069. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2070. }
  2071. ],
  2072. "_srcBlendFactor": 770,
  2073. "_dstBlendFactor": 771,
  2074. "_spriteFrame": {
  2075. "__uuid__": "c1a1ccc2-f6d5-455b-80a8-d2e6bd6806d6"
  2076. },
  2077. "_type": 0,
  2078. "_sizeMode": 2,
  2079. "_fillType": 0,
  2080. "_fillCenter": {
  2081. "__type__": "cc.Vec2",
  2082. "x": 0,
  2083. "y": 0
  2084. },
  2085. "_fillStart": 0,
  2086. "_fillRange": 0,
  2087. "_isTrimmedMode": false,
  2088. "_atlas": null,
  2089. "_id": ""
  2090. },
  2091. {
  2092. "__type__": "cc.PrefabInfo",
  2093. "root": {
  2094. "__id__": 1
  2095. },
  2096. "asset": {
  2097. "__id__": 0
  2098. },
  2099. "fileId": "91zfg+C19Fm5UectAb3bu9",
  2100. "sync": false
  2101. },
  2102. {
  2103. "__type__": "cc.Toggle",
  2104. "_name": "",
  2105. "_objFlags": 0,
  2106. "node": {
  2107. "__id__": 41
  2108. },
  2109. "_enabled": true,
  2110. "_normalMaterial": null,
  2111. "_grayMaterial": null,
  2112. "duration": 0.1,
  2113. "zoomScale": 1.2,
  2114. "clickEvents": [],
  2115. "_N$interactable": true,
  2116. "_N$enableAutoGrayEffect": false,
  2117. "_N$transition": 0,
  2118. "transition": 0,
  2119. "_N$normalColor": {
  2120. "__type__": "cc.Color",
  2121. "r": 214,
  2122. "g": 214,
  2123. "b": 214,
  2124. "a": 255
  2125. },
  2126. "_N$pressedColor": {
  2127. "__type__": "cc.Color",
  2128. "r": 211,
  2129. "g": 211,
  2130. "b": 211,
  2131. "a": 255
  2132. },
  2133. "pressedColor": {
  2134. "__type__": "cc.Color",
  2135. "r": 211,
  2136. "g": 211,
  2137. "b": 211,
  2138. "a": 255
  2139. },
  2140. "_N$hoverColor": {
  2141. "__type__": "cc.Color",
  2142. "r": 255,
  2143. "g": 255,
  2144. "b": 255,
  2145. "a": 255
  2146. },
  2147. "hoverColor": {
  2148. "__type__": "cc.Color",
  2149. "r": 255,
  2150. "g": 255,
  2151. "b": 255,
  2152. "a": 255
  2153. },
  2154. "_N$disabledColor": {
  2155. "__type__": "cc.Color",
  2156. "r": 124,
  2157. "g": 124,
  2158. "b": 124,
  2159. "a": 255
  2160. },
  2161. "_N$normalSprite": null,
  2162. "_N$pressedSprite": null,
  2163. "pressedSprite": null,
  2164. "_N$hoverSprite": null,
  2165. "hoverSprite": null,
  2166. "_N$disabledSprite": null,
  2167. "_N$target": {
  2168. "__id__": 42
  2169. },
  2170. "_N$isChecked": false,
  2171. "toggleGroup": null,
  2172. "checkMark": {
  2173. "__id__": 52
  2174. },
  2175. "checkEvents": [
  2176. {
  2177. "__id__": 55
  2178. }
  2179. ],
  2180. "_id": ""
  2181. },
  2182. {
  2183. "__type__": "cc.ClickEvent",
  2184. "target": {
  2185. "__id__": 1
  2186. },
  2187. "component": "",
  2188. "_componentId": "3efb7TR+3VB5oYxlOA7dbXx",
  2189. "handler": "onClickToggle",
  2190. "customEventData": ""
  2191. },
  2192. {
  2193. "__type__": "cc.PrefabInfo",
  2194. "root": {
  2195. "__id__": 1
  2196. },
  2197. "asset": {
  2198. "__id__": 0
  2199. },
  2200. "fileId": "09vBE4RGZJs51GJLzrm73/",
  2201. "sync": false
  2202. },
  2203. {
  2204. "__type__": "cc.Node",
  2205. "_name": "2",
  2206. "_objFlags": 0,
  2207. "_parent": {
  2208. "__id__": 24
  2209. },
  2210. "_children": [
  2211. {
  2212. "__id__": 58
  2213. },
  2214. {
  2215. "__id__": 64
  2216. }
  2217. ],
  2218. "_active": true,
  2219. "_components": [
  2220. {
  2221. "__id__": 70
  2222. }
  2223. ],
  2224. "_prefab": {
  2225. "__id__": 72
  2226. },
  2227. "_opacity": 255,
  2228. "_color": {
  2229. "__type__": "cc.Color",
  2230. "r": 255,
  2231. "g": 255,
  2232. "b": 255,
  2233. "a": 255
  2234. },
  2235. "_contentSize": {
  2236. "__type__": "cc.Size",
  2237. "width": 259,
  2238. "height": 112
  2239. },
  2240. "_anchorPoint": {
  2241. "__type__": "cc.Vec2",
  2242. "x": 0.5,
  2243. "y": 0.5
  2244. },
  2245. "_trs": {
  2246. "__type__": "TypedArray",
  2247. "ctor": "Float64Array",
  2248. "array": [
  2249. 0,
  2250. -281,
  2251. 0,
  2252. 0,
  2253. 0,
  2254. 0,
  2255. 1,
  2256. 1,
  2257. 1,
  2258. 1
  2259. ]
  2260. },
  2261. "_eulerAngles": {
  2262. "__type__": "cc.Vec3",
  2263. "x": 0,
  2264. "y": 0,
  2265. "z": 0
  2266. },
  2267. "_skewX": 0,
  2268. "_skewY": 0,
  2269. "_is3DNode": false,
  2270. "_groupIndex": 0,
  2271. "groupIndex": 0,
  2272. "_id": ""
  2273. },
  2274. {
  2275. "__type__": "cc.Node",
  2276. "_name": "Background",
  2277. "_objFlags": 0,
  2278. "_parent": {
  2279. "__id__": 57
  2280. },
  2281. "_children": [
  2282. {
  2283. "__id__": 59
  2284. }
  2285. ],
  2286. "_active": true,
  2287. "_components": [
  2288. {
  2289. "__id__": 62
  2290. }
  2291. ],
  2292. "_prefab": {
  2293. "__id__": 63
  2294. },
  2295. "_opacity": 255,
  2296. "_color": {
  2297. "__type__": "cc.Color",
  2298. "r": 255,
  2299. "g": 255,
  2300. "b": 255,
  2301. "a": 255
  2302. },
  2303. "_contentSize": {
  2304. "__type__": "cc.Size",
  2305. "width": 246,
  2306. "height": 3
  2307. },
  2308. "_anchorPoint": {
  2309. "__type__": "cc.Vec2",
  2310. "x": 0.5,
  2311. "y": 0.5
  2312. },
  2313. "_trs": {
  2314. "__type__": "TypedArray",
  2315. "ctor": "Float64Array",
  2316. "array": [
  2317. 0,
  2318. -46,
  2319. 0,
  2320. 0,
  2321. 0,
  2322. 0,
  2323. 1,
  2324. 1,
  2325. 1,
  2326. 0
  2327. ]
  2328. },
  2329. "_eulerAngles": {
  2330. "__type__": "cc.Vec3",
  2331. "x": 0,
  2332. "y": 0,
  2333. "z": 0
  2334. },
  2335. "_skewX": 0,
  2336. "_skewY": 0,
  2337. "_is3DNode": false,
  2338. "_groupIndex": 0,
  2339. "groupIndex": 0,
  2340. "_id": ""
  2341. },
  2342. {
  2343. "__type__": "cc.Node",
  2344. "_name": "Label",
  2345. "_objFlags": 0,
  2346. "_parent": {
  2347. "__id__": 58
  2348. },
  2349. "_children": [],
  2350. "_active": true,
  2351. "_components": [
  2352. {
  2353. "__id__": 60
  2354. }
  2355. ],
  2356. "_prefab": {
  2357. "__id__": 61
  2358. },
  2359. "_opacity": 255,
  2360. "_color": {
  2361. "__type__": "cc.Color",
  2362. "r": 179,
  2363. "g": 139,
  2364. "b": 76,
  2365. "a": 255
  2366. },
  2367. "_contentSize": {
  2368. "__type__": "cc.Size",
  2369. "width": 144,
  2370. "height": 47.88
  2371. },
  2372. "_anchorPoint": {
  2373. "__type__": "cc.Vec2",
  2374. "x": 0.5,
  2375. "y": 0.5
  2376. },
  2377. "_trs": {
  2378. "__type__": "TypedArray",
  2379. "ctor": "Float64Array",
  2380. "array": [
  2381. 0,
  2382. 46,
  2383. 0,
  2384. 0,
  2385. 0,
  2386. 0,
  2387. 1,
  2388. 1,
  2389. 1,
  2390. 1
  2391. ]
  2392. },
  2393. "_eulerAngles": {
  2394. "__type__": "cc.Vec3",
  2395. "x": 0,
  2396. "y": 0,
  2397. "z": 0
  2398. },
  2399. "_skewX": 0,
  2400. "_skewY": 0,
  2401. "_is3DNode": false,
  2402. "_groupIndex": 0,
  2403. "groupIndex": 0,
  2404. "_id": ""
  2405. },
  2406. {
  2407. "__type__": "cc.Label",
  2408. "_name": "",
  2409. "_objFlags": 0,
  2410. "node": {
  2411. "__id__": 59
  2412. },
  2413. "_enabled": true,
  2414. "_materials": [
  2415. {
  2416. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2417. }
  2418. ],
  2419. "_srcBlendFactor": 770,
  2420. "_dstBlendFactor": 771,
  2421. "_string": "高級管理",
  2422. "_N$string": "高級管理",
  2423. "_fontSize": 36,
  2424. "_lineHeight": 38,
  2425. "_enableWrapText": true,
  2426. "_N$file": {
  2427. "__uuid__": "8232a6ae-f8d5-41ca-a32f-6ce1a50a585f"
  2428. },
  2429. "_isSystemFontUsed": false,
  2430. "_spacingX": 0,
  2431. "_batchAsBitmap": false,
  2432. "_styleFlags": 0,
  2433. "_underlineHeight": 0,
  2434. "_N$horizontalAlign": 1,
  2435. "_N$verticalAlign": 1,
  2436. "_N$fontFamily": "Arial",
  2437. "_N$overflow": 0,
  2438. "_N$cacheMode": 0,
  2439. "_id": ""
  2440. },
  2441. {
  2442. "__type__": "cc.PrefabInfo",
  2443. "root": {
  2444. "__id__": 1
  2445. },
  2446. "asset": {
  2447. "__id__": 0
  2448. },
  2449. "fileId": "13nY2nkChDQqP4pPCA4O4z",
  2450. "sync": false
  2451. },
  2452. {
  2453. "__type__": "cc.Sprite",
  2454. "_name": "",
  2455. "_objFlags": 0,
  2456. "node": {
  2457. "__id__": 58
  2458. },
  2459. "_enabled": true,
  2460. "_materials": [
  2461. {
  2462. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2463. }
  2464. ],
  2465. "_srcBlendFactor": 770,
  2466. "_dstBlendFactor": 771,
  2467. "_spriteFrame": {
  2468. "__uuid__": "917f3d3d-ff48-440f-b779-2509ff16aa2e"
  2469. },
  2470. "_type": 0,
  2471. "_sizeMode": 1,
  2472. "_fillType": 0,
  2473. "_fillCenter": {
  2474. "__type__": "cc.Vec2",
  2475. "x": 0,
  2476. "y": 0
  2477. },
  2478. "_fillStart": 0,
  2479. "_fillRange": 0,
  2480. "_isTrimmedMode": true,
  2481. "_atlas": null,
  2482. "_id": ""
  2483. },
  2484. {
  2485. "__type__": "cc.PrefabInfo",
  2486. "root": {
  2487. "__id__": 1
  2488. },
  2489. "asset": {
  2490. "__id__": 0
  2491. },
  2492. "fileId": "68ZEZ2R41LX5dhnep7Isff",
  2493. "sync": false
  2494. },
  2495. {
  2496. "__type__": "cc.Node",
  2497. "_name": "checkmark",
  2498. "_objFlags": 0,
  2499. "_parent": {
  2500. "__id__": 57
  2501. },
  2502. "_children": [
  2503. {
  2504. "__id__": 65
  2505. }
  2506. ],
  2507. "_active": false,
  2508. "_components": [
  2509. {
  2510. "__id__": 68
  2511. }
  2512. ],
  2513. "_prefab": {
  2514. "__id__": 69
  2515. },
  2516. "_opacity": 255,
  2517. "_color": {
  2518. "__type__": "cc.Color",
  2519. "r": 255,
  2520. "g": 255,
  2521. "b": 255,
  2522. "a": 255
  2523. },
  2524. "_contentSize": {
  2525. "__type__": "cc.Size",
  2526. "width": 259,
  2527. "height": 113
  2528. },
  2529. "_anchorPoint": {
  2530. "__type__": "cc.Vec2",
  2531. "x": 0.5,
  2532. "y": 0.5
  2533. },
  2534. "_trs": {
  2535. "__type__": "TypedArray",
  2536. "ctor": "Float64Array",
  2537. "array": [
  2538. 0,
  2539. 0,
  2540. 0,
  2541. 0,
  2542. 0,
  2543. 0,
  2544. 1,
  2545. 1,
  2546. 1,
  2547. 1
  2548. ]
  2549. },
  2550. "_eulerAngles": {
  2551. "__type__": "cc.Vec3",
  2552. "x": 0,
  2553. "y": 0,
  2554. "z": 0
  2555. },
  2556. "_skewX": 0,
  2557. "_skewY": 0,
  2558. "_is3DNode": false,
  2559. "_groupIndex": 0,
  2560. "groupIndex": 0,
  2561. "_id": ""
  2562. },
  2563. {
  2564. "__type__": "cc.Node",
  2565. "_name": "Label",
  2566. "_objFlags": 0,
  2567. "_parent": {
  2568. "__id__": 64
  2569. },
  2570. "_children": [],
  2571. "_active": true,
  2572. "_components": [
  2573. {
  2574. "__id__": 66
  2575. }
  2576. ],
  2577. "_prefab": {
  2578. "__id__": 67
  2579. },
  2580. "_opacity": 255,
  2581. "_color": {
  2582. "__type__": "cc.Color",
  2583. "r": 166,
  2584. "g": 71,
  2585. "b": 29,
  2586. "a": 255
  2587. },
  2588. "_contentSize": {
  2589. "__type__": "cc.Size",
  2590. "width": 144,
  2591. "height": 47.88
  2592. },
  2593. "_anchorPoint": {
  2594. "__type__": "cc.Vec2",
  2595. "x": 0.5,
  2596. "y": 0.5
  2597. },
  2598. "_trs": {
  2599. "__type__": "TypedArray",
  2600. "ctor": "Float64Array",
  2601. "array": [
  2602. 0,
  2603. 0,
  2604. 0,
  2605. 0,
  2606. 0,
  2607. 0,
  2608. 1,
  2609. 1,
  2610. 1,
  2611. 1
  2612. ]
  2613. },
  2614. "_eulerAngles": {
  2615. "__type__": "cc.Vec3",
  2616. "x": 0,
  2617. "y": 0,
  2618. "z": 0
  2619. },
  2620. "_skewX": 0,
  2621. "_skewY": 0,
  2622. "_is3DNode": false,
  2623. "_groupIndex": 0,
  2624. "groupIndex": 0,
  2625. "_id": ""
  2626. },
  2627. {
  2628. "__type__": "cc.Label",
  2629. "_name": "",
  2630. "_objFlags": 0,
  2631. "node": {
  2632. "__id__": 65
  2633. },
  2634. "_enabled": true,
  2635. "_materials": [
  2636. {
  2637. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2638. }
  2639. ],
  2640. "_srcBlendFactor": 770,
  2641. "_dstBlendFactor": 771,
  2642. "_string": "高級管理",
  2643. "_N$string": "高級管理",
  2644. "_fontSize": 36,
  2645. "_lineHeight": 38,
  2646. "_enableWrapText": true,
  2647. "_N$file": {
  2648. "__uuid__": "8232a6ae-f8d5-41ca-a32f-6ce1a50a585f"
  2649. },
  2650. "_isSystemFontUsed": false,
  2651. "_spacingX": 0,
  2652. "_batchAsBitmap": false,
  2653. "_styleFlags": 1,
  2654. "_underlineHeight": 0,
  2655. "_N$horizontalAlign": 1,
  2656. "_N$verticalAlign": 1,
  2657. "_N$fontFamily": "Arial",
  2658. "_N$overflow": 0,
  2659. "_N$cacheMode": 0,
  2660. "_id": ""
  2661. },
  2662. {
  2663. "__type__": "cc.PrefabInfo",
  2664. "root": {
  2665. "__id__": 1
  2666. },
  2667. "asset": {
  2668. "__id__": 0
  2669. },
  2670. "fileId": "53PhhMSe5Lv5BBtwXPZ/GJ",
  2671. "sync": false
  2672. },
  2673. {
  2674. "__type__": "cc.Sprite",
  2675. "_name": "",
  2676. "_objFlags": 0,
  2677. "node": {
  2678. "__id__": 64
  2679. },
  2680. "_enabled": true,
  2681. "_materials": [
  2682. {
  2683. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2684. }
  2685. ],
  2686. "_srcBlendFactor": 770,
  2687. "_dstBlendFactor": 771,
  2688. "_spriteFrame": {
  2689. "__uuid__": "c1a1ccc2-f6d5-455b-80a8-d2e6bd6806d6"
  2690. },
  2691. "_type": 0,
  2692. "_sizeMode": 2,
  2693. "_fillType": 0,
  2694. "_fillCenter": {
  2695. "__type__": "cc.Vec2",
  2696. "x": 0,
  2697. "y": 0
  2698. },
  2699. "_fillStart": 0,
  2700. "_fillRange": 0,
  2701. "_isTrimmedMode": false,
  2702. "_atlas": null,
  2703. "_id": ""
  2704. },
  2705. {
  2706. "__type__": "cc.PrefabInfo",
  2707. "root": {
  2708. "__id__": 1
  2709. },
  2710. "asset": {
  2711. "__id__": 0
  2712. },
  2713. "fileId": "ee0jhzWkBA0IhAoaiq+ZDY",
  2714. "sync": false
  2715. },
  2716. {
  2717. "__type__": "cc.Toggle",
  2718. "_name": "",
  2719. "_objFlags": 0,
  2720. "node": {
  2721. "__id__": 57
  2722. },
  2723. "_enabled": true,
  2724. "_normalMaterial": null,
  2725. "_grayMaterial": null,
  2726. "duration": 0.1,
  2727. "zoomScale": 1.2,
  2728. "clickEvents": [],
  2729. "_N$interactable": true,
  2730. "_N$enableAutoGrayEffect": false,
  2731. "_N$transition": 0,
  2732. "transition": 0,
  2733. "_N$normalColor": {
  2734. "__type__": "cc.Color",
  2735. "r": 214,
  2736. "g": 214,
  2737. "b": 214,
  2738. "a": 255
  2739. },
  2740. "_N$pressedColor": {
  2741. "__type__": "cc.Color",
  2742. "r": 211,
  2743. "g": 211,
  2744. "b": 211,
  2745. "a": 255
  2746. },
  2747. "pressedColor": {
  2748. "__type__": "cc.Color",
  2749. "r": 211,
  2750. "g": 211,
  2751. "b": 211,
  2752. "a": 255
  2753. },
  2754. "_N$hoverColor": {
  2755. "__type__": "cc.Color",
  2756. "r": 255,
  2757. "g": 255,
  2758. "b": 255,
  2759. "a": 255
  2760. },
  2761. "hoverColor": {
  2762. "__type__": "cc.Color",
  2763. "r": 255,
  2764. "g": 255,
  2765. "b": 255,
  2766. "a": 255
  2767. },
  2768. "_N$disabledColor": {
  2769. "__type__": "cc.Color",
  2770. "r": 124,
  2771. "g": 124,
  2772. "b": 124,
  2773. "a": 255
  2774. },
  2775. "_N$normalSprite": null,
  2776. "_N$pressedSprite": null,
  2777. "pressedSprite": null,
  2778. "_N$hoverSprite": null,
  2779. "hoverSprite": null,
  2780. "_N$disabledSprite": null,
  2781. "_N$target": {
  2782. "__id__": 58
  2783. },
  2784. "_N$isChecked": false,
  2785. "toggleGroup": null,
  2786. "checkMark": {
  2787. "__id__": 68
  2788. },
  2789. "checkEvents": [
  2790. {
  2791. "__id__": 71
  2792. }
  2793. ],
  2794. "_id": ""
  2795. },
  2796. {
  2797. "__type__": "cc.ClickEvent",
  2798. "target": {
  2799. "__id__": 1
  2800. },
  2801. "component": "",
  2802. "_componentId": "3efb7TR+3VB5oYxlOA7dbXx",
  2803. "handler": "onClickToggle",
  2804. "customEventData": ""
  2805. },
  2806. {
  2807. "__type__": "cc.PrefabInfo",
  2808. "root": {
  2809. "__id__": 1
  2810. },
  2811. "asset": {
  2812. "__id__": 0
  2813. },
  2814. "fileId": "acQTrkSK1KK4iYad4dja7o",
  2815. "sync": false
  2816. },
  2817. {
  2818. "__type__": "cc.Layout",
  2819. "_name": "",
  2820. "_objFlags": 0,
  2821. "node": {
  2822. "__id__": 24
  2823. },
  2824. "_enabled": true,
  2825. "_layoutSize": {
  2826. "__type__": "cc.Size",
  2827. "width": 259,
  2828. "height": 337
  2829. },
  2830. "_resize": 1,
  2831. "_N$layoutType": 2,
  2832. "_N$cellSize": {
  2833. "__type__": "cc.Size",
  2834. "width": 40,
  2835. "height": 40
  2836. },
  2837. "_N$startAxis": 0,
  2838. "_N$paddingLeft": 0,
  2839. "_N$paddingRight": 0,
  2840. "_N$paddingTop": 0,
  2841. "_N$paddingBottom": 0,
  2842. "_N$spacingX": 0,
  2843. "_N$spacingY": 0,
  2844. "_N$verticalDirection": 1,
  2845. "_N$horizontalDirection": 0,
  2846. "_N$affectedByScale": false,
  2847. "_id": ""
  2848. },
  2849. {
  2850. "__type__": "cc.ToggleContainer",
  2851. "_name": "",
  2852. "_objFlags": 0,
  2853. "node": {
  2854. "__id__": 24
  2855. },
  2856. "_enabled": true,
  2857. "allowSwitchOff": false,
  2858. "checkEvents": [],
  2859. "_id": ""
  2860. },
  2861. {
  2862. "__type__": "cc.PrefabInfo",
  2863. "root": {
  2864. "__id__": 1
  2865. },
  2866. "asset": {
  2867. "__id__": 0
  2868. },
  2869. "fileId": "58w/+JfyZE2IEKR8pHnZ73",
  2870. "sync": false
  2871. },
  2872. {
  2873. "__type__": "cc.Node",
  2874. "_name": "LbAllScore",
  2875. "_objFlags": 0,
  2876. "_parent": {
  2877. "__id__": 1
  2878. },
  2879. "_children": [],
  2880. "_active": false,
  2881. "_components": [
  2882. {
  2883. "__id__": 77
  2884. }
  2885. ],
  2886. "_prefab": {
  2887. "__id__": 78
  2888. },
  2889. "_opacity": 255,
  2890. "_color": {
  2891. "__type__": "cc.Color",
  2892. "r": 225,
  2893. "g": 185,
  2894. "b": 147,
  2895. "a": 255
  2896. },
  2897. "_contentSize": {
  2898. "__type__": "cc.Size",
  2899. "width": 262.25,
  2900. "height": 50.4
  2901. },
  2902. "_anchorPoint": {
  2903. "__type__": "cc.Vec2",
  2904. "x": 0,
  2905. "y": 0.5
  2906. },
  2907. "_trs": {
  2908. "__type__": "TypedArray",
  2909. "ctor": "Float64Array",
  2910. "array": [
  2911. -527,
  2912. 491,
  2913. 0,
  2914. 0,
  2915. 0,
  2916. 0,
  2917. 1,
  2918. 1,
  2919. 1,
  2920. 1
  2921. ]
  2922. },
  2923. "_eulerAngles": {
  2924. "__type__": "cc.Vec3",
  2925. "x": 0,
  2926. "y": 0,
  2927. "z": 0
  2928. },
  2929. "_skewX": 0,
  2930. "_skewY": 0,
  2931. "_is3DNode": false,
  2932. "_groupIndex": 0,
  2933. "groupIndex": 0,
  2934. "_id": ""
  2935. },
  2936. {
  2937. "__type__": "cc.Label",
  2938. "_name": "",
  2939. "_objFlags": 0,
  2940. "node": {
  2941. "__id__": 76
  2942. },
  2943. "_enabled": true,
  2944. "_materials": [
  2945. {
  2946. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2947. }
  2948. ],
  2949. "_srcBlendFactor": 770,
  2950. "_dstBlendFactor": 771,
  2951. "_string": "玩家總積分:0",
  2952. "_N$string": "玩家總積分:0",
  2953. "_fontSize": 40,
  2954. "_lineHeight": 40,
  2955. "_enableWrapText": true,
  2956. "_N$file": null,
  2957. "_isSystemFontUsed": false,
  2958. "_spacingX": 0,
  2959. "_batchAsBitmap": false,
  2960. "_styleFlags": 0,
  2961. "_underlineHeight": 0,
  2962. "_N$horizontalAlign": 1,
  2963. "_N$verticalAlign": 1,
  2964. "_N$fontFamily": "Arial",
  2965. "_N$overflow": 0,
  2966. "_N$cacheMode": 0,
  2967. "_id": ""
  2968. },
  2969. {
  2970. "__type__": "cc.PrefabInfo",
  2971. "root": {
  2972. "__id__": 1
  2973. },
  2974. "asset": {
  2975. "__id__": 0
  2976. },
  2977. "fileId": "48TBI2kvhLorcvr/23yDKC",
  2978. "sync": false
  2979. },
  2980. {
  2981. "__type__": "cc.Node",
  2982. "_name": "Label",
  2983. "_objFlags": 0,
  2984. "_parent": {
  2985. "__id__": 1
  2986. },
  2987. "_children": [],
  2988. "_active": false,
  2989. "_components": [
  2990. {
  2991. "__id__": 80
  2992. }
  2993. ],
  2994. "_prefab": {
  2995. "__id__": 81
  2996. },
  2997. "_opacity": 255,
  2998. "_color": {
  2999. "__type__": "cc.Color",
  3000. "r": 189,
  3001. "g": 70,
  3002. "b": 52,
  3003. "a": 255
  3004. },
  3005. "_contentSize": {
  3006. "__type__": "cc.Size",
  3007. "width": 120,
  3008. "height": 50.4
  3009. },
  3010. "_anchorPoint": {
  3011. "__type__": "cc.Vec2",
  3012. "x": 0.5,
  3013. "y": 0.5
  3014. },
  3015. "_trs": {
  3016. "__type__": "TypedArray",
  3017. "ctor": "Float64Array",
  3018. "array": [
  3019. -464,
  3020. -254,
  3021. 0,
  3022. 0,
  3023. 0,
  3024. 0,
  3025. 1,
  3026. 1,
  3027. 1,
  3028. 1
  3029. ]
  3030. },
  3031. "_eulerAngles": {
  3032. "__type__": "cc.Vec3",
  3033. "x": 0,
  3034. "y": 0,
  3035. "z": 0
  3036. },
  3037. "_skewX": 0,
  3038. "_skewY": 0,
  3039. "_is3DNode": false,
  3040. "_groupIndex": 0,
  3041. "groupIndex": 0,
  3042. "_id": ""
  3043. },
  3044. {
  3045. "__type__": "cc.Label",
  3046. "_name": "",
  3047. "_objFlags": 0,
  3048. "node": {
  3049. "__id__": 79
  3050. },
  3051. "_enabled": true,
  3052. "_materials": [
  3053. {
  3054. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3055. }
  3056. ],
  3057. "_srcBlendFactor": 770,
  3058. "_dstBlendFactor": 771,
  3059. "_string": "蒐索:",
  3060. "_N$string": "蒐索:",
  3061. "_fontSize": 40,
  3062. "_lineHeight": 40,
  3063. "_enableWrapText": true,
  3064. "_N$file": null,
  3065. "_isSystemFontUsed": false,
  3066. "_spacingX": 0,
  3067. "_batchAsBitmap": false,
  3068. "_styleFlags": 0,
  3069. "_underlineHeight": 0,
  3070. "_N$horizontalAlign": 1,
  3071. "_N$verticalAlign": 1,
  3072. "_N$fontFamily": "Arial",
  3073. "_N$overflow": 0,
  3074. "_N$cacheMode": 0,
  3075. "_id": ""
  3076. },
  3077. {
  3078. "__type__": "cc.PrefabInfo",
  3079. "root": {
  3080. "__id__": 1
  3081. },
  3082. "asset": {
  3083. "__id__": 0
  3084. },
  3085. "fileId": "9cAJXgTrRKF5YdFpPTNqIV",
  3086. "sync": false
  3087. },
  3088. {
  3089. "__type__": "cc.Node",
  3090. "_name": "EditBox",
  3091. "_objFlags": 0,
  3092. "_parent": {
  3093. "__id__": 1
  3094. },
  3095. "_children": [
  3096. {
  3097. "__id__": 83
  3098. },
  3099. {
  3100. "__id__": 86
  3101. },
  3102. {
  3103. "__id__": 90
  3104. }
  3105. ],
  3106. "_active": false,
  3107. "_components": [
  3108. {
  3109. "__id__": 94
  3110. }
  3111. ],
  3112. "_prefab": {
  3113. "__id__": 95
  3114. },
  3115. "_opacity": 255,
  3116. "_color": {
  3117. "__type__": "cc.Color",
  3118. "r": 255,
  3119. "g": 255,
  3120. "b": 255,
  3121. "a": 255
  3122. },
  3123. "_contentSize": {
  3124. "__type__": "cc.Size",
  3125. "width": 700,
  3126. "height": 56
  3127. },
  3128. "_anchorPoint": {
  3129. "__type__": "cc.Vec2",
  3130. "x": 0.5,
  3131. "y": 0.5
  3132. },
  3133. "_trs": {
  3134. "__type__": "TypedArray",
  3135. "ctor": "Float64Array",
  3136. "array": [
  3137. -53,
  3138. -254.1,
  3139. 0,
  3140. 0,
  3141. 0,
  3142. 0,
  3143. 1,
  3144. 1,
  3145. 1,
  3146. 1
  3147. ]
  3148. },
  3149. "_eulerAngles": {
  3150. "__type__": "cc.Vec3",
  3151. "x": 0,
  3152. "y": 0,
  3153. "z": 0
  3154. },
  3155. "_skewX": 0,
  3156. "_skewY": 0,
  3157. "_is3DNode": false,
  3158. "_groupIndex": 0,
  3159. "groupIndex": 0,
  3160. "_id": ""
  3161. },
  3162. {
  3163. "__type__": "cc.Node",
  3164. "_name": "BACKGROUND_SPRITE",
  3165. "_objFlags": 0,
  3166. "_parent": {
  3167. "__id__": 82
  3168. },
  3169. "_children": [],
  3170. "_active": true,
  3171. "_components": [
  3172. {
  3173. "__id__": 84
  3174. }
  3175. ],
  3176. "_prefab": {
  3177. "__id__": 85
  3178. },
  3179. "_opacity": 255,
  3180. "_color": {
  3181. "__type__": "cc.Color",
  3182. "r": 255,
  3183. "g": 255,
  3184. "b": 255,
  3185. "a": 255
  3186. },
  3187. "_contentSize": {
  3188. "__type__": "cc.Size",
  3189. "width": 700,
  3190. "height": 56
  3191. },
  3192. "_anchorPoint": {
  3193. "__type__": "cc.Vec2",
  3194. "x": 0.5,
  3195. "y": 0.5
  3196. },
  3197. "_trs": {
  3198. "__type__": "TypedArray",
  3199. "ctor": "Float64Array",
  3200. "array": [
  3201. 0,
  3202. 0,
  3203. 0,
  3204. 0,
  3205. 0,
  3206. 0,
  3207. 1,
  3208. 1,
  3209. 1,
  3210. 1
  3211. ]
  3212. },
  3213. "_eulerAngles": {
  3214. "__type__": "cc.Vec3",
  3215. "x": 0,
  3216. "y": 0,
  3217. "z": 0
  3218. },
  3219. "_skewX": 0,
  3220. "_skewY": 0,
  3221. "_is3DNode": false,
  3222. "_groupIndex": 0,
  3223. "groupIndex": 0,
  3224. "_id": ""
  3225. },
  3226. {
  3227. "__type__": "cc.Sprite",
  3228. "_name": "",
  3229. "_objFlags": 0,
  3230. "node": {
  3231. "__id__": 83
  3232. },
  3233. "_enabled": true,
  3234. "_materials": [
  3235. {
  3236. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3237. }
  3238. ],
  3239. "_srcBlendFactor": 770,
  3240. "_dstBlendFactor": 771,
  3241. "_spriteFrame": null,
  3242. "_type": 1,
  3243. "_sizeMode": 0,
  3244. "_fillType": 0,
  3245. "_fillCenter": {
  3246. "__type__": "cc.Vec2",
  3247. "x": 0,
  3248. "y": 0
  3249. },
  3250. "_fillStart": 0,
  3251. "_fillRange": 0,
  3252. "_isTrimmedMode": true,
  3253. "_atlas": null,
  3254. "_id": ""
  3255. },
  3256. {
  3257. "__type__": "cc.PrefabInfo",
  3258. "root": {
  3259. "__id__": 1
  3260. },
  3261. "asset": {
  3262. "__id__": 0
  3263. },
  3264. "fileId": "79rynIkG1EgLuKVfJSnnaQ",
  3265. "sync": false
  3266. },
  3267. {
  3268. "__type__": "cc.Node",
  3269. "_name": "TEXT_LABEL",
  3270. "_objFlags": 0,
  3271. "_parent": {
  3272. "__id__": 82
  3273. },
  3274. "_children": [],
  3275. "_active": false,
  3276. "_components": [
  3277. {
  3278. "__id__": 87
  3279. },
  3280. {
  3281. "__id__": 88
  3282. }
  3283. ],
  3284. "_prefab": {
  3285. "__id__": 89
  3286. },
  3287. "_opacity": 255,
  3288. "_color": {
  3289. "__type__": "cc.Color",
  3290. "r": 189,
  3291. "g": 70,
  3292. "b": 52,
  3293. "a": 255
  3294. },
  3295. "_contentSize": {
  3296. "__type__": "cc.Size",
  3297. "width": 0,
  3298. "height": 50.4
  3299. },
  3300. "_anchorPoint": {
  3301. "__type__": "cc.Vec2",
  3302. "x": 0,
  3303. "y": 1
  3304. },
  3305. "_trs": {
  3306. "__type__": "TypedArray",
  3307. "ctor": "Float64Array",
  3308. "array": [
  3309. 0,
  3310. 0,
  3311. 0,
  3312. 0,
  3313. 0,
  3314. 0,
  3315. 1,
  3316. 1,
  3317. 1,
  3318. 1
  3319. ]
  3320. },
  3321. "_eulerAngles": {
  3322. "__type__": "cc.Vec3",
  3323. "x": 0,
  3324. "y": 0,
  3325. "z": 0
  3326. },
  3327. "_skewX": 0,
  3328. "_skewY": 0,
  3329. "_is3DNode": false,
  3330. "_groupIndex": 0,
  3331. "groupIndex": 0,
  3332. "_id": ""
  3333. },
  3334. {
  3335. "__type__": "cc.Label",
  3336. "_name": "",
  3337. "_objFlags": 0,
  3338. "node": {
  3339. "__id__": 86
  3340. },
  3341. "_enabled": true,
  3342. "_materials": [
  3343. {
  3344. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3345. }
  3346. ],
  3347. "_srcBlendFactor": 770,
  3348. "_dstBlendFactor": 771,
  3349. "_string": "",
  3350. "_N$string": "",
  3351. "_fontSize": 40,
  3352. "_lineHeight": 56,
  3353. "_enableWrapText": false,
  3354. "_N$file": null,
  3355. "_isSystemFontUsed": true,
  3356. "_spacingX": 0,
  3357. "_batchAsBitmap": false,
  3358. "_styleFlags": 0,
  3359. "_underlineHeight": 0,
  3360. "_N$horizontalAlign": 0,
  3361. "_N$verticalAlign": 1,
  3362. "_N$fontFamily": "Arial",
  3363. "_N$overflow": 1,
  3364. "_N$cacheMode": 0,
  3365. "_id": ""
  3366. },
  3367. {
  3368. "__type__": "cc.Widget",
  3369. "_name": "",
  3370. "_objFlags": 0,
  3371. "node": {
  3372. "__id__": 86
  3373. },
  3374. "_enabled": true,
  3375. "alignMode": 1,
  3376. "_target": null,
  3377. "_alignFlags": 45,
  3378. "_left": 0,
  3379. "_right": 0,
  3380. "_top": 0,
  3381. "_bottom": 0,
  3382. "_verticalCenter": 0,
  3383. "_horizontalCenter": 0,
  3384. "_isAbsLeft": true,
  3385. "_isAbsRight": true,
  3386. "_isAbsTop": true,
  3387. "_isAbsBottom": true,
  3388. "_isAbsHorizontalCenter": true,
  3389. "_isAbsVerticalCenter": true,
  3390. "_originalWidth": 0,
  3391. "_originalHeight": 50.4,
  3392. "_id": ""
  3393. },
  3394. {
  3395. "__type__": "cc.PrefabInfo",
  3396. "root": {
  3397. "__id__": 1
  3398. },
  3399. "asset": {
  3400. "__id__": 0
  3401. },
  3402. "fileId": "6eIjvEYJlGdpM4wgCV+RMV",
  3403. "sync": false
  3404. },
  3405. {
  3406. "__type__": "cc.Node",
  3407. "_name": "PLACEHOLDER_LABEL",
  3408. "_objFlags": 0,
  3409. "_parent": {
  3410. "__id__": 82
  3411. },
  3412. "_children": [],
  3413. "_active": true,
  3414. "_components": [
  3415. {
  3416. "__id__": 91
  3417. },
  3418. {
  3419. "__id__": 92
  3420. }
  3421. ],
  3422. "_prefab": {
  3423. "__id__": 93
  3424. },
  3425. "_opacity": 255,
  3426. "_color": {
  3427. "__type__": "cc.Color",
  3428. "r": 201,
  3429. "g": 147,
  3430. "b": 117,
  3431. "a": 255
  3432. },
  3433. "_contentSize": {
  3434. "__type__": "cc.Size",
  3435. "width": 700,
  3436. "height": 56
  3437. },
  3438. "_anchorPoint": {
  3439. "__type__": "cc.Vec2",
  3440. "x": 0,
  3441. "y": 1
  3442. },
  3443. "_trs": {
  3444. "__type__": "TypedArray",
  3445. "ctor": "Float64Array",
  3446. "array": [
  3447. -350,
  3448. 28,
  3449. 0,
  3450. 0,
  3451. 0,
  3452. 0,
  3453. 1,
  3454. 1,
  3455. 1,
  3456. 1
  3457. ]
  3458. },
  3459. "_eulerAngles": {
  3460. "__type__": "cc.Vec3",
  3461. "x": 0,
  3462. "y": 0,
  3463. "z": 0
  3464. },
  3465. "_skewX": 0,
  3466. "_skewY": 0,
  3467. "_is3DNode": false,
  3468. "_groupIndex": 0,
  3469. "groupIndex": 0,
  3470. "_id": ""
  3471. },
  3472. {
  3473. "__type__": "cc.Label",
  3474. "_name": "",
  3475. "_objFlags": 0,
  3476. "node": {
  3477. "__id__": 90
  3478. },
  3479. "_enabled": true,
  3480. "_materials": [
  3481. {
  3482. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3483. }
  3484. ],
  3485. "_srcBlendFactor": 770,
  3486. "_dstBlendFactor": 771,
  3487. "_string": "請輸入玩家ID",
  3488. "_N$string": "請輸入玩家ID",
  3489. "_fontSize": 40,
  3490. "_lineHeight": 40,
  3491. "_enableWrapText": false,
  3492. "_N$file": null,
  3493. "_isSystemFontUsed": true,
  3494. "_spacingX": 0,
  3495. "_batchAsBitmap": false,
  3496. "_styleFlags": 0,
  3497. "_underlineHeight": 0,
  3498. "_N$horizontalAlign": 0,
  3499. "_N$verticalAlign": 1,
  3500. "_N$fontFamily": "Arial",
  3501. "_N$overflow": 1,
  3502. "_N$cacheMode": 0,
  3503. "_id": ""
  3504. },
  3505. {
  3506. "__type__": "cc.Widget",
  3507. "_name": "",
  3508. "_objFlags": 0,
  3509. "node": {
  3510. "__id__": 90
  3511. },
  3512. "_enabled": true,
  3513. "alignMode": 1,
  3514. "_target": null,
  3515. "_alignFlags": 45,
  3516. "_left": 0,
  3517. "_right": 0,
  3518. "_top": 0,
  3519. "_bottom": 0,
  3520. "_verticalCenter": 0,
  3521. "_horizontalCenter": 0,
  3522. "_isAbsLeft": true,
  3523. "_isAbsRight": true,
  3524. "_isAbsTop": true,
  3525. "_isAbsBottom": true,
  3526. "_isAbsHorizontalCenter": true,
  3527. "_isAbsVerticalCenter": true,
  3528. "_originalWidth": 0,
  3529. "_originalHeight": 50.4,
  3530. "_id": ""
  3531. },
  3532. {
  3533. "__type__": "cc.PrefabInfo",
  3534. "root": {
  3535. "__id__": 1
  3536. },
  3537. "asset": {
  3538. "__id__": 0
  3539. },
  3540. "fileId": "95uDerG9hA8Z61i6itZYDa",
  3541. "sync": false
  3542. },
  3543. {
  3544. "__type__": "cc.EditBox",
  3545. "_name": "",
  3546. "_objFlags": 0,
  3547. "node": {
  3548. "__id__": 82
  3549. },
  3550. "_enabled": true,
  3551. "_string": "",
  3552. "returnType": 0,
  3553. "maxLength": 8,
  3554. "_tabIndex": 0,
  3555. "editingDidBegan": [],
  3556. "textChanged": [],
  3557. "editingDidEnded": [],
  3558. "editingReturn": [],
  3559. "_N$textLabel": {
  3560. "__id__": 87
  3561. },
  3562. "_N$placeholderLabel": {
  3563. "__id__": 91
  3564. },
  3565. "_N$background": {
  3566. "__id__": 84
  3567. },
  3568. "_N$inputFlag": 5,
  3569. "_N$inputMode": 6,
  3570. "_N$stayOnTop": false,
  3571. "_id": ""
  3572. },
  3573. {
  3574. "__type__": "cc.PrefabInfo",
  3575. "root": {
  3576. "__id__": 1
  3577. },
  3578. "asset": {
  3579. "__id__": 0
  3580. },
  3581. "fileId": "de8AITfj5AzJjI+nzGe615",
  3582. "sync": false
  3583. },
  3584. {
  3585. "__type__": "cc.Node",
  3586. "_name": "BtSel",
  3587. "_objFlags": 0,
  3588. "_parent": {
  3589. "__id__": 1
  3590. },
  3591. "_children": [],
  3592. "_active": true,
  3593. "_components": [
  3594. {
  3595. "__id__": 97
  3596. },
  3597. {
  3598. "__id__": 98
  3599. }
  3600. ],
  3601. "_prefab": {
  3602. "__id__": 100
  3603. },
  3604. "_opacity": 255,
  3605. "_color": {
  3606. "__type__": "cc.Color",
  3607. "r": 255,
  3608. "g": 255,
  3609. "b": 255,
  3610. "a": 255
  3611. },
  3612. "_contentSize": {
  3613. "__type__": "cc.Size",
  3614. "width": 233,
  3615. "height": 83
  3616. },
  3617. "_anchorPoint": {
  3618. "__type__": "cc.Vec2",
  3619. "x": 0.5,
  3620. "y": 0.5
  3621. },
  3622. "_trs": {
  3623. "__type__": "TypedArray",
  3624. "ctor": "Float64Array",
  3625. "array": [
  3626. 414,
  3627. -256.2,
  3628. 0,
  3629. 0,
  3630. 0,
  3631. 0,
  3632. 1,
  3633. 1,
  3634. 1,
  3635. 1
  3636. ]
  3637. },
  3638. "_eulerAngles": {
  3639. "__type__": "cc.Vec3",
  3640. "x": 0,
  3641. "y": 0,
  3642. "z": 0
  3643. },
  3644. "_skewX": 0,
  3645. "_skewY": 0,
  3646. "_is3DNode": false,
  3647. "_groupIndex": 0,
  3648. "groupIndex": 0,
  3649. "_id": ""
  3650. },
  3651. {
  3652. "__type__": "cc.Sprite",
  3653. "_name": "",
  3654. "_objFlags": 0,
  3655. "node": {
  3656. "__id__": 96
  3657. },
  3658. "_enabled": true,
  3659. "_materials": [
  3660. {
  3661. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3662. }
  3663. ],
  3664. "_srcBlendFactor": 770,
  3665. "_dstBlendFactor": 771,
  3666. "_spriteFrame": null,
  3667. "_type": 0,
  3668. "_sizeMode": 1,
  3669. "_fillType": 0,
  3670. "_fillCenter": {
  3671. "__type__": "cc.Vec2",
  3672. "x": 0,
  3673. "y": 0
  3674. },
  3675. "_fillStart": 0,
  3676. "_fillRange": 0,
  3677. "_isTrimmedMode": true,
  3678. "_atlas": null,
  3679. "_id": ""
  3680. },
  3681. {
  3682. "__type__": "cc.Button",
  3683. "_name": "",
  3684. "_objFlags": 0,
  3685. "node": {
  3686. "__id__": 96
  3687. },
  3688. "_enabled": true,
  3689. "_normalMaterial": null,
  3690. "_grayMaterial": null,
  3691. "duration": 0.1,
  3692. "zoomScale": 1.2,
  3693. "clickEvents": [
  3694. {
  3695. "__id__": 99
  3696. }
  3697. ],
  3698. "_N$interactable": true,
  3699. "_N$enableAutoGrayEffect": false,
  3700. "_N$transition": 0,
  3701. "transition": 0,
  3702. "_N$normalColor": {
  3703. "__type__": "cc.Color",
  3704. "r": 214,
  3705. "g": 214,
  3706. "b": 214,
  3707. "a": 255
  3708. },
  3709. "_N$pressedColor": {
  3710. "__type__": "cc.Color",
  3711. "r": 211,
  3712. "g": 211,
  3713. "b": 211,
  3714. "a": 255
  3715. },
  3716. "pressedColor": {
  3717. "__type__": "cc.Color",
  3718. "r": 211,
  3719. "g": 211,
  3720. "b": 211,
  3721. "a": 255
  3722. },
  3723. "_N$hoverColor": {
  3724. "__type__": "cc.Color",
  3725. "r": 255,
  3726. "g": 255,
  3727. "b": 255,
  3728. "a": 255
  3729. },
  3730. "hoverColor": {
  3731. "__type__": "cc.Color",
  3732. "r": 255,
  3733. "g": 255,
  3734. "b": 255,
  3735. "a": 255
  3736. },
  3737. "_N$disabledColor": {
  3738. "__type__": "cc.Color",
  3739. "r": 124,
  3740. "g": 124,
  3741. "b": 124,
  3742. "a": 255
  3743. },
  3744. "_N$normalSprite": null,
  3745. "_N$pressedSprite": null,
  3746. "pressedSprite": null,
  3747. "_N$hoverSprite": null,
  3748. "hoverSprite": null,
  3749. "_N$disabledSprite": null,
  3750. "_N$target": {
  3751. "__id__": 96
  3752. },
  3753. "_id": ""
  3754. },
  3755. {
  3756. "__type__": "cc.ClickEvent",
  3757. "target": {
  3758. "__id__": 1
  3759. },
  3760. "component": "",
  3761. "_componentId": "3efb7TR+3VB5oYxlOA7dbXx",
  3762. "handler": "OnShowView",
  3763. "customEventData": ""
  3764. },
  3765. {
  3766. "__type__": "cc.PrefabInfo",
  3767. "root": {
  3768. "__id__": 1
  3769. },
  3770. "asset": {
  3771. "__id__": 0
  3772. },
  3773. "fileId": "ec49MGwi9OWKtKxGw4slC7",
  3774. "sync": false
  3775. },
  3776. {
  3777. "__type__": "cc.Node",
  3778. "_name": "0",
  3779. "_objFlags": 0,
  3780. "_parent": {
  3781. "__id__": 1
  3782. },
  3783. "_children": [
  3784. {
  3785. "__id__": 102
  3786. },
  3787. {
  3788. "__id__": 117
  3789. },
  3790. {
  3791. "__id__": 177
  3792. },
  3793. {
  3794. "__id__": 192
  3795. },
  3796. {
  3797. "__id__": 200
  3798. }
  3799. ],
  3800. "_active": true,
  3801. "_components": [
  3802. {
  3803. "__id__": 208
  3804. }
  3805. ],
  3806. "_prefab": {
  3807. "__id__": 209
  3808. },
  3809. "_opacity": 255,
  3810. "_color": {
  3811. "__type__": "cc.Color",
  3812. "r": 255,
  3813. "g": 255,
  3814. "b": 255,
  3815. "a": 255
  3816. },
  3817. "_contentSize": {
  3818. "__type__": "cc.Size",
  3819. "width": 1050,
  3820. "height": 550
  3821. },
  3822. "_anchorPoint": {
  3823. "__type__": "cc.Vec2",
  3824. "x": 0.5,
  3825. "y": 0.5
  3826. },
  3827. "_trs": {
  3828. "__type__": "TypedArray",
  3829. "ctor": "Float64Array",
  3830. "array": [
  3831. 127,
  3832. 8,
  3833. 0,
  3834. 0,
  3835. 0,
  3836. 0,
  3837. 1,
  3838. 1,
  3839. 1,
  3840. 1
  3841. ]
  3842. },
  3843. "_eulerAngles": {
  3844. "__type__": "cc.Vec3",
  3845. "x": 0,
  3846. "y": 0,
  3847. "z": 0
  3848. },
  3849. "_skewX": 0,
  3850. "_skewY": 0,
  3851. "_is3DNode": false,
  3852. "_groupIndex": 0,
  3853. "groupIndex": 0,
  3854. "_id": ""
  3855. },
  3856. {
  3857. "__type__": "cc.Node",
  3858. "_name": "tipBG",
  3859. "_objFlags": 0,
  3860. "_parent": {
  3861. "__id__": 101
  3862. },
  3863. "_children": [
  3864. {
  3865. "__id__": 103
  3866. },
  3867. {
  3868. "__id__": 106
  3869. },
  3870. {
  3871. "__id__": 109
  3872. },
  3873. {
  3874. "__id__": 112
  3875. }
  3876. ],
  3877. "_active": true,
  3878. "_components": [
  3879. {
  3880. "__id__": 115
  3881. }
  3882. ],
  3883. "_prefab": {
  3884. "__id__": 116
  3885. },
  3886. "_opacity": 255,
  3887. "_color": {
  3888. "__type__": "cc.Color",
  3889. "r": 255,
  3890. "g": 255,
  3891. "b": 255,
  3892. "a": 255
  3893. },
  3894. "_contentSize": {
  3895. "__type__": "cc.Size",
  3896. "width": 1043,
  3897. "height": 41
  3898. },
  3899. "_anchorPoint": {
  3900. "__type__": "cc.Vec2",
  3901. "x": 0.5,
  3902. "y": 0.5
  3903. },
  3904. "_trs": {
  3905. "__type__": "TypedArray",
  3906. "ctor": "Float64Array",
  3907. "array": [
  3908. 0,
  3909. 249,
  3910. 0,
  3911. 0,
  3912. 0,
  3913. 0,
  3914. 1,
  3915. 1,
  3916. 1,
  3917. 1
  3918. ]
  3919. },
  3920. "_eulerAngles": {
  3921. "__type__": "cc.Vec3",
  3922. "x": 0,
  3923. "y": 0,
  3924. "z": 0
  3925. },
  3926. "_skewX": 0,
  3927. "_skewY": 0,
  3928. "_is3DNode": false,
  3929. "_groupIndex": 0,
  3930. "groupIndex": 0,
  3931. "_id": ""
  3932. },
  3933. {
  3934. "__type__": "cc.Node",
  3935. "_name": "t1",
  3936. "_objFlags": 0,
  3937. "_parent": {
  3938. "__id__": 102
  3939. },
  3940. "_children": [],
  3941. "_active": true,
  3942. "_components": [
  3943. {
  3944. "__id__": 104
  3945. }
  3946. ],
  3947. "_prefab": {
  3948. "__id__": 105
  3949. },
  3950. "_opacity": 255,
  3951. "_color": {
  3952. "__type__": "cc.Color",
  3953. "r": 201,
  3954. "g": 73,
  3955. "b": 36,
  3956. "a": 255
  3957. },
  3958. "_contentSize": {
  3959. "__type__": "cc.Size",
  3960. "width": 96,
  3961. "height": 32.76
  3962. },
  3963. "_anchorPoint": {
  3964. "__type__": "cc.Vec2",
  3965. "x": 0.5,
  3966. "y": 0.5
  3967. },
  3968. "_trs": {
  3969. "__type__": "TypedArray",
  3970. "ctor": "Float64Array",
  3971. "array": [
  3972. -347,
  3973. 0,
  3974. 0,
  3975. 0,
  3976. 0,
  3977. 0,
  3978. 1,
  3979. 1,
  3980. 1,
  3981. 1
  3982. ]
  3983. },
  3984. "_eulerAngles": {
  3985. "__type__": "cc.Vec3",
  3986. "x": 0,
  3987. "y": 0,
  3988. "z": 0
  3989. },
  3990. "_skewX": 0,
  3991. "_skewY": 0,
  3992. "_is3DNode": false,
  3993. "_groupIndex": 0,
  3994. "groupIndex": 0,
  3995. "_id": ""
  3996. },
  3997. {
  3998. "__type__": "cc.Label",
  3999. "_name": "",
  4000. "_objFlags": 0,
  4001. "node": {
  4002. "__id__": 103
  4003. },
  4004. "_enabled": true,
  4005. "_materials": [
  4006. {
  4007. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4008. }
  4009. ],
  4010. "_srcBlendFactor": 770,
  4011. "_dstBlendFactor": 771,
  4012. "_string": "玩家資訊",
  4013. "_N$string": "玩家資訊",
  4014. "_fontSize": 24,
  4015. "_lineHeight": 26,
  4016. "_enableWrapText": true,
  4017. "_N$file": {
  4018. "__uuid__": "8232a6ae-f8d5-41ca-a32f-6ce1a50a585f"
  4019. },
  4020. "_isSystemFontUsed": false,
  4021. "_spacingX": 0,
  4022. "_batchAsBitmap": false,
  4023. "_styleFlags": 0,
  4024. "_underlineHeight": 0,
  4025. "_N$horizontalAlign": 1,
  4026. "_N$verticalAlign": 1,
  4027. "_N$fontFamily": "Arial",
  4028. "_N$overflow": 0,
  4029. "_N$cacheMode": 0,
  4030. "_id": ""
  4031. },
  4032. {
  4033. "__type__": "cc.PrefabInfo",
  4034. "root": {
  4035. "__id__": 1
  4036. },
  4037. "asset": {
  4038. "__id__": 0
  4039. },
  4040. "fileId": "e4b33KCBdA+LyNpr9yvrzo",
  4041. "sync": false
  4042. },
  4043. {
  4044. "__type__": "cc.Node",
  4045. "_name": "t2",
  4046. "_objFlags": 0,
  4047. "_parent": {
  4048. "__id__": 102
  4049. },
  4050. "_children": [],
  4051. "_active": true,
  4052. "_components": [
  4053. {
  4054. "__id__": 107
  4055. }
  4056. ],
  4057. "_prefab": {
  4058. "__id__": 108
  4059. },
  4060. "_opacity": 255,
  4061. "_color": {
  4062. "__type__": "cc.Color",
  4063. "r": 201,
  4064. "g": 73,
  4065. "b": 36,
  4066. "a": 255
  4067. },
  4068. "_contentSize": {
  4069. "__type__": "cc.Size",
  4070. "width": 96,
  4071. "height": 32.76
  4072. },
  4073. "_anchorPoint": {
  4074. "__type__": "cc.Vec2",
  4075. "x": 0.5,
  4076. "y": 0.5
  4077. },
  4078. "_trs": {
  4079. "__type__": "TypedArray",
  4080. "ctor": "Float64Array",
  4081. "array": [
  4082. -107,
  4083. 0,
  4084. 0,
  4085. 0,
  4086. 0,
  4087. 0,
  4088. 1,
  4089. 1,
  4090. 1,
  4091. 1
  4092. ]
  4093. },
  4094. "_eulerAngles": {
  4095. "__type__": "cc.Vec3",
  4096. "x": 0,
  4097. "y": 0,
  4098. "z": 0
  4099. },
  4100. "_skewX": 0,
  4101. "_skewY": 0,
  4102. "_is3DNode": false,
  4103. "_groupIndex": 0,
  4104. "groupIndex": 0,
  4105. "_id": ""
  4106. },
  4107. {
  4108. "__type__": "cc.Label",
  4109. "_name": "",
  4110. "_objFlags": 0,
  4111. "node": {
  4112. "__id__": 106
  4113. },
  4114. "_enabled": true,
  4115. "_materials": [
  4116. {
  4117. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4118. }
  4119. ],
  4120. "_srcBlendFactor": 770,
  4121. "_dstBlendFactor": 771,
  4122. "_string": "邀請人ID",
  4123. "_N$string": "邀請人ID",
  4124. "_fontSize": 24,
  4125. "_lineHeight": 26,
  4126. "_enableWrapText": true,
  4127. "_N$file": {
  4128. "__uuid__": "8232a6ae-f8d5-41ca-a32f-6ce1a50a585f"
  4129. },
  4130. "_isSystemFontUsed": false,
  4131. "_spacingX": 0,
  4132. "_batchAsBitmap": false,
  4133. "_styleFlags": 0,
  4134. "_underlineHeight": 0,
  4135. "_N$horizontalAlign": 1,
  4136. "_N$verticalAlign": 1,
  4137. "_N$fontFamily": "Arial",
  4138. "_N$overflow": 0,
  4139. "_N$cacheMode": 0,
  4140. "_id": ""
  4141. },
  4142. {
  4143. "__type__": "cc.PrefabInfo",
  4144. "root": {
  4145. "__id__": 1
  4146. },
  4147. "asset": {
  4148. "__id__": 0
  4149. },
  4150. "fileId": "6fvENZKb9IupKAqVWR9zgv",
  4151. "sync": false
  4152. },
  4153. {
  4154. "__type__": "cc.Node",
  4155. "_name": "t3",
  4156. "_objFlags": 0,
  4157. "_parent": {
  4158. "__id__": 102
  4159. },
  4160. "_children": [],
  4161. "_active": true,
  4162. "_components": [
  4163. {
  4164. "__id__": 110
  4165. }
  4166. ],
  4167. "_prefab": {
  4168. "__id__": 111
  4169. },
  4170. "_opacity": 255,
  4171. "_color": {
  4172. "__type__": "cc.Color",
  4173. "r": 201,
  4174. "g": 73,
  4175. "b": 36,
  4176. "a": 255
  4177. },
  4178. "_contentSize": {
  4179. "__type__": "cc.Size",
  4180. "width": 48,
  4181. "height": 32.76
  4182. },
  4183. "_anchorPoint": {
  4184. "__type__": "cc.Vec2",
  4185. "x": 0.5,
  4186. "y": 0.5
  4187. },
  4188. "_trs": {
  4189. "__type__": "TypedArray",
  4190. "ctor": "Float64Array",
  4191. "array": [
  4192. 82.47,
  4193. 0,
  4194. 0,
  4195. 0,
  4196. 0,
  4197. 0,
  4198. 1,
  4199. 1,
  4200. 1,
  4201. 1
  4202. ]
  4203. },
  4204. "_eulerAngles": {
  4205. "__type__": "cc.Vec3",
  4206. "x": 0,
  4207. "y": 0,
  4208. "z": 0
  4209. },
  4210. "_skewX": 0,
  4211. "_skewY": 0,
  4212. "_is3DNode": false,
  4213. "_groupIndex": 0,
  4214. "groupIndex": 0,
  4215. "_id": ""
  4216. },
  4217. {
  4218. "__type__": "cc.Label",
  4219. "_name": "",
  4220. "_objFlags": 0,
  4221. "node": {
  4222. "__id__": 109
  4223. },
  4224. "_enabled": true,
  4225. "_materials": [
  4226. {
  4227. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4228. }
  4229. ],
  4230. "_srcBlendFactor": 770,
  4231. "_dstBlendFactor": 771,
  4232. "_string": "最近",
  4233. "_N$string": "最近",
  4234. "_fontSize": 24,
  4235. "_lineHeight": 26,
  4236. "_enableWrapText": true,
  4237. "_N$file": {
  4238. "__uuid__": "8232a6ae-f8d5-41ca-a32f-6ce1a50a585f"
  4239. },
  4240. "_isSystemFontUsed": false,
  4241. "_spacingX": 0,
  4242. "_batchAsBitmap": false,
  4243. "_styleFlags": 0,
  4244. "_underlineHeight": 0,
  4245. "_N$horizontalAlign": 1,
  4246. "_N$verticalAlign": 1,
  4247. "_N$fontFamily": "Arial",
  4248. "_N$overflow": 0,
  4249. "_N$cacheMode": 0,
  4250. "_id": ""
  4251. },
  4252. {
  4253. "__type__": "cc.PrefabInfo",
  4254. "root": {
  4255. "__id__": 1
  4256. },
  4257. "asset": {
  4258. "__id__": 0
  4259. },
  4260. "fileId": "d1iUjsvfpIQaj18zzdw/s5",
  4261. "sync": false
  4262. },
  4263. {
  4264. "__type__": "cc.Node",
  4265. "_name": "t4",
  4266. "_objFlags": 0,
  4267. "_parent": {
  4268. "__id__": 102
  4269. },
  4270. "_children": [],
  4271. "_active": true,
  4272. "_components": [
  4273. {
  4274. "__id__": 113
  4275. }
  4276. ],
  4277. "_prefab": {
  4278. "__id__": 114
  4279. },
  4280. "_opacity": 255,
  4281. "_color": {
  4282. "__type__": "cc.Color",
  4283. "r": 201,
  4284. "g": 73,
  4285. "b": 36,
  4286. "a": 255
  4287. },
  4288. "_contentSize": {
  4289. "__type__": "cc.Size",
  4290. "width": 48,
  4291. "height": 32.76
  4292. },
  4293. "_anchorPoint": {
  4294. "__type__": "cc.Vec2",
  4295. "x": 0.5,
  4296. "y": 0.5
  4297. },
  4298. "_trs": {
  4299. "__type__": "TypedArray",
  4300. "ctor": "Float64Array",
  4301. "array": [
  4302. 309.588,
  4303. 0,
  4304. 0,
  4305. 0,
  4306. 0,
  4307. 0,
  4308. 1,
  4309. 1,
  4310. 1,
  4311. 1
  4312. ]
  4313. },
  4314. "_eulerAngles": {
  4315. "__type__": "cc.Vec3",
  4316. "x": 0,
  4317. "y": 0,
  4318. "z": 0
  4319. },
  4320. "_skewX": 0,
  4321. "_skewY": 0,
  4322. "_is3DNode": false,
  4323. "_groupIndex": 0,
  4324. "groupIndex": 0,
  4325. "_id": ""
  4326. },
  4327. {
  4328. "__type__": "cc.Label",
  4329. "_name": "",
  4330. "_objFlags": 0,
  4331. "node": {
  4332. "__id__": 112
  4333. },
  4334. "_enabled": true,
  4335. "_materials": [
  4336. {
  4337. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4338. }
  4339. ],
  4340. "_srcBlendFactor": 770,
  4341. "_dstBlendFactor": 771,
  4342. "_string": "身份",
  4343. "_N$string": "身份",
  4344. "_fontSize": 24,
  4345. "_lineHeight": 26,
  4346. "_enableWrapText": true,
  4347. "_N$file": {
  4348. "__uuid__": "8232a6ae-f8d5-41ca-a32f-6ce1a50a585f"
  4349. },
  4350. "_isSystemFontUsed": false,
  4351. "_spacingX": 0,
  4352. "_batchAsBitmap": false,
  4353. "_styleFlags": 0,
  4354. "_underlineHeight": 0,
  4355. "_N$horizontalAlign": 1,
  4356. "_N$verticalAlign": 1,
  4357. "_N$fontFamily": "Arial",
  4358. "_N$overflow": 0,
  4359. "_N$cacheMode": 0,
  4360. "_id": ""
  4361. },
  4362. {
  4363. "__type__": "cc.PrefabInfo",
  4364. "root": {
  4365. "__id__": 1
  4366. },
  4367. "asset": {
  4368. "__id__": 0
  4369. },
  4370. "fileId": "d18aJRyxdJVrTRE2H5083b",
  4371. "sync": false
  4372. },
  4373. {
  4374. "__type__": "cc.Sprite",
  4375. "_name": "",
  4376. "_objFlags": 0,
  4377. "node": {
  4378. "__id__": 102
  4379. },
  4380. "_enabled": true,
  4381. "_materials": [
  4382. {
  4383. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4384. }
  4385. ],
  4386. "_srcBlendFactor": 770,
  4387. "_dstBlendFactor": 771,
  4388. "_spriteFrame": {
  4389. "__uuid__": "41e58609-d2d7-459d-a177-0e5d8e39d90b"
  4390. },
  4391. "_type": 1,
  4392. "_sizeMode": 1,
  4393. "_fillType": 0,
  4394. "_fillCenter": {
  4395. "__type__": "cc.Vec2",
  4396. "x": 0,
  4397. "y": 0
  4398. },
  4399. "_fillStart": 0,
  4400. "_fillRange": 0,
  4401. "_isTrimmedMode": true,
  4402. "_atlas": null,
  4403. "_id": ""
  4404. },
  4405. {
  4406. "__type__": "cc.PrefabInfo",
  4407. "root": {
  4408. "__id__": 1
  4409. },
  4410. "asset": {
  4411. "__id__": 0
  4412. },
  4413. "fileId": "d1fjCmN+1CRaOJ7fMTpBL4",
  4414. "sync": false
  4415. },
  4416. {
  4417. "__type__": "cc.Node",
  4418. "_name": "view",
  4419. "_objFlags": 0,
  4420. "_parent": {
  4421. "__id__": 101
  4422. },
  4423. "_children": [
  4424. {
  4425. "__id__": 118
  4426. }
  4427. ],
  4428. "_active": true,
  4429. "_components": [
  4430. {
  4431. "__id__": 175
  4432. }
  4433. ],
  4434. "_prefab": {
  4435. "__id__": 176
  4436. },
  4437. "_opacity": 255,
  4438. "_color": {
  4439. "__type__": "cc.Color",
  4440. "r": 255,
  4441. "g": 255,
  4442. "b": 255,
  4443. "a": 255
  4444. },
  4445. "_contentSize": {
  4446. "__type__": "cc.Size",
  4447. "width": 1050,
  4448. "height": 500
  4449. },
  4450. "_anchorPoint": {
  4451. "__type__": "cc.Vec2",
  4452. "x": 0.5,
  4453. "y": 0.5
  4454. },
  4455. "_trs": {
  4456. "__type__": "TypedArray",
  4457. "ctor": "Float64Array",
  4458. "array": [
  4459. 0,
  4460. -27,
  4461. 0,
  4462. 0,
  4463. 0,
  4464. 0,
  4465. 1,
  4466. 1,
  4467. 1,
  4468. 1
  4469. ]
  4470. },
  4471. "_eulerAngles": {
  4472. "__type__": "cc.Vec3",
  4473. "x": 0,
  4474. "y": 0,
  4475. "z": 0
  4476. },
  4477. "_skewX": 0,
  4478. "_skewY": 0,
  4479. "_is3DNode": false,
  4480. "_groupIndex": 0,
  4481. "groupIndex": 0,
  4482. "_id": ""
  4483. },
  4484. {
  4485. "__type__": "cc.Node",
  4486. "_name": "content",
  4487. "_objFlags": 0,
  4488. "_parent": {
  4489. "__id__": 117
  4490. },
  4491. "_children": [
  4492. {
  4493. "__id__": 119
  4494. }
  4495. ],
  4496. "_active": true,
  4497. "_components": [
  4498. {
  4499. "__id__": 173
  4500. }
  4501. ],
  4502. "_prefab": {
  4503. "__id__": 174
  4504. },
  4505. "_opacity": 255,
  4506. "_color": {
  4507. "__type__": "cc.Color",
  4508. "r": 255,
  4509. "g": 255,
  4510. "b": 255,
  4511. "a": 255
  4512. },
  4513. "_contentSize": {
  4514. "__type__": "cc.Size",
  4515. "width": 1050,
  4516. "height": 80
  4517. },
  4518. "_anchorPoint": {
  4519. "__type__": "cc.Vec2",
  4520. "x": 0.5,
  4521. "y": 1
  4522. },
  4523. "_trs": {
  4524. "__type__": "TypedArray",
  4525. "ctor": "Float64Array",
  4526. "array": [
  4527. 0,
  4528. 247,
  4529. 0,
  4530. 0,
  4531. 0,
  4532. 0,
  4533. 1,
  4534. 1,
  4535. 1,
  4536. 1
  4537. ]
  4538. },
  4539. "_eulerAngles": {
  4540. "__type__": "cc.Vec3",
  4541. "x": 0,
  4542. "y": 0,
  4543. "z": 0
  4544. },
  4545. "_skewX": 0,
  4546. "_skewY": 0,
  4547. "_is3DNode": false,
  4548. "_groupIndex": 0,
  4549. "groupIndex": 0,
  4550. "_id": ""
  4551. },
  4552. {
  4553. "__type__": "cc.Node",
  4554. "_name": "ClubUserPre",
  4555. "_objFlags": 0,
  4556. "_parent": {
  4557. "__id__": 118
  4558. },
  4559. "_children": [
  4560. {
  4561. "__id__": 120
  4562. },
  4563. {
  4564. "__id__": 127
  4565. },
  4566. {
  4567. "__id__": 130
  4568. },
  4569. {
  4570. "__id__": 133
  4571. },
  4572. {
  4573. "__id__": 136
  4574. },
  4575. {
  4576. "__id__": 139
  4577. },
  4578. {
  4579. "__id__": 142
  4580. },
  4581. {
  4582. "__id__": 145
  4583. },
  4584. {
  4585. "__id__": 148
  4586. },
  4587. {
  4588. "__id__": 151
  4589. },
  4590. {
  4591. "__id__": 154
  4592. },
  4593. {
  4594. "__id__": 157
  4595. },
  4596. {
  4597. "__id__": 162
  4598. }
  4599. ],
  4600. "_active": true,
  4601. "_components": [
  4602. {
  4603. "__id__": 167
  4604. },
  4605. {
  4606. "__id__": 168
  4607. },
  4608. {
  4609. "__id__": 169
  4610. },
  4611. {
  4612. "__id__": 171
  4613. }
  4614. ],
  4615. "_prefab": {
  4616. "__id__": 172
  4617. },
  4618. "_opacity": 255,
  4619. "_color": {
  4620. "__type__": "cc.Color",
  4621. "r": 255,
  4622. "g": 255,
  4623. "b": 255,
  4624. "a": 255
  4625. },
  4626. "_contentSize": {
  4627. "__type__": "cc.Size",
  4628. "width": 1050,
  4629. "height": 80
  4630. },
  4631. "_anchorPoint": {
  4632. "__type__": "cc.Vec2",
  4633. "x": 0.5,
  4634. "y": 0.5
  4635. },
  4636. "_trs": {
  4637. "__type__": "TypedArray",
  4638. "ctor": "Float64Array",
  4639. "array": [
  4640. 0,
  4641. -40,
  4642. 0,
  4643. 0,
  4644. 0,
  4645. 0,
  4646. 1,
  4647. 1,
  4648. 1,
  4649. 1
  4650. ]
  4651. },
  4652. "_eulerAngles": {
  4653. "__type__": "cc.Vec3",
  4654. "x": 0,
  4655. "y": 0,
  4656. "z": 0
  4657. },
  4658. "_skewX": 0,
  4659. "_skewY": 0,
  4660. "_is3DNode": false,
  4661. "_groupIndex": 0,
  4662. "groupIndex": 0,
  4663. "_id": ""
  4664. },
  4665. {
  4666. "__type__": "cc.Node",
  4667. "_name": "FaceBG",
  4668. "_objFlags": 0,
  4669. "_parent": {
  4670. "__id__": 119
  4671. },
  4672. "_children": [
  4673. {
  4674. "__id__": 121
  4675. }
  4676. ],
  4677. "_active": true,
  4678. "_components": [
  4679. {
  4680. "__id__": 125
  4681. }
  4682. ],
  4683. "_prefab": {
  4684. "__id__": 126
  4685. },
  4686. "_opacity": 255,
  4687. "_color": {
  4688. "__type__": "cc.Color",
  4689. "r": 255,
  4690. "g": 255,
  4691. "b": 255,
  4692. "a": 255
  4693. },
  4694. "_contentSize": {
  4695. "__type__": "cc.Size",
  4696. "width": 70,
  4697. "height": 70
  4698. },
  4699. "_anchorPoint": {
  4700. "__type__": "cc.Vec2",
  4701. "x": 0.5,
  4702. "y": 0.5
  4703. },
  4704. "_trs": {
  4705. "__type__": "TypedArray",
  4706. "ctor": "Float64Array",
  4707. "array": [
  4708. -446,
  4709. 0,
  4710. 0,
  4711. 0,
  4712. 0,
  4713. 0,
  4714. 1,
  4715. 1,
  4716. 1,
  4717. 1
  4718. ]
  4719. },
  4720. "_eulerAngles": {
  4721. "__type__": "cc.Vec3",
  4722. "x": 0,
  4723. "y": 0,
  4724. "z": 0
  4725. },
  4726. "_skewX": 0,
  4727. "_skewY": 0,
  4728. "_is3DNode": false,
  4729. "_groupIndex": 0,
  4730. "groupIndex": 0,
  4731. "_id": ""
  4732. },
  4733. {
  4734. "__type__": "cc.Node",
  4735. "_name": "Head",
  4736. "_objFlags": 0,
  4737. "_parent": {
  4738. "__id__": 120
  4739. },
  4740. "_children": [],
  4741. "_active": true,
  4742. "_components": [
  4743. {
  4744. "__id__": 122
  4745. },
  4746. {
  4747. "__id__": 123
  4748. }
  4749. ],
  4750. "_prefab": {
  4751. "__id__": 124
  4752. },
  4753. "_opacity": 255,
  4754. "_color": {
  4755. "__type__": "cc.Color",
  4756. "r": 255,
  4757. "g": 255,
  4758. "b": 255,
  4759. "a": 255
  4760. },
  4761. "_contentSize": {
  4762. "__type__": "cc.Size",
  4763. "width": 70,
  4764. "height": 70
  4765. },
  4766. "_anchorPoint": {
  4767. "__type__": "cc.Vec2",
  4768. "x": 0.5,
  4769. "y": 0.5
  4770. },
  4771. "_trs": {
  4772. "__type__": "TypedArray",
  4773. "ctor": "Float64Array",
  4774. "array": [
  4775. 0.2,
  4776. -0.2,
  4777. 0,
  4778. 0,
  4779. 0,
  4780. 0,
  4781. 1,
  4782. 1,
  4783. 1,
  4784. 1
  4785. ]
  4786. },
  4787. "_eulerAngles": {
  4788. "__type__": "cc.Vec3",
  4789. "x": 0,
  4790. "y": 0,
  4791. "z": 0
  4792. },
  4793. "_skewX": 0,
  4794. "_skewY": 0,
  4795. "_is3DNode": false,
  4796. "_groupIndex": 0,
  4797. "groupIndex": 0,
  4798. "_id": ""
  4799. },
  4800. {
  4801. "__type__": "cc.Sprite",
  4802. "_name": "",
  4803. "_objFlags": 0,
  4804. "node": {
  4805. "__id__": 121
  4806. },
  4807. "_enabled": true,
  4808. "_materials": [
  4809. {
  4810. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4811. }
  4812. ],
  4813. "_srcBlendFactor": 770,
  4814. "_dstBlendFactor": 771,
  4815. "_spriteFrame": {
  4816. "__uuid__": "e89b6424-6e0e-40c6-a616-825520889cf9"
  4817. },
  4818. "_type": 0,
  4819. "_sizeMode": 0,
  4820. "_fillType": 0,
  4821. "_fillCenter": {
  4822. "__type__": "cc.Vec2",
  4823. "x": 0,
  4824. "y": 0
  4825. },
  4826. "_fillStart": 0,
  4827. "_fillRange": 0,
  4828. "_isTrimmedMode": true,
  4829. "_atlas": {
  4830. "__uuid__": "23645516-1e5d-4004-8d4a-0059dc01a9e6"
  4831. },
  4832. "_id": ""
  4833. },
  4834. {
  4835. "__type__": "ddbf3/ydj5JQ5BheoGAThK5",
  4836. "_name": "",
  4837. "_objFlags": 0,
  4838. "node": {
  4839. "__id__": 121
  4840. },
  4841. "_enabled": true,
  4842. "_id": ""
  4843. },
  4844. {
  4845. "__type__": "cc.PrefabInfo",
  4846. "root": {
  4847. "__id__": 1
  4848. },
  4849. "asset": {
  4850. "__id__": 0
  4851. },
  4852. "fileId": "1egzMAQfdIA4SynLvlGJDb",
  4853. "sync": false
  4854. },
  4855. {
  4856. "__type__": "cc.Sprite",
  4857. "_name": "",
  4858. "_objFlags": 0,
  4859. "node": {
  4860. "__id__": 120
  4861. },
  4862. "_enabled": true,
  4863. "_materials": [
  4864. {
  4865. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4866. }
  4867. ],
  4868. "_srcBlendFactor": 770,
  4869. "_dstBlendFactor": 771,
  4870. "_spriteFrame": null,
  4871. "_type": 0,
  4872. "_sizeMode": 0,
  4873. "_fillType": 0,
  4874. "_fillCenter": {
  4875. "__type__": "cc.Vec2",
  4876. "x": 0,
  4877. "y": 0
  4878. },
  4879. "_fillStart": 0,
  4880. "_fillRange": 0,
  4881. "_isTrimmedMode": true,
  4882. "_atlas": null,
  4883. "_id": ""
  4884. },
  4885. {
  4886. "__type__": "cc.PrefabInfo",
  4887. "root": {
  4888. "__id__": 1
  4889. },
  4890. "asset": {
  4891. "__id__": 0
  4892. },
  4893. "fileId": "9eevS5DHlPxrMv0vnPsXGe",
  4894. "sync": false
  4895. },
  4896. {
  4897. "__type__": "cc.Node",
  4898. "_name": "NickName",
  4899. "_objFlags": 0,
  4900. "_parent": {
  4901. "__id__": 119
  4902. },
  4903. "_children": [],
  4904. "_active": true,
  4905. "_components": [
  4906. {
  4907. "__id__": 128
  4908. }
  4909. ],
  4910. "_prefab": {
  4911. "__id__": 129
  4912. },
  4913. "_opacity": 255,
  4914. "_color": {
  4915. "__type__": "cc.Color",
  4916. "r": 201,
  4917. "g": 73,
  4918. "b": 36,
  4919. "a": 255
  4920. },
  4921. "_contentSize": {
  4922. "__type__": "cc.Size",
  4923. "width": 144,
  4924. "height": 30.24
  4925. },
  4926. "_anchorPoint": {
  4927. "__type__": "cc.Vec2",
  4928. "x": 0,
  4929. "y": 0.5
  4930. },
  4931. "_trs": {
  4932. "__type__": "TypedArray",
  4933. "ctor": "Float64Array",
  4934. "array": [
  4935. -396,
  4936. 18,
  4937. 0,
  4938. 0,
  4939. 0,
  4940. 0,
  4941. 1,
  4942. 1,
  4943. 1,
  4944. 1
  4945. ]
  4946. },
  4947. "_eulerAngles": {
  4948. "__type__": "cc.Vec3",
  4949. "x": 0,
  4950. "y": 0,
  4951. "z": 0
  4952. },
  4953. "_skewX": 0,
  4954. "_skewY": 0,
  4955. "_is3DNode": false,
  4956. "_groupIndex": 0,
  4957. "groupIndex": 0,
  4958. "_id": ""
  4959. },
  4960. {
  4961. "__type__": "cc.Label",
  4962. "_name": "",
  4963. "_objFlags": 0,
  4964. "node": {
  4965. "__id__": 127
  4966. },
  4967. "_enabled": true,
  4968. "_materials": [
  4969. {
  4970. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4971. }
  4972. ],
  4973. "_srcBlendFactor": 770,
  4974. "_dstBlendFactor": 771,
  4975. "_string": "玩家六字昵稱",
  4976. "_N$string": "玩家六字昵稱",
  4977. "_fontSize": 24,
  4978. "_lineHeight": 24,
  4979. "_enableWrapText": false,
  4980. "_N$file": {
  4981. "__uuid__": "8232a6ae-f8d5-41ca-a32f-6ce1a50a585f"
  4982. },
  4983. "_isSystemFontUsed": false,
  4984. "_spacingX": 0,
  4985. "_batchAsBitmap": false,
  4986. "_styleFlags": 0,
  4987. "_underlineHeight": 0,
  4988. "_N$horizontalAlign": 0,
  4989. "_N$verticalAlign": 1,
  4990. "_N$fontFamily": "Arial",
  4991. "_N$overflow": 1,
  4992. "_N$cacheMode": 0,
  4993. "_id": ""
  4994. },
  4995. {
  4996. "__type__": "cc.PrefabInfo",
  4997. "root": {
  4998. "__id__": 1
  4999. },
  5000. "asset": {
  5001. "__id__": 0
  5002. },
  5003. "fileId": "70bE5i5HhFhoaqgqTzhKvG",
  5004. "sync": false
  5005. },
  5006. {
  5007. "__type__": "cc.Node",
  5008. "_name": "level1",
  5009. "_objFlags": 0,
  5010. "_parent": {
  5011. "__id__": 119
  5012. },
  5013. "_children": [],
  5014. "_active": true,
  5015. "_components": [
  5016. {
  5017. "__id__": 131
  5018. }
  5019. ],
  5020. "_prefab": {
  5021. "__id__": 132
  5022. },
  5023. "_opacity": 255,
  5024. "_color": {
  5025. "__type__": "cc.Color",
  5026. "r": 255,
  5027. "g": 255,
  5028. "b": 255,
  5029. "a": 255
  5030. },
  5031. "_contentSize": {
  5032. "__type__": "cc.Size",
  5033. "width": 139,
  5034. "height": 36
  5035. },
  5036. "_anchorPoint": {
  5037. "__type__": "cc.Vec2",
  5038. "x": 0.5,
  5039. "y": 0.5
  5040. },
  5041. "_trs": {
  5042. "__type__": "TypedArray",
  5043. "ctor": "Float64Array",
  5044. "array": [
  5045. 297.705,
  5046. 3,
  5047. 0,
  5048. 0,
  5049. 0,
  5050. 0,
  5051. 1,
  5052. 1,
  5053. 1,
  5054. 1
  5055. ]
  5056. },
  5057. "_eulerAngles": {
  5058. "__type__": "cc.Vec3",
  5059. "x": 0,
  5060. "y": 0,
  5061. "z": 0
  5062. },
  5063. "_skewX": 0,
  5064. "_skewY": 0,
  5065. "_is3DNode": false,
  5066. "_groupIndex": 0,
  5067. "groupIndex": 0,
  5068. "_id": ""
  5069. },
  5070. {
  5071. "__type__": "cc.Sprite",
  5072. "_name": "",
  5073. "_objFlags": 0,
  5074. "node": {
  5075. "__id__": 130
  5076. },
  5077. "_enabled": true,
  5078. "_materials": [
  5079. {
  5080. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5081. }
  5082. ],
  5083. "_srcBlendFactor": 770,
  5084. "_dstBlendFactor": 771,
  5085. "_spriteFrame": {
  5086. "__uuid__": "c9fd9dec-2520-457e-a627-30475cd6c313"
  5087. },
  5088. "_type": 0,
  5089. "_sizeMode": 1,
  5090. "_fillType": 0,
  5091. "_fillCenter": {
  5092. "__type__": "cc.Vec2",
  5093. "x": 0,
  5094. "y": 0
  5095. },
  5096. "_fillStart": 0,
  5097. "_fillRange": 0,
  5098. "_isTrimmedMode": true,
  5099. "_atlas": null,
  5100. "_id": ""
  5101. },
  5102. {
  5103. "__type__": "cc.PrefabInfo",
  5104. "root": {
  5105. "__id__": 1
  5106. },
  5107. "asset": {
  5108. "__id__": 0
  5109. },
  5110. "fileId": "b3FKu/popFcLerQP/eJUx2",
  5111. "sync": false
  5112. },
  5113. {
  5114. "__type__": "cc.Node",
  5115. "_name": "level2",
  5116. "_objFlags": 0,
  5117. "_parent": {
  5118. "__id__": 119
  5119. },
  5120. "_children": [],
  5121. "_active": true,
  5122. "_components": [
  5123. {
  5124. "__id__": 134
  5125. }
  5126. ],
  5127. "_prefab": {
  5128. "__id__": 135
  5129. },
  5130. "_opacity": 255,
  5131. "_color": {
  5132. "__type__": "cc.Color",
  5133. "r": 255,
  5134. "g": 255,
  5135. "b": 255,
  5136. "a": 255
  5137. },
  5138. "_contentSize": {
  5139. "__type__": "cc.Size",
  5140. "width": 132,
  5141. "height": 36
  5142. },
  5143. "_anchorPoint": {
  5144. "__type__": "cc.Vec2",
  5145. "x": 0.5,
  5146. "y": 0.5
  5147. },
  5148. "_trs": {
  5149. "__type__": "TypedArray",
  5150. "ctor": "Float64Array",
  5151. "array": [
  5152. 297.705,
  5153. 0,
  5154. 0,
  5155. 0,
  5156. 0,
  5157. 0,
  5158. 1,
  5159. 1,
  5160. 1,
  5161. 1
  5162. ]
  5163. },
  5164. "_eulerAngles": {
  5165. "__type__": "cc.Vec3",
  5166. "x": 0,
  5167. "y": 0,
  5168. "z": 0
  5169. },
  5170. "_skewX": 0,
  5171. "_skewY": 0,
  5172. "_is3DNode": false,
  5173. "_groupIndex": 0,
  5174. "groupIndex": 0,
  5175. "_id": ""
  5176. },
  5177. {
  5178. "__type__": "cc.Sprite",
  5179. "_name": "",
  5180. "_objFlags": 0,
  5181. "node": {
  5182. "__id__": 133
  5183. },
  5184. "_enabled": true,
  5185. "_materials": [
  5186. {
  5187. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5188. }
  5189. ],
  5190. "_srcBlendFactor": 770,
  5191. "_dstBlendFactor": 771,
  5192. "_spriteFrame": {
  5193. "__uuid__": "672576e9-1885-4a69-96f7-c4ce83ec278c"
  5194. },
  5195. "_type": 0,
  5196. "_sizeMode": 1,
  5197. "_fillType": 0,
  5198. "_fillCenter": {
  5199. "__type__": "cc.Vec2",
  5200. "x": 0,
  5201. "y": 0
  5202. },
  5203. "_fillStart": 0,
  5204. "_fillRange": 0,
  5205. "_isTrimmedMode": true,
  5206. "_atlas": null,
  5207. "_id": ""
  5208. },
  5209. {
  5210. "__type__": "cc.PrefabInfo",
  5211. "root": {
  5212. "__id__": 1
  5213. },
  5214. "asset": {
  5215. "__id__": 0
  5216. },
  5217. "fileId": "a7Bjn/V7FHZYD2BIK+bMZj",
  5218. "sync": false
  5219. },
  5220. {
  5221. "__type__": "cc.Node",
  5222. "_name": "level3",
  5223. "_objFlags": 0,
  5224. "_parent": {
  5225. "__id__": 119
  5226. },
  5227. "_children": [],
  5228. "_active": true,
  5229. "_components": [
  5230. {
  5231. "__id__": 137
  5232. }
  5233. ],
  5234. "_prefab": {
  5235. "__id__": 138
  5236. },
  5237. "_opacity": 255,
  5238. "_color": {
  5239. "__type__": "cc.Color",
  5240. "r": 255,
  5241. "g": 255,
  5242. "b": 255,
  5243. "a": 255
  5244. },
  5245. "_contentSize": {
  5246. "__type__": "cc.Size",
  5247. "width": 139,
  5248. "height": 36
  5249. },
  5250. "_anchorPoint": {
  5251. "__type__": "cc.Vec2",
  5252. "x": 0.5,
  5253. "y": 0.5
  5254. },
  5255. "_trs": {
  5256. "__type__": "TypedArray",
  5257. "ctor": "Float64Array",
  5258. "array": [
  5259. 297.705,
  5260. 0,
  5261. 0,
  5262. 0,
  5263. 0,
  5264. 0,
  5265. 1,
  5266. 1,
  5267. 1,
  5268. 1
  5269. ]
  5270. },
  5271. "_eulerAngles": {
  5272. "__type__": "cc.Vec3",
  5273. "x": 0,
  5274. "y": 0,
  5275. "z": 0
  5276. },
  5277. "_skewX": 0,
  5278. "_skewY": 0,
  5279. "_is3DNode": false,
  5280. "_groupIndex": 0,
  5281. "groupIndex": 0,
  5282. "_id": ""
  5283. },
  5284. {
  5285. "__type__": "cc.Sprite",
  5286. "_name": "",
  5287. "_objFlags": 0,
  5288. "node": {
  5289. "__id__": 136
  5290. },
  5291. "_enabled": true,
  5292. "_materials": [
  5293. {
  5294. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5295. }
  5296. ],
  5297. "_srcBlendFactor": 770,
  5298. "_dstBlendFactor": 771,
  5299. "_spriteFrame": {
  5300. "__uuid__": "09695f04-b505-406f-bc4c-3c83c5f181be"
  5301. },
  5302. "_type": 0,
  5303. "_sizeMode": 1,
  5304. "_fillType": 0,
  5305. "_fillCenter": {
  5306. "__type__": "cc.Vec2",
  5307. "x": 0,
  5308. "y": 0
  5309. },
  5310. "_fillStart": 0,
  5311. "_fillRange": 0,
  5312. "_isTrimmedMode": true,
  5313. "_atlas": null,
  5314. "_id": ""
  5315. },
  5316. {
  5317. "__type__": "cc.PrefabInfo",
  5318. "root": {
  5319. "__id__": 1
  5320. },
  5321. "asset": {
  5322. "__id__": 0
  5323. },
  5324. "fileId": "63C9wPrR1PJrIvKuVo7fVf",
  5325. "sync": false
  5326. },
  5327. {
  5328. "__type__": "cc.Node",
  5329. "_name": "level4",
  5330. "_objFlags": 0,
  5331. "_parent": {
  5332. "__id__": 119
  5333. },
  5334. "_children": [],
  5335. "_active": true,
  5336. "_components": [
  5337. {
  5338. "__id__": 140
  5339. }
  5340. ],
  5341. "_prefab": {
  5342. "__id__": 141
  5343. },
  5344. "_opacity": 255,
  5345. "_color": {
  5346. "__type__": "cc.Color",
  5347. "r": 255,
  5348. "g": 255,
  5349. "b": 255,
  5350. "a": 255
  5351. },
  5352. "_contentSize": {
  5353. "__type__": "cc.Size",
  5354. "width": 132,
  5355. "height": 36
  5356. },
  5357. "_anchorPoint": {
  5358. "__type__": "cc.Vec2",
  5359. "x": 0.5,
  5360. "y": 0.5
  5361. },
  5362. "_trs": {
  5363. "__type__": "TypedArray",
  5364. "ctor": "Float64Array",
  5365. "array": [
  5366. 297.705,
  5367. 0,
  5368. 0,
  5369. 0,
  5370. 0,
  5371. 0,
  5372. 1,
  5373. 1,
  5374. 1,
  5375. 1
  5376. ]
  5377. },
  5378. "_eulerAngles": {
  5379. "__type__": "cc.Vec3",
  5380. "x": 0,
  5381. "y": 0,
  5382. "z": 0
  5383. },
  5384. "_skewX": 0,
  5385. "_skewY": 0,
  5386. "_is3DNode": false,
  5387. "_groupIndex": 0,
  5388. "groupIndex": 0,
  5389. "_id": ""
  5390. },
  5391. {
  5392. "__type__": "cc.Sprite",
  5393. "_name": "",
  5394. "_objFlags": 0,
  5395. "node": {
  5396. "__id__": 139
  5397. },
  5398. "_enabled": true,
  5399. "_materials": [
  5400. {
  5401. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5402. }
  5403. ],
  5404. "_srcBlendFactor": 770,
  5405. "_dstBlendFactor": 771,
  5406. "_spriteFrame": {
  5407. "__uuid__": "176571d2-388b-47d3-a3eb-8925c24da299"
  5408. },
  5409. "_type": 0,
  5410. "_sizeMode": 1,
  5411. "_fillType": 0,
  5412. "_fillCenter": {
  5413. "__type__": "cc.Vec2",
  5414. "x": 0,
  5415. "y": 0
  5416. },
  5417. "_fillStart": 0,
  5418. "_fillRange": 0,
  5419. "_isTrimmedMode": true,
  5420. "_atlas": null,
  5421. "_id": ""
  5422. },
  5423. {
  5424. "__type__": "cc.PrefabInfo",
  5425. "root": {
  5426. "__id__": 1
  5427. },
  5428. "asset": {
  5429. "__id__": 0
  5430. },
  5431. "fileId": "f4SB48nk5B5YLcIbQeNKeb",
  5432. "sync": false
  5433. },
  5434. {
  5435. "__type__": "cc.Node",
  5436. "_name": "ID",
  5437. "_objFlags": 0,
  5438. "_parent": {
  5439. "__id__": 119
  5440. },
  5441. "_children": [],
  5442. "_active": true,
  5443. "_components": [
  5444. {
  5445. "__id__": 143
  5446. }
  5447. ],
  5448. "_prefab": {
  5449. "__id__": 144
  5450. },
  5451. "_opacity": 255,
  5452. "_color": {
  5453. "__type__": "cc.Color",
  5454. "r": 201,
  5455. "g": 73,
  5456. "b": 36,
  5457. "a": 255
  5458. },
  5459. "_contentSize": {
  5460. "__type__": "cc.Size",
  5461. "width": 72,
  5462. "height": 30.24
  5463. },
  5464. "_anchorPoint": {
  5465. "__type__": "cc.Vec2",
  5466. "x": 0,
  5467. "y": 0.5
  5468. },
  5469. "_trs": {
  5470. "__type__": "TypedArray",
  5471. "ctor": "Float64Array",
  5472. "array": [
  5473. -357.874,
  5474. -16.247,
  5475. 0,
  5476. 0,
  5477. 0,
  5478. 0,
  5479. 1,
  5480. 1,
  5481. 1,
  5482. 1
  5483. ]
  5484. },
  5485. "_eulerAngles": {
  5486. "__type__": "cc.Vec3",
  5487. "x": 0,
  5488. "y": 0,
  5489. "z": 0
  5490. },
  5491. "_skewX": 0,
  5492. "_skewY": 0,
  5493. "_is3DNode": false,
  5494. "_groupIndex": 0,
  5495. "groupIndex": 0,
  5496. "_id": ""
  5497. },
  5498. {
  5499. "__type__": "cc.Label",
  5500. "_name": "",
  5501. "_objFlags": 0,
  5502. "node": {
  5503. "__id__": 142
  5504. },
  5505. "_enabled": true,
  5506. "_materials": [
  5507. {
  5508. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5509. }
  5510. ],
  5511. "_srcBlendFactor": 770,
  5512. "_dstBlendFactor": 771,
  5513. "_string": "123456",
  5514. "_N$string": "123456",
  5515. "_fontSize": 24,
  5516. "_lineHeight": 24,
  5517. "_enableWrapText": true,
  5518. "_N$file": {
  5519. "__uuid__": "8232a6ae-f8d5-41ca-a32f-6ce1a50a585f"
  5520. },
  5521. "_isSystemFontUsed": false,
  5522. "_spacingX": 0,
  5523. "_batchAsBitmap": false,
  5524. "_styleFlags": 0,
  5525. "_underlineHeight": 0,
  5526. "_N$horizontalAlign": 1,
  5527. "_N$verticalAlign": 1,
  5528. "_N$fontFamily": "Arial",
  5529. "_N$overflow": 0,
  5530. "_N$cacheMode": 0,
  5531. "_id": ""
  5532. },
  5533. {
  5534. "__type__": "cc.PrefabInfo",
  5535. "root": {
  5536. "__id__": 1
  5537. },
  5538. "asset": {
  5539. "__id__": 0
  5540. },
  5541. "fileId": "ffBIxJr9hBH6U1T3UNt/Ek",
  5542. "sync": false
  5543. },
  5544. {
  5545. "__type__": "cc.Node",
  5546. "_name": "LeaderID",
  5547. "_objFlags": 0,
  5548. "_parent": {
  5549. "__id__": 119
  5550. },
  5551. "_children": [],
  5552. "_active": true,
  5553. "_components": [
  5554. {
  5555. "__id__": 146
  5556. }
  5557. ],
  5558. "_prefab": {
  5559. "__id__": 147
  5560. },
  5561. "_opacity": 255,
  5562. "_color": {
  5563. "__type__": "cc.Color",
  5564. "r": 201,
  5565. "g": 73,
  5566. "b": 36,
  5567. "a": 255
  5568. },
  5569. "_contentSize": {
  5570. "__type__": "cc.Size",
  5571. "width": 72,
  5572. "height": 30.24
  5573. },
  5574. "_anchorPoint": {
  5575. "__type__": "cc.Vec2",
  5576. "x": 0,
  5577. "y": 0.5
  5578. },
  5579. "_trs": {
  5580. "__type__": "TypedArray",
  5581. "ctor": "Float64Array",
  5582. "array": [
  5583. -142.791,
  5584. 1.52,
  5585. 0,
  5586. 0,
  5587. 0,
  5588. 0,
  5589. 1,
  5590. 1,
  5591. 1,
  5592. 1
  5593. ]
  5594. },
  5595. "_eulerAngles": {
  5596. "__type__": "cc.Vec3",
  5597. "x": 0,
  5598. "y": 0,
  5599. "z": 0
  5600. },
  5601. "_skewX": 0,
  5602. "_skewY": 0,
  5603. "_is3DNode": false,
  5604. "_groupIndex": 0,
  5605. "groupIndex": 0,
  5606. "_id": ""
  5607. },
  5608. {
  5609. "__type__": "cc.Label",
  5610. "_name": "",
  5611. "_objFlags": 0,
  5612. "node": {
  5613. "__id__": 145
  5614. },
  5615. "_enabled": true,
  5616. "_materials": [
  5617. {
  5618. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5619. }
  5620. ],
  5621. "_srcBlendFactor": 770,
  5622. "_dstBlendFactor": 771,
  5623. "_string": "123456",
  5624. "_N$string": "123456",
  5625. "_fontSize": 24,
  5626. "_lineHeight": 24,
  5627. "_enableWrapText": true,
  5628. "_N$file": {
  5629. "__uuid__": "8232a6ae-f8d5-41ca-a32f-6ce1a50a585f"
  5630. },
  5631. "_isSystemFontUsed": false,
  5632. "_spacingX": 0,
  5633. "_batchAsBitmap": false,
  5634. "_styleFlags": 0,
  5635. "_underlineHeight": 0,
  5636. "_N$horizontalAlign": 1,
  5637. "_N$verticalAlign": 1,
  5638. "_N$fontFamily": "Arial",
  5639. "_N$overflow": 0,
  5640. "_N$cacheMode": 0,
  5641. "_id": ""
  5642. },
  5643. {
  5644. "__type__": "cc.PrefabInfo",
  5645. "root": {
  5646. "__id__": 1
  5647. },
  5648. "asset": {
  5649. "__id__": 0
  5650. },
  5651. "fileId": "e3lajZiLhKWYML25MxwJGz",
  5652. "sync": false
  5653. },
  5654. {
  5655. "__type__": "cc.Node",
  5656. "_name": "t1",
  5657. "_objFlags": 0,
  5658. "_parent": {
  5659. "__id__": 119
  5660. },
  5661. "_children": [],
  5662. "_active": true,
  5663. "_components": [
  5664. {
  5665. "__id__": 149
  5666. }
  5667. ],
  5668. "_prefab": {
  5669. "__id__": 150
  5670. },
  5671. "_opacity": 255,
  5672. "_color": {
  5673. "__type__": "cc.Color",
  5674. "r": 201,
  5675. "g": 73,
  5676. "b": 36,
  5677. "a": 255
  5678. },
  5679. "_contentSize": {
  5680. "__type__": "cc.Size",
  5681. "width": 36,
  5682. "height": 30.24
  5683. },
  5684. "_anchorPoint": {
  5685. "__type__": "cc.Vec2",
  5686. "x": 0.5,
  5687. "y": 0.5
  5688. },
  5689. "_trs": {
  5690. "__type__": "TypedArray",
  5691. "ctor": "Float64Array",
  5692. "array": [
  5693. -377.121,
  5694. -16.247,
  5695. 0,
  5696. 0,
  5697. 0,
  5698. 0,
  5699. 1,
  5700. 1,
  5701. 1,
  5702. 1
  5703. ]
  5704. },
  5705. "_eulerAngles": {
  5706. "__type__": "cc.Vec3",
  5707. "x": 0,
  5708. "y": 0,
  5709. "z": 0
  5710. },
  5711. "_skewX": 0,
  5712. "_skewY": 0,
  5713. "_is3DNode": false,
  5714. "_groupIndex": 0,
  5715. "groupIndex": 0,
  5716. "_id": ""
  5717. },
  5718. {
  5719. "__type__": "cc.Label",
  5720. "_name": "",
  5721. "_objFlags": 0,
  5722. "node": {
  5723. "__id__": 148
  5724. },
  5725. "_enabled": true,
  5726. "_materials": [
  5727. {
  5728. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5729. }
  5730. ],
  5731. "_srcBlendFactor": 770,
  5732. "_dstBlendFactor": 771,
  5733. "_string": "ID:",
  5734. "_N$string": "ID:",
  5735. "_fontSize": 24,
  5736. "_lineHeight": 24,
  5737. "_enableWrapText": true,
  5738. "_N$file": {
  5739. "__uuid__": "8232a6ae-f8d5-41ca-a32f-6ce1a50a585f"
  5740. },
  5741. "_isSystemFontUsed": false,
  5742. "_spacingX": 0,
  5743. "_batchAsBitmap": false,
  5744. "_styleFlags": 0,
  5745. "_underlineHeight": 0,
  5746. "_N$horizontalAlign": 1,
  5747. "_N$verticalAlign": 1,
  5748. "_N$fontFamily": "Arial",
  5749. "_N$overflow": 0,
  5750. "_N$cacheMode": 0,
  5751. "_id": ""
  5752. },
  5753. {
  5754. "__type__": "cc.PrefabInfo",
  5755. "root": {
  5756. "__id__": 1
  5757. },
  5758. "asset": {
  5759. "__id__": 0
  5760. },
  5761. "fileId": "bf3WwmQz5KwLh5z8IpZVFI",
  5762. "sync": false
  5763. },
  5764. {
  5765. "__type__": "cc.Node",
  5766. "_name": "Score",
  5767. "_objFlags": 0,
  5768. "_parent": {
  5769. "__id__": 119
  5770. },
  5771. "_children": [],
  5772. "_active": false,
  5773. "_components": [
  5774. {
  5775. "__id__": 152
  5776. }
  5777. ],
  5778. "_prefab": {
  5779. "__id__": 153
  5780. },
  5781. "_opacity": 255,
  5782. "_color": {
  5783. "__type__": "cc.Color",
  5784. "r": 210,
  5785. "g": 187,
  5786. "b": 241,
  5787. "a": 255
  5788. },
  5789. "_contentSize": {
  5790. "__type__": "cc.Size",
  5791. "width": 90,
  5792. "height": 37.8
  5793. },
  5794. "_anchorPoint": {
  5795. "__type__": "cc.Vec2",
  5796. "x": 0.5,
  5797. "y": 0.5
  5798. },
  5799. "_trs": {
  5800. "__type__": "TypedArray",
  5801. "ctor": "Float64Array",
  5802. "array": [
  5803. 15,
  5804. 3,
  5805. 0,
  5806. 0,
  5807. 0,
  5808. 0,
  5809. 1,
  5810. 1,
  5811. 1,
  5812. 1
  5813. ]
  5814. },
  5815. "_eulerAngles": {
  5816. "__type__": "cc.Vec3",
  5817. "x": 0,
  5818. "y": 0,
  5819. "z": 0
  5820. },
  5821. "_skewX": 0,
  5822. "_skewY": 0,
  5823. "_is3DNode": false,
  5824. "_groupIndex": 0,
  5825. "groupIndex": 0,
  5826. "_id": ""
  5827. },
  5828. {
  5829. "__type__": "cc.Label",
  5830. "_name": "",
  5831. "_objFlags": 0,
  5832. "node": {
  5833. "__id__": 151
  5834. },
  5835. "_enabled": true,
  5836. "_materials": [
  5837. {
  5838. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5839. }
  5840. ],
  5841. "_srcBlendFactor": 770,
  5842. "_dstBlendFactor": 771,
  5843. "_string": "123456",
  5844. "_N$string": "123456",
  5845. "_fontSize": 30,
  5846. "_lineHeight": 30,
  5847. "_enableWrapText": true,
  5848. "_N$file": {
  5849. "__uuid__": "8232a6ae-f8d5-41ca-a32f-6ce1a50a585f"
  5850. },
  5851. "_isSystemFontUsed": false,
  5852. "_spacingX": 0,
  5853. "_batchAsBitmap": false,
  5854. "_styleFlags": 0,
  5855. "_underlineHeight": 0,
  5856. "_N$horizontalAlign": 1,
  5857. "_N$verticalAlign": 1,
  5858. "_N$fontFamily": "Arial",
  5859. "_N$overflow": 0,
  5860. "_N$cacheMode": 0,
  5861. "_id": ""
  5862. },
  5863. {
  5864. "__type__": "cc.PrefabInfo",
  5865. "root": {
  5866. "__id__": 1
  5867. },
  5868. "asset": {
  5869. "__id__": 0
  5870. },
  5871. "fileId": "e62AEfw01OTJeiMoEyk7Zx",
  5872. "sync": false
  5873. },
  5874. {
  5875. "__type__": "cc.Node",
  5876. "_name": "State",
  5877. "_objFlags": 0,
  5878. "_parent": {
  5879. "__id__": 119
  5880. },
  5881. "_children": [],
  5882. "_active": true,
  5883. "_components": [
  5884. {
  5885. "__id__": 155
  5886. }
  5887. ],
  5888. "_prefab": {
  5889. "__id__": 156
  5890. },
  5891. "_opacity": 255,
  5892. "_color": {
  5893. "__type__": "cc.Color",
  5894. "r": 201,
  5895. "g": 73,
  5896. "b": 36,
  5897. "a": 255
  5898. },
  5899. "_contentSize": {
  5900. "__type__": "cc.Size",
  5901. "width": 216,
  5902. "height": 30.24
  5903. },
  5904. "_anchorPoint": {
  5905. "__type__": "cc.Vec2",
  5906. "x": 0.5,
  5907. "y": 0.5
  5908. },
  5909. "_trs": {
  5910. "__type__": "TypedArray",
  5911. "ctor": "Float64Array",
  5912. "array": [
  5913. 81.47,
  5914. 0,
  5915. 0,
  5916. 0,
  5917. 0,
  5918. 0,
  5919. 1,
  5920. 1,
  5921. 1,
  5922. 1
  5923. ]
  5924. },
  5925. "_eulerAngles": {
  5926. "__type__": "cc.Vec3",
  5927. "x": 0,
  5928. "y": 0,
  5929. "z": 0
  5930. },
  5931. "_skewX": 0,
  5932. "_skewY": 0,
  5933. "_is3DNode": false,
  5934. "_groupIndex": 0,
  5935. "groupIndex": 0,
  5936. "_id": ""
  5937. },
  5938. {
  5939. "__type__": "cc.Label",
  5940. "_name": "",
  5941. "_objFlags": 0,
  5942. "node": {
  5943. "__id__": 154
  5944. },
  5945. "_enabled": true,
  5946. "_materials": [
  5947. {
  5948. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5949. }
  5950. ],
  5951. "_srcBlendFactor": 770,
  5952. "_dstBlendFactor": 771,
  5953. "_string": "2020-2-02 24:24:24",
  5954. "_N$string": "2020-2-02 24:24:24",
  5955. "_fontSize": 24,
  5956. "_lineHeight": 24,
  5957. "_enableWrapText": true,
  5958. "_N$file": {
  5959. "__uuid__": "8232a6ae-f8d5-41ca-a32f-6ce1a50a585f"
  5960. },
  5961. "_isSystemFontUsed": false,
  5962. "_spacingX": 0,
  5963. "_batchAsBitmap": false,
  5964. "_styleFlags": 0,
  5965. "_underlineHeight": 0,
  5966. "_N$horizontalAlign": 1,
  5967. "_N$verticalAlign": 1,
  5968. "_N$fontFamily": "Arial",
  5969. "_N$overflow": 0,
  5970. "_N$cacheMode": 0,
  5971. "_id": ""
  5972. },
  5973. {
  5974. "__type__": "cc.PrefabInfo",
  5975. "root": {
  5976. "__id__": 1
  5977. },
  5978. "asset": {
  5979. "__id__": 0
  5980. },
  5981. "fileId": "1c2U8KShxCsqNKpGwo3o6v",
  5982. "sync": false
  5983. },
  5984. {
  5985. "__type__": "cc.Node",
  5986. "_name": "BtDetails",
  5987. "_objFlags": 0,
  5988. "_parent": {
  5989. "__id__": 119
  5990. },
  5991. "_children": [],
  5992. "_active": false,
  5993. "_components": [
  5994. {
  5995. "__id__": 158
  5996. },
  5997. {
  5998. "__id__": 159
  5999. }
  6000. ],
  6001. "_prefab": {
  6002. "__id__": 161
  6003. },
  6004. "_opacity": 255,
  6005. "_color": {
  6006. "__type__": "cc.Color",
  6007. "r": 255,
  6008. "g": 255,
  6009. "b": 255,
  6010. "a": 255
  6011. },
  6012. "_contentSize": {
  6013. "__type__": "cc.Size",
  6014. "width": 157,
  6015. "height": 63
  6016. },
  6017. "_anchorPoint": {
  6018. "__type__": "cc.Vec2",
  6019. "x": 0.5,
  6020. "y": 0.5
  6021. },
  6022. "_trs": {
  6023. "__type__": "TypedArray",
  6024. "ctor": "Float64Array",
  6025. "array": [
  6026. 395,
  6027. 0,
  6028. 0,
  6029. 0,
  6030. 0,
  6031. 0,
  6032. 1,
  6033. 1,
  6034. 1,
  6035. 1
  6036. ]
  6037. },
  6038. "_eulerAngles": {
  6039. "__type__": "cc.Vec3",
  6040. "x": 0,
  6041. "y": 0,
  6042. "z": 0
  6043. },
  6044. "_skewX": 0,
  6045. "_skewY": 0,
  6046. "_is3DNode": false,
  6047. "_groupIndex": 0,
  6048. "groupIndex": 0,
  6049. "_id": ""
  6050. },
  6051. {
  6052. "__type__": "cc.Sprite",
  6053. "_name": "",
  6054. "_objFlags": 0,
  6055. "node": {
  6056. "__id__": 157
  6057. },
  6058. "_enabled": true,
  6059. "_materials": [
  6060. {
  6061. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6062. }
  6063. ],
  6064. "_srcBlendFactor": 770,
  6065. "_dstBlendFactor": 771,
  6066. "_spriteFrame": {
  6067. "__uuid__": "c789301e-f2f9-41ef-9505-21cdf1072e50"
  6068. },
  6069. "_type": 0,
  6070. "_sizeMode": 1,
  6071. "_fillType": 0,
  6072. "_fillCenter": {
  6073. "__type__": "cc.Vec2",
  6074. "x": 0,
  6075. "y": 0
  6076. },
  6077. "_fillStart": 0,
  6078. "_fillRange": 0,
  6079. "_isTrimmedMode": true,
  6080. "_atlas": null,
  6081. "_id": ""
  6082. },
  6083. {
  6084. "__type__": "cc.Button",
  6085. "_name": "",
  6086. "_objFlags": 0,
  6087. "node": {
  6088. "__id__": 157
  6089. },
  6090. "_enabled": true,
  6091. "_normalMaterial": null,
  6092. "_grayMaterial": null,
  6093. "duration": 0,
  6094. "zoomScale": 1.2,
  6095. "clickEvents": [
  6096. {
  6097. "__id__": 160
  6098. }
  6099. ],
  6100. "_N$interactable": true,
  6101. "_N$enableAutoGrayEffect": false,
  6102. "_N$transition": 1,
  6103. "transition": 1,
  6104. "_N$normalColor": {
  6105. "__type__": "cc.Color",
  6106. "r": 255,
  6107. "g": 255,
  6108. "b": 255,
  6109. "a": 255
  6110. },
  6111. "_N$pressedColor": {
  6112. "__type__": "cc.Color",
  6113. "r": 211,
  6114. "g": 211,
  6115. "b": 211,
  6116. "a": 255
  6117. },
  6118. "pressedColor": {
  6119. "__type__": "cc.Color",
  6120. "r": 211,
  6121. "g": 211,
  6122. "b": 211,
  6123. "a": 255
  6124. },
  6125. "_N$hoverColor": {
  6126. "__type__": "cc.Color",
  6127. "r": 255,
  6128. "g": 255,
  6129. "b": 255,
  6130. "a": 255
  6131. },
  6132. "hoverColor": {
  6133. "__type__": "cc.Color",
  6134. "r": 255,
  6135. "g": 255,
  6136. "b": 255,
  6137. "a": 255
  6138. },
  6139. "_N$disabledColor": {
  6140. "__type__": "cc.Color",
  6141. "r": 124,
  6142. "g": 124,
  6143. "b": 124,
  6144. "a": 255
  6145. },
  6146. "_N$normalSprite": null,
  6147. "_N$pressedSprite": null,
  6148. "pressedSprite": null,
  6149. "_N$hoverSprite": null,
  6150. "hoverSprite": null,
  6151. "_N$disabledSprite": null,
  6152. "_N$target": {
  6153. "__id__": 157
  6154. },
  6155. "_id": ""
  6156. },
  6157. {
  6158. "__type__": "cc.ClickEvent",
  6159. "target": {
  6160. "__id__": 119
  6161. },
  6162. "component": "",
  6163. "_componentId": "7e609AsOHZDvJg6haZiTZWf",
  6164. "handler": "OnBtShowUserInfo",
  6165. "customEventData": ""
  6166. },
  6167. {
  6168. "__type__": "cc.PrefabInfo",
  6169. "root": {
  6170. "__id__": 1
  6171. },
  6172. "asset": {
  6173. "__id__": 0
  6174. },
  6175. "fileId": "e9hQVJ1+hMX5Xe1yLQPnaO",
  6176. "sync": false
  6177. },
  6178. {
  6179. "__type__": "cc.Node",
  6180. "_name": "BtKickOut",
  6181. "_objFlags": 0,
  6182. "_parent": {
  6183. "__id__": 119
  6184. },
  6185. "_children": [],
  6186. "_active": true,
  6187. "_components": [
  6188. {
  6189. "__id__": 163
  6190. },
  6191. {
  6192. "__id__": 164
  6193. }
  6194. ],
  6195. "_prefab": {
  6196. "__id__": 166
  6197. },
  6198. "_opacity": 255,
  6199. "_color": {
  6200. "__type__": "cc.Color",
  6201. "r": 255,
  6202. "g": 255,
  6203. "b": 255,
  6204. "a": 255
  6205. },
  6206. "_contentSize": {
  6207. "__type__": "cc.Size",
  6208. "width": 156,
  6209. "height": 54
  6210. },
  6211. "_anchorPoint": {
  6212. "__type__": "cc.Vec2",
  6213. "x": 0.5,
  6214. "y": 0.5
  6215. },
  6216. "_trs": {
  6217. "__type__": "TypedArray",
  6218. "ctor": "Float64Array",
  6219. "array": [
  6220. 439.679,
  6221. 0.387,
  6222. 0,
  6223. 0,
  6224. 0,
  6225. 0,
  6226. 1,
  6227. 1,
  6228. 1,
  6229. 1
  6230. ]
  6231. },
  6232. "_eulerAngles": {
  6233. "__type__": "cc.Vec3",
  6234. "x": 0,
  6235. "y": 0,
  6236. "z": 0
  6237. },
  6238. "_skewX": 0,
  6239. "_skewY": 0,
  6240. "_is3DNode": false,
  6241. "_groupIndex": 0,
  6242. "groupIndex": 0,
  6243. "_id": ""
  6244. },
  6245. {
  6246. "__type__": "cc.Sprite",
  6247. "_name": "",
  6248. "_objFlags": 0,
  6249. "node": {
  6250. "__id__": 162
  6251. },
  6252. "_enabled": true,
  6253. "_materials": [
  6254. {
  6255. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6256. }
  6257. ],
  6258. "_srcBlendFactor": 770,
  6259. "_dstBlendFactor": 771,
  6260. "_spriteFrame": {
  6261. "__uuid__": "c83ee65e-f4e0-4fca-8c0c-e120fdf5e4ff"
  6262. },
  6263. "_type": 0,
  6264. "_sizeMode": 1,
  6265. "_fillType": 0,
  6266. "_fillCenter": {
  6267. "__type__": "cc.Vec2",
  6268. "x": 0,
  6269. "y": 0
  6270. },
  6271. "_fillStart": 0,
  6272. "_fillRange": 0,
  6273. "_isTrimmedMode": true,
  6274. "_atlas": null,
  6275. "_id": ""
  6276. },
  6277. {
  6278. "__type__": "cc.Button",
  6279. "_name": "",
  6280. "_objFlags": 0,
  6281. "node": {
  6282. "__id__": 162
  6283. },
  6284. "_enabled": true,
  6285. "_normalMaterial": null,
  6286. "_grayMaterial": null,
  6287. "duration": 0,
  6288. "zoomScale": 1.2,
  6289. "clickEvents": [
  6290. {
  6291. "__id__": 165
  6292. }
  6293. ],
  6294. "_N$interactable": true,
  6295. "_N$enableAutoGrayEffect": false,
  6296. "_N$transition": 1,
  6297. "transition": 1,
  6298. "_N$normalColor": {
  6299. "__type__": "cc.Color",
  6300. "r": 255,
  6301. "g": 255,
  6302. "b": 255,
  6303. "a": 255
  6304. },
  6305. "_N$pressedColor": {
  6306. "__type__": "cc.Color",
  6307. "r": 211,
  6308. "g": 211,
  6309. "b": 211,
  6310. "a": 255
  6311. },
  6312. "pressedColor": {
  6313. "__type__": "cc.Color",
  6314. "r": 211,
  6315. "g": 211,
  6316. "b": 211,
  6317. "a": 255
  6318. },
  6319. "_N$hoverColor": {
  6320. "__type__": "cc.Color",
  6321. "r": 255,
  6322. "g": 255,
  6323. "b": 255,
  6324. "a": 255
  6325. },
  6326. "hoverColor": {
  6327. "__type__": "cc.Color",
  6328. "r": 255,
  6329. "g": 255,
  6330. "b": 255,
  6331. "a": 255
  6332. },
  6333. "_N$disabledColor": {
  6334. "__type__": "cc.Color",
  6335. "r": 124,
  6336. "g": 124,
  6337. "b": 124,
  6338. "a": 255
  6339. },
  6340. "_N$normalSprite": null,
  6341. "_N$pressedSprite": null,
  6342. "pressedSprite": null,
  6343. "_N$hoverSprite": null,
  6344. "hoverSprite": null,
  6345. "_N$disabledSprite": null,
  6346. "_N$target": {
  6347. "__id__": 162
  6348. },
  6349. "_id": ""
  6350. },
  6351. {
  6352. "__type__": "cc.ClickEvent",
  6353. "target": {
  6354. "__id__": 119
  6355. },
  6356. "component": "",
  6357. "_componentId": "7e609AsOHZDvJg6haZiTZWf",
  6358. "handler": "OnClick_DelUser",
  6359. "customEventData": ""
  6360. },
  6361. {
  6362. "__type__": "cc.PrefabInfo",
  6363. "root": {
  6364. "__id__": 1
  6365. },
  6366. "asset": {
  6367. "__id__": 0
  6368. },
  6369. "fileId": "75sRu4pp1H2qKtONUJxBUH",
  6370. "sync": false
  6371. },
  6372. {
  6373. "__type__": "e5b4cMwR9xJS5FMbqdmDi74",
  6374. "_name": "",
  6375. "_objFlags": 0,
  6376. "node": {
  6377. "__id__": 119
  6378. },
  6379. "_enabled": true,
  6380. "m_HeadNode": {
  6381. "__id__": 121
  6382. },
  6383. "m_HeadErr": null,
  6384. "m_SpGender": [],
  6385. "m_LabNick": {
  6386. "__id__": 128
  6387. },
  6388. "m_LabID": {
  6389. "__id__": 143
  6390. },
  6391. "m_BtKick": null,
  6392. "m_SpGenderstr": null,
  6393. "_id": ""
  6394. },
  6395. {
  6396. "__type__": "7e609AsOHZDvJg6haZiTZWf",
  6397. "_name": "",
  6398. "_objFlags": 0,
  6399. "node": {
  6400. "__id__": 119
  6401. },
  6402. "_enabled": true,
  6403. "_id": ""
  6404. },
  6405. {
  6406. "__type__": "cc.Button",
  6407. "_name": "",
  6408. "_objFlags": 0,
  6409. "node": {
  6410. "__id__": 119
  6411. },
  6412. "_enabled": false,
  6413. "_normalMaterial": null,
  6414. "_grayMaterial": null,
  6415. "duration": 0.1,
  6416. "zoomScale": 1.2,
  6417. "clickEvents": [
  6418. {
  6419. "__id__": 170
  6420. }
  6421. ],
  6422. "_N$interactable": true,
  6423. "_N$enableAutoGrayEffect": false,
  6424. "_N$transition": 0,
  6425. "transition": 0,
  6426. "_N$normalColor": {
  6427. "__type__": "cc.Color",
  6428. "r": 214,
  6429. "g": 214,
  6430. "b": 214,
  6431. "a": 255
  6432. },
  6433. "_N$pressedColor": {
  6434. "__type__": "cc.Color",
  6435. "r": 211,
  6436. "g": 211,
  6437. "b": 211,
  6438. "a": 255
  6439. },
  6440. "pressedColor": {
  6441. "__type__": "cc.Color",
  6442. "r": 211,
  6443. "g": 211,
  6444. "b": 211,
  6445. "a": 255
  6446. },
  6447. "_N$hoverColor": {
  6448. "__type__": "cc.Color",
  6449. "r": 255,
  6450. "g": 255,
  6451. "b": 255,
  6452. "a": 255
  6453. },
  6454. "hoverColor": {
  6455. "__type__": "cc.Color",
  6456. "r": 255,
  6457. "g": 255,
  6458. "b": 255,
  6459. "a": 255
  6460. },
  6461. "_N$disabledColor": {
  6462. "__type__": "cc.Color",
  6463. "r": 124,
  6464. "g": 124,
  6465. "b": 124,
  6466. "a": 255
  6467. },
  6468. "_N$normalSprite": null,
  6469. "_N$pressedSprite": null,
  6470. "pressedSprite": null,
  6471. "_N$hoverSprite": null,
  6472. "hoverSprite": null,
  6473. "_N$disabledSprite": null,
  6474. "_N$target": {
  6475. "__id__": 119
  6476. },
  6477. "_id": ""
  6478. },
  6479. {
  6480. "__type__": "cc.ClickEvent",
  6481. "target": {
  6482. "__id__": 119
  6483. },
  6484. "component": "",
  6485. "_componentId": "7e609AsOHZDvJg6haZiTZWf",
  6486. "handler": "OnBtShowUserInfo",
  6487. "customEventData": ""
  6488. },
  6489. {
  6490. "__type__": "cc.Sprite",
  6491. "_name": "",
  6492. "_objFlags": 0,
  6493. "node": {
  6494. "__id__": 119
  6495. },
  6496. "_enabled": true,
  6497. "_materials": [
  6498. {
  6499. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6500. }
  6501. ],
  6502. "_srcBlendFactor": 770,
  6503. "_dstBlendFactor": 771,
  6504. "_spriteFrame": {
  6505. "__uuid__": "33e333e5-56d9-4374-b5d5-24da2797dd50"
  6506. },
  6507. "_type": 1,
  6508. "_sizeMode": 0,
  6509. "_fillType": 0,
  6510. "_fillCenter": {
  6511. "__type__": "cc.Vec2",
  6512. "x": 0,
  6513. "y": 0
  6514. },
  6515. "_fillStart": 0,
  6516. "_fillRange": 0,
  6517. "_isTrimmedMode": true,
  6518. "_atlas": null,
  6519. "_id": ""
  6520. },
  6521. {
  6522. "__type__": "cc.PrefabInfo",
  6523. "root": {
  6524. "__id__": 1
  6525. },
  6526. "asset": {
  6527. "__id__": 0
  6528. },
  6529. "fileId": "ddEV9gzyZKJozivB+9//CB",
  6530. "sync": false
  6531. },
  6532. {
  6533. "__type__": "cc.Layout",
  6534. "_name": "",
  6535. "_objFlags": 0,
  6536. "node": {
  6537. "__id__": 118
  6538. },
  6539. "_enabled": true,
  6540. "_layoutSize": {
  6541. "__type__": "cc.Size",
  6542. "width": 1050,
  6543. "height": 80
  6544. },
  6545. "_resize": 1,
  6546. "_N$layoutType": 2,
  6547. "_N$cellSize": {
  6548. "__type__": "cc.Size",
  6549. "width": 40,
  6550. "height": 40
  6551. },
  6552. "_N$startAxis": 0,
  6553. "_N$paddingLeft": 0,
  6554. "_N$paddingRight": 0,
  6555. "_N$paddingTop": 0,
  6556. "_N$paddingBottom": 0,
  6557. "_N$spacingX": 0,
  6558. "_N$spacingY": 2,
  6559. "_N$verticalDirection": 1,
  6560. "_N$horizontalDirection": 0,
  6561. "_N$affectedByScale": false,
  6562. "_id": ""
  6563. },
  6564. {
  6565. "__type__": "cc.PrefabInfo",
  6566. "root": {
  6567. "__id__": 1
  6568. },
  6569. "asset": {
  6570. "__id__": 0
  6571. },
  6572. "fileId": "1ddOZWeN9KG7WQcBTPjjmZ",
  6573. "sync": false
  6574. },
  6575. {
  6576. "__type__": "cc.Mask",
  6577. "_name": "",
  6578. "_objFlags": 0,
  6579. "node": {
  6580. "__id__": 117
  6581. },
  6582. "_enabled": true,
  6583. "_materials": [
  6584. {
  6585. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6586. }
  6587. ],
  6588. "_spriteFrame": null,
  6589. "_type": 0,
  6590. "_segments": 64,
  6591. "_N$alphaThreshold": 1,
  6592. "_N$inverted": false,
  6593. "_id": ""
  6594. },
  6595. {
  6596. "__type__": "cc.PrefabInfo",
  6597. "root": {
  6598. "__id__": 1
  6599. },
  6600. "asset": {
  6601. "__id__": 0
  6602. },
  6603. "fileId": "b0nAPIeBNHDqdQJxZ0sZJO",
  6604. "sync": false
  6605. },
  6606. {
  6607. "__type__": "cc.Node",
  6608. "_name": "EdID",
  6609. "_objFlags": 0,
  6610. "_parent": {
  6611. "__id__": 101
  6612. },
  6613. "_children": [
  6614. {
  6615. "__id__": 178
  6616. },
  6617. {
  6618. "__id__": 182
  6619. },
  6620. {
  6621. "__id__": 186
  6622. }
  6623. ],
  6624. "_active": true,
  6625. "_components": [
  6626. {
  6627. "__id__": 190
  6628. }
  6629. ],
  6630. "_prefab": {
  6631. "__id__": 191
  6632. },
  6633. "_opacity": 255,
  6634. "_color": {
  6635. "__type__": "cc.Color",
  6636. "r": 255,
  6637. "g": 255,
  6638. "b": 255,
  6639. "a": 255
  6640. },
  6641. "_contentSize": {
  6642. "__type__": "cc.Size",
  6643. "width": 399,
  6644. "height": 65
  6645. },
  6646. "_anchorPoint": {
  6647. "__type__": "cc.Vec2",
  6648. "x": 0.5,
  6649. "y": 0.5
  6650. },
  6651. "_trs": {
  6652. "__type__": "TypedArray",
  6653. "ctor": "Float64Array",
  6654. "array": [
  6655. -335,
  6656. -322,
  6657. 0,
  6658. 0,
  6659. 0,
  6660. 0,
  6661. 1,
  6662. 1,
  6663. 1,
  6664. 1
  6665. ]
  6666. },
  6667. "_eulerAngles": {
  6668. "__type__": "cc.Vec3",
  6669. "x": 0,
  6670. "y": 0,
  6671. "z": 0
  6672. },
  6673. "_skewX": 0,
  6674. "_skewY": 0,
  6675. "_is3DNode": false,
  6676. "_groupIndex": 0,
  6677. "groupIndex": 0,
  6678. "_id": ""
  6679. },
  6680. {
  6681. "__type__": "cc.Node",
  6682. "_name": "BACKGROUND_SPRITE",
  6683. "_objFlags": 512,
  6684. "_parent": {
  6685. "__id__": 177
  6686. },
  6687. "_children": [],
  6688. "_active": true,
  6689. "_components": [
  6690. {
  6691. "__id__": 179
  6692. },
  6693. {
  6694. "__id__": 180
  6695. }
  6696. ],
  6697. "_prefab": {
  6698. "__id__": 181
  6699. },
  6700. "_opacity": 255,
  6701. "_color": {
  6702. "__type__": "cc.Color",
  6703. "r": 255,
  6704. "g": 255,
  6705. "b": 255,
  6706. "a": 255
  6707. },
  6708. "_contentSize": {
  6709. "__type__": "cc.Size",
  6710. "width": 399,
  6711. "height": 65
  6712. },
  6713. "_anchorPoint": {
  6714. "__type__": "cc.Vec2",
  6715. "x": 0.5,
  6716. "y": 0.5
  6717. },
  6718. "_trs": {
  6719. "__type__": "TypedArray",
  6720. "ctor": "Float64Array",
  6721. "array": [
  6722. 0,
  6723. 0,
  6724. 0,
  6725. 0,
  6726. 0,
  6727. 0,
  6728. 1,
  6729. 1,
  6730. 1,
  6731. 1
  6732. ]
  6733. },
  6734. "_eulerAngles": {
  6735. "__type__": "cc.Vec3",
  6736. "x": 0,
  6737. "y": 0,
  6738. "z": 0
  6739. },
  6740. "_skewX": 0,
  6741. "_skewY": 0,
  6742. "_is3DNode": false,
  6743. "_groupIndex": 0,
  6744. "groupIndex": 0,
  6745. "_id": ""
  6746. },
  6747. {
  6748. "__type__": "cc.Sprite",
  6749. "_name": "",
  6750. "_objFlags": 0,
  6751. "node": {
  6752. "__id__": 178
  6753. },
  6754. "_enabled": true,
  6755. "_materials": [
  6756. {
  6757. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6758. }
  6759. ],
  6760. "_srcBlendFactor": 770,
  6761. "_dstBlendFactor": 771,
  6762. "_spriteFrame": {
  6763. "__uuid__": "12fde944-5393-40fb-a3a5-1964a92f169b"
  6764. },
  6765. "_type": 1,
  6766. "_sizeMode": 0,
  6767. "_fillType": 0,
  6768. "_fillCenter": {
  6769. "__type__": "cc.Vec2",
  6770. "x": 0,
  6771. "y": 0
  6772. },
  6773. "_fillStart": 0,
  6774. "_fillRange": 0,
  6775. "_isTrimmedMode": true,
  6776. "_atlas": null,
  6777. "_id": ""
  6778. },
  6779. {
  6780. "__type__": "cc.Widget",
  6781. "_name": "",
  6782. "_objFlags": 0,
  6783. "node": {
  6784. "__id__": 178
  6785. },
  6786. "_enabled": true,
  6787. "alignMode": 0,
  6788. "_target": null,
  6789. "_alignFlags": 45,
  6790. "_left": 0,
  6791. "_right": 0,
  6792. "_top": 0,
  6793. "_bottom": 0,
  6794. "_verticalCenter": 0,
  6795. "_horizontalCenter": 0,
  6796. "_isAbsLeft": true,
  6797. "_isAbsRight": true,
  6798. "_isAbsTop": true,
  6799. "_isAbsBottom": true,
  6800. "_isAbsHorizontalCenter": true,
  6801. "_isAbsVerticalCenter": true,
  6802. "_originalWidth": 160,
  6803. "_originalHeight": 40,
  6804. "_id": ""
  6805. },
  6806. {
  6807. "__type__": "cc.PrefabInfo",
  6808. "root": {
  6809. "__id__": 1
  6810. },
  6811. "asset": {
  6812. "__id__": 0
  6813. },
  6814. "fileId": "8bDSpmsyVOWpUaufS4FCdb",
  6815. "sync": false
  6816. },
  6817. {
  6818. "__type__": "cc.Node",
  6819. "_name": "TEXT_LABEL",
  6820. "_objFlags": 512,
  6821. "_parent": {
  6822. "__id__": 177
  6823. },
  6824. "_children": [],
  6825. "_active": false,
  6826. "_components": [
  6827. {
  6828. "__id__": 183
  6829. },
  6830. {
  6831. "__id__": 184
  6832. }
  6833. ],
  6834. "_prefab": {
  6835. "__id__": 185
  6836. },
  6837. "_opacity": 255,
  6838. "_color": {
  6839. "__type__": "cc.Color",
  6840. "r": 201,
  6841. "g": 73,
  6842. "b": 36,
  6843. "a": 255
  6844. },
  6845. "_contentSize": {
  6846. "__type__": "cc.Size",
  6847. "width": 158,
  6848. "height": 40
  6849. },
  6850. "_anchorPoint": {
  6851. "__type__": "cc.Vec2",
  6852. "x": 0,
  6853. "y": 1
  6854. },
  6855. "_trs": {
  6856. "__type__": "TypedArray",
  6857. "ctor": "Float64Array",
  6858. "array": [
  6859. -78,
  6860. 20,
  6861. 0,
  6862. 0,
  6863. 0,
  6864. 0,
  6865. 1,
  6866. 1,
  6867. 1,
  6868. 1
  6869. ]
  6870. },
  6871. "_eulerAngles": {
  6872. "__type__": "cc.Vec3",
  6873. "x": 0,
  6874. "y": 0,
  6875. "z": 0
  6876. },
  6877. "_skewX": 0,
  6878. "_skewY": 0,
  6879. "_is3DNode": false,
  6880. "_groupIndex": 0,
  6881. "groupIndex": 0,
  6882. "_id": ""
  6883. },
  6884. {
  6885. "__type__": "cc.Label",
  6886. "_name": "",
  6887. "_objFlags": 0,
  6888. "node": {
  6889. "__id__": 182
  6890. },
  6891. "_enabled": true,
  6892. "_materials": [],
  6893. "_srcBlendFactor": 770,
  6894. "_dstBlendFactor": 771,
  6895. "_string": "",
  6896. "_N$string": "",
  6897. "_fontSize": 36,
  6898. "_lineHeight": 38,
  6899. "_enableWrapText": false,
  6900. "_N$file": {
  6901. "__uuid__": "8232a6ae-f8d5-41ca-a32f-6ce1a50a585f"
  6902. },
  6903. "_isSystemFontUsed": false,
  6904. "_spacingX": 0,
  6905. "_batchAsBitmap": false,
  6906. "_styleFlags": 0,
  6907. "_underlineHeight": 0,
  6908. "_N$horizontalAlign": 0,
  6909. "_N$verticalAlign": 1,
  6910. "_N$fontFamily": "Arial",
  6911. "_N$overflow": 1,
  6912. "_N$cacheMode": 0,
  6913. "_id": ""
  6914. },
  6915. {
  6916. "__type__": "cc.Widget",
  6917. "_name": "",
  6918. "_objFlags": 0,
  6919. "node": {
  6920. "__id__": 182
  6921. },
  6922. "_enabled": true,
  6923. "alignMode": 0,
  6924. "_target": null,
  6925. "_alignFlags": 45,
  6926. "_left": 2,
  6927. "_right": 0,
  6928. "_top": 0,
  6929. "_bottom": 0,
  6930. "_verticalCenter": 0,
  6931. "_horizontalCenter": 0,
  6932. "_isAbsLeft": true,
  6933. "_isAbsRight": true,
  6934. "_isAbsTop": true,
  6935. "_isAbsBottom": true,
  6936. "_isAbsHorizontalCenter": true,
  6937. "_isAbsVerticalCenter": true,
  6938. "_originalWidth": 158,
  6939. "_originalHeight": 40,
  6940. "_id": ""
  6941. },
  6942. {
  6943. "__type__": "cc.PrefabInfo",
  6944. "root": {
  6945. "__id__": 1
  6946. },
  6947. "asset": {
  6948. "__id__": 0
  6949. },
  6950. "fileId": "bbPJZrkYNGn7EK1EuVywe4",
  6951. "sync": false
  6952. },
  6953. {
  6954. "__type__": "cc.Node",
  6955. "_name": "PLACEHOLDER_LABEL",
  6956. "_objFlags": 512,
  6957. "_parent": {
  6958. "__id__": 177
  6959. },
  6960. "_children": [],
  6961. "_active": true,
  6962. "_components": [
  6963. {
  6964. "__id__": 187
  6965. },
  6966. {
  6967. "__id__": 188
  6968. }
  6969. ],
  6970. "_prefab": {
  6971. "__id__": 189
  6972. },
  6973. "_opacity": 255,
  6974. "_color": {
  6975. "__type__": "cc.Color",
  6976. "r": 202,
  6977. "g": 140,
  6978. "b": 97,
  6979. "a": 255
  6980. },
  6981. "_contentSize": {
  6982. "__type__": "cc.Size",
  6983. "width": 397,
  6984. "height": 65
  6985. },
  6986. "_anchorPoint": {
  6987. "__type__": "cc.Vec2",
  6988. "x": 0,
  6989. "y": 1
  6990. },
  6991. "_trs": {
  6992. "__type__": "TypedArray",
  6993. "ctor": "Float64Array",
  6994. "array": [
  6995. -197.5,
  6996. 32.5,
  6997. 0,
  6998. 0,
  6999. 0,
  7000. 0,
  7001. 1,
  7002. 1,
  7003. 1,
  7004. 1
  7005. ]
  7006. },
  7007. "_eulerAngles": {
  7008. "__type__": "cc.Vec3",
  7009. "x": 0,
  7010. "y": 0,
  7011. "z": 0
  7012. },
  7013. "_skewX": 0,
  7014. "_skewY": 0,
  7015. "_is3DNode": false,
  7016. "_groupIndex": 0,
  7017. "groupIndex": 0,
  7018. "_id": ""
  7019. },
  7020. {
  7021. "__type__": "cc.Label",
  7022. "_name": "",
  7023. "_objFlags": 0,
  7024. "node": {
  7025. "__id__": 186
  7026. },
  7027. "_enabled": true,
  7028. "_materials": [
  7029. {
  7030. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  7031. }
  7032. ],
  7033. "_srcBlendFactor": 770,
  7034. "_dstBlendFactor": 771,
  7035. "_string": "請輸入ID",
  7036. "_N$string": "請輸入ID",
  7037. "_fontSize": 36,
  7038. "_lineHeight": 38,
  7039. "_enableWrapText": false,
  7040. "_N$file": {
  7041. "__uuid__": "8232a6ae-f8d5-41ca-a32f-6ce1a50a585f"
  7042. },
  7043. "_isSystemFontUsed": false,
  7044. "_spacingX": 0,
  7045. "_batchAsBitmap": false,
  7046. "_styleFlags": 0,
  7047. "_underlineHeight": 0,
  7048. "_N$horizontalAlign": 0,
  7049. "_N$verticalAlign": 1,
  7050. "_N$fontFamily": "Arial",
  7051. "_N$overflow": 1,
  7052. "_N$cacheMode": 0,
  7053. "_id": ""
  7054. },
  7055. {
  7056. "__type__": "cc.Widget",
  7057. "_name": "",
  7058. "_objFlags": 0,
  7059. "node": {
  7060. "__id__": 186
  7061. },
  7062. "_enabled": true,
  7063. "alignMode": 0,
  7064. "_target": null,
  7065. "_alignFlags": 45,
  7066. "_left": 2,
  7067. "_right": 0,
  7068. "_top": 0,
  7069. "_bottom": 0,
  7070. "_verticalCenter": 0,
  7071. "_horizontalCenter": 0,
  7072. "_isAbsLeft": true,
  7073. "_isAbsRight": true,
  7074. "_isAbsTop": true,
  7075. "_isAbsBottom": true,
  7076. "_isAbsHorizontalCenter": true,
  7077. "_isAbsVerticalCenter": true,
  7078. "_originalWidth": 158,
  7079. "_originalHeight": 40,
  7080. "_id": ""
  7081. },
  7082. {
  7083. "__type__": "cc.PrefabInfo",
  7084. "root": {
  7085. "__id__": 1
  7086. },
  7087. "asset": {
  7088. "__id__": 0
  7089. },
  7090. "fileId": "0asmLSMhBJQpjErBJ0zRJW",
  7091. "sync": false
  7092. },
  7093. {
  7094. "__type__": "cc.EditBox",
  7095. "_name": "",
  7096. "_objFlags": 0,
  7097. "node": {
  7098. "__id__": 177
  7099. },
  7100. "_enabled": true,
  7101. "_string": "",
  7102. "returnType": 0,
  7103. "maxLength": 8,
  7104. "_tabIndex": 0,
  7105. "editingDidBegan": [],
  7106. "textChanged": [],
  7107. "editingDidEnded": [],
  7108. "editingReturn": [],
  7109. "_N$textLabel": {
  7110. "__id__": 183
  7111. },
  7112. "_N$placeholderLabel": {
  7113. "__id__": 187
  7114. },
  7115. "_N$background": {
  7116. "__id__": 179
  7117. },
  7118. "_N$inputFlag": 5,
  7119. "_N$inputMode": 6,
  7120. "_N$stayOnTop": false,
  7121. "_id": ""
  7122. },
  7123. {
  7124. "__type__": "cc.PrefabInfo",
  7125. "root": {
  7126. "__id__": 1
  7127. },
  7128. "asset": {
  7129. "__id__": 0
  7130. },
  7131. "fileId": "07WX1sNclEc73XfAR9Ib0M",
  7132. "sync": false
  7133. },
  7134. {
  7135. "__type__": "cc.Node",
  7136. "_name": "BtBack",
  7137. "_objFlags": 0,
  7138. "_parent": {
  7139. "__id__": 101
  7140. },
  7141. "_children": [
  7142. {
  7143. "__id__": 193
  7144. }
  7145. ],
  7146. "_active": true,
  7147. "_components": [
  7148. {
  7149. "__id__": 197
  7150. }
  7151. ],
  7152. "_prefab": {
  7153. "__id__": 199
  7154. },
  7155. "_opacity": 255,
  7156. "_color": {
  7157. "__type__": "cc.Color",
  7158. "r": 255,
  7159. "g": 255,
  7160. "b": 255,
  7161. "a": 255
  7162. },
  7163. "_contentSize": {
  7164. "__type__": "cc.Size",
  7165. "width": 198,
  7166. "height": 67
  7167. },
  7168. "_anchorPoint": {
  7169. "__type__": "cc.Vec2",
  7170. "x": 0.5,
  7171. "y": 0.5
  7172. },
  7173. "_trs": {
  7174. "__type__": "TypedArray",
  7175. "ctor": "Float64Array",
  7176. "array": [
  7177. -34,
  7178. -323,
  7179. 0,
  7180. 0,
  7181. 0,
  7182. 0,
  7183. 1,
  7184. 1,
  7185. 1,
  7186. 1
  7187. ]
  7188. },
  7189. "_eulerAngles": {
  7190. "__type__": "cc.Vec3",
  7191. "x": 0,
  7192. "y": 0,
  7193. "z": 0
  7194. },
  7195. "_skewX": 0,
  7196. "_skewY": 0,
  7197. "_is3DNode": false,
  7198. "_groupIndex": 0,
  7199. "groupIndex": 0,
  7200. "_id": ""
  7201. },
  7202. {
  7203. "__type__": "cc.Node",
  7204. "_name": "Background",
  7205. "_objFlags": 512,
  7206. "_parent": {
  7207. "__id__": 192
  7208. },
  7209. "_children": [],
  7210. "_active": true,
  7211. "_components": [
  7212. {
  7213. "__id__": 194
  7214. },
  7215. {
  7216. "__id__": 195
  7217. }
  7218. ],
  7219. "_prefab": {
  7220. "__id__": 196
  7221. },
  7222. "_opacity": 255,
  7223. "_color": {
  7224. "__type__": "cc.Color",
  7225. "r": 255,
  7226. "g": 255,
  7227. "b": 255,
  7228. "a": 255
  7229. },
  7230. "_contentSize": {
  7231. "__type__": "cc.Size",
  7232. "width": 198,
  7233. "height": 67
  7234. },
  7235. "_anchorPoint": {
  7236. "__type__": "cc.Vec2",
  7237. "x": 0.5,
  7238. "y": 0.5
  7239. },
  7240. "_trs": {
  7241. "__type__": "TypedArray",
  7242. "ctor": "Float64Array",
  7243. "array": [
  7244. 0,
  7245. 0,
  7246. 0,
  7247. 0,
  7248. 0,
  7249. 0,
  7250. 1,
  7251. 1,
  7252. 1,
  7253. 1
  7254. ]
  7255. },
  7256. "_eulerAngles": {
  7257. "__type__": "cc.Vec3",
  7258. "x": 0,
  7259. "y": 0,
  7260. "z": 0
  7261. },
  7262. "_skewX": 0,
  7263. "_skewY": 0,
  7264. "_is3DNode": false,
  7265. "_groupIndex": 0,
  7266. "groupIndex": 0,
  7267. "_id": ""
  7268. },
  7269. {
  7270. "__type__": "cc.Sprite",
  7271. "_name": "",
  7272. "_objFlags": 0,
  7273. "node": {
  7274. "__id__": 193
  7275. },
  7276. "_enabled": true,
  7277. "_materials": [
  7278. {
  7279. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  7280. }
  7281. ],
  7282. "_srcBlendFactor": 770,
  7283. "_dstBlendFactor": 771,
  7284. "_spriteFrame": {
  7285. "__uuid__": "7cfa06f8-ebe5-44fe-9456-8c26b587789c"
  7286. },
  7287. "_type": 1,
  7288. "_sizeMode": 0,
  7289. "_fillType": 0,
  7290. "_fillCenter": {
  7291. "__type__": "cc.Vec2",
  7292. "x": 0,
  7293. "y": 0
  7294. },
  7295. "_fillStart": 0,
  7296. "_fillRange": 0,
  7297. "_isTrimmedMode": true,
  7298. "_atlas": null,
  7299. "_id": ""
  7300. },
  7301. {
  7302. "__type__": "cc.Widget",
  7303. "_name": "",
  7304. "_objFlags": 0,
  7305. "node": {
  7306. "__id__": 193
  7307. },
  7308. "_enabled": true,
  7309. "alignMode": 0,
  7310. "_target": null,
  7311. "_alignFlags": 45,
  7312. "_left": 0,
  7313. "_right": 0,
  7314. "_top": 0,
  7315. "_bottom": 0,
  7316. "_verticalCenter": 0,
  7317. "_horizontalCenter": 0,
  7318. "_isAbsLeft": true,
  7319. "_isAbsRight": true,
  7320. "_isAbsTop": true,
  7321. "_isAbsBottom": true,
  7322. "_isAbsHorizontalCenter": true,
  7323. "_isAbsVerticalCenter": true,
  7324. "_originalWidth": 100,
  7325. "_originalHeight": 40,
  7326. "_id": ""
  7327. },
  7328. {
  7329. "__type__": "cc.PrefabInfo",
  7330. "root": {
  7331. "__id__": 1
  7332. },
  7333. "asset": {
  7334. "__id__": 0
  7335. },
  7336. "fileId": "cdLHSDz/ZIxJfKbZwdSbky",
  7337. "sync": false
  7338. },
  7339. {
  7340. "__type__": "cc.Button",
  7341. "_name": "",
  7342. "_objFlags": 0,
  7343. "node": {
  7344. "__id__": 192
  7345. },
  7346. "_enabled": true,
  7347. "_normalMaterial": null,
  7348. "_grayMaterial": null,
  7349. "duration": 0.1,
  7350. "zoomScale": 1.2,
  7351. "clickEvents": [
  7352. {
  7353. "__id__": 198
  7354. }
  7355. ],
  7356. "_N$interactable": true,
  7357. "_N$enableAutoGrayEffect": false,
  7358. "_N$transition": 1,
  7359. "transition": 1,
  7360. "_N$normalColor": {
  7361. "__type__": "cc.Color",
  7362. "r": 255,
  7363. "g": 255,
  7364. "b": 255,
  7365. "a": 255
  7366. },
  7367. "_N$pressedColor": {
  7368. "__type__": "cc.Color",
  7369. "r": 200,
  7370. "g": 200,
  7371. "b": 200,
  7372. "a": 255
  7373. },
  7374. "pressedColor": {
  7375. "__type__": "cc.Color",
  7376. "r": 200,
  7377. "g": 200,
  7378. "b": 200,
  7379. "a": 255
  7380. },
  7381. "_N$hoverColor": {
  7382. "__type__": "cc.Color",
  7383. "r": 255,
  7384. "g": 255,
  7385. "b": 255,
  7386. "a": 255
  7387. },
  7388. "hoverColor": {
  7389. "__type__": "cc.Color",
  7390. "r": 255,
  7391. "g": 255,
  7392. "b": 255,
  7393. "a": 255
  7394. },
  7395. "_N$disabledColor": {
  7396. "__type__": "cc.Color",
  7397. "r": 120,
  7398. "g": 120,
  7399. "b": 120,
  7400. "a": 200
  7401. },
  7402. "_N$normalSprite": {
  7403. "__uuid__": "bd912dcc-5a95-4b55-8ce2-7bf03ee8b271"
  7404. },
  7405. "_N$pressedSprite": {
  7406. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  7407. },
  7408. "pressedSprite": {
  7409. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  7410. },
  7411. "_N$hoverSprite": {
  7412. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  7413. },
  7414. "hoverSprite": {
  7415. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  7416. },
  7417. "_N$disabledSprite": {
  7418. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  7419. },
  7420. "_N$target": {
  7421. "__id__": 193
  7422. },
  7423. "_id": ""
  7424. },
  7425. {
  7426. "__type__": "cc.ClickEvent",
  7427. "target": {
  7428. "__id__": 1
  7429. },
  7430. "component": "",
  7431. "_componentId": "3efb7TR+3VB5oYxlOA7dbXx",
  7432. "handler": "OnBtBack",
  7433. "customEventData": ""
  7434. },
  7435. {
  7436. "__type__": "cc.PrefabInfo",
  7437. "root": {
  7438. "__id__": 1
  7439. },
  7440. "asset": {
  7441. "__id__": 0
  7442. },
  7443. "fileId": "e4DMn9ge1A5q1Qdi3oeBaE",
  7444. "sync": false
  7445. },
  7446. {
  7447. "__type__": "cc.Node",
  7448. "_name": "BtSearch",
  7449. "_objFlags": 0,
  7450. "_parent": {
  7451. "__id__": 101
  7452. },
  7453. "_children": [
  7454. {
  7455. "__id__": 201
  7456. }
  7457. ],
  7458. "_active": true,
  7459. "_components": [
  7460. {
  7461. "__id__": 205
  7462. }
  7463. ],
  7464. "_prefab": {
  7465. "__id__": 207
  7466. },
  7467. "_opacity": 255,
  7468. "_color": {
  7469. "__type__": "cc.Color",
  7470. "r": 255,
  7471. "g": 255,
  7472. "b": 255,
  7473. "a": 255
  7474. },
  7475. "_contentSize": {
  7476. "__type__": "cc.Size",
  7477. "width": 198,
  7478. "height": 67
  7479. },
  7480. "_anchorPoint": {
  7481. "__type__": "cc.Vec2",
  7482. "x": 0.5,
  7483. "y": 0.5
  7484. },
  7485. "_trs": {
  7486. "__type__": "TypedArray",
  7487. "ctor": "Float64Array",
  7488. "array": [
  7489. -34,
  7490. -323,
  7491. 0,
  7492. 0,
  7493. 0,
  7494. 0,
  7495. 1,
  7496. 1,
  7497. 1,
  7498. 1
  7499. ]
  7500. },
  7501. "_eulerAngles": {
  7502. "__type__": "cc.Vec3",
  7503. "x": 0,
  7504. "y": 0,
  7505. "z": 0
  7506. },
  7507. "_skewX": 0,
  7508. "_skewY": 0,
  7509. "_is3DNode": false,
  7510. "_groupIndex": 0,
  7511. "groupIndex": 0,
  7512. "_id": ""
  7513. },
  7514. {
  7515. "__type__": "cc.Node",
  7516. "_name": "Background",
  7517. "_objFlags": 512,
  7518. "_parent": {
  7519. "__id__": 200
  7520. },
  7521. "_children": [],
  7522. "_active": true,
  7523. "_components": [
  7524. {
  7525. "__id__": 202
  7526. },
  7527. {
  7528. "__id__": 203
  7529. }
  7530. ],
  7531. "_prefab": {
  7532. "__id__": 204
  7533. },
  7534. "_opacity": 255,
  7535. "_color": {
  7536. "__type__": "cc.Color",
  7537. "r": 255,
  7538. "g": 255,
  7539. "b": 255,
  7540. "a": 255
  7541. },
  7542. "_contentSize": {
  7543. "__type__": "cc.Size",
  7544. "width": 198,
  7545. "height": 67
  7546. },
  7547. "_anchorPoint": {
  7548. "__type__": "cc.Vec2",
  7549. "x": 0.5,
  7550. "y": 0.5
  7551. },
  7552. "_trs": {
  7553. "__type__": "TypedArray",
  7554. "ctor": "Float64Array",
  7555. "array": [
  7556. 0,
  7557. 0,
  7558. 0,
  7559. 0,
  7560. 0,
  7561. 0,
  7562. 1,
  7563. 1,
  7564. 1,
  7565. 1
  7566. ]
  7567. },
  7568. "_eulerAngles": {
  7569. "__type__": "cc.Vec3",
  7570. "x": 0,
  7571. "y": 0,
  7572. "z": 0
  7573. },
  7574. "_skewX": 0,
  7575. "_skewY": 0,
  7576. "_is3DNode": false,
  7577. "_groupIndex": 0,
  7578. "groupIndex": 0,
  7579. "_id": ""
  7580. },
  7581. {
  7582. "__type__": "cc.Sprite",
  7583. "_name": "",
  7584. "_objFlags": 0,
  7585. "node": {
  7586. "__id__": 201
  7587. },
  7588. "_enabled": true,
  7589. "_materials": [
  7590. {
  7591. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  7592. }
  7593. ],
  7594. "_srcBlendFactor": 770,
  7595. "_dstBlendFactor": 771,
  7596. "_spriteFrame": {
  7597. "__uuid__": "bd912dcc-5a95-4b55-8ce2-7bf03ee8b271"
  7598. },
  7599. "_type": 1,
  7600. "_sizeMode": 0,
  7601. "_fillType": 0,
  7602. "_fillCenter": {
  7603. "__type__": "cc.Vec2",
  7604. "x": 0,
  7605. "y": 0
  7606. },
  7607. "_fillStart": 0,
  7608. "_fillRange": 0,
  7609. "_isTrimmedMode": true,
  7610. "_atlas": null,
  7611. "_id": ""
  7612. },
  7613. {
  7614. "__type__": "cc.Widget",
  7615. "_name": "",
  7616. "_objFlags": 0,
  7617. "node": {
  7618. "__id__": 201
  7619. },
  7620. "_enabled": true,
  7621. "alignMode": 0,
  7622. "_target": null,
  7623. "_alignFlags": 45,
  7624. "_left": 0,
  7625. "_right": 0,
  7626. "_top": 0,
  7627. "_bottom": 0,
  7628. "_verticalCenter": 0,
  7629. "_horizontalCenter": 0,
  7630. "_isAbsLeft": true,
  7631. "_isAbsRight": true,
  7632. "_isAbsTop": true,
  7633. "_isAbsBottom": true,
  7634. "_isAbsHorizontalCenter": true,
  7635. "_isAbsVerticalCenter": true,
  7636. "_originalWidth": 100,
  7637. "_originalHeight": 40,
  7638. "_id": ""
  7639. },
  7640. {
  7641. "__type__": "cc.PrefabInfo",
  7642. "root": {
  7643. "__id__": 1
  7644. },
  7645. "asset": {
  7646. "__id__": 0
  7647. },
  7648. "fileId": "68o5ArVqlAPJQ2wLZzPqp6",
  7649. "sync": false
  7650. },
  7651. {
  7652. "__type__": "cc.Button",
  7653. "_name": "",
  7654. "_objFlags": 0,
  7655. "node": {
  7656. "__id__": 200
  7657. },
  7658. "_enabled": true,
  7659. "_normalMaterial": null,
  7660. "_grayMaterial": null,
  7661. "duration": 0.1,
  7662. "zoomScale": 1.2,
  7663. "clickEvents": [
  7664. {
  7665. "__id__": 206
  7666. }
  7667. ],
  7668. "_N$interactable": true,
  7669. "_N$enableAutoGrayEffect": false,
  7670. "_N$transition": 1,
  7671. "transition": 1,
  7672. "_N$normalColor": {
  7673. "__type__": "cc.Color",
  7674. "r": 255,
  7675. "g": 255,
  7676. "b": 255,
  7677. "a": 255
  7678. },
  7679. "_N$pressedColor": {
  7680. "__type__": "cc.Color",
  7681. "r": 200,
  7682. "g": 200,
  7683. "b": 200,
  7684. "a": 255
  7685. },
  7686. "pressedColor": {
  7687. "__type__": "cc.Color",
  7688. "r": 200,
  7689. "g": 200,
  7690. "b": 200,
  7691. "a": 255
  7692. },
  7693. "_N$hoverColor": {
  7694. "__type__": "cc.Color",
  7695. "r": 255,
  7696. "g": 255,
  7697. "b": 255,
  7698. "a": 255
  7699. },
  7700. "hoverColor": {
  7701. "__type__": "cc.Color",
  7702. "r": 255,
  7703. "g": 255,
  7704. "b": 255,
  7705. "a": 255
  7706. },
  7707. "_N$disabledColor": {
  7708. "__type__": "cc.Color",
  7709. "r": 120,
  7710. "g": 120,
  7711. "b": 120,
  7712. "a": 200
  7713. },
  7714. "_N$normalSprite": {
  7715. "__uuid__": "bd912dcc-5a95-4b55-8ce2-7bf03ee8b271"
  7716. },
  7717. "_N$pressedSprite": {
  7718. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  7719. },
  7720. "pressedSprite": {
  7721. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  7722. },
  7723. "_N$hoverSprite": {
  7724. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  7725. },
  7726. "hoverSprite": {
  7727. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  7728. },
  7729. "_N$disabledSprite": {
  7730. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  7731. },
  7732. "_N$target": {
  7733. "__id__": 201
  7734. },
  7735. "_id": ""
  7736. },
  7737. {
  7738. "__type__": "cc.ClickEvent",
  7739. "target": {
  7740. "__id__": 1
  7741. },
  7742. "component": "",
  7743. "_componentId": "3efb7TR+3VB5oYxlOA7dbXx",
  7744. "handler": "OnBtSearchUser",
  7745. "customEventData": ""
  7746. },
  7747. {
  7748. "__type__": "cc.PrefabInfo",
  7749. "root": {
  7750. "__id__": 1
  7751. },
  7752. "asset": {
  7753. "__id__": 0
  7754. },
  7755. "fileId": "04sJr2RFtBn7FKx5iEhaWK",
  7756. "sync": false
  7757. },
  7758. {
  7759. "__type__": "cc.ScrollView",
  7760. "_name": "",
  7761. "_objFlags": 0,
  7762. "node": {
  7763. "__id__": 101
  7764. },
  7765. "_enabled": true,
  7766. "horizontal": false,
  7767. "vertical": true,
  7768. "inertia": true,
  7769. "brake": 0.75,
  7770. "elastic": true,
  7771. "bounceDuration": 0.23,
  7772. "scrollEvents": [],
  7773. "cancelInnerEvents": true,
  7774. "_N$content": {
  7775. "__id__": 118
  7776. },
  7777. "content": {
  7778. "__id__": 118
  7779. },
  7780. "_N$horizontalScrollBar": null,
  7781. "_N$verticalScrollBar": null,
  7782. "_id": ""
  7783. },
  7784. {
  7785. "__type__": "cc.PrefabInfo",
  7786. "root": {
  7787. "__id__": 1
  7788. },
  7789. "asset": {
  7790. "__id__": 0
  7791. },
  7792. "fileId": "ec3y2/Dg9E5oxwAKFvHFuE",
  7793. "sync": false
  7794. },
  7795. {
  7796. "__type__": "cc.Node",
  7797. "_name": "1",
  7798. "_objFlags": 0,
  7799. "_parent": {
  7800. "__id__": 1
  7801. },
  7802. "_children": [
  7803. {
  7804. "__id__": 211
  7805. },
  7806. {
  7807. "__id__": 259
  7808. },
  7809. {
  7810. "__id__": 264
  7811. }
  7812. ],
  7813. "_active": false,
  7814. "_components": [
  7815. {
  7816. "__id__": 269
  7817. }
  7818. ],
  7819. "_prefab": {
  7820. "__id__": 270
  7821. },
  7822. "_opacity": 255,
  7823. "_color": {
  7824. "__type__": "cc.Color",
  7825. "r": 255,
  7826. "g": 255,
  7827. "b": 255,
  7828. "a": 255
  7829. },
  7830. "_contentSize": {
  7831. "__type__": "cc.Size",
  7832. "width": 1050,
  7833. "height": 550
  7834. },
  7835. "_anchorPoint": {
  7836. "__type__": "cc.Vec2",
  7837. "x": 0.5,
  7838. "y": 0.5
  7839. },
  7840. "_trs": {
  7841. "__type__": "TypedArray",
  7842. "ctor": "Float64Array",
  7843. "array": [
  7844. 127,
  7845. 8,
  7846. 0,
  7847. 0,
  7848. 0,
  7849. 0,
  7850. 1,
  7851. 1,
  7852. 1,
  7853. 1
  7854. ]
  7855. },
  7856. "_eulerAngles": {
  7857. "__type__": "cc.Vec3",
  7858. "x": 0,
  7859. "y": 0,
  7860. "z": 0
  7861. },
  7862. "_skewX": 0,
  7863. "_skewY": 0,
  7864. "_is3DNode": false,
  7865. "_groupIndex": 0,
  7866. "groupIndex": 0,
  7867. "_id": ""
  7868. },
  7869. {
  7870. "__type__": "cc.Node",
  7871. "_name": "view",
  7872. "_objFlags": 0,
  7873. "_parent": {
  7874. "__id__": 210
  7875. },
  7876. "_children": [
  7877. {
  7878. "__id__": 212
  7879. }
  7880. ],
  7881. "_active": true,
  7882. "_components": [
  7883. {
  7884. "__id__": 257
  7885. }
  7886. ],
  7887. "_prefab": {
  7888. "__id__": 258
  7889. },
  7890. "_opacity": 255,
  7891. "_color": {
  7892. "__type__": "cc.Color",
  7893. "r": 255,
  7894. "g": 255,
  7895. "b": 255,
  7896. "a": 255
  7897. },
  7898. "_contentSize": {
  7899. "__type__": "cc.Size",
  7900. "width": 1050,
  7901. "height": 550
  7902. },
  7903. "_anchorPoint": {
  7904. "__type__": "cc.Vec2",
  7905. "x": 0.5,
  7906. "y": 0.5
  7907. },
  7908. "_trs": {
  7909. "__type__": "TypedArray",
  7910. "ctor": "Float64Array",
  7911. "array": [
  7912. 0,
  7913. 0,
  7914. 0,
  7915. 0,
  7916. 0,
  7917. 0,
  7918. 1,
  7919. 1,
  7920. 1,
  7921. 1
  7922. ]
  7923. },
  7924. "_eulerAngles": {
  7925. "__type__": "cc.Vec3",
  7926. "x": 0,
  7927. "y": 0,
  7928. "z": 0
  7929. },
  7930. "_skewX": 0,
  7931. "_skewY": 0,
  7932. "_is3DNode": false,
  7933. "_groupIndex": 0,
  7934. "groupIndex": 0,
  7935. "_id": ""
  7936. },
  7937. {
  7938. "__type__": "cc.Node",
  7939. "_name": "content",
  7940. "_objFlags": 0,
  7941. "_parent": {
  7942. "__id__": 211
  7943. },
  7944. "_children": [
  7945. {
  7946. "__id__": 213
  7947. }
  7948. ],
  7949. "_active": true,
  7950. "_components": [
  7951. {
  7952. "__id__": 255
  7953. }
  7954. ],
  7955. "_prefab": {
  7956. "__id__": 256
  7957. },
  7958. "_opacity": 255,
  7959. "_color": {
  7960. "__type__": "cc.Color",
  7961. "r": 255,
  7962. "g": 255,
  7963. "b": 255,
  7964. "a": 255
  7965. },
  7966. "_contentSize": {
  7967. "__type__": "cc.Size",
  7968. "width": 1050,
  7969. "height": 88
  7970. },
  7971. "_anchorPoint": {
  7972. "__type__": "cc.Vec2",
  7973. "x": 0.5,
  7974. "y": 1
  7975. },
  7976. "_trs": {
  7977. "__type__": "TypedArray",
  7978. "ctor": "Float64Array",
  7979. "array": [
  7980. 0,
  7981. 269.79,
  7982. 0,
  7983. 0,
  7984. 0,
  7985. 0,
  7986. 1,
  7987. 1,
  7988. 1,
  7989. 1
  7990. ]
  7991. },
  7992. "_eulerAngles": {
  7993. "__type__": "cc.Vec3",
  7994. "x": 0,
  7995. "y": 0,
  7996. "z": 0
  7997. },
  7998. "_skewX": 0,
  7999. "_skewY": 0,
  8000. "_is3DNode": false,
  8001. "_groupIndex": 0,
  8002. "groupIndex": 0,
  8003. "_id": ""
  8004. },
  8005. {
  8006. "__type__": "cc.Node",
  8007. "_name": "ClubUserPre",
  8008. "_objFlags": 0,
  8009. "_parent": {
  8010. "__id__": 212
  8011. },
  8012. "_children": [
  8013. {
  8014. "__id__": 214
  8015. },
  8016. {
  8017. "__id__": 221
  8018. },
  8019. {
  8020. "__id__": 224
  8021. },
  8022. {
  8023. "__id__": 227
  8024. },
  8025. {
  8026. "__id__": 230
  8027. },
  8028. {
  8029. "__id__": 233
  8030. },
  8031. {
  8032. "__id__": 236
  8033. },
  8034. {
  8035. "__id__": 239
  8036. },
  8037. {
  8038. "__id__": 244
  8039. }
  8040. ],
  8041. "_active": true,
  8042. "_components": [
  8043. {
  8044. "__id__": 249
  8045. },
  8046. {
  8047. "__id__": 250
  8048. },
  8049. {
  8050. "__id__": 251
  8051. },
  8052. {
  8053. "__id__": 253
  8054. }
  8055. ],
  8056. "_prefab": {
  8057. "__id__": 254
  8058. },
  8059. "_opacity": 255,
  8060. "_color": {
  8061. "__type__": "cc.Color",
  8062. "r": 255,
  8063. "g": 255,
  8064. "b": 255,
  8065. "a": 255
  8066. },
  8067. "_contentSize": {
  8068. "__type__": "cc.Size",
  8069. "width": 1050,
  8070. "height": 88
  8071. },
  8072. "_anchorPoint": {
  8073. "__type__": "cc.Vec2",
  8074. "x": 0.5,
  8075. "y": 0.5
  8076. },
  8077. "_trs": {
  8078. "__type__": "TypedArray",
  8079. "ctor": "Float64Array",
  8080. "array": [
  8081. 0,
  8082. -44,
  8083. 0,
  8084. 0,
  8085. 0,
  8086. 0,
  8087. 1,
  8088. 1,
  8089. 1,
  8090. 1
  8091. ]
  8092. },
  8093. "_eulerAngles": {
  8094. "__type__": "cc.Vec3",
  8095. "x": 0,
  8096. "y": 0,
  8097. "z": 0
  8098. },
  8099. "_skewX": 0,
  8100. "_skewY": 0,
  8101. "_is3DNode": false,
  8102. "_groupIndex": 0,
  8103. "groupIndex": 0,
  8104. "_id": ""
  8105. },
  8106. {
  8107. "__type__": "cc.Node",
  8108. "_name": "FaceBG",
  8109. "_objFlags": 0,
  8110. "_parent": {
  8111. "__id__": 213
  8112. },
  8113. "_children": [
  8114. {
  8115. "__id__": 215
  8116. }
  8117. ],
  8118. "_active": true,
  8119. "_components": [
  8120. {
  8121. "__id__": 219
  8122. }
  8123. ],
  8124. "_prefab": {
  8125. "__id__": 220
  8126. },
  8127. "_opacity": 255,
  8128. "_color": {
  8129. "__type__": "cc.Color",
  8130. "r": 255,
  8131. "g": 255,
  8132. "b": 255,
  8133. "a": 255
  8134. },
  8135. "_contentSize": {
  8136. "__type__": "cc.Size",
  8137. "width": 77,
  8138. "height": 77
  8139. },
  8140. "_anchorPoint": {
  8141. "__type__": "cc.Vec2",
  8142. "x": 0.5,
  8143. "y": 0.5
  8144. },
  8145. "_trs": {
  8146. "__type__": "TypedArray",
  8147. "ctor": "Float64Array",
  8148. "array": [
  8149. -449,
  8150. 0,
  8151. 0,
  8152. 0,
  8153. 0,
  8154. 0,
  8155. 1,
  8156. 1,
  8157. 1,
  8158. 1
  8159. ]
  8160. },
  8161. "_eulerAngles": {
  8162. "__type__": "cc.Vec3",
  8163. "x": 0,
  8164. "y": 0,
  8165. "z": 0
  8166. },
  8167. "_skewX": 0,
  8168. "_skewY": 0,
  8169. "_is3DNode": false,
  8170. "_groupIndex": 0,
  8171. "groupIndex": 0,
  8172. "_id": ""
  8173. },
  8174. {
  8175. "__type__": "cc.Node",
  8176. "_name": "Head",
  8177. "_objFlags": 0,
  8178. "_parent": {
  8179. "__id__": 214
  8180. },
  8181. "_children": [],
  8182. "_active": true,
  8183. "_components": [
  8184. {
  8185. "__id__": 216
  8186. },
  8187. {
  8188. "__id__": 217
  8189. }
  8190. ],
  8191. "_prefab": {
  8192. "__id__": 218
  8193. },
  8194. "_opacity": 255,
  8195. "_color": {
  8196. "__type__": "cc.Color",
  8197. "r": 255,
  8198. "g": 255,
  8199. "b": 255,
  8200. "a": 255
  8201. },
  8202. "_contentSize": {
  8203. "__type__": "cc.Size",
  8204. "width": 77,
  8205. "height": 77
  8206. },
  8207. "_anchorPoint": {
  8208. "__type__": "cc.Vec2",
  8209. "x": 0.5,
  8210. "y": 0.5
  8211. },
  8212. "_trs": {
  8213. "__type__": "TypedArray",
  8214. "ctor": "Float64Array",
  8215. "array": [
  8216. 0.2,
  8217. -0.2,
  8218. 0,
  8219. 0,
  8220. 0,
  8221. 0,
  8222. 1,
  8223. 1,
  8224. 1,
  8225. 1
  8226. ]
  8227. },
  8228. "_eulerAngles": {
  8229. "__type__": "cc.Vec3",
  8230. "x": 0,
  8231. "y": 0,
  8232. "z": 0
  8233. },
  8234. "_skewX": 0,
  8235. "_skewY": 0,
  8236. "_is3DNode": false,
  8237. "_groupIndex": 0,
  8238. "groupIndex": 0,
  8239. "_id": ""
  8240. },
  8241. {
  8242. "__type__": "cc.Sprite",
  8243. "_name": "",
  8244. "_objFlags": 0,
  8245. "node": {
  8246. "__id__": 215
  8247. },
  8248. "_enabled": true,
  8249. "_materials": [
  8250. {
  8251. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  8252. }
  8253. ],
  8254. "_srcBlendFactor": 770,
  8255. "_dstBlendFactor": 771,
  8256. "_spriteFrame": null,
  8257. "_type": 0,
  8258. "_sizeMode": 0,
  8259. "_fillType": 0,
  8260. "_fillCenter": {
  8261. "__type__": "cc.Vec2",
  8262. "x": 0,
  8263. "y": 0
  8264. },
  8265. "_fillStart": 0,
  8266. "_fillRange": 0,
  8267. "_isTrimmedMode": true,
  8268. "_atlas": null,
  8269. "_id": ""
  8270. },
  8271. {
  8272. "__type__": "ddbf3/ydj5JQ5BheoGAThK5",
  8273. "_name": "",
  8274. "_objFlags": 0,
  8275. "node": {
  8276. "__id__": 215
  8277. },
  8278. "_enabled": true,
  8279. "_id": ""
  8280. },
  8281. {
  8282. "__type__": "cc.PrefabInfo",
  8283. "root": {
  8284. "__id__": 1
  8285. },
  8286. "asset": {
  8287. "__id__": 0
  8288. },
  8289. "fileId": "dc2HbtNn1LF6pFfdxw7PkJ",
  8290. "sync": false
  8291. },
  8292. {
  8293. "__type__": "cc.Sprite",
  8294. "_name": "",
  8295. "_objFlags": 0,
  8296. "node": {
  8297. "__id__": 214
  8298. },
  8299. "_enabled": true,
  8300. "_materials": [
  8301. {
  8302. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  8303. }
  8304. ],
  8305. "_srcBlendFactor": 770,
  8306. "_dstBlendFactor": 771,
  8307. "_spriteFrame": null,
  8308. "_type": 0,
  8309. "_sizeMode": 0,
  8310. "_fillType": 0,
  8311. "_fillCenter": {
  8312. "__type__": "cc.Vec2",
  8313. "x": 0,
  8314. "y": 0
  8315. },
  8316. "_fillStart": 0,
  8317. "_fillRange": 0,
  8318. "_isTrimmedMode": true,
  8319. "_atlas": null,
  8320. "_id": ""
  8321. },
  8322. {
  8323. "__type__": "cc.PrefabInfo",
  8324. "root": {
  8325. "__id__": 1
  8326. },
  8327. "asset": {
  8328. "__id__": 0
  8329. },
  8330. "fileId": "13x3jKd5FC97s7dj5OlLlV",
  8331. "sync": false
  8332. },
  8333. {
  8334. "__type__": "cc.Node",
  8335. "_name": "NickName",
  8336. "_objFlags": 0,
  8337. "_parent": {
  8338. "__id__": 213
  8339. },
  8340. "_children": [],
  8341. "_active": true,
  8342. "_components": [
  8343. {
  8344. "__id__": 222
  8345. }
  8346. ],
  8347. "_prefab": {
  8348. "__id__": 223
  8349. },
  8350. "_opacity": 255,
  8351. "_color": {
  8352. "__type__": "cc.Color",
  8353. "r": 201,
  8354. "g": 73,
  8355. "b": 36,
  8356. "a": 255
  8357. },
  8358. "_contentSize": {
  8359. "__type__": "cc.Size",
  8360. "width": 180,
  8361. "height": 37.8
  8362. },
  8363. "_anchorPoint": {
  8364. "__type__": "cc.Vec2",
  8365. "x": 0,
  8366. "y": 0.5
  8367. },
  8368. "_trs": {
  8369. "__type__": "TypedArray",
  8370. "ctor": "Float64Array",
  8371. "array": [
  8372. -396,
  8373. 3,
  8374. 0,
  8375. 0,
  8376. 0,
  8377. 0,
  8378. 1,
  8379. 1,
  8380. 1,
  8381. 1
  8382. ]
  8383. },
  8384. "_eulerAngles": {
  8385. "__type__": "cc.Vec3",
  8386. "x": 0,
  8387. "y": 0,
  8388. "z": 0
  8389. },
  8390. "_skewX": 0,
  8391. "_skewY": 0,
  8392. "_is3DNode": false,
  8393. "_groupIndex": 0,
  8394. "groupIndex": 0,
  8395. "_id": ""
  8396. },
  8397. {
  8398. "__type__": "cc.Label",
  8399. "_name": "",
  8400. "_objFlags": 0,
  8401. "node": {
  8402. "__id__": 221
  8403. },
  8404. "_enabled": true,
  8405. "_materials": [
  8406. {
  8407. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  8408. }
  8409. ],
  8410. "_srcBlendFactor": 770,
  8411. "_dstBlendFactor": 771,
  8412. "_string": "玩家六字昵稱",
  8413. "_N$string": "玩家六字昵稱",
  8414. "_fontSize": 30,
  8415. "_lineHeight": 30,
  8416. "_enableWrapText": false,
  8417. "_N$file": {
  8418. "__uuid__": "8232a6ae-f8d5-41ca-a32f-6ce1a50a585f"
  8419. },
  8420. "_isSystemFontUsed": false,
  8421. "_spacingX": 0,
  8422. "_batchAsBitmap": false,
  8423. "_styleFlags": 0,
  8424. "_underlineHeight": 0,
  8425. "_N$horizontalAlign": 0,
  8426. "_N$verticalAlign": 1,
  8427. "_N$fontFamily": "Arial",
  8428. "_N$overflow": 1,
  8429. "_N$cacheMode": 0,
  8430. "_id": ""
  8431. },
  8432. {
  8433. "__type__": "cc.PrefabInfo",
  8434. "root": {
  8435. "__id__": 1
  8436. },
  8437. "asset": {
  8438. "__id__": 0
  8439. },
  8440. "fileId": "30SrHtSXFAJ5lmvYsNdDd8",
  8441. "sync": false
  8442. },
  8443. {
  8444. "__type__": "cc.Node",
  8445. "_name": "BG2",
  8446. "_objFlags": 0,
  8447. "_parent": {
  8448. "__id__": 213
  8449. },
  8450. "_children": [],
  8451. "_active": true,
  8452. "_components": [
  8453. {
  8454. "__id__": 225
  8455. }
  8456. ],
  8457. "_prefab": {
  8458. "__id__": 226
  8459. },
  8460. "_opacity": 255,
  8461. "_color": {
  8462. "__type__": "cc.Color",
  8463. "r": 255,
  8464. "g": 255,
  8465. "b": 255,
  8466. "a": 255
  8467. },
  8468. "_contentSize": {
  8469. "__type__": "cc.Size",
  8470. "width": 86,
  8471. "height": 60
  8472. },
  8473. "_anchorPoint": {
  8474. "__type__": "cc.Vec2",
  8475. "x": 0.5,
  8476. "y": 0.5
  8477. },
  8478. "_trs": {
  8479. "__type__": "TypedArray",
  8480. "ctor": "Float64Array",
  8481. "array": [
  8482. 48.811,
  8483. 0,
  8484. 0,
  8485. 0,
  8486. 0,
  8487. 0,
  8488. 1,
  8489. 1,
  8490. 1,
  8491. 1
  8492. ]
  8493. },
  8494. "_eulerAngles": {
  8495. "__type__": "cc.Vec3",
  8496. "x": 0,
  8497. "y": 0,
  8498. "z": 0
  8499. },
  8500. "_skewX": 0,
  8501. "_skewY": 0,
  8502. "_is3DNode": false,
  8503. "_groupIndex": 0,
  8504. "groupIndex": 0,
  8505. "_id": ""
  8506. },
  8507. {
  8508. "__type__": "cc.Sprite",
  8509. "_name": "",
  8510. "_objFlags": 0,
  8511. "node": {
  8512. "__id__": 224
  8513. },
  8514. "_enabled": true,
  8515. "_materials": [
  8516. {
  8517. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  8518. }
  8519. ],
  8520. "_srcBlendFactor": 770,
  8521. "_dstBlendFactor": 771,
  8522. "_spriteFrame": {
  8523. "__uuid__": "64eb19af-e538-4440-82bd-e003ae27f5f2"
  8524. },
  8525. "_type": 0,
  8526. "_sizeMode": 1,
  8527. "_fillType": 0,
  8528. "_fillCenter": {
  8529. "__type__": "cc.Vec2",
  8530. "x": 0,
  8531. "y": 0
  8532. },
  8533. "_fillStart": 0,
  8534. "_fillRange": 0,
  8535. "_isTrimmedMode": true,
  8536. "_atlas": null,
  8537. "_id": ""
  8538. },
  8539. {
  8540. "__type__": "cc.PrefabInfo",
  8541. "root": {
  8542. "__id__": 1
  8543. },
  8544. "asset": {
  8545. "__id__": 0
  8546. },
  8547. "fileId": "b6ikYHxvNNjKEHL1EHM7KH",
  8548. "sync": false
  8549. },
  8550. {
  8551. "__type__": "cc.Node",
  8552. "_name": "level",
  8553. "_objFlags": 0,
  8554. "_parent": {
  8555. "__id__": 213
  8556. },
  8557. "_children": [],
  8558. "_active": false,
  8559. "_components": [
  8560. {
  8561. "__id__": 228
  8562. }
  8563. ],
  8564. "_prefab": {
  8565. "__id__": 229
  8566. },
  8567. "_opacity": 255,
  8568. "_color": {
  8569. "__type__": "cc.Color",
  8570. "r": 210,
  8571. "g": 187,
  8572. "b": 241,
  8573. "a": 255
  8574. },
  8575. "_contentSize": {
  8576. "__type__": "cc.Size",
  8577. "width": 128,
  8578. "height": 40.32
  8579. },
  8580. "_anchorPoint": {
  8581. "__type__": "cc.Vec2",
  8582. "x": 0.5,
  8583. "y": 0.5
  8584. },
  8585. "_trs": {
  8586. "__type__": "TypedArray",
  8587. "ctor": "Float64Array",
  8588. "array": [
  8589. 222,
  8590. 3,
  8591. 0,
  8592. 0,
  8593. 0,
  8594. 0,
  8595. 1,
  8596. 1,
  8597. 1,
  8598. 1
  8599. ]
  8600. },
  8601. "_eulerAngles": {
  8602. "__type__": "cc.Vec3",
  8603. "x": 0,
  8604. "y": 0,
  8605. "z": 0
  8606. },
  8607. "_skewX": 0,
  8608. "_skewY": 0,
  8609. "_is3DNode": false,
  8610. "_groupIndex": 0,
  8611. "groupIndex": 0,
  8612. "_id": ""
  8613. },
  8614. {
  8615. "__type__": "cc.Label",
  8616. "_name": "",
  8617. "_objFlags": 0,
  8618. "node": {
  8619. "__id__": 227
  8620. },
  8621. "_enabled": true,
  8622. "_materials": [
  8623. {
  8624. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  8625. }
  8626. ],
  8627. "_srcBlendFactor": 770,
  8628. "_dstBlendFactor": 771,
  8629. "_string": "(管理员)",
  8630. "_N$string": "(管理员)",
  8631. "_fontSize": 32,
  8632. "_lineHeight": 32,
  8633. "_enableWrapText": true,
  8634. "_N$file": {
  8635. "__uuid__": "8232a6ae-f8d5-41ca-a32f-6ce1a50a585f"
  8636. },
  8637. "_isSystemFontUsed": false,
  8638. "_spacingX": 0,
  8639. "_batchAsBitmap": false,
  8640. "_styleFlags": 0,
  8641. "_underlineHeight": 0,
  8642. "_N$horizontalAlign": 1,
  8643. "_N$verticalAlign": 1,
  8644. "_N$fontFamily": "Arial",
  8645. "_N$overflow": 0,
  8646. "_N$cacheMode": 0,
  8647. "_id": ""
  8648. },
  8649. {
  8650. "__type__": "cc.PrefabInfo",
  8651. "root": {
  8652. "__id__": 1
  8653. },
  8654. "asset": {
  8655. "__id__": 0
  8656. },
  8657. "fileId": "3d8mJuy55Cib0kEeAqetsd",
  8658. "sync": false
  8659. },
  8660. {
  8661. "__type__": "cc.Node",
  8662. "_name": "id",
  8663. "_objFlags": 0,
  8664. "_parent": {
  8665. "__id__": 213
  8666. },
  8667. "_children": [],
  8668. "_active": true,
  8669. "_components": [
  8670. {
  8671. "__id__": 231
  8672. }
  8673. ],
  8674. "_prefab": {
  8675. "__id__": 232
  8676. },
  8677. "_opacity": 255,
  8678. "_color": {
  8679. "__type__": "cc.Color",
  8680. "r": 201,
  8681. "g": 73,
  8682. "b": 36,
  8683. "a": 255
  8684. },
  8685. "_contentSize": {
  8686. "__type__": "cc.Size",
  8687. "width": 45,
  8688. "height": 37.8
  8689. },
  8690. "_anchorPoint": {
  8691. "__type__": "cc.Vec2",
  8692. "x": 0.5,
  8693. "y": 0.5
  8694. },
  8695. "_trs": {
  8696. "__type__": "TypedArray",
  8697. "ctor": "Float64Array",
  8698. "array": [
  8699. -143.492,
  8700. 3,
  8701. 0,
  8702. 0,
  8703. 0,
  8704. 0,
  8705. 1,
  8706. 1,
  8707. 1,
  8708. 1
  8709. ]
  8710. },
  8711. "_eulerAngles": {
  8712. "__type__": "cc.Vec3",
  8713. "x": 0,
  8714. "y": 0,
  8715. "z": 0
  8716. },
  8717. "_skewX": 0,
  8718. "_skewY": 0,
  8719. "_is3DNode": false,
  8720. "_groupIndex": 0,
  8721. "groupIndex": 0,
  8722. "_id": ""
  8723. },
  8724. {
  8725. "__type__": "cc.Label",
  8726. "_name": "",
  8727. "_objFlags": 0,
  8728. "node": {
  8729. "__id__": 230
  8730. },
  8731. "_enabled": true,
  8732. "_materials": [
  8733. {
  8734. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  8735. }
  8736. ],
  8737. "_srcBlendFactor": 770,
  8738. "_dstBlendFactor": 771,
  8739. "_string": "ID:",
  8740. "_N$string": "ID:",
  8741. "_fontSize": 30,
  8742. "_lineHeight": 30,
  8743. "_enableWrapText": true,
  8744. "_N$file": {
  8745. "__uuid__": "8232a6ae-f8d5-41ca-a32f-6ce1a50a585f"
  8746. },
  8747. "_isSystemFontUsed": false,
  8748. "_spacingX": 0,
  8749. "_batchAsBitmap": false,
  8750. "_styleFlags": 0,
  8751. "_underlineHeight": 0,
  8752. "_N$horizontalAlign": 1,
  8753. "_N$verticalAlign": 1,
  8754. "_N$fontFamily": "Arial",
  8755. "_N$overflow": 0,
  8756. "_N$cacheMode": 0,
  8757. "_id": ""
  8758. },
  8759. {
  8760. "__type__": "cc.PrefabInfo",
  8761. "root": {
  8762. "__id__": 1
  8763. },
  8764. "asset": {
  8765. "__id__": 0
  8766. },
  8767. "fileId": "ecuklNq6tEH6a7OjQ+Dyd+",
  8768. "sync": false
  8769. },
  8770. {
  8771. "__type__": "cc.Node",
  8772. "_name": "ID",
  8773. "_objFlags": 0,
  8774. "_parent": {
  8775. "__id__": 213
  8776. },
  8777. "_children": [],
  8778. "_active": true,
  8779. "_components": [
  8780. {
  8781. "__id__": 234
  8782. }
  8783. ],
  8784. "_prefab": {
  8785. "__id__": 235
  8786. },
  8787. "_opacity": 255,
  8788. "_color": {
  8789. "__type__": "cc.Color",
  8790. "r": 201,
  8791. "g": 73,
  8792. "b": 36,
  8793. "a": 255
  8794. },
  8795. "_contentSize": {
  8796. "__type__": "cc.Size",
  8797. "width": 90,
  8798. "height": 37.8
  8799. },
  8800. "_anchorPoint": {
  8801. "__type__": "cc.Vec2",
  8802. "x": 0.5,
  8803. "y": 0.5
  8804. },
  8805. "_trs": {
  8806. "__type__": "TypedArray",
  8807. "ctor": "Float64Array",
  8808. "array": [
  8809. -70,
  8810. 3,
  8811. 0,
  8812. 0,
  8813. 0,
  8814. 0,
  8815. 1,
  8816. 1,
  8817. 1,
  8818. 1
  8819. ]
  8820. },
  8821. "_eulerAngles": {
  8822. "__type__": "cc.Vec3",
  8823. "x": 0,
  8824. "y": 0,
  8825. "z": 0
  8826. },
  8827. "_skewX": 0,
  8828. "_skewY": 0,
  8829. "_is3DNode": false,
  8830. "_groupIndex": 0,
  8831. "groupIndex": 0,
  8832. "_id": ""
  8833. },
  8834. {
  8835. "__type__": "cc.Label",
  8836. "_name": "",
  8837. "_objFlags": 0,
  8838. "node": {
  8839. "__id__": 233
  8840. },
  8841. "_enabled": true,
  8842. "_materials": [
  8843. {
  8844. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  8845. }
  8846. ],
  8847. "_srcBlendFactor": 770,
  8848. "_dstBlendFactor": 771,
  8849. "_string": "123456",
  8850. "_N$string": "123456",
  8851. "_fontSize": 30,
  8852. "_lineHeight": 30,
  8853. "_enableWrapText": true,
  8854. "_N$file": {
  8855. "__uuid__": "8232a6ae-f8d5-41ca-a32f-6ce1a50a585f"
  8856. },
  8857. "_isSystemFontUsed": false,
  8858. "_spacingX": 0,
  8859. "_batchAsBitmap": false,
  8860. "_styleFlags": 0,
  8861. "_underlineHeight": 0,
  8862. "_N$horizontalAlign": 1,
  8863. "_N$verticalAlign": 1,
  8864. "_N$fontFamily": "Arial",
  8865. "_N$overflow": 0,
  8866. "_N$cacheMode": 0,
  8867. "_id": ""
  8868. },
  8869. {
  8870. "__type__": "cc.PrefabInfo",
  8871. "root": {
  8872. "__id__": 1
  8873. },
  8874. "asset": {
  8875. "__id__": 0
  8876. },
  8877. "fileId": "84byczJeVOfryWDin3aRL8",
  8878. "sync": false
  8879. },
  8880. {
  8881. "__type__": "cc.Node",
  8882. "_name": "Score",
  8883. "_objFlags": 0,
  8884. "_parent": {
  8885. "__id__": 213
  8886. },
  8887. "_children": [],
  8888. "_active": false,
  8889. "_components": [
  8890. {
  8891. "__id__": 237
  8892. }
  8893. ],
  8894. "_prefab": {
  8895. "__id__": 238
  8896. },
  8897. "_opacity": 255,
  8898. "_color": {
  8899. "__type__": "cc.Color",
  8900. "r": 210,
  8901. "g": 187,
  8902. "b": 241,
  8903. "a": 255
  8904. },
  8905. "_contentSize": {
  8906. "__type__": "cc.Size",
  8907. "width": 90,
  8908. "height": 37.8
  8909. },
  8910. "_anchorPoint": {
  8911. "__type__": "cc.Vec2",
  8912. "x": 0.5,
  8913. "y": 0.5
  8914. },
  8915. "_trs": {
  8916. "__type__": "TypedArray",
  8917. "ctor": "Float64Array",
  8918. "array": [
  8919. 15,
  8920. 3,
  8921. 0,
  8922. 0,
  8923. 0,
  8924. 0,
  8925. 1,
  8926. 1,
  8927. 1,
  8928. 1
  8929. ]
  8930. },
  8931. "_eulerAngles": {
  8932. "__type__": "cc.Vec3",
  8933. "x": 0,
  8934. "y": 0,
  8935. "z": 0
  8936. },
  8937. "_skewX": 0,
  8938. "_skewY": 0,
  8939. "_is3DNode": false,
  8940. "_groupIndex": 0,
  8941. "groupIndex": 0,
  8942. "_id": ""
  8943. },
  8944. {
  8945. "__type__": "cc.Label",
  8946. "_name": "",
  8947. "_objFlags": 0,
  8948. "node": {
  8949. "__id__": 236
  8950. },
  8951. "_enabled": true,
  8952. "_materials": [
  8953. {
  8954. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  8955. }
  8956. ],
  8957. "_srcBlendFactor": 770,
  8958. "_dstBlendFactor": 771,
  8959. "_string": "123456",
  8960. "_N$string": "123456",
  8961. "_fontSize": 30,
  8962. "_lineHeight": 30,
  8963. "_enableWrapText": true,
  8964. "_N$file": {
  8965. "__uuid__": "8232a6ae-f8d5-41ca-a32f-6ce1a50a585f"
  8966. },
  8967. "_isSystemFontUsed": false,
  8968. "_spacingX": 0,
  8969. "_batchAsBitmap": false,
  8970. "_styleFlags": 0,
  8971. "_underlineHeight": 0,
  8972. "_N$horizontalAlign": 1,
  8973. "_N$verticalAlign": 1,
  8974. "_N$fontFamily": "Arial",
  8975. "_N$overflow": 0,
  8976. "_N$cacheMode": 0,
  8977. "_id": ""
  8978. },
  8979. {
  8980. "__type__": "cc.PrefabInfo",
  8981. "root": {
  8982. "__id__": 1
  8983. },
  8984. "asset": {
  8985. "__id__": 0
  8986. },
  8987. "fileId": "c8PNqMiHBEbKvhm7fJ5bsk",
  8988. "sync": false
  8989. },
  8990. {
  8991. "__type__": "cc.Node",
  8992. "_name": "BtRefuse",
  8993. "_objFlags": 0,
  8994. "_parent": {
  8995. "__id__": 213
  8996. },
  8997. "_children": [],
  8998. "_active": true,
  8999. "_components": [
  9000. {
  9001. "__id__": 240
  9002. },
  9003. {
  9004. "__id__": 241
  9005. }
  9006. ],
  9007. "_prefab": {
  9008. "__id__": 243
  9009. },
  9010. "_opacity": 255,
  9011. "_color": {
  9012. "__type__": "cc.Color",
  9013. "r": 255,
  9014. "g": 255,
  9015. "b": 255,
  9016. "a": 255
  9017. },
  9018. "_contentSize": {
  9019. "__type__": "cc.Size",
  9020. "width": 156,
  9021. "height": 54
  9022. },
  9023. "_anchorPoint": {
  9024. "__type__": "cc.Vec2",
  9025. "x": 0.5,
  9026. "y": 0.5
  9027. },
  9028. "_trs": {
  9029. "__type__": "TypedArray",
  9030. "ctor": "Float64Array",
  9031. "array": [
  9032. 427,
  9033. 0,
  9034. 0,
  9035. 0,
  9036. 0,
  9037. 0,
  9038. 1,
  9039. 1,
  9040. 1,
  9041. 1
  9042. ]
  9043. },
  9044. "_eulerAngles": {
  9045. "__type__": "cc.Vec3",
  9046. "x": 0,
  9047. "y": 0,
  9048. "z": 0
  9049. },
  9050. "_skewX": 0,
  9051. "_skewY": 0,
  9052. "_is3DNode": false,
  9053. "_groupIndex": 0,
  9054. "groupIndex": 0,
  9055. "_id": ""
  9056. },
  9057. {
  9058. "__type__": "cc.Sprite",
  9059. "_name": "",
  9060. "_objFlags": 0,
  9061. "node": {
  9062. "__id__": 239
  9063. },
  9064. "_enabled": true,
  9065. "_materials": [
  9066. {
  9067. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  9068. }
  9069. ],
  9070. "_srcBlendFactor": 770,
  9071. "_dstBlendFactor": 771,
  9072. "_spriteFrame": {
  9073. "__uuid__": "14bc16af-8790-45d7-a0ed-ea2bfe09cd53"
  9074. },
  9075. "_type": 0,
  9076. "_sizeMode": 1,
  9077. "_fillType": 0,
  9078. "_fillCenter": {
  9079. "__type__": "cc.Vec2",
  9080. "x": 0,
  9081. "y": 0
  9082. },
  9083. "_fillStart": 0,
  9084. "_fillRange": 0,
  9085. "_isTrimmedMode": true,
  9086. "_atlas": null,
  9087. "_id": ""
  9088. },
  9089. {
  9090. "__type__": "cc.Button",
  9091. "_name": "",
  9092. "_objFlags": 0,
  9093. "node": {
  9094. "__id__": 239
  9095. },
  9096. "_enabled": true,
  9097. "_normalMaterial": null,
  9098. "_grayMaterial": null,
  9099. "duration": 0.1,
  9100. "zoomScale": 1.2,
  9101. "clickEvents": [
  9102. {
  9103. "__id__": 242
  9104. }
  9105. ],
  9106. "_N$interactable": true,
  9107. "_N$enableAutoGrayEffect": false,
  9108. "_N$transition": 1,
  9109. "transition": 1,
  9110. "_N$normalColor": {
  9111. "__type__": "cc.Color",
  9112. "r": 255,
  9113. "g": 255,
  9114. "b": 255,
  9115. "a": 255
  9116. },
  9117. "_N$pressedColor": {
  9118. "__type__": "cc.Color",
  9119. "r": 211,
  9120. "g": 211,
  9121. "b": 211,
  9122. "a": 255
  9123. },
  9124. "pressedColor": {
  9125. "__type__": "cc.Color",
  9126. "r": 211,
  9127. "g": 211,
  9128. "b": 211,
  9129. "a": 255
  9130. },
  9131. "_N$hoverColor": {
  9132. "__type__": "cc.Color",
  9133. "r": 255,
  9134. "g": 255,
  9135. "b": 255,
  9136. "a": 255
  9137. },
  9138. "hoverColor": {
  9139. "__type__": "cc.Color",
  9140. "r": 255,
  9141. "g": 255,
  9142. "b": 255,
  9143. "a": 255
  9144. },
  9145. "_N$disabledColor": {
  9146. "__type__": "cc.Color",
  9147. "r": 124,
  9148. "g": 124,
  9149. "b": 124,
  9150. "a": 255
  9151. },
  9152. "_N$normalSprite": null,
  9153. "_N$pressedSprite": null,
  9154. "pressedSprite": null,
  9155. "_N$hoverSprite": null,
  9156. "hoverSprite": null,
  9157. "_N$disabledSprite": null,
  9158. "_N$target": {
  9159. "__id__": 239
  9160. },
  9161. "_id": ""
  9162. },
  9163. {
  9164. "__type__": "cc.ClickEvent",
  9165. "target": {
  9166. "__id__": 213
  9167. },
  9168. "component": "",
  9169. "_componentId": "7e609AsOHZDvJg6haZiTZWf",
  9170. "handler": "OnBtDelUser",
  9171. "customEventData": ""
  9172. },
  9173. {
  9174. "__type__": "cc.PrefabInfo",
  9175. "root": {
  9176. "__id__": 1
  9177. },
  9178. "asset": {
  9179. "__id__": 0
  9180. },
  9181. "fileId": "7f6brlWhZMfq8iMEZhLJBc",
  9182. "sync": false
  9183. },
  9184. {
  9185. "__type__": "cc.Node",
  9186. "_name": "BtAgree",
  9187. "_objFlags": 0,
  9188. "_parent": {
  9189. "__id__": 213
  9190. },
  9191. "_children": [],
  9192. "_active": true,
  9193. "_components": [
  9194. {
  9195. "__id__": 245
  9196. },
  9197. {
  9198. "__id__": 246
  9199. }
  9200. ],
  9201. "_prefab": {
  9202. "__id__": 248
  9203. },
  9204. "_opacity": 255,
  9205. "_color": {
  9206. "__type__": "cc.Color",
  9207. "r": 255,
  9208. "g": 255,
  9209. "b": 255,
  9210. "a": 255
  9211. },
  9212. "_contentSize": {
  9213. "__type__": "cc.Size",
  9214. "width": 156,
  9215. "height": 54
  9216. },
  9217. "_anchorPoint": {
  9218. "__type__": "cc.Vec2",
  9219. "x": 0.5,
  9220. "y": 0.5
  9221. },
  9222. "_trs": {
  9223. "__type__": "TypedArray",
  9224. "ctor": "Float64Array",
  9225. "array": [
  9226. 243,
  9227. 0,
  9228. 0,
  9229. 0,
  9230. 0,
  9231. 0,
  9232. 1,
  9233. 1,
  9234. 1,
  9235. 1
  9236. ]
  9237. },
  9238. "_eulerAngles": {
  9239. "__type__": "cc.Vec3",
  9240. "x": 0,
  9241. "y": 0,
  9242. "z": 0
  9243. },
  9244. "_skewX": 0,
  9245. "_skewY": 0,
  9246. "_is3DNode": false,
  9247. "_groupIndex": 0,
  9248. "groupIndex": 0,
  9249. "_id": ""
  9250. },
  9251. {
  9252. "__type__": "cc.Sprite",
  9253. "_name": "",
  9254. "_objFlags": 0,
  9255. "node": {
  9256. "__id__": 244
  9257. },
  9258. "_enabled": true,
  9259. "_materials": [
  9260. {
  9261. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  9262. }
  9263. ],
  9264. "_srcBlendFactor": 770,
  9265. "_dstBlendFactor": 771,
  9266. "_spriteFrame": {
  9267. "__uuid__": "a81f02fb-f736-4d83-917d-58b9f91dfc4d"
  9268. },
  9269. "_type": 0,
  9270. "_sizeMode": 1,
  9271. "_fillType": 0,
  9272. "_fillCenter": {
  9273. "__type__": "cc.Vec2",
  9274. "x": 0,
  9275. "y": 0
  9276. },
  9277. "_fillStart": 0,
  9278. "_fillRange": 0,
  9279. "_isTrimmedMode": true,
  9280. "_atlas": null,
  9281. "_id": ""
  9282. },
  9283. {
  9284. "__type__": "cc.Button",
  9285. "_name": "",
  9286. "_objFlags": 0,
  9287. "node": {
  9288. "__id__": 244
  9289. },
  9290. "_enabled": true,
  9291. "_normalMaterial": null,
  9292. "_grayMaterial": null,
  9293. "duration": 0.1,
  9294. "zoomScale": 1.2,
  9295. "clickEvents": [
  9296. {
  9297. "__id__": 247
  9298. }
  9299. ],
  9300. "_N$interactable": true,
  9301. "_N$enableAutoGrayEffect": false,
  9302. "_N$transition": 1,
  9303. "transition": 1,
  9304. "_N$normalColor": {
  9305. "__type__": "cc.Color",
  9306. "r": 255,
  9307. "g": 255,
  9308. "b": 255,
  9309. "a": 255
  9310. },
  9311. "_N$pressedColor": {
  9312. "__type__": "cc.Color",
  9313. "r": 211,
  9314. "g": 211,
  9315. "b": 211,
  9316. "a": 255
  9317. },
  9318. "pressedColor": {
  9319. "__type__": "cc.Color",
  9320. "r": 211,
  9321. "g": 211,
  9322. "b": 211,
  9323. "a": 255
  9324. },
  9325. "_N$hoverColor": {
  9326. "__type__": "cc.Color",
  9327. "r": 255,
  9328. "g": 255,
  9329. "b": 255,
  9330. "a": 255
  9331. },
  9332. "hoverColor": {
  9333. "__type__": "cc.Color",
  9334. "r": 255,
  9335. "g": 255,
  9336. "b": 255,
  9337. "a": 255
  9338. },
  9339. "_N$disabledColor": {
  9340. "__type__": "cc.Color",
  9341. "r": 124,
  9342. "g": 124,
  9343. "b": 124,
  9344. "a": 255
  9345. },
  9346. "_N$normalSprite": null,
  9347. "_N$pressedSprite": null,
  9348. "pressedSprite": null,
  9349. "_N$hoverSprite": null,
  9350. "hoverSprite": null,
  9351. "_N$disabledSprite": null,
  9352. "_N$target": {
  9353. "__id__": 244
  9354. },
  9355. "_id": ""
  9356. },
  9357. {
  9358. "__type__": "cc.ClickEvent",
  9359. "target": {
  9360. "__id__": 213
  9361. },
  9362. "component": "",
  9363. "_componentId": "7e609AsOHZDvJg6haZiTZWf",
  9364. "handler": "OnBtAgree",
  9365. "customEventData": ""
  9366. },
  9367. {
  9368. "__type__": "cc.PrefabInfo",
  9369. "root": {
  9370. "__id__": 1
  9371. },
  9372. "asset": {
  9373. "__id__": 0
  9374. },
  9375. "fileId": "52U8w7s9xJhbljRm2qCx7I",
  9376. "sync": false
  9377. },
  9378. {
  9379. "__type__": "e5b4cMwR9xJS5FMbqdmDi74",
  9380. "_name": "",
  9381. "_objFlags": 0,
  9382. "node": {
  9383. "__id__": 213
  9384. },
  9385. "_enabled": true,
  9386. "m_HeadNode": {
  9387. "__id__": 215
  9388. },
  9389. "m_HeadErr": null,
  9390. "m_SpGender": [],
  9391. "m_LabNick": {
  9392. "__id__": 222
  9393. },
  9394. "m_LabID": {
  9395. "__id__": 234
  9396. },
  9397. "m_BtKick": null,
  9398. "m_SpGenderstr": null,
  9399. "_id": ""
  9400. },
  9401. {
  9402. "__type__": "7e609AsOHZDvJg6haZiTZWf",
  9403. "_name": "",
  9404. "_objFlags": 0,
  9405. "node": {
  9406. "__id__": 213
  9407. },
  9408. "_enabled": true,
  9409. "_id": ""
  9410. },
  9411. {
  9412. "__type__": "cc.Button",
  9413. "_name": "",
  9414. "_objFlags": 0,
  9415. "node": {
  9416. "__id__": 213
  9417. },
  9418. "_enabled": false,
  9419. "_normalMaterial": null,
  9420. "_grayMaterial": null,
  9421. "duration": 0.1,
  9422. "zoomScale": 1.2,
  9423. "clickEvents": [
  9424. {
  9425. "__id__": 252
  9426. }
  9427. ],
  9428. "_N$interactable": true,
  9429. "_N$enableAutoGrayEffect": false,
  9430. "_N$transition": 0,
  9431. "transition": 0,
  9432. "_N$normalColor": {
  9433. "__type__": "cc.Color",
  9434. "r": 214,
  9435. "g": 214,
  9436. "b": 214,
  9437. "a": 255
  9438. },
  9439. "_N$pressedColor": {
  9440. "__type__": "cc.Color",
  9441. "r": 211,
  9442. "g": 211,
  9443. "b": 211,
  9444. "a": 255
  9445. },
  9446. "pressedColor": {
  9447. "__type__": "cc.Color",
  9448. "r": 211,
  9449. "g": 211,
  9450. "b": 211,
  9451. "a": 255
  9452. },
  9453. "_N$hoverColor": {
  9454. "__type__": "cc.Color",
  9455. "r": 255,
  9456. "g": 255,
  9457. "b": 255,
  9458. "a": 255
  9459. },
  9460. "hoverColor": {
  9461. "__type__": "cc.Color",
  9462. "r": 255,
  9463. "g": 255,
  9464. "b": 255,
  9465. "a": 255
  9466. },
  9467. "_N$disabledColor": {
  9468. "__type__": "cc.Color",
  9469. "r": 124,
  9470. "g": 124,
  9471. "b": 124,
  9472. "a": 255
  9473. },
  9474. "_N$normalSprite": null,
  9475. "_N$pressedSprite": null,
  9476. "pressedSprite": null,
  9477. "_N$hoverSprite": null,
  9478. "hoverSprite": null,
  9479. "_N$disabledSprite": null,
  9480. "_N$target": {
  9481. "__id__": 213
  9482. },
  9483. "_id": ""
  9484. },
  9485. {
  9486. "__type__": "cc.ClickEvent",
  9487. "target": {
  9488. "__id__": 213
  9489. },
  9490. "component": "",
  9491. "_componentId": "7e609AsOHZDvJg6haZiTZWf",
  9492. "handler": "OnBtShowUserInfo",
  9493. "customEventData": ""
  9494. },
  9495. {
  9496. "__type__": "cc.Sprite",
  9497. "_name": "",
  9498. "_objFlags": 0,
  9499. "node": {
  9500. "__id__": 213
  9501. },
  9502. "_enabled": true,
  9503. "_materials": [
  9504. {
  9505. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  9506. }
  9507. ],
  9508. "_srcBlendFactor": 770,
  9509. "_dstBlendFactor": 771,
  9510. "_spriteFrame": {
  9511. "__uuid__": "33e333e5-56d9-4374-b5d5-24da2797dd50"
  9512. },
  9513. "_type": 1,
  9514. "_sizeMode": 0,
  9515. "_fillType": 0,
  9516. "_fillCenter": {
  9517. "__type__": "cc.Vec2",
  9518. "x": 0,
  9519. "y": 0
  9520. },
  9521. "_fillStart": 0,
  9522. "_fillRange": 0,
  9523. "_isTrimmedMode": true,
  9524. "_atlas": null,
  9525. "_id": ""
  9526. },
  9527. {
  9528. "__type__": "cc.PrefabInfo",
  9529. "root": {
  9530. "__id__": 1
  9531. },
  9532. "asset": {
  9533. "__id__": 0
  9534. },
  9535. "fileId": "7bvJo1vr1O6ruRRq4z8R6N",
  9536. "sync": false
  9537. },
  9538. {
  9539. "__type__": "cc.Layout",
  9540. "_name": "",
  9541. "_objFlags": 0,
  9542. "node": {
  9543. "__id__": 212
  9544. },
  9545. "_enabled": true,
  9546. "_layoutSize": {
  9547. "__type__": "cc.Size",
  9548. "width": 1050,
  9549. "height": 88
  9550. },
  9551. "_resize": 1,
  9552. "_N$layoutType": 2,
  9553. "_N$cellSize": {
  9554. "__type__": "cc.Size",
  9555. "width": 40,
  9556. "height": 40
  9557. },
  9558. "_N$startAxis": 0,
  9559. "_N$paddingLeft": 0,
  9560. "_N$paddingRight": 0,
  9561. "_N$paddingTop": 0,
  9562. "_N$paddingBottom": 0,
  9563. "_N$spacingX": 0,
  9564. "_N$spacingY": 2,
  9565. "_N$verticalDirection": 1,
  9566. "_N$horizontalDirection": 0,
  9567. "_N$affectedByScale": false,
  9568. "_id": ""
  9569. },
  9570. {
  9571. "__type__": "cc.PrefabInfo",
  9572. "root": {
  9573. "__id__": 1
  9574. },
  9575. "asset": {
  9576. "__id__": 0
  9577. },
  9578. "fileId": "52D0QTmc1J75xqH/8fLqAE",
  9579. "sync": false
  9580. },
  9581. {
  9582. "__type__": "cc.Mask",
  9583. "_name": "",
  9584. "_objFlags": 0,
  9585. "node": {
  9586. "__id__": 211
  9587. },
  9588. "_enabled": true,
  9589. "_materials": [
  9590. {
  9591. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  9592. }
  9593. ],
  9594. "_spriteFrame": null,
  9595. "_type": 0,
  9596. "_segments": 64,
  9597. "_N$alphaThreshold": 1,
  9598. "_N$inverted": false,
  9599. "_id": ""
  9600. },
  9601. {
  9602. "__type__": "cc.PrefabInfo",
  9603. "root": {
  9604. "__id__": 1
  9605. },
  9606. "asset": {
  9607. "__id__": 0
  9608. },
  9609. "fileId": "27z/62llBEP6cQQKoE4mr4",
  9610. "sync": false
  9611. },
  9612. {
  9613. "__type__": "cc.Node",
  9614. "_name": "BtRefuseAll",
  9615. "_objFlags": 0,
  9616. "_parent": {
  9617. "__id__": 210
  9618. },
  9619. "_children": [],
  9620. "_active": true,
  9621. "_components": [
  9622. {
  9623. "__id__": 260
  9624. },
  9625. {
  9626. "__id__": 261
  9627. }
  9628. ],
  9629. "_prefab": {
  9630. "__id__": 263
  9631. },
  9632. "_opacity": 255,
  9633. "_color": {
  9634. "__type__": "cc.Color",
  9635. "r": 255,
  9636. "g": 255,
  9637. "b": 255,
  9638. "a": 255
  9639. },
  9640. "_contentSize": {
  9641. "__type__": "cc.Size",
  9642. "width": 220,
  9643. "height": 74
  9644. },
  9645. "_anchorPoint": {
  9646. "__type__": "cc.Vec2",
  9647. "x": 0.5,
  9648. "y": 0.5
  9649. },
  9650. "_trs": {
  9651. "__type__": "TypedArray",
  9652. "ctor": "Float64Array",
  9653. "array": [
  9654. 180,
  9655. -322,
  9656. 0,
  9657. 0,
  9658. 0,
  9659. 0,
  9660. 1,
  9661. 1,
  9662. 1,
  9663. 1
  9664. ]
  9665. },
  9666. "_eulerAngles": {
  9667. "__type__": "cc.Vec3",
  9668. "x": 0,
  9669. "y": 0,
  9670. "z": 0
  9671. },
  9672. "_skewX": 0,
  9673. "_skewY": 0,
  9674. "_is3DNode": false,
  9675. "_groupIndex": 0,
  9676. "groupIndex": 0,
  9677. "_id": ""
  9678. },
  9679. {
  9680. "__type__": "cc.Sprite",
  9681. "_name": "",
  9682. "_objFlags": 0,
  9683. "node": {
  9684. "__id__": 259
  9685. },
  9686. "_enabled": true,
  9687. "_materials": [
  9688. {
  9689. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  9690. }
  9691. ],
  9692. "_srcBlendFactor": 770,
  9693. "_dstBlendFactor": 771,
  9694. "_spriteFrame": {
  9695. "__uuid__": "3901f809-f181-4ab5-9044-18eb1af95fb0"
  9696. },
  9697. "_type": 0,
  9698. "_sizeMode": 1,
  9699. "_fillType": 0,
  9700. "_fillCenter": {
  9701. "__type__": "cc.Vec2",
  9702. "x": 0,
  9703. "y": 0
  9704. },
  9705. "_fillStart": 0,
  9706. "_fillRange": 0,
  9707. "_isTrimmedMode": true,
  9708. "_atlas": null,
  9709. "_id": ""
  9710. },
  9711. {
  9712. "__type__": "cc.Button",
  9713. "_name": "",
  9714. "_objFlags": 0,
  9715. "node": {
  9716. "__id__": 259
  9717. },
  9718. "_enabled": true,
  9719. "_normalMaterial": null,
  9720. "_grayMaterial": null,
  9721. "duration": 0.1,
  9722. "zoomScale": 1.2,
  9723. "clickEvents": [
  9724. {
  9725. "__id__": 262
  9726. }
  9727. ],
  9728. "_N$interactable": true,
  9729. "_N$enableAutoGrayEffect": false,
  9730. "_N$transition": 1,
  9731. "transition": 1,
  9732. "_N$normalColor": {
  9733. "__type__": "cc.Color",
  9734. "r": 255,
  9735. "g": 255,
  9736. "b": 255,
  9737. "a": 255
  9738. },
  9739. "_N$pressedColor": {
  9740. "__type__": "cc.Color",
  9741. "r": 211,
  9742. "g": 211,
  9743. "b": 211,
  9744. "a": 255
  9745. },
  9746. "pressedColor": {
  9747. "__type__": "cc.Color",
  9748. "r": 211,
  9749. "g": 211,
  9750. "b": 211,
  9751. "a": 255
  9752. },
  9753. "_N$hoverColor": {
  9754. "__type__": "cc.Color",
  9755. "r": 255,
  9756. "g": 255,
  9757. "b": 255,
  9758. "a": 255
  9759. },
  9760. "hoverColor": {
  9761. "__type__": "cc.Color",
  9762. "r": 255,
  9763. "g": 255,
  9764. "b": 255,
  9765. "a": 255
  9766. },
  9767. "_N$disabledColor": {
  9768. "__type__": "cc.Color",
  9769. "r": 124,
  9770. "g": 124,
  9771. "b": 124,
  9772. "a": 255
  9773. },
  9774. "_N$normalSprite": null,
  9775. "_N$pressedSprite": null,
  9776. "pressedSprite": null,
  9777. "_N$hoverSprite": null,
  9778. "hoverSprite": null,
  9779. "_N$disabledSprite": null,
  9780. "_N$target": {
  9781. "__id__": 259
  9782. },
  9783. "_id": ""
  9784. },
  9785. {
  9786. "__type__": "cc.ClickEvent",
  9787. "target": {
  9788. "__id__": 1
  9789. },
  9790. "component": "",
  9791. "_componentId": "3efb7TR+3VB5oYxlOA7dbXx",
  9792. "handler": "OnBtWaitJoinAll",
  9793. "customEventData": "0"
  9794. },
  9795. {
  9796. "__type__": "cc.PrefabInfo",
  9797. "root": {
  9798. "__id__": 1
  9799. },
  9800. "asset": {
  9801. "__id__": 0
  9802. },
  9803. "fileId": "d3WMXZuFRFAZUFZyg0F/Q0",
  9804. "sync": false
  9805. },
  9806. {
  9807. "__type__": "cc.Node",
  9808. "_name": "BtAgreeAll",
  9809. "_objFlags": 0,
  9810. "_parent": {
  9811. "__id__": 210
  9812. },
  9813. "_children": [],
  9814. "_active": true,
  9815. "_components": [
  9816. {
  9817. "__id__": 265
  9818. },
  9819. {
  9820. "__id__": 266
  9821. }
  9822. ],
  9823. "_prefab": {
  9824. "__id__": 268
  9825. },
  9826. "_opacity": 255,
  9827. "_color": {
  9828. "__type__": "cc.Color",
  9829. "r": 255,
  9830. "g": 255,
  9831. "b": 255,
  9832. "a": 255
  9833. },
  9834. "_contentSize": {
  9835. "__type__": "cc.Size",
  9836. "width": 222,
  9837. "height": 76
  9838. },
  9839. "_anchorPoint": {
  9840. "__type__": "cc.Vec2",
  9841. "x": 0.5,
  9842. "y": 0.5
  9843. },
  9844. "_trs": {
  9845. "__type__": "TypedArray",
  9846. "ctor": "Float64Array",
  9847. "array": [
  9848. -165,
  9849. -322,
  9850. 0,
  9851. 0,
  9852. 0,
  9853. 0,
  9854. 1,
  9855. 1,
  9856. 1,
  9857. 1
  9858. ]
  9859. },
  9860. "_eulerAngles": {
  9861. "__type__": "cc.Vec3",
  9862. "x": 0,
  9863. "y": 0,
  9864. "z": 0
  9865. },
  9866. "_skewX": 0,
  9867. "_skewY": 0,
  9868. "_is3DNode": false,
  9869. "_groupIndex": 0,
  9870. "groupIndex": 0,
  9871. "_id": ""
  9872. },
  9873. {
  9874. "__type__": "cc.Sprite",
  9875. "_name": "",
  9876. "_objFlags": 0,
  9877. "node": {
  9878. "__id__": 264
  9879. },
  9880. "_enabled": true,
  9881. "_materials": [
  9882. {
  9883. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  9884. }
  9885. ],
  9886. "_srcBlendFactor": 770,
  9887. "_dstBlendFactor": 771,
  9888. "_spriteFrame": {
  9889. "__uuid__": "23982dd0-770d-47d3-8192-7bb9525d86bb"
  9890. },
  9891. "_type": 0,
  9892. "_sizeMode": 1,
  9893. "_fillType": 0,
  9894. "_fillCenter": {
  9895. "__type__": "cc.Vec2",
  9896. "x": 0,
  9897. "y": 0
  9898. },
  9899. "_fillStart": 0,
  9900. "_fillRange": 0,
  9901. "_isTrimmedMode": true,
  9902. "_atlas": null,
  9903. "_id": ""
  9904. },
  9905. {
  9906. "__type__": "cc.Button",
  9907. "_name": "",
  9908. "_objFlags": 0,
  9909. "node": {
  9910. "__id__": 264
  9911. },
  9912. "_enabled": true,
  9913. "_normalMaterial": null,
  9914. "_grayMaterial": null,
  9915. "duration": 0.1,
  9916. "zoomScale": 1.2,
  9917. "clickEvents": [
  9918. {
  9919. "__id__": 267
  9920. }
  9921. ],
  9922. "_N$interactable": true,
  9923. "_N$enableAutoGrayEffect": false,
  9924. "_N$transition": 1,
  9925. "transition": 1,
  9926. "_N$normalColor": {
  9927. "__type__": "cc.Color",
  9928. "r": 255,
  9929. "g": 255,
  9930. "b": 255,
  9931. "a": 255
  9932. },
  9933. "_N$pressedColor": {
  9934. "__type__": "cc.Color",
  9935. "r": 211,
  9936. "g": 211,
  9937. "b": 211,
  9938. "a": 255
  9939. },
  9940. "pressedColor": {
  9941. "__type__": "cc.Color",
  9942. "r": 211,
  9943. "g": 211,
  9944. "b": 211,
  9945. "a": 255
  9946. },
  9947. "_N$hoverColor": {
  9948. "__type__": "cc.Color",
  9949. "r": 255,
  9950. "g": 255,
  9951. "b": 255,
  9952. "a": 255
  9953. },
  9954. "hoverColor": {
  9955. "__type__": "cc.Color",
  9956. "r": 255,
  9957. "g": 255,
  9958. "b": 255,
  9959. "a": 255
  9960. },
  9961. "_N$disabledColor": {
  9962. "__type__": "cc.Color",
  9963. "r": 124,
  9964. "g": 124,
  9965. "b": 124,
  9966. "a": 255
  9967. },
  9968. "_N$normalSprite": null,
  9969. "_N$pressedSprite": null,
  9970. "pressedSprite": null,
  9971. "_N$hoverSprite": null,
  9972. "hoverSprite": null,
  9973. "_N$disabledSprite": null,
  9974. "_N$target": {
  9975. "__id__": 264
  9976. },
  9977. "_id": ""
  9978. },
  9979. {
  9980. "__type__": "cc.ClickEvent",
  9981. "target": {
  9982. "__id__": 1
  9983. },
  9984. "component": "",
  9985. "_componentId": "3efb7TR+3VB5oYxlOA7dbXx",
  9986. "handler": "OnBtWaitJoinAll",
  9987. "customEventData": "3"
  9988. },
  9989. {
  9990. "__type__": "cc.PrefabInfo",
  9991. "root": {
  9992. "__id__": 1
  9993. },
  9994. "asset": {
  9995. "__id__": 0
  9996. },
  9997. "fileId": "6aJpgNZapGia3Yj/nP5OOd",
  9998. "sync": false
  9999. },
  10000. {
  10001. "__type__": "cc.ScrollView",
  10002. "_name": "",
  10003. "_objFlags": 0,
  10004. "node": {
  10005. "__id__": 210
  10006. },
  10007. "_enabled": true,
  10008. "horizontal": false,
  10009. "vertical": true,
  10010. "inertia": true,
  10011. "brake": 0.75,
  10012. "elastic": true,
  10013. "bounceDuration": 0.23,
  10014. "scrollEvents": [],
  10015. "cancelInnerEvents": true,
  10016. "_N$content": {
  10017. "__id__": 212
  10018. },
  10019. "content": {
  10020. "__id__": 212
  10021. },
  10022. "_N$horizontalScrollBar": null,
  10023. "_N$verticalScrollBar": null,
  10024. "_id": ""
  10025. },
  10026. {
  10027. "__type__": "cc.PrefabInfo",
  10028. "root": {
  10029. "__id__": 1
  10030. },
  10031. "asset": {
  10032. "__id__": 0
  10033. },
  10034. "fileId": "43aW4c6W5Pma/6YUrTx34X",
  10035. "sync": false
  10036. },
  10037. {
  10038. "__type__": "cc.Node",
  10039. "_name": "2",
  10040. "_objFlags": 0,
  10041. "_parent": {
  10042. "__id__": 1
  10043. },
  10044. "_children": [
  10045. {
  10046. "__id__": 272
  10047. },
  10048. {
  10049. "__id__": 309
  10050. },
  10051. {
  10052. "__id__": 324
  10053. }
  10054. ],
  10055. "_active": false,
  10056. "_components": [
  10057. {
  10058. "__id__": 332
  10059. }
  10060. ],
  10061. "_prefab": {
  10062. "__id__": 333
  10063. },
  10064. "_opacity": 255,
  10065. "_color": {
  10066. "__type__": "cc.Color",
  10067. "r": 255,
  10068. "g": 255,
  10069. "b": 255,
  10070. "a": 255
  10071. },
  10072. "_contentSize": {
  10073. "__type__": "cc.Size",
  10074. "width": 1050,
  10075. "height": 550
  10076. },
  10077. "_anchorPoint": {
  10078. "__type__": "cc.Vec2",
  10079. "x": 0.5,
  10080. "y": 0.5
  10081. },
  10082. "_trs": {
  10083. "__type__": "TypedArray",
  10084. "ctor": "Float64Array",
  10085. "array": [
  10086. 127,
  10087. 8,
  10088. 0,
  10089. 0,
  10090. 0,
  10091. 0,
  10092. 1,
  10093. 1,
  10094. 1,
  10095. 1
  10096. ]
  10097. },
  10098. "_eulerAngles": {
  10099. "__type__": "cc.Vec3",
  10100. "x": 0,
  10101. "y": 0,
  10102. "z": 0
  10103. },
  10104. "_skewX": 0,
  10105. "_skewY": 0,
  10106. "_is3DNode": false,
  10107. "_groupIndex": 0,
  10108. "groupIndex": 0,
  10109. "_id": ""
  10110. },
  10111. {
  10112. "__type__": "cc.Node",
  10113. "_name": "view",
  10114. "_objFlags": 0,
  10115. "_parent": {
  10116. "__id__": 271
  10117. },
  10118. "_children": [
  10119. {
  10120. "__id__": 273
  10121. }
  10122. ],
  10123. "_active": true,
  10124. "_components": [
  10125. {
  10126. "__id__": 307
  10127. }
  10128. ],
  10129. "_prefab": {
  10130. "__id__": 308
  10131. },
  10132. "_opacity": 255,
  10133. "_color": {
  10134. "__type__": "cc.Color",
  10135. "r": 255,
  10136. "g": 255,
  10137. "b": 255,
  10138. "a": 255
  10139. },
  10140. "_contentSize": {
  10141. "__type__": "cc.Size",
  10142. "width": 1050,
  10143. "height": 550
  10144. },
  10145. "_anchorPoint": {
  10146. "__type__": "cc.Vec2",
  10147. "x": 0.5,
  10148. "y": 0.5
  10149. },
  10150. "_trs": {
  10151. "__type__": "TypedArray",
  10152. "ctor": "Float64Array",
  10153. "array": [
  10154. 0,
  10155. 0,
  10156. 0,
  10157. 0,
  10158. 0,
  10159. 0,
  10160. 1,
  10161. 1,
  10162. 1,
  10163. 1
  10164. ]
  10165. },
  10166. "_eulerAngles": {
  10167. "__type__": "cc.Vec3",
  10168. "x": 0,
  10169. "y": 0,
  10170. "z": 0
  10171. },
  10172. "_skewX": 0,
  10173. "_skewY": 0,
  10174. "_is3DNode": false,
  10175. "_groupIndex": 0,
  10176. "groupIndex": 0,
  10177. "_id": ""
  10178. },
  10179. {
  10180. "__type__": "cc.Node",
  10181. "_name": "content",
  10182. "_objFlags": 0,
  10183. "_parent": {
  10184. "__id__": 272
  10185. },
  10186. "_children": [
  10187. {
  10188. "__id__": 274
  10189. }
  10190. ],
  10191. "_active": true,
  10192. "_components": [
  10193. {
  10194. "__id__": 305
  10195. }
  10196. ],
  10197. "_prefab": {
  10198. "__id__": 306
  10199. },
  10200. "_opacity": 255,
  10201. "_color": {
  10202. "__type__": "cc.Color",
  10203. "r": 255,
  10204. "g": 255,
  10205. "b": 255,
  10206. "a": 255
  10207. },
  10208. "_contentSize": {
  10209. "__type__": "cc.Size",
  10210. "width": 1050,
  10211. "height": 80
  10212. },
  10213. "_anchorPoint": {
  10214. "__type__": "cc.Vec2",
  10215. "x": 0.5,
  10216. "y": 1
  10217. },
  10218. "_trs": {
  10219. "__type__": "TypedArray",
  10220. "ctor": "Float64Array",
  10221. "array": [
  10222. 0,
  10223. 273,
  10224. 0,
  10225. 0,
  10226. 0,
  10227. 0,
  10228. 1,
  10229. 1,
  10230. 1,
  10231. 1
  10232. ]
  10233. },
  10234. "_eulerAngles": {
  10235. "__type__": "cc.Vec3",
  10236. "x": 0,
  10237. "y": 0,
  10238. "z": 0
  10239. },
  10240. "_skewX": 0,
  10241. "_skewY": 0,
  10242. "_is3DNode": false,
  10243. "_groupIndex": 0,
  10244. "groupIndex": 0,
  10245. "_id": ""
  10246. },
  10247. {
  10248. "__type__": "cc.Node",
  10249. "_name": "ClubUserPre",
  10250. "_objFlags": 0,
  10251. "_parent": {
  10252. "__id__": 273
  10253. },
  10254. "_children": [
  10255. {
  10256. "__id__": 275
  10257. },
  10258. {
  10259. "__id__": 278
  10260. },
  10261. {
  10262. "__id__": 285
  10263. },
  10264. {
  10265. "__id__": 288
  10266. },
  10267. {
  10268. "__id__": 294
  10269. }
  10270. ],
  10271. "_active": true,
  10272. "_components": [
  10273. {
  10274. "__id__": 299
  10275. },
  10276. {
  10277. "__id__": 300
  10278. },
  10279. {
  10280. "__id__": 301
  10281. },
  10282. {
  10283. "__id__": 303
  10284. }
  10285. ],
  10286. "_prefab": {
  10287. "__id__": 304
  10288. },
  10289. "_opacity": 255,
  10290. "_color": {
  10291. "__type__": "cc.Color",
  10292. "r": 255,
  10293. "g": 255,
  10294. "b": 255,
  10295. "a": 255
  10296. },
  10297. "_contentSize": {
  10298. "__type__": "cc.Size",
  10299. "width": 1050,
  10300. "height": 80
  10301. },
  10302. "_anchorPoint": {
  10303. "__type__": "cc.Vec2",
  10304. "x": 0.5,
  10305. "y": 0.5
  10306. },
  10307. "_trs": {
  10308. "__type__": "TypedArray",
  10309. "ctor": "Float64Array",
  10310. "array": [
  10311. 0,
  10312. -40,
  10313. 0,
  10314. 0,
  10315. 0,
  10316. 0,
  10317. 1,
  10318. 1,
  10319. 1,
  10320. 1
  10321. ]
  10322. },
  10323. "_eulerAngles": {
  10324. "__type__": "cc.Vec3",
  10325. "x": 0,
  10326. "y": 0,
  10327. "z": 0
  10328. },
  10329. "_skewX": 0,
  10330. "_skewY": 0,
  10331. "_is3DNode": false,
  10332. "_groupIndex": 0,
  10333. "groupIndex": 0,
  10334. "_id": ""
  10335. },
  10336. {
  10337. "__type__": "cc.Node",
  10338. "_name": "BG2",
  10339. "_objFlags": 0,
  10340. "_parent": {
  10341. "__id__": 274
  10342. },
  10343. "_children": [],
  10344. "_active": true,
  10345. "_components": [
  10346. {
  10347. "__id__": 276
  10348. }
  10349. ],
  10350. "_prefab": {
  10351. "__id__": 277
  10352. },
  10353. "_opacity": 255,
  10354. "_color": {
  10355. "__type__": "cc.Color",
  10356. "r": 255,
  10357. "g": 255,
  10358. "b": 255,
  10359. "a": 255
  10360. },
  10361. "_contentSize": {
  10362. "__type__": "cc.Size",
  10363. "width": 86,
  10364. "height": 60
  10365. },
  10366. "_anchorPoint": {
  10367. "__type__": "cc.Vec2",
  10368. "x": 0.5,
  10369. "y": 0.5
  10370. },
  10371. "_trs": {
  10372. "__type__": "TypedArray",
  10373. "ctor": "Float64Array",
  10374. "array": [
  10375. 59.292,
  10376. 0,
  10377. 0,
  10378. 0,
  10379. 0,
  10380. 0,
  10381. 1,
  10382. 1,
  10383. 1,
  10384. 1
  10385. ]
  10386. },
  10387. "_eulerAngles": {
  10388. "__type__": "cc.Vec3",
  10389. "x": 0,
  10390. "y": 0,
  10391. "z": 0
  10392. },
  10393. "_skewX": 0,
  10394. "_skewY": 0,
  10395. "_is3DNode": false,
  10396. "_groupIndex": 0,
  10397. "groupIndex": 0,
  10398. "_id": ""
  10399. },
  10400. {
  10401. "__type__": "cc.Sprite",
  10402. "_name": "",
  10403. "_objFlags": 0,
  10404. "node": {
  10405. "__id__": 275
  10406. },
  10407. "_enabled": true,
  10408. "_materials": [
  10409. {
  10410. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  10411. }
  10412. ],
  10413. "_srcBlendFactor": 770,
  10414. "_dstBlendFactor": 771,
  10415. "_spriteFrame": {
  10416. "__uuid__": "64eb19af-e538-4440-82bd-e003ae27f5f2"
  10417. },
  10418. "_type": 0,
  10419. "_sizeMode": 1,
  10420. "_fillType": 0,
  10421. "_fillCenter": {
  10422. "__type__": "cc.Vec2",
  10423. "x": 0,
  10424. "y": 0
  10425. },
  10426. "_fillStart": 0,
  10427. "_fillRange": 0,
  10428. "_isTrimmedMode": true,
  10429. "_atlas": null,
  10430. "_id": ""
  10431. },
  10432. {
  10433. "__type__": "cc.PrefabInfo",
  10434. "root": {
  10435. "__id__": 1
  10436. },
  10437. "asset": {
  10438. "__id__": 0
  10439. },
  10440. "fileId": "5dAMPqb4dFVLZrIQAURjlI",
  10441. "sync": false
  10442. },
  10443. {
  10444. "__type__": "cc.Node",
  10445. "_name": "FaceBG",
  10446. "_objFlags": 0,
  10447. "_parent": {
  10448. "__id__": 274
  10449. },
  10450. "_children": [
  10451. {
  10452. "__id__": 279
  10453. }
  10454. ],
  10455. "_active": true,
  10456. "_components": [
  10457. {
  10458. "__id__": 283
  10459. }
  10460. ],
  10461. "_prefab": {
  10462. "__id__": 284
  10463. },
  10464. "_opacity": 255,
  10465. "_color": {
  10466. "__type__": "cc.Color",
  10467. "r": 255,
  10468. "g": 255,
  10469. "b": 255,
  10470. "a": 255
  10471. },
  10472. "_contentSize": {
  10473. "__type__": "cc.Size",
  10474. "width": 60,
  10475. "height": 60
  10476. },
  10477. "_anchorPoint": {
  10478. "__type__": "cc.Vec2",
  10479. "x": 0.5,
  10480. "y": 0.5
  10481. },
  10482. "_trs": {
  10483. "__type__": "TypedArray",
  10484. "ctor": "Float64Array",
  10485. "array": [
  10486. -460,
  10487. 0,
  10488. 0,
  10489. 0,
  10490. 0,
  10491. 0,
  10492. 1,
  10493. 1,
  10494. 1,
  10495. 1
  10496. ]
  10497. },
  10498. "_eulerAngles": {
  10499. "__type__": "cc.Vec3",
  10500. "x": 0,
  10501. "y": 0,
  10502. "z": 0
  10503. },
  10504. "_skewX": 0,
  10505. "_skewY": 0,
  10506. "_is3DNode": false,
  10507. "_groupIndex": 0,
  10508. "groupIndex": 0,
  10509. "_id": ""
  10510. },
  10511. {
  10512. "__type__": "cc.Node",
  10513. "_name": "Head",
  10514. "_objFlags": 0,
  10515. "_parent": {
  10516. "__id__": 278
  10517. },
  10518. "_children": [],
  10519. "_active": true,
  10520. "_components": [
  10521. {
  10522. "__id__": 280
  10523. },
  10524. {
  10525. "__id__": 281
  10526. }
  10527. ],
  10528. "_prefab": {
  10529. "__id__": 282
  10530. },
  10531. "_opacity": 255,
  10532. "_color": {
  10533. "__type__": "cc.Color",
  10534. "r": 255,
  10535. "g": 255,
  10536. "b": 255,
  10537. "a": 255
  10538. },
  10539. "_contentSize": {
  10540. "__type__": "cc.Size",
  10541. "width": 60,
  10542. "height": 60
  10543. },
  10544. "_anchorPoint": {
  10545. "__type__": "cc.Vec2",
  10546. "x": 0.5,
  10547. "y": 0.5
  10548. },
  10549. "_trs": {
  10550. "__type__": "TypedArray",
  10551. "ctor": "Float64Array",
  10552. "array": [
  10553. 0.2,
  10554. -0.2,
  10555. 0,
  10556. 0,
  10557. 0,
  10558. 0,
  10559. 1,
  10560. 1,
  10561. 1,
  10562. 1
  10563. ]
  10564. },
  10565. "_eulerAngles": {
  10566. "__type__": "cc.Vec3",
  10567. "x": 0,
  10568. "y": 0,
  10569. "z": 0
  10570. },
  10571. "_skewX": 0,
  10572. "_skewY": 0,
  10573. "_is3DNode": false,
  10574. "_groupIndex": 0,
  10575. "groupIndex": 0,
  10576. "_id": ""
  10577. },
  10578. {
  10579. "__type__": "cc.Sprite",
  10580. "_name": "",
  10581. "_objFlags": 0,
  10582. "node": {
  10583. "__id__": 279
  10584. },
  10585. "_enabled": true,
  10586. "_materials": [
  10587. {
  10588. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  10589. }
  10590. ],
  10591. "_srcBlendFactor": 770,
  10592. "_dstBlendFactor": 771,
  10593. "_spriteFrame": {
  10594. "__uuid__": "e89b6424-6e0e-40c6-a616-825520889cf9"
  10595. },
  10596. "_type": 0,
  10597. "_sizeMode": 0,
  10598. "_fillType": 0,
  10599. "_fillCenter": {
  10600. "__type__": "cc.Vec2",
  10601. "x": 0,
  10602. "y": 0
  10603. },
  10604. "_fillStart": 0,
  10605. "_fillRange": 0,
  10606. "_isTrimmedMode": true,
  10607. "_atlas": {
  10608. "__uuid__": "23645516-1e5d-4004-8d4a-0059dc01a9e6"
  10609. },
  10610. "_id": ""
  10611. },
  10612. {
  10613. "__type__": "ddbf3/ydj5JQ5BheoGAThK5",
  10614. "_name": "",
  10615. "_objFlags": 0,
  10616. "node": {
  10617. "__id__": 279
  10618. },
  10619. "_enabled": true,
  10620. "_id": ""
  10621. },
  10622. {
  10623. "__type__": "cc.PrefabInfo",
  10624. "root": {
  10625. "__id__": 1
  10626. },
  10627. "asset": {
  10628. "__id__": 0
  10629. },
  10630. "fileId": "4dPzBVfs9KTYBPdFH/1B/X",
  10631. "sync": false
  10632. },
  10633. {
  10634. "__type__": "cc.Sprite",
  10635. "_name": "",
  10636. "_objFlags": 0,
  10637. "node": {
  10638. "__id__": 278
  10639. },
  10640. "_enabled": true,
  10641. "_materials": [
  10642. {
  10643. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  10644. }
  10645. ],
  10646. "_srcBlendFactor": 770,
  10647. "_dstBlendFactor": 771,
  10648. "_spriteFrame": null,
  10649. "_type": 0,
  10650. "_sizeMode": 0,
  10651. "_fillType": 0,
  10652. "_fillCenter": {
  10653. "__type__": "cc.Vec2",
  10654. "x": 0,
  10655. "y": 0
  10656. },
  10657. "_fillStart": 0,
  10658. "_fillRange": 0,
  10659. "_isTrimmedMode": true,
  10660. "_atlas": null,
  10661. "_id": ""
  10662. },
  10663. {
  10664. "__type__": "cc.PrefabInfo",
  10665. "root": {
  10666. "__id__": 1
  10667. },
  10668. "asset": {
  10669. "__id__": 0
  10670. },
  10671. "fileId": "1aeeESR4VH1LZeoByTLrGD",
  10672. "sync": false
  10673. },
  10674. {
  10675. "__type__": "cc.Node",
  10676. "_name": "NickName",
  10677. "_objFlags": 0,
  10678. "_parent": {
  10679. "__id__": 274
  10680. },
  10681. "_children": [],
  10682. "_active": true,
  10683. "_components": [
  10684. {
  10685. "__id__": 286
  10686. }
  10687. ],
  10688. "_prefab": {
  10689. "__id__": 287
  10690. },
  10691. "_opacity": 255,
  10692. "_color": {
  10693. "__type__": "cc.Color",
  10694. "r": 201,
  10695. "g": 73,
  10696. "b": 36,
  10697. "a": 255
  10698. },
  10699. "_contentSize": {
  10700. "__type__": "cc.Size",
  10701. "width": 180,
  10702. "height": 37.8
  10703. },
  10704. "_anchorPoint": {
  10705. "__type__": "cc.Vec2",
  10706. "x": 0,
  10707. "y": 0.5
  10708. },
  10709. "_trs": {
  10710. "__type__": "TypedArray",
  10711. "ctor": "Float64Array",
  10712. "array": [
  10713. -396,
  10714. 3,
  10715. 0,
  10716. 0,
  10717. 0,
  10718. 0,
  10719. 1,
  10720. 1,
  10721. 1,
  10722. 1
  10723. ]
  10724. },
  10725. "_eulerAngles": {
  10726. "__type__": "cc.Vec3",
  10727. "x": 0,
  10728. "y": 0,
  10729. "z": 0
  10730. },
  10731. "_skewX": 0,
  10732. "_skewY": 0,
  10733. "_is3DNode": false,
  10734. "_groupIndex": 0,
  10735. "groupIndex": 0,
  10736. "_id": ""
  10737. },
  10738. {
  10739. "__type__": "cc.Label",
  10740. "_name": "",
  10741. "_objFlags": 0,
  10742. "node": {
  10743. "__id__": 285
  10744. },
  10745. "_enabled": true,
  10746. "_materials": [
  10747. {
  10748. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  10749. }
  10750. ],
  10751. "_srcBlendFactor": 770,
  10752. "_dstBlendFactor": 771,
  10753. "_string": "玩家六字昵稱",
  10754. "_N$string": "玩家六字昵稱",
  10755. "_fontSize": 30,
  10756. "_lineHeight": 30,
  10757. "_enableWrapText": false,
  10758. "_N$file": {
  10759. "__uuid__": "8232a6ae-f8d5-41ca-a32f-6ce1a50a585f"
  10760. },
  10761. "_isSystemFontUsed": false,
  10762. "_spacingX": 0,
  10763. "_batchAsBitmap": false,
  10764. "_styleFlags": 0,
  10765. "_underlineHeight": 0,
  10766. "_N$horizontalAlign": 0,
  10767. "_N$verticalAlign": 1,
  10768. "_N$fontFamily": "Arial",
  10769. "_N$overflow": 1,
  10770. "_N$cacheMode": 0,
  10771. "_id": ""
  10772. },
  10773. {
  10774. "__type__": "cc.PrefabInfo",
  10775. "root": {
  10776. "__id__": 1
  10777. },
  10778. "asset": {
  10779. "__id__": 0
  10780. },
  10781. "fileId": "4bsAMpHSdGabu//T0gjCIu",
  10782. "sync": false
  10783. },
  10784. {
  10785. "__type__": "cc.Node",
  10786. "_name": "ID",
  10787. "_objFlags": 0,
  10788. "_parent": {
  10789. "__id__": 274
  10790. },
  10791. "_children": [
  10792. {
  10793. "__id__": 289
  10794. }
  10795. ],
  10796. "_active": true,
  10797. "_components": [
  10798. {
  10799. "__id__": 292
  10800. }
  10801. ],
  10802. "_prefab": {
  10803. "__id__": 293
  10804. },
  10805. "_opacity": 255,
  10806. "_color": {
  10807. "__type__": "cc.Color",
  10808. "r": 201,
  10809. "g": 73,
  10810. "b": 36,
  10811. "a": 255
  10812. },
  10813. "_contentSize": {
  10814. "__type__": "cc.Size",
  10815. "width": 45,
  10816. "height": 37.8
  10817. },
  10818. "_anchorPoint": {
  10819. "__type__": "cc.Vec2",
  10820. "x": 0.5,
  10821. "y": 0.5
  10822. },
  10823. "_trs": {
  10824. "__type__": "TypedArray",
  10825. "ctor": "Float64Array",
  10826. "array": [
  10827. -125.293,
  10828. 3,
  10829. 0,
  10830. 0,
  10831. 0,
  10832. 0,
  10833. 1,
  10834. 1,
  10835. 1,
  10836. 1
  10837. ]
  10838. },
  10839. "_eulerAngles": {
  10840. "__type__": "cc.Vec3",
  10841. "x": 0,
  10842. "y": 0,
  10843. "z": 0
  10844. },
  10845. "_skewX": 0,
  10846. "_skewY": 0,
  10847. "_is3DNode": false,
  10848. "_groupIndex": 0,
  10849. "groupIndex": 0,
  10850. "_id": ""
  10851. },
  10852. {
  10853. "__type__": "cc.Node",
  10854. "_name": "ID",
  10855. "_objFlags": 0,
  10856. "_parent": {
  10857. "__id__": 288
  10858. },
  10859. "_children": [],
  10860. "_active": true,
  10861. "_components": [
  10862. {
  10863. "__id__": 290
  10864. }
  10865. ],
  10866. "_prefab": {
  10867. "__id__": 291
  10868. },
  10869. "_opacity": 255,
  10870. "_color": {
  10871. "__type__": "cc.Color",
  10872. "r": 201,
  10873. "g": 73,
  10874. "b": 36,
  10875. "a": 255
  10876. },
  10877. "_contentSize": {
  10878. "__type__": "cc.Size",
  10879. "width": 90,
  10880. "height": 37.8
  10881. },
  10882. "_anchorPoint": {
  10883. "__type__": "cc.Vec2",
  10884. "x": 0.5,
  10885. "y": 0.5
  10886. },
  10887. "_trs": {
  10888. "__type__": "TypedArray",
  10889. "ctor": "Float64Array",
  10890. "array": [
  10891. 70,
  10892. 0,
  10893. 0,
  10894. 0,
  10895. 0,
  10896. 0,
  10897. 1,
  10898. 1,
  10899. 1,
  10900. 1
  10901. ]
  10902. },
  10903. "_eulerAngles": {
  10904. "__type__": "cc.Vec3",
  10905. "x": 0,
  10906. "y": 0,
  10907. "z": 0
  10908. },
  10909. "_skewX": 0,
  10910. "_skewY": 0,
  10911. "_is3DNode": false,
  10912. "_groupIndex": 0,
  10913. "groupIndex": 0,
  10914. "_id": ""
  10915. },
  10916. {
  10917. "__type__": "cc.Label",
  10918. "_name": "",
  10919. "_objFlags": 0,
  10920. "node": {
  10921. "__id__": 289
  10922. },
  10923. "_enabled": true,
  10924. "_materials": [
  10925. {
  10926. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  10927. }
  10928. ],
  10929. "_srcBlendFactor": 770,
  10930. "_dstBlendFactor": 771,
  10931. "_string": "123456",
  10932. "_N$string": "123456",
  10933. "_fontSize": 30,
  10934. "_lineHeight": 30,
  10935. "_enableWrapText": true,
  10936. "_N$file": {
  10937. "__uuid__": "8232a6ae-f8d5-41ca-a32f-6ce1a50a585f"
  10938. },
  10939. "_isSystemFontUsed": false,
  10940. "_spacingX": 0,
  10941. "_batchAsBitmap": false,
  10942. "_styleFlags": 0,
  10943. "_underlineHeight": 0,
  10944. "_N$horizontalAlign": 1,
  10945. "_N$verticalAlign": 1,
  10946. "_N$fontFamily": "Arial",
  10947. "_N$overflow": 0,
  10948. "_N$cacheMode": 0,
  10949. "_id": ""
  10950. },
  10951. {
  10952. "__type__": "cc.PrefabInfo",
  10953. "root": {
  10954. "__id__": 1
  10955. },
  10956. "asset": {
  10957. "__id__": 0
  10958. },
  10959. "fileId": "8da21i+vBOrrEeUwcsn7O6",
  10960. "sync": false
  10961. },
  10962. {
  10963. "__type__": "cc.Label",
  10964. "_name": "",
  10965. "_objFlags": 0,
  10966. "node": {
  10967. "__id__": 288
  10968. },
  10969. "_enabled": true,
  10970. "_materials": [
  10971. {
  10972. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  10973. }
  10974. ],
  10975. "_srcBlendFactor": 770,
  10976. "_dstBlendFactor": 771,
  10977. "_string": "ID:",
  10978. "_N$string": "ID:",
  10979. "_fontSize": 30,
  10980. "_lineHeight": 30,
  10981. "_enableWrapText": true,
  10982. "_N$file": {
  10983. "__uuid__": "8232a6ae-f8d5-41ca-a32f-6ce1a50a585f"
  10984. },
  10985. "_isSystemFontUsed": false,
  10986. "_spacingX": 0,
  10987. "_batchAsBitmap": false,
  10988. "_styleFlags": 0,
  10989. "_underlineHeight": 0,
  10990. "_N$horizontalAlign": 1,
  10991. "_N$verticalAlign": 1,
  10992. "_N$fontFamily": "Arial",
  10993. "_N$overflow": 0,
  10994. "_N$cacheMode": 0,
  10995. "_id": ""
  10996. },
  10997. {
  10998. "__type__": "cc.PrefabInfo",
  10999. "root": {
  11000. "__id__": 1
  11001. },
  11002. "asset": {
  11003. "__id__": 0
  11004. },
  11005. "fileId": "d1B4GCcoNL35DI53rwGuyl",
  11006. "sync": false
  11007. },
  11008. {
  11009. "__type__": "cc.Node",
  11010. "_name": "BtKickOut",
  11011. "_objFlags": 0,
  11012. "_parent": {
  11013. "__id__": 274
  11014. },
  11015. "_children": [],
  11016. "_active": true,
  11017. "_components": [
  11018. {
  11019. "__id__": 295
  11020. },
  11021. {
  11022. "__id__": 296
  11023. }
  11024. ],
  11025. "_prefab": {
  11026. "__id__": 298
  11027. },
  11028. "_opacity": 255,
  11029. "_color": {
  11030. "__type__": "cc.Color",
  11031. "r": 255,
  11032. "g": 255,
  11033. "b": 255,
  11034. "a": 255
  11035. },
  11036. "_contentSize": {
  11037. "__type__": "cc.Size",
  11038. "width": 156,
  11039. "height": 54
  11040. },
  11041. "_anchorPoint": {
  11042. "__type__": "cc.Vec2",
  11043. "x": 0.5,
  11044. "y": 0.5
  11045. },
  11046. "_trs": {
  11047. "__type__": "TypedArray",
  11048. "ctor": "Float64Array",
  11049. "array": [
  11050. 410,
  11051. 0,
  11052. 0,
  11053. 0,
  11054. 0,
  11055. 0,
  11056. 1,
  11057. 1,
  11058. 1,
  11059. 1
  11060. ]
  11061. },
  11062. "_eulerAngles": {
  11063. "__type__": "cc.Vec3",
  11064. "x": 0,
  11065. "y": 0,
  11066. "z": 0
  11067. },
  11068. "_skewX": 0,
  11069. "_skewY": 0,
  11070. "_is3DNode": false,
  11071. "_groupIndex": 0,
  11072. "groupIndex": 0,
  11073. "_id": ""
  11074. },
  11075. {
  11076. "__type__": "cc.Sprite",
  11077. "_name": "",
  11078. "_objFlags": 0,
  11079. "node": {
  11080. "__id__": 294
  11081. },
  11082. "_enabled": true,
  11083. "_materials": [
  11084. {
  11085. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  11086. }
  11087. ],
  11088. "_srcBlendFactor": 770,
  11089. "_dstBlendFactor": 771,
  11090. "_spriteFrame": {
  11091. "__uuid__": "358f4a3c-0e20-4f89-8142-d550a06d2318"
  11092. },
  11093. "_type": 0,
  11094. "_sizeMode": 1,
  11095. "_fillType": 0,
  11096. "_fillCenter": {
  11097. "__type__": "cc.Vec2",
  11098. "x": 0,
  11099. "y": 0
  11100. },
  11101. "_fillStart": 0,
  11102. "_fillRange": 0,
  11103. "_isTrimmedMode": true,
  11104. "_atlas": null,
  11105. "_id": ""
  11106. },
  11107. {
  11108. "__type__": "cc.Button",
  11109. "_name": "",
  11110. "_objFlags": 0,
  11111. "node": {
  11112. "__id__": 294
  11113. },
  11114. "_enabled": true,
  11115. "_normalMaterial": null,
  11116. "_grayMaterial": null,
  11117. "duration": 0.1,
  11118. "zoomScale": 1.2,
  11119. "clickEvents": [
  11120. {
  11121. "__id__": 297
  11122. }
  11123. ],
  11124. "_N$interactable": true,
  11125. "_N$enableAutoGrayEffect": false,
  11126. "_N$transition": 0,
  11127. "transition": 0,
  11128. "_N$normalColor": {
  11129. "__type__": "cc.Color",
  11130. "r": 214,
  11131. "g": 214,
  11132. "b": 214,
  11133. "a": 255
  11134. },
  11135. "_N$pressedColor": {
  11136. "__type__": "cc.Color",
  11137. "r": 211,
  11138. "g": 211,
  11139. "b": 211,
  11140. "a": 255
  11141. },
  11142. "pressedColor": {
  11143. "__type__": "cc.Color",
  11144. "r": 211,
  11145. "g": 211,
  11146. "b": 211,
  11147. "a": 255
  11148. },
  11149. "_N$hoverColor": {
  11150. "__type__": "cc.Color",
  11151. "r": 255,
  11152. "g": 255,
  11153. "b": 255,
  11154. "a": 255
  11155. },
  11156. "hoverColor": {
  11157. "__type__": "cc.Color",
  11158. "r": 255,
  11159. "g": 255,
  11160. "b": 255,
  11161. "a": 255
  11162. },
  11163. "_N$disabledColor": {
  11164. "__type__": "cc.Color",
  11165. "r": 124,
  11166. "g": 124,
  11167. "b": 124,
  11168. "a": 255
  11169. },
  11170. "_N$normalSprite": null,
  11171. "_N$pressedSprite": null,
  11172. "pressedSprite": null,
  11173. "_N$hoverSprite": null,
  11174. "hoverSprite": null,
  11175. "_N$disabledSprite": null,
  11176. "_N$target": {
  11177. "__id__": 294
  11178. },
  11179. "_id": ""
  11180. },
  11181. {
  11182. "__type__": "cc.ClickEvent",
  11183. "target": {
  11184. "__id__": 274
  11185. },
  11186. "component": "",
  11187. "_componentId": "7e609AsOHZDvJg6haZiTZWf",
  11188. "handler": "OnBtDelAdminLv",
  11189. "customEventData": ""
  11190. },
  11191. {
  11192. "__type__": "cc.PrefabInfo",
  11193. "root": {
  11194. "__id__": 1
  11195. },
  11196. "asset": {
  11197. "__id__": 0
  11198. },
  11199. "fileId": "6bUAmbI19GvqQG0wiznVFo",
  11200. "sync": false
  11201. },
  11202. {
  11203. "__type__": "e5b4cMwR9xJS5FMbqdmDi74",
  11204. "_name": "",
  11205. "_objFlags": 0,
  11206. "node": {
  11207. "__id__": 274
  11208. },
  11209. "_enabled": true,
  11210. "m_HeadNode": {
  11211. "__id__": 279
  11212. },
  11213. "m_HeadErr": null,
  11214. "m_SpGender": [],
  11215. "m_LabNick": {
  11216. "__id__": 286
  11217. },
  11218. "m_LabID": {
  11219. "__id__": 290
  11220. },
  11221. "m_BtKick": null,
  11222. "m_SpGenderstr": null,
  11223. "_id": ""
  11224. },
  11225. {
  11226. "__type__": "7e609AsOHZDvJg6haZiTZWf",
  11227. "_name": "",
  11228. "_objFlags": 0,
  11229. "node": {
  11230. "__id__": 274
  11231. },
  11232. "_enabled": true,
  11233. "_id": ""
  11234. },
  11235. {
  11236. "__type__": "cc.Button",
  11237. "_name": "",
  11238. "_objFlags": 0,
  11239. "node": {
  11240. "__id__": 274
  11241. },
  11242. "_enabled": false,
  11243. "_normalMaterial": null,
  11244. "_grayMaterial": null,
  11245. "duration": 0.1,
  11246. "zoomScale": 1.2,
  11247. "clickEvents": [
  11248. {
  11249. "__id__": 302
  11250. }
  11251. ],
  11252. "_N$interactable": true,
  11253. "_N$enableAutoGrayEffect": false,
  11254. "_N$transition": 0,
  11255. "transition": 0,
  11256. "_N$normalColor": {
  11257. "__type__": "cc.Color",
  11258. "r": 214,
  11259. "g": 214,
  11260. "b": 214,
  11261. "a": 255
  11262. },
  11263. "_N$pressedColor": {
  11264. "__type__": "cc.Color",
  11265. "r": 211,
  11266. "g": 211,
  11267. "b": 211,
  11268. "a": 255
  11269. },
  11270. "pressedColor": {
  11271. "__type__": "cc.Color",
  11272. "r": 211,
  11273. "g": 211,
  11274. "b": 211,
  11275. "a": 255
  11276. },
  11277. "_N$hoverColor": {
  11278. "__type__": "cc.Color",
  11279. "r": 255,
  11280. "g": 255,
  11281. "b": 255,
  11282. "a": 255
  11283. },
  11284. "hoverColor": {
  11285. "__type__": "cc.Color",
  11286. "r": 255,
  11287. "g": 255,
  11288. "b": 255,
  11289. "a": 255
  11290. },
  11291. "_N$disabledColor": {
  11292. "__type__": "cc.Color",
  11293. "r": 124,
  11294. "g": 124,
  11295. "b": 124,
  11296. "a": 255
  11297. },
  11298. "_N$normalSprite": null,
  11299. "_N$pressedSprite": null,
  11300. "pressedSprite": null,
  11301. "_N$hoverSprite": null,
  11302. "hoverSprite": null,
  11303. "_N$disabledSprite": null,
  11304. "_N$target": {
  11305. "__id__": 274
  11306. },
  11307. "_id": ""
  11308. },
  11309. {
  11310. "__type__": "cc.ClickEvent",
  11311. "target": {
  11312. "__id__": 274
  11313. },
  11314. "component": "",
  11315. "_componentId": "7e609AsOHZDvJg6haZiTZWf",
  11316. "handler": "OnBtShowUserInfo",
  11317. "customEventData": ""
  11318. },
  11319. {
  11320. "__type__": "cc.Sprite",
  11321. "_name": "",
  11322. "_objFlags": 0,
  11323. "node": {
  11324. "__id__": 274
  11325. },
  11326. "_enabled": true,
  11327. "_materials": [
  11328. {
  11329. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  11330. }
  11331. ],
  11332. "_srcBlendFactor": 770,
  11333. "_dstBlendFactor": 771,
  11334. "_spriteFrame": {
  11335. "__uuid__": "33e333e5-56d9-4374-b5d5-24da2797dd50"
  11336. },
  11337. "_type": 1,
  11338. "_sizeMode": 0,
  11339. "_fillType": 0,
  11340. "_fillCenter": {
  11341. "__type__": "cc.Vec2",
  11342. "x": 0,
  11343. "y": 0
  11344. },
  11345. "_fillStart": 0,
  11346. "_fillRange": 0,
  11347. "_isTrimmedMode": true,
  11348. "_atlas": null,
  11349. "_id": ""
  11350. },
  11351. {
  11352. "__type__": "cc.PrefabInfo",
  11353. "root": {
  11354. "__id__": 1
  11355. },
  11356. "asset": {
  11357. "__id__": 0
  11358. },
  11359. "fileId": "balU2s3mlH371BMxSiQu0f",
  11360. "sync": false
  11361. },
  11362. {
  11363. "__type__": "cc.Layout",
  11364. "_name": "",
  11365. "_objFlags": 0,
  11366. "node": {
  11367. "__id__": 273
  11368. },
  11369. "_enabled": true,
  11370. "_layoutSize": {
  11371. "__type__": "cc.Size",
  11372. "width": 1050,
  11373. "height": 80
  11374. },
  11375. "_resize": 1,
  11376. "_N$layoutType": 2,
  11377. "_N$cellSize": {
  11378. "__type__": "cc.Size",
  11379. "width": 40,
  11380. "height": 40
  11381. },
  11382. "_N$startAxis": 0,
  11383. "_N$paddingLeft": 0,
  11384. "_N$paddingRight": 0,
  11385. "_N$paddingTop": 0,
  11386. "_N$paddingBottom": 0,
  11387. "_N$spacingX": 0,
  11388. "_N$spacingY": 5,
  11389. "_N$verticalDirection": 1,
  11390. "_N$horizontalDirection": 0,
  11391. "_N$affectedByScale": false,
  11392. "_id": ""
  11393. },
  11394. {
  11395. "__type__": "cc.PrefabInfo",
  11396. "root": {
  11397. "__id__": 1
  11398. },
  11399. "asset": {
  11400. "__id__": 0
  11401. },
  11402. "fileId": "3bQditkbVAbo3m9zU1YCoF",
  11403. "sync": false
  11404. },
  11405. {
  11406. "__type__": "cc.Mask",
  11407. "_name": "",
  11408. "_objFlags": 0,
  11409. "node": {
  11410. "__id__": 272
  11411. },
  11412. "_enabled": true,
  11413. "_materials": [
  11414. {
  11415. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  11416. }
  11417. ],
  11418. "_spriteFrame": null,
  11419. "_type": 0,
  11420. "_segments": 64,
  11421. "_N$alphaThreshold": 1,
  11422. "_N$inverted": false,
  11423. "_id": ""
  11424. },
  11425. {
  11426. "__type__": "cc.PrefabInfo",
  11427. "root": {
  11428. "__id__": 1
  11429. },
  11430. "asset": {
  11431. "__id__": 0
  11432. },
  11433. "fileId": "39oVXl92RJTYTFcoge9eFk",
  11434. "sync": false
  11435. },
  11436. {
  11437. "__type__": "cc.Node",
  11438. "_name": "EdID",
  11439. "_objFlags": 0,
  11440. "_parent": {
  11441. "__id__": 271
  11442. },
  11443. "_children": [
  11444. {
  11445. "__id__": 310
  11446. },
  11447. {
  11448. "__id__": 314
  11449. },
  11450. {
  11451. "__id__": 318
  11452. }
  11453. ],
  11454. "_active": true,
  11455. "_components": [
  11456. {
  11457. "__id__": 322
  11458. }
  11459. ],
  11460. "_prefab": {
  11461. "__id__": 323
  11462. },
  11463. "_opacity": 255,
  11464. "_color": {
  11465. "__type__": "cc.Color",
  11466. "r": 255,
  11467. "g": 255,
  11468. "b": 255,
  11469. "a": 255
  11470. },
  11471. "_contentSize": {
  11472. "__type__": "cc.Size",
  11473. "width": 610,
  11474. "height": 60
  11475. },
  11476. "_anchorPoint": {
  11477. "__type__": "cc.Vec2",
  11478. "x": 0.5,
  11479. "y": 0.5
  11480. },
  11481. "_trs": {
  11482. "__type__": "TypedArray",
  11483. "ctor": "Float64Array",
  11484. "array": [
  11485. -34.211,
  11486. -322,
  11487. 0,
  11488. 0,
  11489. 0,
  11490. 0,
  11491. 1,
  11492. 1,
  11493. 1,
  11494. 1
  11495. ]
  11496. },
  11497. "_eulerAngles": {
  11498. "__type__": "cc.Vec3",
  11499. "x": 0,
  11500. "y": 0,
  11501. "z": 0
  11502. },
  11503. "_skewX": 0,
  11504. "_skewY": 0,
  11505. "_is3DNode": false,
  11506. "_groupIndex": 0,
  11507. "groupIndex": 0,
  11508. "_id": ""
  11509. },
  11510. {
  11511. "__type__": "cc.Node",
  11512. "_name": "BACKGROUND_SPRITE",
  11513. "_objFlags": 0,
  11514. "_parent": {
  11515. "__id__": 309
  11516. },
  11517. "_children": [],
  11518. "_active": true,
  11519. "_components": [
  11520. {
  11521. "__id__": 311
  11522. },
  11523. {
  11524. "__id__": 312
  11525. }
  11526. ],
  11527. "_prefab": {
  11528. "__id__": 313
  11529. },
  11530. "_opacity": 255,
  11531. "_color": {
  11532. "__type__": "cc.Color",
  11533. "r": 255,
  11534. "g": 255,
  11535. "b": 255,
  11536. "a": 255
  11537. },
  11538. "_contentSize": {
  11539. "__type__": "cc.Size",
  11540. "width": 610,
  11541. "height": 60
  11542. },
  11543. "_anchorPoint": {
  11544. "__type__": "cc.Vec2",
  11545. "x": 0.5,
  11546. "y": 0.5
  11547. },
  11548. "_trs": {
  11549. "__type__": "TypedArray",
  11550. "ctor": "Float64Array",
  11551. "array": [
  11552. 0,
  11553. 0,
  11554. 0,
  11555. 0,
  11556. 0,
  11557. 0,
  11558. 1,
  11559. 1,
  11560. 1,
  11561. 1
  11562. ]
  11563. },
  11564. "_eulerAngles": {
  11565. "__type__": "cc.Vec3",
  11566. "x": 0,
  11567. "y": 0,
  11568. "z": 0
  11569. },
  11570. "_skewX": 0,
  11571. "_skewY": 0,
  11572. "_is3DNode": false,
  11573. "_groupIndex": 0,
  11574. "groupIndex": 0,
  11575. "_id": ""
  11576. },
  11577. {
  11578. "__type__": "cc.Sprite",
  11579. "_name": "",
  11580. "_objFlags": 0,
  11581. "node": {
  11582. "__id__": 310
  11583. },
  11584. "_enabled": true,
  11585. "_materials": [
  11586. {
  11587. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  11588. }
  11589. ],
  11590. "_srcBlendFactor": 770,
  11591. "_dstBlendFactor": 771,
  11592. "_spriteFrame": {
  11593. "__uuid__": "12fde944-5393-40fb-a3a5-1964a92f169b"
  11594. },
  11595. "_type": 1,
  11596. "_sizeMode": 0,
  11597. "_fillType": 0,
  11598. "_fillCenter": {
  11599. "__type__": "cc.Vec2",
  11600. "x": 0,
  11601. "y": 0
  11602. },
  11603. "_fillStart": 0,
  11604. "_fillRange": 0,
  11605. "_isTrimmedMode": true,
  11606. "_atlas": null,
  11607. "_id": ""
  11608. },
  11609. {
  11610. "__type__": "cc.Widget",
  11611. "_name": "",
  11612. "_objFlags": 0,
  11613. "node": {
  11614. "__id__": 310
  11615. },
  11616. "_enabled": true,
  11617. "alignMode": 0,
  11618. "_target": null,
  11619. "_alignFlags": 45,
  11620. "_left": 0,
  11621. "_right": 0,
  11622. "_top": 0,
  11623. "_bottom": 0,
  11624. "_verticalCenter": 0,
  11625. "_horizontalCenter": 0,
  11626. "_isAbsLeft": true,
  11627. "_isAbsRight": true,
  11628. "_isAbsTop": true,
  11629. "_isAbsBottom": true,
  11630. "_isAbsHorizontalCenter": true,
  11631. "_isAbsVerticalCenter": true,
  11632. "_originalWidth": 160,
  11633. "_originalHeight": 40,
  11634. "_id": ""
  11635. },
  11636. {
  11637. "__type__": "cc.PrefabInfo",
  11638. "root": {
  11639. "__id__": 1
  11640. },
  11641. "asset": {
  11642. "__id__": 0
  11643. },
  11644. "fileId": "0a18uizHdGR6hy1frIs9zS",
  11645. "sync": false
  11646. },
  11647. {
  11648. "__type__": "cc.Node",
  11649. "_name": "TEXT_LABEL",
  11650. "_objFlags": 512,
  11651. "_parent": {
  11652. "__id__": 309
  11653. },
  11654. "_children": [],
  11655. "_active": false,
  11656. "_components": [
  11657. {
  11658. "__id__": 315
  11659. },
  11660. {
  11661. "__id__": 316
  11662. }
  11663. ],
  11664. "_prefab": {
  11665. "__id__": 317
  11666. },
  11667. "_opacity": 255,
  11668. "_color": {
  11669. "__type__": "cc.Color",
  11670. "r": 201,
  11671. "g": 73,
  11672. "b": 36,
  11673. "a": 255
  11674. },
  11675. "_contentSize": {
  11676. "__type__": "cc.Size",
  11677. "width": 158,
  11678. "height": 40
  11679. },
  11680. "_anchorPoint": {
  11681. "__type__": "cc.Vec2",
  11682. "x": 0,
  11683. "y": 1
  11684. },
  11685. "_trs": {
  11686. "__type__": "TypedArray",
  11687. "ctor": "Float64Array",
  11688. "array": [
  11689. -78,
  11690. 20,
  11691. 0,
  11692. 0,
  11693. 0,
  11694. 0,
  11695. 1,
  11696. 1,
  11697. 1,
  11698. 1
  11699. ]
  11700. },
  11701. "_eulerAngles": {
  11702. "__type__": "cc.Vec3",
  11703. "x": 0,
  11704. "y": 0,
  11705. "z": 0
  11706. },
  11707. "_skewX": 0,
  11708. "_skewY": 0,
  11709. "_is3DNode": false,
  11710. "_groupIndex": 0,
  11711. "groupIndex": 0,
  11712. "_id": ""
  11713. },
  11714. {
  11715. "__type__": "cc.Label",
  11716. "_name": "",
  11717. "_objFlags": 0,
  11718. "node": {
  11719. "__id__": 314
  11720. },
  11721. "_enabled": true,
  11722. "_materials": [],
  11723. "_srcBlendFactor": 770,
  11724. "_dstBlendFactor": 771,
  11725. "_string": "",
  11726. "_N$string": "",
  11727. "_fontSize": 36,
  11728. "_lineHeight": 36,
  11729. "_enableWrapText": false,
  11730. "_N$file": null,
  11731. "_isSystemFontUsed": true,
  11732. "_spacingX": 0,
  11733. "_batchAsBitmap": false,
  11734. "_styleFlags": 0,
  11735. "_underlineHeight": 0,
  11736. "_N$horizontalAlign": 0,
  11737. "_N$verticalAlign": 1,
  11738. "_N$fontFamily": "Arial",
  11739. "_N$overflow": 1,
  11740. "_N$cacheMode": 0,
  11741. "_id": ""
  11742. },
  11743. {
  11744. "__type__": "cc.Widget",
  11745. "_name": "",
  11746. "_objFlags": 0,
  11747. "node": {
  11748. "__id__": 314
  11749. },
  11750. "_enabled": true,
  11751. "alignMode": 0,
  11752. "_target": null,
  11753. "_alignFlags": 45,
  11754. "_left": 2,
  11755. "_right": 0,
  11756. "_top": 0,
  11757. "_bottom": 0,
  11758. "_verticalCenter": 0,
  11759. "_horizontalCenter": 0,
  11760. "_isAbsLeft": true,
  11761. "_isAbsRight": true,
  11762. "_isAbsTop": true,
  11763. "_isAbsBottom": true,
  11764. "_isAbsHorizontalCenter": true,
  11765. "_isAbsVerticalCenter": true,
  11766. "_originalWidth": 158,
  11767. "_originalHeight": 40,
  11768. "_id": ""
  11769. },
  11770. {
  11771. "__type__": "cc.PrefabInfo",
  11772. "root": {
  11773. "__id__": 1
  11774. },
  11775. "asset": {
  11776. "__id__": 0
  11777. },
  11778. "fileId": "46KNaqLOhCWofCUfrKWQyl",
  11779. "sync": false
  11780. },
  11781. {
  11782. "__type__": "cc.Node",
  11783. "_name": "PLACEHOLDER_LABEL",
  11784. "_objFlags": 512,
  11785. "_parent": {
  11786. "__id__": 309
  11787. },
  11788. "_children": [],
  11789. "_active": true,
  11790. "_components": [
  11791. {
  11792. "__id__": 319
  11793. },
  11794. {
  11795. "__id__": 320
  11796. }
  11797. ],
  11798. "_prefab": {
  11799. "__id__": 321
  11800. },
  11801. "_opacity": 255,
  11802. "_color": {
  11803. "__type__": "cc.Color",
  11804. "r": 202,
  11805. "g": 140,
  11806. "b": 97,
  11807. "a": 255
  11808. },
  11809. "_contentSize": {
  11810. "__type__": "cc.Size",
  11811. "width": 608,
  11812. "height": 60
  11813. },
  11814. "_anchorPoint": {
  11815. "__type__": "cc.Vec2",
  11816. "x": 0,
  11817. "y": 1
  11818. },
  11819. "_trs": {
  11820. "__type__": "TypedArray",
  11821. "ctor": "Float64Array",
  11822. "array": [
  11823. -303,
  11824. 30,
  11825. 0,
  11826. 0,
  11827. 0,
  11828. 0,
  11829. 1,
  11830. 1,
  11831. 1,
  11832. 1
  11833. ]
  11834. },
  11835. "_eulerAngles": {
  11836. "__type__": "cc.Vec3",
  11837. "x": 0,
  11838. "y": 0,
  11839. "z": 0
  11840. },
  11841. "_skewX": 0,
  11842. "_skewY": 0,
  11843. "_is3DNode": false,
  11844. "_groupIndex": 0,
  11845. "groupIndex": 0,
  11846. "_id": ""
  11847. },
  11848. {
  11849. "__type__": "cc.Label",
  11850. "_name": "",
  11851. "_objFlags": 0,
  11852. "node": {
  11853. "__id__": 318
  11854. },
  11855. "_enabled": true,
  11856. "_materials": [
  11857. {
  11858. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  11859. }
  11860. ],
  11861. "_srcBlendFactor": 770,
  11862. "_dstBlendFactor": 771,
  11863. "_string": "請輸入成員ID",
  11864. "_N$string": "請輸入成員ID",
  11865. "_fontSize": 30,
  11866. "_lineHeight": 32,
  11867. "_enableWrapText": false,
  11868. "_N$file": null,
  11869. "_isSystemFontUsed": true,
  11870. "_spacingX": 0,
  11871. "_batchAsBitmap": false,
  11872. "_styleFlags": 0,
  11873. "_underlineHeight": 0,
  11874. "_N$horizontalAlign": 0,
  11875. "_N$verticalAlign": 1,
  11876. "_N$fontFamily": "Arial",
  11877. "_N$overflow": 1,
  11878. "_N$cacheMode": 0,
  11879. "_id": ""
  11880. },
  11881. {
  11882. "__type__": "cc.Widget",
  11883. "_name": "",
  11884. "_objFlags": 0,
  11885. "node": {
  11886. "__id__": 318
  11887. },
  11888. "_enabled": true,
  11889. "alignMode": 0,
  11890. "_target": null,
  11891. "_alignFlags": 45,
  11892. "_left": 2,
  11893. "_right": 0,
  11894. "_top": 0,
  11895. "_bottom": 0,
  11896. "_verticalCenter": 0,
  11897. "_horizontalCenter": 0,
  11898. "_isAbsLeft": true,
  11899. "_isAbsRight": true,
  11900. "_isAbsTop": true,
  11901. "_isAbsBottom": true,
  11902. "_isAbsHorizontalCenter": true,
  11903. "_isAbsVerticalCenter": true,
  11904. "_originalWidth": 158,
  11905. "_originalHeight": 40,
  11906. "_id": ""
  11907. },
  11908. {
  11909. "__type__": "cc.PrefabInfo",
  11910. "root": {
  11911. "__id__": 1
  11912. },
  11913. "asset": {
  11914. "__id__": 0
  11915. },
  11916. "fileId": "9dI+6YxFxKE7ErlcLUJPDZ",
  11917. "sync": false
  11918. },
  11919. {
  11920. "__type__": "cc.EditBox",
  11921. "_name": "",
  11922. "_objFlags": 0,
  11923. "node": {
  11924. "__id__": 309
  11925. },
  11926. "_enabled": true,
  11927. "_string": "",
  11928. "returnType": 0,
  11929. "maxLength": 8,
  11930. "_tabIndex": 0,
  11931. "editingDidBegan": [],
  11932. "textChanged": [],
  11933. "editingDidEnded": [],
  11934. "editingReturn": [],
  11935. "_N$textLabel": {
  11936. "__id__": 315
  11937. },
  11938. "_N$placeholderLabel": {
  11939. "__id__": 319
  11940. },
  11941. "_N$background": {
  11942. "__id__": 311
  11943. },
  11944. "_N$inputFlag": 5,
  11945. "_N$inputMode": 6,
  11946. "_N$stayOnTop": false,
  11947. "_id": ""
  11948. },
  11949. {
  11950. "__type__": "cc.PrefabInfo",
  11951. "root": {
  11952. "__id__": 1
  11953. },
  11954. "asset": {
  11955. "__id__": 0
  11956. },
  11957. "fileId": "d2wMC0Yz9PXbHhYMYbTgAy",
  11958. "sync": false
  11959. },
  11960. {
  11961. "__type__": "cc.Node",
  11962. "_name": "BtSetManager",
  11963. "_objFlags": 0,
  11964. "_parent": {
  11965. "__id__": 271
  11966. },
  11967. "_children": [
  11968. {
  11969. "__id__": 325
  11970. }
  11971. ],
  11972. "_active": true,
  11973. "_components": [
  11974. {
  11975. "__id__": 329
  11976. }
  11977. ],
  11978. "_prefab": {
  11979. "__id__": 331
  11980. },
  11981. "_opacity": 255,
  11982. "_color": {
  11983. "__type__": "cc.Color",
  11984. "r": 255,
  11985. "g": 255,
  11986. "b": 255,
  11987. "a": 255
  11988. },
  11989. "_contentSize": {
  11990. "__type__": "cc.Size",
  11991. "width": 198,
  11992. "height": 67
  11993. },
  11994. "_anchorPoint": {
  11995. "__type__": "cc.Vec2",
  11996. "x": 0.5,
  11997. "y": 0.5
  11998. },
  11999. "_trs": {
  12000. "__type__": "TypedArray",
  12001. "ctor": "Float64Array",
  12002. "array": [
  12003. 407.36,
  12004. -323,
  12005. 0,
  12006. 0,
  12007. 0,
  12008. 0,
  12009. 1,
  12010. 1,
  12011. 1,
  12012. 1
  12013. ]
  12014. },
  12015. "_eulerAngles": {
  12016. "__type__": "cc.Vec3",
  12017. "x": 0,
  12018. "y": 0,
  12019. "z": 0
  12020. },
  12021. "_skewX": 0,
  12022. "_skewY": 0,
  12023. "_is3DNode": false,
  12024. "_groupIndex": 0,
  12025. "groupIndex": 0,
  12026. "_id": ""
  12027. },
  12028. {
  12029. "__type__": "cc.Node",
  12030. "_name": "Background",
  12031. "_objFlags": 512,
  12032. "_parent": {
  12033. "__id__": 324
  12034. },
  12035. "_children": [],
  12036. "_active": true,
  12037. "_components": [
  12038. {
  12039. "__id__": 326
  12040. },
  12041. {
  12042. "__id__": 327
  12043. }
  12044. ],
  12045. "_prefab": {
  12046. "__id__": 328
  12047. },
  12048. "_opacity": 255,
  12049. "_color": {
  12050. "__type__": "cc.Color",
  12051. "r": 255,
  12052. "g": 255,
  12053. "b": 255,
  12054. "a": 255
  12055. },
  12056. "_contentSize": {
  12057. "__type__": "cc.Size",
  12058. "width": 198,
  12059. "height": 67
  12060. },
  12061. "_anchorPoint": {
  12062. "__type__": "cc.Vec2",
  12063. "x": 0.5,
  12064. "y": 0.5
  12065. },
  12066. "_trs": {
  12067. "__type__": "TypedArray",
  12068. "ctor": "Float64Array",
  12069. "array": [
  12070. 0,
  12071. 0,
  12072. 0,
  12073. 0,
  12074. 0,
  12075. 0,
  12076. 1,
  12077. 1,
  12078. 1,
  12079. 1
  12080. ]
  12081. },
  12082. "_eulerAngles": {
  12083. "__type__": "cc.Vec3",
  12084. "x": 0,
  12085. "y": 0,
  12086. "z": 0
  12087. },
  12088. "_skewX": 0,
  12089. "_skewY": 0,
  12090. "_is3DNode": false,
  12091. "_groupIndex": 0,
  12092. "groupIndex": 0,
  12093. "_id": ""
  12094. },
  12095. {
  12096. "__type__": "cc.Sprite",
  12097. "_name": "",
  12098. "_objFlags": 0,
  12099. "node": {
  12100. "__id__": 325
  12101. },
  12102. "_enabled": true,
  12103. "_materials": [
  12104. {
  12105. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  12106. }
  12107. ],
  12108. "_srcBlendFactor": 770,
  12109. "_dstBlendFactor": 771,
  12110. "_spriteFrame": {
  12111. "__uuid__": "b292025e-eb4f-40fd-a72e-3b70e37b0d29"
  12112. },
  12113. "_type": 1,
  12114. "_sizeMode": 0,
  12115. "_fillType": 0,
  12116. "_fillCenter": {
  12117. "__type__": "cc.Vec2",
  12118. "x": 0,
  12119. "y": 0
  12120. },
  12121. "_fillStart": 0,
  12122. "_fillRange": 0,
  12123. "_isTrimmedMode": true,
  12124. "_atlas": null,
  12125. "_id": ""
  12126. },
  12127. {
  12128. "__type__": "cc.Widget",
  12129. "_name": "",
  12130. "_objFlags": 0,
  12131. "node": {
  12132. "__id__": 325
  12133. },
  12134. "_enabled": true,
  12135. "alignMode": 0,
  12136. "_target": null,
  12137. "_alignFlags": 45,
  12138. "_left": 0,
  12139. "_right": 0,
  12140. "_top": 0,
  12141. "_bottom": 0,
  12142. "_verticalCenter": 0,
  12143. "_horizontalCenter": 0,
  12144. "_isAbsLeft": true,
  12145. "_isAbsRight": true,
  12146. "_isAbsTop": true,
  12147. "_isAbsBottom": true,
  12148. "_isAbsHorizontalCenter": true,
  12149. "_isAbsVerticalCenter": true,
  12150. "_originalWidth": 100,
  12151. "_originalHeight": 40,
  12152. "_id": ""
  12153. },
  12154. {
  12155. "__type__": "cc.PrefabInfo",
  12156. "root": {
  12157. "__id__": 1
  12158. },
  12159. "asset": {
  12160. "__id__": 0
  12161. },
  12162. "fileId": "05guRNVNRFk5IyGpXEaaaL",
  12163. "sync": false
  12164. },
  12165. {
  12166. "__type__": "cc.Button",
  12167. "_name": "",
  12168. "_objFlags": 0,
  12169. "node": {
  12170. "__id__": 324
  12171. },
  12172. "_enabled": true,
  12173. "_normalMaterial": null,
  12174. "_grayMaterial": null,
  12175. "duration": 0.1,
  12176. "zoomScale": 1.2,
  12177. "clickEvents": [
  12178. {
  12179. "__id__": 330
  12180. }
  12181. ],
  12182. "_N$interactable": true,
  12183. "_N$enableAutoGrayEffect": false,
  12184. "_N$transition": 1,
  12185. "transition": 1,
  12186. "_N$normalColor": {
  12187. "__type__": "cc.Color",
  12188. "r": 255,
  12189. "g": 255,
  12190. "b": 255,
  12191. "a": 255
  12192. },
  12193. "_N$pressedColor": {
  12194. "__type__": "cc.Color",
  12195. "r": 200,
  12196. "g": 200,
  12197. "b": 200,
  12198. "a": 255
  12199. },
  12200. "pressedColor": {
  12201. "__type__": "cc.Color",
  12202. "r": 200,
  12203. "g": 200,
  12204. "b": 200,
  12205. "a": 255
  12206. },
  12207. "_N$hoverColor": {
  12208. "__type__": "cc.Color",
  12209. "r": 255,
  12210. "g": 255,
  12211. "b": 255,
  12212. "a": 255
  12213. },
  12214. "hoverColor": {
  12215. "__type__": "cc.Color",
  12216. "r": 255,
  12217. "g": 255,
  12218. "b": 255,
  12219. "a": 255
  12220. },
  12221. "_N$disabledColor": {
  12222. "__type__": "cc.Color",
  12223. "r": 120,
  12224. "g": 120,
  12225. "b": 120,
  12226. "a": 200
  12227. },
  12228. "_N$normalSprite": {
  12229. "__uuid__": "bd912dcc-5a95-4b55-8ce2-7bf03ee8b271"
  12230. },
  12231. "_N$pressedSprite": {
  12232. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  12233. },
  12234. "pressedSprite": {
  12235. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  12236. },
  12237. "_N$hoverSprite": {
  12238. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  12239. },
  12240. "hoverSprite": {
  12241. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  12242. },
  12243. "_N$disabledSprite": {
  12244. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  12245. },
  12246. "_N$target": {
  12247. "__id__": 325
  12248. },
  12249. "_id": ""
  12250. },
  12251. {
  12252. "__type__": "cc.ClickEvent",
  12253. "target": {
  12254. "__id__": 1
  12255. },
  12256. "component": "",
  12257. "_componentId": "3efb7TR+3VB5oYxlOA7dbXx",
  12258. "handler": "OnBtAddAdmin",
  12259. "customEventData": ""
  12260. },
  12261. {
  12262. "__type__": "cc.PrefabInfo",
  12263. "root": {
  12264. "__id__": 1
  12265. },
  12266. "asset": {
  12267. "__id__": 0
  12268. },
  12269. "fileId": "13ubVBvMtP9bULWLqUS0Ta",
  12270. "sync": false
  12271. },
  12272. {
  12273. "__type__": "cc.ScrollView",
  12274. "_name": "",
  12275. "_objFlags": 0,
  12276. "node": {
  12277. "__id__": 271
  12278. },
  12279. "_enabled": true,
  12280. "horizontal": false,
  12281. "vertical": true,
  12282. "inertia": true,
  12283. "brake": 0.75,
  12284. "elastic": true,
  12285. "bounceDuration": 0.23,
  12286. "scrollEvents": [],
  12287. "cancelInnerEvents": true,
  12288. "_N$content": {
  12289. "__id__": 273
  12290. },
  12291. "content": {
  12292. "__id__": 273
  12293. },
  12294. "_N$horizontalScrollBar": null,
  12295. "_N$verticalScrollBar": null,
  12296. "_id": ""
  12297. },
  12298. {
  12299. "__type__": "cc.PrefabInfo",
  12300. "root": {
  12301. "__id__": 1
  12302. },
  12303. "asset": {
  12304. "__id__": 0
  12305. },
  12306. "fileId": "e0IbVy4VVNOIxJAr2p3FPv",
  12307. "sync": false
  12308. },
  12309. {
  12310. "__type__": "3efb7TR+3VB5oYxlOA7dbXx",
  12311. "_name": "",
  12312. "_objFlags": 0,
  12313. "node": {
  12314. "__id__": 1
  12315. },
  12316. "_enabled": true,
  12317. "m_EdUserFind": {
  12318. "__id__": 94
  12319. },
  12320. "m_LbAllScore": {
  12321. "__id__": 77
  12322. },
  12323. "_id": ""
  12324. },
  12325. {
  12326. "__type__": "667d7cRO4ZHOrbfi0fiHKIF",
  12327. "_name": "",
  12328. "_objFlags": 0,
  12329. "node": {
  12330. "__id__": 1
  12331. },
  12332. "_enabled": true,
  12333. "m_NdLayoutArr": [
  12334. {
  12335. "__id__": 118
  12336. },
  12337. {
  12338. "__id__": 212
  12339. },
  12340. {
  12341. "__id__": 273
  12342. }
  12343. ],
  12344. "_id": ""
  12345. },
  12346. {
  12347. "__type__": "cc.BlockInputEvents",
  12348. "_name": "",
  12349. "_objFlags": 0,
  12350. "node": {
  12351. "__id__": 1
  12352. },
  12353. "_enabled": true,
  12354. "_id": ""
  12355. },
  12356. {
  12357. "__type__": "cc.PrefabInfo",
  12358. "root": {
  12359. "__id__": 1
  12360. },
  12361. "asset": {
  12362. "__id__": 0
  12363. },
  12364. "fileId": "",
  12365. "sync": false
  12366. }
  12367. ]