FriendSystem.prefab 45 KB

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