prefab_register_panel.prefab 85 KB

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