talent_mission.prefab 39 KB

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