LoginUI.prefab 50 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856
  1. [
  2. {
  3. "__type__": "cc.Prefab",
  4. "_name": "LoginUI",
  5. "_objFlags": 0,
  6. "__editorExtras__": {},
  7. "_native": "",
  8. "data": {
  9. "__id__": 1
  10. },
  11. "optimizationPolicy": 0,
  12. "persistent": false
  13. },
  14. {
  15. "__type__": "cc.Node",
  16. "_name": "LoginUI",
  17. "_objFlags": 0,
  18. "__editorExtras__": {},
  19. "_parent": null,
  20. "_children": [
  21. {
  22. "__id__": 2
  23. },
  24. {
  25. "__id__": 8
  26. },
  27. {
  28. "__id__": 14
  29. },
  30. {
  31. "__id__": 20
  32. },
  33. {
  34. "__id__": 56
  35. }
  36. ],
  37. "_active": true,
  38. "_components": [
  39. {
  40. "__id__": 109
  41. },
  42. {
  43. "__id__": 111
  44. },
  45. {
  46. "__id__": 113
  47. },
  48. {
  49. "__id__": 115
  50. }
  51. ],
  52. "_prefab": {
  53. "__id__": 117
  54. },
  55. "_lpos": {
  56. "__type__": "cc.Vec3",
  57. "x": 0,
  58. "y": 0,
  59. "z": 0
  60. },
  61. "_lrot": {
  62. "__type__": "cc.Quat",
  63. "x": 0,
  64. "y": 0,
  65. "z": 0,
  66. "w": 1
  67. },
  68. "_lscale": {
  69. "__type__": "cc.Vec3",
  70. "x": 1,
  71. "y": 1,
  72. "z": 1
  73. },
  74. "_mobility": 0,
  75. "_layer": 33554432,
  76. "_euler": {
  77. "__type__": "cc.Vec3",
  78. "x": 0,
  79. "y": 0,
  80. "z": 0
  81. },
  82. "_id": ""
  83. },
  84. {
  85. "__type__": "cc.Node",
  86. "_name": "loginbg",
  87. "_objFlags": 0,
  88. "__editorExtras__": {},
  89. "_parent": {
  90. "__id__": 1
  91. },
  92. "_children": [],
  93. "_active": true,
  94. "_components": [
  95. {
  96. "__id__": 3
  97. },
  98. {
  99. "__id__": 5
  100. }
  101. ],
  102. "_prefab": {
  103. "__id__": 7
  104. },
  105. "_lpos": {
  106. "__type__": "cc.Vec3",
  107. "x": 0,
  108. "y": 0,
  109. "z": 0
  110. },
  111. "_lrot": {
  112. "__type__": "cc.Quat",
  113. "x": 0,
  114. "y": 0,
  115. "z": 0,
  116. "w": 1
  117. },
  118. "_lscale": {
  119. "__type__": "cc.Vec3",
  120. "x": 1,
  121. "y": 1,
  122. "z": 1
  123. },
  124. "_mobility": 0,
  125. "_layer": 33554432,
  126. "_euler": {
  127. "__type__": "cc.Vec3",
  128. "x": 0,
  129. "y": 0,
  130. "z": 0
  131. },
  132. "_id": ""
  133. },
  134. {
  135. "__type__": "cc.UITransform",
  136. "_name": "",
  137. "_objFlags": 0,
  138. "__editorExtras__": {},
  139. "node": {
  140. "__id__": 2
  141. },
  142. "_enabled": true,
  143. "__prefab": {
  144. "__id__": 4
  145. },
  146. "_contentSize": {
  147. "__type__": "cc.Size",
  148. "width": 750,
  149. "height": 1334
  150. },
  151. "_anchorPoint": {
  152. "__type__": "cc.Vec2",
  153. "x": 0.5,
  154. "y": 0.5
  155. },
  156. "_id": ""
  157. },
  158. {
  159. "__type__": "cc.CompPrefabInfo",
  160. "fileId": "29apMVNHpDlJnyf54qTsmo"
  161. },
  162. {
  163. "__type__": "cc.Sprite",
  164. "_name": "",
  165. "_objFlags": 0,
  166. "__editorExtras__": {},
  167. "node": {
  168. "__id__": 2
  169. },
  170. "_enabled": true,
  171. "__prefab": {
  172. "__id__": 6
  173. },
  174. "_customMaterial": null,
  175. "_srcBlendFactor": 2,
  176. "_dstBlendFactor": 4,
  177. "_color": {
  178. "__type__": "cc.Color",
  179. "r": 255,
  180. "g": 255,
  181. "b": 255,
  182. "a": 255
  183. },
  184. "_spriteFrame": null,
  185. "_type": 0,
  186. "_fillType": 0,
  187. "_sizeMode": 0,
  188. "_fillCenter": {
  189. "__type__": "cc.Vec2",
  190. "x": 0,
  191. "y": 0
  192. },
  193. "_fillStart": 0,
  194. "_fillRange": 0,
  195. "_isTrimmedMode": true,
  196. "_useGrayscale": false,
  197. "_atlas": null,
  198. "_id": ""
  199. },
  200. {
  201. "__type__": "cc.CompPrefabInfo",
  202. "fileId": "d9Xnhpjl1DWpjhPC5WIlmI"
  203. },
  204. {
  205. "__type__": "cc.PrefabInfo",
  206. "root": {
  207. "__id__": 1
  208. },
  209. "asset": {
  210. "__id__": 0
  211. },
  212. "fileId": "a0ehjUGjJN9ZwaCage5FDF",
  213. "instance": null,
  214. "targetOverrides": null,
  215. "nestedPrefabInstanceRoots": null
  216. },
  217. {
  218. "__type__": "cc.Node",
  219. "_name": "version",
  220. "_objFlags": 0,
  221. "__editorExtras__": {},
  222. "_parent": {
  223. "__id__": 1
  224. },
  225. "_children": [],
  226. "_active": true,
  227. "_components": [
  228. {
  229. "__id__": 9
  230. },
  231. {
  232. "__id__": 11
  233. }
  234. ],
  235. "_prefab": {
  236. "__id__": 13
  237. },
  238. "_lpos": {
  239. "__type__": "cc.Vec3",
  240. "x": 0,
  241. "y": -620,
  242. "z": 0
  243. },
  244. "_lrot": {
  245. "__type__": "cc.Quat",
  246. "x": 0,
  247. "y": 0,
  248. "z": 0,
  249. "w": 1
  250. },
  251. "_lscale": {
  252. "__type__": "cc.Vec3",
  253. "x": 1,
  254. "y": 1,
  255. "z": 1
  256. },
  257. "_mobility": 0,
  258. "_layer": 33554432,
  259. "_euler": {
  260. "__type__": "cc.Vec3",
  261. "x": 0,
  262. "y": 0,
  263. "z": 0
  264. },
  265. "_id": ""
  266. },
  267. {
  268. "__type__": "cc.UITransform",
  269. "_name": "",
  270. "_objFlags": 0,
  271. "__editorExtras__": {},
  272. "node": {
  273. "__id__": 8
  274. },
  275. "_enabled": true,
  276. "__prefab": {
  277. "__id__": 10
  278. },
  279. "_contentSize": {
  280. "__type__": "cc.Size",
  281. "width": 0,
  282. "height": 37.8
  283. },
  284. "_anchorPoint": {
  285. "__type__": "cc.Vec2",
  286. "x": 0.5,
  287. "y": 0.5
  288. },
  289. "_id": ""
  290. },
  291. {
  292. "__type__": "cc.CompPrefabInfo",
  293. "fileId": "5dZXqk1bxLiasCy1A2jKBr"
  294. },
  295. {
  296. "__type__": "cc.Label",
  297. "_name": "",
  298. "_objFlags": 0,
  299. "__editorExtras__": {},
  300. "node": {
  301. "__id__": 8
  302. },
  303. "_enabled": true,
  304. "__prefab": {
  305. "__id__": 12
  306. },
  307. "_customMaterial": null,
  308. "_srcBlendFactor": 2,
  309. "_dstBlendFactor": 4,
  310. "_color": {
  311. "__type__": "cc.Color",
  312. "r": 255,
  313. "g": 255,
  314. "b": 255,
  315. "a": 255
  316. },
  317. "_string": "",
  318. "_horizontalAlign": 1,
  319. "_verticalAlign": 1,
  320. "_actualFontSize": 30,
  321. "_fontSize": 30,
  322. "_fontFamily": "Arial",
  323. "_lineHeight": 30,
  324. "_overflow": 0,
  325. "_enableWrapText": true,
  326. "_font": null,
  327. "_isSystemFontUsed": true,
  328. "_spacingX": 0,
  329. "_isItalic": false,
  330. "_isBold": false,
  331. "_isUnderline": false,
  332. "_underlineHeight": 2,
  333. "_cacheMode": 1,
  334. "_enableOutline": false,
  335. "_outlineColor": {
  336. "__type__": "cc.Color",
  337. "r": 0,
  338. "g": 0,
  339. "b": 0,
  340. "a": 255
  341. },
  342. "_outlineWidth": 2,
  343. "_enableShadow": false,
  344. "_shadowColor": {
  345. "__type__": "cc.Color",
  346. "r": 0,
  347. "g": 0,
  348. "b": 0,
  349. "a": 255
  350. },
  351. "_shadowOffset": {
  352. "__type__": "cc.Vec2",
  353. "x": 2,
  354. "y": 2
  355. },
  356. "_shadowBlur": 2,
  357. "_id": ""
  358. },
  359. {
  360. "__type__": "cc.CompPrefabInfo",
  361. "fileId": "22tWj3ZwlAfLB2YxGbTqrd"
  362. },
  363. {
  364. "__type__": "cc.PrefabInfo",
  365. "root": {
  366. "__id__": 1
  367. },
  368. "asset": {
  369. "__id__": 0
  370. },
  371. "fileId": "35/nbm+5dChaiXvG9KhX71",
  372. "instance": null,
  373. "targetOverrides": null,
  374. "nestedPrefabInstanceRoots": null
  375. },
  376. {
  377. "__type__": "cc.Node",
  378. "_name": "login_frame_01",
  379. "_objFlags": 0,
  380. "__editorExtras__": {},
  381. "_parent": {
  382. "__id__": 1
  383. },
  384. "_children": [],
  385. "_active": false,
  386. "_components": [
  387. {
  388. "__id__": 15
  389. },
  390. {
  391. "__id__": 17
  392. }
  393. ],
  394. "_prefab": {
  395. "__id__": 19
  396. },
  397. "_lpos": {
  398. "__type__": "cc.Vec3",
  399. "x": 0,
  400. "y": -343.675,
  401. "z": 0
  402. },
  403. "_lrot": {
  404. "__type__": "cc.Quat",
  405. "x": 0,
  406. "y": 0,
  407. "z": 0,
  408. "w": 1
  409. },
  410. "_lscale": {
  411. "__type__": "cc.Vec3",
  412. "x": 1,
  413. "y": 1,
  414. "z": 1
  415. },
  416. "_mobility": 0,
  417. "_layer": 33554432,
  418. "_euler": {
  419. "__type__": "cc.Vec3",
  420. "x": 0,
  421. "y": 0,
  422. "z": 0
  423. },
  424. "_id": ""
  425. },
  426. {
  427. "__type__": "cc.UITransform",
  428. "_name": "",
  429. "_objFlags": 0,
  430. "__editorExtras__": {},
  431. "node": {
  432. "__id__": 14
  433. },
  434. "_enabled": true,
  435. "__prefab": {
  436. "__id__": 16
  437. },
  438. "_contentSize": {
  439. "__type__": "cc.Size",
  440. "width": 664,
  441. "height": 403
  442. },
  443. "_anchorPoint": {
  444. "__type__": "cc.Vec2",
  445. "x": 0.5,
  446. "y": 0.5
  447. },
  448. "_id": ""
  449. },
  450. {
  451. "__type__": "cc.CompPrefabInfo",
  452. "fileId": "ecT2n44hhKbJfgSRHNjgQj"
  453. },
  454. {
  455. "__type__": "cc.Sprite",
  456. "_name": "",
  457. "_objFlags": 0,
  458. "__editorExtras__": {},
  459. "node": {
  460. "__id__": 14
  461. },
  462. "_enabled": true,
  463. "__prefab": {
  464. "__id__": 18
  465. },
  466. "_customMaterial": null,
  467. "_srcBlendFactor": 2,
  468. "_dstBlendFactor": 4,
  469. "_color": {
  470. "__type__": "cc.Color",
  471. "r": 255,
  472. "g": 255,
  473. "b": 255,
  474. "a": 191
  475. },
  476. "_spriteFrame": null,
  477. "_type": 0,
  478. "_fillType": 0,
  479. "_sizeMode": 1,
  480. "_fillCenter": {
  481. "__type__": "cc.Vec2",
  482. "x": 0,
  483. "y": 0
  484. },
  485. "_fillStart": 0,
  486. "_fillRange": 0,
  487. "_isTrimmedMode": true,
  488. "_useGrayscale": false,
  489. "_atlas": null,
  490. "_id": ""
  491. },
  492. {
  493. "__type__": "cc.CompPrefabInfo",
  494. "fileId": "66fyAvMm9OkKwQd0GrblfF"
  495. },
  496. {
  497. "__type__": "cc.PrefabInfo",
  498. "root": {
  499. "__id__": 1
  500. },
  501. "asset": {
  502. "__id__": 0
  503. },
  504. "fileId": "4fJJaxaTdGs6B22i99dGRk",
  505. "instance": null,
  506. "targetOverrides": null,
  507. "nestedPrefabInstanceRoots": null
  508. },
  509. {
  510. "__type__": "cc.Node",
  511. "_name": "select_server",
  512. "_objFlags": 0,
  513. "__editorExtras__": {},
  514. "_parent": {
  515. "__id__": 1
  516. },
  517. "_children": [
  518. {
  519. "__id__": 21
  520. },
  521. {
  522. "__id__": 27
  523. },
  524. {
  525. "__id__": 33
  526. }
  527. ],
  528. "_active": false,
  529. "_components": [
  530. {
  531. "__id__": 48
  532. },
  533. {
  534. "__id__": 50
  535. },
  536. {
  537. "__id__": 52
  538. }
  539. ],
  540. "_prefab": {
  541. "__id__": 55
  542. },
  543. "_lpos": {
  544. "__type__": "cc.Vec3",
  545. "x": 0,
  546. "y": -38.537000000000035,
  547. "z": 0
  548. },
  549. "_lrot": {
  550. "__type__": "cc.Quat",
  551. "x": 0,
  552. "y": 0,
  553. "z": 0,
  554. "w": 1
  555. },
  556. "_lscale": {
  557. "__type__": "cc.Vec3",
  558. "x": 1,
  559. "y": 1,
  560. "z": 1
  561. },
  562. "_mobility": 0,
  563. "_layer": 33554432,
  564. "_euler": {
  565. "__type__": "cc.Vec3",
  566. "x": 0,
  567. "y": 0,
  568. "z": 0
  569. },
  570. "_id": ""
  571. },
  572. {
  573. "__type__": "cc.Node",
  574. "_name": "server_name",
  575. "_objFlags": 0,
  576. "__editorExtras__": {},
  577. "_parent": {
  578. "__id__": 20
  579. },
  580. "_children": [],
  581. "_active": true,
  582. "_components": [
  583. {
  584. "__id__": 22
  585. },
  586. {
  587. "__id__": 24
  588. }
  589. ],
  590. "_prefab": {
  591. "__id__": 26
  592. },
  593. "_lpos": {
  594. "__type__": "cc.Vec3",
  595. "x": 0,
  596. "y": 0,
  597. "z": 0
  598. },
  599. "_lrot": {
  600. "__type__": "cc.Quat",
  601. "x": 0,
  602. "y": 0,
  603. "z": 0,
  604. "w": 1
  605. },
  606. "_lscale": {
  607. "__type__": "cc.Vec3",
  608. "x": 1,
  609. "y": 1,
  610. "z": 1
  611. },
  612. "_mobility": 0,
  613. "_layer": 33554432,
  614. "_euler": {
  615. "__type__": "cc.Vec3",
  616. "x": 0,
  617. "y": 0,
  618. "z": 0
  619. },
  620. "_id": ""
  621. },
  622. {
  623. "__type__": "cc.UITransform",
  624. "_name": "",
  625. "_objFlags": 0,
  626. "__editorExtras__": {},
  627. "node": {
  628. "__id__": 21
  629. },
  630. "_enabled": true,
  631. "__prefab": {
  632. "__id__": 23
  633. },
  634. "_contentSize": {
  635. "__type__": "cc.Size",
  636. "width": 100.09765625,
  637. "height": 50.4
  638. },
  639. "_anchorPoint": {
  640. "__type__": "cc.Vec2",
  641. "x": 0.5,
  642. "y": 0.5
  643. },
  644. "_id": ""
  645. },
  646. {
  647. "__type__": "cc.CompPrefabInfo",
  648. "fileId": "28/R0QA4FMy7K3xL65wk5d"
  649. },
  650. {
  651. "__type__": "cc.Label",
  652. "_name": "",
  653. "_objFlags": 0,
  654. "__editorExtras__": {},
  655. "node": {
  656. "__id__": 21
  657. },
  658. "_enabled": true,
  659. "__prefab": {
  660. "__id__": 25
  661. },
  662. "_customMaterial": null,
  663. "_srcBlendFactor": 2,
  664. "_dstBlendFactor": 4,
  665. "_color": {
  666. "__type__": "cc.Color",
  667. "r": 255,
  668. "g": 255,
  669. "b": 255,
  670. "a": 255
  671. },
  672. "_string": "998fu",
  673. "_horizontalAlign": 1,
  674. "_verticalAlign": 1,
  675. "_actualFontSize": 40,
  676. "_fontSize": 40,
  677. "_fontFamily": "Arial",
  678. "_lineHeight": 40,
  679. "_overflow": 0,
  680. "_enableWrapText": true,
  681. "_font": null,
  682. "_isSystemFontUsed": true,
  683. "_spacingX": 0,
  684. "_isItalic": false,
  685. "_isBold": false,
  686. "_isUnderline": false,
  687. "_underlineHeight": 2,
  688. "_cacheMode": 0,
  689. "_enableOutline": false,
  690. "_outlineColor": {
  691. "__type__": "cc.Color",
  692. "r": 0,
  693. "g": 0,
  694. "b": 0,
  695. "a": 255
  696. },
  697. "_outlineWidth": 2,
  698. "_enableShadow": false,
  699. "_shadowColor": {
  700. "__type__": "cc.Color",
  701. "r": 0,
  702. "g": 0,
  703. "b": 0,
  704. "a": 255
  705. },
  706. "_shadowOffset": {
  707. "__type__": "cc.Vec2",
  708. "x": 2,
  709. "y": 2
  710. },
  711. "_shadowBlur": 2,
  712. "_id": ""
  713. },
  714. {
  715. "__type__": "cc.CompPrefabInfo",
  716. "fileId": "78yqzh+SNB6bGHjrSCb1o4"
  717. },
  718. {
  719. "__type__": "cc.PrefabInfo",
  720. "root": {
  721. "__id__": 1
  722. },
  723. "asset": {
  724. "__id__": 0
  725. },
  726. "fileId": "619x9Dd91C9a7AJ2+LkvY6",
  727. "instance": null,
  728. "targetOverrides": null,
  729. "nestedPrefabInstanceRoots": null
  730. },
  731. {
  732. "__type__": "cc.Node",
  733. "_name": "server_state",
  734. "_objFlags": 0,
  735. "__editorExtras__": {},
  736. "_parent": {
  737. "__id__": 20
  738. },
  739. "_children": [],
  740. "_active": true,
  741. "_components": [
  742. {
  743. "__id__": 28
  744. },
  745. {
  746. "__id__": 30
  747. }
  748. ],
  749. "_prefab": {
  750. "__id__": 32
  751. },
  752. "_lpos": {
  753. "__type__": "cc.Vec3",
  754. "x": -132.751,
  755. "y": 0,
  756. "z": 0
  757. },
  758. "_lrot": {
  759. "__type__": "cc.Quat",
  760. "x": 0,
  761. "y": 0,
  762. "z": 0,
  763. "w": 1
  764. },
  765. "_lscale": {
  766. "__type__": "cc.Vec3",
  767. "x": 1,
  768. "y": 1,
  769. "z": 1
  770. },
  771. "_mobility": 0,
  772. "_layer": 33554432,
  773. "_euler": {
  774. "__type__": "cc.Vec3",
  775. "x": 0,
  776. "y": 0,
  777. "z": 0
  778. },
  779. "_id": ""
  780. },
  781. {
  782. "__type__": "cc.UITransform",
  783. "_name": "",
  784. "_objFlags": 0,
  785. "__editorExtras__": {},
  786. "node": {
  787. "__id__": 27
  788. },
  789. "_enabled": true,
  790. "__prefab": {
  791. "__id__": 29
  792. },
  793. "_contentSize": {
  794. "__type__": "cc.Size",
  795. "width": 40,
  796. "height": 50.4
  797. },
  798. "_anchorPoint": {
  799. "__type__": "cc.Vec2",
  800. "x": 0.5,
  801. "y": 0.5
  802. },
  803. "_id": ""
  804. },
  805. {
  806. "__type__": "cc.CompPrefabInfo",
  807. "fileId": "11cSXFwz5MkaqIup4xIMjB"
  808. },
  809. {
  810. "__type__": "cc.Label",
  811. "_name": "",
  812. "_objFlags": 0,
  813. "__editorExtras__": {},
  814. "node": {
  815. "__id__": 27
  816. },
  817. "_enabled": true,
  818. "__prefab": {
  819. "__id__": 31
  820. },
  821. "_customMaterial": null,
  822. "_srcBlendFactor": 2,
  823. "_dstBlendFactor": 4,
  824. "_color": {
  825. "__type__": "cc.Color",
  826. "r": 255,
  827. "g": 255,
  828. "b": 255,
  829. "a": 255
  830. },
  831. "_string": "火爆",
  832. "_horizontalAlign": 1,
  833. "_verticalAlign": 1,
  834. "_actualFontSize": 20,
  835. "_fontSize": 20,
  836. "_fontFamily": "Arial",
  837. "_lineHeight": 40,
  838. "_overflow": 0,
  839. "_enableWrapText": true,
  840. "_font": null,
  841. "_isSystemFontUsed": true,
  842. "_spacingX": 0,
  843. "_isItalic": false,
  844. "_isBold": false,
  845. "_isUnderline": false,
  846. "_underlineHeight": 2,
  847. "_cacheMode": 0,
  848. "_enableOutline": false,
  849. "_outlineColor": {
  850. "__type__": "cc.Color",
  851. "r": 0,
  852. "g": 0,
  853. "b": 0,
  854. "a": 255
  855. },
  856. "_outlineWidth": 2,
  857. "_enableShadow": false,
  858. "_shadowColor": {
  859. "__type__": "cc.Color",
  860. "r": 0,
  861. "g": 0,
  862. "b": 0,
  863. "a": 255
  864. },
  865. "_shadowOffset": {
  866. "__type__": "cc.Vec2",
  867. "x": 2,
  868. "y": 2
  869. },
  870. "_shadowBlur": 2,
  871. "_id": ""
  872. },
  873. {
  874. "__type__": "cc.CompPrefabInfo",
  875. "fileId": "04AXX2AH5HVavoAhqmt5Ib"
  876. },
  877. {
  878. "__type__": "cc.PrefabInfo",
  879. "root": {
  880. "__id__": 1
  881. },
  882. "asset": {
  883. "__id__": 0
  884. },
  885. "fileId": "24buikytJDMKDM3VjXfPfX",
  886. "instance": null,
  887. "targetOverrides": null,
  888. "nestedPrefabInstanceRoots": null
  889. },
  890. {
  891. "__type__": "cc.Node",
  892. "_name": "enter_button",
  893. "_objFlags": 0,
  894. "__editorExtras__": {},
  895. "_parent": {
  896. "__id__": 20
  897. },
  898. "_children": [
  899. {
  900. "__id__": 34
  901. }
  902. ],
  903. "_active": true,
  904. "_components": [
  905. {
  906. "__id__": 40
  907. },
  908. {
  909. "__id__": 42
  910. },
  911. {
  912. "__id__": 44
  913. }
  914. ],
  915. "_prefab": {
  916. "__id__": 47
  917. },
  918. "_lpos": {
  919. "__type__": "cc.Vec3",
  920. "x": 0,
  921. "y": -436.60299999999995,
  922. "z": 0
  923. },
  924. "_lrot": {
  925. "__type__": "cc.Quat",
  926. "x": 0,
  927. "y": 0,
  928. "z": 0,
  929. "w": 1
  930. },
  931. "_lscale": {
  932. "__type__": "cc.Vec3",
  933. "x": 1,
  934. "y": 1,
  935. "z": 1
  936. },
  937. "_mobility": 0,
  938. "_layer": 33554432,
  939. "_euler": {
  940. "__type__": "cc.Vec3",
  941. "x": 0,
  942. "y": 0,
  943. "z": 0
  944. },
  945. "_id": ""
  946. },
  947. {
  948. "__type__": "cc.Node",
  949. "_name": "Label",
  950. "_objFlags": 0,
  951. "__editorExtras__": {},
  952. "_parent": {
  953. "__id__": 33
  954. },
  955. "_children": [],
  956. "_active": true,
  957. "_components": [
  958. {
  959. "__id__": 35
  960. },
  961. {
  962. "__id__": 37
  963. }
  964. ],
  965. "_prefab": {
  966. "__id__": 39
  967. },
  968. "_lpos": {
  969. "__type__": "cc.Vec3",
  970. "x": 0,
  971. "y": 0,
  972. "z": 0
  973. },
  974. "_lrot": {
  975. "__type__": "cc.Quat",
  976. "x": 0,
  977. "y": 0,
  978. "z": 0,
  979. "w": 1
  980. },
  981. "_lscale": {
  982. "__type__": "cc.Vec3",
  983. "x": 1,
  984. "y": 1,
  985. "z": 1
  986. },
  987. "_mobility": 0,
  988. "_layer": 33554432,
  989. "_euler": {
  990. "__type__": "cc.Vec3",
  991. "x": 0,
  992. "y": 0,
  993. "z": 0
  994. },
  995. "_id": ""
  996. },
  997. {
  998. "__type__": "cc.UITransform",
  999. "_name": "",
  1000. "_objFlags": 0,
  1001. "__editorExtras__": {},
  1002. "node": {
  1003. "__id__": 34
  1004. },
  1005. "_enabled": true,
  1006. "__prefab": {
  1007. "__id__": 36
  1008. },
  1009. "_contentSize": {
  1010. "__type__": "cc.Size",
  1011. "width": 80,
  1012. "height": 50.4
  1013. },
  1014. "_anchorPoint": {
  1015. "__type__": "cc.Vec2",
  1016. "x": 0.5,
  1017. "y": 0.5
  1018. },
  1019. "_id": ""
  1020. },
  1021. {
  1022. "__type__": "cc.CompPrefabInfo",
  1023. "fileId": "617cr35KtPoIWuGUPUBWTA"
  1024. },
  1025. {
  1026. "__type__": "cc.Label",
  1027. "_name": "",
  1028. "_objFlags": 0,
  1029. "__editorExtras__": {},
  1030. "node": {
  1031. "__id__": 34
  1032. },
  1033. "_enabled": true,
  1034. "__prefab": {
  1035. "__id__": 38
  1036. },
  1037. "_customMaterial": null,
  1038. "_srcBlendFactor": 2,
  1039. "_dstBlendFactor": 4,
  1040. "_color": {
  1041. "__type__": "cc.Color",
  1042. "r": 255,
  1043. "g": 255,
  1044. "b": 255,
  1045. "a": 255
  1046. },
  1047. "_string": "进入",
  1048. "_horizontalAlign": 1,
  1049. "_verticalAlign": 1,
  1050. "_actualFontSize": 40,
  1051. "_fontSize": 40,
  1052. "_fontFamily": "Arial",
  1053. "_lineHeight": 40,
  1054. "_overflow": 0,
  1055. "_enableWrapText": true,
  1056. "_font": null,
  1057. "_isSystemFontUsed": true,
  1058. "_spacingX": 0,
  1059. "_isItalic": false,
  1060. "_isBold": false,
  1061. "_isUnderline": false,
  1062. "_underlineHeight": 2,
  1063. "_cacheMode": 0,
  1064. "_enableOutline": false,
  1065. "_outlineColor": {
  1066. "__type__": "cc.Color",
  1067. "r": 0,
  1068. "g": 0,
  1069. "b": 0,
  1070. "a": 255
  1071. },
  1072. "_outlineWidth": 2,
  1073. "_enableShadow": false,
  1074. "_shadowColor": {
  1075. "__type__": "cc.Color",
  1076. "r": 0,
  1077. "g": 0,
  1078. "b": 0,
  1079. "a": 255
  1080. },
  1081. "_shadowOffset": {
  1082. "__type__": "cc.Vec2",
  1083. "x": 2,
  1084. "y": 2
  1085. },
  1086. "_shadowBlur": 2,
  1087. "_id": ""
  1088. },
  1089. {
  1090. "__type__": "cc.CompPrefabInfo",
  1091. "fileId": "a98DsCeXdE7ZQZEOxWGrW5"
  1092. },
  1093. {
  1094. "__type__": "cc.PrefabInfo",
  1095. "root": {
  1096. "__id__": 1
  1097. },
  1098. "asset": {
  1099. "__id__": 0
  1100. },
  1101. "fileId": "b9qQb/OFBI8Zby9T/bhENX",
  1102. "instance": null,
  1103. "targetOverrides": null,
  1104. "nestedPrefabInstanceRoots": null
  1105. },
  1106. {
  1107. "__type__": "cc.UITransform",
  1108. "_name": "",
  1109. "_objFlags": 0,
  1110. "__editorExtras__": {},
  1111. "node": {
  1112. "__id__": 33
  1113. },
  1114. "_enabled": true,
  1115. "__prefab": {
  1116. "__id__": 41
  1117. },
  1118. "_contentSize": {
  1119. "__type__": "cc.Size",
  1120. "width": 191,
  1121. "height": 92
  1122. },
  1123. "_anchorPoint": {
  1124. "__type__": "cc.Vec2",
  1125. "x": 0.5,
  1126. "y": 0.5
  1127. },
  1128. "_id": ""
  1129. },
  1130. {
  1131. "__type__": "cc.CompPrefabInfo",
  1132. "fileId": "ba8FCYwupDO6XDZ3pvsRCX"
  1133. },
  1134. {
  1135. "__type__": "cc.Sprite",
  1136. "_name": "",
  1137. "_objFlags": 0,
  1138. "__editorExtras__": {},
  1139. "node": {
  1140. "__id__": 33
  1141. },
  1142. "_enabled": true,
  1143. "__prefab": {
  1144. "__id__": 43
  1145. },
  1146. "_customMaterial": null,
  1147. "_srcBlendFactor": 2,
  1148. "_dstBlendFactor": 4,
  1149. "_color": {
  1150. "__type__": "cc.Color",
  1151. "r": 255,
  1152. "g": 255,
  1153. "b": 255,
  1154. "a": 255
  1155. },
  1156. "_spriteFrame": {
  1157. "__uuid__": "d21239c5-e6e2-4988-b8de-ee21c5ee601b@f9941",
  1158. "__expectedType__": "cc.SpriteFrame"
  1159. },
  1160. "_type": 0,
  1161. "_fillType": 0,
  1162. "_sizeMode": 0,
  1163. "_fillCenter": {
  1164. "__type__": "cc.Vec2",
  1165. "x": 0,
  1166. "y": 0
  1167. },
  1168. "_fillStart": 0,
  1169. "_fillRange": 0,
  1170. "_isTrimmedMode": true,
  1171. "_useGrayscale": false,
  1172. "_atlas": null,
  1173. "_id": ""
  1174. },
  1175. {
  1176. "__type__": "cc.CompPrefabInfo",
  1177. "fileId": "b6jCmBUEFBAKse3zT6H2Cb"
  1178. },
  1179. {
  1180. "__type__": "cc.Button",
  1181. "_name": "",
  1182. "_objFlags": 0,
  1183. "__editorExtras__": {},
  1184. "node": {
  1185. "__id__": 33
  1186. },
  1187. "_enabled": true,
  1188. "__prefab": {
  1189. "__id__": 45
  1190. },
  1191. "clickEvents": [
  1192. {
  1193. "__id__": 46
  1194. }
  1195. ],
  1196. "_interactable": true,
  1197. "_transition": 3,
  1198. "_normalColor": {
  1199. "__type__": "cc.Color",
  1200. "r": 255,
  1201. "g": 255,
  1202. "b": 255,
  1203. "a": 255
  1204. },
  1205. "_hoverColor": {
  1206. "__type__": "cc.Color",
  1207. "r": 211,
  1208. "g": 211,
  1209. "b": 211,
  1210. "a": 255
  1211. },
  1212. "_pressedColor": {
  1213. "__type__": "cc.Color",
  1214. "r": 255,
  1215. "g": 255,
  1216. "b": 255,
  1217. "a": 255
  1218. },
  1219. "_disabledColor": {
  1220. "__type__": "cc.Color",
  1221. "r": 124,
  1222. "g": 124,
  1223. "b": 124,
  1224. "a": 255
  1225. },
  1226. "_normalSprite": null,
  1227. "_hoverSprite": null,
  1228. "_pressedSprite": null,
  1229. "_disabledSprite": null,
  1230. "_duration": 0.1,
  1231. "_zoomScale": 0.9,
  1232. "_target": null,
  1233. "_id": ""
  1234. },
  1235. {
  1236. "__type__": "cc.CompPrefabInfo",
  1237. "fileId": "7341rv4UZOUZXXd81h5CEO"
  1238. },
  1239. {
  1240. "__type__": "cc.ClickEvent",
  1241. "target": {
  1242. "__id__": 1
  1243. },
  1244. "component": "",
  1245. "_componentId": "366deUKKoRE8qWRNHqGlwi4",
  1246. "handler": "onEnter",
  1247. "customEventData": ""
  1248. },
  1249. {
  1250. "__type__": "cc.PrefabInfo",
  1251. "root": {
  1252. "__id__": 1
  1253. },
  1254. "asset": {
  1255. "__id__": 0
  1256. },
  1257. "fileId": "a5iN2m5f1CCLXQolfnpy8i",
  1258. "instance": null,
  1259. "targetOverrides": null,
  1260. "nestedPrefabInstanceRoots": null
  1261. },
  1262. {
  1263. "__type__": "cc.UITransform",
  1264. "_name": "",
  1265. "_objFlags": 0,
  1266. "__editorExtras__": {},
  1267. "node": {
  1268. "__id__": 20
  1269. },
  1270. "_enabled": true,
  1271. "__prefab": {
  1272. "__id__": 49
  1273. },
  1274. "_contentSize": {
  1275. "__type__": "cc.Size",
  1276. "width": 400,
  1277. "height": 92
  1278. },
  1279. "_anchorPoint": {
  1280. "__type__": "cc.Vec2",
  1281. "x": 0.5,
  1282. "y": 0.5
  1283. },
  1284. "_id": ""
  1285. },
  1286. {
  1287. "__type__": "cc.CompPrefabInfo",
  1288. "fileId": "04XgmChbhOBbm0hQ5EnyUz"
  1289. },
  1290. {
  1291. "__type__": "cc.Sprite",
  1292. "_name": "",
  1293. "_objFlags": 0,
  1294. "__editorExtras__": {},
  1295. "node": {
  1296. "__id__": 20
  1297. },
  1298. "_enabled": true,
  1299. "__prefab": {
  1300. "__id__": 51
  1301. },
  1302. "_customMaterial": null,
  1303. "_srcBlendFactor": 2,
  1304. "_dstBlendFactor": 4,
  1305. "_color": {
  1306. "__type__": "cc.Color",
  1307. "r": 255,
  1308. "g": 255,
  1309. "b": 255,
  1310. "a": 255
  1311. },
  1312. "_spriteFrame": {
  1313. "__uuid__": "d21239c5-e6e2-4988-b8de-ee21c5ee601b@f9941",
  1314. "__expectedType__": "cc.SpriteFrame"
  1315. },
  1316. "_type": 0,
  1317. "_fillType": 0,
  1318. "_sizeMode": 0,
  1319. "_fillCenter": {
  1320. "__type__": "cc.Vec2",
  1321. "x": 0,
  1322. "y": 0
  1323. },
  1324. "_fillStart": 0,
  1325. "_fillRange": 0,
  1326. "_isTrimmedMode": true,
  1327. "_useGrayscale": false,
  1328. "_atlas": null,
  1329. "_id": ""
  1330. },
  1331. {
  1332. "__type__": "cc.CompPrefabInfo",
  1333. "fileId": "56aLtuEcZOuI6Aq8UIyOf6"
  1334. },
  1335. {
  1336. "__type__": "cc.Button",
  1337. "_name": "",
  1338. "_objFlags": 0,
  1339. "__editorExtras__": {},
  1340. "node": {
  1341. "__id__": 20
  1342. },
  1343. "_enabled": true,
  1344. "__prefab": {
  1345. "__id__": 53
  1346. },
  1347. "clickEvents": [
  1348. {
  1349. "__id__": 54
  1350. }
  1351. ],
  1352. "_interactable": true,
  1353. "_transition": 3,
  1354. "_normalColor": {
  1355. "__type__": "cc.Color",
  1356. "r": 255,
  1357. "g": 255,
  1358. "b": 255,
  1359. "a": 255
  1360. },
  1361. "_hoverColor": {
  1362. "__type__": "cc.Color",
  1363. "r": 211,
  1364. "g": 211,
  1365. "b": 211,
  1366. "a": 255
  1367. },
  1368. "_pressedColor": {
  1369. "__type__": "cc.Color",
  1370. "r": 255,
  1371. "g": 255,
  1372. "b": 255,
  1373. "a": 255
  1374. },
  1375. "_disabledColor": {
  1376. "__type__": "cc.Color",
  1377. "r": 124,
  1378. "g": 124,
  1379. "b": 124,
  1380. "a": 255
  1381. },
  1382. "_normalSprite": null,
  1383. "_hoverSprite": null,
  1384. "_pressedSprite": null,
  1385. "_disabledSprite": null,
  1386. "_duration": 0.1,
  1387. "_zoomScale": 0.9,
  1388. "_target": null,
  1389. "_id": ""
  1390. },
  1391. {
  1392. "__type__": "cc.CompPrefabInfo",
  1393. "fileId": "d0WLt6pvZOAZDaUf6eLdhb"
  1394. },
  1395. {
  1396. "__type__": "cc.ClickEvent",
  1397. "target": {
  1398. "__id__": 1
  1399. },
  1400. "component": "",
  1401. "_componentId": "366deUKKoRE8qWRNHqGlwi4",
  1402. "handler": "onTouchButton",
  1403. "customEventData": ""
  1404. },
  1405. {
  1406. "__type__": "cc.PrefabInfo",
  1407. "root": {
  1408. "__id__": 1
  1409. },
  1410. "asset": {
  1411. "__id__": 0
  1412. },
  1413. "fileId": "8cRnMftdVGTINl3/mLtGgT",
  1414. "instance": null,
  1415. "targetOverrides": null,
  1416. "nestedPrefabInstanceRoots": null
  1417. },
  1418. {
  1419. "__type__": "cc.Node",
  1420. "_name": "login_root",
  1421. "_objFlags": 0,
  1422. "__editorExtras__": {},
  1423. "_parent": {
  1424. "__id__": 1
  1425. },
  1426. "_children": [
  1427. {
  1428. "__id__": 57
  1429. },
  1430. {
  1431. "__id__": 79
  1432. },
  1433. {
  1434. "__id__": 91
  1435. }
  1436. ],
  1437. "_active": true,
  1438. "_components": [
  1439. {
  1440. "__id__": 106
  1441. }
  1442. ],
  1443. "_prefab": {
  1444. "__id__": 108
  1445. },
  1446. "_lpos": {
  1447. "__type__": "cc.Vec3",
  1448. "x": 0,
  1449. "y": -318.326,
  1450. "z": 0
  1451. },
  1452. "_lrot": {
  1453. "__type__": "cc.Quat",
  1454. "x": 0,
  1455. "y": 0,
  1456. "z": 0,
  1457. "w": 1
  1458. },
  1459. "_lscale": {
  1460. "__type__": "cc.Vec3",
  1461. "x": 1,
  1462. "y": 1,
  1463. "z": 1
  1464. },
  1465. "_mobility": 0,
  1466. "_layer": 33554432,
  1467. "_euler": {
  1468. "__type__": "cc.Vec3",
  1469. "x": 0,
  1470. "y": 0,
  1471. "z": 0
  1472. },
  1473. "_id": ""
  1474. },
  1475. {
  1476. "__type__": "cc.Node",
  1477. "_name": "user_name",
  1478. "_objFlags": 0,
  1479. "__editorExtras__": {},
  1480. "_parent": {
  1481. "__id__": 56
  1482. },
  1483. "_children": [
  1484. {
  1485. "__id__": 58
  1486. },
  1487. {
  1488. "__id__": 64
  1489. }
  1490. ],
  1491. "_active": true,
  1492. "_components": [
  1493. {
  1494. "__id__": 70
  1495. },
  1496. {
  1497. "__id__": 72
  1498. },
  1499. {
  1500. "__id__": 74
  1501. }
  1502. ],
  1503. "_prefab": {
  1504. "__id__": 78
  1505. },
  1506. "_lpos": {
  1507. "__type__": "cc.Vec3",
  1508. "x": 0,
  1509. "y": -16.630999999999972,
  1510. "z": 0
  1511. },
  1512. "_lrot": {
  1513. "__type__": "cc.Quat",
  1514. "x": 0,
  1515. "y": 0,
  1516. "z": 0,
  1517. "w": 1
  1518. },
  1519. "_lscale": {
  1520. "__type__": "cc.Vec3",
  1521. "x": 1,
  1522. "y": 1,
  1523. "z": 1
  1524. },
  1525. "_mobility": 0,
  1526. "_layer": 33554432,
  1527. "_euler": {
  1528. "__type__": "cc.Vec3",
  1529. "x": 0,
  1530. "y": 0,
  1531. "z": 0
  1532. },
  1533. "_id": ""
  1534. },
  1535. {
  1536. "__type__": "cc.Node",
  1537. "_name": "TEXT_LABEL",
  1538. "_objFlags": 0,
  1539. "__editorExtras__": {},
  1540. "_parent": {
  1541. "__id__": 57
  1542. },
  1543. "_children": [],
  1544. "_active": false,
  1545. "_components": [
  1546. {
  1547. "__id__": 59
  1548. },
  1549. {
  1550. "__id__": 61
  1551. }
  1552. ],
  1553. "_prefab": {
  1554. "__id__": 63
  1555. },
  1556. "_lpos": {
  1557. "__type__": "cc.Vec3",
  1558. "x": -218.5,
  1559. "y": 39,
  1560. "z": 0
  1561. },
  1562. "_lrot": {
  1563. "__type__": "cc.Quat",
  1564. "x": 0,
  1565. "y": 0,
  1566. "z": 0,
  1567. "w": 1
  1568. },
  1569. "_lscale": {
  1570. "__type__": "cc.Vec3",
  1571. "x": 1,
  1572. "y": 1,
  1573. "z": 1
  1574. },
  1575. "_mobility": 0,
  1576. "_layer": 33554432,
  1577. "_euler": {
  1578. "__type__": "cc.Vec3",
  1579. "x": 0,
  1580. "y": 0,
  1581. "z": 0
  1582. },
  1583. "_id": ""
  1584. },
  1585. {
  1586. "__type__": "cc.UITransform",
  1587. "_name": "",
  1588. "_objFlags": 0,
  1589. "__editorExtras__": {},
  1590. "node": {
  1591. "__id__": 58
  1592. },
  1593. "_enabled": true,
  1594. "__prefab": {
  1595. "__id__": 60
  1596. },
  1597. "_contentSize": {
  1598. "__type__": "cc.Size",
  1599. "width": 439,
  1600. "height": 78
  1601. },
  1602. "_anchorPoint": {
  1603. "__type__": "cc.Vec2",
  1604. "x": 0,
  1605. "y": 1
  1606. },
  1607. "_id": ""
  1608. },
  1609. {
  1610. "__type__": "cc.CompPrefabInfo",
  1611. "fileId": "c6y1oe2tJIubmIJ0nZtjZC"
  1612. },
  1613. {
  1614. "__type__": "cc.Label",
  1615. "_name": "",
  1616. "_objFlags": 0,
  1617. "__editorExtras__": {},
  1618. "node": {
  1619. "__id__": 58
  1620. },
  1621. "_enabled": true,
  1622. "__prefab": {
  1623. "__id__": 62
  1624. },
  1625. "_customMaterial": null,
  1626. "_srcBlendFactor": 2,
  1627. "_dstBlendFactor": 4,
  1628. "_color": {
  1629. "__type__": "cc.Color",
  1630. "r": 94,
  1631. "g": 44,
  1632. "b": 6,
  1633. "a": 255
  1634. },
  1635. "_string": "",
  1636. "_horizontalAlign": 1,
  1637. "_verticalAlign": 1,
  1638. "_actualFontSize": 40,
  1639. "_fontSize": 40,
  1640. "_fontFamily": "Arial",
  1641. "_lineHeight": 40,
  1642. "_overflow": 1,
  1643. "_enableWrapText": false,
  1644. "_font": null,
  1645. "_isSystemFontUsed": true,
  1646. "_spacingX": 0,
  1647. "_isItalic": false,
  1648. "_isBold": true,
  1649. "_isUnderline": false,
  1650. "_underlineHeight": 2,
  1651. "_cacheMode": 0,
  1652. "_enableOutline": false,
  1653. "_outlineColor": {
  1654. "__type__": "cc.Color",
  1655. "r": 0,
  1656. "g": 0,
  1657. "b": 0,
  1658. "a": 255
  1659. },
  1660. "_outlineWidth": 2,
  1661. "_enableShadow": false,
  1662. "_shadowColor": {
  1663. "__type__": "cc.Color",
  1664. "r": 0,
  1665. "g": 0,
  1666. "b": 0,
  1667. "a": 255
  1668. },
  1669. "_shadowOffset": {
  1670. "__type__": "cc.Vec2",
  1671. "x": 2,
  1672. "y": 2
  1673. },
  1674. "_shadowBlur": 2,
  1675. "_id": ""
  1676. },
  1677. {
  1678. "__type__": "cc.CompPrefabInfo",
  1679. "fileId": "4el04w5L1F5ZbxG8dNkFkn"
  1680. },
  1681. {
  1682. "__type__": "cc.PrefabInfo",
  1683. "root": {
  1684. "__id__": 1
  1685. },
  1686. "asset": {
  1687. "__id__": 0
  1688. },
  1689. "fileId": "2310cho/lBEKQVMZFy5va1",
  1690. "instance": null,
  1691. "targetOverrides": null,
  1692. "nestedPrefabInstanceRoots": null
  1693. },
  1694. {
  1695. "__type__": "cc.Node",
  1696. "_name": "PLACEHOLDER_LABEL",
  1697. "_objFlags": 0,
  1698. "__editorExtras__": {},
  1699. "_parent": {
  1700. "__id__": 57
  1701. },
  1702. "_children": [],
  1703. "_active": true,
  1704. "_components": [
  1705. {
  1706. "__id__": 65
  1707. },
  1708. {
  1709. "__id__": 67
  1710. }
  1711. ],
  1712. "_prefab": {
  1713. "__id__": 69
  1714. },
  1715. "_lpos": {
  1716. "__type__": "cc.Vec3",
  1717. "x": -218.5,
  1718. "y": 39,
  1719. "z": 0
  1720. },
  1721. "_lrot": {
  1722. "__type__": "cc.Quat",
  1723. "x": 0,
  1724. "y": 0,
  1725. "z": 0,
  1726. "w": 1
  1727. },
  1728. "_lscale": {
  1729. "__type__": "cc.Vec3",
  1730. "x": 1,
  1731. "y": 1,
  1732. "z": 1
  1733. },
  1734. "_mobility": 0,
  1735. "_layer": 33554432,
  1736. "_euler": {
  1737. "__type__": "cc.Vec3",
  1738. "x": 0,
  1739. "y": 0,
  1740. "z": 0
  1741. },
  1742. "_id": ""
  1743. },
  1744. {
  1745. "__type__": "cc.UITransform",
  1746. "_name": "",
  1747. "_objFlags": 0,
  1748. "__editorExtras__": {},
  1749. "node": {
  1750. "__id__": 64
  1751. },
  1752. "_enabled": true,
  1753. "__prefab": {
  1754. "__id__": 66
  1755. },
  1756. "_contentSize": {
  1757. "__type__": "cc.Size",
  1758. "width": 439,
  1759. "height": 78
  1760. },
  1761. "_anchorPoint": {
  1762. "__type__": "cc.Vec2",
  1763. "x": 0,
  1764. "y": 1
  1765. },
  1766. "_id": ""
  1767. },
  1768. {
  1769. "__type__": "cc.CompPrefabInfo",
  1770. "fileId": "34PhQyTixLvrPmd61MBxES"
  1771. },
  1772. {
  1773. "__type__": "cc.Label",
  1774. "_name": "",
  1775. "_objFlags": 0,
  1776. "__editorExtras__": {},
  1777. "node": {
  1778. "__id__": 64
  1779. },
  1780. "_enabled": true,
  1781. "__prefab": {
  1782. "__id__": 68
  1783. },
  1784. "_customMaterial": null,
  1785. "_srcBlendFactor": 2,
  1786. "_dstBlendFactor": 4,
  1787. "_color": {
  1788. "__type__": "cc.Color",
  1789. "r": 187,
  1790. "g": 187,
  1791. "b": 187,
  1792. "a": 255
  1793. },
  1794. "_string": "输入账号",
  1795. "_horizontalAlign": 1,
  1796. "_verticalAlign": 1,
  1797. "_actualFontSize": 40,
  1798. "_fontSize": 40,
  1799. "_fontFamily": "Arial",
  1800. "_lineHeight": 78,
  1801. "_overflow": 1,
  1802. "_enableWrapText": false,
  1803. "_font": null,
  1804. "_isSystemFontUsed": true,
  1805. "_spacingX": 0,
  1806. "_isItalic": false,
  1807. "_isBold": true,
  1808. "_isUnderline": false,
  1809. "_underlineHeight": 2,
  1810. "_cacheMode": 0,
  1811. "_enableOutline": false,
  1812. "_outlineColor": {
  1813. "__type__": "cc.Color",
  1814. "r": 0,
  1815. "g": 0,
  1816. "b": 0,
  1817. "a": 255
  1818. },
  1819. "_outlineWidth": 2,
  1820. "_enableShadow": false,
  1821. "_shadowColor": {
  1822. "__type__": "cc.Color",
  1823. "r": 0,
  1824. "g": 0,
  1825. "b": 0,
  1826. "a": 255
  1827. },
  1828. "_shadowOffset": {
  1829. "__type__": "cc.Vec2",
  1830. "x": 2,
  1831. "y": 2
  1832. },
  1833. "_shadowBlur": 2,
  1834. "_id": ""
  1835. },
  1836. {
  1837. "__type__": "cc.CompPrefabInfo",
  1838. "fileId": "aaXwRBvmxJJbfy+k55Da5k"
  1839. },
  1840. {
  1841. "__type__": "cc.PrefabInfo",
  1842. "root": {
  1843. "__id__": 1
  1844. },
  1845. "asset": {
  1846. "__id__": 0
  1847. },
  1848. "fileId": "908sE/o11G16nmZsQFUyyk",
  1849. "instance": null,
  1850. "targetOverrides": null,
  1851. "nestedPrefabInstanceRoots": null
  1852. },
  1853. {
  1854. "__type__": "cc.UITransform",
  1855. "_name": "",
  1856. "_objFlags": 0,
  1857. "__editorExtras__": {},
  1858. "node": {
  1859. "__id__": 57
  1860. },
  1861. "_enabled": true,
  1862. "__prefab": {
  1863. "__id__": 71
  1864. },
  1865. "_contentSize": {
  1866. "__type__": "cc.Size",
  1867. "width": 441,
  1868. "height": 78
  1869. },
  1870. "_anchorPoint": {
  1871. "__type__": "cc.Vec2",
  1872. "x": 0.5,
  1873. "y": 0.5
  1874. },
  1875. "_id": ""
  1876. },
  1877. {
  1878. "__type__": "cc.CompPrefabInfo",
  1879. "fileId": "9d7iF/Q9BJKKpHl5SOrFyN"
  1880. },
  1881. {
  1882. "__type__": "cc.Sprite",
  1883. "_name": "",
  1884. "_objFlags": 0,
  1885. "__editorExtras__": {},
  1886. "node": {
  1887. "__id__": 57
  1888. },
  1889. "_enabled": true,
  1890. "__prefab": {
  1891. "__id__": 73
  1892. },
  1893. "_customMaterial": null,
  1894. "_srcBlendFactor": 2,
  1895. "_dstBlendFactor": 4,
  1896. "_color": {
  1897. "__type__": "cc.Color",
  1898. "r": 255,
  1899. "g": 255,
  1900. "b": 255,
  1901. "a": 255
  1902. },
  1903. "_spriteFrame": {
  1904. "__uuid__": "26ab3ec6-443a-43f8-8a33-7910eef86301@f9941",
  1905. "__expectedType__": "cc.SpriteFrame"
  1906. },
  1907. "_type": 1,
  1908. "_fillType": 0,
  1909. "_sizeMode": 0,
  1910. "_fillCenter": {
  1911. "__type__": "cc.Vec2",
  1912. "x": 0,
  1913. "y": 0
  1914. },
  1915. "_fillStart": 0,
  1916. "_fillRange": 0,
  1917. "_isTrimmedMode": true,
  1918. "_useGrayscale": false,
  1919. "_atlas": null,
  1920. "_id": ""
  1921. },
  1922. {
  1923. "__type__": "cc.CompPrefabInfo",
  1924. "fileId": "bbRnCw16FGuYQK4MFg1ioi"
  1925. },
  1926. {
  1927. "__type__": "cc.EditBox",
  1928. "_name": "",
  1929. "_objFlags": 0,
  1930. "__editorExtras__": {},
  1931. "node": {
  1932. "__id__": 57
  1933. },
  1934. "_enabled": true,
  1935. "__prefab": {
  1936. "__id__": 75
  1937. },
  1938. "editingDidBegan": [],
  1939. "textChanged": [
  1940. {
  1941. "__id__": 76
  1942. }
  1943. ],
  1944. "editingDidEnded": [],
  1945. "editingReturn": [
  1946. {
  1947. "__id__": 77
  1948. }
  1949. ],
  1950. "_textLabel": {
  1951. "__id__": 61
  1952. },
  1953. "_placeholderLabel": {
  1954. "__id__": 67
  1955. },
  1956. "_returnType": 0,
  1957. "_string": "",
  1958. "_tabIndex": 0,
  1959. "_backgroundImage": {
  1960. "__uuid__": "26ab3ec6-443a-43f8-8a33-7910eef86301@f9941",
  1961. "__expectedType__": "cc.SpriteFrame"
  1962. },
  1963. "_inputFlag": 5,
  1964. "_inputMode": 6,
  1965. "_maxLength": 30,
  1966. "_id": ""
  1967. },
  1968. {
  1969. "__type__": "cc.CompPrefabInfo",
  1970. "fileId": "626gLpccVCIbUv3Q3OjSV2"
  1971. },
  1972. {
  1973. "__type__": "cc.ClickEvent",
  1974. "target": {
  1975. "__id__": 1
  1976. },
  1977. "component": "",
  1978. "_componentId": "366deUKKoRE8qWRNHqGlwi4",
  1979. "handler": "EditTex",
  1980. "customEventData": ""
  1981. },
  1982. {
  1983. "__type__": "cc.ClickEvent",
  1984. "target": {
  1985. "__id__": 1
  1986. },
  1987. "component": "",
  1988. "_componentId": "366deUKKoRE8qWRNHqGlwi4",
  1989. "handler": "onLogin",
  1990. "customEventData": ""
  1991. },
  1992. {
  1993. "__type__": "cc.PrefabInfo",
  1994. "root": {
  1995. "__id__": 1
  1996. },
  1997. "asset": {
  1998. "__id__": 0
  1999. },
  2000. "fileId": "87e52BoJVP3pfLO9Vitztj",
  2001. "instance": null,
  2002. "targetOverrides": null,
  2003. "nestedPrefabInstanceRoots": null
  2004. },
  2005. {
  2006. "__type__": "cc.Node",
  2007. "_name": "role",
  2008. "_objFlags": 0,
  2009. "__editorExtras__": {},
  2010. "_parent": {
  2011. "__id__": 56
  2012. },
  2013. "_children": [
  2014. {
  2015. "__id__": 80
  2016. }
  2017. ],
  2018. "_active": true,
  2019. "_components": [
  2020. {
  2021. "__id__": 86
  2022. },
  2023. {
  2024. "__id__": 88
  2025. }
  2026. ],
  2027. "_prefab": {
  2028. "__id__": 90
  2029. },
  2030. "_lpos": {
  2031. "__type__": "cc.Vec3",
  2032. "x": -172.687,
  2033. "y": 105.33600000000001,
  2034. "z": 0
  2035. },
  2036. "_lrot": {
  2037. "__type__": "cc.Quat",
  2038. "x": 0,
  2039. "y": 0,
  2040. "z": 0,
  2041. "w": 1
  2042. },
  2043. "_lscale": {
  2044. "__type__": "cc.Vec3",
  2045. "x": 1,
  2046. "y": 1,
  2047. "z": 1
  2048. },
  2049. "_mobility": 0,
  2050. "_layer": 33554432,
  2051. "_euler": {
  2052. "__type__": "cc.Vec3",
  2053. "x": 0,
  2054. "y": 0,
  2055. "z": 0
  2056. },
  2057. "_id": ""
  2058. },
  2059. {
  2060. "__type__": "cc.Node",
  2061. "_name": "text",
  2062. "_objFlags": 0,
  2063. "__editorExtras__": {},
  2064. "_parent": {
  2065. "__id__": 79
  2066. },
  2067. "_children": [],
  2068. "_active": true,
  2069. "_components": [
  2070. {
  2071. "__id__": 81
  2072. },
  2073. {
  2074. "__id__": 83
  2075. }
  2076. ],
  2077. "_prefab": {
  2078. "__id__": 85
  2079. },
  2080. "_lpos": {
  2081. "__type__": "cc.Vec3",
  2082. "x": 199.734,
  2083. "y": 0,
  2084. "z": 0
  2085. },
  2086. "_lrot": {
  2087. "__type__": "cc.Quat",
  2088. "x": 0,
  2089. "y": 0,
  2090. "z": 0,
  2091. "w": 1
  2092. },
  2093. "_lscale": {
  2094. "__type__": "cc.Vec3",
  2095. "x": 1,
  2096. "y": 1,
  2097. "z": 1
  2098. },
  2099. "_mobility": 0,
  2100. "_layer": 33554432,
  2101. "_euler": {
  2102. "__type__": "cc.Vec3",
  2103. "x": 0,
  2104. "y": 0,
  2105. "z": 0
  2106. },
  2107. "_id": ""
  2108. },
  2109. {
  2110. "__type__": "cc.UITransform",
  2111. "_name": "",
  2112. "_objFlags": 0,
  2113. "__editorExtras__": {},
  2114. "node": {
  2115. "__id__": 80
  2116. },
  2117. "_enabled": true,
  2118. "__prefab": {
  2119. "__id__": 82
  2120. },
  2121. "_contentSize": {
  2122. "__type__": "cc.Size",
  2123. "width": 240,
  2124. "height": 75.6
  2125. },
  2126. "_anchorPoint": {
  2127. "__type__": "cc.Vec2",
  2128. "x": 0.5,
  2129. "y": 0.5
  2130. },
  2131. "_id": ""
  2132. },
  2133. {
  2134. "__type__": "cc.CompPrefabInfo",
  2135. "fileId": "8c7IWVafJGnKbEdIwXcgZB"
  2136. },
  2137. {
  2138. "__type__": "cc.Label",
  2139. "_name": "",
  2140. "_objFlags": 0,
  2141. "__editorExtras__": {},
  2142. "node": {
  2143. "__id__": 80
  2144. },
  2145. "_enabled": true,
  2146. "__prefab": {
  2147. "__id__": 84
  2148. },
  2149. "_customMaterial": null,
  2150. "_srcBlendFactor": 2,
  2151. "_dstBlendFactor": 4,
  2152. "_color": {
  2153. "__type__": "cc.Color",
  2154. "r": 247,
  2155. "g": 179,
  2156. "b": 127,
  2157. "a": 255
  2158. },
  2159. "_string": "账号登录",
  2160. "_horizontalAlign": 1,
  2161. "_verticalAlign": 1,
  2162. "_actualFontSize": 60,
  2163. "_fontSize": 60,
  2164. "_fontFamily": "Arial",
  2165. "_lineHeight": 60,
  2166. "_overflow": 0,
  2167. "_enableWrapText": true,
  2168. "_font": null,
  2169. "_isSystemFontUsed": true,
  2170. "_spacingX": 0,
  2171. "_isItalic": false,
  2172. "_isBold": true,
  2173. "_isUnderline": false,
  2174. "_underlineHeight": 2,
  2175. "_cacheMode": 0,
  2176. "_enableOutline": false,
  2177. "_outlineColor": {
  2178. "__type__": "cc.Color",
  2179. "r": 0,
  2180. "g": 0,
  2181. "b": 0,
  2182. "a": 255
  2183. },
  2184. "_outlineWidth": 2,
  2185. "_enableShadow": false,
  2186. "_shadowColor": {
  2187. "__type__": "cc.Color",
  2188. "r": 0,
  2189. "g": 0,
  2190. "b": 0,
  2191. "a": 255
  2192. },
  2193. "_shadowOffset": {
  2194. "__type__": "cc.Vec2",
  2195. "x": 2,
  2196. "y": 2
  2197. },
  2198. "_shadowBlur": 2,
  2199. "_id": ""
  2200. },
  2201. {
  2202. "__type__": "cc.CompPrefabInfo",
  2203. "fileId": "b8IjgGcXJNgK40fVwohGYO"
  2204. },
  2205. {
  2206. "__type__": "cc.PrefabInfo",
  2207. "root": {
  2208. "__id__": 1
  2209. },
  2210. "asset": {
  2211. "__id__": 0
  2212. },
  2213. "fileId": "acKGr4ANZN4ok6ei+AJQj0",
  2214. "instance": null,
  2215. "targetOverrides": null,
  2216. "nestedPrefabInstanceRoots": null
  2217. },
  2218. {
  2219. "__type__": "cc.UITransform",
  2220. "_name": "",
  2221. "_objFlags": 0,
  2222. "__editorExtras__": {},
  2223. "node": {
  2224. "__id__": 79
  2225. },
  2226. "_enabled": true,
  2227. "__prefab": {
  2228. "__id__": 87
  2229. },
  2230. "_contentSize": {
  2231. "__type__": "cc.Size",
  2232. "width": 87,
  2233. "height": 93
  2234. },
  2235. "_anchorPoint": {
  2236. "__type__": "cc.Vec2",
  2237. "x": 0.5,
  2238. "y": 0.5
  2239. },
  2240. "_id": ""
  2241. },
  2242. {
  2243. "__type__": "cc.CompPrefabInfo",
  2244. "fileId": "25g7sY/55LqZtVV/5W0CID"
  2245. },
  2246. {
  2247. "__type__": "cc.Sprite",
  2248. "_name": "",
  2249. "_objFlags": 0,
  2250. "__editorExtras__": {},
  2251. "node": {
  2252. "__id__": 79
  2253. },
  2254. "_enabled": true,
  2255. "__prefab": {
  2256. "__id__": 89
  2257. },
  2258. "_customMaterial": null,
  2259. "_srcBlendFactor": 2,
  2260. "_dstBlendFactor": 4,
  2261. "_color": {
  2262. "__type__": "cc.Color",
  2263. "r": 255,
  2264. "g": 255,
  2265. "b": 255,
  2266. "a": 255
  2267. },
  2268. "_spriteFrame": {
  2269. "__uuid__": "77a73b68-09f7-438c-8fa5-4a3e01b8c438@f9941",
  2270. "__expectedType__": "cc.SpriteFrame"
  2271. },
  2272. "_type": 0,
  2273. "_fillType": 0,
  2274. "_sizeMode": 0,
  2275. "_fillCenter": {
  2276. "__type__": "cc.Vec2",
  2277. "x": 0,
  2278. "y": 0
  2279. },
  2280. "_fillStart": 0,
  2281. "_fillRange": 0,
  2282. "_isTrimmedMode": true,
  2283. "_useGrayscale": false,
  2284. "_atlas": null,
  2285. "_id": ""
  2286. },
  2287. {
  2288. "__type__": "cc.CompPrefabInfo",
  2289. "fileId": "8e7GwnFPVGiaGuOxDouH9I"
  2290. },
  2291. {
  2292. "__type__": "cc.PrefabInfo",
  2293. "root": {
  2294. "__id__": 1
  2295. },
  2296. "asset": {
  2297. "__id__": 0
  2298. },
  2299. "fileId": "84I0kP+NtHua0wC1Ogmmuz",
  2300. "instance": null,
  2301. "targetOverrides": null,
  2302. "nestedPrefabInstanceRoots": null
  2303. },
  2304. {
  2305. "__type__": "cc.Node",
  2306. "_name": "login_button",
  2307. "_objFlags": 0,
  2308. "__editorExtras__": {},
  2309. "_parent": {
  2310. "__id__": 56
  2311. },
  2312. "_children": [
  2313. {
  2314. "__id__": 92
  2315. }
  2316. ],
  2317. "_active": true,
  2318. "_components": [
  2319. {
  2320. "__id__": 98
  2321. },
  2322. {
  2323. "__id__": 100
  2324. },
  2325. {
  2326. "__id__": 102
  2327. }
  2328. ],
  2329. "_prefab": {
  2330. "__id__": 105
  2331. },
  2332. "_lpos": {
  2333. "__type__": "cc.Vec3",
  2334. "x": 0,
  2335. "y": -156.81399999999996,
  2336. "z": 0
  2337. },
  2338. "_lrot": {
  2339. "__type__": "cc.Quat",
  2340. "x": 0,
  2341. "y": 0,
  2342. "z": 0,
  2343. "w": 1
  2344. },
  2345. "_lscale": {
  2346. "__type__": "cc.Vec3",
  2347. "x": 1,
  2348. "y": 1,
  2349. "z": 1
  2350. },
  2351. "_mobility": 0,
  2352. "_layer": 33554432,
  2353. "_euler": {
  2354. "__type__": "cc.Vec3",
  2355. "x": 0,
  2356. "y": 0,
  2357. "z": 0
  2358. },
  2359. "_id": ""
  2360. },
  2361. {
  2362. "__type__": "cc.Node",
  2363. "_name": "Label",
  2364. "_objFlags": 0,
  2365. "__editorExtras__": {},
  2366. "_parent": {
  2367. "__id__": 91
  2368. },
  2369. "_children": [],
  2370. "_active": true,
  2371. "_components": [
  2372. {
  2373. "__id__": 93
  2374. },
  2375. {
  2376. "__id__": 95
  2377. }
  2378. ],
  2379. "_prefab": {
  2380. "__id__": 97
  2381. },
  2382. "_lpos": {
  2383. "__type__": "cc.Vec3",
  2384. "x": 0,
  2385. "y": 0,
  2386. "z": 0
  2387. },
  2388. "_lrot": {
  2389. "__type__": "cc.Quat",
  2390. "x": 0,
  2391. "y": 0,
  2392. "z": 0,
  2393. "w": 1
  2394. },
  2395. "_lscale": {
  2396. "__type__": "cc.Vec3",
  2397. "x": 1,
  2398. "y": 1,
  2399. "z": 1
  2400. },
  2401. "_mobility": 0,
  2402. "_layer": 33554432,
  2403. "_euler": {
  2404. "__type__": "cc.Vec3",
  2405. "x": 0,
  2406. "y": 0,
  2407. "z": 0
  2408. },
  2409. "_id": ""
  2410. },
  2411. {
  2412. "__type__": "cc.UITransform",
  2413. "_name": "",
  2414. "_objFlags": 0,
  2415. "__editorExtras__": {},
  2416. "node": {
  2417. "__id__": 92
  2418. },
  2419. "_enabled": true,
  2420. "__prefab": {
  2421. "__id__": 94
  2422. },
  2423. "_contentSize": {
  2424. "__type__": "cc.Size",
  2425. "width": 80,
  2426. "height": 50.4
  2427. },
  2428. "_anchorPoint": {
  2429. "__type__": "cc.Vec2",
  2430. "x": 0.5,
  2431. "y": 0.5
  2432. },
  2433. "_id": ""
  2434. },
  2435. {
  2436. "__type__": "cc.CompPrefabInfo",
  2437. "fileId": "d21lubIBxONrS0i0RlEIhb"
  2438. },
  2439. {
  2440. "__type__": "cc.Label",
  2441. "_name": "",
  2442. "_objFlags": 0,
  2443. "__editorExtras__": {},
  2444. "node": {
  2445. "__id__": 92
  2446. },
  2447. "_enabled": true,
  2448. "__prefab": {
  2449. "__id__": 96
  2450. },
  2451. "_customMaterial": null,
  2452. "_srcBlendFactor": 2,
  2453. "_dstBlendFactor": 4,
  2454. "_color": {
  2455. "__type__": "cc.Color",
  2456. "r": 255,
  2457. "g": 255,
  2458. "b": 255,
  2459. "a": 255
  2460. },
  2461. "_string": "登录",
  2462. "_horizontalAlign": 1,
  2463. "_verticalAlign": 1,
  2464. "_actualFontSize": 40,
  2465. "_fontSize": 40,
  2466. "_fontFamily": "Arial",
  2467. "_lineHeight": 40,
  2468. "_overflow": 0,
  2469. "_enableWrapText": true,
  2470. "_font": null,
  2471. "_isSystemFontUsed": true,
  2472. "_spacingX": 0,
  2473. "_isItalic": false,
  2474. "_isBold": false,
  2475. "_isUnderline": false,
  2476. "_underlineHeight": 2,
  2477. "_cacheMode": 0,
  2478. "_enableOutline": false,
  2479. "_outlineColor": {
  2480. "__type__": "cc.Color",
  2481. "r": 0,
  2482. "g": 0,
  2483. "b": 0,
  2484. "a": 255
  2485. },
  2486. "_outlineWidth": 2,
  2487. "_enableShadow": false,
  2488. "_shadowColor": {
  2489. "__type__": "cc.Color",
  2490. "r": 0,
  2491. "g": 0,
  2492. "b": 0,
  2493. "a": 255
  2494. },
  2495. "_shadowOffset": {
  2496. "__type__": "cc.Vec2",
  2497. "x": 2,
  2498. "y": 2
  2499. },
  2500. "_shadowBlur": 2,
  2501. "_id": ""
  2502. },
  2503. {
  2504. "__type__": "cc.CompPrefabInfo",
  2505. "fileId": "5bIAGPXdxF+aSkilT/DY73"
  2506. },
  2507. {
  2508. "__type__": "cc.PrefabInfo",
  2509. "root": {
  2510. "__id__": 1
  2511. },
  2512. "asset": {
  2513. "__id__": 0
  2514. },
  2515. "fileId": "df/4VcWPNMc5jyBsVSXpgW",
  2516. "instance": null,
  2517. "targetOverrides": null,
  2518. "nestedPrefabInstanceRoots": null
  2519. },
  2520. {
  2521. "__type__": "cc.UITransform",
  2522. "_name": "",
  2523. "_objFlags": 0,
  2524. "__editorExtras__": {},
  2525. "node": {
  2526. "__id__": 91
  2527. },
  2528. "_enabled": true,
  2529. "__prefab": {
  2530. "__id__": 99
  2531. },
  2532. "_contentSize": {
  2533. "__type__": "cc.Size",
  2534. "width": 191,
  2535. "height": 92
  2536. },
  2537. "_anchorPoint": {
  2538. "__type__": "cc.Vec2",
  2539. "x": 0.5,
  2540. "y": 0.5
  2541. },
  2542. "_id": ""
  2543. },
  2544. {
  2545. "__type__": "cc.CompPrefabInfo",
  2546. "fileId": "cbTqDPpqdI1amP25ebmjcW"
  2547. },
  2548. {
  2549. "__type__": "cc.Sprite",
  2550. "_name": "",
  2551. "_objFlags": 0,
  2552. "__editorExtras__": {},
  2553. "node": {
  2554. "__id__": 91
  2555. },
  2556. "_enabled": true,
  2557. "__prefab": {
  2558. "__id__": 101
  2559. },
  2560. "_customMaterial": null,
  2561. "_srcBlendFactor": 2,
  2562. "_dstBlendFactor": 4,
  2563. "_color": {
  2564. "__type__": "cc.Color",
  2565. "r": 255,
  2566. "g": 255,
  2567. "b": 255,
  2568. "a": 255
  2569. },
  2570. "_spriteFrame": {
  2571. "__uuid__": "d21239c5-e6e2-4988-b8de-ee21c5ee601b@f9941",
  2572. "__expectedType__": "cc.SpriteFrame"
  2573. },
  2574. "_type": 0,
  2575. "_fillType": 0,
  2576. "_sizeMode": 0,
  2577. "_fillCenter": {
  2578. "__type__": "cc.Vec2",
  2579. "x": 0,
  2580. "y": 0
  2581. },
  2582. "_fillStart": 0,
  2583. "_fillRange": 0,
  2584. "_isTrimmedMode": true,
  2585. "_useGrayscale": false,
  2586. "_atlas": null,
  2587. "_id": ""
  2588. },
  2589. {
  2590. "__type__": "cc.CompPrefabInfo",
  2591. "fileId": "davMBh1PJOuLAWdx6kDnfW"
  2592. },
  2593. {
  2594. "__type__": "cc.Button",
  2595. "_name": "",
  2596. "_objFlags": 0,
  2597. "__editorExtras__": {},
  2598. "node": {
  2599. "__id__": 91
  2600. },
  2601. "_enabled": true,
  2602. "__prefab": {
  2603. "__id__": 103
  2604. },
  2605. "clickEvents": [
  2606. {
  2607. "__id__": 104
  2608. }
  2609. ],
  2610. "_interactable": true,
  2611. "_transition": 3,
  2612. "_normalColor": {
  2613. "__type__": "cc.Color",
  2614. "r": 255,
  2615. "g": 255,
  2616. "b": 255,
  2617. "a": 255
  2618. },
  2619. "_hoverColor": {
  2620. "__type__": "cc.Color",
  2621. "r": 211,
  2622. "g": 211,
  2623. "b": 211,
  2624. "a": 255
  2625. },
  2626. "_pressedColor": {
  2627. "__type__": "cc.Color",
  2628. "r": 255,
  2629. "g": 255,
  2630. "b": 255,
  2631. "a": 255
  2632. },
  2633. "_disabledColor": {
  2634. "__type__": "cc.Color",
  2635. "r": 124,
  2636. "g": 124,
  2637. "b": 124,
  2638. "a": 255
  2639. },
  2640. "_normalSprite": null,
  2641. "_hoverSprite": null,
  2642. "_pressedSprite": null,
  2643. "_disabledSprite": null,
  2644. "_duration": 0.1,
  2645. "_zoomScale": 0.9,
  2646. "_target": null,
  2647. "_id": ""
  2648. },
  2649. {
  2650. "__type__": "cc.CompPrefabInfo",
  2651. "fileId": "c3CV47neNC2bfJO9ca34eD"
  2652. },
  2653. {
  2654. "__type__": "cc.ClickEvent",
  2655. "target": {
  2656. "__id__": 1
  2657. },
  2658. "component": "",
  2659. "_componentId": "366deUKKoRE8qWRNHqGlwi4",
  2660. "handler": "onLogin",
  2661. "customEventData": ""
  2662. },
  2663. {
  2664. "__type__": "cc.PrefabInfo",
  2665. "root": {
  2666. "__id__": 1
  2667. },
  2668. "asset": {
  2669. "__id__": 0
  2670. },
  2671. "fileId": "75YJIgwWVNq6zO+jQfQknl",
  2672. "instance": null,
  2673. "targetOverrides": null,
  2674. "nestedPrefabInstanceRoots": null
  2675. },
  2676. {
  2677. "__type__": "cc.UITransform",
  2678. "_name": "",
  2679. "_objFlags": 0,
  2680. "__editorExtras__": {},
  2681. "node": {
  2682. "__id__": 56
  2683. },
  2684. "_enabled": true,
  2685. "__prefab": {
  2686. "__id__": 107
  2687. },
  2688. "_contentSize": {
  2689. "__type__": "cc.Size",
  2690. "width": 100,
  2691. "height": 100
  2692. },
  2693. "_anchorPoint": {
  2694. "__type__": "cc.Vec2",
  2695. "x": 0.5,
  2696. "y": 0.5
  2697. },
  2698. "_id": ""
  2699. },
  2700. {
  2701. "__type__": "cc.CompPrefabInfo",
  2702. "fileId": "55Vi2cvKRDkZr05eArnbxy"
  2703. },
  2704. {
  2705. "__type__": "cc.PrefabInfo",
  2706. "root": {
  2707. "__id__": 1
  2708. },
  2709. "asset": {
  2710. "__id__": 0
  2711. },
  2712. "fileId": "33amn/k6JKFo7fkbavlNSP",
  2713. "instance": null,
  2714. "targetOverrides": null,
  2715. "nestedPrefabInstanceRoots": null
  2716. },
  2717. {
  2718. "__type__": "cc.UITransform",
  2719. "_name": "",
  2720. "_objFlags": 0,
  2721. "__editorExtras__": {},
  2722. "node": {
  2723. "__id__": 1
  2724. },
  2725. "_enabled": true,
  2726. "__prefab": {
  2727. "__id__": 110
  2728. },
  2729. "_contentSize": {
  2730. "__type__": "cc.Size",
  2731. "width": 749.9999999999999,
  2732. "height": 1334
  2733. },
  2734. "_anchorPoint": {
  2735. "__type__": "cc.Vec2",
  2736. "x": 0.5,
  2737. "y": 0.5
  2738. },
  2739. "_id": ""
  2740. },
  2741. {
  2742. "__type__": "cc.CompPrefabInfo",
  2743. "fileId": "2aE2jhPpJO0ZZx6fnH73pX"
  2744. },
  2745. {
  2746. "__type__": "cc.UIOpacity",
  2747. "_name": "",
  2748. "_objFlags": 0,
  2749. "__editorExtras__": {},
  2750. "node": {
  2751. "__id__": 1
  2752. },
  2753. "_enabled": true,
  2754. "__prefab": {
  2755. "__id__": 112
  2756. },
  2757. "_opacity": 255,
  2758. "_id": ""
  2759. },
  2760. {
  2761. "__type__": "cc.CompPrefabInfo",
  2762. "fileId": "04QYqmL4lG45RA998nzrvE"
  2763. },
  2764. {
  2765. "__type__": "366deUKKoRE8qWRNHqGlwi4",
  2766. "_name": "",
  2767. "_objFlags": 0,
  2768. "__editorExtras__": {},
  2769. "node": {
  2770. "__id__": 1
  2771. },
  2772. "_enabled": true,
  2773. "__prefab": {
  2774. "__id__": 114
  2775. },
  2776. "frame_load": false,
  2777. "load_priority": 0,
  2778. "ui_type": 0,
  2779. "_base_view_full": false,
  2780. "_base_view_block": false,
  2781. "_base_quick_close": false,
  2782. "_base_quick_close_exclude_node": [],
  2783. "_base_quick_close_destroy": true,
  2784. "loginRoot": {
  2785. "__id__": 56
  2786. },
  2787. "version": {
  2788. "__id__": 11
  2789. },
  2790. "selectServer": {
  2791. "__id__": 20
  2792. },
  2793. "serverName": {
  2794. "__id__": 24
  2795. },
  2796. "serverState": {
  2797. "__id__": 30
  2798. },
  2799. "userName": {
  2800. "__id__": 74
  2801. },
  2802. "_id": ""
  2803. },
  2804. {
  2805. "__type__": "cc.CompPrefabInfo",
  2806. "fileId": "74Eakt96pJFrwZsyA5B8XB"
  2807. },
  2808. {
  2809. "__type__": "cc.Widget",
  2810. "_name": "",
  2811. "_objFlags": 0,
  2812. "__editorExtras__": {},
  2813. "node": {
  2814. "__id__": 1
  2815. },
  2816. "_enabled": true,
  2817. "__prefab": {
  2818. "__id__": 116
  2819. },
  2820. "_alignFlags": 45,
  2821. "_target": null,
  2822. "_left": 0,
  2823. "_right": 0,
  2824. "_top": 0,
  2825. "_bottom": 0,
  2826. "_horizontalCenter": 0,
  2827. "_verticalCenter": 0,
  2828. "_isAbsLeft": true,
  2829. "_isAbsRight": true,
  2830. "_isAbsTop": true,
  2831. "_isAbsBottom": true,
  2832. "_isAbsHorizontalCenter": true,
  2833. "_isAbsVerticalCenter": true,
  2834. "_originalWidth": 100,
  2835. "_originalHeight": 100,
  2836. "_alignMode": 2,
  2837. "_lockFlags": 0,
  2838. "_id": ""
  2839. },
  2840. {
  2841. "__type__": "cc.CompPrefabInfo",
  2842. "fileId": "818np5HXVBNJDFp3elHO5P"
  2843. },
  2844. {
  2845. "__type__": "cc.PrefabInfo",
  2846. "root": {
  2847. "__id__": 1
  2848. },
  2849. "asset": {
  2850. "__id__": 0
  2851. },
  2852. "fileId": "efFkYtCrVFnJpsn3pxXcIR",
  2853. "instance": null,
  2854. "targetOverrides": []
  2855. }
  2856. ]