prefab_login_panel.prefab 100 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727
  1. [
  2. {
  3. "__type__": "cc.Prefab",
  4. "_name": "",
  5. "_objFlags": 0,
  6. "_native": "",
  7. "data": {
  8. "__id__": 1
  9. },
  10. "optimizationPolicy": 0,
  11. "asyncLoadAssets": false,
  12. "readonly": false
  13. },
  14. {
  15. "__type__": "cc.Node",
  16. "_name": "prefab_login_panel",
  17. "_objFlags": 0,
  18. "_parent": null,
  19. "_children": [
  20. {
  21. "__id__": 2
  22. },
  23. {
  24. "__id__": 7
  25. },
  26. {
  27. "__id__": 35
  28. }
  29. ],
  30. "_active": true,
  31. "_components": [
  32. {
  33. "__id__": 149
  34. }
  35. ],
  36. "_prefab": {
  37. "__id__": 150
  38. },
  39. "_opacity": 255,
  40. "_color": {
  41. "__type__": "cc.Color",
  42. "r": 255,
  43. "g": 255,
  44. "b": 255,
  45. "a": 255
  46. },
  47. "_contentSize": {
  48. "__type__": "cc.Size",
  49. "width": 600,
  50. "height": 588
  51. },
  52. "_anchorPoint": {
  53. "__type__": "cc.Vec2",
  54. "x": 0.5,
  55. "y": 0.5
  56. },
  57. "_trs": {
  58. "__type__": "TypedArray",
  59. "ctor": "Float64Array",
  60. "array": [
  61. 0,
  62. 0,
  63. 0,
  64. 0,
  65. 0,
  66. 0,
  67. 1,
  68. 1,
  69. 1,
  70. 1
  71. ]
  72. },
  73. "_eulerAngles": {
  74. "__type__": "cc.Vec3",
  75. "x": 0,
  76. "y": 0,
  77. "z": 0
  78. },
  79. "_skewX": 0,
  80. "_skewY": 0,
  81. "_is3DNode": false,
  82. "_groupIndex": 0,
  83. "groupIndex": 0,
  84. "_id": ""
  85. },
  86. {
  87. "__type__": "cc.Node",
  88. "_name": "titleLayout",
  89. "_objFlags": 0,
  90. "_parent": {
  91. "__id__": 1
  92. },
  93. "_children": [
  94. {
  95. "__id__": 3
  96. }
  97. ],
  98. "_active": true,
  99. "_components": [],
  100. "_prefab": {
  101. "__id__": 6
  102. },
  103. "_opacity": 255,
  104. "_color": {
  105. "__type__": "cc.Color",
  106. "r": 255,
  107. "g": 255,
  108. "b": 255,
  109. "a": 255
  110. },
  111. "_contentSize": {
  112. "__type__": "cc.Size",
  113. "width": 600,
  114. "height": 100
  115. },
  116. "_anchorPoint": {
  117. "__type__": "cc.Vec2",
  118. "x": 0.5,
  119. "y": 0.5
  120. },
  121. "_trs": {
  122. "__type__": "TypedArray",
  123. "ctor": "Float64Array",
  124. "array": [
  125. 0,
  126. 229,
  127. 0,
  128. 0,
  129. 0,
  130. 0,
  131. 1,
  132. 1,
  133. 1,
  134. 1
  135. ]
  136. },
  137. "_eulerAngles": {
  138. "__type__": "cc.Vec3",
  139. "x": 0,
  140. "y": 0,
  141. "z": 0
  142. },
  143. "_skewX": 0,
  144. "_skewY": 0,
  145. "_is3DNode": false,
  146. "_groupIndex": 0,
  147. "groupIndex": 0,
  148. "_id": ""
  149. },
  150. {
  151. "__type__": "cc.Node",
  152. "_name": "title",
  153. "_objFlags": 0,
  154. "_parent": {
  155. "__id__": 2
  156. },
  157. "_children": [],
  158. "_active": true,
  159. "_components": [
  160. {
  161. "__id__": 4
  162. }
  163. ],
  164. "_prefab": {
  165. "__id__": 5
  166. },
  167. "_opacity": 255,
  168. "_color": {
  169. "__type__": "cc.Color",
  170. "r": 255,
  171. "g": 255,
  172. "b": 255,
  173. "a": 255
  174. },
  175. "_contentSize": {
  176. "__type__": "cc.Size",
  177. "width": 80,
  178. "height": 50.4
  179. },
  180. "_anchorPoint": {
  181. "__type__": "cc.Vec2",
  182. "x": 0.5,
  183. "y": 0.5
  184. },
  185. "_trs": {
  186. "__type__": "TypedArray",
  187. "ctor": "Float64Array",
  188. "array": [
  189. -260,
  190. 0,
  191. 0,
  192. 0,
  193. 0,
  194. 0,
  195. 1,
  196. 1,
  197. 1,
  198. 1
  199. ]
  200. },
  201. "_eulerAngles": {
  202. "__type__": "cc.Vec3",
  203. "x": 0,
  204. "y": 0,
  205. "z": 0
  206. },
  207. "_skewX": 0,
  208. "_skewY": 0,
  209. "_is3DNode": false,
  210. "_groupIndex": 0,
  211. "groupIndex": 0,
  212. "_id": ""
  213. },
  214. {
  215. "__type__": "cc.Label",
  216. "_name": "",
  217. "_objFlags": 0,
  218. "node": {
  219. "__id__": 3
  220. },
  221. "_enabled": true,
  222. "_materials": [
  223. {
  224. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  225. }
  226. ],
  227. "_useOriginalSize": false,
  228. "_string": "登录",
  229. "_N$string": "登录",
  230. "_fontSize": 40,
  231. "_lineHeight": 40,
  232. "_enableWrapText": true,
  233. "_N$file": null,
  234. "_isSystemFontUsed": true,
  235. "_spacingX": 0,
  236. "_batchAsBitmap": false,
  237. "_styleFlags": 0,
  238. "_underlineHeight": 0,
  239. "_N$horizontalAlign": 1,
  240. "_N$verticalAlign": 1,
  241. "_N$fontFamily": "Arial",
  242. "_N$overflow": 0,
  243. "_N$cacheMode": 0,
  244. "_id": ""
  245. },
  246. {
  247. "__type__": "cc.PrefabInfo",
  248. "root": {
  249. "__id__": 1
  250. },
  251. "asset": {
  252. "__uuid__": "4896bb32-26a7-4b08-98aa-838a9f85ba8d"
  253. },
  254. "fileId": "17ts4pBp9Bt76JSZOWEH75",
  255. "sync": false
  256. },
  257. {
  258. "__type__": "cc.PrefabInfo",
  259. "root": {
  260. "__id__": 1
  261. },
  262. "asset": {
  263. "__uuid__": "4896bb32-26a7-4b08-98aa-838a9f85ba8d"
  264. },
  265. "fileId": "a6kiLFWMVKToAGjwvYveIS",
  266. "sync": false
  267. },
  268. {
  269. "__type__": "cc.Node",
  270. "_name": "topToggle",
  271. "_objFlags": 0,
  272. "_parent": {
  273. "__id__": 1
  274. },
  275. "_children": [
  276. {
  277. "__id__": 8
  278. },
  279. {
  280. "__id__": 21
  281. }
  282. ],
  283. "_active": true,
  284. "_components": [
  285. {
  286. "__id__": 33
  287. },
  288. {
  289. "__id__": 19
  290. }
  291. ],
  292. "_prefab": {
  293. "__id__": 34
  294. },
  295. "_opacity": 255,
  296. "_color": {
  297. "__type__": "cc.Color",
  298. "r": 255,
  299. "g": 255,
  300. "b": 255,
  301. "a": 255
  302. },
  303. "_contentSize": {
  304. "__type__": "cc.Size",
  305. "width": 600,
  306. "height": 60
  307. },
  308. "_anchorPoint": {
  309. "__type__": "cc.Vec2",
  310. "x": 0.5,
  311. "y": 0.5
  312. },
  313. "_trs": {
  314. "__type__": "TypedArray",
  315. "ctor": "Float64Array",
  316. "array": [
  317. 0,
  318. 119,
  319. 0,
  320. 0,
  321. 0,
  322. 0,
  323. 1,
  324. 1,
  325. 1,
  326. 1
  327. ]
  328. },
  329. "_eulerAngles": {
  330. "__type__": "cc.Vec3",
  331. "x": 0,
  332. "y": 0,
  333. "z": 0
  334. },
  335. "_skewX": 0,
  336. "_skewY": 0,
  337. "_is3DNode": false,
  338. "_groupIndex": 0,
  339. "groupIndex": 0,
  340. "_id": ""
  341. },
  342. {
  343. "__type__": "cc.Node",
  344. "_name": "loginToggle",
  345. "_objFlags": 0,
  346. "_parent": {
  347. "__id__": 7
  348. },
  349. "_children": [
  350. {
  351. "__id__": 9
  352. },
  353. {
  354. "__id__": 12
  355. },
  356. {
  357. "__id__": 15
  358. }
  359. ],
  360. "_active": true,
  361. "_components": [
  362. {
  363. "__id__": 18
  364. }
  365. ],
  366. "_prefab": {
  367. "__id__": 20
  368. },
  369. "_opacity": 255,
  370. "_color": {
  371. "__type__": "cc.Color",
  372. "r": 255,
  373. "g": 255,
  374. "b": 255,
  375. "a": 255
  376. },
  377. "_contentSize": {
  378. "__type__": "cc.Size",
  379. "width": 300,
  380. "height": 60
  381. },
  382. "_anchorPoint": {
  383. "__type__": "cc.Vec2",
  384. "x": 0.5,
  385. "y": 0.5
  386. },
  387. "_trs": {
  388. "__type__": "TypedArray",
  389. "ctor": "Float64Array",
  390. "array": [
  391. -150,
  392. 0,
  393. 0,
  394. 0,
  395. 0,
  396. 0,
  397. 1,
  398. 1,
  399. 1,
  400. 1
  401. ]
  402. },
  403. "_eulerAngles": {
  404. "__type__": "cc.Vec3",
  405. "x": 0,
  406. "y": 0,
  407. "z": 0
  408. },
  409. "_skewX": 0,
  410. "_skewY": 0,
  411. "_is3DNode": false,
  412. "_groupIndex": 0,
  413. "groupIndex": 0,
  414. "_id": ""
  415. },
  416. {
  417. "__type__": "cc.Node",
  418. "_name": "Background",
  419. "_objFlags": 0,
  420. "_parent": {
  421. "__id__": 8
  422. },
  423. "_children": [],
  424. "_active": true,
  425. "_components": [
  426. {
  427. "__id__": 10
  428. }
  429. ],
  430. "_prefab": {
  431. "__id__": 11
  432. },
  433. "_opacity": 255,
  434. "_color": {
  435. "__type__": "cc.Color",
  436. "r": 255,
  437. "g": 255,
  438. "b": 255,
  439. "a": 255
  440. },
  441. "_contentSize": {
  442. "__type__": "cc.Size",
  443. "width": 300,
  444. "height": 60
  445. },
  446. "_anchorPoint": {
  447. "__type__": "cc.Vec2",
  448. "x": 0.5,
  449. "y": 0.5
  450. },
  451. "_trs": {
  452. "__type__": "TypedArray",
  453. "ctor": "Float64Array",
  454. "array": [
  455. 0,
  456. 0,
  457. 0,
  458. 0,
  459. 0,
  460. 0,
  461. 1,
  462. 1,
  463. 1,
  464. 1
  465. ]
  466. },
  467. "_eulerAngles": {
  468. "__type__": "cc.Vec3",
  469. "x": 0,
  470. "y": 0,
  471. "z": 0
  472. },
  473. "_skewX": 0,
  474. "_skewY": 0,
  475. "_is3DNode": false,
  476. "_groupIndex": 0,
  477. "groupIndex": 0,
  478. "_id": ""
  479. },
  480. {
  481. "__type__": "cc.Sprite",
  482. "_name": "",
  483. "_objFlags": 0,
  484. "node": {
  485. "__id__": 9
  486. },
  487. "_enabled": true,
  488. "_materials": [
  489. {
  490. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  491. }
  492. ],
  493. "_srcBlendFactor": 770,
  494. "_dstBlendFactor": 771,
  495. "_spriteFrame": {
  496. "__uuid__": "1c14d17a-92d3-4eca-9802-60f21ceeb862"
  497. },
  498. "_type": 1,
  499. "_sizeMode": 0,
  500. "_fillType": 0,
  501. "_fillCenter": {
  502. "__type__": "cc.Vec2",
  503. "x": 0,
  504. "y": 0
  505. },
  506. "_fillStart": 0,
  507. "_fillRange": 0,
  508. "_isTrimmedMode": true,
  509. "_atlas": {
  510. "__uuid__": "3905bccb-bbf8-4db7-9c38-2343245ba06b"
  511. },
  512. "_id": ""
  513. },
  514. {
  515. "__type__": "cc.PrefabInfo",
  516. "root": {
  517. "__id__": 1
  518. },
  519. "asset": {
  520. "__uuid__": "4896bb32-26a7-4b08-98aa-838a9f85ba8d"
  521. },
  522. "fileId": "7fAuGc5jpBOZ5spd310Abn",
  523. "sync": false
  524. },
  525. {
  526. "__type__": "cc.Node",
  527. "_name": "checkmark",
  528. "_objFlags": 0,
  529. "_parent": {
  530. "__id__": 8
  531. },
  532. "_children": [],
  533. "_active": false,
  534. "_components": [
  535. {
  536. "__id__": 13
  537. }
  538. ],
  539. "_prefab": {
  540. "__id__": 14
  541. },
  542. "_opacity": 255,
  543. "_color": {
  544. "__type__": "cc.Color",
  545. "r": 255,
  546. "g": 255,
  547. "b": 255,
  548. "a": 255
  549. },
  550. "_contentSize": {
  551. "__type__": "cc.Size",
  552. "width": 300,
  553. "height": 60
  554. },
  555. "_anchorPoint": {
  556. "__type__": "cc.Vec2",
  557. "x": 0.5,
  558. "y": 0.5
  559. },
  560. "_trs": {
  561. "__type__": "TypedArray",
  562. "ctor": "Float64Array",
  563. "array": [
  564. 0,
  565. 0,
  566. 0,
  567. 0,
  568. 0,
  569. 0,
  570. 1,
  571. 1,
  572. 1,
  573. 1
  574. ]
  575. },
  576. "_eulerAngles": {
  577. "__type__": "cc.Vec3",
  578. "x": 0,
  579. "y": 0,
  580. "z": 0
  581. },
  582. "_skewX": 0,
  583. "_skewY": 0,
  584. "_is3DNode": false,
  585. "_groupIndex": 0,
  586. "groupIndex": 0,
  587. "_id": ""
  588. },
  589. {
  590. "__type__": "cc.Sprite",
  591. "_name": "",
  592. "_objFlags": 0,
  593. "node": {
  594. "__id__": 12
  595. },
  596. "_enabled": true,
  597. "_materials": [
  598. {
  599. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  600. }
  601. ],
  602. "_srcBlendFactor": 770,
  603. "_dstBlendFactor": 771,
  604. "_spriteFrame": {
  605. "__uuid__": "5f0fc002-c28b-49c8-9aa4-2468a23c60fd"
  606. },
  607. "_type": 1,
  608. "_sizeMode": 0,
  609. "_fillType": 0,
  610. "_fillCenter": {
  611. "__type__": "cc.Vec2",
  612. "x": 0,
  613. "y": 0
  614. },
  615. "_fillStart": 0,
  616. "_fillRange": 0,
  617. "_isTrimmedMode": false,
  618. "_atlas": {
  619. "__uuid__": "3905bccb-bbf8-4db7-9c38-2343245ba06b"
  620. },
  621. "_id": ""
  622. },
  623. {
  624. "__type__": "cc.PrefabInfo",
  625. "root": {
  626. "__id__": 1
  627. },
  628. "asset": {
  629. "__uuid__": "4896bb32-26a7-4b08-98aa-838a9f85ba8d"
  630. },
  631. "fileId": "1cFA/O2QJBIIqDx5/kL7sm",
  632. "sync": false
  633. },
  634. {
  635. "__type__": "cc.Node",
  636. "_name": "loginText",
  637. "_objFlags": 0,
  638. "_parent": {
  639. "__id__": 8
  640. },
  641. "_children": [],
  642. "_active": true,
  643. "_components": [
  644. {
  645. "__id__": 16
  646. }
  647. ],
  648. "_prefab": {
  649. "__id__": 17
  650. },
  651. "_opacity": 255,
  652. "_color": {
  653. "__type__": "cc.Color",
  654. "r": 255,
  655. "g": 255,
  656. "b": 255,
  657. "a": 255
  658. },
  659. "_contentSize": {
  660. "__type__": "cc.Size",
  661. "width": 56,
  662. "height": 50.4
  663. },
  664. "_anchorPoint": {
  665. "__type__": "cc.Vec2",
  666. "x": 0.5,
  667. "y": 0.5
  668. },
  669. "_trs": {
  670. "__type__": "TypedArray",
  671. "ctor": "Float64Array",
  672. "array": [
  673. 0,
  674. 0,
  675. 0,
  676. 0,
  677. 0,
  678. 0,
  679. 1,
  680. 1,
  681. 1,
  682. 1
  683. ]
  684. },
  685. "_eulerAngles": {
  686. "__type__": "cc.Vec3",
  687. "x": 0,
  688. "y": 0,
  689. "z": 0
  690. },
  691. "_skewX": 0,
  692. "_skewY": 0,
  693. "_is3DNode": false,
  694. "_groupIndex": 0,
  695. "groupIndex": 0,
  696. "_id": ""
  697. },
  698. {
  699. "__type__": "cc.Label",
  700. "_name": "",
  701. "_objFlags": 0,
  702. "node": {
  703. "__id__": 15
  704. },
  705. "_enabled": true,
  706. "_materials": [
  707. {
  708. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  709. }
  710. ],
  711. "_useOriginalSize": false,
  712. "_string": "登录",
  713. "_N$string": "登录",
  714. "_fontSize": 28,
  715. "_lineHeight": 40,
  716. "_enableWrapText": true,
  717. "_N$file": null,
  718. "_isSystemFontUsed": true,
  719. "_spacingX": 0,
  720. "_batchAsBitmap": false,
  721. "_styleFlags": 0,
  722. "_underlineHeight": 0,
  723. "_N$horizontalAlign": 1,
  724. "_N$verticalAlign": 1,
  725. "_N$fontFamily": "Arial",
  726. "_N$overflow": 0,
  727. "_N$cacheMode": 0,
  728. "_id": ""
  729. },
  730. {
  731. "__type__": "cc.PrefabInfo",
  732. "root": {
  733. "__id__": 1
  734. },
  735. "asset": {
  736. "__uuid__": "4896bb32-26a7-4b08-98aa-838a9f85ba8d"
  737. },
  738. "fileId": "69JQ2M0WxJM6CFVNUWU8S7",
  739. "sync": false
  740. },
  741. {
  742. "__type__": "cc.Toggle",
  743. "_name": "",
  744. "_objFlags": 0,
  745. "node": {
  746. "__id__": 8
  747. },
  748. "_enabled": true,
  749. "_normalMaterial": {
  750. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  751. },
  752. "_grayMaterial": null,
  753. "duration": 0.1,
  754. "zoomScale": 1.2,
  755. "clickEvents": [],
  756. "_N$interactable": true,
  757. "_N$enableAutoGrayEffect": false,
  758. "_N$transition": 0,
  759. "transition": 0,
  760. "_N$normalColor": {
  761. "__type__": "cc.Color",
  762. "r": 214,
  763. "g": 214,
  764. "b": 214,
  765. "a": 255
  766. },
  767. "_N$pressedColor": {
  768. "__type__": "cc.Color",
  769. "r": 211,
  770. "g": 211,
  771. "b": 211,
  772. "a": 255
  773. },
  774. "pressedColor": {
  775. "__type__": "cc.Color",
  776. "r": 211,
  777. "g": 211,
  778. "b": 211,
  779. "a": 255
  780. },
  781. "_N$hoverColor": {
  782. "__type__": "cc.Color",
  783. "r": 255,
  784. "g": 255,
  785. "b": 255,
  786. "a": 255
  787. },
  788. "hoverColor": {
  789. "__type__": "cc.Color",
  790. "r": 255,
  791. "g": 255,
  792. "b": 255,
  793. "a": 255
  794. },
  795. "_N$disabledColor": {
  796. "__type__": "cc.Color",
  797. "r": 124,
  798. "g": 124,
  799. "b": 124,
  800. "a": 255
  801. },
  802. "_N$normalSprite": null,
  803. "_N$pressedSprite": null,
  804. "pressedSprite": null,
  805. "_N$hoverSprite": null,
  806. "hoverSprite": null,
  807. "_N$disabledSprite": null,
  808. "_N$target": {
  809. "__id__": 9
  810. },
  811. "_N$isChecked": false,
  812. "toggleGroup": {
  813. "__id__": 19
  814. },
  815. "checkMark": {
  816. "__id__": 13
  817. },
  818. "checkEvents": [],
  819. "_id": ""
  820. },
  821. {
  822. "__type__": "cc.ToggleGroup",
  823. "_name": "",
  824. "_objFlags": 0,
  825. "node": {
  826. "__id__": 7
  827. },
  828. "_enabled": true,
  829. "allowSwitchOff": false,
  830. "_id": ""
  831. },
  832. {
  833. "__type__": "cc.PrefabInfo",
  834. "root": {
  835. "__id__": 1
  836. },
  837. "asset": {
  838. "__uuid__": "4896bb32-26a7-4b08-98aa-838a9f85ba8d"
  839. },
  840. "fileId": "55PrRt5eRIj5QhThB6fXPF",
  841. "sync": false
  842. },
  843. {
  844. "__type__": "cc.Node",
  845. "_name": "codeToggle",
  846. "_objFlags": 0,
  847. "_parent": {
  848. "__id__": 7
  849. },
  850. "_children": [
  851. {
  852. "__id__": 22
  853. },
  854. {
  855. "__id__": 25
  856. },
  857. {
  858. "__id__": 28
  859. }
  860. ],
  861. "_active": true,
  862. "_components": [
  863. {
  864. "__id__": 31
  865. }
  866. ],
  867. "_prefab": {
  868. "__id__": 32
  869. },
  870. "_opacity": 255,
  871. "_color": {
  872. "__type__": "cc.Color",
  873. "r": 255,
  874. "g": 255,
  875. "b": 255,
  876. "a": 255
  877. },
  878. "_contentSize": {
  879. "__type__": "cc.Size",
  880. "width": 300,
  881. "height": 60
  882. },
  883. "_anchorPoint": {
  884. "__type__": "cc.Vec2",
  885. "x": 0.5,
  886. "y": 0.5
  887. },
  888. "_trs": {
  889. "__type__": "TypedArray",
  890. "ctor": "Float64Array",
  891. "array": [
  892. 150,
  893. 0,
  894. 0,
  895. 0,
  896. 0,
  897. 0,
  898. 1,
  899. 1,
  900. 1,
  901. 1
  902. ]
  903. },
  904. "_eulerAngles": {
  905. "__type__": "cc.Vec3",
  906. "x": 0,
  907. "y": 0,
  908. "z": 0
  909. },
  910. "_skewX": 0,
  911. "_skewY": 0,
  912. "_is3DNode": false,
  913. "_groupIndex": 0,
  914. "groupIndex": 0,
  915. "_id": ""
  916. },
  917. {
  918. "__type__": "cc.Node",
  919. "_name": "Background",
  920. "_objFlags": 0,
  921. "_parent": {
  922. "__id__": 21
  923. },
  924. "_children": [],
  925. "_active": true,
  926. "_components": [
  927. {
  928. "__id__": 23
  929. }
  930. ],
  931. "_prefab": {
  932. "__id__": 24
  933. },
  934. "_opacity": 255,
  935. "_color": {
  936. "__type__": "cc.Color",
  937. "r": 255,
  938. "g": 255,
  939. "b": 255,
  940. "a": 255
  941. },
  942. "_contentSize": {
  943. "__type__": "cc.Size",
  944. "width": 300,
  945. "height": 60
  946. },
  947. "_anchorPoint": {
  948. "__type__": "cc.Vec2",
  949. "x": 0.5,
  950. "y": 0.5
  951. },
  952. "_trs": {
  953. "__type__": "TypedArray",
  954. "ctor": "Float64Array",
  955. "array": [
  956. 0,
  957. 0,
  958. 0,
  959. 0,
  960. 0,
  961. 0,
  962. 1,
  963. 1,
  964. 1,
  965. 1
  966. ]
  967. },
  968. "_eulerAngles": {
  969. "__type__": "cc.Vec3",
  970. "x": 0,
  971. "y": 0,
  972. "z": 0
  973. },
  974. "_skewX": 0,
  975. "_skewY": 0,
  976. "_is3DNode": false,
  977. "_groupIndex": 0,
  978. "groupIndex": 0,
  979. "_id": ""
  980. },
  981. {
  982. "__type__": "cc.Sprite",
  983. "_name": "",
  984. "_objFlags": 0,
  985. "node": {
  986. "__id__": 22
  987. },
  988. "_enabled": true,
  989. "_materials": [
  990. {
  991. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  992. }
  993. ],
  994. "_srcBlendFactor": 770,
  995. "_dstBlendFactor": 771,
  996. "_spriteFrame": {
  997. "__uuid__": "1c14d17a-92d3-4eca-9802-60f21ceeb862"
  998. },
  999. "_type": 1,
  1000. "_sizeMode": 0,
  1001. "_fillType": 0,
  1002. "_fillCenter": {
  1003. "__type__": "cc.Vec2",
  1004. "x": 0,
  1005. "y": 0
  1006. },
  1007. "_fillStart": 0,
  1008. "_fillRange": 0,
  1009. "_isTrimmedMode": true,
  1010. "_atlas": {
  1011. "__uuid__": "3905bccb-bbf8-4db7-9c38-2343245ba06b"
  1012. },
  1013. "_id": ""
  1014. },
  1015. {
  1016. "__type__": "cc.PrefabInfo",
  1017. "root": {
  1018. "__id__": 1
  1019. },
  1020. "asset": {
  1021. "__uuid__": "4896bb32-26a7-4b08-98aa-838a9f85ba8d"
  1022. },
  1023. "fileId": "feL3wnmF5GrrTab/+7xvi6",
  1024. "sync": false
  1025. },
  1026. {
  1027. "__type__": "cc.Node",
  1028. "_name": "checkmark",
  1029. "_objFlags": 0,
  1030. "_parent": {
  1031. "__id__": 21
  1032. },
  1033. "_children": [],
  1034. "_active": true,
  1035. "_components": [
  1036. {
  1037. "__id__": 26
  1038. }
  1039. ],
  1040. "_prefab": {
  1041. "__id__": 27
  1042. },
  1043. "_opacity": 255,
  1044. "_color": {
  1045. "__type__": "cc.Color",
  1046. "r": 255,
  1047. "g": 255,
  1048. "b": 255,
  1049. "a": 255
  1050. },
  1051. "_contentSize": {
  1052. "__type__": "cc.Size",
  1053. "width": 300,
  1054. "height": 60
  1055. },
  1056. "_anchorPoint": {
  1057. "__type__": "cc.Vec2",
  1058. "x": 0.5,
  1059. "y": 0.5
  1060. },
  1061. "_trs": {
  1062. "__type__": "TypedArray",
  1063. "ctor": "Float64Array",
  1064. "array": [
  1065. 0,
  1066. 0,
  1067. 0,
  1068. 0,
  1069. 0,
  1070. 0,
  1071. 1,
  1072. 1,
  1073. 1,
  1074. 1
  1075. ]
  1076. },
  1077. "_eulerAngles": {
  1078. "__type__": "cc.Vec3",
  1079. "x": 0,
  1080. "y": 0,
  1081. "z": 0
  1082. },
  1083. "_skewX": 0,
  1084. "_skewY": 0,
  1085. "_is3DNode": false,
  1086. "_groupIndex": 0,
  1087. "groupIndex": 0,
  1088. "_id": ""
  1089. },
  1090. {
  1091. "__type__": "cc.Sprite",
  1092. "_name": "",
  1093. "_objFlags": 0,
  1094. "node": {
  1095. "__id__": 25
  1096. },
  1097. "_enabled": true,
  1098. "_materials": [
  1099. {
  1100. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1101. }
  1102. ],
  1103. "_srcBlendFactor": 770,
  1104. "_dstBlendFactor": 771,
  1105. "_spriteFrame": {
  1106. "__uuid__": "5f0fc002-c28b-49c8-9aa4-2468a23c60fd"
  1107. },
  1108. "_type": 1,
  1109. "_sizeMode": 0,
  1110. "_fillType": 0,
  1111. "_fillCenter": {
  1112. "__type__": "cc.Vec2",
  1113. "x": 0,
  1114. "y": 0
  1115. },
  1116. "_fillStart": 0,
  1117. "_fillRange": 0,
  1118. "_isTrimmedMode": false,
  1119. "_atlas": {
  1120. "__uuid__": "3905bccb-bbf8-4db7-9c38-2343245ba06b"
  1121. },
  1122. "_id": ""
  1123. },
  1124. {
  1125. "__type__": "cc.PrefabInfo",
  1126. "root": {
  1127. "__id__": 1
  1128. },
  1129. "asset": {
  1130. "__uuid__": "4896bb32-26a7-4b08-98aa-838a9f85ba8d"
  1131. },
  1132. "fileId": "cceTm7XT1E7pQ0QG7/XB9D",
  1133. "sync": false
  1134. },
  1135. {
  1136. "__type__": "cc.Node",
  1137. "_name": "codeText",
  1138. "_objFlags": 0,
  1139. "_parent": {
  1140. "__id__": 21
  1141. },
  1142. "_children": [],
  1143. "_active": true,
  1144. "_components": [
  1145. {
  1146. "__id__": 29
  1147. }
  1148. ],
  1149. "_prefab": {
  1150. "__id__": 30
  1151. },
  1152. "_opacity": 255,
  1153. "_color": {
  1154. "__type__": "cc.Color",
  1155. "r": 255,
  1156. "g": 255,
  1157. "b": 255,
  1158. "a": 255
  1159. },
  1160. "_contentSize": {
  1161. "__type__": "cc.Size",
  1162. "width": 224,
  1163. "height": 50.4
  1164. },
  1165. "_anchorPoint": {
  1166. "__type__": "cc.Vec2",
  1167. "x": 0.5,
  1168. "y": 0.5
  1169. },
  1170. "_trs": {
  1171. "__type__": "TypedArray",
  1172. "ctor": "Float64Array",
  1173. "array": [
  1174. 0,
  1175. 0,
  1176. 0,
  1177. 0,
  1178. 0,
  1179. 0,
  1180. 1,
  1181. 1,
  1182. 1,
  1183. 1
  1184. ]
  1185. },
  1186. "_eulerAngles": {
  1187. "__type__": "cc.Vec3",
  1188. "x": 0,
  1189. "y": 0,
  1190. "z": 0
  1191. },
  1192. "_skewX": 0,
  1193. "_skewY": 0,
  1194. "_is3DNode": false,
  1195. "_groupIndex": 0,
  1196. "groupIndex": 0,
  1197. "_id": ""
  1198. },
  1199. {
  1200. "__type__": "cc.Label",
  1201. "_name": "",
  1202. "_objFlags": 0,
  1203. "node": {
  1204. "__id__": 28
  1205. },
  1206. "_enabled": true,
  1207. "_materials": [
  1208. {
  1209. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1210. }
  1211. ],
  1212. "_useOriginalSize": false,
  1213. "_string": "手机验证号码登录",
  1214. "_N$string": "手机验证号码登录",
  1215. "_fontSize": 28,
  1216. "_lineHeight": 40,
  1217. "_enableWrapText": true,
  1218. "_N$file": null,
  1219. "_isSystemFontUsed": true,
  1220. "_spacingX": 0,
  1221. "_batchAsBitmap": false,
  1222. "_styleFlags": 0,
  1223. "_underlineHeight": 0,
  1224. "_N$horizontalAlign": 1,
  1225. "_N$verticalAlign": 1,
  1226. "_N$fontFamily": "Arial",
  1227. "_N$overflow": 0,
  1228. "_N$cacheMode": 0,
  1229. "_id": ""
  1230. },
  1231. {
  1232. "__type__": "cc.PrefabInfo",
  1233. "root": {
  1234. "__id__": 1
  1235. },
  1236. "asset": {
  1237. "__uuid__": "4896bb32-26a7-4b08-98aa-838a9f85ba8d"
  1238. },
  1239. "fileId": "d7ASCgCexGw6A/vRhP9GnO",
  1240. "sync": false
  1241. },
  1242. {
  1243. "__type__": "cc.Toggle",
  1244. "_name": "",
  1245. "_objFlags": 0,
  1246. "node": {
  1247. "__id__": 21
  1248. },
  1249. "_enabled": true,
  1250. "_normalMaterial": {
  1251. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1252. },
  1253. "_grayMaterial": null,
  1254. "duration": 0.1,
  1255. "zoomScale": 1.2,
  1256. "clickEvents": [],
  1257. "_N$interactable": true,
  1258. "_N$enableAutoGrayEffect": false,
  1259. "_N$transition": 0,
  1260. "transition": 0,
  1261. "_N$normalColor": {
  1262. "__type__": "cc.Color",
  1263. "r": 214,
  1264. "g": 214,
  1265. "b": 214,
  1266. "a": 255
  1267. },
  1268. "_N$pressedColor": {
  1269. "__type__": "cc.Color",
  1270. "r": 211,
  1271. "g": 211,
  1272. "b": 211,
  1273. "a": 255
  1274. },
  1275. "pressedColor": {
  1276. "__type__": "cc.Color",
  1277. "r": 211,
  1278. "g": 211,
  1279. "b": 211,
  1280. "a": 255
  1281. },
  1282. "_N$hoverColor": {
  1283. "__type__": "cc.Color",
  1284. "r": 255,
  1285. "g": 255,
  1286. "b": 255,
  1287. "a": 255
  1288. },
  1289. "hoverColor": {
  1290. "__type__": "cc.Color",
  1291. "r": 255,
  1292. "g": 255,
  1293. "b": 255,
  1294. "a": 255
  1295. },
  1296. "_N$disabledColor": {
  1297. "__type__": "cc.Color",
  1298. "r": 124,
  1299. "g": 124,
  1300. "b": 124,
  1301. "a": 255
  1302. },
  1303. "_N$normalSprite": null,
  1304. "_N$pressedSprite": null,
  1305. "pressedSprite": null,
  1306. "_N$hoverSprite": null,
  1307. "hoverSprite": null,
  1308. "_N$disabledSprite": null,
  1309. "_N$target": {
  1310. "__id__": 22
  1311. },
  1312. "_N$isChecked": true,
  1313. "toggleGroup": {
  1314. "__id__": 19
  1315. },
  1316. "checkMark": {
  1317. "__id__": 26
  1318. },
  1319. "checkEvents": [],
  1320. "_id": ""
  1321. },
  1322. {
  1323. "__type__": "cc.PrefabInfo",
  1324. "root": {
  1325. "__id__": 1
  1326. },
  1327. "asset": {
  1328. "__uuid__": "4896bb32-26a7-4b08-98aa-838a9f85ba8d"
  1329. },
  1330. "fileId": "0aN/7AYEVG4b8y9L28XgmZ",
  1331. "sync": false
  1332. },
  1333. {
  1334. "__type__": "cc.Layout",
  1335. "_name": "",
  1336. "_objFlags": 0,
  1337. "node": {
  1338. "__id__": 7
  1339. },
  1340. "_enabled": true,
  1341. "_layoutSize": {
  1342. "__type__": "cc.Size",
  1343. "width": 600,
  1344. "height": 60
  1345. },
  1346. "_resize": 1,
  1347. "_N$layoutType": 1,
  1348. "_N$padding": 0,
  1349. "_N$cellSize": {
  1350. "__type__": "cc.Size",
  1351. "width": 40,
  1352. "height": 40
  1353. },
  1354. "_N$startAxis": 0,
  1355. "_N$paddingLeft": 0,
  1356. "_N$paddingRight": 0,
  1357. "_N$paddingTop": 0,
  1358. "_N$paddingBottom": 0,
  1359. "_N$spacingX": 0,
  1360. "_N$spacingY": 0,
  1361. "_N$verticalDirection": 1,
  1362. "_N$horizontalDirection": 0,
  1363. "_N$affectedByScale": false,
  1364. "_id": ""
  1365. },
  1366. {
  1367. "__type__": "cc.PrefabInfo",
  1368. "root": {
  1369. "__id__": 1
  1370. },
  1371. "asset": {
  1372. "__uuid__": "4896bb32-26a7-4b08-98aa-838a9f85ba8d"
  1373. },
  1374. "fileId": "87TrevoLNNQI1MHv9X8BT3",
  1375. "sync": false
  1376. },
  1377. {
  1378. "__type__": "cc.Node",
  1379. "_name": "content",
  1380. "_objFlags": 0,
  1381. "_parent": {
  1382. "__id__": 1
  1383. },
  1384. "_children": [
  1385. {
  1386. "__id__": 36
  1387. },
  1388. {
  1389. "__id__": 51
  1390. },
  1391. {
  1392. "__id__": 66
  1393. },
  1394. {
  1395. "__id__": 92
  1396. },
  1397. {
  1398. "__id__": 110
  1399. },
  1400. {
  1401. "__id__": 122
  1402. }
  1403. ],
  1404. "_active": true,
  1405. "_components": [
  1406. {
  1407. "__id__": 147
  1408. }
  1409. ],
  1410. "_prefab": {
  1411. "__id__": 148
  1412. },
  1413. "_opacity": 255,
  1414. "_color": {
  1415. "__type__": "cc.Color",
  1416. "r": 255,
  1417. "g": 255,
  1418. "b": 255,
  1419. "a": 255
  1420. },
  1421. "_contentSize": {
  1422. "__type__": "cc.Size",
  1423. "width": 600,
  1424. "height": 398
  1425. },
  1426. "_anchorPoint": {
  1427. "__type__": "cc.Vec2",
  1428. "x": 0.5,
  1429. "y": 1
  1430. },
  1431. "_trs": {
  1432. "__type__": "TypedArray",
  1433. "ctor": "Float64Array",
  1434. "array": [
  1435. 0,
  1436. 89,
  1437. 0,
  1438. 0,
  1439. 0,
  1440. 0,
  1441. 1,
  1442. 1,
  1443. 1,
  1444. 1
  1445. ]
  1446. },
  1447. "_eulerAngles": {
  1448. "__type__": "cc.Vec3",
  1449. "x": 0,
  1450. "y": 0,
  1451. "z": 0
  1452. },
  1453. "_skewX": 0,
  1454. "_skewY": 0,
  1455. "_is3DNode": false,
  1456. "_groupIndex": 0,
  1457. "groupIndex": 0,
  1458. "_id": ""
  1459. },
  1460. {
  1461. "__type__": "cc.Node",
  1462. "_name": "phoneEditor",
  1463. "_objFlags": 0,
  1464. "_parent": {
  1465. "__id__": 35
  1466. },
  1467. "_children": [
  1468. {
  1469. "__id__": 37
  1470. },
  1471. {
  1472. "__id__": 41
  1473. },
  1474. {
  1475. "__id__": 45
  1476. }
  1477. ],
  1478. "_active": true,
  1479. "_components": [
  1480. {
  1481. "__id__": 49
  1482. }
  1483. ],
  1484. "_prefab": {
  1485. "__id__": 50
  1486. },
  1487. "_opacity": 255,
  1488. "_color": {
  1489. "__type__": "cc.Color",
  1490. "r": 255,
  1491. "g": 255,
  1492. "b": 255,
  1493. "a": 255
  1494. },
  1495. "_contentSize": {
  1496. "__type__": "cc.Size",
  1497. "width": 600,
  1498. "height": 60
  1499. },
  1500. "_anchorPoint": {
  1501. "__type__": "cc.Vec2",
  1502. "x": 0.5,
  1503. "y": 0.5
  1504. },
  1505. "_trs": {
  1506. "__type__": "TypedArray",
  1507. "ctor": "Float64Array",
  1508. "array": [
  1509. 0,
  1510. -70,
  1511. 0,
  1512. 0,
  1513. 0,
  1514. 0,
  1515. 1,
  1516. 1,
  1517. 1,
  1518. 1
  1519. ]
  1520. },
  1521. "_eulerAngles": {
  1522. "__type__": "cc.Vec3",
  1523. "x": 0,
  1524. "y": 0,
  1525. "z": 0
  1526. },
  1527. "_skewX": 0,
  1528. "_skewY": 0,
  1529. "_is3DNode": false,
  1530. "_groupIndex": 0,
  1531. "groupIndex": 0,
  1532. "_id": ""
  1533. },
  1534. {
  1535. "__type__": "cc.Node",
  1536. "_name": "BACKGROUND_SPRITE",
  1537. "_objFlags": 0,
  1538. "_parent": {
  1539. "__id__": 36
  1540. },
  1541. "_children": [],
  1542. "_active": true,
  1543. "_components": [
  1544. {
  1545. "__id__": 38
  1546. },
  1547. {
  1548. "__id__": 39
  1549. }
  1550. ],
  1551. "_prefab": {
  1552. "__id__": 40
  1553. },
  1554. "_opacity": 255,
  1555. "_color": {
  1556. "__type__": "cc.Color",
  1557. "r": 255,
  1558. "g": 255,
  1559. "b": 255,
  1560. "a": 255
  1561. },
  1562. "_contentSize": {
  1563. "__type__": "cc.Size",
  1564. "width": 600,
  1565. "height": 60
  1566. },
  1567. "_anchorPoint": {
  1568. "__type__": "cc.Vec2",
  1569. "x": 0.5,
  1570. "y": 0.5
  1571. },
  1572. "_trs": {
  1573. "__type__": "TypedArray",
  1574. "ctor": "Float64Array",
  1575. "array": [
  1576. 0,
  1577. 0,
  1578. 0,
  1579. 0,
  1580. 0,
  1581. 0,
  1582. 1,
  1583. 1,
  1584. 1,
  1585. 1
  1586. ]
  1587. },
  1588. "_eulerAngles": {
  1589. "__type__": "cc.Vec3",
  1590. "x": 0,
  1591. "y": 0,
  1592. "z": 0
  1593. },
  1594. "_skewX": 0,
  1595. "_skewY": 0,
  1596. "_is3DNode": false,
  1597. "_groupIndex": 0,
  1598. "groupIndex": 0,
  1599. "_id": ""
  1600. },
  1601. {
  1602. "__type__": "cc.Sprite",
  1603. "_name": "",
  1604. "_objFlags": 0,
  1605. "node": {
  1606. "__id__": 37
  1607. },
  1608. "_enabled": true,
  1609. "_materials": [
  1610. {
  1611. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1612. }
  1613. ],
  1614. "_srcBlendFactor": 770,
  1615. "_dstBlendFactor": 771,
  1616. "_spriteFrame": {
  1617. "__uuid__": "ff0e91c7-55c6-4086-a39f-cb6e457b8c3b"
  1618. },
  1619. "_type": 1,
  1620. "_sizeMode": 0,
  1621. "_fillType": 0,
  1622. "_fillCenter": {
  1623. "__type__": "cc.Vec2",
  1624. "x": 0,
  1625. "y": 0
  1626. },
  1627. "_fillStart": 0,
  1628. "_fillRange": 0,
  1629. "_isTrimmedMode": true,
  1630. "_atlas": null,
  1631. "_id": ""
  1632. },
  1633. {
  1634. "__type__": "cc.Widget",
  1635. "_name": "",
  1636. "_objFlags": 0,
  1637. "node": {
  1638. "__id__": 37
  1639. },
  1640. "_enabled": true,
  1641. "alignMode": 0,
  1642. "_target": null,
  1643. "_alignFlags": 45,
  1644. "_left": 0,
  1645. "_right": 0,
  1646. "_top": 0,
  1647. "_bottom": 0,
  1648. "_verticalCenter": 0,
  1649. "_horizontalCenter": 0,
  1650. "_isAbsLeft": true,
  1651. "_isAbsRight": true,
  1652. "_isAbsTop": true,
  1653. "_isAbsBottom": true,
  1654. "_isAbsHorizontalCenter": true,
  1655. "_isAbsVerticalCenter": true,
  1656. "_originalWidth": 160,
  1657. "_originalHeight": 40,
  1658. "_id": ""
  1659. },
  1660. {
  1661. "__type__": "cc.PrefabInfo",
  1662. "root": {
  1663. "__id__": 1
  1664. },
  1665. "asset": {
  1666. "__uuid__": "4896bb32-26a7-4b08-98aa-838a9f85ba8d"
  1667. },
  1668. "fileId": "8aW2kAXtBNSaZZW3KlnhLz",
  1669. "sync": false
  1670. },
  1671. {
  1672. "__type__": "cc.Node",
  1673. "_name": "TEXT_LABEL",
  1674. "_objFlags": 0,
  1675. "_parent": {
  1676. "__id__": 36
  1677. },
  1678. "_children": [],
  1679. "_active": false,
  1680. "_components": [
  1681. {
  1682. "__id__": 42
  1683. },
  1684. {
  1685. "__id__": 43
  1686. }
  1687. ],
  1688. "_prefab": {
  1689. "__id__": 44
  1690. },
  1691. "_opacity": 255,
  1692. "_color": {
  1693. "__type__": "cc.Color",
  1694. "r": 255,
  1695. "g": 255,
  1696. "b": 255,
  1697. "a": 255
  1698. },
  1699. "_contentSize": {
  1700. "__type__": "cc.Size",
  1701. "width": 158,
  1702. "height": 40
  1703. },
  1704. "_anchorPoint": {
  1705. "__type__": "cc.Vec2",
  1706. "x": 0,
  1707. "y": 1
  1708. },
  1709. "_trs": {
  1710. "__type__": "TypedArray",
  1711. "ctor": "Float64Array",
  1712. "array": [
  1713. -78,
  1714. 20,
  1715. 0,
  1716. 0,
  1717. 0,
  1718. 0,
  1719. 1,
  1720. 1,
  1721. 1,
  1722. 1
  1723. ]
  1724. },
  1725. "_eulerAngles": {
  1726. "__type__": "cc.Vec3",
  1727. "x": 0,
  1728. "y": 0,
  1729. "z": 0
  1730. },
  1731. "_skewX": 0,
  1732. "_skewY": 0,
  1733. "_is3DNode": false,
  1734. "_groupIndex": 0,
  1735. "groupIndex": 0,
  1736. "_id": ""
  1737. },
  1738. {
  1739. "__type__": "cc.Label",
  1740. "_name": "",
  1741. "_objFlags": 0,
  1742. "node": {
  1743. "__id__": 41
  1744. },
  1745. "_enabled": true,
  1746. "_materials": [],
  1747. "_useOriginalSize": true,
  1748. "_string": "",
  1749. "_N$string": "",
  1750. "_fontSize": 20,
  1751. "_lineHeight": 25,
  1752. "_enableWrapText": false,
  1753. "_N$file": null,
  1754. "_isSystemFontUsed": true,
  1755. "_spacingX": 0,
  1756. "_batchAsBitmap": false,
  1757. "_styleFlags": 0,
  1758. "_underlineHeight": 0,
  1759. "_N$horizontalAlign": 0,
  1760. "_N$verticalAlign": 1,
  1761. "_N$fontFamily": "Arial",
  1762. "_N$overflow": 1,
  1763. "_N$cacheMode": 0,
  1764. "_id": ""
  1765. },
  1766. {
  1767. "__type__": "cc.Widget",
  1768. "_name": "",
  1769. "_objFlags": 0,
  1770. "node": {
  1771. "__id__": 41
  1772. },
  1773. "_enabled": true,
  1774. "alignMode": 0,
  1775. "_target": null,
  1776. "_alignFlags": 45,
  1777. "_left": 2,
  1778. "_right": 0,
  1779. "_top": 0,
  1780. "_bottom": 0,
  1781. "_verticalCenter": 0,
  1782. "_horizontalCenter": 0,
  1783. "_isAbsLeft": true,
  1784. "_isAbsRight": true,
  1785. "_isAbsTop": true,
  1786. "_isAbsBottom": true,
  1787. "_isAbsHorizontalCenter": true,
  1788. "_isAbsVerticalCenter": true,
  1789. "_originalWidth": 158,
  1790. "_originalHeight": 40,
  1791. "_id": ""
  1792. },
  1793. {
  1794. "__type__": "cc.PrefabInfo",
  1795. "root": {
  1796. "__id__": 1
  1797. },
  1798. "asset": {
  1799. "__uuid__": "4896bb32-26a7-4b08-98aa-838a9f85ba8d"
  1800. },
  1801. "fileId": "43RPxEgpxBa6IXdT/YmnX4",
  1802. "sync": false
  1803. },
  1804. {
  1805. "__type__": "cc.Node",
  1806. "_name": "PLACEHOLDER_LABEL",
  1807. "_objFlags": 0,
  1808. "_parent": {
  1809. "__id__": 36
  1810. },
  1811. "_children": [],
  1812. "_active": true,
  1813. "_components": [
  1814. {
  1815. "__id__": 46
  1816. },
  1817. {
  1818. "__id__": 47
  1819. }
  1820. ],
  1821. "_prefab": {
  1822. "__id__": 48
  1823. },
  1824. "_opacity": 255,
  1825. "_color": {
  1826. "__type__": "cc.Color",
  1827. "r": 187,
  1828. "g": 187,
  1829. "b": 187,
  1830. "a": 255
  1831. },
  1832. "_contentSize": {
  1833. "__type__": "cc.Size",
  1834. "width": 598,
  1835. "height": 60
  1836. },
  1837. "_anchorPoint": {
  1838. "__type__": "cc.Vec2",
  1839. "x": 0,
  1840. "y": 1
  1841. },
  1842. "_trs": {
  1843. "__type__": "TypedArray",
  1844. "ctor": "Float64Array",
  1845. "array": [
  1846. -298,
  1847. 30,
  1848. 0,
  1849. 0,
  1850. 0,
  1851. 0,
  1852. 1,
  1853. 1,
  1854. 1,
  1855. 1
  1856. ]
  1857. },
  1858. "_eulerAngles": {
  1859. "__type__": "cc.Vec3",
  1860. "x": 0,
  1861. "y": 0,
  1862. "z": 0
  1863. },
  1864. "_skewX": 0,
  1865. "_skewY": 0,
  1866. "_is3DNode": false,
  1867. "_groupIndex": 0,
  1868. "groupIndex": 0,
  1869. "_id": ""
  1870. },
  1871. {
  1872. "__type__": "cc.Label",
  1873. "_name": "",
  1874. "_objFlags": 0,
  1875. "node": {
  1876. "__id__": 45
  1877. },
  1878. "_enabled": true,
  1879. "_materials": [
  1880. {
  1881. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1882. }
  1883. ],
  1884. "_useOriginalSize": true,
  1885. "_string": "请输入手机号",
  1886. "_N$string": "请输入手机号",
  1887. "_fontSize": 20,
  1888. "_lineHeight": 25,
  1889. "_enableWrapText": false,
  1890. "_N$file": null,
  1891. "_isSystemFontUsed": true,
  1892. "_spacingX": 0,
  1893. "_batchAsBitmap": false,
  1894. "_styleFlags": 0,
  1895. "_underlineHeight": 0,
  1896. "_N$horizontalAlign": 0,
  1897. "_N$verticalAlign": 1,
  1898. "_N$fontFamily": "Arial",
  1899. "_N$overflow": 1,
  1900. "_N$cacheMode": 0,
  1901. "_id": ""
  1902. },
  1903. {
  1904. "__type__": "cc.Widget",
  1905. "_name": "",
  1906. "_objFlags": 0,
  1907. "node": {
  1908. "__id__": 45
  1909. },
  1910. "_enabled": true,
  1911. "alignMode": 0,
  1912. "_target": null,
  1913. "_alignFlags": 45,
  1914. "_left": 2,
  1915. "_right": 0,
  1916. "_top": 0,
  1917. "_bottom": 0,
  1918. "_verticalCenter": 0,
  1919. "_horizontalCenter": 0,
  1920. "_isAbsLeft": true,
  1921. "_isAbsRight": true,
  1922. "_isAbsTop": true,
  1923. "_isAbsBottom": true,
  1924. "_isAbsHorizontalCenter": true,
  1925. "_isAbsVerticalCenter": true,
  1926. "_originalWidth": 158,
  1927. "_originalHeight": 40,
  1928. "_id": ""
  1929. },
  1930. {
  1931. "__type__": "cc.PrefabInfo",
  1932. "root": {
  1933. "__id__": 1
  1934. },
  1935. "asset": {
  1936. "__uuid__": "4896bb32-26a7-4b08-98aa-838a9f85ba8d"
  1937. },
  1938. "fileId": "f72aQ0TUZKHJNB32NzZef9",
  1939. "sync": false
  1940. },
  1941. {
  1942. "__type__": "cc.EditBox",
  1943. "_name": "",
  1944. "_objFlags": 0,
  1945. "node": {
  1946. "__id__": 36
  1947. },
  1948. "_enabled": true,
  1949. "_useOriginalSize": false,
  1950. "_string": "",
  1951. "returnType": 0,
  1952. "maxLength": 11,
  1953. "_tabIndex": 0,
  1954. "editingDidBegan": [],
  1955. "textChanged": [],
  1956. "editingDidEnded": [],
  1957. "editingReturn": [],
  1958. "_N$textLabel": {
  1959. "__id__": 42
  1960. },
  1961. "_N$placeholderLabel": {
  1962. "__id__": 46
  1963. },
  1964. "_N$background": {
  1965. "__id__": 38
  1966. },
  1967. "_N$inputFlag": 5,
  1968. "_N$inputMode": 3,
  1969. "_N$stayOnTop": false,
  1970. "_id": ""
  1971. },
  1972. {
  1973. "__type__": "cc.PrefabInfo",
  1974. "root": {
  1975. "__id__": 1
  1976. },
  1977. "asset": {
  1978. "__uuid__": "4896bb32-26a7-4b08-98aa-838a9f85ba8d"
  1979. },
  1980. "fileId": "02eFGl59lLma03S5oUMyVr",
  1981. "sync": false
  1982. },
  1983. {
  1984. "__type__": "cc.Node",
  1985. "_name": "passwordEditor",
  1986. "_objFlags": 0,
  1987. "_parent": {
  1988. "__id__": 35
  1989. },
  1990. "_children": [
  1991. {
  1992. "__id__": 52
  1993. },
  1994. {
  1995. "__id__": 56
  1996. },
  1997. {
  1998. "__id__": 60
  1999. }
  2000. ],
  2001. "_active": true,
  2002. "_components": [
  2003. {
  2004. "__id__": 64
  2005. }
  2006. ],
  2007. "_prefab": {
  2008. "__id__": 65
  2009. },
  2010. "_opacity": 255,
  2011. "_color": {
  2012. "__type__": "cc.Color",
  2013. "r": 255,
  2014. "g": 255,
  2015. "b": 255,
  2016. "a": 255
  2017. },
  2018. "_contentSize": {
  2019. "__type__": "cc.Size",
  2020. "width": 600,
  2021. "height": 60
  2022. },
  2023. "_anchorPoint": {
  2024. "__type__": "cc.Vec2",
  2025. "x": 0.5,
  2026. "y": 0.5
  2027. },
  2028. "_trs": {
  2029. "__type__": "TypedArray",
  2030. "ctor": "Float64Array",
  2031. "array": [
  2032. 0,
  2033. -160,
  2034. 0,
  2035. 0,
  2036. 0,
  2037. 0,
  2038. 1,
  2039. 1,
  2040. 1,
  2041. 1
  2042. ]
  2043. },
  2044. "_eulerAngles": {
  2045. "__type__": "cc.Vec3",
  2046. "x": 0,
  2047. "y": 0,
  2048. "z": 0
  2049. },
  2050. "_skewX": 0,
  2051. "_skewY": 0,
  2052. "_is3DNode": false,
  2053. "_groupIndex": 0,
  2054. "groupIndex": 0,
  2055. "_id": ""
  2056. },
  2057. {
  2058. "__type__": "cc.Node",
  2059. "_name": "BACKGROUND_SPRITE",
  2060. "_objFlags": 0,
  2061. "_parent": {
  2062. "__id__": 51
  2063. },
  2064. "_children": [],
  2065. "_active": true,
  2066. "_components": [
  2067. {
  2068. "__id__": 53
  2069. },
  2070. {
  2071. "__id__": 54
  2072. }
  2073. ],
  2074. "_prefab": {
  2075. "__id__": 55
  2076. },
  2077. "_opacity": 255,
  2078. "_color": {
  2079. "__type__": "cc.Color",
  2080. "r": 255,
  2081. "g": 255,
  2082. "b": 255,
  2083. "a": 255
  2084. },
  2085. "_contentSize": {
  2086. "__type__": "cc.Size",
  2087. "width": 600,
  2088. "height": 60
  2089. },
  2090. "_anchorPoint": {
  2091. "__type__": "cc.Vec2",
  2092. "x": 0.5,
  2093. "y": 0.5
  2094. },
  2095. "_trs": {
  2096. "__type__": "TypedArray",
  2097. "ctor": "Float64Array",
  2098. "array": [
  2099. 0,
  2100. 0,
  2101. 0,
  2102. 0,
  2103. 0,
  2104. 0,
  2105. 1,
  2106. 1,
  2107. 1,
  2108. 1
  2109. ]
  2110. },
  2111. "_eulerAngles": {
  2112. "__type__": "cc.Vec3",
  2113. "x": 0,
  2114. "y": 0,
  2115. "z": 0
  2116. },
  2117. "_skewX": 0,
  2118. "_skewY": 0,
  2119. "_is3DNode": false,
  2120. "_groupIndex": 0,
  2121. "groupIndex": 0,
  2122. "_id": ""
  2123. },
  2124. {
  2125. "__type__": "cc.Sprite",
  2126. "_name": "",
  2127. "_objFlags": 0,
  2128. "node": {
  2129. "__id__": 52
  2130. },
  2131. "_enabled": true,
  2132. "_materials": [
  2133. {
  2134. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2135. }
  2136. ],
  2137. "_srcBlendFactor": 770,
  2138. "_dstBlendFactor": 771,
  2139. "_spriteFrame": {
  2140. "__uuid__": "ff0e91c7-55c6-4086-a39f-cb6e457b8c3b"
  2141. },
  2142. "_type": 1,
  2143. "_sizeMode": 0,
  2144. "_fillType": 0,
  2145. "_fillCenter": {
  2146. "__type__": "cc.Vec2",
  2147. "x": 0,
  2148. "y": 0
  2149. },
  2150. "_fillStart": 0,
  2151. "_fillRange": 0,
  2152. "_isTrimmedMode": true,
  2153. "_atlas": null,
  2154. "_id": ""
  2155. },
  2156. {
  2157. "__type__": "cc.Widget",
  2158. "_name": "",
  2159. "_objFlags": 0,
  2160. "node": {
  2161. "__id__": 52
  2162. },
  2163. "_enabled": true,
  2164. "alignMode": 0,
  2165. "_target": null,
  2166. "_alignFlags": 45,
  2167. "_left": 0,
  2168. "_right": 0,
  2169. "_top": 0,
  2170. "_bottom": 0,
  2171. "_verticalCenter": 0,
  2172. "_horizontalCenter": 0,
  2173. "_isAbsLeft": true,
  2174. "_isAbsRight": true,
  2175. "_isAbsTop": true,
  2176. "_isAbsBottom": true,
  2177. "_isAbsHorizontalCenter": true,
  2178. "_isAbsVerticalCenter": true,
  2179. "_originalWidth": 160,
  2180. "_originalHeight": 40,
  2181. "_id": ""
  2182. },
  2183. {
  2184. "__type__": "cc.PrefabInfo",
  2185. "root": {
  2186. "__id__": 1
  2187. },
  2188. "asset": {
  2189. "__uuid__": "4896bb32-26a7-4b08-98aa-838a9f85ba8d"
  2190. },
  2191. "fileId": "4eP0j9RhlFoqtnXG1wD9ux",
  2192. "sync": false
  2193. },
  2194. {
  2195. "__type__": "cc.Node",
  2196. "_name": "TEXT_LABEL",
  2197. "_objFlags": 0,
  2198. "_parent": {
  2199. "__id__": 51
  2200. },
  2201. "_children": [],
  2202. "_active": false,
  2203. "_components": [
  2204. {
  2205. "__id__": 57
  2206. },
  2207. {
  2208. "__id__": 58
  2209. }
  2210. ],
  2211. "_prefab": {
  2212. "__id__": 59
  2213. },
  2214. "_opacity": 255,
  2215. "_color": {
  2216. "__type__": "cc.Color",
  2217. "r": 255,
  2218. "g": 255,
  2219. "b": 255,
  2220. "a": 255
  2221. },
  2222. "_contentSize": {
  2223. "__type__": "cc.Size",
  2224. "width": 158,
  2225. "height": 40
  2226. },
  2227. "_anchorPoint": {
  2228. "__type__": "cc.Vec2",
  2229. "x": 0,
  2230. "y": 1
  2231. },
  2232. "_trs": {
  2233. "__type__": "TypedArray",
  2234. "ctor": "Float64Array",
  2235. "array": [
  2236. -78,
  2237. 20,
  2238. 0,
  2239. 0,
  2240. 0,
  2241. 0,
  2242. 1,
  2243. 1,
  2244. 1,
  2245. 1
  2246. ]
  2247. },
  2248. "_eulerAngles": {
  2249. "__type__": "cc.Vec3",
  2250. "x": 0,
  2251. "y": 0,
  2252. "z": 0
  2253. },
  2254. "_skewX": 0,
  2255. "_skewY": 0,
  2256. "_is3DNode": false,
  2257. "_groupIndex": 0,
  2258. "groupIndex": 0,
  2259. "_id": ""
  2260. },
  2261. {
  2262. "__type__": "cc.Label",
  2263. "_name": "",
  2264. "_objFlags": 0,
  2265. "node": {
  2266. "__id__": 56
  2267. },
  2268. "_enabled": true,
  2269. "_materials": [],
  2270. "_useOriginalSize": true,
  2271. "_string": "",
  2272. "_N$string": "",
  2273. "_fontSize": 20,
  2274. "_lineHeight": 25,
  2275. "_enableWrapText": false,
  2276. "_N$file": null,
  2277. "_isSystemFontUsed": true,
  2278. "_spacingX": 0,
  2279. "_batchAsBitmap": false,
  2280. "_styleFlags": 0,
  2281. "_underlineHeight": 0,
  2282. "_N$horizontalAlign": 0,
  2283. "_N$verticalAlign": 1,
  2284. "_N$fontFamily": "Arial",
  2285. "_N$overflow": 1,
  2286. "_N$cacheMode": 0,
  2287. "_id": ""
  2288. },
  2289. {
  2290. "__type__": "cc.Widget",
  2291. "_name": "",
  2292. "_objFlags": 0,
  2293. "node": {
  2294. "__id__": 56
  2295. },
  2296. "_enabled": true,
  2297. "alignMode": 0,
  2298. "_target": null,
  2299. "_alignFlags": 45,
  2300. "_left": 2,
  2301. "_right": 0,
  2302. "_top": 0,
  2303. "_bottom": 0,
  2304. "_verticalCenter": 0,
  2305. "_horizontalCenter": 0,
  2306. "_isAbsLeft": true,
  2307. "_isAbsRight": true,
  2308. "_isAbsTop": true,
  2309. "_isAbsBottom": true,
  2310. "_isAbsHorizontalCenter": true,
  2311. "_isAbsVerticalCenter": true,
  2312. "_originalWidth": 158,
  2313. "_originalHeight": 40,
  2314. "_id": ""
  2315. },
  2316. {
  2317. "__type__": "cc.PrefabInfo",
  2318. "root": {
  2319. "__id__": 1
  2320. },
  2321. "asset": {
  2322. "__uuid__": "4896bb32-26a7-4b08-98aa-838a9f85ba8d"
  2323. },
  2324. "fileId": "07LAtLQrBMrLyhPpYVIwRa",
  2325. "sync": false
  2326. },
  2327. {
  2328. "__type__": "cc.Node",
  2329. "_name": "PLACEHOLDER_LABEL",
  2330. "_objFlags": 0,
  2331. "_parent": {
  2332. "__id__": 51
  2333. },
  2334. "_children": [],
  2335. "_active": true,
  2336. "_components": [
  2337. {
  2338. "__id__": 61
  2339. },
  2340. {
  2341. "__id__": 62
  2342. }
  2343. ],
  2344. "_prefab": {
  2345. "__id__": 63
  2346. },
  2347. "_opacity": 255,
  2348. "_color": {
  2349. "__type__": "cc.Color",
  2350. "r": 187,
  2351. "g": 187,
  2352. "b": 187,
  2353. "a": 255
  2354. },
  2355. "_contentSize": {
  2356. "__type__": "cc.Size",
  2357. "width": 598,
  2358. "height": 60
  2359. },
  2360. "_anchorPoint": {
  2361. "__type__": "cc.Vec2",
  2362. "x": 0,
  2363. "y": 1
  2364. },
  2365. "_trs": {
  2366. "__type__": "TypedArray",
  2367. "ctor": "Float64Array",
  2368. "array": [
  2369. -298,
  2370. 30,
  2371. 0,
  2372. 0,
  2373. 0,
  2374. 0,
  2375. 1,
  2376. 1,
  2377. 1,
  2378. 1
  2379. ]
  2380. },
  2381. "_eulerAngles": {
  2382. "__type__": "cc.Vec3",
  2383. "x": 0,
  2384. "y": 0,
  2385. "z": 0
  2386. },
  2387. "_skewX": 0,
  2388. "_skewY": 0,
  2389. "_is3DNode": false,
  2390. "_groupIndex": 0,
  2391. "groupIndex": 0,
  2392. "_id": ""
  2393. },
  2394. {
  2395. "__type__": "cc.Label",
  2396. "_name": "",
  2397. "_objFlags": 0,
  2398. "node": {
  2399. "__id__": 60
  2400. },
  2401. "_enabled": true,
  2402. "_materials": [
  2403. {
  2404. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2405. }
  2406. ],
  2407. "_useOriginalSize": true,
  2408. "_string": "请输入密码",
  2409. "_N$string": "请输入密码",
  2410. "_fontSize": 20,
  2411. "_lineHeight": 25,
  2412. "_enableWrapText": false,
  2413. "_N$file": null,
  2414. "_isSystemFontUsed": true,
  2415. "_spacingX": 0,
  2416. "_batchAsBitmap": false,
  2417. "_styleFlags": 0,
  2418. "_underlineHeight": 0,
  2419. "_N$horizontalAlign": 0,
  2420. "_N$verticalAlign": 1,
  2421. "_N$fontFamily": "Arial",
  2422. "_N$overflow": 1,
  2423. "_N$cacheMode": 0,
  2424. "_id": ""
  2425. },
  2426. {
  2427. "__type__": "cc.Widget",
  2428. "_name": "",
  2429. "_objFlags": 0,
  2430. "node": {
  2431. "__id__": 60
  2432. },
  2433. "_enabled": true,
  2434. "alignMode": 0,
  2435. "_target": null,
  2436. "_alignFlags": 45,
  2437. "_left": 2,
  2438. "_right": 0,
  2439. "_top": 0,
  2440. "_bottom": 0,
  2441. "_verticalCenter": 0,
  2442. "_horizontalCenter": 0,
  2443. "_isAbsLeft": true,
  2444. "_isAbsRight": true,
  2445. "_isAbsTop": true,
  2446. "_isAbsBottom": true,
  2447. "_isAbsHorizontalCenter": true,
  2448. "_isAbsVerticalCenter": true,
  2449. "_originalWidth": 158,
  2450. "_originalHeight": 40,
  2451. "_id": ""
  2452. },
  2453. {
  2454. "__type__": "cc.PrefabInfo",
  2455. "root": {
  2456. "__id__": 1
  2457. },
  2458. "asset": {
  2459. "__uuid__": "4896bb32-26a7-4b08-98aa-838a9f85ba8d"
  2460. },
  2461. "fileId": "07YXHke+5EHLxstAf1jDMN",
  2462. "sync": false
  2463. },
  2464. {
  2465. "__type__": "cc.EditBox",
  2466. "_name": "",
  2467. "_objFlags": 0,
  2468. "node": {
  2469. "__id__": 51
  2470. },
  2471. "_enabled": true,
  2472. "_useOriginalSize": false,
  2473. "_string": "",
  2474. "returnType": 0,
  2475. "maxLength": 16,
  2476. "_tabIndex": 0,
  2477. "editingDidBegan": [],
  2478. "textChanged": [],
  2479. "editingDidEnded": [],
  2480. "editingReturn": [],
  2481. "_N$textLabel": {
  2482. "__id__": 57
  2483. },
  2484. "_N$placeholderLabel": {
  2485. "__id__": 61
  2486. },
  2487. "_N$background": {
  2488. "__id__": 53
  2489. },
  2490. "_N$inputFlag": 0,
  2491. "_N$inputMode": 6,
  2492. "_N$stayOnTop": false,
  2493. "_id": ""
  2494. },
  2495. {
  2496. "__type__": "cc.PrefabInfo",
  2497. "root": {
  2498. "__id__": 1
  2499. },
  2500. "asset": {
  2501. "__uuid__": "4896bb32-26a7-4b08-98aa-838a9f85ba8d"
  2502. },
  2503. "fileId": "0fWNbTnpZL2IGHxTwuL1Lu",
  2504. "sync": false
  2505. },
  2506. {
  2507. "__type__": "cc.Node",
  2508. "_name": "codeEditor",
  2509. "_objFlags": 0,
  2510. "_parent": {
  2511. "__id__": 35
  2512. },
  2513. "_children": [
  2514. {
  2515. "__id__": 67
  2516. },
  2517. {
  2518. "__id__": 71
  2519. },
  2520. {
  2521. "__id__": 75
  2522. },
  2523. {
  2524. "__id__": 79
  2525. }
  2526. ],
  2527. "_active": false,
  2528. "_components": [
  2529. {
  2530. "__id__": 90
  2531. }
  2532. ],
  2533. "_prefab": {
  2534. "__id__": 91
  2535. },
  2536. "_opacity": 255,
  2537. "_color": {
  2538. "__type__": "cc.Color",
  2539. "r": 255,
  2540. "g": 255,
  2541. "b": 255,
  2542. "a": 255
  2543. },
  2544. "_contentSize": {
  2545. "__type__": "cc.Size",
  2546. "width": 600,
  2547. "height": 60
  2548. },
  2549. "_anchorPoint": {
  2550. "__type__": "cc.Vec2",
  2551. "x": 0.5,
  2552. "y": 0.5
  2553. },
  2554. "_trs": {
  2555. "__type__": "TypedArray",
  2556. "ctor": "Float64Array",
  2557. "array": [
  2558. 0,
  2559. -250,
  2560. 0,
  2561. 0,
  2562. 0,
  2563. 0,
  2564. 1,
  2565. 1,
  2566. 1,
  2567. 1
  2568. ]
  2569. },
  2570. "_eulerAngles": {
  2571. "__type__": "cc.Vec3",
  2572. "x": 0,
  2573. "y": 0,
  2574. "z": 0
  2575. },
  2576. "_skewX": 0,
  2577. "_skewY": 0,
  2578. "_is3DNode": false,
  2579. "_groupIndex": 0,
  2580. "groupIndex": 0,
  2581. "_id": ""
  2582. },
  2583. {
  2584. "__type__": "cc.Node",
  2585. "_name": "BACKGROUND_SPRITE",
  2586. "_objFlags": 0,
  2587. "_parent": {
  2588. "__id__": 66
  2589. },
  2590. "_children": [],
  2591. "_active": true,
  2592. "_components": [
  2593. {
  2594. "__id__": 68
  2595. },
  2596. {
  2597. "__id__": 69
  2598. }
  2599. ],
  2600. "_prefab": {
  2601. "__id__": 70
  2602. },
  2603. "_opacity": 255,
  2604. "_color": {
  2605. "__type__": "cc.Color",
  2606. "r": 255,
  2607. "g": 255,
  2608. "b": 255,
  2609. "a": 255
  2610. },
  2611. "_contentSize": {
  2612. "__type__": "cc.Size",
  2613. "width": 600,
  2614. "height": 60
  2615. },
  2616. "_anchorPoint": {
  2617. "__type__": "cc.Vec2",
  2618. "x": 0.5,
  2619. "y": 0.5
  2620. },
  2621. "_trs": {
  2622. "__type__": "TypedArray",
  2623. "ctor": "Float64Array",
  2624. "array": [
  2625. 0,
  2626. 0,
  2627. 0,
  2628. 0,
  2629. 0,
  2630. 0,
  2631. 1,
  2632. 1,
  2633. 1,
  2634. 1
  2635. ]
  2636. },
  2637. "_eulerAngles": {
  2638. "__type__": "cc.Vec3",
  2639. "x": 0,
  2640. "y": 0,
  2641. "z": 0
  2642. },
  2643. "_skewX": 0,
  2644. "_skewY": 0,
  2645. "_is3DNode": false,
  2646. "_groupIndex": 0,
  2647. "groupIndex": 0,
  2648. "_id": ""
  2649. },
  2650. {
  2651. "__type__": "cc.Sprite",
  2652. "_name": "",
  2653. "_objFlags": 0,
  2654. "node": {
  2655. "__id__": 67
  2656. },
  2657. "_enabled": true,
  2658. "_materials": [
  2659. {
  2660. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2661. }
  2662. ],
  2663. "_srcBlendFactor": 770,
  2664. "_dstBlendFactor": 771,
  2665. "_spriteFrame": {
  2666. "__uuid__": "ff0e91c7-55c6-4086-a39f-cb6e457b8c3b"
  2667. },
  2668. "_type": 1,
  2669. "_sizeMode": 0,
  2670. "_fillType": 0,
  2671. "_fillCenter": {
  2672. "__type__": "cc.Vec2",
  2673. "x": 0,
  2674. "y": 0
  2675. },
  2676. "_fillStart": 0,
  2677. "_fillRange": 0,
  2678. "_isTrimmedMode": true,
  2679. "_atlas": null,
  2680. "_id": ""
  2681. },
  2682. {
  2683. "__type__": "cc.Widget",
  2684. "_name": "",
  2685. "_objFlags": 0,
  2686. "node": {
  2687. "__id__": 67
  2688. },
  2689. "_enabled": true,
  2690. "alignMode": 0,
  2691. "_target": null,
  2692. "_alignFlags": 45,
  2693. "_left": 0,
  2694. "_right": 0,
  2695. "_top": 0,
  2696. "_bottom": 0,
  2697. "_verticalCenter": 0,
  2698. "_horizontalCenter": 0,
  2699. "_isAbsLeft": true,
  2700. "_isAbsRight": true,
  2701. "_isAbsTop": true,
  2702. "_isAbsBottom": true,
  2703. "_isAbsHorizontalCenter": true,
  2704. "_isAbsVerticalCenter": true,
  2705. "_originalWidth": 160,
  2706. "_originalHeight": 40,
  2707. "_id": ""
  2708. },
  2709. {
  2710. "__type__": "cc.PrefabInfo",
  2711. "root": {
  2712. "__id__": 1
  2713. },
  2714. "asset": {
  2715. "__uuid__": "4896bb32-26a7-4b08-98aa-838a9f85ba8d"
  2716. },
  2717. "fileId": "f0C//RXtRGwZbTxmPS4LST",
  2718. "sync": false
  2719. },
  2720. {
  2721. "__type__": "cc.Node",
  2722. "_name": "TEXT_LABEL",
  2723. "_objFlags": 0,
  2724. "_parent": {
  2725. "__id__": 66
  2726. },
  2727. "_children": [],
  2728. "_active": false,
  2729. "_components": [
  2730. {
  2731. "__id__": 72
  2732. },
  2733. {
  2734. "__id__": 73
  2735. }
  2736. ],
  2737. "_prefab": {
  2738. "__id__": 74
  2739. },
  2740. "_opacity": 255,
  2741. "_color": {
  2742. "__type__": "cc.Color",
  2743. "r": 255,
  2744. "g": 255,
  2745. "b": 255,
  2746. "a": 255
  2747. },
  2748. "_contentSize": {
  2749. "__type__": "cc.Size",
  2750. "width": 158,
  2751. "height": 40
  2752. },
  2753. "_anchorPoint": {
  2754. "__type__": "cc.Vec2",
  2755. "x": 0,
  2756. "y": 1
  2757. },
  2758. "_trs": {
  2759. "__type__": "TypedArray",
  2760. "ctor": "Float64Array",
  2761. "array": [
  2762. -78,
  2763. 20,
  2764. 0,
  2765. 0,
  2766. 0,
  2767. 0,
  2768. 1,
  2769. 1,
  2770. 1,
  2771. 1
  2772. ]
  2773. },
  2774. "_eulerAngles": {
  2775. "__type__": "cc.Vec3",
  2776. "x": 0,
  2777. "y": 0,
  2778. "z": 0
  2779. },
  2780. "_skewX": 0,
  2781. "_skewY": 0,
  2782. "_is3DNode": false,
  2783. "_groupIndex": 0,
  2784. "groupIndex": 0,
  2785. "_id": ""
  2786. },
  2787. {
  2788. "__type__": "cc.Label",
  2789. "_name": "",
  2790. "_objFlags": 0,
  2791. "node": {
  2792. "__id__": 71
  2793. },
  2794. "_enabled": true,
  2795. "_materials": [],
  2796. "_useOriginalSize": true,
  2797. "_string": "",
  2798. "_N$string": "",
  2799. "_fontSize": 20,
  2800. "_lineHeight": 25,
  2801. "_enableWrapText": false,
  2802. "_N$file": null,
  2803. "_isSystemFontUsed": true,
  2804. "_spacingX": 0,
  2805. "_batchAsBitmap": false,
  2806. "_styleFlags": 0,
  2807. "_underlineHeight": 0,
  2808. "_N$horizontalAlign": 0,
  2809. "_N$verticalAlign": 1,
  2810. "_N$fontFamily": "Arial",
  2811. "_N$overflow": 1,
  2812. "_N$cacheMode": 0,
  2813. "_id": ""
  2814. },
  2815. {
  2816. "__type__": "cc.Widget",
  2817. "_name": "",
  2818. "_objFlags": 0,
  2819. "node": {
  2820. "__id__": 71
  2821. },
  2822. "_enabled": true,
  2823. "alignMode": 0,
  2824. "_target": null,
  2825. "_alignFlags": 45,
  2826. "_left": 2,
  2827. "_right": 0,
  2828. "_top": 0,
  2829. "_bottom": 0,
  2830. "_verticalCenter": 0,
  2831. "_horizontalCenter": 0,
  2832. "_isAbsLeft": true,
  2833. "_isAbsRight": true,
  2834. "_isAbsTop": true,
  2835. "_isAbsBottom": true,
  2836. "_isAbsHorizontalCenter": true,
  2837. "_isAbsVerticalCenter": true,
  2838. "_originalWidth": 158,
  2839. "_originalHeight": 40,
  2840. "_id": ""
  2841. },
  2842. {
  2843. "__type__": "cc.PrefabInfo",
  2844. "root": {
  2845. "__id__": 1
  2846. },
  2847. "asset": {
  2848. "__uuid__": "4896bb32-26a7-4b08-98aa-838a9f85ba8d"
  2849. },
  2850. "fileId": "8dN/wD3yNK9ZB0b2ywgG1t",
  2851. "sync": false
  2852. },
  2853. {
  2854. "__type__": "cc.Node",
  2855. "_name": "PLACEHOLDER_LABEL",
  2856. "_objFlags": 0,
  2857. "_parent": {
  2858. "__id__": 66
  2859. },
  2860. "_children": [],
  2861. "_active": true,
  2862. "_components": [
  2863. {
  2864. "__id__": 76
  2865. },
  2866. {
  2867. "__id__": 77
  2868. }
  2869. ],
  2870. "_prefab": {
  2871. "__id__": 78
  2872. },
  2873. "_opacity": 255,
  2874. "_color": {
  2875. "__type__": "cc.Color",
  2876. "r": 187,
  2877. "g": 187,
  2878. "b": 187,
  2879. "a": 255
  2880. },
  2881. "_contentSize": {
  2882. "__type__": "cc.Size",
  2883. "width": 598,
  2884. "height": 60
  2885. },
  2886. "_anchorPoint": {
  2887. "__type__": "cc.Vec2",
  2888. "x": 0,
  2889. "y": 1
  2890. },
  2891. "_trs": {
  2892. "__type__": "TypedArray",
  2893. "ctor": "Float64Array",
  2894. "array": [
  2895. -298,
  2896. 30,
  2897. 0,
  2898. 0,
  2899. 0,
  2900. 0,
  2901. 1,
  2902. 1,
  2903. 1,
  2904. 1
  2905. ]
  2906. },
  2907. "_eulerAngles": {
  2908. "__type__": "cc.Vec3",
  2909. "x": 0,
  2910. "y": 0,
  2911. "z": 0
  2912. },
  2913. "_skewX": 0,
  2914. "_skewY": 0,
  2915. "_is3DNode": false,
  2916. "_groupIndex": 0,
  2917. "groupIndex": 0,
  2918. "_id": ""
  2919. },
  2920. {
  2921. "__type__": "cc.Label",
  2922. "_name": "",
  2923. "_objFlags": 0,
  2924. "node": {
  2925. "__id__": 75
  2926. },
  2927. "_enabled": true,
  2928. "_materials": [
  2929. {
  2930. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2931. }
  2932. ],
  2933. "_useOriginalSize": true,
  2934. "_string": "请输入验证码",
  2935. "_N$string": "请输入验证码",
  2936. "_fontSize": 20,
  2937. "_lineHeight": 25,
  2938. "_enableWrapText": false,
  2939. "_N$file": null,
  2940. "_isSystemFontUsed": true,
  2941. "_spacingX": 0,
  2942. "_batchAsBitmap": false,
  2943. "_styleFlags": 0,
  2944. "_underlineHeight": 0,
  2945. "_N$horizontalAlign": 0,
  2946. "_N$verticalAlign": 1,
  2947. "_N$fontFamily": "Arial",
  2948. "_N$overflow": 1,
  2949. "_N$cacheMode": 0,
  2950. "_id": ""
  2951. },
  2952. {
  2953. "__type__": "cc.Widget",
  2954. "_name": "",
  2955. "_objFlags": 0,
  2956. "node": {
  2957. "__id__": 75
  2958. },
  2959. "_enabled": true,
  2960. "alignMode": 0,
  2961. "_target": null,
  2962. "_alignFlags": 45,
  2963. "_left": 2,
  2964. "_right": 0,
  2965. "_top": 0,
  2966. "_bottom": 0,
  2967. "_verticalCenter": 0,
  2968. "_horizontalCenter": 0,
  2969. "_isAbsLeft": true,
  2970. "_isAbsRight": true,
  2971. "_isAbsTop": true,
  2972. "_isAbsBottom": true,
  2973. "_isAbsHorizontalCenter": true,
  2974. "_isAbsVerticalCenter": true,
  2975. "_originalWidth": 158,
  2976. "_originalHeight": 40,
  2977. "_id": ""
  2978. },
  2979. {
  2980. "__type__": "cc.PrefabInfo",
  2981. "root": {
  2982. "__id__": 1
  2983. },
  2984. "asset": {
  2985. "__uuid__": "4896bb32-26a7-4b08-98aa-838a9f85ba8d"
  2986. },
  2987. "fileId": "db7onC1x1JKaObgV0xY1rF",
  2988. "sync": false
  2989. },
  2990. {
  2991. "__type__": "cc.Node",
  2992. "_name": "getCode",
  2993. "_objFlags": 0,
  2994. "_parent": {
  2995. "__id__": 66
  2996. },
  2997. "_children": [
  2998. {
  2999. "__id__": 80
  3000. }
  3001. ],
  3002. "_active": true,
  3003. "_components": [
  3004. {
  3005. "__id__": 87
  3006. }
  3007. ],
  3008. "_prefab": {
  3009. "__id__": 89
  3010. },
  3011. "_opacity": 255,
  3012. "_color": {
  3013. "__type__": "cc.Color",
  3014. "r": 255,
  3015. "g": 255,
  3016. "b": 255,
  3017. "a": 255
  3018. },
  3019. "_contentSize": {
  3020. "__type__": "cc.Size",
  3021. "width": 130,
  3022. "height": 40
  3023. },
  3024. "_anchorPoint": {
  3025. "__type__": "cc.Vec2",
  3026. "x": 0.5,
  3027. "y": 0.5
  3028. },
  3029. "_trs": {
  3030. "__type__": "TypedArray",
  3031. "ctor": "Float64Array",
  3032. "array": [
  3033. 221.49,
  3034. 0,
  3035. 0,
  3036. 0,
  3037. 0,
  3038. 0,
  3039. 1,
  3040. 1,
  3041. 1,
  3042. 1
  3043. ]
  3044. },
  3045. "_eulerAngles": {
  3046. "__type__": "cc.Vec3",
  3047. "x": 0,
  3048. "y": 0,
  3049. "z": 0
  3050. },
  3051. "_skewX": 0,
  3052. "_skewY": 0,
  3053. "_is3DNode": false,
  3054. "_groupIndex": 0,
  3055. "groupIndex": 0,
  3056. "_id": ""
  3057. },
  3058. {
  3059. "__type__": "cc.Node",
  3060. "_name": "Background",
  3061. "_objFlags": 0,
  3062. "_parent": {
  3063. "__id__": 79
  3064. },
  3065. "_children": [
  3066. {
  3067. "__id__": 81
  3068. }
  3069. ],
  3070. "_active": true,
  3071. "_components": [
  3072. {
  3073. "__id__": 84
  3074. },
  3075. {
  3076. "__id__": 85
  3077. }
  3078. ],
  3079. "_prefab": {
  3080. "__id__": 86
  3081. },
  3082. "_opacity": 255,
  3083. "_color": {
  3084. "__type__": "cc.Color",
  3085. "r": 255,
  3086. "g": 255,
  3087. "b": 255,
  3088. "a": 255
  3089. },
  3090. "_contentSize": {
  3091. "__type__": "cc.Size",
  3092. "width": 130,
  3093. "height": 40
  3094. },
  3095. "_anchorPoint": {
  3096. "__type__": "cc.Vec2",
  3097. "x": 0.5,
  3098. "y": 0.5
  3099. },
  3100. "_trs": {
  3101. "__type__": "TypedArray",
  3102. "ctor": "Float64Array",
  3103. "array": [
  3104. 0,
  3105. 0,
  3106. 0,
  3107. 0,
  3108. 0,
  3109. 0,
  3110. 1,
  3111. 1,
  3112. 1,
  3113. 1
  3114. ]
  3115. },
  3116. "_eulerAngles": {
  3117. "__type__": "cc.Vec3",
  3118. "x": 0,
  3119. "y": 0,
  3120. "z": 0
  3121. },
  3122. "_skewX": 0,
  3123. "_skewY": 0,
  3124. "_is3DNode": false,
  3125. "_groupIndex": 0,
  3126. "groupIndex": 0,
  3127. "_id": ""
  3128. },
  3129. {
  3130. "__type__": "cc.Node",
  3131. "_name": "Label",
  3132. "_objFlags": 0,
  3133. "_parent": {
  3134. "__id__": 80
  3135. },
  3136. "_children": [],
  3137. "_active": true,
  3138. "_components": [
  3139. {
  3140. "__id__": 82
  3141. }
  3142. ],
  3143. "_prefab": {
  3144. "__id__": 83
  3145. },
  3146. "_opacity": 255,
  3147. "_color": {
  3148. "__type__": "cc.Color",
  3149. "r": 0,
  3150. "g": 0,
  3151. "b": 0,
  3152. "a": 255
  3153. },
  3154. "_contentSize": {
  3155. "__type__": "cc.Size",
  3156. "width": 100,
  3157. "height": 40
  3158. },
  3159. "_anchorPoint": {
  3160. "__type__": "cc.Vec2",
  3161. "x": 0.5,
  3162. "y": 0.5
  3163. },
  3164. "_trs": {
  3165. "__type__": "TypedArray",
  3166. "ctor": "Float64Array",
  3167. "array": [
  3168. 0,
  3169. 0,
  3170. 0,
  3171. 0,
  3172. 0,
  3173. 0,
  3174. 1,
  3175. 1,
  3176. 1,
  3177. 1
  3178. ]
  3179. },
  3180. "_eulerAngles": {
  3181. "__type__": "cc.Vec3",
  3182. "x": 0,
  3183. "y": 0,
  3184. "z": 0
  3185. },
  3186. "_skewX": 0,
  3187. "_skewY": 0,
  3188. "_is3DNode": false,
  3189. "_groupIndex": 0,
  3190. "groupIndex": 0,
  3191. "_id": ""
  3192. },
  3193. {
  3194. "__type__": "cc.Label",
  3195. "_name": "",
  3196. "_objFlags": 0,
  3197. "node": {
  3198. "__id__": 81
  3199. },
  3200. "_enabled": true,
  3201. "_materials": [
  3202. {
  3203. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3204. }
  3205. ],
  3206. "_useOriginalSize": false,
  3207. "_string": "获取验证码",
  3208. "_N$string": "获取验证码",
  3209. "_fontSize": 20,
  3210. "_lineHeight": 40,
  3211. "_enableWrapText": false,
  3212. "_N$file": null,
  3213. "_isSystemFontUsed": true,
  3214. "_spacingX": 0,
  3215. "_batchAsBitmap": false,
  3216. "_styleFlags": 0,
  3217. "_underlineHeight": 0,
  3218. "_N$horizontalAlign": 1,
  3219. "_N$verticalAlign": 1,
  3220. "_N$fontFamily": "Arial",
  3221. "_N$overflow": 1,
  3222. "_N$cacheMode": 1,
  3223. "_id": ""
  3224. },
  3225. {
  3226. "__type__": "cc.PrefabInfo",
  3227. "root": {
  3228. "__id__": 1
  3229. },
  3230. "asset": {
  3231. "__uuid__": "4896bb32-26a7-4b08-98aa-838a9f85ba8d"
  3232. },
  3233. "fileId": "bb6qbsgB9BEpdzo5xfB1Im",
  3234. "sync": false
  3235. },
  3236. {
  3237. "__type__": "cc.Sprite",
  3238. "_name": "",
  3239. "_objFlags": 0,
  3240. "node": {
  3241. "__id__": 80
  3242. },
  3243. "_enabled": true,
  3244. "_materials": [
  3245. {
  3246. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3247. }
  3248. ],
  3249. "_srcBlendFactor": 770,
  3250. "_dstBlendFactor": 771,
  3251. "_spriteFrame": {
  3252. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  3253. },
  3254. "_type": 1,
  3255. "_sizeMode": 0,
  3256. "_fillType": 0,
  3257. "_fillCenter": {
  3258. "__type__": "cc.Vec2",
  3259. "x": 0,
  3260. "y": 0
  3261. },
  3262. "_fillStart": 0,
  3263. "_fillRange": 0,
  3264. "_isTrimmedMode": true,
  3265. "_atlas": null,
  3266. "_id": ""
  3267. },
  3268. {
  3269. "__type__": "cc.Widget",
  3270. "_name": "",
  3271. "_objFlags": 0,
  3272. "node": {
  3273. "__id__": 80
  3274. },
  3275. "_enabled": true,
  3276. "alignMode": 0,
  3277. "_target": null,
  3278. "_alignFlags": 45,
  3279. "_left": 0,
  3280. "_right": 0,
  3281. "_top": 0,
  3282. "_bottom": 0,
  3283. "_verticalCenter": 0,
  3284. "_horizontalCenter": 0,
  3285. "_isAbsLeft": true,
  3286. "_isAbsRight": true,
  3287. "_isAbsTop": true,
  3288. "_isAbsBottom": true,
  3289. "_isAbsHorizontalCenter": true,
  3290. "_isAbsVerticalCenter": true,
  3291. "_originalWidth": 100,
  3292. "_originalHeight": 40,
  3293. "_id": ""
  3294. },
  3295. {
  3296. "__type__": "cc.PrefabInfo",
  3297. "root": {
  3298. "__id__": 1
  3299. },
  3300. "asset": {
  3301. "__uuid__": "4896bb32-26a7-4b08-98aa-838a9f85ba8d"
  3302. },
  3303. "fileId": "eb7sL1oypBFKanl9qmO6JG",
  3304. "sync": false
  3305. },
  3306. {
  3307. "__type__": "cc.Button",
  3308. "_name": "",
  3309. "_objFlags": 0,
  3310. "node": {
  3311. "__id__": 79
  3312. },
  3313. "_enabled": true,
  3314. "_normalMaterial": null,
  3315. "_grayMaterial": null,
  3316. "duration": 0.1,
  3317. "zoomScale": 1.2,
  3318. "clickEvents": [
  3319. {
  3320. "__id__": 88
  3321. }
  3322. ],
  3323. "_N$interactable": true,
  3324. "_N$enableAutoGrayEffect": false,
  3325. "_N$transition": 2,
  3326. "transition": 2,
  3327. "_N$normalColor": {
  3328. "__type__": "cc.Color",
  3329. "r": 230,
  3330. "g": 230,
  3331. "b": 230,
  3332. "a": 255
  3333. },
  3334. "_N$pressedColor": {
  3335. "__type__": "cc.Color",
  3336. "r": 200,
  3337. "g": 200,
  3338. "b": 200,
  3339. "a": 255
  3340. },
  3341. "pressedColor": {
  3342. "__type__": "cc.Color",
  3343. "r": 200,
  3344. "g": 200,
  3345. "b": 200,
  3346. "a": 255
  3347. },
  3348. "_N$hoverColor": {
  3349. "__type__": "cc.Color",
  3350. "r": 255,
  3351. "g": 255,
  3352. "b": 255,
  3353. "a": 255
  3354. },
  3355. "hoverColor": {
  3356. "__type__": "cc.Color",
  3357. "r": 255,
  3358. "g": 255,
  3359. "b": 255,
  3360. "a": 255
  3361. },
  3362. "_N$disabledColor": {
  3363. "__type__": "cc.Color",
  3364. "r": 120,
  3365. "g": 120,
  3366. "b": 120,
  3367. "a": 200
  3368. },
  3369. "_N$normalSprite": {
  3370. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  3371. },
  3372. "_N$pressedSprite": {
  3373. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  3374. },
  3375. "pressedSprite": {
  3376. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  3377. },
  3378. "_N$hoverSprite": {
  3379. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  3380. },
  3381. "hoverSprite": {
  3382. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  3383. },
  3384. "_N$disabledSprite": {
  3385. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  3386. },
  3387. "_N$target": {
  3388. "__id__": 80
  3389. },
  3390. "_id": ""
  3391. },
  3392. {
  3393. "__type__": "cc.ClickEvent",
  3394. "target": {
  3395. "__id__": 1
  3396. },
  3397. "component": "",
  3398. "_componentId": "809cce2oDBB9btZv1+wtwjL",
  3399. "handler": "getCodeOnClicked",
  3400. "customEventData": ""
  3401. },
  3402. {
  3403. "__type__": "cc.PrefabInfo",
  3404. "root": {
  3405. "__id__": 1
  3406. },
  3407. "asset": {
  3408. "__uuid__": "4896bb32-26a7-4b08-98aa-838a9f85ba8d"
  3409. },
  3410. "fileId": "8aPdTk7kJI9r9q7Su0AhwI",
  3411. "sync": false
  3412. },
  3413. {
  3414. "__type__": "cc.EditBox",
  3415. "_name": "",
  3416. "_objFlags": 0,
  3417. "node": {
  3418. "__id__": 66
  3419. },
  3420. "_enabled": true,
  3421. "_useOriginalSize": false,
  3422. "_string": "",
  3423. "returnType": 0,
  3424. "maxLength": 6,
  3425. "_tabIndex": 0,
  3426. "editingDidBegan": [],
  3427. "textChanged": [],
  3428. "editingDidEnded": [],
  3429. "editingReturn": [],
  3430. "_N$textLabel": {
  3431. "__id__": 72
  3432. },
  3433. "_N$placeholderLabel": {
  3434. "__id__": 76
  3435. },
  3436. "_N$background": {
  3437. "__id__": 68
  3438. },
  3439. "_N$inputFlag": 5,
  3440. "_N$inputMode": 3,
  3441. "_N$stayOnTop": false,
  3442. "_id": ""
  3443. },
  3444. {
  3445. "__type__": "cc.PrefabInfo",
  3446. "root": {
  3447. "__id__": 1
  3448. },
  3449. "asset": {
  3450. "__uuid__": "4896bb32-26a7-4b08-98aa-838a9f85ba8d"
  3451. },
  3452. "fileId": "e9Z+DfMMJJA4xQUDy2BGr+",
  3453. "sync": false
  3454. },
  3455. {
  3456. "__type__": "cc.Node",
  3457. "_name": "rememberPasswordLayout",
  3458. "_objFlags": 0,
  3459. "_parent": {
  3460. "__id__": 35
  3461. },
  3462. "_children": [
  3463. {
  3464. "__id__": 93
  3465. },
  3466. {
  3467. "__id__": 105
  3468. }
  3469. ],
  3470. "_active": true,
  3471. "_components": [],
  3472. "_prefab": {
  3473. "__id__": 109
  3474. },
  3475. "_opacity": 255,
  3476. "_color": {
  3477. "__type__": "cc.Color",
  3478. "r": 255,
  3479. "g": 255,
  3480. "b": 255,
  3481. "a": 255
  3482. },
  3483. "_contentSize": {
  3484. "__type__": "cc.Size",
  3485. "width": 600,
  3486. "height": 30
  3487. },
  3488. "_anchorPoint": {
  3489. "__type__": "cc.Vec2",
  3490. "x": 0.5,
  3491. "y": 0.5
  3492. },
  3493. "_trs": {
  3494. "__type__": "TypedArray",
  3495. "ctor": "Float64Array",
  3496. "array": [
  3497. 0,
  3498. -235,
  3499. 0,
  3500. 0,
  3501. 0,
  3502. 0,
  3503. 1,
  3504. 1,
  3505. 1,
  3506. 1
  3507. ]
  3508. },
  3509. "_eulerAngles": {
  3510. "__type__": "cc.Vec3",
  3511. "x": 0,
  3512. "y": 0,
  3513. "z": 0
  3514. },
  3515. "_skewX": 0,
  3516. "_skewY": 0,
  3517. "_is3DNode": false,
  3518. "_groupIndex": 0,
  3519. "groupIndex": 0,
  3520. "_id": ""
  3521. },
  3522. {
  3523. "__type__": "cc.Node",
  3524. "_name": "rememberPassword",
  3525. "_objFlags": 0,
  3526. "_parent": {
  3527. "__id__": 92
  3528. },
  3529. "_children": [
  3530. {
  3531. "__id__": 94
  3532. },
  3533. {
  3534. "__id__": 97
  3535. },
  3536. {
  3537. "__id__": 100
  3538. }
  3539. ],
  3540. "_active": true,
  3541. "_components": [
  3542. {
  3543. "__id__": 103
  3544. }
  3545. ],
  3546. "_prefab": {
  3547. "__id__": 104
  3548. },
  3549. "_opacity": 255,
  3550. "_color": {
  3551. "__type__": "cc.Color",
  3552. "r": 255,
  3553. "g": 255,
  3554. "b": 255,
  3555. "a": 255
  3556. },
  3557. "_contentSize": {
  3558. "__type__": "cc.Size",
  3559. "width": 130,
  3560. "height": 28
  3561. },
  3562. "_anchorPoint": {
  3563. "__type__": "cc.Vec2",
  3564. "x": 0.5,
  3565. "y": 0.5
  3566. },
  3567. "_trs": {
  3568. "__type__": "TypedArray",
  3569. "ctor": "Float64Array",
  3570. "array": [
  3571. -235,
  3572. 0,
  3573. 0,
  3574. 0,
  3575. 0,
  3576. 0,
  3577. 1,
  3578. 1,
  3579. 1,
  3580. 1
  3581. ]
  3582. },
  3583. "_eulerAngles": {
  3584. "__type__": "cc.Vec3",
  3585. "x": 0,
  3586. "y": 0,
  3587. "z": 0
  3588. },
  3589. "_skewX": 0,
  3590. "_skewY": 0,
  3591. "_is3DNode": false,
  3592. "_groupIndex": 0,
  3593. "groupIndex": 0,
  3594. "_id": ""
  3595. },
  3596. {
  3597. "__type__": "cc.Node",
  3598. "_name": "Background",
  3599. "_objFlags": 0,
  3600. "_parent": {
  3601. "__id__": 93
  3602. },
  3603. "_children": [],
  3604. "_active": true,
  3605. "_components": [
  3606. {
  3607. "__id__": 95
  3608. }
  3609. ],
  3610. "_prefab": {
  3611. "__id__": 96
  3612. },
  3613. "_opacity": 255,
  3614. "_color": {
  3615. "__type__": "cc.Color",
  3616. "r": 255,
  3617. "g": 255,
  3618. "b": 255,
  3619. "a": 255
  3620. },
  3621. "_contentSize": {
  3622. "__type__": "cc.Size",
  3623. "width": 28,
  3624. "height": 28
  3625. },
  3626. "_anchorPoint": {
  3627. "__type__": "cc.Vec2",
  3628. "x": 0.5,
  3629. "y": 0.5
  3630. },
  3631. "_trs": {
  3632. "__type__": "TypedArray",
  3633. "ctor": "Float64Array",
  3634. "array": [
  3635. -50.148,
  3636. 0,
  3637. 0,
  3638. 0,
  3639. 0,
  3640. 0,
  3641. 1,
  3642. 1,
  3643. 1,
  3644. 1
  3645. ]
  3646. },
  3647. "_eulerAngles": {
  3648. "__type__": "cc.Vec3",
  3649. "x": 0,
  3650. "y": 0,
  3651. "z": 0
  3652. },
  3653. "_skewX": 0,
  3654. "_skewY": 0,
  3655. "_is3DNode": false,
  3656. "_groupIndex": 0,
  3657. "groupIndex": 0,
  3658. "_id": ""
  3659. },
  3660. {
  3661. "__type__": "cc.Sprite",
  3662. "_name": "",
  3663. "_objFlags": 0,
  3664. "node": {
  3665. "__id__": 94
  3666. },
  3667. "_enabled": true,
  3668. "_materials": [
  3669. {
  3670. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3671. }
  3672. ],
  3673. "_srcBlendFactor": 770,
  3674. "_dstBlendFactor": 771,
  3675. "_spriteFrame": {
  3676. "__uuid__": "6827ca32-0107-4552-bab2-dfb31799bb44"
  3677. },
  3678. "_type": 0,
  3679. "_sizeMode": 1,
  3680. "_fillType": 0,
  3681. "_fillCenter": {
  3682. "__type__": "cc.Vec2",
  3683. "x": 0,
  3684. "y": 0
  3685. },
  3686. "_fillStart": 0,
  3687. "_fillRange": 0,
  3688. "_isTrimmedMode": true,
  3689. "_atlas": null,
  3690. "_id": ""
  3691. },
  3692. {
  3693. "__type__": "cc.PrefabInfo",
  3694. "root": {
  3695. "__id__": 1
  3696. },
  3697. "asset": {
  3698. "__uuid__": "4896bb32-26a7-4b08-98aa-838a9f85ba8d"
  3699. },
  3700. "fileId": "4fV29pAhlGVqQs5mKXcB52",
  3701. "sync": false
  3702. },
  3703. {
  3704. "__type__": "cc.Node",
  3705. "_name": "checkmark",
  3706. "_objFlags": 0,
  3707. "_parent": {
  3708. "__id__": 93
  3709. },
  3710. "_children": [],
  3711. "_active": true,
  3712. "_components": [
  3713. {
  3714. "__id__": 98
  3715. }
  3716. ],
  3717. "_prefab": {
  3718. "__id__": 99
  3719. },
  3720. "_opacity": 255,
  3721. "_color": {
  3722. "__type__": "cc.Color",
  3723. "r": 255,
  3724. "g": 255,
  3725. "b": 255,
  3726. "a": 255
  3727. },
  3728. "_contentSize": {
  3729. "__type__": "cc.Size",
  3730. "width": 28,
  3731. "height": 28
  3732. },
  3733. "_anchorPoint": {
  3734. "__type__": "cc.Vec2",
  3735. "x": 0.5,
  3736. "y": 0.5
  3737. },
  3738. "_trs": {
  3739. "__type__": "TypedArray",
  3740. "ctor": "Float64Array",
  3741. "array": [
  3742. -50.148,
  3743. 0,
  3744. 0,
  3745. 0,
  3746. 0,
  3747. 0,
  3748. 1,
  3749. 1,
  3750. 1,
  3751. 1
  3752. ]
  3753. },
  3754. "_eulerAngles": {
  3755. "__type__": "cc.Vec3",
  3756. "x": 0,
  3757. "y": 0,
  3758. "z": 0
  3759. },
  3760. "_skewX": 0,
  3761. "_skewY": 0,
  3762. "_is3DNode": false,
  3763. "_groupIndex": 0,
  3764. "groupIndex": 0,
  3765. "_id": ""
  3766. },
  3767. {
  3768. "__type__": "cc.Sprite",
  3769. "_name": "",
  3770. "_objFlags": 0,
  3771. "node": {
  3772. "__id__": 97
  3773. },
  3774. "_enabled": true,
  3775. "_materials": [
  3776. {
  3777. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3778. }
  3779. ],
  3780. "_srcBlendFactor": 770,
  3781. "_dstBlendFactor": 771,
  3782. "_spriteFrame": {
  3783. "__uuid__": "90004ad6-2f6d-40e1-93ef-b714375c6f06"
  3784. },
  3785. "_type": 0,
  3786. "_sizeMode": 2,
  3787. "_fillType": 0,
  3788. "_fillCenter": {
  3789. "__type__": "cc.Vec2",
  3790. "x": 0,
  3791. "y": 0
  3792. },
  3793. "_fillStart": 0,
  3794. "_fillRange": 0,
  3795. "_isTrimmedMode": false,
  3796. "_atlas": null,
  3797. "_id": ""
  3798. },
  3799. {
  3800. "__type__": "cc.PrefabInfo",
  3801. "root": {
  3802. "__id__": 1
  3803. },
  3804. "asset": {
  3805. "__uuid__": "4896bb32-26a7-4b08-98aa-838a9f85ba8d"
  3806. },
  3807. "fileId": "5eEJ0bAcFAEbZpd1XeJJBH",
  3808. "sync": false
  3809. },
  3810. {
  3811. "__type__": "cc.Node",
  3812. "_name": "New Label",
  3813. "_objFlags": 0,
  3814. "_parent": {
  3815. "__id__": 93
  3816. },
  3817. "_children": [],
  3818. "_active": true,
  3819. "_components": [
  3820. {
  3821. "__id__": 101
  3822. }
  3823. ],
  3824. "_prefab": {
  3825. "__id__": 102
  3826. },
  3827. "_opacity": 255,
  3828. "_color": {
  3829. "__type__": "cc.Color",
  3830. "r": 255,
  3831. "g": 255,
  3832. "b": 255,
  3833. "a": 255
  3834. },
  3835. "_contentSize": {
  3836. "__type__": "cc.Size",
  3837. "width": 80,
  3838. "height": 50.4
  3839. },
  3840. "_anchorPoint": {
  3841. "__type__": "cc.Vec2",
  3842. "x": 0.5,
  3843. "y": 0.5
  3844. },
  3845. "_trs": {
  3846. "__type__": "TypedArray",
  3847. "ctor": "Float64Array",
  3848. "array": [
  3849. 13.582,
  3850. 0,
  3851. 0,
  3852. 0,
  3853. 0,
  3854. 0,
  3855. 1,
  3856. 1,
  3857. 1,
  3858. 1
  3859. ]
  3860. },
  3861. "_eulerAngles": {
  3862. "__type__": "cc.Vec3",
  3863. "x": 0,
  3864. "y": 0,
  3865. "z": 0
  3866. },
  3867. "_skewX": 0,
  3868. "_skewY": 0,
  3869. "_is3DNode": false,
  3870. "_groupIndex": 0,
  3871. "groupIndex": 0,
  3872. "_id": ""
  3873. },
  3874. {
  3875. "__type__": "cc.Label",
  3876. "_name": "",
  3877. "_objFlags": 0,
  3878. "node": {
  3879. "__id__": 100
  3880. },
  3881. "_enabled": true,
  3882. "_materials": [
  3883. {
  3884. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3885. }
  3886. ],
  3887. "_useOriginalSize": false,
  3888. "_string": "记住密码",
  3889. "_N$string": "记住密码",
  3890. "_fontSize": 20,
  3891. "_lineHeight": 40,
  3892. "_enableWrapText": true,
  3893. "_N$file": null,
  3894. "_isSystemFontUsed": true,
  3895. "_spacingX": 0,
  3896. "_batchAsBitmap": false,
  3897. "_styleFlags": 0,
  3898. "_underlineHeight": 0,
  3899. "_N$horizontalAlign": 1,
  3900. "_N$verticalAlign": 1,
  3901. "_N$fontFamily": "Arial",
  3902. "_N$overflow": 0,
  3903. "_N$cacheMode": 0,
  3904. "_id": ""
  3905. },
  3906. {
  3907. "__type__": "cc.PrefabInfo",
  3908. "root": {
  3909. "__id__": 1
  3910. },
  3911. "asset": {
  3912. "__uuid__": "4896bb32-26a7-4b08-98aa-838a9f85ba8d"
  3913. },
  3914. "fileId": "7f2S1leMBIK7+ngGTDAnGx",
  3915. "sync": false
  3916. },
  3917. {
  3918. "__type__": "cc.Toggle",
  3919. "_name": "",
  3920. "_objFlags": 0,
  3921. "node": {
  3922. "__id__": 93
  3923. },
  3924. "_enabled": true,
  3925. "_normalMaterial": null,
  3926. "_grayMaterial": null,
  3927. "duration": 0.1,
  3928. "zoomScale": 1.2,
  3929. "clickEvents": [],
  3930. "_N$interactable": true,
  3931. "_N$enableAutoGrayEffect": false,
  3932. "_N$transition": 3,
  3933. "transition": 3,
  3934. "_N$normalColor": {
  3935. "__type__": "cc.Color",
  3936. "r": 214,
  3937. "g": 214,
  3938. "b": 214,
  3939. "a": 255
  3940. },
  3941. "_N$pressedColor": {
  3942. "__type__": "cc.Color",
  3943. "r": 211,
  3944. "g": 211,
  3945. "b": 211,
  3946. "a": 255
  3947. },
  3948. "pressedColor": {
  3949. "__type__": "cc.Color",
  3950. "r": 211,
  3951. "g": 211,
  3952. "b": 211,
  3953. "a": 255
  3954. },
  3955. "_N$hoverColor": {
  3956. "__type__": "cc.Color",
  3957. "r": 255,
  3958. "g": 255,
  3959. "b": 255,
  3960. "a": 255
  3961. },
  3962. "hoverColor": {
  3963. "__type__": "cc.Color",
  3964. "r": 255,
  3965. "g": 255,
  3966. "b": 255,
  3967. "a": 255
  3968. },
  3969. "_N$disabledColor": {
  3970. "__type__": "cc.Color",
  3971. "r": 124,
  3972. "g": 124,
  3973. "b": 124,
  3974. "a": 255
  3975. },
  3976. "_N$normalSprite": null,
  3977. "_N$pressedSprite": null,
  3978. "pressedSprite": null,
  3979. "_N$hoverSprite": null,
  3980. "hoverSprite": null,
  3981. "_N$disabledSprite": null,
  3982. "_N$target": {
  3983. "__id__": 94
  3984. },
  3985. "_N$isChecked": true,
  3986. "toggleGroup": null,
  3987. "checkMark": {
  3988. "__id__": 98
  3989. },
  3990. "checkEvents": [],
  3991. "_id": ""
  3992. },
  3993. {
  3994. "__type__": "cc.PrefabInfo",
  3995. "root": {
  3996. "__id__": 1
  3997. },
  3998. "asset": {
  3999. "__uuid__": "4896bb32-26a7-4b08-98aa-838a9f85ba8d"
  4000. },
  4001. "fileId": "28M4F6YeRFK5B6qOQZFWQT",
  4002. "sync": false
  4003. },
  4004. {
  4005. "__type__": "cc.Node",
  4006. "_name": "forgetPassword",
  4007. "_objFlags": 0,
  4008. "_parent": {
  4009. "__id__": 92
  4010. },
  4011. "_children": [],
  4012. "_active": true,
  4013. "_components": [
  4014. {
  4015. "__id__": 106
  4016. },
  4017. {
  4018. "__id__": 107
  4019. }
  4020. ],
  4021. "_prefab": {
  4022. "__id__": 108
  4023. },
  4024. "_opacity": 255,
  4025. "_color": {
  4026. "__type__": "cc.Color",
  4027. "r": 255,
  4028. "g": 255,
  4029. "b": 255,
  4030. "a": 255
  4031. },
  4032. "_contentSize": {
  4033. "__type__": "cc.Size",
  4034. "width": 100,
  4035. "height": 50.4
  4036. },
  4037. "_anchorPoint": {
  4038. "__type__": "cc.Vec2",
  4039. "x": 0.5,
  4040. "y": 0.5
  4041. },
  4042. "_trs": {
  4043. "__type__": "TypedArray",
  4044. "ctor": "Float64Array",
  4045. "array": [
  4046. 250,
  4047. 0,
  4048. 0,
  4049. 0,
  4050. 0,
  4051. 0,
  4052. 1,
  4053. 1,
  4054. 1,
  4055. 1
  4056. ]
  4057. },
  4058. "_eulerAngles": {
  4059. "__type__": "cc.Vec3",
  4060. "x": 0,
  4061. "y": 0,
  4062. "z": 0
  4063. },
  4064. "_skewX": 0,
  4065. "_skewY": 0,
  4066. "_is3DNode": false,
  4067. "_groupIndex": 0,
  4068. "groupIndex": 0,
  4069. "_id": ""
  4070. },
  4071. {
  4072. "__type__": "cc.Label",
  4073. "_name": "",
  4074. "_objFlags": 0,
  4075. "node": {
  4076. "__id__": 105
  4077. },
  4078. "_enabled": true,
  4079. "_materials": [
  4080. {
  4081. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4082. }
  4083. ],
  4084. "_useOriginalSize": false,
  4085. "_string": "忘记密码?",
  4086. "_N$string": "忘记密码?",
  4087. "_fontSize": 20,
  4088. "_lineHeight": 40,
  4089. "_enableWrapText": true,
  4090. "_N$file": null,
  4091. "_isSystemFontUsed": true,
  4092. "_spacingX": 0,
  4093. "_batchAsBitmap": false,
  4094. "_styleFlags": 0,
  4095. "_underlineHeight": 0,
  4096. "_N$horizontalAlign": 1,
  4097. "_N$verticalAlign": 1,
  4098. "_N$fontFamily": "Arial",
  4099. "_N$overflow": 0,
  4100. "_N$cacheMode": 0,
  4101. "_id": ""
  4102. },
  4103. {
  4104. "__type__": "cc.Button",
  4105. "_name": "",
  4106. "_objFlags": 0,
  4107. "node": {
  4108. "__id__": 105
  4109. },
  4110. "_enabled": true,
  4111. "_normalMaterial": null,
  4112. "_grayMaterial": null,
  4113. "duration": 0.1,
  4114. "zoomScale": 1.2,
  4115. "clickEvents": [],
  4116. "_N$interactable": true,
  4117. "_N$enableAutoGrayEffect": false,
  4118. "_N$transition": 0,
  4119. "transition": 0,
  4120. "_N$normalColor": {
  4121. "__type__": "cc.Color",
  4122. "r": 255,
  4123. "g": 255,
  4124. "b": 255,
  4125. "a": 255
  4126. },
  4127. "_N$pressedColor": {
  4128. "__type__": "cc.Color",
  4129. "r": 211,
  4130. "g": 211,
  4131. "b": 211,
  4132. "a": 255
  4133. },
  4134. "pressedColor": {
  4135. "__type__": "cc.Color",
  4136. "r": 211,
  4137. "g": 211,
  4138. "b": 211,
  4139. "a": 255
  4140. },
  4141. "_N$hoverColor": {
  4142. "__type__": "cc.Color",
  4143. "r": 255,
  4144. "g": 255,
  4145. "b": 255,
  4146. "a": 255
  4147. },
  4148. "hoverColor": {
  4149. "__type__": "cc.Color",
  4150. "r": 255,
  4151. "g": 255,
  4152. "b": 255,
  4153. "a": 255
  4154. },
  4155. "_N$disabledColor": {
  4156. "__type__": "cc.Color",
  4157. "r": 124,
  4158. "g": 124,
  4159. "b": 124,
  4160. "a": 255
  4161. },
  4162. "_N$normalSprite": null,
  4163. "_N$pressedSprite": null,
  4164. "pressedSprite": null,
  4165. "_N$hoverSprite": null,
  4166. "hoverSprite": null,
  4167. "_N$disabledSprite": null,
  4168. "_N$target": null,
  4169. "_id": ""
  4170. },
  4171. {
  4172. "__type__": "cc.PrefabInfo",
  4173. "root": {
  4174. "__id__": 1
  4175. },
  4176. "asset": {
  4177. "__uuid__": "4896bb32-26a7-4b08-98aa-838a9f85ba8d"
  4178. },
  4179. "fileId": "ccs1DODrpE7ZlroIPx08m7",
  4180. "sync": false
  4181. },
  4182. {
  4183. "__type__": "cc.PrefabInfo",
  4184. "root": {
  4185. "__id__": 1
  4186. },
  4187. "asset": {
  4188. "__uuid__": "4896bb32-26a7-4b08-98aa-838a9f85ba8d"
  4189. },
  4190. "fileId": "daRrmWrTpCdJcb5mcXOO0Y",
  4191. "sync": false
  4192. },
  4193. {
  4194. "__type__": "cc.Node",
  4195. "_name": "privacyPolicy",
  4196. "_objFlags": 0,
  4197. "_parent": {
  4198. "__id__": 35
  4199. },
  4200. "_children": [
  4201. {
  4202. "__id__": 111
  4203. },
  4204. {
  4205. "__id__": 114
  4206. },
  4207. {
  4208. "__id__": 117
  4209. }
  4210. ],
  4211. "_active": true,
  4212. "_components": [
  4213. {
  4214. "__id__": 120
  4215. }
  4216. ],
  4217. "_prefab": {
  4218. "__id__": 121
  4219. },
  4220. "_opacity": 255,
  4221. "_color": {
  4222. "__type__": "cc.Color",
  4223. "r": 255,
  4224. "g": 255,
  4225. "b": 255,
  4226. "a": 255
  4227. },
  4228. "_contentSize": {
  4229. "__type__": "cc.Size",
  4230. "width": 130,
  4231. "height": 28
  4232. },
  4233. "_anchorPoint": {
  4234. "__type__": "cc.Vec2",
  4235. "x": 0.5,
  4236. "y": 0.5
  4237. },
  4238. "_trs": {
  4239. "__type__": "TypedArray",
  4240. "ctor": "Float64Array",
  4241. "array": [
  4242. -235,
  4243. -294,
  4244. 0,
  4245. 0,
  4246. 0,
  4247. 0,
  4248. 1,
  4249. 1,
  4250. 1,
  4251. 1
  4252. ]
  4253. },
  4254. "_eulerAngles": {
  4255. "__type__": "cc.Vec3",
  4256. "x": 0,
  4257. "y": 0,
  4258. "z": 0
  4259. },
  4260. "_skewX": 0,
  4261. "_skewY": 0,
  4262. "_is3DNode": false,
  4263. "_groupIndex": 0,
  4264. "groupIndex": 0,
  4265. "_id": ""
  4266. },
  4267. {
  4268. "__type__": "cc.Node",
  4269. "_name": "Background",
  4270. "_objFlags": 0,
  4271. "_parent": {
  4272. "__id__": 110
  4273. },
  4274. "_children": [],
  4275. "_active": true,
  4276. "_components": [
  4277. {
  4278. "__id__": 112
  4279. }
  4280. ],
  4281. "_prefab": {
  4282. "__id__": 113
  4283. },
  4284. "_opacity": 255,
  4285. "_color": {
  4286. "__type__": "cc.Color",
  4287. "r": 255,
  4288. "g": 255,
  4289. "b": 255,
  4290. "a": 255
  4291. },
  4292. "_contentSize": {
  4293. "__type__": "cc.Size",
  4294. "width": 28,
  4295. "height": 28
  4296. },
  4297. "_anchorPoint": {
  4298. "__type__": "cc.Vec2",
  4299. "x": 0.5,
  4300. "y": 0.5
  4301. },
  4302. "_trs": {
  4303. "__type__": "TypedArray",
  4304. "ctor": "Float64Array",
  4305. "array": [
  4306. -50.148,
  4307. 0,
  4308. 0,
  4309. 0,
  4310. 0,
  4311. 0,
  4312. 1,
  4313. 1,
  4314. 1,
  4315. 1
  4316. ]
  4317. },
  4318. "_eulerAngles": {
  4319. "__type__": "cc.Vec3",
  4320. "x": 0,
  4321. "y": 0,
  4322. "z": 0
  4323. },
  4324. "_skewX": 0,
  4325. "_skewY": 0,
  4326. "_is3DNode": false,
  4327. "_groupIndex": 0,
  4328. "groupIndex": 0,
  4329. "_id": ""
  4330. },
  4331. {
  4332. "__type__": "cc.Sprite",
  4333. "_name": "",
  4334. "_objFlags": 0,
  4335. "node": {
  4336. "__id__": 111
  4337. },
  4338. "_enabled": true,
  4339. "_materials": [
  4340. {
  4341. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4342. }
  4343. ],
  4344. "_srcBlendFactor": 770,
  4345. "_dstBlendFactor": 771,
  4346. "_spriteFrame": {
  4347. "__uuid__": "6827ca32-0107-4552-bab2-dfb31799bb44"
  4348. },
  4349. "_type": 0,
  4350. "_sizeMode": 1,
  4351. "_fillType": 0,
  4352. "_fillCenter": {
  4353. "__type__": "cc.Vec2",
  4354. "x": 0,
  4355. "y": 0
  4356. },
  4357. "_fillStart": 0,
  4358. "_fillRange": 0,
  4359. "_isTrimmedMode": true,
  4360. "_atlas": null,
  4361. "_id": ""
  4362. },
  4363. {
  4364. "__type__": "cc.PrefabInfo",
  4365. "root": {
  4366. "__id__": 1
  4367. },
  4368. "asset": {
  4369. "__uuid__": "4896bb32-26a7-4b08-98aa-838a9f85ba8d"
  4370. },
  4371. "fileId": "97bENBrUlFYKNU+BjWgw6O",
  4372. "sync": false
  4373. },
  4374. {
  4375. "__type__": "cc.Node",
  4376. "_name": "checkmark",
  4377. "_objFlags": 0,
  4378. "_parent": {
  4379. "__id__": 110
  4380. },
  4381. "_children": [],
  4382. "_active": true,
  4383. "_components": [
  4384. {
  4385. "__id__": 115
  4386. }
  4387. ],
  4388. "_prefab": {
  4389. "__id__": 116
  4390. },
  4391. "_opacity": 255,
  4392. "_color": {
  4393. "__type__": "cc.Color",
  4394. "r": 255,
  4395. "g": 255,
  4396. "b": 255,
  4397. "a": 255
  4398. },
  4399. "_contentSize": {
  4400. "__type__": "cc.Size",
  4401. "width": 28,
  4402. "height": 28
  4403. },
  4404. "_anchorPoint": {
  4405. "__type__": "cc.Vec2",
  4406. "x": 0.5,
  4407. "y": 0.5
  4408. },
  4409. "_trs": {
  4410. "__type__": "TypedArray",
  4411. "ctor": "Float64Array",
  4412. "array": [
  4413. -50.148,
  4414. 0,
  4415. 0,
  4416. 0,
  4417. 0,
  4418. 0,
  4419. 1,
  4420. 1,
  4421. 1,
  4422. 1
  4423. ]
  4424. },
  4425. "_eulerAngles": {
  4426. "__type__": "cc.Vec3",
  4427. "x": 0,
  4428. "y": 0,
  4429. "z": 0
  4430. },
  4431. "_skewX": 0,
  4432. "_skewY": 0,
  4433. "_is3DNode": false,
  4434. "_groupIndex": 0,
  4435. "groupIndex": 0,
  4436. "_id": ""
  4437. },
  4438. {
  4439. "__type__": "cc.Sprite",
  4440. "_name": "",
  4441. "_objFlags": 0,
  4442. "node": {
  4443. "__id__": 114
  4444. },
  4445. "_enabled": true,
  4446. "_materials": [
  4447. {
  4448. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4449. }
  4450. ],
  4451. "_srcBlendFactor": 770,
  4452. "_dstBlendFactor": 771,
  4453. "_spriteFrame": {
  4454. "__uuid__": "90004ad6-2f6d-40e1-93ef-b714375c6f06"
  4455. },
  4456. "_type": 0,
  4457. "_sizeMode": 2,
  4458. "_fillType": 0,
  4459. "_fillCenter": {
  4460. "__type__": "cc.Vec2",
  4461. "x": 0,
  4462. "y": 0
  4463. },
  4464. "_fillStart": 0,
  4465. "_fillRange": 0,
  4466. "_isTrimmedMode": false,
  4467. "_atlas": null,
  4468. "_id": ""
  4469. },
  4470. {
  4471. "__type__": "cc.PrefabInfo",
  4472. "root": {
  4473. "__id__": 1
  4474. },
  4475. "asset": {
  4476. "__uuid__": "4896bb32-26a7-4b08-98aa-838a9f85ba8d"
  4477. },
  4478. "fileId": "15kZbftudPu7KdqXc1/EbL",
  4479. "sync": false
  4480. },
  4481. {
  4482. "__type__": "cc.Node",
  4483. "_name": "New Label",
  4484. "_objFlags": 0,
  4485. "_parent": {
  4486. "__id__": 110
  4487. },
  4488. "_children": [],
  4489. "_active": true,
  4490. "_components": [
  4491. {
  4492. "__id__": 118
  4493. }
  4494. ],
  4495. "_prefab": {
  4496. "__id__": 119
  4497. },
  4498. "_opacity": 255,
  4499. "_color": {
  4500. "__type__": "cc.Color",
  4501. "r": 255,
  4502. "g": 255,
  4503. "b": 255,
  4504. "a": 255
  4505. },
  4506. "_contentSize": {
  4507. "__type__": "cc.Size",
  4508. "width": 353.36,
  4509. "height": 49.72
  4510. },
  4511. "_anchorPoint": {
  4512. "__type__": "cc.Vec2",
  4513. "x": 0.5,
  4514. "y": 0.5
  4515. },
  4516. "_trs": {
  4517. "__type__": "TypedArray",
  4518. "ctor": "Float64Array",
  4519. "array": [
  4520. 144.177,
  4521. 0,
  4522. 0,
  4523. 0,
  4524. 0,
  4525. 0,
  4526. 1,
  4527. 1,
  4528. 1,
  4529. 1
  4530. ]
  4531. },
  4532. "_eulerAngles": {
  4533. "__type__": "cc.Vec3",
  4534. "x": 0,
  4535. "y": 0,
  4536. "z": 0
  4537. },
  4538. "_skewX": 0,
  4539. "_skewY": 0,
  4540. "_is3DNode": false,
  4541. "_groupIndex": 0,
  4542. "groupIndex": 0,
  4543. "_id": ""
  4544. },
  4545. {
  4546. "__type__": "cc.Label",
  4547. "_name": "",
  4548. "_objFlags": 0,
  4549. "node": {
  4550. "__id__": 117
  4551. },
  4552. "_enabled": true,
  4553. "_materials": [
  4554. {
  4555. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4556. }
  4557. ],
  4558. "_useOriginalSize": false,
  4559. "_string": "我已满18周岁,并同意用户协议 和隐私政\n策",
  4560. "_N$string": "我已满18周岁,并同意用户协议 和隐私政\n策",
  4561. "_fontSize": 20,
  4562. "_lineHeight": 22,
  4563. "_enableWrapText": true,
  4564. "_N$file": null,
  4565. "_isSystemFontUsed": true,
  4566. "_spacingX": 0,
  4567. "_batchAsBitmap": false,
  4568. "_styleFlags": 0,
  4569. "_underlineHeight": 0,
  4570. "_N$horizontalAlign": 0,
  4571. "_N$verticalAlign": 1,
  4572. "_N$fontFamily": "Arial",
  4573. "_N$overflow": 0,
  4574. "_N$cacheMode": 0,
  4575. "_id": ""
  4576. },
  4577. {
  4578. "__type__": "cc.PrefabInfo",
  4579. "root": {
  4580. "__id__": 1
  4581. },
  4582. "asset": {
  4583. "__uuid__": "4896bb32-26a7-4b08-98aa-838a9f85ba8d"
  4584. },
  4585. "fileId": "33LmOKBcBM7oTFcxKcXgs4",
  4586. "sync": false
  4587. },
  4588. {
  4589. "__type__": "cc.Toggle",
  4590. "_name": "",
  4591. "_objFlags": 0,
  4592. "node": {
  4593. "__id__": 110
  4594. },
  4595. "_enabled": true,
  4596. "_normalMaterial": null,
  4597. "_grayMaterial": null,
  4598. "duration": 0.1,
  4599. "zoomScale": 1.2,
  4600. "clickEvents": [],
  4601. "_N$interactable": true,
  4602. "_N$enableAutoGrayEffect": false,
  4603. "_N$transition": 3,
  4604. "transition": 3,
  4605. "_N$normalColor": {
  4606. "__type__": "cc.Color",
  4607. "r": 214,
  4608. "g": 214,
  4609. "b": 214,
  4610. "a": 255
  4611. },
  4612. "_N$pressedColor": {
  4613. "__type__": "cc.Color",
  4614. "r": 211,
  4615. "g": 211,
  4616. "b": 211,
  4617. "a": 255
  4618. },
  4619. "pressedColor": {
  4620. "__type__": "cc.Color",
  4621. "r": 211,
  4622. "g": 211,
  4623. "b": 211,
  4624. "a": 255
  4625. },
  4626. "_N$hoverColor": {
  4627. "__type__": "cc.Color",
  4628. "r": 255,
  4629. "g": 255,
  4630. "b": 255,
  4631. "a": 255
  4632. },
  4633. "hoverColor": {
  4634. "__type__": "cc.Color",
  4635. "r": 255,
  4636. "g": 255,
  4637. "b": 255,
  4638. "a": 255
  4639. },
  4640. "_N$disabledColor": {
  4641. "__type__": "cc.Color",
  4642. "r": 124,
  4643. "g": 124,
  4644. "b": 124,
  4645. "a": 255
  4646. },
  4647. "_N$normalSprite": null,
  4648. "_N$pressedSprite": null,
  4649. "pressedSprite": null,
  4650. "_N$hoverSprite": null,
  4651. "hoverSprite": null,
  4652. "_N$disabledSprite": null,
  4653. "_N$target": {
  4654. "__id__": 111
  4655. },
  4656. "_N$isChecked": true,
  4657. "toggleGroup": null,
  4658. "checkMark": {
  4659. "__id__": 115
  4660. },
  4661. "checkEvents": [],
  4662. "_id": ""
  4663. },
  4664. {
  4665. "__type__": "cc.PrefabInfo",
  4666. "root": {
  4667. "__id__": 1
  4668. },
  4669. "asset": {
  4670. "__uuid__": "4896bb32-26a7-4b08-98aa-838a9f85ba8d"
  4671. },
  4672. "fileId": "d68a+NYPJFwYSVNgiTUBBy",
  4673. "sync": false
  4674. },
  4675. {
  4676. "__type__": "cc.Node",
  4677. "_name": "btnLayout",
  4678. "_objFlags": 0,
  4679. "_parent": {
  4680. "__id__": 35
  4681. },
  4682. "_children": [
  4683. {
  4684. "__id__": 123
  4685. },
  4686. {
  4687. "__id__": 134
  4688. }
  4689. ],
  4690. "_active": true,
  4691. "_components": [
  4692. {
  4693. "__id__": 145
  4694. }
  4695. ],
  4696. "_prefab": {
  4697. "__id__": 146
  4698. },
  4699. "_opacity": 255,
  4700. "_color": {
  4701. "__type__": "cc.Color",
  4702. "r": 255,
  4703. "g": 255,
  4704. "b": 255,
  4705. "a": 255
  4706. },
  4707. "_contentSize": {
  4708. "__type__": "cc.Size",
  4709. "width": 600,
  4710. "height": 60
  4711. },
  4712. "_anchorPoint": {
  4713. "__type__": "cc.Vec2",
  4714. "x": 0.5,
  4715. "y": 0.5
  4716. },
  4717. "_trs": {
  4718. "__type__": "TypedArray",
  4719. "ctor": "Float64Array",
  4720. "array": [
  4721. 0,
  4722. -368,
  4723. 0,
  4724. 0,
  4725. 0,
  4726. 0,
  4727. 1,
  4728. 1,
  4729. 1,
  4730. 1
  4731. ]
  4732. },
  4733. "_eulerAngles": {
  4734. "__type__": "cc.Vec3",
  4735. "x": 0,
  4736. "y": 0,
  4737. "z": 0
  4738. },
  4739. "_skewX": 0,
  4740. "_skewY": 0,
  4741. "_is3DNode": false,
  4742. "_groupIndex": 0,
  4743. "groupIndex": 0,
  4744. "_id": ""
  4745. },
  4746. {
  4747. "__type__": "cc.Node",
  4748. "_name": "gotoRegister",
  4749. "_objFlags": 0,
  4750. "_parent": {
  4751. "__id__": 122
  4752. },
  4753. "_children": [
  4754. {
  4755. "__id__": 124
  4756. }
  4757. ],
  4758. "_active": true,
  4759. "_components": [
  4760. {
  4761. "__id__": 131
  4762. }
  4763. ],
  4764. "_prefab": {
  4765. "__id__": 133
  4766. },
  4767. "_opacity": 255,
  4768. "_color": {
  4769. "__type__": "cc.Color",
  4770. "r": 255,
  4771. "g": 255,
  4772. "b": 255,
  4773. "a": 255
  4774. },
  4775. "_contentSize": {
  4776. "__type__": "cc.Size",
  4777. "width": 275,
  4778. "height": 50
  4779. },
  4780. "_anchorPoint": {
  4781. "__type__": "cc.Vec2",
  4782. "x": 0.5,
  4783. "y": 0.5
  4784. },
  4785. "_trs": {
  4786. "__type__": "TypedArray",
  4787. "ctor": "Float64Array",
  4788. "array": [
  4789. -162.5,
  4790. 0,
  4791. 0,
  4792. 0,
  4793. 0,
  4794. 0,
  4795. 1,
  4796. 1,
  4797. 1,
  4798. 1
  4799. ]
  4800. },
  4801. "_eulerAngles": {
  4802. "__type__": "cc.Vec3",
  4803. "x": 0,
  4804. "y": 0,
  4805. "z": 0
  4806. },
  4807. "_skewX": 0,
  4808. "_skewY": 0,
  4809. "_is3DNode": false,
  4810. "_groupIndex": 0,
  4811. "groupIndex": 0,
  4812. "_id": ""
  4813. },
  4814. {
  4815. "__type__": "cc.Node",
  4816. "_name": "Background",
  4817. "_objFlags": 0,
  4818. "_parent": {
  4819. "__id__": 123
  4820. },
  4821. "_children": [
  4822. {
  4823. "__id__": 125
  4824. }
  4825. ],
  4826. "_active": true,
  4827. "_components": [
  4828. {
  4829. "__id__": 128
  4830. },
  4831. {
  4832. "__id__": 129
  4833. }
  4834. ],
  4835. "_prefab": {
  4836. "__id__": 130
  4837. },
  4838. "_opacity": 255,
  4839. "_color": {
  4840. "__type__": "cc.Color",
  4841. "r": 255,
  4842. "g": 255,
  4843. "b": 255,
  4844. "a": 255
  4845. },
  4846. "_contentSize": {
  4847. "__type__": "cc.Size",
  4848. "width": 275,
  4849. "height": 50
  4850. },
  4851. "_anchorPoint": {
  4852. "__type__": "cc.Vec2",
  4853. "x": 0.5,
  4854. "y": 0.5
  4855. },
  4856. "_trs": {
  4857. "__type__": "TypedArray",
  4858. "ctor": "Float64Array",
  4859. "array": [
  4860. 0,
  4861. 0,
  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": "Label",
  4888. "_objFlags": 0,
  4889. "_parent": {
  4890. "__id__": 124
  4891. },
  4892. "_children": [],
  4893. "_active": true,
  4894. "_components": [
  4895. {
  4896. "__id__": 126
  4897. }
  4898. ],
  4899. "_prefab": {
  4900. "__id__": 127
  4901. },
  4902. "_opacity": 255,
  4903. "_color": {
  4904. "__type__": "cc.Color",
  4905. "r": 0,
  4906. "g": 0,
  4907. "b": 0,
  4908. "a": 255
  4909. },
  4910. "_contentSize": {
  4911. "__type__": "cc.Size",
  4912. "width": 100,
  4913. "height": 40
  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. 0,
  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.Label",
  4951. "_name": "",
  4952. "_objFlags": 0,
  4953. "node": {
  4954. "__id__": 125
  4955. },
  4956. "_enabled": true,
  4957. "_materials": [
  4958. {
  4959. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4960. }
  4961. ],
  4962. "_useOriginalSize": false,
  4963. "_string": "去注册",
  4964. "_N$string": "去注册",
  4965. "_fontSize": 20,
  4966. "_lineHeight": 40,
  4967. "_enableWrapText": false,
  4968. "_N$file": null,
  4969. "_isSystemFontUsed": true,
  4970. "_spacingX": 0,
  4971. "_batchAsBitmap": false,
  4972. "_styleFlags": 0,
  4973. "_underlineHeight": 0,
  4974. "_N$horizontalAlign": 1,
  4975. "_N$verticalAlign": 1,
  4976. "_N$fontFamily": "Arial",
  4977. "_N$overflow": 1,
  4978. "_N$cacheMode": 1,
  4979. "_id": ""
  4980. },
  4981. {
  4982. "__type__": "cc.PrefabInfo",
  4983. "root": {
  4984. "__id__": 1
  4985. },
  4986. "asset": {
  4987. "__uuid__": "4896bb32-26a7-4b08-98aa-838a9f85ba8d"
  4988. },
  4989. "fileId": "ccnKAj+sdO8KBn7wx1ZhvP",
  4990. "sync": false
  4991. },
  4992. {
  4993. "__type__": "cc.Sprite",
  4994. "_name": "",
  4995. "_objFlags": 0,
  4996. "node": {
  4997. "__id__": 124
  4998. },
  4999. "_enabled": true,
  5000. "_materials": [
  5001. {
  5002. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5003. }
  5004. ],
  5005. "_srcBlendFactor": 770,
  5006. "_dstBlendFactor": 771,
  5007. "_spriteFrame": {
  5008. "__uuid__": "f5515b85-5c21-4f43-b50c-8e298c8b5dc2"
  5009. },
  5010. "_type": 1,
  5011. "_sizeMode": 0,
  5012. "_fillType": 0,
  5013. "_fillCenter": {
  5014. "__type__": "cc.Vec2",
  5015. "x": 0,
  5016. "y": 0
  5017. },
  5018. "_fillStart": 0,
  5019. "_fillRange": 0,
  5020. "_isTrimmedMode": true,
  5021. "_atlas": {
  5022. "__uuid__": "3905bccb-bbf8-4db7-9c38-2343245ba06b"
  5023. },
  5024. "_id": ""
  5025. },
  5026. {
  5027. "__type__": "cc.Widget",
  5028. "_name": "",
  5029. "_objFlags": 0,
  5030. "node": {
  5031. "__id__": 124
  5032. },
  5033. "_enabled": true,
  5034. "alignMode": 0,
  5035. "_target": null,
  5036. "_alignFlags": 45,
  5037. "_left": 0,
  5038. "_right": 0,
  5039. "_top": 0,
  5040. "_bottom": 0,
  5041. "_verticalCenter": 0,
  5042. "_horizontalCenter": 0,
  5043. "_isAbsLeft": true,
  5044. "_isAbsRight": true,
  5045. "_isAbsTop": true,
  5046. "_isAbsBottom": true,
  5047. "_isAbsHorizontalCenter": true,
  5048. "_isAbsVerticalCenter": true,
  5049. "_originalWidth": 100,
  5050. "_originalHeight": 40,
  5051. "_id": ""
  5052. },
  5053. {
  5054. "__type__": "cc.PrefabInfo",
  5055. "root": {
  5056. "__id__": 1
  5057. },
  5058. "asset": {
  5059. "__uuid__": "4896bb32-26a7-4b08-98aa-838a9f85ba8d"
  5060. },
  5061. "fileId": "5cmFJJaehFQ4lcv9Wf0AQd",
  5062. "sync": false
  5063. },
  5064. {
  5065. "__type__": "cc.Button",
  5066. "_name": "",
  5067. "_objFlags": 0,
  5068. "node": {
  5069. "__id__": 123
  5070. },
  5071. "_enabled": true,
  5072. "_normalMaterial": {
  5073. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5074. },
  5075. "_grayMaterial": null,
  5076. "duration": 0.1,
  5077. "zoomScale": 1.2,
  5078. "clickEvents": [
  5079. {
  5080. "__id__": 132
  5081. }
  5082. ],
  5083. "_N$interactable": true,
  5084. "_N$enableAutoGrayEffect": false,
  5085. "_N$transition": 3,
  5086. "transition": 3,
  5087. "_N$normalColor": {
  5088. "__type__": "cc.Color",
  5089. "r": 230,
  5090. "g": 230,
  5091. "b": 230,
  5092. "a": 255
  5093. },
  5094. "_N$pressedColor": {
  5095. "__type__": "cc.Color",
  5096. "r": 200,
  5097. "g": 200,
  5098. "b": 200,
  5099. "a": 255
  5100. },
  5101. "pressedColor": {
  5102. "__type__": "cc.Color",
  5103. "r": 200,
  5104. "g": 200,
  5105. "b": 200,
  5106. "a": 255
  5107. },
  5108. "_N$hoverColor": {
  5109. "__type__": "cc.Color",
  5110. "r": 255,
  5111. "g": 255,
  5112. "b": 255,
  5113. "a": 255
  5114. },
  5115. "hoverColor": {
  5116. "__type__": "cc.Color",
  5117. "r": 255,
  5118. "g": 255,
  5119. "b": 255,
  5120. "a": 255
  5121. },
  5122. "_N$disabledColor": {
  5123. "__type__": "cc.Color",
  5124. "r": 120,
  5125. "g": 120,
  5126. "b": 120,
  5127. "a": 200
  5128. },
  5129. "_N$normalSprite": {
  5130. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  5131. },
  5132. "_N$pressedSprite": {
  5133. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  5134. },
  5135. "pressedSprite": {
  5136. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  5137. },
  5138. "_N$hoverSprite": {
  5139. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  5140. },
  5141. "hoverSprite": {
  5142. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  5143. },
  5144. "_N$disabledSprite": {
  5145. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  5146. },
  5147. "_N$target": {
  5148. "__id__": 124
  5149. },
  5150. "_id": ""
  5151. },
  5152. {
  5153. "__type__": "cc.ClickEvent",
  5154. "target": {
  5155. "__id__": 1
  5156. },
  5157. "component": "",
  5158. "_componentId": "809cce2oDBB9btZv1+wtwjL",
  5159. "handler": "gotoRegisterOnClicked",
  5160. "customEventData": ""
  5161. },
  5162. {
  5163. "__type__": "cc.PrefabInfo",
  5164. "root": {
  5165. "__id__": 1
  5166. },
  5167. "asset": {
  5168. "__uuid__": "4896bb32-26a7-4b08-98aa-838a9f85ba8d"
  5169. },
  5170. "fileId": "59g+uWUwxHi5p+D3Ec6v1Y",
  5171. "sync": false
  5172. },
  5173. {
  5174. "__type__": "cc.Node",
  5175. "_name": "gotoLogin",
  5176. "_objFlags": 0,
  5177. "_parent": {
  5178. "__id__": 122
  5179. },
  5180. "_children": [
  5181. {
  5182. "__id__": 135
  5183. }
  5184. ],
  5185. "_active": true,
  5186. "_components": [
  5187. {
  5188. "__id__": 142
  5189. }
  5190. ],
  5191. "_prefab": {
  5192. "__id__": 144
  5193. },
  5194. "_opacity": 255,
  5195. "_color": {
  5196. "__type__": "cc.Color",
  5197. "r": 255,
  5198. "g": 255,
  5199. "b": 255,
  5200. "a": 255
  5201. },
  5202. "_contentSize": {
  5203. "__type__": "cc.Size",
  5204. "width": 275,
  5205. "height": 50
  5206. },
  5207. "_anchorPoint": {
  5208. "__type__": "cc.Vec2",
  5209. "x": 0.5,
  5210. "y": 0.5
  5211. },
  5212. "_trs": {
  5213. "__type__": "TypedArray",
  5214. "ctor": "Float64Array",
  5215. "array": [
  5216. 162.5,
  5217. 0,
  5218. 0,
  5219. 0,
  5220. 0,
  5221. 0,
  5222. 1,
  5223. 1,
  5224. 1,
  5225. 1
  5226. ]
  5227. },
  5228. "_eulerAngles": {
  5229. "__type__": "cc.Vec3",
  5230. "x": 0,
  5231. "y": 0,
  5232. "z": 0
  5233. },
  5234. "_skewX": 0,
  5235. "_skewY": 0,
  5236. "_is3DNode": false,
  5237. "_groupIndex": 0,
  5238. "groupIndex": 0,
  5239. "_id": ""
  5240. },
  5241. {
  5242. "__type__": "cc.Node",
  5243. "_name": "Background",
  5244. "_objFlags": 0,
  5245. "_parent": {
  5246. "__id__": 134
  5247. },
  5248. "_children": [
  5249. {
  5250. "__id__": 136
  5251. }
  5252. ],
  5253. "_active": true,
  5254. "_components": [
  5255. {
  5256. "__id__": 139
  5257. },
  5258. {
  5259. "__id__": 140
  5260. }
  5261. ],
  5262. "_prefab": {
  5263. "__id__": 141
  5264. },
  5265. "_opacity": 255,
  5266. "_color": {
  5267. "__type__": "cc.Color",
  5268. "r": 255,
  5269. "g": 255,
  5270. "b": 255,
  5271. "a": 255
  5272. },
  5273. "_contentSize": {
  5274. "__type__": "cc.Size",
  5275. "width": 275,
  5276. "height": 50
  5277. },
  5278. "_anchorPoint": {
  5279. "__type__": "cc.Vec2",
  5280. "x": 0.5,
  5281. "y": 0.5
  5282. },
  5283. "_trs": {
  5284. "__type__": "TypedArray",
  5285. "ctor": "Float64Array",
  5286. "array": [
  5287. 0,
  5288. 0,
  5289. 0,
  5290. 0,
  5291. 0,
  5292. 0,
  5293. 1,
  5294. 1,
  5295. 1,
  5296. 1
  5297. ]
  5298. },
  5299. "_eulerAngles": {
  5300. "__type__": "cc.Vec3",
  5301. "x": 0,
  5302. "y": 0,
  5303. "z": 0
  5304. },
  5305. "_skewX": 0,
  5306. "_skewY": 0,
  5307. "_is3DNode": false,
  5308. "_groupIndex": 0,
  5309. "groupIndex": 0,
  5310. "_id": ""
  5311. },
  5312. {
  5313. "__type__": "cc.Node",
  5314. "_name": "Label",
  5315. "_objFlags": 0,
  5316. "_parent": {
  5317. "__id__": 135
  5318. },
  5319. "_children": [],
  5320. "_active": true,
  5321. "_components": [
  5322. {
  5323. "__id__": 137
  5324. }
  5325. ],
  5326. "_prefab": {
  5327. "__id__": 138
  5328. },
  5329. "_opacity": 255,
  5330. "_color": {
  5331. "__type__": "cc.Color",
  5332. "r": 0,
  5333. "g": 0,
  5334. "b": 0,
  5335. "a": 255
  5336. },
  5337. "_contentSize": {
  5338. "__type__": "cc.Size",
  5339. "width": 100,
  5340. "height": 40
  5341. },
  5342. "_anchorPoint": {
  5343. "__type__": "cc.Vec2",
  5344. "x": 0.5,
  5345. "y": 0.5
  5346. },
  5347. "_trs": {
  5348. "__type__": "TypedArray",
  5349. "ctor": "Float64Array",
  5350. "array": [
  5351. 0,
  5352. 0,
  5353. 0,
  5354. 0,
  5355. 0,
  5356. 0,
  5357. 1,
  5358. 1,
  5359. 1,
  5360. 1
  5361. ]
  5362. },
  5363. "_eulerAngles": {
  5364. "__type__": "cc.Vec3",
  5365. "x": 0,
  5366. "y": 0,
  5367. "z": 0
  5368. },
  5369. "_skewX": 0,
  5370. "_skewY": 0,
  5371. "_is3DNode": false,
  5372. "_groupIndex": 0,
  5373. "groupIndex": 0,
  5374. "_id": ""
  5375. },
  5376. {
  5377. "__type__": "cc.Label",
  5378. "_name": "",
  5379. "_objFlags": 0,
  5380. "node": {
  5381. "__id__": 136
  5382. },
  5383. "_enabled": true,
  5384. "_materials": [
  5385. {
  5386. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5387. }
  5388. ],
  5389. "_useOriginalSize": false,
  5390. "_string": "登录",
  5391. "_N$string": "登录",
  5392. "_fontSize": 20,
  5393. "_lineHeight": 40,
  5394. "_enableWrapText": false,
  5395. "_N$file": null,
  5396. "_isSystemFontUsed": true,
  5397. "_spacingX": 0,
  5398. "_batchAsBitmap": false,
  5399. "_styleFlags": 0,
  5400. "_underlineHeight": 0,
  5401. "_N$horizontalAlign": 1,
  5402. "_N$verticalAlign": 1,
  5403. "_N$fontFamily": "Arial",
  5404. "_N$overflow": 1,
  5405. "_N$cacheMode": 1,
  5406. "_id": ""
  5407. },
  5408. {
  5409. "__type__": "cc.PrefabInfo",
  5410. "root": {
  5411. "__id__": 1
  5412. },
  5413. "asset": {
  5414. "__uuid__": "4896bb32-26a7-4b08-98aa-838a9f85ba8d"
  5415. },
  5416. "fileId": "0bVG6IDPVNHpiR0MZ9bynU",
  5417. "sync": false
  5418. },
  5419. {
  5420. "__type__": "cc.Sprite",
  5421. "_name": "",
  5422. "_objFlags": 0,
  5423. "node": {
  5424. "__id__": 135
  5425. },
  5426. "_enabled": true,
  5427. "_materials": [
  5428. {
  5429. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5430. }
  5431. ],
  5432. "_srcBlendFactor": 770,
  5433. "_dstBlendFactor": 771,
  5434. "_spriteFrame": {
  5435. "__uuid__": "6186b461-fbb3-426d-a722-fe14c35294d0"
  5436. },
  5437. "_type": 1,
  5438. "_sizeMode": 0,
  5439. "_fillType": 0,
  5440. "_fillCenter": {
  5441. "__type__": "cc.Vec2",
  5442. "x": 0,
  5443. "y": 0
  5444. },
  5445. "_fillStart": 0,
  5446. "_fillRange": 0,
  5447. "_isTrimmedMode": true,
  5448. "_atlas": {
  5449. "__uuid__": "3905bccb-bbf8-4db7-9c38-2343245ba06b"
  5450. },
  5451. "_id": ""
  5452. },
  5453. {
  5454. "__type__": "cc.Widget",
  5455. "_name": "",
  5456. "_objFlags": 0,
  5457. "node": {
  5458. "__id__": 135
  5459. },
  5460. "_enabled": true,
  5461. "alignMode": 0,
  5462. "_target": null,
  5463. "_alignFlags": 45,
  5464. "_left": 0,
  5465. "_right": 0,
  5466. "_top": 0,
  5467. "_bottom": 0,
  5468. "_verticalCenter": 0,
  5469. "_horizontalCenter": 0,
  5470. "_isAbsLeft": true,
  5471. "_isAbsRight": true,
  5472. "_isAbsTop": true,
  5473. "_isAbsBottom": true,
  5474. "_isAbsHorizontalCenter": true,
  5475. "_isAbsVerticalCenter": true,
  5476. "_originalWidth": 100,
  5477. "_originalHeight": 40,
  5478. "_id": ""
  5479. },
  5480. {
  5481. "__type__": "cc.PrefabInfo",
  5482. "root": {
  5483. "__id__": 1
  5484. },
  5485. "asset": {
  5486. "__uuid__": "4896bb32-26a7-4b08-98aa-838a9f85ba8d"
  5487. },
  5488. "fileId": "875RAjjv5IwZKx5RwpPFOX",
  5489. "sync": false
  5490. },
  5491. {
  5492. "__type__": "cc.Button",
  5493. "_name": "",
  5494. "_objFlags": 0,
  5495. "node": {
  5496. "__id__": 134
  5497. },
  5498. "_enabled": true,
  5499. "_normalMaterial": {
  5500. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5501. },
  5502. "_grayMaterial": null,
  5503. "duration": 0.1,
  5504. "zoomScale": 1.2,
  5505. "clickEvents": [
  5506. {
  5507. "__id__": 143
  5508. }
  5509. ],
  5510. "_N$interactable": true,
  5511. "_N$enableAutoGrayEffect": false,
  5512. "_N$transition": 3,
  5513. "transition": 3,
  5514. "_N$normalColor": {
  5515. "__type__": "cc.Color",
  5516. "r": 230,
  5517. "g": 230,
  5518. "b": 230,
  5519. "a": 255
  5520. },
  5521. "_N$pressedColor": {
  5522. "__type__": "cc.Color",
  5523. "r": 200,
  5524. "g": 200,
  5525. "b": 200,
  5526. "a": 255
  5527. },
  5528. "pressedColor": {
  5529. "__type__": "cc.Color",
  5530. "r": 200,
  5531. "g": 200,
  5532. "b": 200,
  5533. "a": 255
  5534. },
  5535. "_N$hoverColor": {
  5536. "__type__": "cc.Color",
  5537. "r": 255,
  5538. "g": 255,
  5539. "b": 255,
  5540. "a": 255
  5541. },
  5542. "hoverColor": {
  5543. "__type__": "cc.Color",
  5544. "r": 255,
  5545. "g": 255,
  5546. "b": 255,
  5547. "a": 255
  5548. },
  5549. "_N$disabledColor": {
  5550. "__type__": "cc.Color",
  5551. "r": 120,
  5552. "g": 120,
  5553. "b": 120,
  5554. "a": 200
  5555. },
  5556. "_N$normalSprite": {
  5557. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  5558. },
  5559. "_N$pressedSprite": {
  5560. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  5561. },
  5562. "pressedSprite": {
  5563. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  5564. },
  5565. "_N$hoverSprite": {
  5566. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  5567. },
  5568. "hoverSprite": {
  5569. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  5570. },
  5571. "_N$disabledSprite": {
  5572. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  5573. },
  5574. "_N$target": {
  5575. "__id__": 135
  5576. },
  5577. "_id": ""
  5578. },
  5579. {
  5580. "__type__": "cc.ClickEvent",
  5581. "target": {
  5582. "__id__": 1
  5583. },
  5584. "component": "",
  5585. "_componentId": "809cce2oDBB9btZv1+wtwjL",
  5586. "handler": "gotoLoginOnClicked",
  5587. "customEventData": ""
  5588. },
  5589. {
  5590. "__type__": "cc.PrefabInfo",
  5591. "root": {
  5592. "__id__": 1
  5593. },
  5594. "asset": {
  5595. "__uuid__": "4896bb32-26a7-4b08-98aa-838a9f85ba8d"
  5596. },
  5597. "fileId": "fe4nKqmvZLcrIPZUtkEDLB",
  5598. "sync": false
  5599. },
  5600. {
  5601. "__type__": "cc.Layout",
  5602. "_name": "",
  5603. "_objFlags": 0,
  5604. "node": {
  5605. "__id__": 122
  5606. },
  5607. "_enabled": true,
  5608. "_layoutSize": {
  5609. "__type__": "cc.Size",
  5610. "width": 600,
  5611. "height": 60
  5612. },
  5613. "_resize": 2,
  5614. "_N$layoutType": 1,
  5615. "_N$padding": 0,
  5616. "_N$cellSize": {
  5617. "__type__": "cc.Size",
  5618. "width": 40,
  5619. "height": 40
  5620. },
  5621. "_N$startAxis": 0,
  5622. "_N$paddingLeft": 0,
  5623. "_N$paddingRight": 0,
  5624. "_N$paddingTop": 0,
  5625. "_N$paddingBottom": 0,
  5626. "_N$spacingX": 50,
  5627. "_N$spacingY": 0,
  5628. "_N$verticalDirection": 1,
  5629. "_N$horizontalDirection": 0,
  5630. "_N$affectedByScale": false,
  5631. "_id": ""
  5632. },
  5633. {
  5634. "__type__": "cc.PrefabInfo",
  5635. "root": {
  5636. "__id__": 1
  5637. },
  5638. "asset": {
  5639. "__uuid__": "4896bb32-26a7-4b08-98aa-838a9f85ba8d"
  5640. },
  5641. "fileId": "35X6WJjY9PXq2SfWC5KKTi",
  5642. "sync": false
  5643. },
  5644. {
  5645. "__type__": "cc.Layout",
  5646. "_name": "",
  5647. "_objFlags": 0,
  5648. "node": {
  5649. "__id__": 35
  5650. },
  5651. "_enabled": true,
  5652. "_layoutSize": {
  5653. "__type__": "cc.Size",
  5654. "width": 600,
  5655. "height": 398
  5656. },
  5657. "_resize": 1,
  5658. "_N$layoutType": 2,
  5659. "_N$padding": 0,
  5660. "_N$cellSize": {
  5661. "__type__": "cc.Size",
  5662. "width": 40,
  5663. "height": 40
  5664. },
  5665. "_N$startAxis": 0,
  5666. "_N$paddingLeft": 0,
  5667. "_N$paddingRight": 0,
  5668. "_N$paddingTop": 40,
  5669. "_N$paddingBottom": 0,
  5670. "_N$spacingX": 0,
  5671. "_N$spacingY": 30,
  5672. "_N$verticalDirection": 1,
  5673. "_N$horizontalDirection": 0,
  5674. "_N$affectedByScale": false,
  5675. "_id": ""
  5676. },
  5677. {
  5678. "__type__": "cc.PrefabInfo",
  5679. "root": {
  5680. "__id__": 1
  5681. },
  5682. "asset": {
  5683. "__uuid__": "4896bb32-26a7-4b08-98aa-838a9f85ba8d"
  5684. },
  5685. "fileId": "e7NMPP5PdG7Yno1kx2qFru",
  5686. "sync": false
  5687. },
  5688. {
  5689. "__type__": "809cce2oDBB9btZv1+wtwjL",
  5690. "_name": "",
  5691. "_objFlags": 0,
  5692. "node": {
  5693. "__id__": 1
  5694. },
  5695. "_enabled": true,
  5696. "gotoLogin": {
  5697. "__id__": 142
  5698. },
  5699. "gotoRegister": {
  5700. "__id__": 131
  5701. },
  5702. "getCode": {
  5703. "__id__": 87
  5704. },
  5705. "phoneEditor": {
  5706. "__id__": 49
  5707. },
  5708. "codeEditor": {
  5709. "__id__": 90
  5710. },
  5711. "passwordEditor": {
  5712. "__id__": 64
  5713. },
  5714. "_id": ""
  5715. },
  5716. {
  5717. "__type__": "cc.PrefabInfo",
  5718. "root": {
  5719. "__id__": 1
  5720. },
  5721. "asset": {
  5722. "__uuid__": "4896bb32-26a7-4b08-98aa-838a9f85ba8d"
  5723. },
  5724. "fileId": "f6k4Pvtw5KroSXbhValnZ+",
  5725. "sync": false
  5726. }
  5727. ]