Socket.fire 44 KB

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