prefab_personal_alert.prefab 204 KB

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