ui_chat.prefab 44 KB

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