friend_system_item.prefab 42 KB

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