artist_operation_alert.prefab 43 KB

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