scene_login.fire 230 KB

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