LoginUI.prefab 43 KB

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