RegistAcc.prefab 133 KB

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