artist_operation_alert.prefab 55 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024
  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__": 98
  31. }
  32. ],
  33. "_prefab": {
  34. "__id__": 99
  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__": 61
  191. },
  192. {
  193. "__id__": 68
  194. },
  195. {
  196. "__id__": 71
  197. },
  198. {
  199. "__id__": 79
  200. },
  201. {
  202. "__id__": 82
  203. },
  204. {
  205. "__id__": 85
  206. },
  207. {
  208. "__id__": 88
  209. },
  210. {
  211. "__id__": 93
  212. }
  213. ],
  214. "_tag": -1,
  215. "_active": true,
  216. "_components": [
  217. {
  218. "__id__": 96
  219. }
  220. ],
  221. "_prefab": {
  222. "__id__": 97
  223. },
  224. "_id": "",
  225. "_opacity": 255,
  226. "_color": {
  227. "__type__": "cc.Color",
  228. "r": 255,
  229. "g": 255,
  230. "b": 255,
  231. "a": 255
  232. },
  233. "_cascadeOpacityEnabled": true,
  234. "_anchorPoint": {
  235. "__type__": "cc.Vec2",
  236. "x": 0.5,
  237. "y": 0.5
  238. },
  239. "_contentSize": {
  240. "__type__": "cc.Size",
  241. "width": 700,
  242. "height": 620
  243. },
  244. "_rotationX": 0,
  245. "_rotationY": 0,
  246. "_scaleX": 1,
  247. "_scaleY": 1,
  248. "_position": {
  249. "__type__": "cc.Vec2",
  250. "x": 11,
  251. "y": 13.2
  252. },
  253. "_skewX": 0,
  254. "_skewY": 0,
  255. "_localZOrder": 0,
  256. "_globalZOrder": 0,
  257. "_opacityModifyRGB": false,
  258. "groupIndex": 0
  259. },
  260. {
  261. "__type__": "cc.Node",
  262. "_name": "artist_operation_top_bg",
  263. "_objFlags": 0,
  264. "_parent": {
  265. "__id__": 6
  266. },
  267. "_children": [
  268. {
  269. "__id__": 8
  270. }
  271. ],
  272. "_tag": -1,
  273. "_active": true,
  274. "_components": [
  275. {
  276. "__id__": 12
  277. },
  278. {
  279. "__id__": 13
  280. }
  281. ],
  282. "_prefab": {
  283. "__id__": 14
  284. },
  285. "_id": "",
  286. "_opacity": 255,
  287. "_color": {
  288. "__type__": "cc.Color",
  289. "r": 255,
  290. "g": 255,
  291. "b": 255,
  292. "a": 255
  293. },
  294. "_cascadeOpacityEnabled": true,
  295. "_anchorPoint": {
  296. "__type__": "cc.Vec2",
  297. "x": 0.5,
  298. "y": 0.5
  299. },
  300. "_contentSize": {
  301. "__type__": "cc.Size",
  302. "width": 316,
  303. "height": 86
  304. },
  305. "_rotationX": 0,
  306. "_rotationY": 0,
  307. "_scaleX": 1,
  308. "_scaleY": 1,
  309. "_position": {
  310. "__type__": "cc.Vec2",
  311. "x": 0,
  312. "y": 297
  313. },
  314. "_skewX": 0,
  315. "_skewY": 0,
  316. "_localZOrder": 0,
  317. "_globalZOrder": 0,
  318. "_opacityModifyRGB": false,
  319. "groupIndex": 0
  320. },
  321. {
  322. "__type__": "cc.Node",
  323. "_name": "titleRichText",
  324. "_objFlags": 0,
  325. "_parent": {
  326. "__id__": 7
  327. },
  328. "_children": [],
  329. "_tag": -1,
  330. "_active": true,
  331. "_components": [
  332. {
  333. "__id__": 9
  334. },
  335. {
  336. "__id__": 10
  337. }
  338. ],
  339. "_prefab": {
  340. "__id__": 11
  341. },
  342. "_id": "",
  343. "_opacity": 255,
  344. "_color": {
  345. "__type__": "cc.Color",
  346. "r": 255,
  347. "g": 255,
  348. "b": 255,
  349. "a": 255
  350. },
  351. "_cascadeOpacityEnabled": true,
  352. "_anchorPoint": {
  353. "__type__": "cc.Vec2",
  354. "x": 0.5,
  355. "y": 0.5
  356. },
  357. "_contentSize": {
  358. "__type__": "cc.Size",
  359. "width": 164,
  360. "height": 50
  361. },
  362. "_rotationX": 0,
  363. "_rotationY": 0,
  364. "_scaleX": 1,
  365. "_scaleY": 1,
  366. "_position": {
  367. "__type__": "cc.Vec2",
  368. "x": 0,
  369. "y": 0
  370. },
  371. "_skewX": 0,
  372. "_skewY": 0,
  373. "_localZOrder": 0,
  374. "_globalZOrder": 0,
  375. "_opacityModifyRGB": false,
  376. "groupIndex": 0
  377. },
  378. {
  379. "__type__": "cc.RichText",
  380. "_name": "",
  381. "_objFlags": 0,
  382. "node": {
  383. "__id__": 8
  384. },
  385. "_enabled": true,
  386. "_N$string": "<outline color=#e8e9e9 width=2><b><color=#584A47>艺人召回</c></b></outline>",
  387. "_N$horizontalAlign": 0,
  388. "_N$fontSize": 40,
  389. "_N$font": null,
  390. "_N$maxWidth": 0,
  391. "_N$lineHeight": 50,
  392. "_N$imageAtlas": null,
  393. "_N$handleTouchEvent": true
  394. },
  395. {
  396. "__type__": "cc.Widget",
  397. "_name": "",
  398. "_objFlags": 0,
  399. "node": {
  400. "__id__": 8
  401. },
  402. "_enabled": true,
  403. "alignMode": 1,
  404. "_target": null,
  405. "_alignFlags": 18,
  406. "_left": 0,
  407. "_right": 0,
  408. "_top": 0,
  409. "_bottom": 0,
  410. "_verticalCenter": 0,
  411. "_horizontalCenter": 0,
  412. "_isAbsLeft": true,
  413. "_isAbsRight": true,
  414. "_isAbsTop": true,
  415. "_isAbsBottom": true,
  416. "_isAbsHorizontalCenter": true,
  417. "_isAbsVerticalCenter": true,
  418. "_originalWidth": 0,
  419. "_originalHeight": 0
  420. },
  421. {
  422. "__type__": "cc.PrefabInfo",
  423. "root": {
  424. "__id__": 1
  425. },
  426. "asset": {
  427. "__uuid__": "64f95b4c-f6d5-4bed-acbd-322b8c836cf8"
  428. },
  429. "fileId": "3fW68JR8BI1IPHinVgRLuo",
  430. "sync": false
  431. },
  432. {
  433. "__type__": "cc.Sprite",
  434. "_name": "",
  435. "_objFlags": 0,
  436. "node": {
  437. "__id__": 7
  438. },
  439. "_enabled": true,
  440. "_spriteFrame": {
  441. "__uuid__": "b9030c1a-bfd3-45dc-ac22-58bb1691bead"
  442. },
  443. "_type": 0,
  444. "_sizeMode": 1,
  445. "_fillType": 0,
  446. "_fillCenter": {
  447. "__type__": "cc.Vec2",
  448. "x": 0,
  449. "y": 0
  450. },
  451. "_fillStart": 0,
  452. "_fillRange": 0,
  453. "_isTrimmedMode": true,
  454. "_srcBlendFactor": 770,
  455. "_dstBlendFactor": 771,
  456. "_atlas": null
  457. },
  458. {
  459. "__type__": "cc.Widget",
  460. "_name": "",
  461. "_objFlags": 0,
  462. "node": {
  463. "__id__": 7
  464. },
  465. "_enabled": true,
  466. "alignMode": 1,
  467. "_target": null,
  468. "_alignFlags": 17,
  469. "_left": 0,
  470. "_right": 0,
  471. "_top": -30,
  472. "_bottom": 0,
  473. "_verticalCenter": 0,
  474. "_horizontalCenter": 0,
  475. "_isAbsLeft": true,
  476. "_isAbsRight": true,
  477. "_isAbsTop": true,
  478. "_isAbsBottom": true,
  479. "_isAbsHorizontalCenter": true,
  480. "_isAbsVerticalCenter": true,
  481. "_originalWidth": 0,
  482. "_originalHeight": 0
  483. },
  484. {
  485. "__type__": "cc.PrefabInfo",
  486. "root": {
  487. "__id__": 1
  488. },
  489. "asset": {
  490. "__uuid__": "64f95b4c-f6d5-4bed-acbd-322b8c836cf8"
  491. },
  492. "fileId": "bf+/U9m6pLkqWM5q6mp3NY",
  493. "sync": false
  494. },
  495. {
  496. "__type__": "cc.Node",
  497. "_name": "info_node",
  498. "_objFlags": 0,
  499. "_parent": {
  500. "__id__": 6
  501. },
  502. "_children": [
  503. {
  504. "__id__": 16
  505. },
  506. {
  507. "__id__": 25
  508. },
  509. {
  510. "__id__": 28
  511. },
  512. {
  513. "__id__": 31
  514. },
  515. {
  516. "__id__": 35
  517. },
  518. {
  519. "__id__": 39
  520. },
  521. {
  522. "__id__": 43
  523. }
  524. ],
  525. "_tag": -1,
  526. "_active": true,
  527. "_components": [],
  528. "_prefab": {
  529. "__id__": 60
  530. },
  531. "_id": "",
  532. "_opacity": 255,
  533. "_color": {
  534. "__type__": "cc.Color",
  535. "r": 255,
  536. "g": 255,
  537. "b": 255,
  538. "a": 255
  539. },
  540. "_cascadeOpacityEnabled": true,
  541. "_anchorPoint": {
  542. "__type__": "cc.Vec2",
  543. "x": 0.5,
  544. "y": 0.5
  545. },
  546. "_contentSize": {
  547. "__type__": "cc.Size",
  548. "width": 0,
  549. "height": 0
  550. },
  551. "_rotationX": 0,
  552. "_rotationY": 0,
  553. "_scaleX": 1,
  554. "_scaleY": 1,
  555. "_position": {
  556. "__type__": "cc.Vec2",
  557. "x": 0,
  558. "y": 16
  559. },
  560. "_skewX": 0,
  561. "_skewY": 0,
  562. "_localZOrder": 0,
  563. "_globalZOrder": 0,
  564. "_opacityModifyRGB": false,
  565. "groupIndex": 0
  566. },
  567. {
  568. "__type__": "cc.Node",
  569. "_name": "avatorNode",
  570. "_objFlags": 0,
  571. "_parent": {
  572. "__id__": 15
  573. },
  574. "_children": [
  575. {
  576. "__id__": 17
  577. },
  578. {
  579. "__id__": 21
  580. }
  581. ],
  582. "_tag": -1,
  583. "_active": true,
  584. "_components": [],
  585. "_prefab": {
  586. "__id__": 24
  587. },
  588. "_id": "",
  589. "_opacity": 255,
  590. "_color": {
  591. "__type__": "cc.Color",
  592. "r": 255,
  593. "g": 255,
  594. "b": 255,
  595. "a": 255
  596. },
  597. "_cascadeOpacityEnabled": true,
  598. "_anchorPoint": {
  599. "__type__": "cc.Vec2",
  600. "x": 0.5,
  601. "y": 0.5
  602. },
  603. "_contentSize": {
  604. "__type__": "cc.Size",
  605. "width": 100,
  606. "height": 103
  607. },
  608. "_rotationX": 0,
  609. "_rotationY": 0,
  610. "_scaleX": 1,
  611. "_scaleY": 1,
  612. "_position": {
  613. "__type__": "cc.Vec2",
  614. "x": -84,
  615. "y": 164.3
  616. },
  617. "_skewX": 0,
  618. "_skewY": 0,
  619. "_localZOrder": 0,
  620. "_globalZOrder": 0,
  621. "_opacityModifyRGB": false,
  622. "groupIndex": 0
  623. },
  624. {
  625. "__type__": "cc.Node",
  626. "_name": "headSprite",
  627. "_objFlags": 0,
  628. "_parent": {
  629. "__id__": 16
  630. },
  631. "_children": [],
  632. "_tag": -1,
  633. "_active": true,
  634. "_components": [
  635. {
  636. "__id__": 18
  637. },
  638. {
  639. "__id__": 19
  640. }
  641. ],
  642. "_prefab": {
  643. "__id__": 20
  644. },
  645. "_id": "",
  646. "_opacity": 255,
  647. "_color": {
  648. "__type__": "cc.Color",
  649. "r": 255,
  650. "g": 255,
  651. "b": 255,
  652. "a": 255
  653. },
  654. "_cascadeOpacityEnabled": true,
  655. "_anchorPoint": {
  656. "__type__": "cc.Vec2",
  657. "x": 0.5,
  658. "y": 0.5
  659. },
  660. "_contentSize": {
  661. "__type__": "cc.Size",
  662. "width": 90,
  663. "height": 90
  664. },
  665. "_rotationX": 0,
  666. "_rotationY": 0,
  667. "_scaleX": 1,
  668. "_scaleY": 1,
  669. "_position": {
  670. "__type__": "cc.Vec2",
  671. "x": 0,
  672. "y": 0
  673. },
  674. "_skewX": 0,
  675. "_skewY": 0,
  676. "_localZOrder": 0,
  677. "_globalZOrder": 0,
  678. "_opacityModifyRGB": false,
  679. "groupIndex": 0
  680. },
  681. {
  682. "__type__": "cc.Sprite",
  683. "_name": "",
  684. "_objFlags": 0,
  685. "node": {
  686. "__id__": 17
  687. },
  688. "_enabled": true,
  689. "_spriteFrame": null,
  690. "_type": 0,
  691. "_sizeMode": 0,
  692. "_fillType": 0,
  693. "_fillCenter": {
  694. "__type__": "cc.Vec2",
  695. "x": 0,
  696. "y": 0
  697. },
  698. "_fillStart": 0,
  699. "_fillRange": 0,
  700. "_isTrimmedMode": true,
  701. "_srcBlendFactor": 770,
  702. "_dstBlendFactor": 771,
  703. "_atlas": null
  704. },
  705. {
  706. "__type__": "cc.Widget",
  707. "_name": "",
  708. "_objFlags": 0,
  709. "node": {
  710. "__id__": 17
  711. },
  712. "_enabled": true,
  713. "alignMode": 0,
  714. "_target": null,
  715. "_alignFlags": 45,
  716. "_left": 5,
  717. "_right": 5,
  718. "_top": 6.5,
  719. "_bottom": 6.5,
  720. "_verticalCenter": 0,
  721. "_horizontalCenter": 0,
  722. "_isAbsLeft": true,
  723. "_isAbsRight": true,
  724. "_isAbsTop": true,
  725. "_isAbsBottom": true,
  726. "_isAbsHorizontalCenter": true,
  727. "_isAbsVerticalCenter": true,
  728. "_originalWidth": 40,
  729. "_originalHeight": 36
  730. },
  731. {
  732. "__type__": "cc.PrefabInfo",
  733. "root": {
  734. "__id__": 1
  735. },
  736. "asset": {
  737. "__uuid__": "64f95b4c-f6d5-4bed-acbd-322b8c836cf8"
  738. },
  739. "fileId": "e0B3xpmb1OyJNEVjSu+sEn",
  740. "sync": false
  741. },
  742. {
  743. "__type__": "cc.Node",
  744. "_name": "artist_operation_head",
  745. "_objFlags": 0,
  746. "_parent": {
  747. "__id__": 16
  748. },
  749. "_children": [],
  750. "_tag": -1,
  751. "_active": true,
  752. "_components": [
  753. {
  754. "__id__": 22
  755. }
  756. ],
  757. "_prefab": {
  758. "__id__": 23
  759. },
  760. "_id": "",
  761. "_opacity": 255,
  762. "_color": {
  763. "__type__": "cc.Color",
  764. "r": 255,
  765. "g": 255,
  766. "b": 255,
  767. "a": 255
  768. },
  769. "_cascadeOpacityEnabled": true,
  770. "_anchorPoint": {
  771. "__type__": "cc.Vec2",
  772. "x": 0.5,
  773. "y": 0.5
  774. },
  775. "_contentSize": {
  776. "__type__": "cc.Size",
  777. "width": 100,
  778. "height": 103
  779. },
  780. "_rotationX": 0,
  781. "_rotationY": 0,
  782. "_scaleX": 1,
  783. "_scaleY": 1,
  784. "_position": {
  785. "__type__": "cc.Vec2",
  786. "x": 0,
  787. "y": 0
  788. },
  789. "_skewX": 0,
  790. "_skewY": 0,
  791. "_localZOrder": 0,
  792. "_globalZOrder": 0,
  793. "_opacityModifyRGB": false,
  794. "groupIndex": 0
  795. },
  796. {
  797. "__type__": "cc.Sprite",
  798. "_name": "",
  799. "_objFlags": 0,
  800. "node": {
  801. "__id__": 21
  802. },
  803. "_enabled": true,
  804. "_spriteFrame": {
  805. "__uuid__": "7f5be40a-25e4-49cd-ba15-f137431bcfda"
  806. },
  807. "_type": 0,
  808. "_sizeMode": 1,
  809. "_fillType": 0,
  810. "_fillCenter": {
  811. "__type__": "cc.Vec2",
  812. "x": 0,
  813. "y": 0
  814. },
  815. "_fillStart": 0,
  816. "_fillRange": 0,
  817. "_isTrimmedMode": true,
  818. "_srcBlendFactor": 770,
  819. "_dstBlendFactor": 771,
  820. "_atlas": null
  821. },
  822. {
  823. "__type__": "cc.PrefabInfo",
  824. "root": {
  825. "__id__": 1
  826. },
  827. "asset": {
  828. "__uuid__": "64f95b4c-f6d5-4bed-acbd-322b8c836cf8"
  829. },
  830. "fileId": "0d8E9U5J9KKICtYMnsScQf",
  831. "sync": false
  832. },
  833. {
  834. "__type__": "cc.PrefabInfo",
  835. "root": {
  836. "__id__": 1
  837. },
  838. "asset": {
  839. "__uuid__": "64f95b4c-f6d5-4bed-acbd-322b8c836cf8"
  840. },
  841. "fileId": "5cKLNxWSxOQYP31WmZGz9d",
  842. "sync": false
  843. },
  844. {
  845. "__type__": "cc.Node",
  846. "_name": "nick_richlabel",
  847. "_objFlags": 0,
  848. "_parent": {
  849. "__id__": 15
  850. },
  851. "_children": [],
  852. "_tag": -1,
  853. "_active": true,
  854. "_components": [
  855. {
  856. "__id__": 26
  857. }
  858. ],
  859. "_prefab": {
  860. "__id__": 27
  861. },
  862. "_id": "",
  863. "_opacity": 255,
  864. "_color": {
  865. "__type__": "cc.Color",
  866. "r": 255,
  867. "g": 255,
  868. "b": 255,
  869. "a": 255
  870. },
  871. "_cascadeOpacityEnabled": true,
  872. "_anchorPoint": {
  873. "__type__": "cc.Vec2",
  874. "x": 0,
  875. "y": 0.5
  876. },
  877. "_contentSize": {
  878. "__type__": "cc.Size",
  879. "width": 129,
  880. "height": 26
  881. },
  882. "_rotationX": 0,
  883. "_rotationY": 0,
  884. "_scaleX": 1,
  885. "_scaleY": 1,
  886. "_position": {
  887. "__type__": "cc.Vec2",
  888. "x": -13.9,
  889. "y": 189.3
  890. },
  891. "_skewX": 0,
  892. "_skewY": 0,
  893. "_localZOrder": 0,
  894. "_globalZOrder": 0,
  895. "_opacityModifyRGB": false,
  896. "groupIndex": 0
  897. },
  898. {
  899. "__type__": "cc.RichText",
  900. "_name": "",
  901. "_objFlags": 0,
  902. "node": {
  903. "__id__": 25
  904. },
  905. "_enabled": true,
  906. "_N$string": "<color=#584a47>酷拉皮卡</c> <img src='50002'/>",
  907. "_N$horizontalAlign": 0,
  908. "_N$fontSize": 24,
  909. "_N$font": null,
  910. "_N$maxWidth": 0,
  911. "_N$lineHeight": 26,
  912. "_N$imageAtlas": {
  913. "__uuid__": "d1642694-596d-4edd-a649-0c01f704e8b0"
  914. },
  915. "_N$handleTouchEvent": true
  916. },
  917. {
  918. "__type__": "cc.PrefabInfo",
  919. "root": {
  920. "__id__": 1
  921. },
  922. "asset": {
  923. "__uuid__": "64f95b4c-f6d5-4bed-acbd-322b8c836cf8"
  924. },
  925. "fileId": "0fC8vhn11BcJRKZHPp0jKT",
  926. "sync": false
  927. },
  928. {
  929. "__type__": "cc.Node",
  930. "_name": "job_level_star",
  931. "_objFlags": 0,
  932. "_parent": {
  933. "__id__": 15
  934. },
  935. "_children": [],
  936. "_tag": -1,
  937. "_active": true,
  938. "_components": [
  939. {
  940. "__id__": 29
  941. }
  942. ],
  943. "_prefab": {
  944. "__id__": 30
  945. },
  946. "_id": "",
  947. "_opacity": 255,
  948. "_color": {
  949. "__type__": "cc.Color",
  950. "r": 255,
  951. "g": 255,
  952. "b": 255,
  953. "a": 255
  954. },
  955. "_cascadeOpacityEnabled": true,
  956. "_anchorPoint": {
  957. "__type__": "cc.Vec2",
  958. "x": 0.5,
  959. "y": 0.5
  960. },
  961. "_contentSize": {
  962. "__type__": "cc.Size",
  963. "width": 55,
  964. "height": 51
  965. },
  966. "_rotationX": 0,
  967. "_rotationY": 0,
  968. "_scaleX": 0.6,
  969. "_scaleY": 0.6,
  970. "_position": {
  971. "__type__": "cc.Vec2",
  972. "x": -0.8,
  973. "y": 140.2
  974. },
  975. "_skewX": 0,
  976. "_skewY": 0,
  977. "_localZOrder": 0,
  978. "_globalZOrder": 0,
  979. "_opacityModifyRGB": false,
  980. "groupIndex": 0
  981. },
  982. {
  983. "__type__": "cc.Sprite",
  984. "_name": "",
  985. "_objFlags": 0,
  986. "node": {
  987. "__id__": 28
  988. },
  989. "_enabled": true,
  990. "_spriteFrame": {
  991. "__uuid__": "bddf27cd-4a2e-4882-9101-8bda29e9fd59"
  992. },
  993. "_type": 0,
  994. "_sizeMode": 1,
  995. "_fillType": 0,
  996. "_fillCenter": {
  997. "__type__": "cc.Vec2",
  998. "x": 0,
  999. "y": 0
  1000. },
  1001. "_fillStart": 0,
  1002. "_fillRange": 0,
  1003. "_isTrimmedMode": true,
  1004. "_srcBlendFactor": 770,
  1005. "_dstBlendFactor": 771,
  1006. "_atlas": null
  1007. },
  1008. {
  1009. "__type__": "cc.PrefabInfo",
  1010. "root": {
  1011. "__id__": 1
  1012. },
  1013. "asset": {
  1014. "__uuid__": "64f95b4c-f6d5-4bed-acbd-322b8c836cf8"
  1015. },
  1016. "fileId": "96cl5Tb5JIhr/WWz9dDuqq",
  1017. "sync": false
  1018. },
  1019. {
  1020. "__type__": "cc.Node",
  1021. "_name": "levelLabel",
  1022. "_objFlags": 0,
  1023. "_parent": {
  1024. "__id__": 15
  1025. },
  1026. "_children": [],
  1027. "_tag": -1,
  1028. "_active": true,
  1029. "_components": [
  1030. {
  1031. "__id__": 32
  1032. },
  1033. {
  1034. "__id__": 33
  1035. }
  1036. ],
  1037. "_prefab": {
  1038. "__id__": 34
  1039. },
  1040. "_id": "",
  1041. "_opacity": 255,
  1042. "_color": {
  1043. "__type__": "cc.Color",
  1044. "r": 255,
  1045. "g": 255,
  1046. "b": 255,
  1047. "a": 255
  1048. },
  1049. "_cascadeOpacityEnabled": true,
  1050. "_anchorPoint": {
  1051. "__type__": "cc.Vec2",
  1052. "x": 0.5,
  1053. "y": 0.5
  1054. },
  1055. "_contentSize": {
  1056. "__type__": "cc.Size",
  1057. "width": 22,
  1058. "height": 18
  1059. },
  1060. "_rotationX": 0,
  1061. "_rotationY": 0,
  1062. "_scaleX": 1,
  1063. "_scaleY": 1,
  1064. "_position": {
  1065. "__type__": "cc.Vec2",
  1066. "x": -1.9,
  1067. "y": 137
  1068. },
  1069. "_skewX": 0,
  1070. "_skewY": 0,
  1071. "_localZOrder": 0,
  1072. "_globalZOrder": 0,
  1073. "_opacityModifyRGB": false,
  1074. "groupIndex": 0
  1075. },
  1076. {
  1077. "__type__": "cc.Label",
  1078. "_name": "",
  1079. "_objFlags": 0,
  1080. "node": {
  1081. "__id__": 31
  1082. },
  1083. "_enabled": true,
  1084. "_useOriginalSize": false,
  1085. "_actualFontSize": 16,
  1086. "_fontSize": 16,
  1087. "_lineHeight": 18,
  1088. "_enableWrapText": true,
  1089. "_N$file": null,
  1090. "_isSystemFontUsed": true,
  1091. "_spacingX": 0,
  1092. "_N$string": "10",
  1093. "_N$horizontalAlign": 1,
  1094. "_N$verticalAlign": 1,
  1095. "_N$fontFamily": "Arial",
  1096. "_N$overflow": 0
  1097. },
  1098. {
  1099. "__type__": "cc.LabelOutline",
  1100. "_name": "",
  1101. "_objFlags": 0,
  1102. "node": {
  1103. "__id__": 31
  1104. },
  1105. "_enabled": true,
  1106. "_color": {
  1107. "__type__": "cc.Color",
  1108. "r": 105,
  1109. "g": 46,
  1110. "b": 14,
  1111. "a": 255
  1112. },
  1113. "_width": 2
  1114. },
  1115. {
  1116. "__type__": "cc.PrefabInfo",
  1117. "root": {
  1118. "__id__": 1
  1119. },
  1120. "asset": {
  1121. "__uuid__": "64f95b4c-f6d5-4bed-acbd-322b8c836cf8"
  1122. },
  1123. "fileId": "8cYqEuB6xF8Ydz0o7QdDin",
  1124. "sync": false
  1125. },
  1126. {
  1127. "__type__": "cc.Node",
  1128. "_name": "titleLabel",
  1129. "_objFlags": 0,
  1130. "_parent": {
  1131. "__id__": 15
  1132. },
  1133. "_children": [],
  1134. "_tag": -1,
  1135. "_active": true,
  1136. "_components": [
  1137. {
  1138. "__id__": 36
  1139. },
  1140. {
  1141. "__id__": 37
  1142. }
  1143. ],
  1144. "_prefab": {
  1145. "__id__": 38
  1146. },
  1147. "_id": "",
  1148. "_opacity": 255,
  1149. "_color": {
  1150. "__type__": "cc.Color",
  1151. "r": 211,
  1152. "g": 78,
  1153. "b": 5,
  1154. "a": 255
  1155. },
  1156. "_cascadeOpacityEnabled": true,
  1157. "_anchorPoint": {
  1158. "__type__": "cc.Vec2",
  1159. "x": 0,
  1160. "y": 0.5
  1161. },
  1162. "_contentSize": {
  1163. "__type__": "cc.Size",
  1164. "width": 148,
  1165. "height": 24
  1166. },
  1167. "_rotationX": 0,
  1168. "_rotationY": 0,
  1169. "_scaleX": 1,
  1170. "_scaleY": 1,
  1171. "_position": {
  1172. "__type__": "cc.Vec2",
  1173. "x": 17,
  1174. "y": 138.6
  1175. },
  1176. "_skewX": 0,
  1177. "_skewY": 0,
  1178. "_localZOrder": 0,
  1179. "_globalZOrder": 0,
  1180. "_opacityModifyRGB": false,
  1181. "groupIndex": 0
  1182. },
  1183. {
  1184. "__type__": "cc.Label",
  1185. "_name": "",
  1186. "_objFlags": 0,
  1187. "node": {
  1188. "__id__": 35
  1189. },
  1190. "_enabled": true,
  1191. "_useOriginalSize": false,
  1192. "_actualFontSize": 24,
  1193. "_fontSize": 24,
  1194. "_lineHeight": 24,
  1195. "_enableWrapText": true,
  1196. "_N$file": null,
  1197. "_isSystemFontUsed": true,
  1198. "_spacingX": 0,
  1199. "_N$string": "国际舞林巨星",
  1200. "_N$horizontalAlign": 0,
  1201. "_N$verticalAlign": 1,
  1202. "_N$fontFamily": "Arial",
  1203. "_N$overflow": 0
  1204. },
  1205. {
  1206. "__type__": "cc.LabelOutline",
  1207. "_name": "",
  1208. "_objFlags": 0,
  1209. "node": {
  1210. "__id__": 35
  1211. },
  1212. "_enabled": true,
  1213. "_color": {
  1214. "__type__": "cc.Color",
  1215. "r": 248,
  1216. "g": 241,
  1217. "b": 231,
  1218. "a": 255
  1219. },
  1220. "_width": 2
  1221. },
  1222. {
  1223. "__type__": "cc.PrefabInfo",
  1224. "root": {
  1225. "__id__": 1
  1226. },
  1227. "asset": {
  1228. "__uuid__": "64f95b4c-f6d5-4bed-acbd-322b8c836cf8"
  1229. },
  1230. "fileId": "faBU5hxb1IYoulC3LMhV1p",
  1231. "sync": false
  1232. },
  1233. {
  1234. "__type__": "cc.Node",
  1235. "_name": "costLabel",
  1236. "_objFlags": 0,
  1237. "_parent": {
  1238. "__id__": 15
  1239. },
  1240. "_children": [],
  1241. "_tag": -1,
  1242. "_active": true,
  1243. "_components": [
  1244. {
  1245. "__id__": 40
  1246. },
  1247. {
  1248. "__id__": 41
  1249. }
  1250. ],
  1251. "_prefab": {
  1252. "__id__": 42
  1253. },
  1254. "_id": "",
  1255. "_opacity": 255,
  1256. "_color": {
  1257. "__type__": "cc.Color",
  1258. "r": 169,
  1259. "g": 165,
  1260. "b": 164,
  1261. "a": 255
  1262. },
  1263. "_cascadeOpacityEnabled": true,
  1264. "_anchorPoint": {
  1265. "__type__": "cc.Vec2",
  1266. "x": 0.5,
  1267. "y": 0.5
  1268. },
  1269. "_contentSize": {
  1270. "__type__": "cc.Size",
  1271. "width": 216,
  1272. "height": 20
  1273. },
  1274. "_rotationX": 0,
  1275. "_rotationY": 0,
  1276. "_scaleX": 1,
  1277. "_scaleY": 1,
  1278. "_position": {
  1279. "__type__": "cc.Vec2",
  1280. "x": 0,
  1281. "y": 71.4
  1282. },
  1283. "_skewX": 0,
  1284. "_skewY": 0,
  1285. "_localZOrder": 0,
  1286. "_globalZOrder": 0,
  1287. "_opacityModifyRGB": false,
  1288. "groupIndex": 0
  1289. },
  1290. {
  1291. "__type__": "cc.Label",
  1292. "_name": "",
  1293. "_objFlags": 0,
  1294. "node": {
  1295. "__id__": 39
  1296. },
  1297. "_enabled": true,
  1298. "_useOriginalSize": false,
  1299. "_actualFontSize": 20,
  1300. "_fontSize": 20,
  1301. "_lineHeight": 20,
  1302. "_enableWrapText": true,
  1303. "_N$file": null,
  1304. "_isSystemFontUsed": true,
  1305. "_spacingX": 0,
  1306. "_N$string": "演出时长:12小时/12小时",
  1307. "_N$horizontalAlign": 1,
  1308. "_N$verticalAlign": 1,
  1309. "_N$fontFamily": "Arial",
  1310. "_N$overflow": 0
  1311. },
  1312. {
  1313. "__type__": "cc.Widget",
  1314. "_name": "",
  1315. "_objFlags": 0,
  1316. "node": {
  1317. "__id__": 39
  1318. },
  1319. "_enabled": true,
  1320. "alignMode": 1,
  1321. "_target": null,
  1322. "_alignFlags": 18,
  1323. "_left": 0,
  1324. "_right": 0,
  1325. "_top": 0,
  1326. "_bottom": 0,
  1327. "_verticalCenter": 71.4,
  1328. "_horizontalCenter": 0,
  1329. "_isAbsLeft": true,
  1330. "_isAbsRight": true,
  1331. "_isAbsTop": true,
  1332. "_isAbsBottom": true,
  1333. "_isAbsHorizontalCenter": true,
  1334. "_isAbsVerticalCenter": true,
  1335. "_originalWidth": 0,
  1336. "_originalHeight": 0
  1337. },
  1338. {
  1339. "__type__": "cc.PrefabInfo",
  1340. "root": {
  1341. "__id__": 1
  1342. },
  1343. "asset": {
  1344. "__uuid__": "64f95b4c-f6d5-4bed-acbd-322b8c836cf8"
  1345. },
  1346. "fileId": "c6cA0OC/tNmI7Hk/lhPZe1",
  1347. "sync": false
  1348. },
  1349. {
  1350. "__type__": "cc.Node",
  1351. "_name": "info_bg",
  1352. "_objFlags": 0,
  1353. "_parent": {
  1354. "__id__": 15
  1355. },
  1356. "_children": [
  1357. {
  1358. "__id__": 44
  1359. },
  1360. {
  1361. "__id__": 48
  1362. },
  1363. {
  1364. "__id__": 52
  1365. }
  1366. ],
  1367. "_tag": -1,
  1368. "_active": true,
  1369. "_components": [
  1370. {
  1371. "__id__": 57
  1372. },
  1373. {
  1374. "__id__": 58
  1375. }
  1376. ],
  1377. "_prefab": {
  1378. "__id__": 59
  1379. },
  1380. "_id": "",
  1381. "_opacity": 255,
  1382. "_color": {
  1383. "__type__": "cc.Color",
  1384. "r": 255,
  1385. "g": 255,
  1386. "b": 255,
  1387. "a": 255
  1388. },
  1389. "_cascadeOpacityEnabled": true,
  1390. "_anchorPoint": {
  1391. "__type__": "cc.Vec2",
  1392. "x": 0.5,
  1393. "y": 0.5
  1394. },
  1395. "_contentSize": {
  1396. "__type__": "cc.Size",
  1397. "width": 540,
  1398. "height": 110
  1399. },
  1400. "_rotationX": 0,
  1401. "_rotationY": 0,
  1402. "_scaleX": 1,
  1403. "_scaleY": 1,
  1404. "_position": {
  1405. "__type__": "cc.Vec2",
  1406. "x": 0,
  1407. "y": -8.6
  1408. },
  1409. "_skewX": 0,
  1410. "_skewY": 0,
  1411. "_localZOrder": 0,
  1412. "_globalZOrder": 0,
  1413. "_opacityModifyRGB": false,
  1414. "groupIndex": 0
  1415. },
  1416. {
  1417. "__type__": "cc.Node",
  1418. "_name": "New Label",
  1419. "_objFlags": 0,
  1420. "_parent": {
  1421. "__id__": 43
  1422. },
  1423. "_children": [],
  1424. "_tag": -1,
  1425. "_active": true,
  1426. "_components": [
  1427. {
  1428. "__id__": 45
  1429. },
  1430. {
  1431. "__id__": 46
  1432. }
  1433. ],
  1434. "_prefab": {
  1435. "__id__": 47
  1436. },
  1437. "_id": "",
  1438. "_opacity": 255,
  1439. "_color": {
  1440. "__type__": "cc.Color",
  1441. "r": 255,
  1442. "g": 198,
  1443. "b": 0,
  1444. "a": 255
  1445. },
  1446. "_cascadeOpacityEnabled": true,
  1447. "_anchorPoint": {
  1448. "__type__": "cc.Vec2",
  1449. "x": 0.5,
  1450. "y": 0.5
  1451. },
  1452. "_contentSize": {
  1453. "__type__": "cc.Size",
  1454. "width": 96,
  1455. "height": 26
  1456. },
  1457. "_rotationX": 0,
  1458. "_rotationY": 0,
  1459. "_scaleX": 1,
  1460. "_scaleY": 1,
  1461. "_position": {
  1462. "__type__": "cc.Vec2",
  1463. "x": -175.7,
  1464. "y": 0
  1465. },
  1466. "_skewX": 0,
  1467. "_skewY": 0,
  1468. "_localZOrder": 0,
  1469. "_globalZOrder": 0,
  1470. "_opacityModifyRGB": false,
  1471. "groupIndex": 0
  1472. },
  1473. {
  1474. "__type__": "cc.Label",
  1475. "_name": "",
  1476. "_objFlags": 0,
  1477. "node": {
  1478. "__id__": 44
  1479. },
  1480. "_enabled": true,
  1481. "_useOriginalSize": false,
  1482. "_actualFontSize": 24,
  1483. "_fontSize": 24,
  1484. "_lineHeight": 26,
  1485. "_enableWrapText": true,
  1486. "_N$file": null,
  1487. "_isSystemFontUsed": true,
  1488. "_spacingX": 0,
  1489. "_N$string": "已赚取 : ",
  1490. "_N$horizontalAlign": 1,
  1491. "_N$verticalAlign": 1,
  1492. "_N$fontFamily": "Arial",
  1493. "_N$overflow": 0
  1494. },
  1495. {
  1496. "__type__": "cc.LabelOutline",
  1497. "_name": "",
  1498. "_objFlags": 0,
  1499. "node": {
  1500. "__id__": 44
  1501. },
  1502. "_enabled": true,
  1503. "_color": {
  1504. "__type__": "cc.Color",
  1505. "r": 88,
  1506. "g": 74,
  1507. "b": 71,
  1508. "a": 255
  1509. },
  1510. "_width": 2
  1511. },
  1512. {
  1513. "__type__": "cc.PrefabInfo",
  1514. "root": {
  1515. "__id__": 1
  1516. },
  1517. "asset": {
  1518. "__uuid__": "64f95b4c-f6d5-4bed-acbd-322b8c836cf8"
  1519. },
  1520. "fileId": "4flOdftz1KdbVvy+nvPF4i",
  1521. "sync": false
  1522. },
  1523. {
  1524. "__type__": "cc.Node",
  1525. "_name": "levelHome_coin",
  1526. "_objFlags": 0,
  1527. "_parent": {
  1528. "__id__": 43
  1529. },
  1530. "_children": [],
  1531. "_tag": -1,
  1532. "_active": true,
  1533. "_components": [
  1534. {
  1535. "__id__": 49
  1536. },
  1537. {
  1538. "__id__": 50
  1539. }
  1540. ],
  1541. "_prefab": {
  1542. "__id__": 51
  1543. },
  1544. "_id": "",
  1545. "_opacity": 255,
  1546. "_color": {
  1547. "__type__": "cc.Color",
  1548. "r": 255,
  1549. "g": 255,
  1550. "b": 255,
  1551. "a": 255
  1552. },
  1553. "_cascadeOpacityEnabled": true,
  1554. "_anchorPoint": {
  1555. "__type__": "cc.Vec2",
  1556. "x": 0.5,
  1557. "y": 0.5
  1558. },
  1559. "_contentSize": {
  1560. "__type__": "cc.Size",
  1561. "width": 54,
  1562. "height": 54
  1563. },
  1564. "_rotationX": 0,
  1565. "_rotationY": 0,
  1566. "_scaleX": 0.7,
  1567. "_scaleY": 0.7,
  1568. "_position": {
  1569. "__type__": "cc.Vec2",
  1570. "x": -51.1,
  1571. "y": 0
  1572. },
  1573. "_skewX": 0,
  1574. "_skewY": 0,
  1575. "_localZOrder": 0,
  1576. "_globalZOrder": 0,
  1577. "_opacityModifyRGB": false,
  1578. "groupIndex": 0
  1579. },
  1580. {
  1581. "__type__": "cc.Sprite",
  1582. "_name": "",
  1583. "_objFlags": 0,
  1584. "node": {
  1585. "__id__": 48
  1586. },
  1587. "_enabled": true,
  1588. "_spriteFrame": {
  1589. "__uuid__": "8d0d6dd8-e66f-4bcd-b58c-cb1f3201c4db"
  1590. },
  1591. "_type": 0,
  1592. "_sizeMode": 1,
  1593. "_fillType": 0,
  1594. "_fillCenter": {
  1595. "__type__": "cc.Vec2",
  1596. "x": 0,
  1597. "y": 0
  1598. },
  1599. "_fillStart": 0,
  1600. "_fillRange": 0,
  1601. "_isTrimmedMode": true,
  1602. "_srcBlendFactor": 770,
  1603. "_dstBlendFactor": 771,
  1604. "_atlas": null
  1605. },
  1606. {
  1607. "__type__": "cc.Widget",
  1608. "_name": "",
  1609. "_objFlags": 0,
  1610. "node": {
  1611. "__id__": 48
  1612. },
  1613. "_enabled": true,
  1614. "alignMode": 1,
  1615. "_target": null,
  1616. "_alignFlags": 10,
  1617. "_left": 200,
  1618. "_right": 0,
  1619. "_top": 0,
  1620. "_bottom": 0,
  1621. "_verticalCenter": 0,
  1622. "_horizontalCenter": 0,
  1623. "_isAbsLeft": true,
  1624. "_isAbsRight": true,
  1625. "_isAbsTop": true,
  1626. "_isAbsBottom": true,
  1627. "_isAbsHorizontalCenter": true,
  1628. "_isAbsVerticalCenter": true,
  1629. "_originalWidth": 0,
  1630. "_originalHeight": 0
  1631. },
  1632. {
  1633. "__type__": "cc.PrefabInfo",
  1634. "root": {
  1635. "__id__": 1
  1636. },
  1637. "asset": {
  1638. "__uuid__": "64f95b4c-f6d5-4bed-acbd-322b8c836cf8"
  1639. },
  1640. "fileId": "1f1luh05dHUbJXKhwqwO5O",
  1641. "sync": false
  1642. },
  1643. {
  1644. "__type__": "cc.Node",
  1645. "_name": "New Label",
  1646. "_objFlags": 0,
  1647. "_parent": {
  1648. "__id__": 43
  1649. },
  1650. "_children": [],
  1651. "_tag": -1,
  1652. "_active": true,
  1653. "_components": [
  1654. {
  1655. "__id__": 53
  1656. },
  1657. {
  1658. "__id__": 54
  1659. },
  1660. {
  1661. "__id__": 55
  1662. }
  1663. ],
  1664. "_prefab": {
  1665. "__id__": 56
  1666. },
  1667. "_id": "",
  1668. "_opacity": 255,
  1669. "_color": {
  1670. "__type__": "cc.Color",
  1671. "r": 52,
  1672. "g": 170,
  1673. "b": 34,
  1674. "a": 255
  1675. },
  1676. "_cascadeOpacityEnabled": true,
  1677. "_anchorPoint": {
  1678. "__type__": "cc.Vec2",
  1679. "x": 0,
  1680. "y": 0.5
  1681. },
  1682. "_contentSize": {
  1683. "__type__": "cc.Size",
  1684. "width": 60,
  1685. "height": 40
  1686. },
  1687. "_rotationX": 0,
  1688. "_rotationY": 0,
  1689. "_scaleX": 1,
  1690. "_scaleY": 1,
  1691. "_position": {
  1692. "__type__": "cc.Vec2",
  1693. "x": -20,
  1694. "y": 0
  1695. },
  1696. "_skewX": 0,
  1697. "_skewY": 0,
  1698. "_localZOrder": 0,
  1699. "_globalZOrder": 0,
  1700. "_opacityModifyRGB": false,
  1701. "groupIndex": 0
  1702. },
  1703. {
  1704. "__type__": "cc.Label",
  1705. "_name": "",
  1706. "_objFlags": 0,
  1707. "node": {
  1708. "__id__": 52
  1709. },
  1710. "_enabled": true,
  1711. "_useOriginalSize": false,
  1712. "_actualFontSize": 40,
  1713. "_fontSize": 40,
  1714. "_lineHeight": 40,
  1715. "_enableWrapText": true,
  1716. "_N$file": null,
  1717. "_isSystemFontUsed": true,
  1718. "_spacingX": 0,
  1719. "_N$string": "8M",
  1720. "_N$horizontalAlign": 0,
  1721. "_N$verticalAlign": 1,
  1722. "_N$fontFamily": "Arial",
  1723. "_N$overflow": 0
  1724. },
  1725. {
  1726. "__type__": "cc.LabelOutline",
  1727. "_name": "",
  1728. "_objFlags": 0,
  1729. "node": {
  1730. "__id__": 52
  1731. },
  1732. "_enabled": true,
  1733. "_color": {
  1734. "__type__": "cc.Color",
  1735. "r": 255,
  1736. "g": 255,
  1737. "b": 255,
  1738. "a": 255
  1739. },
  1740. "_width": 2
  1741. },
  1742. {
  1743. "__type__": "cc.Widget",
  1744. "_name": "",
  1745. "_objFlags": 0,
  1746. "node": {
  1747. "__id__": 52
  1748. },
  1749. "_enabled": true,
  1750. "alignMode": 1,
  1751. "_target": null,
  1752. "_alignFlags": 10,
  1753. "_left": 250,
  1754. "_right": 0,
  1755. "_top": 0,
  1756. "_bottom": 0,
  1757. "_verticalCenter": 0,
  1758. "_horizontalCenter": 0,
  1759. "_isAbsLeft": true,
  1760. "_isAbsRight": true,
  1761. "_isAbsTop": true,
  1762. "_isAbsBottom": true,
  1763. "_isAbsHorizontalCenter": true,
  1764. "_isAbsVerticalCenter": true,
  1765. "_originalWidth": 0,
  1766. "_originalHeight": 0
  1767. },
  1768. {
  1769. "__type__": "cc.PrefabInfo",
  1770. "root": {
  1771. "__id__": 1
  1772. },
  1773. "asset": {
  1774. "__uuid__": "64f95b4c-f6d5-4bed-acbd-322b8c836cf8"
  1775. },
  1776. "fileId": "f3hlvtfkBI5q13UbY/76lE",
  1777. "sync": false
  1778. },
  1779. {
  1780. "__type__": "cc.Sprite",
  1781. "_name": "",
  1782. "_objFlags": 0,
  1783. "node": {
  1784. "__id__": 43
  1785. },
  1786. "_enabled": true,
  1787. "_spriteFrame": {
  1788. "__uuid__": "b6f53099-41ec-4783-b24b-1e3fbba86547"
  1789. },
  1790. "_type": 0,
  1791. "_sizeMode": 1,
  1792. "_fillType": 0,
  1793. "_fillCenter": {
  1794. "__type__": "cc.Vec2",
  1795. "x": 0,
  1796. "y": 0
  1797. },
  1798. "_fillStart": 0,
  1799. "_fillRange": 0,
  1800. "_isTrimmedMode": true,
  1801. "_srcBlendFactor": 770,
  1802. "_dstBlendFactor": 771,
  1803. "_atlas": null
  1804. },
  1805. {
  1806. "__type__": "cc.Widget",
  1807. "_name": "",
  1808. "_objFlags": 0,
  1809. "node": {
  1810. "__id__": 43
  1811. },
  1812. "_enabled": true,
  1813. "alignMode": 1,
  1814. "_target": null,
  1815. "_alignFlags": 18,
  1816. "_left": 0,
  1817. "_right": 0,
  1818. "_top": 0,
  1819. "_bottom": 0,
  1820. "_verticalCenter": -8.6,
  1821. "_horizontalCenter": 0,
  1822. "_isAbsLeft": true,
  1823. "_isAbsRight": true,
  1824. "_isAbsTop": true,
  1825. "_isAbsBottom": true,
  1826. "_isAbsHorizontalCenter": true,
  1827. "_isAbsVerticalCenter": true,
  1828. "_originalWidth": 0,
  1829. "_originalHeight": 0
  1830. },
  1831. {
  1832. "__type__": "cc.PrefabInfo",
  1833. "root": {
  1834. "__id__": 1
  1835. },
  1836. "asset": {
  1837. "__uuid__": "64f95b4c-f6d5-4bed-acbd-322b8c836cf8"
  1838. },
  1839. "fileId": "9cyRUkNC9C/rsfqad4AoaV",
  1840. "sync": false
  1841. },
  1842. {
  1843. "__type__": "cc.PrefabInfo",
  1844. "root": {
  1845. "__id__": 1
  1846. },
  1847. "asset": {
  1848. "__uuid__": "64f95b4c-f6d5-4bed-acbd-322b8c836cf8"
  1849. },
  1850. "fileId": "61y3V7bxRKG7BD69XvBVSQ",
  1851. "sync": false
  1852. },
  1853. {
  1854. "__type__": "cc.Node",
  1855. "_name": "close_btn",
  1856. "_objFlags": 0,
  1857. "_parent": {
  1858. "__id__": 6
  1859. },
  1860. "_children": [
  1861. {
  1862. "__id__": 62
  1863. }
  1864. ],
  1865. "_tag": -1,
  1866. "_active": true,
  1867. "_components": [
  1868. {
  1869. "__id__": 65
  1870. }
  1871. ],
  1872. "_prefab": {
  1873. "__id__": 67
  1874. },
  1875. "_id": "",
  1876. "_opacity": 255,
  1877. "_color": {
  1878. "__type__": "cc.Color",
  1879. "r": 255,
  1880. "g": 255,
  1881. "b": 255,
  1882. "a": 255
  1883. },
  1884. "_cascadeOpacityEnabled": true,
  1885. "_anchorPoint": {
  1886. "__type__": "cc.Vec2",
  1887. "x": 0.5,
  1888. "y": 0.5
  1889. },
  1890. "_contentSize": {
  1891. "__type__": "cc.Size",
  1892. "width": 44,
  1893. "height": 44
  1894. },
  1895. "_rotationX": 0,
  1896. "_rotationY": 0,
  1897. "_scaleX": 1,
  1898. "_scaleY": 1,
  1899. "_position": {
  1900. "__type__": "cc.Vec2",
  1901. "x": 294,
  1902. "y": 260
  1903. },
  1904. "_skewX": 0,
  1905. "_skewY": 0,
  1906. "_localZOrder": 0,
  1907. "_globalZOrder": 0,
  1908. "_opacityModifyRGB": false,
  1909. "groupIndex": 0
  1910. },
  1911. {
  1912. "__type__": "cc.Node",
  1913. "_name": "New Sprite",
  1914. "_objFlags": 0,
  1915. "_parent": {
  1916. "__id__": 61
  1917. },
  1918. "_children": [],
  1919. "_tag": -1,
  1920. "_active": true,
  1921. "_components": [
  1922. {
  1923. "__id__": 63
  1924. }
  1925. ],
  1926. "_prefab": {
  1927. "__id__": 64
  1928. },
  1929. "_id": "",
  1930. "_opacity": 255,
  1931. "_color": {
  1932. "__type__": "cc.Color",
  1933. "r": 255,
  1934. "g": 255,
  1935. "b": 255,
  1936. "a": 255
  1937. },
  1938. "_cascadeOpacityEnabled": true,
  1939. "_anchorPoint": {
  1940. "__type__": "cc.Vec2",
  1941. "x": 0.5,
  1942. "y": 0.5
  1943. },
  1944. "_contentSize": {
  1945. "__type__": "cc.Size",
  1946. "width": 32,
  1947. "height": 32
  1948. },
  1949. "_rotationX": 0,
  1950. "_rotationY": 0,
  1951. "_scaleX": 1,
  1952. "_scaleY": 1,
  1953. "_position": {
  1954. "__type__": "cc.Vec2",
  1955. "x": 0,
  1956. "y": 0
  1957. },
  1958. "_skewX": 0,
  1959. "_skewY": 0,
  1960. "_localZOrder": 0,
  1961. "_globalZOrder": 0,
  1962. "_opacityModifyRGB": false,
  1963. "groupIndex": 0
  1964. },
  1965. {
  1966. "__type__": "cc.Sprite",
  1967. "_name": "",
  1968. "_objFlags": 0,
  1969. "node": {
  1970. "__id__": 62
  1971. },
  1972. "_enabled": true,
  1973. "_spriteFrame": {
  1974. "__uuid__": "c05599d0-d3dc-4124-b126-9e5a6c601822"
  1975. },
  1976. "_type": 0,
  1977. "_sizeMode": 1,
  1978. "_fillType": 0,
  1979. "_fillCenter": {
  1980. "__type__": "cc.Vec2",
  1981. "x": 0,
  1982. "y": 0
  1983. },
  1984. "_fillStart": 0,
  1985. "_fillRange": 0,
  1986. "_isTrimmedMode": true,
  1987. "_srcBlendFactor": 770,
  1988. "_dstBlendFactor": 771,
  1989. "_atlas": null
  1990. },
  1991. {
  1992. "__type__": "cc.PrefabInfo",
  1993. "root": {
  1994. "__id__": 1
  1995. },
  1996. "asset": {
  1997. "__uuid__": "64f95b4c-f6d5-4bed-acbd-322b8c836cf8"
  1998. },
  1999. "fileId": "f2axF/3ElMJp5FosDxdONP",
  2000. "sync": false
  2001. },
  2002. {
  2003. "__type__": "cc.Button",
  2004. "_name": "",
  2005. "_objFlags": 0,
  2006. "node": {
  2007. "__id__": 61
  2008. },
  2009. "_enabled": true,
  2010. "transition": 2,
  2011. "pressedColor": {
  2012. "__type__": "cc.Color",
  2013. "r": 255,
  2014. "g": 255,
  2015. "b": 255,
  2016. "a": 255
  2017. },
  2018. "hoverColor": {
  2019. "__type__": "cc.Color",
  2020. "r": 255,
  2021. "g": 255,
  2022. "b": 255,
  2023. "a": 255
  2024. },
  2025. "duration": 0.1,
  2026. "zoomScale": 1.2,
  2027. "clickEvents": [
  2028. {
  2029. "__id__": 66
  2030. }
  2031. ],
  2032. "_N$interactable": true,
  2033. "_N$enableAutoGrayEffect": false,
  2034. "_N$normalColor": {
  2035. "__type__": "cc.Color",
  2036. "r": 255,
  2037. "g": 255,
  2038. "b": 255,
  2039. "a": 255
  2040. },
  2041. "_N$disabledColor": {
  2042. "__type__": "cc.Color",
  2043. "r": 255,
  2044. "g": 255,
  2045. "b": 255,
  2046. "a": 255
  2047. },
  2048. "_N$normalSprite": null,
  2049. "_N$pressedSprite": null,
  2050. "pressedSprite": null,
  2051. "_N$hoverSprite": null,
  2052. "hoverSprite": null,
  2053. "_N$disabledSprite": null,
  2054. "_N$target": {
  2055. "__id__": 61
  2056. }
  2057. },
  2058. {
  2059. "__type__": "cc.ClickEvent",
  2060. "target": {
  2061. "__id__": 1
  2062. },
  2063. "component": "ArtistOperationAlert",
  2064. "handler": "close",
  2065. "customEventData": ""
  2066. },
  2067. {
  2068. "__type__": "cc.PrefabInfo",
  2069. "root": {
  2070. "__id__": 1
  2071. },
  2072. "asset": {
  2073. "__uuid__": "64f95b4c-f6d5-4bed-acbd-322b8c836cf8"
  2074. },
  2075. "fileId": "2d6usS35dESLxpuMaMO0uH",
  2076. "sync": false
  2077. },
  2078. {
  2079. "__type__": "cc.Node",
  2080. "_name": "recall_artistl_tip",
  2081. "_objFlags": 0,
  2082. "_parent": {
  2083. "__id__": 6
  2084. },
  2085. "_children": [],
  2086. "_tag": -1,
  2087. "_active": false,
  2088. "_components": [
  2089. {
  2090. "__id__": 69
  2091. }
  2092. ],
  2093. "_prefab": {
  2094. "__id__": 70
  2095. },
  2096. "_id": "",
  2097. "_opacity": 255,
  2098. "_color": {
  2099. "__type__": "cc.Color",
  2100. "r": 211,
  2101. "g": 78,
  2102. "b": 5,
  2103. "a": 255
  2104. },
  2105. "_cascadeOpacityEnabled": true,
  2106. "_anchorPoint": {
  2107. "__type__": "cc.Vec2",
  2108. "x": 0.5,
  2109. "y": 1
  2110. },
  2111. "_contentSize": {
  2112. "__type__": "cc.Size",
  2113. "width": 340,
  2114. "height": 60
  2115. },
  2116. "_rotationX": 0,
  2117. "_rotationY": 0,
  2118. "_scaleX": 1,
  2119. "_scaleY": 1,
  2120. "_position": {
  2121. "__type__": "cc.Vec2",
  2122. "x": -5,
  2123. "y": -57
  2124. },
  2125. "_skewX": 0,
  2126. "_skewY": 0,
  2127. "_localZOrder": 0,
  2128. "_globalZOrder": 0,
  2129. "_opacityModifyRGB": false,
  2130. "groupIndex": 0
  2131. },
  2132. {
  2133. "__type__": "cc.Label",
  2134. "_name": "",
  2135. "_objFlags": 0,
  2136. "node": {
  2137. "__id__": 68
  2138. },
  2139. "_enabled": true,
  2140. "_useOriginalSize": false,
  2141. "_actualFontSize": 20,
  2142. "_fontSize": 20,
  2143. "_lineHeight": 30,
  2144. "_enableWrapText": true,
  2145. "_N$file": null,
  2146. "_isSystemFontUsed": true,
  2147. "_spacingX": 0,
  2148. "_N$string": "Tips: 若不召回艺人, 被他人驱赶会损失该艺人的全部收益~",
  2149. "_N$horizontalAlign": 1,
  2150. "_N$verticalAlign": 1,
  2151. "_N$fontFamily": "Arial",
  2152. "_N$overflow": 3
  2153. },
  2154. {
  2155. "__type__": "cc.PrefabInfo",
  2156. "root": {
  2157. "__id__": 1
  2158. },
  2159. "asset": {
  2160. "__uuid__": "64f95b4c-f6d5-4bed-acbd-322b8c836cf8"
  2161. },
  2162. "fileId": "9c4XWnr01EqYH1Y+u2C+jr",
  2163. "sync": false
  2164. },
  2165. {
  2166. "__type__": "cc.Node",
  2167. "_name": "confirm_btn",
  2168. "_objFlags": 0,
  2169. "_parent": {
  2170. "__id__": 6
  2171. },
  2172. "_children": [
  2173. {
  2174. "__id__": 72
  2175. }
  2176. ],
  2177. "_tag": -1,
  2178. "_active": true,
  2179. "_components": [
  2180. {
  2181. "__id__": 75
  2182. },
  2183. {
  2184. "__id__": 76
  2185. }
  2186. ],
  2187. "_prefab": {
  2188. "__id__": 78
  2189. },
  2190. "_id": "",
  2191. "_opacity": 255,
  2192. "_color": {
  2193. "__type__": "cc.Color",
  2194. "r": 255,
  2195. "g": 255,
  2196. "b": 255,
  2197. "a": 255
  2198. },
  2199. "_cascadeOpacityEnabled": true,
  2200. "_anchorPoint": {
  2201. "__type__": "cc.Vec2",
  2202. "x": 0.5,
  2203. "y": 0.5
  2204. },
  2205. "_contentSize": {
  2206. "__type__": "cc.Size",
  2207. "width": 236,
  2208. "height": 80
  2209. },
  2210. "_rotationX": 0,
  2211. "_rotationY": 0,
  2212. "_scaleX": 1,
  2213. "_scaleY": 1,
  2214. "_position": {
  2215. "__type__": "cc.Vec2",
  2216. "x": 0,
  2217. "y": -229
  2218. },
  2219. "_skewX": 0,
  2220. "_skewY": 0,
  2221. "_localZOrder": 0,
  2222. "_globalZOrder": 0,
  2223. "_opacityModifyRGB": false,
  2224. "groupIndex": 0
  2225. },
  2226. {
  2227. "__type__": "cc.Node",
  2228. "_name": "New RichText",
  2229. "_objFlags": 0,
  2230. "_parent": {
  2231. "__id__": 71
  2232. },
  2233. "_children": [],
  2234. "_tag": -1,
  2235. "_active": true,
  2236. "_components": [
  2237. {
  2238. "__id__": 73
  2239. }
  2240. ],
  2241. "_prefab": {
  2242. "__id__": 74
  2243. },
  2244. "_id": "",
  2245. "_opacity": 255,
  2246. "_color": {
  2247. "__type__": "cc.Color",
  2248. "r": 255,
  2249. "g": 255,
  2250. "b": 255,
  2251. "a": 255
  2252. },
  2253. "_cascadeOpacityEnabled": true,
  2254. "_anchorPoint": {
  2255. "__type__": "cc.Vec2",
  2256. "x": 0.5,
  2257. "y": 0.5
  2258. },
  2259. "_contentSize": {
  2260. "__type__": "cc.Size",
  2261. "width": 84,
  2262. "height": 50
  2263. },
  2264. "_rotationX": 0,
  2265. "_rotationY": 0,
  2266. "_scaleX": 1,
  2267. "_scaleY": 1,
  2268. "_position": {
  2269. "__type__": "cc.Vec2",
  2270. "x": 0,
  2271. "y": 0
  2272. },
  2273. "_skewX": 0,
  2274. "_skewY": 0,
  2275. "_localZOrder": 0,
  2276. "_globalZOrder": 0,
  2277. "_opacityModifyRGB": false,
  2278. "groupIndex": 0
  2279. },
  2280. {
  2281. "__type__": "cc.RichText",
  2282. "_name": "",
  2283. "_objFlags": 0,
  2284. "node": {
  2285. "__id__": 72
  2286. },
  2287. "_enabled": true,
  2288. "_N$string": "<b><outline color=#4f2711 width=2>确定<outline/><b/>",
  2289. "_N$horizontalAlign": 0,
  2290. "_N$fontSize": 40,
  2291. "_N$font": null,
  2292. "_N$maxWidth": 0,
  2293. "_N$lineHeight": 50,
  2294. "_N$imageAtlas": null,
  2295. "_N$handleTouchEvent": true
  2296. },
  2297. {
  2298. "__type__": "cc.PrefabInfo",
  2299. "root": {
  2300. "__id__": 1
  2301. },
  2302. "asset": {
  2303. "__uuid__": "64f95b4c-f6d5-4bed-acbd-322b8c836cf8"
  2304. },
  2305. "fileId": "87/2G984RIdLySY9+RwGZq",
  2306. "sync": false
  2307. },
  2308. {
  2309. "__type__": "cc.Sprite",
  2310. "_name": "",
  2311. "_objFlags": 0,
  2312. "node": {
  2313. "__id__": 71
  2314. },
  2315. "_enabled": true,
  2316. "_spriteFrame": {
  2317. "__uuid__": "a2a70c2c-f3a8-4abc-a113-6876b4f0a6f6"
  2318. },
  2319. "_type": 1,
  2320. "_sizeMode": 0,
  2321. "_fillType": 0,
  2322. "_fillCenter": {
  2323. "__type__": "cc.Vec2",
  2324. "x": 0,
  2325. "y": 0
  2326. },
  2327. "_fillStart": 0,
  2328. "_fillRange": 0,
  2329. "_isTrimmedMode": true,
  2330. "_srcBlendFactor": 770,
  2331. "_dstBlendFactor": 771,
  2332. "_atlas": null
  2333. },
  2334. {
  2335. "__type__": "cc.Button",
  2336. "_name": "",
  2337. "_objFlags": 0,
  2338. "node": {
  2339. "__id__": 71
  2340. },
  2341. "_enabled": true,
  2342. "transition": 1,
  2343. "pressedColor": {
  2344. "__type__": "cc.Color",
  2345. "r": 120,
  2346. "g": 120,
  2347. "b": 120,
  2348. "a": 255
  2349. },
  2350. "hoverColor": {
  2351. "__type__": "cc.Color",
  2352. "r": 255,
  2353. "g": 255,
  2354. "b": 255,
  2355. "a": 255
  2356. },
  2357. "duration": 0.1,
  2358. "zoomScale": 1.2,
  2359. "clickEvents": [
  2360. {
  2361. "__id__": 77
  2362. }
  2363. ],
  2364. "_N$interactable": true,
  2365. "_N$enableAutoGrayEffect": false,
  2366. "_N$normalColor": {
  2367. "__type__": "cc.Color",
  2368. "r": 255,
  2369. "g": 255,
  2370. "b": 255,
  2371. "a": 255
  2372. },
  2373. "_N$disabledColor": {
  2374. "__type__": "cc.Color",
  2375. "r": 255,
  2376. "g": 255,
  2377. "b": 255,
  2378. "a": 255
  2379. },
  2380. "_N$normalSprite": {
  2381. "__uuid__": "a2a70c2c-f3a8-4abc-a113-6876b4f0a6f6"
  2382. },
  2383. "_N$pressedSprite": null,
  2384. "pressedSprite": null,
  2385. "_N$hoverSprite": null,
  2386. "hoverSprite": null,
  2387. "_N$disabledSprite": null,
  2388. "_N$target": {
  2389. "__id__": 71
  2390. }
  2391. },
  2392. {
  2393. "__type__": "cc.ClickEvent",
  2394. "target": {
  2395. "__id__": 1
  2396. },
  2397. "component": "ArtistOperationAlert",
  2398. "handler": "handleConfrimBtn",
  2399. "customEventData": ""
  2400. },
  2401. {
  2402. "__type__": "cc.PrefabInfo",
  2403. "root": {
  2404. "__id__": 1
  2405. },
  2406. "asset": {
  2407. "__uuid__": "64f95b4c-f6d5-4bed-acbd-322b8c836cf8"
  2408. },
  2409. "fileId": "4bNj+C621OwqWSKwwvKZEy",
  2410. "sync": false
  2411. },
  2412. {
  2413. "__type__": "cc.Node",
  2414. "_name": "recall_artistl_fail_tip",
  2415. "_objFlags": 0,
  2416. "_parent": {
  2417. "__id__": 6
  2418. },
  2419. "_children": [],
  2420. "_tag": -1,
  2421. "_active": false,
  2422. "_components": [
  2423. {
  2424. "__id__": 80
  2425. }
  2426. ],
  2427. "_prefab": {
  2428. "__id__": 81
  2429. },
  2430. "_id": "",
  2431. "_opacity": 255,
  2432. "_color": {
  2433. "__type__": "cc.Color",
  2434. "r": 255,
  2435. "g": 255,
  2436. "b": 255,
  2437. "a": 255
  2438. },
  2439. "_cascadeOpacityEnabled": true,
  2440. "_anchorPoint": {
  2441. "__type__": "cc.Vec2",
  2442. "x": 0.5,
  2443. "y": 0.5
  2444. },
  2445. "_contentSize": {
  2446. "__type__": "cc.Size",
  2447. "width": 299,
  2448. "height": 50
  2449. },
  2450. "_rotationX": 0,
  2451. "_rotationY": 0,
  2452. "_scaleX": 1,
  2453. "_scaleY": 1,
  2454. "_position": {
  2455. "__type__": "cc.Vec2",
  2456. "x": -10,
  2457. "y": -97
  2458. },
  2459. "_skewX": 0,
  2460. "_skewY": 0,
  2461. "_localZOrder": 0,
  2462. "_globalZOrder": 0,
  2463. "_opacityModifyRGB": false,
  2464. "groupIndex": 0
  2465. },
  2466. {
  2467. "__type__": "cc.RichText",
  2468. "_name": "",
  2469. "_objFlags": 0,
  2470. "node": {
  2471. "__id__": 79
  2472. },
  2473. "_enabled": true,
  2474. "_N$string": "<b><color=#584a47>入驻未满<color=#ee1414>15分钟</c>, 无法召回</c></b> ",
  2475. "_N$horizontalAlign": 0,
  2476. "_N$fontSize": 25,
  2477. "_N$font": null,
  2478. "_N$maxWidth": 0,
  2479. "_N$lineHeight": 50,
  2480. "_N$imageAtlas": null,
  2481. "_N$handleTouchEvent": true
  2482. },
  2483. {
  2484. "__type__": "cc.PrefabInfo",
  2485. "root": {
  2486. "__id__": 1
  2487. },
  2488. "asset": {
  2489. "__uuid__": "64f95b4c-f6d5-4bed-acbd-322b8c836cf8"
  2490. },
  2491. "fileId": "c9h5JzZ0xKYbAF5ErlaoKi",
  2492. "sync": false
  2493. },
  2494. {
  2495. "__type__": "cc.Node",
  2496. "_name": "report_artist_tip",
  2497. "_objFlags": 0,
  2498. "_parent": {
  2499. "__id__": 6
  2500. },
  2501. "_children": [],
  2502. "_tag": -1,
  2503. "_active": true,
  2504. "_components": [
  2505. {
  2506. "__id__": 83
  2507. }
  2508. ],
  2509. "_prefab": {
  2510. "__id__": 84
  2511. },
  2512. "_id": "",
  2513. "_opacity": 255,
  2514. "_color": {
  2515. "__type__": "cc.Color",
  2516. "r": 211,
  2517. "g": 78,
  2518. "b": 5,
  2519. "a": 255
  2520. },
  2521. "_cascadeOpacityEnabled": true,
  2522. "_anchorPoint": {
  2523. "__type__": "cc.Vec2",
  2524. "x": 0.5,
  2525. "y": 1
  2526. },
  2527. "_contentSize": {
  2528. "__type__": "cc.Size",
  2529. "width": 445,
  2530. "height": 30
  2531. },
  2532. "_rotationX": 0,
  2533. "_rotationY": 0,
  2534. "_scaleX": 1,
  2535. "_scaleY": 1,
  2536. "_position": {
  2537. "__type__": "cc.Vec2",
  2538. "x": 0,
  2539. "y": -65
  2540. },
  2541. "_skewX": 0,
  2542. "_skewY": 0,
  2543. "_localZOrder": 0,
  2544. "_globalZOrder": 0,
  2545. "_opacityModifyRGB": false,
  2546. "groupIndex": 0
  2547. },
  2548. {
  2549. "__type__": "cc.Label",
  2550. "_name": "",
  2551. "_objFlags": 0,
  2552. "node": {
  2553. "__id__": 82
  2554. },
  2555. "_enabled": true,
  2556. "_useOriginalSize": false,
  2557. "_actualFontSize": 20,
  2558. "_fontSize": 20,
  2559. "_lineHeight": 30,
  2560. "_enableWrapText": true,
  2561. "_N$file": null,
  2562. "_isSystemFontUsed": true,
  2563. "_spacingX": 0,
  2564. "_N$string": "Tips: 举报他人艺人可获得Ta总收益的10%",
  2565. "_N$horizontalAlign": 1,
  2566. "_N$verticalAlign": 1,
  2567. "_N$fontFamily": "Arial",
  2568. "_N$overflow": 3
  2569. },
  2570. {
  2571. "__type__": "cc.PrefabInfo",
  2572. "root": {
  2573. "__id__": 1
  2574. },
  2575. "asset": {
  2576. "__uuid__": "64f95b4c-f6d5-4bed-acbd-322b8c836cf8"
  2577. },
  2578. "fileId": "b1Ebzv1MVBbJCtzOnbr5oi",
  2579. "sync": false
  2580. },
  2581. {
  2582. "__type__": "cc.Node",
  2583. "_name": "report_artistl_fail_tip",
  2584. "_objFlags": 0,
  2585. "_parent": {
  2586. "__id__": 6
  2587. },
  2588. "_children": [],
  2589. "_tag": -1,
  2590. "_active": false,
  2591. "_components": [
  2592. {
  2593. "__id__": 86
  2594. }
  2595. ],
  2596. "_prefab": {
  2597. "__id__": 87
  2598. },
  2599. "_id": "",
  2600. "_opacity": 255,
  2601. "_color": {
  2602. "__type__": "cc.Color",
  2603. "r": 255,
  2604. "g": 255,
  2605. "b": 255,
  2606. "a": 255
  2607. },
  2608. "_cascadeOpacityEnabled": true,
  2609. "_anchorPoint": {
  2610. "__type__": "cc.Vec2",
  2611. "x": 0.5,
  2612. "y": 0.5
  2613. },
  2614. "_contentSize": {
  2615. "__type__": "cc.Size",
  2616. "width": 340,
  2617. "height": 50
  2618. },
  2619. "_rotationX": 0,
  2620. "_rotationY": 0,
  2621. "_scaleX": 1,
  2622. "_scaleY": 1,
  2623. "_position": {
  2624. "__type__": "cc.Vec2",
  2625. "x": 2,
  2626. "y": -96
  2627. },
  2628. "_skewX": 0,
  2629. "_skewY": 0,
  2630. "_localZOrder": 0,
  2631. "_globalZOrder": 0,
  2632. "_opacityModifyRGB": false,
  2633. "groupIndex": 0
  2634. },
  2635. {
  2636. "__type__": "cc.RichText",
  2637. "_name": "",
  2638. "_objFlags": 0,
  2639. "node": {
  2640. "__id__": 85
  2641. },
  2642. "_enabled": true,
  2643. "_N$string": "<b><color=#584a47>你已经举报过该艺人啦</c></b> ",
  2644. "_N$horizontalAlign": 1,
  2645. "_N$fontSize": 25,
  2646. "_N$font": null,
  2647. "_N$maxWidth": 340,
  2648. "_N$lineHeight": 50,
  2649. "_N$imageAtlas": null,
  2650. "_N$handleTouchEvent": true
  2651. },
  2652. {
  2653. "__type__": "cc.PrefabInfo",
  2654. "root": {
  2655. "__id__": 1
  2656. },
  2657. "asset": {
  2658. "__uuid__": "64f95b4c-f6d5-4bed-acbd-322b8c836cf8"
  2659. },
  2660. "fileId": "b1Ov3N8gJDX6eu8YgtGgoO",
  2661. "sync": false
  2662. },
  2663. {
  2664. "__type__": "cc.Node",
  2665. "_name": "getall_btn",
  2666. "_objFlags": 0,
  2667. "_parent": {
  2668. "__id__": 6
  2669. },
  2670. "_children": [],
  2671. "_tag": -1,
  2672. "_active": false,
  2673. "_components": [
  2674. {
  2675. "__id__": 89
  2676. },
  2677. {
  2678. "__id__": 90
  2679. }
  2680. ],
  2681. "_prefab": {
  2682. "__id__": 92
  2683. },
  2684. "_id": "",
  2685. "_opacity": 255,
  2686. "_color": {
  2687. "__type__": "cc.Color",
  2688. "r": 255,
  2689. "g": 255,
  2690. "b": 255,
  2691. "a": 255
  2692. },
  2693. "_cascadeOpacityEnabled": true,
  2694. "_anchorPoint": {
  2695. "__type__": "cc.Vec2",
  2696. "x": 0.5,
  2697. "y": 0.5
  2698. },
  2699. "_contentSize": {
  2700. "__type__": "cc.Size",
  2701. "width": 236,
  2702. "height": 159
  2703. },
  2704. "_rotationX": 0,
  2705. "_rotationY": 0,
  2706. "_scaleX": 1,
  2707. "_scaleY": 1,
  2708. "_position": {
  2709. "__type__": "cc.Vec2",
  2710. "x": 0,
  2711. "y": -153
  2712. },
  2713. "_skewX": 0,
  2714. "_skewY": 0,
  2715. "_localZOrder": 0,
  2716. "_globalZOrder": 0,
  2717. "_opacityModifyRGB": false,
  2718. "groupIndex": 0
  2719. },
  2720. {
  2721. "__type__": "cc.Sprite",
  2722. "_name": "",
  2723. "_objFlags": 0,
  2724. "node": {
  2725. "__id__": 88
  2726. },
  2727. "_enabled": true,
  2728. "_spriteFrame": {
  2729. "__uuid__": "355f4b93-fb72-4c09-808b-e6ac5b498b9e"
  2730. },
  2731. "_type": 0,
  2732. "_sizeMode": 0,
  2733. "_fillType": 0,
  2734. "_fillCenter": {
  2735. "__type__": "cc.Vec2",
  2736. "x": 0,
  2737. "y": 0
  2738. },
  2739. "_fillStart": 0,
  2740. "_fillRange": 0,
  2741. "_isTrimmedMode": true,
  2742. "_srcBlendFactor": 770,
  2743. "_dstBlendFactor": 771,
  2744. "_atlas": null
  2745. },
  2746. {
  2747. "__type__": "cc.Button",
  2748. "_name": "",
  2749. "_objFlags": 0,
  2750. "node": {
  2751. "__id__": 88
  2752. },
  2753. "_enabled": true,
  2754. "transition": 1,
  2755. "pressedColor": {
  2756. "__type__": "cc.Color",
  2757. "r": 120,
  2758. "g": 120,
  2759. "b": 120,
  2760. "a": 255
  2761. },
  2762. "hoverColor": {
  2763. "__type__": "cc.Color",
  2764. "r": 255,
  2765. "g": 255,
  2766. "b": 255,
  2767. "a": 255
  2768. },
  2769. "duration": 0.1,
  2770. "zoomScale": 1.2,
  2771. "clickEvents": [
  2772. {
  2773. "__id__": 91
  2774. }
  2775. ],
  2776. "_N$interactable": true,
  2777. "_N$enableAutoGrayEffect": false,
  2778. "_N$normalColor": {
  2779. "__type__": "cc.Color",
  2780. "r": 255,
  2781. "g": 255,
  2782. "b": 255,
  2783. "a": 255
  2784. },
  2785. "_N$disabledColor": {
  2786. "__type__": "cc.Color",
  2787. "r": 255,
  2788. "g": 255,
  2789. "b": 255,
  2790. "a": 255
  2791. },
  2792. "_N$normalSprite": {
  2793. "__uuid__": "355f4b93-fb72-4c09-808b-e6ac5b498b9e"
  2794. },
  2795. "_N$pressedSprite": {
  2796. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  2797. },
  2798. "pressedSprite": {
  2799. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  2800. },
  2801. "_N$hoverSprite": {
  2802. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  2803. },
  2804. "hoverSprite": {
  2805. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  2806. },
  2807. "_N$disabledSprite": {
  2808. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  2809. },
  2810. "_N$target": {
  2811. "__id__": 88
  2812. }
  2813. },
  2814. {
  2815. "__type__": "cc.ClickEvent",
  2816. "target": {
  2817. "__id__": 1
  2818. },
  2819. "component": "ArtistOperationAlert",
  2820. "handler": "handleConfrimBtn",
  2821. "customEventData": ""
  2822. },
  2823. {
  2824. "__type__": "cc.PrefabInfo",
  2825. "root": {
  2826. "__id__": 1
  2827. },
  2828. "asset": {
  2829. "__uuid__": "64f95b4c-f6d5-4bed-acbd-322b8c836cf8"
  2830. },
  2831. "fileId": "067P0kpBZD862tzjwquIC8",
  2832. "sync": false
  2833. },
  2834. {
  2835. "__type__": "cc.Node",
  2836. "_name": "drive_away_fail_tip",
  2837. "_objFlags": 0,
  2838. "_parent": {
  2839. "__id__": 6
  2840. },
  2841. "_children": [],
  2842. "_tag": -1,
  2843. "_active": false,
  2844. "_components": [
  2845. {
  2846. "__id__": 94
  2847. }
  2848. ],
  2849. "_prefab": {
  2850. "__id__": 95
  2851. },
  2852. "_id": "",
  2853. "_opacity": 255,
  2854. "_color": {
  2855. "__type__": "cc.Color",
  2856. "r": 255,
  2857. "g": 255,
  2858. "b": 255,
  2859. "a": 255
  2860. },
  2861. "_cascadeOpacityEnabled": true,
  2862. "_anchorPoint": {
  2863. "__type__": "cc.Vec2",
  2864. "x": 0.5,
  2865. "y": 0.5
  2866. },
  2867. "_contentSize": {
  2868. "__type__": "cc.Size",
  2869. "width": 299,
  2870. "height": 50
  2871. },
  2872. "_rotationX": 0,
  2873. "_rotationY": 0,
  2874. "_scaleX": 1,
  2875. "_scaleY": 1,
  2876. "_position": {
  2877. "__type__": "cc.Vec2",
  2878. "x": 0,
  2879. "y": -89
  2880. },
  2881. "_skewX": 0,
  2882. "_skewY": 0,
  2883. "_localZOrder": 0,
  2884. "_globalZOrder": 0,
  2885. "_opacityModifyRGB": false,
  2886. "groupIndex": 0
  2887. },
  2888. {
  2889. "__type__": "cc.RichText",
  2890. "_name": "",
  2891. "_objFlags": 0,
  2892. "node": {
  2893. "__id__": 93
  2894. },
  2895. "_enabled": true,
  2896. "_N$string": "<b><color=#584a47>入驻未满<color=#ee1414>15分钟</c>, 无法驱赶</c></b> ",
  2897. "_N$horizontalAlign": 0,
  2898. "_N$fontSize": 25,
  2899. "_N$font": null,
  2900. "_N$maxWidth": 0,
  2901. "_N$lineHeight": 50,
  2902. "_N$imageAtlas": null,
  2903. "_N$handleTouchEvent": true
  2904. },
  2905. {
  2906. "__type__": "cc.PrefabInfo",
  2907. "root": {
  2908. "__id__": 1
  2909. },
  2910. "asset": {
  2911. "__uuid__": "64f95b4c-f6d5-4bed-acbd-322b8c836cf8"
  2912. },
  2913. "fileId": "44gDLryV1NnaV+UcBBt+qi",
  2914. "sync": false
  2915. },
  2916. {
  2917. "__type__": "cc.Sprite",
  2918. "_name": "",
  2919. "_objFlags": 0,
  2920. "node": {
  2921. "__id__": 6
  2922. },
  2923. "_enabled": true,
  2924. "_spriteFrame": {
  2925. "__uuid__": "f77c177d-60ed-4171-a329-3aeeab60b13d"
  2926. },
  2927. "_type": 1,
  2928. "_sizeMode": 0,
  2929. "_fillType": 0,
  2930. "_fillCenter": {
  2931. "__type__": "cc.Vec2",
  2932. "x": 0,
  2933. "y": 0
  2934. },
  2935. "_fillStart": 0,
  2936. "_fillRange": 0,
  2937. "_isTrimmedMode": true,
  2938. "_srcBlendFactor": 770,
  2939. "_dstBlendFactor": 771,
  2940. "_atlas": null
  2941. },
  2942. {
  2943. "__type__": "cc.PrefabInfo",
  2944. "root": {
  2945. "__id__": 1
  2946. },
  2947. "asset": {
  2948. "__uuid__": "64f95b4c-f6d5-4bed-acbd-322b8c836cf8"
  2949. },
  2950. "fileId": "822D6KwX1AUJM0vYtXv2AS",
  2951. "sync": false
  2952. },
  2953. {
  2954. "__type__": "2c98etC929CS4k0knYFwMlW",
  2955. "_name": "",
  2956. "_objFlags": 0,
  2957. "node": {
  2958. "__id__": 1
  2959. },
  2960. "_enabled": true,
  2961. "titleRichText": {
  2962. "__id__": 9
  2963. },
  2964. "headSprite": {
  2965. "__id__": 18
  2966. },
  2967. "nickRichText": {
  2968. "__id__": 26
  2969. },
  2970. "levelLabel": {
  2971. "__id__": 32
  2972. },
  2973. "jobTitleLabel": {
  2974. "__id__": 36
  2975. },
  2976. "gainDetailLabel": {
  2977. "__id__": 40
  2978. },
  2979. "gainCoinLabel": {
  2980. "__id__": 53
  2981. },
  2982. "recallArtistTipLabel": {
  2983. "__id__": 69
  2984. },
  2985. "recallArtistFailTipRichText": {
  2986. "__id__": 80
  2987. },
  2988. "reportArtistTipLabel": {
  2989. "__id__": 83
  2990. },
  2991. "reportArtistFailTipRichText": {
  2992. "__id__": 86
  2993. },
  2994. "driveAwayFailTipRichText": {
  2995. "__id__": 94
  2996. },
  2997. "gellAllCoinBtn": {
  2998. "__id__": 90
  2999. },
  3000. "confrimBtn": {
  3001. "__id__": 76
  3002. },
  3003. "coinNode": {
  3004. "__id__": 48
  3005. },
  3006. "content": {
  3007. "__id__": 6
  3008. },
  3009. "coinPrefab": {
  3010. "__uuid__": "afeee4a6-90f1-4bfa-8e45-989019344ea5"
  3011. }
  3012. },
  3013. {
  3014. "__type__": "cc.PrefabInfo",
  3015. "root": {
  3016. "__id__": 1
  3017. },
  3018. "asset": {
  3019. "__uuid__": "64f95b4c-f6d5-4bed-acbd-322b8c836cf8"
  3020. },
  3021. "fileId": "95/NtQwhtD44QhAFREYVLL",
  3022. "sync": false
  3023. }
  3024. ]