artist_resident.prefab 36 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965
  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": "artist_resident",
  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__": 63
  31. }
  32. ],
  33. "_prefab": {
  34. "__id__": 64
  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": 1624
  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": "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": 52,
  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": 2000,
  111. "height": 2000
  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__": "f0a9cf27-5e7c-4d23-98f5-8835eb16d81f"
  171. },
  172. "fileId": "d1QeLIjTJO35QAEMLtkez+",
  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__": 16
  188. },
  189. {
  190. "__id__": 25
  191. },
  192. {
  193. "__id__": 54
  194. }
  195. ],
  196. "_tag": -1,
  197. "_active": true,
  198. "_components": [
  199. {
  200. "__id__": 61
  201. }
  202. ],
  203. "_prefab": {
  204. "__id__": 62
  205. },
  206. "_id": "",
  207. "_opacity": 255,
  208. "_color": {
  209. "__type__": "cc.Color",
  210. "r": 255,
  211. "g": 255,
  212. "b": 255,
  213. "a": 255
  214. },
  215. "_cascadeOpacityEnabled": true,
  216. "_anchorPoint": {
  217. "__type__": "cc.Vec2",
  218. "x": 0.5,
  219. "y": 0.5
  220. },
  221. "_contentSize": {
  222. "__type__": "cc.Size",
  223. "width": 700,
  224. "height": 1180
  225. },
  226. "_rotationX": 0,
  227. "_rotationY": 0,
  228. "_scaleX": 1,
  229. "_scaleY": 1,
  230. "_position": {
  231. "__type__": "cc.Vec2",
  232. "x": 0,
  233. "y": 0
  234. },
  235. "_skewX": 0,
  236. "_skewY": 0,
  237. "_localZOrder": 0,
  238. "_globalZOrder": 0,
  239. "_opacityModifyRGB": false,
  240. "groupIndex": 0
  241. },
  242. {
  243. "__type__": "cc.Node",
  244. "_name": "talent_btn",
  245. "_objFlags": 0,
  246. "_parent": {
  247. "__id__": 6
  248. },
  249. "_children": [
  250. {
  251. "__id__": 8
  252. }
  253. ],
  254. "_tag": -1,
  255. "_active": true,
  256. "_components": [
  257. {
  258. "__id__": 11
  259. },
  260. {
  261. "__id__": 12
  262. },
  263. {
  264. "__id__": 14
  265. }
  266. ],
  267. "_prefab": {
  268. "__id__": 15
  269. },
  270. "_id": "",
  271. "_opacity": 255,
  272. "_color": {
  273. "__type__": "cc.Color",
  274. "r": 255,
  275. "g": 255,
  276. "b": 255,
  277. "a": 255
  278. },
  279. "_cascadeOpacityEnabled": true,
  280. "_anchorPoint": {
  281. "__type__": "cc.Vec2",
  282. "x": 0.5,
  283. "y": 0.5
  284. },
  285. "_contentSize": {
  286. "__type__": "cc.Size",
  287. "width": 236,
  288. "height": 80
  289. },
  290. "_rotationX": 0,
  291. "_rotationY": 0,
  292. "_scaleX": 1,
  293. "_scaleY": 1,
  294. "_position": {
  295. "__type__": "cc.Vec2",
  296. "x": 0,
  297. "y": -513
  298. },
  299. "_skewX": 0,
  300. "_skewY": 0,
  301. "_localZOrder": 0,
  302. "_globalZOrder": 0,
  303. "_opacityModifyRGB": false,
  304. "groupIndex": 0
  305. },
  306. {
  307. "__type__": "cc.Node",
  308. "_name": "New RichText",
  309. "_objFlags": 0,
  310. "_parent": {
  311. "__id__": 7
  312. },
  313. "_children": [],
  314. "_tag": -1,
  315. "_active": true,
  316. "_components": [
  317. {
  318. "__id__": 9
  319. }
  320. ],
  321. "_prefab": {
  322. "__id__": 10
  323. },
  324. "_id": "",
  325. "_opacity": 255,
  326. "_color": {
  327. "__type__": "cc.Color",
  328. "r": 255,
  329. "g": 255,
  330. "b": 255,
  331. "a": 255
  332. },
  333. "_cascadeOpacityEnabled": true,
  334. "_anchorPoint": {
  335. "__type__": "cc.Vec2",
  336. "x": 0.5,
  337. "y": 0.5
  338. },
  339. "_contentSize": {
  340. "__type__": "cc.Size",
  341. "width": 164,
  342. "height": 50
  343. },
  344. "_rotationX": 0,
  345. "_rotationY": 0,
  346. "_scaleX": 1,
  347. "_scaleY": 1,
  348. "_position": {
  349. "__type__": "cc.Vec2",
  350. "x": 0,
  351. "y": 0
  352. },
  353. "_skewX": 0,
  354. "_skewY": 0,
  355. "_localZOrder": 0,
  356. "_globalZOrder": 0,
  357. "_opacityModifyRGB": false,
  358. "groupIndex": 0
  359. },
  360. {
  361. "__type__": "cc.RichText",
  362. "_name": "",
  363. "_objFlags": 0,
  364. "node": {
  365. "__id__": 8
  366. },
  367. "_enabled": true,
  368. "_N$string": "<b><outline color=#38ae24 width=2>派出星探<outline/><b/>",
  369. "_N$horizontalAlign": 0,
  370. "_N$fontSize": 40,
  371. "_N$font": null,
  372. "_N$maxWidth": 0,
  373. "_N$lineHeight": 50,
  374. "_N$imageAtlas": null,
  375. "_N$handleTouchEvent": true
  376. },
  377. {
  378. "__type__": "cc.PrefabInfo",
  379. "root": {
  380. "__id__": 1
  381. },
  382. "asset": {
  383. "__uuid__": "f0a9cf27-5e7c-4d23-98f5-8835eb16d81f"
  384. },
  385. "fileId": "22WBuF8g1HMaiprcayeVgc",
  386. "sync": false
  387. },
  388. {
  389. "__type__": "cc.Sprite",
  390. "_name": "",
  391. "_objFlags": 0,
  392. "node": {
  393. "__id__": 7
  394. },
  395. "_enabled": true,
  396. "_spriteFrame": {
  397. "__uuid__": "00e90909-26f2-40d1-87c2-8f3d8e72ef4e"
  398. },
  399. "_type": 1,
  400. "_sizeMode": 0,
  401. "_fillType": 0,
  402. "_fillCenter": {
  403. "__type__": "cc.Vec2",
  404. "x": 0,
  405. "y": 0
  406. },
  407. "_fillStart": 0,
  408. "_fillRange": 0,
  409. "_isTrimmedMode": true,
  410. "_srcBlendFactor": 770,
  411. "_dstBlendFactor": 771,
  412. "_atlas": null
  413. },
  414. {
  415. "__type__": "cc.Button",
  416. "_name": "",
  417. "_objFlags": 0,
  418. "node": {
  419. "__id__": 7
  420. },
  421. "_enabled": true,
  422. "transition": 1,
  423. "pressedColor": {
  424. "__type__": "cc.Color",
  425. "r": 120,
  426. "g": 120,
  427. "b": 120,
  428. "a": 255
  429. },
  430. "hoverColor": {
  431. "__type__": "cc.Color",
  432. "r": 255,
  433. "g": 255,
  434. "b": 255,
  435. "a": 255
  436. },
  437. "duration": 0.1,
  438. "zoomScale": 1.2,
  439. "clickEvents": [
  440. {
  441. "__id__": 13
  442. }
  443. ],
  444. "_N$interactable": true,
  445. "_N$enableAutoGrayEffect": false,
  446. "_N$normalColor": {
  447. "__type__": "cc.Color",
  448. "r": 255,
  449. "g": 255,
  450. "b": 255,
  451. "a": 255
  452. },
  453. "_N$disabledColor": {
  454. "__type__": "cc.Color",
  455. "r": 255,
  456. "g": 255,
  457. "b": 255,
  458. "a": 255
  459. },
  460. "_N$normalSprite": {
  461. "__uuid__": "a2a70c2c-f3a8-4abc-a113-6876b4f0a6f6"
  462. },
  463. "_N$pressedSprite": null,
  464. "pressedSprite": null,
  465. "_N$hoverSprite": null,
  466. "hoverSprite": null,
  467. "_N$disabledSprite": null,
  468. "_N$target": {
  469. "__id__": 7
  470. }
  471. },
  472. {
  473. "__type__": "cc.ClickEvent",
  474. "target": {
  475. "__id__": 1
  476. },
  477. "component": "ArtistResident",
  478. "handler": "showTalent",
  479. "customEventData": ""
  480. },
  481. {
  482. "__type__": "cc.Widget",
  483. "_name": "",
  484. "_objFlags": 0,
  485. "node": {
  486. "__id__": 7
  487. },
  488. "_enabled": true,
  489. "alignMode": 1,
  490. "_target": null,
  491. "_alignFlags": 20,
  492. "_left": 0,
  493. "_right": 0,
  494. "_top": 0,
  495. "_bottom": 37,
  496. "_verticalCenter": 0,
  497. "_horizontalCenter": 0,
  498. "_isAbsLeft": true,
  499. "_isAbsRight": true,
  500. "_isAbsTop": true,
  501. "_isAbsBottom": true,
  502. "_isAbsHorizontalCenter": true,
  503. "_isAbsVerticalCenter": true,
  504. "_originalWidth": 0,
  505. "_originalHeight": 0
  506. },
  507. {
  508. "__type__": "cc.PrefabInfo",
  509. "root": {
  510. "__id__": 1
  511. },
  512. "asset": {
  513. "__uuid__": "f0a9cf27-5e7c-4d23-98f5-8835eb16d81f"
  514. },
  515. "fileId": "68t5qjhO9CuoTrwGD52z3m",
  516. "sync": false
  517. },
  518. {
  519. "__type__": "cc.Node",
  520. "_name": "confirm_btn",
  521. "_objFlags": 0,
  522. "_parent": {
  523. "__id__": 6
  524. },
  525. "_children": [
  526. {
  527. "__id__": 17
  528. }
  529. ],
  530. "_tag": -1,
  531. "_active": true,
  532. "_components": [
  533. {
  534. "__id__": 20
  535. },
  536. {
  537. "__id__": 21
  538. },
  539. {
  540. "__id__": 23
  541. }
  542. ],
  543. "_prefab": {
  544. "__id__": 24
  545. },
  546. "_id": "",
  547. "_opacity": 255,
  548. "_color": {
  549. "__type__": "cc.Color",
  550. "r": 255,
  551. "g": 255,
  552. "b": 255,
  553. "a": 255
  554. },
  555. "_cascadeOpacityEnabled": true,
  556. "_anchorPoint": {
  557. "__type__": "cc.Vec2",
  558. "x": 0.5,
  559. "y": 0.5
  560. },
  561. "_contentSize": {
  562. "__type__": "cc.Size",
  563. "width": 236,
  564. "height": 80
  565. },
  566. "_rotationX": 0,
  567. "_rotationY": 0,
  568. "_scaleX": 1,
  569. "_scaleY": 1,
  570. "_position": {
  571. "__type__": "cc.Vec2",
  572. "x": 0,
  573. "y": -514
  574. },
  575. "_skewX": 0,
  576. "_skewY": 0,
  577. "_localZOrder": 0,
  578. "_globalZOrder": 0,
  579. "_opacityModifyRGB": false,
  580. "groupIndex": 0
  581. },
  582. {
  583. "__type__": "cc.Node",
  584. "_name": "New RichText",
  585. "_objFlags": 0,
  586. "_parent": {
  587. "__id__": 16
  588. },
  589. "_children": [],
  590. "_tag": -1,
  591. "_active": true,
  592. "_components": [
  593. {
  594. "__id__": 18
  595. }
  596. ],
  597. "_prefab": {
  598. "__id__": 19
  599. },
  600. "_id": "",
  601. "_opacity": 255,
  602. "_color": {
  603. "__type__": "cc.Color",
  604. "r": 255,
  605. "g": 255,
  606. "b": 255,
  607. "a": 255
  608. },
  609. "_cascadeOpacityEnabled": true,
  610. "_anchorPoint": {
  611. "__type__": "cc.Vec2",
  612. "x": 0.5,
  613. "y": 0.5
  614. },
  615. "_contentSize": {
  616. "__type__": "cc.Size",
  617. "width": 84,
  618. "height": 50
  619. },
  620. "_rotationX": 0,
  621. "_rotationY": 0,
  622. "_scaleX": 1,
  623. "_scaleY": 1,
  624. "_position": {
  625. "__type__": "cc.Vec2",
  626. "x": 0,
  627. "y": 0
  628. },
  629. "_skewX": 0,
  630. "_skewY": 0,
  631. "_localZOrder": 0,
  632. "_globalZOrder": 0,
  633. "_opacityModifyRGB": false,
  634. "groupIndex": 0
  635. },
  636. {
  637. "__type__": "cc.RichText",
  638. "_name": "",
  639. "_objFlags": 0,
  640. "node": {
  641. "__id__": 17
  642. },
  643. "_enabled": true,
  644. "_N$string": "<b><outline color=#4f2711 width=2>确定<outline/><b/>",
  645. "_N$horizontalAlign": 0,
  646. "_N$fontSize": 40,
  647. "_N$font": null,
  648. "_N$maxWidth": 0,
  649. "_N$lineHeight": 50,
  650. "_N$imageAtlas": null,
  651. "_N$handleTouchEvent": true
  652. },
  653. {
  654. "__type__": "cc.PrefabInfo",
  655. "root": {
  656. "__id__": 1
  657. },
  658. "asset": {
  659. "__uuid__": "f0a9cf27-5e7c-4d23-98f5-8835eb16d81f"
  660. },
  661. "fileId": "cdueZMRcpBAIku4+AxWx8v",
  662. "sync": false
  663. },
  664. {
  665. "__type__": "cc.Sprite",
  666. "_name": "",
  667. "_objFlags": 0,
  668. "node": {
  669. "__id__": 16
  670. },
  671. "_enabled": true,
  672. "_spriteFrame": {
  673. "__uuid__": "a2a70c2c-f3a8-4abc-a113-6876b4f0a6f6"
  674. },
  675. "_type": 1,
  676. "_sizeMode": 0,
  677. "_fillType": 0,
  678. "_fillCenter": {
  679. "__type__": "cc.Vec2",
  680. "x": 0,
  681. "y": 0
  682. },
  683. "_fillStart": 0,
  684. "_fillRange": 0,
  685. "_isTrimmedMode": true,
  686. "_srcBlendFactor": 770,
  687. "_dstBlendFactor": 771,
  688. "_atlas": null
  689. },
  690. {
  691. "__type__": "cc.Button",
  692. "_name": "",
  693. "_objFlags": 0,
  694. "node": {
  695. "__id__": 16
  696. },
  697. "_enabled": true,
  698. "transition": 1,
  699. "pressedColor": {
  700. "__type__": "cc.Color",
  701. "r": 120,
  702. "g": 120,
  703. "b": 120,
  704. "a": 255
  705. },
  706. "hoverColor": {
  707. "__type__": "cc.Color",
  708. "r": 255,
  709. "g": 255,
  710. "b": 255,
  711. "a": 255
  712. },
  713. "duration": 0.1,
  714. "zoomScale": 1.2,
  715. "clickEvents": [
  716. {
  717. "__id__": 22
  718. }
  719. ],
  720. "_N$interactable": true,
  721. "_N$enableAutoGrayEffect": false,
  722. "_N$normalColor": {
  723. "__type__": "cc.Color",
  724. "r": 255,
  725. "g": 255,
  726. "b": 255,
  727. "a": 255
  728. },
  729. "_N$disabledColor": {
  730. "__type__": "cc.Color",
  731. "r": 255,
  732. "g": 255,
  733. "b": 255,
  734. "a": 255
  735. },
  736. "_N$normalSprite": {
  737. "__uuid__": "a2a70c2c-f3a8-4abc-a113-6876b4f0a6f6"
  738. },
  739. "_N$pressedSprite": null,
  740. "pressedSprite": null,
  741. "_N$hoverSprite": null,
  742. "hoverSprite": null,
  743. "_N$disabledSprite": null,
  744. "_N$target": {
  745. "__id__": 16
  746. }
  747. },
  748. {
  749. "__type__": "cc.ClickEvent",
  750. "target": {
  751. "__id__": 1
  752. },
  753. "component": "ArtistResident",
  754. "handler": "confirm",
  755. "customEventData": ""
  756. },
  757. {
  758. "__type__": "cc.Widget",
  759. "_name": "",
  760. "_objFlags": 0,
  761. "node": {
  762. "__id__": 16
  763. },
  764. "_enabled": true,
  765. "alignMode": 1,
  766. "_target": null,
  767. "_alignFlags": 20,
  768. "_left": 0,
  769. "_right": 0,
  770. "_top": 0,
  771. "_bottom": 36,
  772. "_verticalCenter": 0,
  773. "_horizontalCenter": 0,
  774. "_isAbsLeft": true,
  775. "_isAbsRight": true,
  776. "_isAbsTop": true,
  777. "_isAbsBottom": true,
  778. "_isAbsHorizontalCenter": true,
  779. "_isAbsVerticalCenter": true,
  780. "_originalWidth": 0,
  781. "_originalHeight": 0
  782. },
  783. {
  784. "__type__": "cc.PrefabInfo",
  785. "root": {
  786. "__id__": 1
  787. },
  788. "asset": {
  789. "__uuid__": "f0a9cf27-5e7c-4d23-98f5-8835eb16d81f"
  790. },
  791. "fileId": "dey6DGmVtLzKFeT3A6CD8Y",
  792. "sync": false
  793. },
  794. {
  795. "__type__": "cc.Node",
  796. "_name": "subContent",
  797. "_objFlags": 0,
  798. "_parent": {
  799. "__id__": 6
  800. },
  801. "_children": [
  802. {
  803. "__id__": 26
  804. },
  805. {
  806. "__id__": 30
  807. },
  808. {
  809. "__id__": 40
  810. },
  811. {
  812. "__id__": 47
  813. }
  814. ],
  815. "_tag": -1,
  816. "_active": true,
  817. "_components": [
  818. {
  819. "__id__": 51
  820. },
  821. {
  822. "__id__": 52
  823. }
  824. ],
  825. "_prefab": {
  826. "__id__": 53
  827. },
  828. "_id": "",
  829. "_opacity": 255,
  830. "_color": {
  831. "__type__": "cc.Color",
  832. "r": 255,
  833. "g": 255,
  834. "b": 255,
  835. "a": 255
  836. },
  837. "_cascadeOpacityEnabled": true,
  838. "_anchorPoint": {
  839. "__type__": "cc.Vec2",
  840. "x": 0.5,
  841. "y": 0.5
  842. },
  843. "_contentSize": {
  844. "__type__": "cc.Size",
  845. "width": 680,
  846. "height": 1037
  847. },
  848. "_rotationX": 0,
  849. "_rotationY": 0,
  850. "_scaleX": 1,
  851. "_scaleY": 1,
  852. "_position": {
  853. "__type__": "cc.Vec2",
  854. "x": 0,
  855. "y": 61.5
  856. },
  857. "_skewX": 0,
  858. "_skewY": 0,
  859. "_localZOrder": 0,
  860. "_globalZOrder": 0,
  861. "_opacityModifyRGB": false,
  862. "groupIndex": 0
  863. },
  864. {
  865. "__type__": "cc.Node",
  866. "_name": "no_artist_tip",
  867. "_objFlags": 0,
  868. "_parent": {
  869. "__id__": 25
  870. },
  871. "_children": [],
  872. "_tag": -1,
  873. "_active": false,
  874. "_components": [
  875. {
  876. "__id__": 27
  877. },
  878. {
  879. "__id__": 28
  880. }
  881. ],
  882. "_prefab": {
  883. "__id__": 29
  884. },
  885. "_id": "",
  886. "_opacity": 255,
  887. "_color": {
  888. "__type__": "cc.Color",
  889. "r": 255,
  890. "g": 255,
  891. "b": 255,
  892. "a": 255
  893. },
  894. "_cascadeOpacityEnabled": true,
  895. "_anchorPoint": {
  896. "__type__": "cc.Vec2",
  897. "x": 0.5,
  898. "y": 0.5
  899. },
  900. "_contentSize": {
  901. "__type__": "cc.Size",
  902. "width": 453,
  903. "height": 87
  904. },
  905. "_rotationX": 0,
  906. "_rotationY": 0,
  907. "_scaleX": 1,
  908. "_scaleY": 1,
  909. "_position": {
  910. "__type__": "cc.Vec2",
  911. "x": 0,
  912. "y": 0
  913. },
  914. "_skewX": 0,
  915. "_skewY": 0,
  916. "_localZOrder": 0,
  917. "_globalZOrder": 0,
  918. "_opacityModifyRGB": false,
  919. "groupIndex": 0
  920. },
  921. {
  922. "__type__": "cc.Sprite",
  923. "_name": "",
  924. "_objFlags": 0,
  925. "node": {
  926. "__id__": 26
  927. },
  928. "_enabled": true,
  929. "_spriteFrame": {
  930. "__uuid__": "71fa5a4a-a864-43c7-ab3c-88b286a49965"
  931. },
  932. "_type": 0,
  933. "_sizeMode": 1,
  934. "_fillType": 0,
  935. "_fillCenter": {
  936. "__type__": "cc.Vec2",
  937. "x": 0,
  938. "y": 0
  939. },
  940. "_fillStart": 0,
  941. "_fillRange": 0,
  942. "_isTrimmedMode": true,
  943. "_srcBlendFactor": 770,
  944. "_dstBlendFactor": 771,
  945. "_atlas": null
  946. },
  947. {
  948. "__type__": "cc.Widget",
  949. "_name": "",
  950. "_objFlags": 0,
  951. "node": {
  952. "__id__": 26
  953. },
  954. "_enabled": true,
  955. "alignMode": 1,
  956. "_target": null,
  957. "_alignFlags": 18,
  958. "_left": 0,
  959. "_right": 0,
  960. "_top": 0,
  961. "_bottom": 0,
  962. "_verticalCenter": 0,
  963. "_horizontalCenter": 0,
  964. "_isAbsLeft": true,
  965. "_isAbsRight": true,
  966. "_isAbsTop": true,
  967. "_isAbsBottom": true,
  968. "_isAbsHorizontalCenter": true,
  969. "_isAbsVerticalCenter": true,
  970. "_originalWidth": 0,
  971. "_originalHeight": 0
  972. },
  973. {
  974. "__type__": "cc.PrefabInfo",
  975. "root": {
  976. "__id__": 1
  977. },
  978. "asset": {
  979. "__uuid__": "f0a9cf27-5e7c-4d23-98f5-8835eb16d81f"
  980. },
  981. "fileId": "80Fh8oflFIIbXL0wE5qpId",
  982. "sync": false
  983. },
  984. {
  985. "__type__": "cc.Node",
  986. "_name": "list",
  987. "_objFlags": 0,
  988. "_parent": {
  989. "__id__": 25
  990. },
  991. "_children": [
  992. {
  993. "__id__": 31
  994. }
  995. ],
  996. "_tag": -1,
  997. "_active": true,
  998. "_components": [
  999. {
  1000. "__id__": 38
  1001. }
  1002. ],
  1003. "_prefab": {
  1004. "__id__": 39
  1005. },
  1006. "_id": "",
  1007. "_opacity": 255,
  1008. "_color": {
  1009. "__type__": "cc.Color",
  1010. "r": 184,
  1011. "g": 184,
  1012. "b": 184,
  1013. "a": 255
  1014. },
  1015. "_cascadeOpacityEnabled": true,
  1016. "_anchorPoint": {
  1017. "__type__": "cc.Vec2",
  1018. "x": 0.5,
  1019. "y": 0.5
  1020. },
  1021. "_contentSize": {
  1022. "__type__": "cc.Size",
  1023. "width": 605,
  1024. "height": 850
  1025. },
  1026. "_rotationX": 0,
  1027. "_rotationY": 0,
  1028. "_scaleX": 1,
  1029. "_scaleY": 1,
  1030. "_position": {
  1031. "__type__": "cc.Vec2",
  1032. "x": 0,
  1033. "y": -72
  1034. },
  1035. "_skewX": 0,
  1036. "_skewY": 0,
  1037. "_localZOrder": 0,
  1038. "_globalZOrder": 0,
  1039. "_opacityModifyRGB": false,
  1040. "groupIndex": 0
  1041. },
  1042. {
  1043. "__type__": "cc.Node",
  1044. "_name": "view",
  1045. "_objFlags": 0,
  1046. "_parent": {
  1047. "__id__": 30
  1048. },
  1049. "_children": [
  1050. {
  1051. "__id__": 32
  1052. }
  1053. ],
  1054. "_tag": -1,
  1055. "_active": true,
  1056. "_components": [
  1057. {
  1058. "__id__": 35
  1059. },
  1060. {
  1061. "__id__": 36
  1062. }
  1063. ],
  1064. "_prefab": {
  1065. "__id__": 37
  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": 0.5
  1081. },
  1082. "_contentSize": {
  1083. "__type__": "cc.Size",
  1084. "width": 605,
  1085. "height": 850
  1086. },
  1087. "_rotationX": 0,
  1088. "_rotationY": 0,
  1089. "_scaleX": 1,
  1090. "_scaleY": 1,
  1091. "_position": {
  1092. "__type__": "cc.Vec2",
  1093. "x": 0,
  1094. "y": 0
  1095. },
  1096. "_skewX": 0,
  1097. "_skewY": 0,
  1098. "_localZOrder": 0,
  1099. "_globalZOrder": 0,
  1100. "_opacityModifyRGB": false,
  1101. "groupIndex": 0
  1102. },
  1103. {
  1104. "__type__": "cc.Node",
  1105. "_name": "content",
  1106. "_objFlags": 0,
  1107. "_parent": {
  1108. "__id__": 31
  1109. },
  1110. "_children": [],
  1111. "_tag": -1,
  1112. "_active": true,
  1113. "_components": [
  1114. {
  1115. "__id__": 33
  1116. }
  1117. ],
  1118. "_prefab": {
  1119. "__id__": 34
  1120. },
  1121. "_id": "",
  1122. "_opacity": 255,
  1123. "_color": {
  1124. "__type__": "cc.Color",
  1125. "r": 255,
  1126. "g": 255,
  1127. "b": 255,
  1128. "a": 255
  1129. },
  1130. "_cascadeOpacityEnabled": true,
  1131. "_anchorPoint": {
  1132. "__type__": "cc.Vec2",
  1133. "x": 0.5,
  1134. "y": 1
  1135. },
  1136. "_contentSize": {
  1137. "__type__": "cc.Size",
  1138. "width": 650,
  1139. "height": 60
  1140. },
  1141. "_rotationX": 0,
  1142. "_rotationY": 0,
  1143. "_scaleX": 1,
  1144. "_scaleY": 1,
  1145. "_position": {
  1146. "__type__": "cc.Vec2",
  1147. "x": 0,
  1148. "y": 339
  1149. },
  1150. "_skewX": 0,
  1151. "_skewY": 0,
  1152. "_localZOrder": 0,
  1153. "_globalZOrder": 0,
  1154. "_opacityModifyRGB": false,
  1155. "groupIndex": 0
  1156. },
  1157. {
  1158. "__type__": "cc.Layout",
  1159. "_name": "",
  1160. "_objFlags": 0,
  1161. "node": {
  1162. "__id__": 32
  1163. },
  1164. "_enabled": true,
  1165. "_layoutSize": {
  1166. "__type__": "cc.Size",
  1167. "width": 650,
  1168. "height": 60
  1169. },
  1170. "_resize": 1,
  1171. "_N$layoutType": 2,
  1172. "_N$padding": 0,
  1173. "_N$cellSize": {
  1174. "__type__": "cc.Size",
  1175. "width": 40,
  1176. "height": 40
  1177. },
  1178. "_N$startAxis": 0,
  1179. "_N$paddingLeft": 0,
  1180. "_N$paddingRight": 0,
  1181. "_N$paddingTop": 0,
  1182. "_N$paddingBottom": 0,
  1183. "_N$spacingX": 0,
  1184. "_N$spacingY": 15,
  1185. "_N$verticalDirection": 1,
  1186. "_N$horizontalDirection": 0
  1187. },
  1188. {
  1189. "__type__": "cc.PrefabInfo",
  1190. "root": {
  1191. "__id__": 1
  1192. },
  1193. "asset": {
  1194. "__uuid__": "f0a9cf27-5e7c-4d23-98f5-8835eb16d81f"
  1195. },
  1196. "fileId": "39zLcLhhxH6LnDCGMmiX9o",
  1197. "sync": false
  1198. },
  1199. {
  1200. "__type__": "cc.Mask",
  1201. "_name": "",
  1202. "_objFlags": 0,
  1203. "node": {
  1204. "__id__": 31
  1205. },
  1206. "_enabled": true,
  1207. "_type": 0,
  1208. "_segements": 64,
  1209. "_N$spriteFrame": null,
  1210. "_N$alphaThreshold": 1,
  1211. "_N$inverted": false
  1212. },
  1213. {
  1214. "__type__": "cc.Widget",
  1215. "_name": "",
  1216. "_objFlags": 0,
  1217. "node": {
  1218. "__id__": 31
  1219. },
  1220. "_enabled": true,
  1221. "alignMode": 0,
  1222. "_target": null,
  1223. "_alignFlags": 45,
  1224. "_left": 0,
  1225. "_right": 0,
  1226. "_top": 0,
  1227. "_bottom": 0,
  1228. "_verticalCenter": 0,
  1229. "_horizontalCenter": 0,
  1230. "_isAbsLeft": true,
  1231. "_isAbsRight": true,
  1232. "_isAbsTop": true,
  1233. "_isAbsBottom": true,
  1234. "_isAbsHorizontalCenter": true,
  1235. "_isAbsVerticalCenter": true,
  1236. "_originalWidth": 240,
  1237. "_originalHeight": 250
  1238. },
  1239. {
  1240. "__type__": "cc.PrefabInfo",
  1241. "root": {
  1242. "__id__": 1
  1243. },
  1244. "asset": {
  1245. "__uuid__": "f0a9cf27-5e7c-4d23-98f5-8835eb16d81f"
  1246. },
  1247. "fileId": "76RLsxNkRFt7sI4eVpxCXs",
  1248. "sync": false
  1249. },
  1250. {
  1251. "__type__": "cc.ScrollView",
  1252. "_name": "",
  1253. "_objFlags": 0,
  1254. "node": {
  1255. "__id__": 30
  1256. },
  1257. "_enabled": true,
  1258. "content": {
  1259. "__id__": 32
  1260. },
  1261. "horizontal": false,
  1262. "vertical": true,
  1263. "inertia": true,
  1264. "brake": 0.75,
  1265. "elastic": true,
  1266. "bounceDuration": 0.23,
  1267. "scrollEvents": [],
  1268. "cancelInnerEvents": true,
  1269. "_N$horizontalScrollBar": null,
  1270. "_N$verticalScrollBar": null
  1271. },
  1272. {
  1273. "__type__": "cc.PrefabInfo",
  1274. "root": {
  1275. "__id__": 1
  1276. },
  1277. "asset": {
  1278. "__uuid__": "f0a9cf27-5e7c-4d23-98f5-8835eb16d81f"
  1279. },
  1280. "fileId": "ado5RgvANDTo4fdr8omb9z",
  1281. "sync": false
  1282. },
  1283. {
  1284. "__type__": "cc.Node",
  1285. "_name": "artist_operation_top_bg",
  1286. "_objFlags": 0,
  1287. "_parent": {
  1288. "__id__": 25
  1289. },
  1290. "_children": [
  1291. {
  1292. "__id__": 41
  1293. }
  1294. ],
  1295. "_tag": -1,
  1296. "_active": true,
  1297. "_components": [
  1298. {
  1299. "__id__": 44
  1300. },
  1301. {
  1302. "__id__": 45
  1303. }
  1304. ],
  1305. "_prefab": {
  1306. "__id__": 46
  1307. },
  1308. "_id": "",
  1309. "_opacity": 255,
  1310. "_color": {
  1311. "__type__": "cc.Color",
  1312. "r": 255,
  1313. "g": 255,
  1314. "b": 255,
  1315. "a": 255
  1316. },
  1317. "_cascadeOpacityEnabled": true,
  1318. "_anchorPoint": {
  1319. "__type__": "cc.Vec2",
  1320. "x": 0.5,
  1321. "y": 0.5
  1322. },
  1323. "_contentSize": {
  1324. "__type__": "cc.Size",
  1325. "width": 316,
  1326. "height": 86
  1327. },
  1328. "_rotationX": 0,
  1329. "_rotationY": 0,
  1330. "_scaleX": 1,
  1331. "_scaleY": 1,
  1332. "_position": {
  1333. "__type__": "cc.Vec2",
  1334. "x": 0,
  1335. "y": 451
  1336. },
  1337. "_skewX": 0,
  1338. "_skewY": 0,
  1339. "_localZOrder": 0,
  1340. "_globalZOrder": 0,
  1341. "_opacityModifyRGB": false,
  1342. "groupIndex": 0
  1343. },
  1344. {
  1345. "__type__": "cc.Node",
  1346. "_name": "New RichText",
  1347. "_objFlags": 0,
  1348. "_parent": {
  1349. "__id__": 40
  1350. },
  1351. "_children": [],
  1352. "_tag": -1,
  1353. "_active": true,
  1354. "_components": [
  1355. {
  1356. "__id__": 42
  1357. }
  1358. ],
  1359. "_prefab": {
  1360. "__id__": 43
  1361. },
  1362. "_id": "",
  1363. "_opacity": 255,
  1364. "_color": {
  1365. "__type__": "cc.Color",
  1366. "r": 255,
  1367. "g": 255,
  1368. "b": 255,
  1369. "a": 255
  1370. },
  1371. "_cascadeOpacityEnabled": true,
  1372. "_anchorPoint": {
  1373. "__type__": "cc.Vec2",
  1374. "x": 0.5,
  1375. "y": 0.5
  1376. },
  1377. "_contentSize": {
  1378. "__type__": "cc.Size",
  1379. "width": 244,
  1380. "height": 50
  1381. },
  1382. "_rotationX": 0,
  1383. "_rotationY": 0,
  1384. "_scaleX": 1,
  1385. "_scaleY": 1,
  1386. "_position": {
  1387. "__type__": "cc.Vec2",
  1388. "x": 0,
  1389. "y": 0
  1390. },
  1391. "_skewX": 0,
  1392. "_skewY": 0,
  1393. "_localZOrder": 0,
  1394. "_globalZOrder": 0,
  1395. "_opacityModifyRGB": false,
  1396. "groupIndex": 0
  1397. },
  1398. {
  1399. "__type__": "cc.RichText",
  1400. "_name": "",
  1401. "_objFlags": 0,
  1402. "node": {
  1403. "__id__": 41
  1404. },
  1405. "_enabled": true,
  1406. "_N$string": "<outline color=#e8e9e9 width=2><b><color=#584A47>选择驻场艺人</c></b></outline>",
  1407. "_N$horizontalAlign": 0,
  1408. "_N$fontSize": 40,
  1409. "_N$font": null,
  1410. "_N$maxWidth": 0,
  1411. "_N$lineHeight": 50,
  1412. "_N$imageAtlas": null,
  1413. "_N$handleTouchEvent": true
  1414. },
  1415. {
  1416. "__type__": "cc.PrefabInfo",
  1417. "root": {
  1418. "__id__": 1
  1419. },
  1420. "asset": {
  1421. "__uuid__": "f0a9cf27-5e7c-4d23-98f5-8835eb16d81f"
  1422. },
  1423. "fileId": "a0oPDuqNRLzJ687ZsX5atM",
  1424. "sync": false
  1425. },
  1426. {
  1427. "__type__": "cc.Sprite",
  1428. "_name": "",
  1429. "_objFlags": 0,
  1430. "node": {
  1431. "__id__": 40
  1432. },
  1433. "_enabled": true,
  1434. "_spriteFrame": {
  1435. "__uuid__": "b9030c1a-bfd3-45dc-ac22-58bb1691bead"
  1436. },
  1437. "_type": 0,
  1438. "_sizeMode": 1,
  1439. "_fillType": 0,
  1440. "_fillCenter": {
  1441. "__type__": "cc.Vec2",
  1442. "x": 0,
  1443. "y": 0
  1444. },
  1445. "_fillStart": 0,
  1446. "_fillRange": 0,
  1447. "_isTrimmedMode": true,
  1448. "_srcBlendFactor": 770,
  1449. "_dstBlendFactor": 771,
  1450. "_atlas": null
  1451. },
  1452. {
  1453. "__type__": "cc.Widget",
  1454. "_name": "",
  1455. "_objFlags": 0,
  1456. "node": {
  1457. "__id__": 40
  1458. },
  1459. "_enabled": true,
  1460. "alignMode": 1,
  1461. "_target": null,
  1462. "_alignFlags": 17,
  1463. "_left": 0,
  1464. "_right": 0,
  1465. "_top": 24.5,
  1466. "_bottom": 0,
  1467. "_verticalCenter": 0,
  1468. "_horizontalCenter": 0,
  1469. "_isAbsLeft": true,
  1470. "_isAbsRight": true,
  1471. "_isAbsTop": true,
  1472. "_isAbsBottom": true,
  1473. "_isAbsHorizontalCenter": true,
  1474. "_isAbsVerticalCenter": true,
  1475. "_originalWidth": 0,
  1476. "_originalHeight": 0
  1477. },
  1478. {
  1479. "__type__": "cc.PrefabInfo",
  1480. "root": {
  1481. "__id__": 1
  1482. },
  1483. "asset": {
  1484. "__uuid__": "f0a9cf27-5e7c-4d23-98f5-8835eb16d81f"
  1485. },
  1486. "fileId": "983y5Bs2JAfpz8pszxi3aB",
  1487. "sync": false
  1488. },
  1489. {
  1490. "__type__": "cc.Node",
  1491. "_name": "tipLabel",
  1492. "_objFlags": 0,
  1493. "_parent": {
  1494. "__id__": 25
  1495. },
  1496. "_children": [],
  1497. "_tag": -1,
  1498. "_active": true,
  1499. "_components": [
  1500. {
  1501. "__id__": 48
  1502. },
  1503. {
  1504. "__id__": 49
  1505. }
  1506. ],
  1507. "_prefab": {
  1508. "__id__": 50
  1509. },
  1510. "_id": "",
  1511. "_opacity": 255,
  1512. "_color": {
  1513. "__type__": "cc.Color",
  1514. "r": 211,
  1515. "g": 78,
  1516. "b": 5,
  1517. "a": 255
  1518. },
  1519. "_cascadeOpacityEnabled": true,
  1520. "_anchorPoint": {
  1521. "__type__": "cc.Vec2",
  1522. "x": 0.5,
  1523. "y": 1
  1524. },
  1525. "_contentSize": {
  1526. "__type__": "cc.Size",
  1527. "width": 500,
  1528. "height": 30
  1529. },
  1530. "_rotationX": 0,
  1531. "_rotationY": 0,
  1532. "_scaleX": 1,
  1533. "_scaleY": 1,
  1534. "_position": {
  1535. "__type__": "cc.Vec2",
  1536. "x": 0,
  1537. "y": 393
  1538. },
  1539. "_skewX": 0,
  1540. "_skewY": 0,
  1541. "_localZOrder": 0,
  1542. "_globalZOrder": 0,
  1543. "_opacityModifyRGB": false,
  1544. "groupIndex": 0
  1545. },
  1546. {
  1547. "__type__": "cc.Label",
  1548. "_name": "",
  1549. "_objFlags": 0,
  1550. "node": {
  1551. "__id__": 47
  1552. },
  1553. "_enabled": true,
  1554. "_useOriginalSize": false,
  1555. "_actualFontSize": 24,
  1556. "_fontSize": 24,
  1557. "_lineHeight": 30,
  1558. "_enableWrapText": true,
  1559. "_N$file": null,
  1560. "_isSystemFontUsed": true,
  1561. "_spacingX": 0,
  1562. "_N$string": "艺人每次入驻消耗10点亲密度",
  1563. "_N$horizontalAlign": 1,
  1564. "_N$verticalAlign": 1,
  1565. "_N$fontFamily": "Arial",
  1566. "_N$overflow": 3
  1567. },
  1568. {
  1569. "__type__": "cc.Widget",
  1570. "_name": "",
  1571. "_objFlags": 0,
  1572. "node": {
  1573. "__id__": 47
  1574. },
  1575. "_enabled": true,
  1576. "alignMode": 1,
  1577. "_target": null,
  1578. "_alignFlags": 17,
  1579. "_left": 0,
  1580. "_right": 0,
  1581. "_top": 125.5,
  1582. "_bottom": 0,
  1583. "_verticalCenter": 0,
  1584. "_horizontalCenter": 0,
  1585. "_isAbsLeft": true,
  1586. "_isAbsRight": true,
  1587. "_isAbsTop": true,
  1588. "_isAbsBottom": true,
  1589. "_isAbsHorizontalCenter": true,
  1590. "_isAbsVerticalCenter": true,
  1591. "_originalWidth": 0,
  1592. "_originalHeight": 0
  1593. },
  1594. {
  1595. "__type__": "cc.PrefabInfo",
  1596. "root": {
  1597. "__id__": 1
  1598. },
  1599. "asset": {
  1600. "__uuid__": "f0a9cf27-5e7c-4d23-98f5-8835eb16d81f"
  1601. },
  1602. "fileId": "05SAN4iYpEHbMpu4NBbp8v",
  1603. "sync": false
  1604. },
  1605. {
  1606. "__type__": "cc.Sprite",
  1607. "_name": "",
  1608. "_objFlags": 0,
  1609. "node": {
  1610. "__id__": 25
  1611. },
  1612. "_enabled": true,
  1613. "_spriteFrame": {
  1614. "__uuid__": "a2ac8dde-3545-4808-806d-007d00d8f87f"
  1615. },
  1616. "_type": 1,
  1617. "_sizeMode": 0,
  1618. "_fillType": 0,
  1619. "_fillCenter": {
  1620. "__type__": "cc.Vec2",
  1621. "x": 0,
  1622. "y": 0
  1623. },
  1624. "_fillStart": 0,
  1625. "_fillRange": 0,
  1626. "_isTrimmedMode": true,
  1627. "_srcBlendFactor": 770,
  1628. "_dstBlendFactor": 771,
  1629. "_atlas": null
  1630. },
  1631. {
  1632. "__type__": "cc.Widget",
  1633. "_name": "",
  1634. "_objFlags": 0,
  1635. "node": {
  1636. "__id__": 25
  1637. },
  1638. "_enabled": true,
  1639. "alignMode": 1,
  1640. "_target": null,
  1641. "_alignFlags": 41,
  1642. "_left": 10,
  1643. "_right": 10,
  1644. "_top": 10,
  1645. "_bottom": 0,
  1646. "_verticalCenter": 0,
  1647. "_horizontalCenter": 0,
  1648. "_isAbsLeft": true,
  1649. "_isAbsRight": true,
  1650. "_isAbsTop": true,
  1651. "_isAbsBottom": true,
  1652. "_isAbsHorizontalCenter": true,
  1653. "_isAbsVerticalCenter": true,
  1654. "_originalWidth": 66,
  1655. "_originalHeight": 0
  1656. },
  1657. {
  1658. "__type__": "cc.PrefabInfo",
  1659. "root": {
  1660. "__id__": 1
  1661. },
  1662. "asset": {
  1663. "__uuid__": "f0a9cf27-5e7c-4d23-98f5-8835eb16d81f"
  1664. },
  1665. "fileId": "74wz/YL7hOYowWQOyIQpYN",
  1666. "sync": false
  1667. },
  1668. {
  1669. "__type__": "cc.Node",
  1670. "_name": "close_btn",
  1671. "_objFlags": 0,
  1672. "_parent": {
  1673. "__id__": 6
  1674. },
  1675. "_children": [
  1676. {
  1677. "__id__": 55
  1678. }
  1679. ],
  1680. "_tag": -1,
  1681. "_active": true,
  1682. "_components": [
  1683. {
  1684. "__id__": 58
  1685. }
  1686. ],
  1687. "_prefab": {
  1688. "__id__": 60
  1689. },
  1690. "_id": "",
  1691. "_opacity": 255,
  1692. "_color": {
  1693. "__type__": "cc.Color",
  1694. "r": 255,
  1695. "g": 255,
  1696. "b": 255,
  1697. "a": 255
  1698. },
  1699. "_cascadeOpacityEnabled": true,
  1700. "_anchorPoint": {
  1701. "__type__": "cc.Vec2",
  1702. "x": 0.5,
  1703. "y": 0.5
  1704. },
  1705. "_contentSize": {
  1706. "__type__": "cc.Size",
  1707. "width": 44,
  1708. "height": 44
  1709. },
  1710. "_rotationX": 0,
  1711. "_rotationY": 0,
  1712. "_scaleX": 1,
  1713. "_scaleY": 1,
  1714. "_position": {
  1715. "__type__": "cc.Vec2",
  1716. "x": 335,
  1717. "y": 574
  1718. },
  1719. "_skewX": 0,
  1720. "_skewY": 0,
  1721. "_localZOrder": 0,
  1722. "_globalZOrder": 0,
  1723. "_opacityModifyRGB": false,
  1724. "groupIndex": 0
  1725. },
  1726. {
  1727. "__type__": "cc.Node",
  1728. "_name": "New Sprite",
  1729. "_objFlags": 0,
  1730. "_parent": {
  1731. "__id__": 54
  1732. },
  1733. "_children": [],
  1734. "_tag": -1,
  1735. "_active": true,
  1736. "_components": [
  1737. {
  1738. "__id__": 56
  1739. }
  1740. ],
  1741. "_prefab": {
  1742. "__id__": 57
  1743. },
  1744. "_id": "",
  1745. "_opacity": 255,
  1746. "_color": {
  1747. "__type__": "cc.Color",
  1748. "r": 255,
  1749. "g": 255,
  1750. "b": 255,
  1751. "a": 255
  1752. },
  1753. "_cascadeOpacityEnabled": true,
  1754. "_anchorPoint": {
  1755. "__type__": "cc.Vec2",
  1756. "x": 0.5,
  1757. "y": 0.5
  1758. },
  1759. "_contentSize": {
  1760. "__type__": "cc.Size",
  1761. "width": 70,
  1762. "height": 72
  1763. },
  1764. "_rotationX": 0,
  1765. "_rotationY": 0,
  1766. "_scaleX": 1,
  1767. "_scaleY": 1,
  1768. "_position": {
  1769. "__type__": "cc.Vec2",
  1770. "x": 0,
  1771. "y": -1.4
  1772. },
  1773. "_skewX": 0,
  1774. "_skewY": 0,
  1775. "_localZOrder": 0,
  1776. "_globalZOrder": 0,
  1777. "_opacityModifyRGB": false,
  1778. "groupIndex": 0
  1779. },
  1780. {
  1781. "__type__": "cc.Sprite",
  1782. "_name": "",
  1783. "_objFlags": 0,
  1784. "node": {
  1785. "__id__": 55
  1786. },
  1787. "_enabled": true,
  1788. "_spriteFrame": {
  1789. "__uuid__": "d81639e6-1728-48fa-854b-da4cdcc7709c"
  1790. },
  1791. "_type": 0,
  1792. "_sizeMode": 1,
  1793. "_fillType": 0,
  1794. "_fillCenter": {
  1795. "__type__": "cc.Vec2",
  1796. "x": 0,
  1797. "y": 0
  1798. },
  1799. "_fillStart": 0,
  1800. "_fillRange": 0,
  1801. "_isTrimmedMode": true,
  1802. "_srcBlendFactor": 770,
  1803. "_dstBlendFactor": 771,
  1804. "_atlas": null
  1805. },
  1806. {
  1807. "__type__": "cc.PrefabInfo",
  1808. "root": {
  1809. "__id__": 1
  1810. },
  1811. "asset": {
  1812. "__uuid__": "f0a9cf27-5e7c-4d23-98f5-8835eb16d81f"
  1813. },
  1814. "fileId": "32TV4pQuBPK47TNT34hsBv",
  1815. "sync": false
  1816. },
  1817. {
  1818. "__type__": "cc.Button",
  1819. "_name": "",
  1820. "_objFlags": 0,
  1821. "node": {
  1822. "__id__": 54
  1823. },
  1824. "_enabled": true,
  1825. "transition": 2,
  1826. "pressedColor": {
  1827. "__type__": "cc.Color",
  1828. "r": 255,
  1829. "g": 255,
  1830. "b": 255,
  1831. "a": 255
  1832. },
  1833. "hoverColor": {
  1834. "__type__": "cc.Color",
  1835. "r": 255,
  1836. "g": 255,
  1837. "b": 255,
  1838. "a": 255
  1839. },
  1840. "duration": 0.1,
  1841. "zoomScale": 1.2,
  1842. "clickEvents": [
  1843. {
  1844. "__id__": 59
  1845. }
  1846. ],
  1847. "_N$interactable": true,
  1848. "_N$enableAutoGrayEffect": false,
  1849. "_N$normalColor": {
  1850. "__type__": "cc.Color",
  1851. "r": 255,
  1852. "g": 255,
  1853. "b": 255,
  1854. "a": 255
  1855. },
  1856. "_N$disabledColor": {
  1857. "__type__": "cc.Color",
  1858. "r": 255,
  1859. "g": 255,
  1860. "b": 255,
  1861. "a": 255
  1862. },
  1863. "_N$normalSprite": null,
  1864. "_N$pressedSprite": null,
  1865. "pressedSprite": null,
  1866. "_N$hoverSprite": null,
  1867. "hoverSprite": null,
  1868. "_N$disabledSprite": null,
  1869. "_N$target": {
  1870. "__id__": 54
  1871. }
  1872. },
  1873. {
  1874. "__type__": "cc.ClickEvent",
  1875. "target": {
  1876. "__id__": 1
  1877. },
  1878. "component": "ArtistResident",
  1879. "handler": "close",
  1880. "customEventData": ""
  1881. },
  1882. {
  1883. "__type__": "cc.PrefabInfo",
  1884. "root": {
  1885. "__id__": 1
  1886. },
  1887. "asset": {
  1888. "__uuid__": "f0a9cf27-5e7c-4d23-98f5-8835eb16d81f"
  1889. },
  1890. "fileId": "faH5yiDAJCcY61dcEvSsy0",
  1891. "sync": false
  1892. },
  1893. {
  1894. "__type__": "cc.Sprite",
  1895. "_name": "",
  1896. "_objFlags": 0,
  1897. "node": {
  1898. "__id__": 6
  1899. },
  1900. "_enabled": true,
  1901. "_spriteFrame": {
  1902. "__uuid__": "9d941ff9-db60-4478-a10a-9cca0e13a81e"
  1903. },
  1904. "_type": 1,
  1905. "_sizeMode": 0,
  1906. "_fillType": 0,
  1907. "_fillCenter": {
  1908. "__type__": "cc.Vec2",
  1909. "x": 0,
  1910. "y": 0
  1911. },
  1912. "_fillStart": 0,
  1913. "_fillRange": 0,
  1914. "_isTrimmedMode": true,
  1915. "_srcBlendFactor": 770,
  1916. "_dstBlendFactor": 771,
  1917. "_atlas": null
  1918. },
  1919. {
  1920. "__type__": "cc.PrefabInfo",
  1921. "root": {
  1922. "__id__": 1
  1923. },
  1924. "asset": {
  1925. "__uuid__": "f0a9cf27-5e7c-4d23-98f5-8835eb16d81f"
  1926. },
  1927. "fileId": "022SefIiBCWZeMlWvHFcbR",
  1928. "sync": false
  1929. },
  1930. {
  1931. "__type__": "d9652/8771F7pJ0yJiCs0i0",
  1932. "_name": "",
  1933. "_objFlags": 0,
  1934. "node": {
  1935. "__id__": 1
  1936. },
  1937. "_enabled": true,
  1938. "content": {
  1939. "__id__": 6
  1940. },
  1941. "scrollView": {
  1942. "__id__": 38
  1943. },
  1944. "noArtistTip": {
  1945. "__id__": 26
  1946. },
  1947. "talentBtn": {
  1948. "__id__": 12
  1949. },
  1950. "confirmBtn": {
  1951. "__id__": 21
  1952. }
  1953. },
  1954. {
  1955. "__type__": "cc.PrefabInfo",
  1956. "root": {
  1957. "__id__": 1
  1958. },
  1959. "asset": {
  1960. "__uuid__": "f0a9cf27-5e7c-4d23-98f5-8835eb16d81f"
  1961. },
  1962. "fileId": "1fSCdLQPxM951/SgU9/ADZ",
  1963. "sync": false
  1964. }
  1965. ]