rank_page.prefab 85 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746
  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": "rank_page",
  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__": 152
  31. }
  32. ],
  33. "_prefab": {
  34. "__id__": 153
  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": 1334
  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": "transparent_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": 100,
  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": 750,
  111. "height": 1800
  112. },
  113. "_rotationX": 0,
  114. "_rotationY": 0,
  115. "_scaleX": 1,
  116. "_scaleY": 1,
  117. "_position": {
  118. "__type__": "cc.Vec2",
  119. "x": 0,
  120. "y": 0
  121. },
  122. "_skewX": 0,
  123. "_skewY": 0,
  124. "_localZOrder": 0,
  125. "_globalZOrder": 0,
  126. "_opacityModifyRGB": false,
  127. "groupIndex": 0
  128. },
  129. {
  130. "__type__": "cc.Sprite",
  131. "_name": "",
  132. "_objFlags": 0,
  133. "node": {
  134. "__id__": 2
  135. },
  136. "_enabled": true,
  137. "_spriteFrame": {
  138. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  139. },
  140. "_type": 0,
  141. "_sizeMode": 0,
  142. "_fillType": 0,
  143. "_fillCenter": {
  144. "__type__": "cc.Vec2",
  145. "x": 0,
  146. "y": 0
  147. },
  148. "_fillStart": 0,
  149. "_fillRange": 0,
  150. "_isTrimmedMode": true,
  151. "_srcBlendFactor": 770,
  152. "_dstBlendFactor": 771,
  153. "_atlas": null
  154. },
  155. {
  156. "__type__": "cc.BlockInputEvents",
  157. "_name": "",
  158. "_objFlags": 0,
  159. "node": {
  160. "__id__": 2
  161. },
  162. "_enabled": true
  163. },
  164. {
  165. "__type__": "cc.PrefabInfo",
  166. "root": {
  167. "__id__": 1
  168. },
  169. "asset": {
  170. "__uuid__": "6a4f3ae2-1f9e-448c-bb80-e16eed3312fd"
  171. },
  172. "fileId": "eawWHkxW9PKY6cL3dpphSh",
  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__": 10
  188. },
  189. {
  190. "__id__": 13
  191. },
  192. {
  193. "__id__": 18
  194. },
  195. {
  196. "__id__": 23
  197. },
  198. {
  199. "__id__": 32
  200. },
  201. {
  202. "__id__": 41
  203. },
  204. {
  205. "__id__": 44
  206. },
  207. {
  208. "__id__": 87
  209. },
  210. {
  211. "__id__": 137
  212. },
  213. {
  214. "__id__": 140
  215. },
  216. {
  217. "__id__": 145
  218. }
  219. ],
  220. "_tag": -1,
  221. "_active": true,
  222. "_components": [],
  223. "_prefab": {
  224. "__id__": 151
  225. },
  226. "_id": "",
  227. "_opacity": 255,
  228. "_color": {
  229. "__type__": "cc.Color",
  230. "r": 255,
  231. "g": 255,
  232. "b": 255,
  233. "a": 255
  234. },
  235. "_cascadeOpacityEnabled": true,
  236. "_anchorPoint": {
  237. "__type__": "cc.Vec2",
  238. "x": 0.5,
  239. "y": 0.5
  240. },
  241. "_contentSize": {
  242. "__type__": "cc.Size",
  243. "width": 724,
  244. "height": 1220
  245. },
  246. "_rotationX": 0,
  247. "_rotationY": 0,
  248. "_scaleX": 1,
  249. "_scaleY": 1,
  250. "_position": {
  251. "__type__": "cc.Vec2",
  252. "x": 0,
  253. "y": 0
  254. },
  255. "_skewX": 0,
  256. "_skewY": 0,
  257. "_localZOrder": 0,
  258. "_globalZOrder": 0,
  259. "_opacityModifyRGB": false,
  260. "groupIndex": 0
  261. },
  262. {
  263. "__type__": "cc.Node",
  264. "_name": "friend_list_bg1",
  265. "_objFlags": 0,
  266. "_parent": {
  267. "__id__": 6
  268. },
  269. "_children": [],
  270. "_tag": -1,
  271. "_active": true,
  272. "_components": [
  273. {
  274. "__id__": 8
  275. }
  276. ],
  277. "_prefab": {
  278. "__id__": 9
  279. },
  280. "_id": "",
  281. "_opacity": 255,
  282. "_color": {
  283. "__type__": "cc.Color",
  284. "r": 255,
  285. "g": 255,
  286. "b": 255,
  287. "a": 255
  288. },
  289. "_cascadeOpacityEnabled": true,
  290. "_anchorPoint": {
  291. "__type__": "cc.Vec2",
  292. "x": 0.5,
  293. "y": 0.5
  294. },
  295. "_contentSize": {
  296. "__type__": "cc.Size",
  297. "width": 724,
  298. "height": 1114
  299. },
  300. "_rotationX": 0,
  301. "_rotationY": 0,
  302. "_scaleX": 1,
  303. "_scaleY": 1,
  304. "_position": {
  305. "__type__": "cc.Vec2",
  306. "x": 0,
  307. "y": -52
  308. },
  309. "_skewX": 0,
  310. "_skewY": 0,
  311. "_localZOrder": 0,
  312. "_globalZOrder": 0,
  313. "_opacityModifyRGB": false,
  314. "groupIndex": 0
  315. },
  316. {
  317. "__type__": "cc.Sprite",
  318. "_name": "",
  319. "_objFlags": 0,
  320. "node": {
  321. "__id__": 7
  322. },
  323. "_enabled": true,
  324. "_spriteFrame": {
  325. "__uuid__": "ee846fe2-9fcc-4cf0-84ed-1fe34da1b4be"
  326. },
  327. "_type": 1,
  328. "_sizeMode": 0,
  329. "_fillType": 0,
  330. "_fillCenter": {
  331. "__type__": "cc.Vec2",
  332. "x": 0,
  333. "y": 0
  334. },
  335. "_fillStart": 0,
  336. "_fillRange": 0,
  337. "_isTrimmedMode": true,
  338. "_srcBlendFactor": 770,
  339. "_dstBlendFactor": 771,
  340. "_atlas": null
  341. },
  342. {
  343. "__type__": "cc.PrefabInfo",
  344. "root": {
  345. "__id__": 1
  346. },
  347. "asset": {
  348. "__uuid__": "6a4f3ae2-1f9e-448c-bb80-e16eed3312fd"
  349. },
  350. "fileId": "ddGkhrRANMvL9NLeaTcwMg",
  351. "sync": false
  352. },
  353. {
  354. "__type__": "cc.Node",
  355. "_name": "tab_bg",
  356. "_objFlags": 0,
  357. "_parent": {
  358. "__id__": 6
  359. },
  360. "_children": [],
  361. "_tag": -1,
  362. "_active": true,
  363. "_components": [
  364. {
  365. "__id__": 11
  366. }
  367. ],
  368. "_prefab": {
  369. "__id__": 12
  370. },
  371. "_id": "",
  372. "_opacity": 255,
  373. "_color": {
  374. "__type__": "cc.Color",
  375. "r": 255,
  376. "g": 255,
  377. "b": 255,
  378. "a": 255
  379. },
  380. "_cascadeOpacityEnabled": true,
  381. "_anchorPoint": {
  382. "__type__": "cc.Vec2",
  383. "x": 0.5,
  384. "y": 0.5
  385. },
  386. "_contentSize": {
  387. "__type__": "cc.Size",
  388. "width": 680,
  389. "height": 70
  390. },
  391. "_rotationX": 0,
  392. "_rotationY": 0,
  393. "_scaleX": 1,
  394. "_scaleY": 1,
  395. "_position": {
  396. "__type__": "cc.Vec2",
  397. "x": 0,
  398. "y": 285
  399. },
  400. "_skewX": 0,
  401. "_skewY": 0,
  402. "_localZOrder": 0,
  403. "_globalZOrder": 0,
  404. "_opacityModifyRGB": false,
  405. "groupIndex": 0
  406. },
  407. {
  408. "__type__": "cc.Sprite",
  409. "_name": "",
  410. "_objFlags": 0,
  411. "node": {
  412. "__id__": 10
  413. },
  414. "_enabled": true,
  415. "_spriteFrame": {
  416. "__uuid__": "f06e5641-abc1-49e5-b4e6-f34fb58d7478"
  417. },
  418. "_type": 1,
  419. "_sizeMode": 0,
  420. "_fillType": 0,
  421. "_fillCenter": {
  422. "__type__": "cc.Vec2",
  423. "x": 0,
  424. "y": 0
  425. },
  426. "_fillStart": 0,
  427. "_fillRange": 0,
  428. "_isTrimmedMode": true,
  429. "_srcBlendFactor": 770,
  430. "_dstBlendFactor": 771,
  431. "_atlas": null
  432. },
  433. {
  434. "__type__": "cc.PrefabInfo",
  435. "root": {
  436. "__id__": 1
  437. },
  438. "asset": {
  439. "__uuid__": "6a4f3ae2-1f9e-448c-bb80-e16eed3312fd"
  440. },
  441. "fileId": "078wGltx5KBKeIOFl1kuTr",
  442. "sync": false
  443. },
  444. {
  445. "__type__": "cc.Node",
  446. "_name": "all_rank_tab",
  447. "_objFlags": 0,
  448. "_parent": {
  449. "__id__": 6
  450. },
  451. "_children": [],
  452. "_tag": -1,
  453. "_active": true,
  454. "_components": [
  455. {
  456. "__id__": 14
  457. },
  458. {
  459. "__id__": 15
  460. }
  461. ],
  462. "_prefab": {
  463. "__id__": 17
  464. },
  465. "_id": "",
  466. "_opacity": 255,
  467. "_color": {
  468. "__type__": "cc.Color",
  469. "r": 255,
  470. "g": 255,
  471. "b": 255,
  472. "a": 255
  473. },
  474. "_cascadeOpacityEnabled": true,
  475. "_anchorPoint": {
  476. "__type__": "cc.Vec2",
  477. "x": 0.5,
  478. "y": 1
  479. },
  480. "_contentSize": {
  481. "__type__": "cc.Size",
  482. "width": 202,
  483. "height": 100
  484. },
  485. "_rotationX": 0,
  486. "_rotationY": 0,
  487. "_scaleX": 1,
  488. "_scaleY": 1,
  489. "_position": {
  490. "__type__": "cc.Vec2",
  491. "x": -240.8,
  492. "y": 448
  493. },
  494. "_skewX": 0,
  495. "_skewY": 0,
  496. "_localZOrder": 0,
  497. "_globalZOrder": 0,
  498. "_opacityModifyRGB": false,
  499. "groupIndex": 0
  500. },
  501. {
  502. "__type__": "cc.Sprite",
  503. "_name": "",
  504. "_objFlags": 0,
  505. "node": {
  506. "__id__": 13
  507. },
  508. "_enabled": true,
  509. "_spriteFrame": {
  510. "__uuid__": "fbe76b55-9a6a-4aca-99ca-49d4c79bc42f"
  511. },
  512. "_type": 0,
  513. "_sizeMode": 1,
  514. "_fillType": 0,
  515. "_fillCenter": {
  516. "__type__": "cc.Vec2",
  517. "x": 0,
  518. "y": 0
  519. },
  520. "_fillStart": 0,
  521. "_fillRange": 0,
  522. "_isTrimmedMode": true,
  523. "_srcBlendFactor": 770,
  524. "_dstBlendFactor": 771,
  525. "_atlas": null
  526. },
  527. {
  528. "__type__": "cc.Button",
  529. "_name": "",
  530. "_objFlags": 0,
  531. "node": {
  532. "__id__": 13
  533. },
  534. "_enabled": true,
  535. "transition": 0,
  536. "pressedColor": {
  537. "__type__": "cc.Color",
  538. "r": 255,
  539. "g": 255,
  540. "b": 255,
  541. "a": 255
  542. },
  543. "hoverColor": {
  544. "__type__": "cc.Color",
  545. "r": 255,
  546. "g": 255,
  547. "b": 255,
  548. "a": 255
  549. },
  550. "duration": 0.1,
  551. "zoomScale": 1.2,
  552. "clickEvents": [
  553. {
  554. "__id__": 16
  555. }
  556. ],
  557. "_N$interactable": true,
  558. "_N$enableAutoGrayEffect": false,
  559. "_N$normalColor": {
  560. "__type__": "cc.Color",
  561. "r": 255,
  562. "g": 255,
  563. "b": 255,
  564. "a": 255
  565. },
  566. "_N$disabledColor": {
  567. "__type__": "cc.Color",
  568. "r": 255,
  569. "g": 255,
  570. "b": 255,
  571. "a": 255
  572. },
  573. "_N$normalSprite": {
  574. "__uuid__": "46c743af-046d-4b73-b4af-d52189121127"
  575. },
  576. "_N$pressedSprite": {
  577. "__uuid__": "46c743af-046d-4b73-b4af-d52189121127"
  578. },
  579. "pressedSprite": {
  580. "__uuid__": "46c743af-046d-4b73-b4af-d52189121127"
  581. },
  582. "_N$hoverSprite": {
  583. "__uuid__": "46c743af-046d-4b73-b4af-d52189121127"
  584. },
  585. "hoverSprite": {
  586. "__uuid__": "46c743af-046d-4b73-b4af-d52189121127"
  587. },
  588. "_N$disabledSprite": {
  589. "__uuid__": "46c743af-046d-4b73-b4af-d52189121127"
  590. },
  591. "_N$target": {
  592. "__id__": 13
  593. }
  594. },
  595. {
  596. "__type__": "cc.ClickEvent",
  597. "target": {
  598. "__id__": 1
  599. },
  600. "component": "RankPage",
  601. "handler": "allRankSelected",
  602. "customEventData": ""
  603. },
  604. {
  605. "__type__": "cc.PrefabInfo",
  606. "root": {
  607. "__id__": 1
  608. },
  609. "asset": {
  610. "__uuid__": "6a4f3ae2-1f9e-448c-bb80-e16eed3312fd"
  611. },
  612. "fileId": "0alR2HlTRKJKRg2cRuhHD4",
  613. "sync": false
  614. },
  615. {
  616. "__type__": "cc.Node",
  617. "_name": "friend_rank_tab",
  618. "_objFlags": 0,
  619. "_parent": {
  620. "__id__": 6
  621. },
  622. "_children": [],
  623. "_tag": -1,
  624. "_active": true,
  625. "_components": [
  626. {
  627. "__id__": 19
  628. },
  629. {
  630. "__id__": 20
  631. }
  632. ],
  633. "_prefab": {
  634. "__id__": 22
  635. },
  636. "_id": "",
  637. "_opacity": 255,
  638. "_color": {
  639. "__type__": "cc.Color",
  640. "r": 255,
  641. "g": 255,
  642. "b": 255,
  643. "a": 255
  644. },
  645. "_cascadeOpacityEnabled": true,
  646. "_anchorPoint": {
  647. "__type__": "cc.Vec2",
  648. "x": 0.5,
  649. "y": 1
  650. },
  651. "_contentSize": {
  652. "__type__": "cc.Size",
  653. "width": 200,
  654. "height": 80
  655. },
  656. "_rotationX": 0,
  657. "_rotationY": 0,
  658. "_scaleX": 1,
  659. "_scaleY": 1,
  660. "_position": {
  661. "__type__": "cc.Vec2",
  662. "x": -30.8,
  663. "y": 448
  664. },
  665. "_skewX": 0,
  666. "_skewY": 0,
  667. "_localZOrder": 0,
  668. "_globalZOrder": 0,
  669. "_opacityModifyRGB": false,
  670. "groupIndex": 0
  671. },
  672. {
  673. "__type__": "cc.Sprite",
  674. "_name": "",
  675. "_objFlags": 0,
  676. "node": {
  677. "__id__": 18
  678. },
  679. "_enabled": true,
  680. "_spriteFrame": {
  681. "__uuid__": "80dc9f09-5f1f-465c-be0f-8ccf2c123698"
  682. },
  683. "_type": 1,
  684. "_sizeMode": 1,
  685. "_fillType": 0,
  686. "_fillCenter": {
  687. "__type__": "cc.Vec2",
  688. "x": 0,
  689. "y": 0
  690. },
  691. "_fillStart": 0,
  692. "_fillRange": 0,
  693. "_isTrimmedMode": true,
  694. "_srcBlendFactor": 770,
  695. "_dstBlendFactor": 771,
  696. "_atlas": null
  697. },
  698. {
  699. "__type__": "cc.Button",
  700. "_name": "",
  701. "_objFlags": 0,
  702. "node": {
  703. "__id__": 18
  704. },
  705. "_enabled": true,
  706. "transition": 0,
  707. "pressedColor": {
  708. "__type__": "cc.Color",
  709. "r": 120,
  710. "g": 120,
  711. "b": 120,
  712. "a": 255
  713. },
  714. "hoverColor": {
  715. "__type__": "cc.Color",
  716. "r": 255,
  717. "g": 255,
  718. "b": 255,
  719. "a": 255
  720. },
  721. "duration": 0.1,
  722. "zoomScale": 1.2,
  723. "clickEvents": [
  724. {
  725. "__id__": 21
  726. }
  727. ],
  728. "_N$interactable": true,
  729. "_N$enableAutoGrayEffect": false,
  730. "_N$normalColor": {
  731. "__type__": "cc.Color",
  732. "r": 255,
  733. "g": 255,
  734. "b": 255,
  735. "a": 255
  736. },
  737. "_N$disabledColor": {
  738. "__type__": "cc.Color",
  739. "r": 255,
  740. "g": 255,
  741. "b": 255,
  742. "a": 255
  743. },
  744. "_N$normalSprite": {
  745. "__uuid__": "55fcad8a-30d6-4b8c-b5f9-f8f61796e2cc"
  746. },
  747. "_N$pressedSprite": {
  748. "__uuid__": "55fcad8a-30d6-4b8c-b5f9-f8f61796e2cc"
  749. },
  750. "pressedSprite": {
  751. "__uuid__": "55fcad8a-30d6-4b8c-b5f9-f8f61796e2cc"
  752. },
  753. "_N$hoverSprite": {
  754. "__uuid__": "55fcad8a-30d6-4b8c-b5f9-f8f61796e2cc"
  755. },
  756. "hoverSprite": {
  757. "__uuid__": "55fcad8a-30d6-4b8c-b5f9-f8f61796e2cc"
  758. },
  759. "_N$disabledSprite": {
  760. "__uuid__": "55fcad8a-30d6-4b8c-b5f9-f8f61796e2cc"
  761. },
  762. "_N$target": {
  763. "__id__": 18
  764. }
  765. },
  766. {
  767. "__type__": "cc.ClickEvent",
  768. "target": {
  769. "__id__": 1
  770. },
  771. "component": "RankPage",
  772. "handler": "friendRankSelected",
  773. "customEventData": ""
  774. },
  775. {
  776. "__type__": "cc.PrefabInfo",
  777. "root": {
  778. "__id__": 1
  779. },
  780. "asset": {
  781. "__uuid__": "6a4f3ae2-1f9e-448c-bb80-e16eed3312fd"
  782. },
  783. "fileId": "f7oUbQVXpMG7d6wlI8CAeF",
  784. "sync": false
  785. },
  786. {
  787. "__type__": "cc.Node",
  788. "_name": "company_rank",
  789. "_objFlags": 0,
  790. "_parent": {
  791. "__id__": 6
  792. },
  793. "_children": [
  794. {
  795. "__id__": 24
  796. }
  797. ],
  798. "_tag": -1,
  799. "_active": true,
  800. "_components": [
  801. {
  802. "__id__": 28
  803. },
  804. {
  805. "__id__": 29
  806. }
  807. ],
  808. "_prefab": {
  809. "__id__": 31
  810. },
  811. "_id": "",
  812. "_opacity": 255,
  813. "_color": {
  814. "__type__": "cc.Color",
  815. "r": 255,
  816. "g": 255,
  817. "b": 255,
  818. "a": 255
  819. },
  820. "_cascadeOpacityEnabled": true,
  821. "_anchorPoint": {
  822. "__type__": "cc.Vec2",
  823. "x": 0.5,
  824. "y": 0.5
  825. },
  826. "_contentSize": {
  827. "__type__": "cc.Size",
  828. "width": 338,
  829. "height": 70
  830. },
  831. "_rotationX": 0,
  832. "_rotationY": 0,
  833. "_scaleX": 1,
  834. "_scaleY": 1,
  835. "_position": {
  836. "__type__": "cc.Vec2",
  837. "x": -169.9,
  838. "y": 285
  839. },
  840. "_skewX": 0,
  841. "_skewY": 0,
  842. "_localZOrder": 0,
  843. "_globalZOrder": 0,
  844. "_opacityModifyRGB": false,
  845. "groupIndex": 0
  846. },
  847. {
  848. "__type__": "cc.Node",
  849. "_name": "companyText",
  850. "_objFlags": 0,
  851. "_parent": {
  852. "__id__": 23
  853. },
  854. "_children": [],
  855. "_tag": -1,
  856. "_active": true,
  857. "_components": [
  858. {
  859. "__id__": 25
  860. },
  861. {
  862. "__id__": 26
  863. }
  864. ],
  865. "_prefab": {
  866. "__id__": 27
  867. },
  868. "_id": "",
  869. "_opacity": 255,
  870. "_color": {
  871. "__type__": "cc.Color",
  872. "r": 255,
  873. "g": 244,
  874. "b": 222,
  875. "a": 255
  876. },
  877. "_cascadeOpacityEnabled": true,
  878. "_anchorPoint": {
  879. "__type__": "cc.Vec2",
  880. "x": 0.5,
  881. "y": 0.5
  882. },
  883. "_contentSize": {
  884. "__type__": "cc.Size",
  885. "width": 180,
  886. "height": 40
  887. },
  888. "_rotationX": 0,
  889. "_rotationY": 0,
  890. "_scaleX": 1,
  891. "_scaleY": 1,
  892. "_position": {
  893. "__type__": "cc.Vec2",
  894. "x": 0,
  895. "y": 0
  896. },
  897. "_skewX": 0,
  898. "_skewY": 0,
  899. "_localZOrder": 0,
  900. "_globalZOrder": 0,
  901. "_opacityModifyRGB": false,
  902. "groupIndex": 0
  903. },
  904. {
  905. "__type__": "cc.Label",
  906. "_name": "",
  907. "_objFlags": 0,
  908. "node": {
  909. "__id__": 24
  910. },
  911. "_enabled": true,
  912. "_useOriginalSize": false,
  913. "_actualFontSize": 36,
  914. "_fontSize": 36,
  915. "_lineHeight": 40,
  916. "_enableWrapText": true,
  917. "_N$file": null,
  918. "_isSystemFontUsed": true,
  919. "_spacingX": 0,
  920. "_N$string": "公司星级榜",
  921. "_N$horizontalAlign": 0,
  922. "_N$verticalAlign": 0,
  923. "_N$fontFamily": "Arial",
  924. "_N$overflow": 0
  925. },
  926. {
  927. "__type__": "cc.LabelOutline",
  928. "_name": "",
  929. "_objFlags": 0,
  930. "node": {
  931. "__id__": 24
  932. },
  933. "_enabled": true,
  934. "_color": {
  935. "__type__": "cc.Color",
  936. "r": 161,
  937. "g": 105,
  938. "b": 33,
  939. "a": 255
  940. },
  941. "_width": 1
  942. },
  943. {
  944. "__type__": "cc.PrefabInfo",
  945. "root": {
  946. "__id__": 1
  947. },
  948. "asset": {
  949. "__uuid__": "6a4f3ae2-1f9e-448c-bb80-e16eed3312fd"
  950. },
  951. "fileId": "18ZDSoXRhAWKvuBafdTb0F",
  952. "sync": false
  953. },
  954. {
  955. "__type__": "cc.Sprite",
  956. "_name": "",
  957. "_objFlags": 0,
  958. "node": {
  959. "__id__": 23
  960. },
  961. "_enabled": true,
  962. "_spriteFrame": {
  963. "__uuid__": "36e400ea-3e3c-4307-a4a9-7fdc627d9138"
  964. },
  965. "_type": 1,
  966. "_sizeMode": 0,
  967. "_fillType": 0,
  968. "_fillCenter": {
  969. "__type__": "cc.Vec2",
  970. "x": 0,
  971. "y": 0
  972. },
  973. "_fillStart": 0,
  974. "_fillRange": 0,
  975. "_isTrimmedMode": true,
  976. "_srcBlendFactor": 770,
  977. "_dstBlendFactor": 771,
  978. "_atlas": null
  979. },
  980. {
  981. "__type__": "cc.Button",
  982. "_name": "",
  983. "_objFlags": 0,
  984. "node": {
  985. "__id__": 23
  986. },
  987. "_enabled": true,
  988. "transition": 0,
  989. "pressedColor": {
  990. "__type__": "cc.Color",
  991. "r": 211,
  992. "g": 211,
  993. "b": 211,
  994. "a": 255
  995. },
  996. "hoverColor": {
  997. "__type__": "cc.Color",
  998. "r": 255,
  999. "g": 255,
  1000. "b": 255,
  1001. "a": 255
  1002. },
  1003. "duration": 0.1,
  1004. "zoomScale": 1.2,
  1005. "clickEvents": [
  1006. {
  1007. "__id__": 30
  1008. }
  1009. ],
  1010. "_N$interactable": true,
  1011. "_N$enableAutoGrayEffect": false,
  1012. "_N$normalColor": {
  1013. "__type__": "cc.Color",
  1014. "r": 214,
  1015. "g": 214,
  1016. "b": 214,
  1017. "a": 255
  1018. },
  1019. "_N$disabledColor": {
  1020. "__type__": "cc.Color",
  1021. "r": 124,
  1022. "g": 124,
  1023. "b": 124,
  1024. "a": 255
  1025. },
  1026. "_N$normalSprite": null,
  1027. "_N$pressedSprite": null,
  1028. "pressedSprite": null,
  1029. "_N$hoverSprite": null,
  1030. "hoverSprite": null,
  1031. "_N$disabledSprite": null,
  1032. "_N$target": {
  1033. "__id__": 23
  1034. }
  1035. },
  1036. {
  1037. "__type__": "cc.ClickEvent",
  1038. "target": {
  1039. "__id__": 1
  1040. },
  1041. "component": "RankPage",
  1042. "handler": "companyTabSelected",
  1043. "customEventData": ""
  1044. },
  1045. {
  1046. "__type__": "cc.PrefabInfo",
  1047. "root": {
  1048. "__id__": 1
  1049. },
  1050. "asset": {
  1051. "__uuid__": "6a4f3ae2-1f9e-448c-bb80-e16eed3312fd"
  1052. },
  1053. "fileId": "81TrvYGnRL8L6WOLb14Qty",
  1054. "sync": false
  1055. },
  1056. {
  1057. "__type__": "cc.Node",
  1058. "_name": "artist_rank",
  1059. "_objFlags": 0,
  1060. "_parent": {
  1061. "__id__": 6
  1062. },
  1063. "_children": [
  1064. {
  1065. "__id__": 33
  1066. }
  1067. ],
  1068. "_tag": -1,
  1069. "_active": true,
  1070. "_components": [
  1071. {
  1072. "__id__": 37
  1073. },
  1074. {
  1075. "__id__": 38
  1076. }
  1077. ],
  1078. "_prefab": {
  1079. "__id__": 40
  1080. },
  1081. "_id": "",
  1082. "_opacity": 255,
  1083. "_color": {
  1084. "__type__": "cc.Color",
  1085. "r": 255,
  1086. "g": 255,
  1087. "b": 255,
  1088. "a": 255
  1089. },
  1090. "_cascadeOpacityEnabled": true,
  1091. "_anchorPoint": {
  1092. "__type__": "cc.Vec2",
  1093. "x": 0.5,
  1094. "y": 0.5
  1095. },
  1096. "_contentSize": {
  1097. "__type__": "cc.Size",
  1098. "width": 338,
  1099. "height": 70
  1100. },
  1101. "_rotationX": 0,
  1102. "_rotationY": 0,
  1103. "_scaleX": 1,
  1104. "_scaleY": 1,
  1105. "_position": {
  1106. "__type__": "cc.Vec2",
  1107. "x": 170.8,
  1108. "y": 285
  1109. },
  1110. "_skewX": 0,
  1111. "_skewY": 0,
  1112. "_localZOrder": 0,
  1113. "_globalZOrder": 0,
  1114. "_opacityModifyRGB": false,
  1115. "groupIndex": 0
  1116. },
  1117. {
  1118. "__type__": "cc.Node",
  1119. "_name": "artistText",
  1120. "_objFlags": 0,
  1121. "_parent": {
  1122. "__id__": 32
  1123. },
  1124. "_children": [],
  1125. "_tag": -1,
  1126. "_active": true,
  1127. "_components": [
  1128. {
  1129. "__id__": 34
  1130. },
  1131. {
  1132. "__id__": 35
  1133. }
  1134. ],
  1135. "_prefab": {
  1136. "__id__": 36
  1137. },
  1138. "_id": "",
  1139. "_opacity": 255,
  1140. "_color": {
  1141. "__type__": "cc.Color",
  1142. "r": 161,
  1143. "g": 105,
  1144. "b": 33,
  1145. "a": 255
  1146. },
  1147. "_cascadeOpacityEnabled": true,
  1148. "_anchorPoint": {
  1149. "__type__": "cc.Vec2",
  1150. "x": 0.5,
  1151. "y": 0.5
  1152. },
  1153. "_contentSize": {
  1154. "__type__": "cc.Size",
  1155. "width": 180,
  1156. "height": 40
  1157. },
  1158. "_rotationX": 0,
  1159. "_rotationY": 0,
  1160. "_scaleX": 1,
  1161. "_scaleY": 1,
  1162. "_position": {
  1163. "__type__": "cc.Vec2",
  1164. "x": 0,
  1165. "y": 0
  1166. },
  1167. "_skewX": 0,
  1168. "_skewY": 0,
  1169. "_localZOrder": 0,
  1170. "_globalZOrder": 0,
  1171. "_opacityModifyRGB": false,
  1172. "groupIndex": 0
  1173. },
  1174. {
  1175. "__type__": "cc.Label",
  1176. "_name": "",
  1177. "_objFlags": 0,
  1178. "node": {
  1179. "__id__": 33
  1180. },
  1181. "_enabled": true,
  1182. "_useOriginalSize": false,
  1183. "_actualFontSize": 36,
  1184. "_fontSize": 36,
  1185. "_lineHeight": 40,
  1186. "_enableWrapText": true,
  1187. "_N$file": null,
  1188. "_isSystemFontUsed": true,
  1189. "_spacingX": 0,
  1190. "_N$string": "艺人年薪榜",
  1191. "_N$horizontalAlign": 0,
  1192. "_N$verticalAlign": 0,
  1193. "_N$fontFamily": "Arial",
  1194. "_N$overflow": 0
  1195. },
  1196. {
  1197. "__type__": "cc.LabelOutline",
  1198. "_name": "",
  1199. "_objFlags": 0,
  1200. "node": {
  1201. "__id__": 33
  1202. },
  1203. "_enabled": true,
  1204. "_color": {
  1205. "__type__": "cc.Color",
  1206. "r": 161,
  1207. "g": 105,
  1208. "b": 33,
  1209. "a": 255
  1210. },
  1211. "_width": 1
  1212. },
  1213. {
  1214. "__type__": "cc.PrefabInfo",
  1215. "root": {
  1216. "__id__": 1
  1217. },
  1218. "asset": {
  1219. "__uuid__": "6a4f3ae2-1f9e-448c-bb80-e16eed3312fd"
  1220. },
  1221. "fileId": "98Brdo1blMnqCTMH/f8/mc",
  1222. "sync": false
  1223. },
  1224. {
  1225. "__type__": "cc.Sprite",
  1226. "_name": "",
  1227. "_objFlags": 0,
  1228. "node": {
  1229. "__id__": 32
  1230. },
  1231. "_enabled": true,
  1232. "_spriteFrame": null,
  1233. "_type": 1,
  1234. "_sizeMode": 0,
  1235. "_fillType": 0,
  1236. "_fillCenter": {
  1237. "__type__": "cc.Vec2",
  1238. "x": 0,
  1239. "y": 0
  1240. },
  1241. "_fillStart": 0,
  1242. "_fillRange": 0,
  1243. "_isTrimmedMode": true,
  1244. "_srcBlendFactor": 770,
  1245. "_dstBlendFactor": 771,
  1246. "_atlas": null
  1247. },
  1248. {
  1249. "__type__": "cc.Button",
  1250. "_name": "",
  1251. "_objFlags": 0,
  1252. "node": {
  1253. "__id__": 32
  1254. },
  1255. "_enabled": true,
  1256. "transition": 0,
  1257. "pressedColor": {
  1258. "__type__": "cc.Color",
  1259. "r": 211,
  1260. "g": 211,
  1261. "b": 211,
  1262. "a": 255
  1263. },
  1264. "hoverColor": {
  1265. "__type__": "cc.Color",
  1266. "r": 255,
  1267. "g": 255,
  1268. "b": 255,
  1269. "a": 255
  1270. },
  1271. "duration": 0.1,
  1272. "zoomScale": 1.2,
  1273. "clickEvents": [
  1274. {
  1275. "__id__": 39
  1276. }
  1277. ],
  1278. "_N$interactable": true,
  1279. "_N$enableAutoGrayEffect": false,
  1280. "_N$normalColor": {
  1281. "__type__": "cc.Color",
  1282. "r": 214,
  1283. "g": 214,
  1284. "b": 214,
  1285. "a": 255
  1286. },
  1287. "_N$disabledColor": {
  1288. "__type__": "cc.Color",
  1289. "r": 124,
  1290. "g": 124,
  1291. "b": 124,
  1292. "a": 255
  1293. },
  1294. "_N$normalSprite": null,
  1295. "_N$pressedSprite": null,
  1296. "pressedSprite": null,
  1297. "_N$hoverSprite": null,
  1298. "hoverSprite": null,
  1299. "_N$disabledSprite": null,
  1300. "_N$target": {
  1301. "__id__": 32
  1302. }
  1303. },
  1304. {
  1305. "__type__": "cc.ClickEvent",
  1306. "target": {
  1307. "__id__": 1
  1308. },
  1309. "component": "RankPage",
  1310. "handler": "artistTabSelected",
  1311. "customEventData": ""
  1312. },
  1313. {
  1314. "__type__": "cc.PrefabInfo",
  1315. "root": {
  1316. "__id__": 1
  1317. },
  1318. "asset": {
  1319. "__uuid__": "6a4f3ae2-1f9e-448c-bb80-e16eed3312fd"
  1320. },
  1321. "fileId": "18RbyONFJD9oWrSQirm1Zt",
  1322. "sync": false
  1323. },
  1324. {
  1325. "__type__": "cc.Node",
  1326. "_name": "top_divider",
  1327. "_objFlags": 0,
  1328. "_parent": {
  1329. "__id__": 6
  1330. },
  1331. "_children": [],
  1332. "_tag": -1,
  1333. "_active": true,
  1334. "_components": [
  1335. {
  1336. "__id__": 42
  1337. }
  1338. ],
  1339. "_prefab": {
  1340. "__id__": 43
  1341. },
  1342. "_id": "",
  1343. "_opacity": 255,
  1344. "_color": {
  1345. "__type__": "cc.Color",
  1346. "r": 219,
  1347. "g": 195,
  1348. "b": 119,
  1349. "a": 255
  1350. },
  1351. "_cascadeOpacityEnabled": true,
  1352. "_anchorPoint": {
  1353. "__type__": "cc.Vec2",
  1354. "x": 0.5,
  1355. "y": 0.5
  1356. },
  1357. "_contentSize": {
  1358. "__type__": "cc.Size",
  1359. "width": 708,
  1360. "height": 3
  1361. },
  1362. "_rotationX": 0,
  1363. "_rotationY": 0,
  1364. "_scaleX": 1,
  1365. "_scaleY": 1,
  1366. "_position": {
  1367. "__type__": "cc.Vec2",
  1368. "x": 0,
  1369. "y": 344.1
  1370. },
  1371. "_skewX": 0,
  1372. "_skewY": 0,
  1373. "_localZOrder": 0,
  1374. "_globalZOrder": 0,
  1375. "_opacityModifyRGB": false,
  1376. "groupIndex": 0
  1377. },
  1378. {
  1379. "__type__": "cc.Sprite",
  1380. "_name": "",
  1381. "_objFlags": 0,
  1382. "node": {
  1383. "__id__": 41
  1384. },
  1385. "_enabled": true,
  1386. "_spriteFrame": {
  1387. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  1388. },
  1389. "_type": 0,
  1390. "_sizeMode": 0,
  1391. "_fillType": 0,
  1392. "_fillCenter": {
  1393. "__type__": "cc.Vec2",
  1394. "x": 0,
  1395. "y": 0
  1396. },
  1397. "_fillStart": 0,
  1398. "_fillRange": 0,
  1399. "_isTrimmedMode": true,
  1400. "_srcBlendFactor": 770,
  1401. "_dstBlendFactor": 771,
  1402. "_atlas": null
  1403. },
  1404. {
  1405. "__type__": "cc.PrefabInfo",
  1406. "root": {
  1407. "__id__": 1
  1408. },
  1409. "asset": {
  1410. "__uuid__": "6a4f3ae2-1f9e-448c-bb80-e16eed3312fd"
  1411. },
  1412. "fileId": "62s/KEsRdAgoNe9o7PzD8E",
  1413. "sync": false
  1414. },
  1415. {
  1416. "__type__": "cc.Node",
  1417. "_name": "company_rank_listview",
  1418. "_objFlags": 0,
  1419. "_parent": {
  1420. "__id__": 6
  1421. },
  1422. "_children": [
  1423. {
  1424. "__id__": 45
  1425. },
  1426. {
  1427. "__id__": 50
  1428. },
  1429. {
  1430. "__id__": 53
  1431. }
  1432. ],
  1433. "_tag": -1,
  1434. "_active": true,
  1435. "_components": [
  1436. {
  1437. "__id__": 83
  1438. },
  1439. {
  1440. "__id__": 85
  1441. }
  1442. ],
  1443. "_prefab": {
  1444. "__id__": 86
  1445. },
  1446. "_id": "",
  1447. "_opacity": 255,
  1448. "_color": {
  1449. "__type__": "cc.Color",
  1450. "r": 255,
  1451. "g": 255,
  1452. "b": 255,
  1453. "a": 255
  1454. },
  1455. "_cascadeOpacityEnabled": true,
  1456. "_anchorPoint": {
  1457. "__type__": "cc.Vec2",
  1458. "x": 0.5,
  1459. "y": 0.5
  1460. },
  1461. "_contentSize": {
  1462. "__type__": "cc.Size",
  1463. "width": 700,
  1464. "height": 670
  1465. },
  1466. "_rotationX": 0,
  1467. "_rotationY": 0,
  1468. "_scaleX": 1,
  1469. "_scaleY": 1,
  1470. "_position": {
  1471. "__type__": "cc.Vec2",
  1472. "x": 0,
  1473. "y": -93
  1474. },
  1475. "_skewX": 0,
  1476. "_skewY": 0,
  1477. "_localZOrder": 0,
  1478. "_globalZOrder": 0,
  1479. "_opacityModifyRGB": false,
  1480. "groupIndex": 0
  1481. },
  1482. {
  1483. "__type__": "cc.Node",
  1484. "_name": "view",
  1485. "_objFlags": 0,
  1486. "_parent": {
  1487. "__id__": 44
  1488. },
  1489. "_children": [
  1490. {
  1491. "__id__": 46
  1492. }
  1493. ],
  1494. "_tag": -1,
  1495. "_active": true,
  1496. "_components": [
  1497. {
  1498. "__id__": 48
  1499. }
  1500. ],
  1501. "_prefab": {
  1502. "__id__": 49
  1503. },
  1504. "_id": "",
  1505. "_opacity": 255,
  1506. "_color": {
  1507. "__type__": "cc.Color",
  1508. "r": 255,
  1509. "g": 255,
  1510. "b": 255,
  1511. "a": 255
  1512. },
  1513. "_cascadeOpacityEnabled": true,
  1514. "_anchorPoint": {
  1515. "__type__": "cc.Vec2",
  1516. "x": 0.5,
  1517. "y": 0.5
  1518. },
  1519. "_contentSize": {
  1520. "__type__": "cc.Size",
  1521. "width": 700,
  1522. "height": 670
  1523. },
  1524. "_rotationX": 0,
  1525. "_rotationY": 0,
  1526. "_scaleX": 1,
  1527. "_scaleY": 1,
  1528. "_position": {
  1529. "__type__": "cc.Vec2",
  1530. "x": 0,
  1531. "y": 0
  1532. },
  1533. "_skewX": 0,
  1534. "_skewY": 0,
  1535. "_localZOrder": 0,
  1536. "_globalZOrder": 0,
  1537. "_opacityModifyRGB": false,
  1538. "groupIndex": 0
  1539. },
  1540. {
  1541. "__type__": "cc.Node",
  1542. "_name": "content",
  1543. "_objFlags": 0,
  1544. "_parent": {
  1545. "__id__": 45
  1546. },
  1547. "_children": [],
  1548. "_tag": -1,
  1549. "_active": true,
  1550. "_components": [],
  1551. "_prefab": {
  1552. "__id__": 47
  1553. },
  1554. "_id": "",
  1555. "_opacity": 255,
  1556. "_color": {
  1557. "__type__": "cc.Color",
  1558. "r": 255,
  1559. "g": 255,
  1560. "b": 255,
  1561. "a": 255
  1562. },
  1563. "_cascadeOpacityEnabled": true,
  1564. "_anchorPoint": {
  1565. "__type__": "cc.Vec2",
  1566. "x": 0.5,
  1567. "y": 1
  1568. },
  1569. "_contentSize": {
  1570. "__type__": "cc.Size",
  1571. "width": 700,
  1572. "height": 400
  1573. },
  1574. "_rotationX": 0,
  1575. "_rotationY": 0,
  1576. "_scaleX": 1,
  1577. "_scaleY": 1,
  1578. "_position": {
  1579. "__type__": "cc.Vec2",
  1580. "x": 0,
  1581. "y": 335
  1582. },
  1583. "_skewX": 0,
  1584. "_skewY": 0,
  1585. "_localZOrder": 0,
  1586. "_globalZOrder": 0,
  1587. "_opacityModifyRGB": false,
  1588. "groupIndex": 0
  1589. },
  1590. {
  1591. "__type__": "cc.PrefabInfo",
  1592. "root": {
  1593. "__id__": 1
  1594. },
  1595. "asset": {
  1596. "__uuid__": "6a4f3ae2-1f9e-448c-bb80-e16eed3312fd"
  1597. },
  1598. "fileId": "b99YHTO5pNd6XUTqF/Zi78",
  1599. "sync": false
  1600. },
  1601. {
  1602. "__type__": "cc.Mask",
  1603. "_name": "",
  1604. "_objFlags": 0,
  1605. "node": {
  1606. "__id__": 45
  1607. },
  1608. "_enabled": true,
  1609. "_type": 0,
  1610. "_segements": 64,
  1611. "_N$spriteFrame": null,
  1612. "_N$alphaThreshold": 1,
  1613. "_N$inverted": false
  1614. },
  1615. {
  1616. "__type__": "cc.PrefabInfo",
  1617. "root": {
  1618. "__id__": 1
  1619. },
  1620. "asset": {
  1621. "__uuid__": "6a4f3ae2-1f9e-448c-bb80-e16eed3312fd"
  1622. },
  1623. "fileId": "6eo12A4BVMkZvQkhEZrhkR",
  1624. "sync": false
  1625. },
  1626. {
  1627. "__type__": "cc.Node",
  1628. "_name": "tipLabel",
  1629. "_objFlags": 0,
  1630. "_parent": {
  1631. "__id__": 44
  1632. },
  1633. "_children": [],
  1634. "_tag": -1,
  1635. "_active": true,
  1636. "_components": [
  1637. {
  1638. "__id__": 51
  1639. }
  1640. ],
  1641. "_prefab": {
  1642. "__id__": 52
  1643. },
  1644. "_id": "",
  1645. "_opacity": 255,
  1646. "_color": {
  1647. "__type__": "cc.Color",
  1648. "r": 74,
  1649. "g": 65,
  1650. "b": 58,
  1651. "a": 255
  1652. },
  1653. "_cascadeOpacityEnabled": true,
  1654. "_anchorPoint": {
  1655. "__type__": "cc.Vec2",
  1656. "x": 0.5,
  1657. "y": 0.5
  1658. },
  1659. "_contentSize": {
  1660. "__type__": "cc.Size",
  1661. "width": 550,
  1662. "height": 50
  1663. },
  1664. "_rotationX": 0,
  1665. "_rotationY": 0,
  1666. "_scaleX": 1,
  1667. "_scaleY": 1,
  1668. "_position": {
  1669. "__type__": "cc.Vec2",
  1670. "x": -4.1,
  1671. "y": -7.9
  1672. },
  1673. "_skewX": 0,
  1674. "_skewY": 0,
  1675. "_localZOrder": 0,
  1676. "_globalZOrder": 0,
  1677. "_opacityModifyRGB": false,
  1678. "groupIndex": 0
  1679. },
  1680. {
  1681. "__type__": "cc.Label",
  1682. "_name": "",
  1683. "_objFlags": 0,
  1684. "node": {
  1685. "__id__": 50
  1686. },
  1687. "_enabled": true,
  1688. "_useOriginalSize": false,
  1689. "_actualFontSize": 40,
  1690. "_fontSize": 40,
  1691. "_lineHeight": 50,
  1692. "_enableWrapText": true,
  1693. "_N$file": null,
  1694. "_isSystemFontUsed": true,
  1695. "_spacingX": 0,
  1696. "_N$string": "加载中...",
  1697. "_N$horizontalAlign": 1,
  1698. "_N$verticalAlign": 0,
  1699. "_N$fontFamily": "Arial",
  1700. "_N$overflow": 3
  1701. },
  1702. {
  1703. "__type__": "cc.PrefabInfo",
  1704. "root": {
  1705. "__id__": 1
  1706. },
  1707. "asset": {
  1708. "__uuid__": "6a4f3ae2-1f9e-448c-bb80-e16eed3312fd"
  1709. },
  1710. "fileId": "1dFynaWwRNa622B/c+jaoo",
  1711. "sync": false
  1712. },
  1713. {
  1714. "__type__": "cc.Node",
  1715. "_name": "company_my_item",
  1716. "_objFlags": 0,
  1717. "_parent": {
  1718. "__id__": 44
  1719. },
  1720. "_children": [
  1721. {
  1722. "__id__": 54
  1723. },
  1724. {
  1725. "__id__": 57
  1726. },
  1727. {
  1728. "__id__": 60
  1729. },
  1730. {
  1731. "__id__": 63
  1732. },
  1733. {
  1734. "__id__": 67
  1735. },
  1736. {
  1737. "__id__": 73
  1738. },
  1739. {
  1740. "__id__": 76
  1741. }
  1742. ],
  1743. "_tag": -1,
  1744. "_active": true,
  1745. "_components": [
  1746. {
  1747. "__id__": 80
  1748. },
  1749. {
  1750. "__id__": 81
  1751. }
  1752. ],
  1753. "_prefab": {
  1754. "__id__": 82
  1755. },
  1756. "_id": "",
  1757. "_opacity": 255,
  1758. "_color": {
  1759. "__type__": "cc.Color",
  1760. "r": 255,
  1761. "g": 255,
  1762. "b": 255,
  1763. "a": 255
  1764. },
  1765. "_cascadeOpacityEnabled": true,
  1766. "_anchorPoint": {
  1767. "__type__": "cc.Vec2",
  1768. "x": 0.5,
  1769. "y": 0.5
  1770. },
  1771. "_contentSize": {
  1772. "__type__": "cc.Size",
  1773. "width": 680,
  1774. "height": 130
  1775. },
  1776. "_rotationX": 0,
  1777. "_rotationY": 0,
  1778. "_scaleX": 1,
  1779. "_scaleY": 1,
  1780. "_position": {
  1781. "__type__": "cc.Vec2",
  1782. "x": 0,
  1783. "y": -431
  1784. },
  1785. "_skewX": 0,
  1786. "_skewY": 0,
  1787. "_localZOrder": 0,
  1788. "_globalZOrder": 0,
  1789. "_opacityModifyRGB": false,
  1790. "groupIndex": 0
  1791. },
  1792. {
  1793. "__type__": "cc.Node",
  1794. "_name": "avatar_sprite",
  1795. "_objFlags": 0,
  1796. "_parent": {
  1797. "__id__": 53
  1798. },
  1799. "_children": [],
  1800. "_tag": -1,
  1801. "_active": true,
  1802. "_components": [
  1803. {
  1804. "__id__": 55
  1805. }
  1806. ],
  1807. "_prefab": {
  1808. "__id__": 56
  1809. },
  1810. "_id": "",
  1811. "_opacity": 255,
  1812. "_color": {
  1813. "__type__": "cc.Color",
  1814. "r": 255,
  1815. "g": 255,
  1816. "b": 255,
  1817. "a": 255
  1818. },
  1819. "_cascadeOpacityEnabled": true,
  1820. "_anchorPoint": {
  1821. "__type__": "cc.Vec2",
  1822. "x": 0.5,
  1823. "y": 0.5
  1824. },
  1825. "_contentSize": {
  1826. "__type__": "cc.Size",
  1827. "width": 94,
  1828. "height": 94
  1829. },
  1830. "_rotationX": 0,
  1831. "_rotationY": 0,
  1832. "_scaleX": 1,
  1833. "_scaleY": 1,
  1834. "_position": {
  1835. "__type__": "cc.Vec2",
  1836. "x": -150,
  1837. "y": 0
  1838. },
  1839. "_skewX": 0,
  1840. "_skewY": 0,
  1841. "_localZOrder": 0,
  1842. "_globalZOrder": 0,
  1843. "_opacityModifyRGB": false,
  1844. "groupIndex": 0
  1845. },
  1846. {
  1847. "__type__": "cc.Sprite",
  1848. "_name": "",
  1849. "_objFlags": 0,
  1850. "node": {
  1851. "__id__": 54
  1852. },
  1853. "_enabled": true,
  1854. "_spriteFrame": {
  1855. "__uuid__": "8cdb44ac-a3f6-449f-b354-7cd48cf84061"
  1856. },
  1857. "_type": 0,
  1858. "_sizeMode": 0,
  1859. "_fillType": 0,
  1860. "_fillCenter": {
  1861. "__type__": "cc.Vec2",
  1862. "x": 0,
  1863. "y": 0
  1864. },
  1865. "_fillStart": 0,
  1866. "_fillRange": 0,
  1867. "_isTrimmedMode": true,
  1868. "_srcBlendFactor": 770,
  1869. "_dstBlendFactor": 771,
  1870. "_atlas": null
  1871. },
  1872. {
  1873. "__type__": "cc.PrefabInfo",
  1874. "root": {
  1875. "__id__": 1
  1876. },
  1877. "asset": {
  1878. "__uuid__": "6a4f3ae2-1f9e-448c-bb80-e16eed3312fd"
  1879. },
  1880. "fileId": "c4ePfDIsBMA5hZ7lc7jfG9",
  1881. "sync": false
  1882. },
  1883. {
  1884. "__type__": "cc.Node",
  1885. "_name": "avatar_border",
  1886. "_objFlags": 0,
  1887. "_parent": {
  1888. "__id__": 53
  1889. },
  1890. "_children": [],
  1891. "_tag": -1,
  1892. "_active": true,
  1893. "_components": [
  1894. {
  1895. "__id__": 58
  1896. }
  1897. ],
  1898. "_prefab": {
  1899. "__id__": 59
  1900. },
  1901. "_id": "",
  1902. "_opacity": 255,
  1903. "_color": {
  1904. "__type__": "cc.Color",
  1905. "r": 255,
  1906. "g": 255,
  1907. "b": 255,
  1908. "a": 255
  1909. },
  1910. "_cascadeOpacityEnabled": true,
  1911. "_anchorPoint": {
  1912. "__type__": "cc.Vec2",
  1913. "x": 0.5,
  1914. "y": 0.5
  1915. },
  1916. "_contentSize": {
  1917. "__type__": "cc.Size",
  1918. "width": 94,
  1919. "height": 94
  1920. },
  1921. "_rotationX": 0,
  1922. "_rotationY": 0,
  1923. "_scaleX": 1,
  1924. "_scaleY": 1,
  1925. "_position": {
  1926. "__type__": "cc.Vec2",
  1927. "x": -150,
  1928. "y": 0
  1929. },
  1930. "_skewX": 0,
  1931. "_skewY": 0,
  1932. "_localZOrder": 0,
  1933. "_globalZOrder": 0,
  1934. "_opacityModifyRGB": false,
  1935. "groupIndex": 0
  1936. },
  1937. {
  1938. "__type__": "cc.Sprite",
  1939. "_name": "",
  1940. "_objFlags": 0,
  1941. "node": {
  1942. "__id__": 57
  1943. },
  1944. "_enabled": true,
  1945. "_spriteFrame": {
  1946. "__uuid__": "06a4cfc4-a5ce-41d5-81a7-d7df9144e13e"
  1947. },
  1948. "_type": 0,
  1949. "_sizeMode": 1,
  1950. "_fillType": 0,
  1951. "_fillCenter": {
  1952. "__type__": "cc.Vec2",
  1953. "x": 0,
  1954. "y": 0
  1955. },
  1956. "_fillStart": 0,
  1957. "_fillRange": 0,
  1958. "_isTrimmedMode": true,
  1959. "_srcBlendFactor": 770,
  1960. "_dstBlendFactor": 771,
  1961. "_atlas": null
  1962. },
  1963. {
  1964. "__type__": "cc.PrefabInfo",
  1965. "root": {
  1966. "__id__": 1
  1967. },
  1968. "asset": {
  1969. "__uuid__": "6a4f3ae2-1f9e-448c-bb80-e16eed3312fd"
  1970. },
  1971. "fileId": "31qHJhQxFG+bPWt02ZpZ6i",
  1972. "sync": false
  1973. },
  1974. {
  1975. "__type__": "cc.Node",
  1976. "_name": "rank_icon",
  1977. "_objFlags": 0,
  1978. "_parent": {
  1979. "__id__": 53
  1980. },
  1981. "_children": [],
  1982. "_tag": -1,
  1983. "_active": true,
  1984. "_components": [
  1985. {
  1986. "__id__": 61
  1987. }
  1988. ],
  1989. "_prefab": {
  1990. "__id__": 62
  1991. },
  1992. "_id": "",
  1993. "_opacity": 255,
  1994. "_color": {
  1995. "__type__": "cc.Color",
  1996. "r": 255,
  1997. "g": 255,
  1998. "b": 255,
  1999. "a": 255
  2000. },
  2001. "_cascadeOpacityEnabled": true,
  2002. "_anchorPoint": {
  2003. "__type__": "cc.Vec2",
  2004. "x": 0.5,
  2005. "y": 0.5
  2006. },
  2007. "_contentSize": {
  2008. "__type__": "cc.Size",
  2009. "width": 66,
  2010. "height": 68
  2011. },
  2012. "_rotationX": 0,
  2013. "_rotationY": 0,
  2014. "_scaleX": 1,
  2015. "_scaleY": 1,
  2016. "_position": {
  2017. "__type__": "cc.Vec2",
  2018. "x": -266.4,
  2019. "y": 0
  2020. },
  2021. "_skewX": 0,
  2022. "_skewY": 0,
  2023. "_localZOrder": 0,
  2024. "_globalZOrder": 0,
  2025. "_opacityModifyRGB": false,
  2026. "groupIndex": 0
  2027. },
  2028. {
  2029. "__type__": "cc.Sprite",
  2030. "_name": "",
  2031. "_objFlags": 0,
  2032. "node": {
  2033. "__id__": 60
  2034. },
  2035. "_enabled": true,
  2036. "_spriteFrame": {
  2037. "__uuid__": "ba87c6a1-4c9a-441d-ba39-a53661e309e0"
  2038. },
  2039. "_type": 0,
  2040. "_sizeMode": 1,
  2041. "_fillType": 0,
  2042. "_fillCenter": {
  2043. "__type__": "cc.Vec2",
  2044. "x": 0,
  2045. "y": 0
  2046. },
  2047. "_fillStart": 0,
  2048. "_fillRange": 0,
  2049. "_isTrimmedMode": true,
  2050. "_srcBlendFactor": 770,
  2051. "_dstBlendFactor": 771,
  2052. "_atlas": null
  2053. },
  2054. {
  2055. "__type__": "cc.PrefabInfo",
  2056. "root": {
  2057. "__id__": 1
  2058. },
  2059. "asset": {
  2060. "__uuid__": "6a4f3ae2-1f9e-448c-bb80-e16eed3312fd"
  2061. },
  2062. "fileId": "96lR/EfItPjo/EaYZgqx/l",
  2063. "sync": false
  2064. },
  2065. {
  2066. "__type__": "cc.Node",
  2067. "_name": "rankText",
  2068. "_objFlags": 0,
  2069. "_parent": {
  2070. "__id__": 53
  2071. },
  2072. "_children": [],
  2073. "_tag": -1,
  2074. "_active": true,
  2075. "_components": [
  2076. {
  2077. "__id__": 64
  2078. },
  2079. {
  2080. "__id__": 65
  2081. }
  2082. ],
  2083. "_prefab": {
  2084. "__id__": 66
  2085. },
  2086. "_id": "",
  2087. "_opacity": 255,
  2088. "_color": {
  2089. "__type__": "cc.Color",
  2090. "r": 255,
  2091. "g": 255,
  2092. "b": 255,
  2093. "a": 255
  2094. },
  2095. "_cascadeOpacityEnabled": true,
  2096. "_anchorPoint": {
  2097. "__type__": "cc.Vec2",
  2098. "x": 0.5,
  2099. "y": 0.5
  2100. },
  2101. "_contentSize": {
  2102. "__type__": "cc.Size",
  2103. "width": 90,
  2104. "height": 40
  2105. },
  2106. "_rotationX": 0,
  2107. "_rotationY": 0,
  2108. "_scaleX": 1,
  2109. "_scaleY": 1,
  2110. "_position": {
  2111. "__type__": "cc.Vec2",
  2112. "x": -266.3,
  2113. "y": 0
  2114. },
  2115. "_skewX": 0,
  2116. "_skewY": 0,
  2117. "_localZOrder": 0,
  2118. "_globalZOrder": 0,
  2119. "_opacityModifyRGB": false,
  2120. "groupIndex": 0
  2121. },
  2122. {
  2123. "__type__": "cc.Label",
  2124. "_name": "",
  2125. "_objFlags": 0,
  2126. "node": {
  2127. "__id__": 63
  2128. },
  2129. "_enabled": true,
  2130. "_useOriginalSize": false,
  2131. "_actualFontSize": 30,
  2132. "_fontSize": 30,
  2133. "_lineHeight": 40,
  2134. "_enableWrapText": true,
  2135. "_N$file": null,
  2136. "_isSystemFontUsed": true,
  2137. "_spacingX": 0,
  2138. "_N$string": "未上榜",
  2139. "_N$horizontalAlign": 0,
  2140. "_N$verticalAlign": 0,
  2141. "_N$fontFamily": "Arial",
  2142. "_N$overflow": 0
  2143. },
  2144. {
  2145. "__type__": "cc.LabelOutline",
  2146. "_name": "",
  2147. "_objFlags": 0,
  2148. "node": {
  2149. "__id__": 63
  2150. },
  2151. "_enabled": true,
  2152. "_color": {
  2153. "__type__": "cc.Color",
  2154. "r": 105,
  2155. "g": 46,
  2156. "b": 14,
  2157. "a": 255
  2158. },
  2159. "_width": 2
  2160. },
  2161. {
  2162. "__type__": "cc.PrefabInfo",
  2163. "root": {
  2164. "__id__": 1
  2165. },
  2166. "asset": {
  2167. "__uuid__": "6a4f3ae2-1f9e-448c-bb80-e16eed3312fd"
  2168. },
  2169. "fileId": "49yjqG7NhBfoxuQImeSQtw",
  2170. "sync": false
  2171. },
  2172. {
  2173. "__type__": "cc.Node",
  2174. "_name": "nameText",
  2175. "_objFlags": 0,
  2176. "_parent": {
  2177. "__id__": 53
  2178. },
  2179. "_children": [
  2180. {
  2181. "__id__": 68
  2182. }
  2183. ],
  2184. "_tag": -1,
  2185. "_active": true,
  2186. "_components": [
  2187. {
  2188. "__id__": 71
  2189. }
  2190. ],
  2191. "_prefab": {
  2192. "__id__": 72
  2193. },
  2194. "_id": "",
  2195. "_opacity": 255,
  2196. "_color": {
  2197. "__type__": "cc.Color",
  2198. "r": 54,
  2199. "g": 46,
  2200. "b": 43,
  2201. "a": 255
  2202. },
  2203. "_cascadeOpacityEnabled": true,
  2204. "_anchorPoint": {
  2205. "__type__": "cc.Vec2",
  2206. "x": 0,
  2207. "y": 0.5
  2208. },
  2209. "_contentSize": {
  2210. "__type__": "cc.Size",
  2211. "width": 59,
  2212. "height": 40
  2213. },
  2214. "_rotationX": 0,
  2215. "_rotationY": 0,
  2216. "_scaleX": 1,
  2217. "_scaleY": 1,
  2218. "_position": {
  2219. "__type__": "cc.Vec2",
  2220. "x": -67.7,
  2221. "y": 0
  2222. },
  2223. "_skewX": 0,
  2224. "_skewY": 0,
  2225. "_localZOrder": 0,
  2226. "_globalZOrder": 0,
  2227. "_opacityModifyRGB": false,
  2228. "groupIndex": 0
  2229. },
  2230. {
  2231. "__type__": "cc.Node",
  2232. "_name": "gender",
  2233. "_objFlags": 0,
  2234. "_parent": {
  2235. "__id__": 67
  2236. },
  2237. "_children": [],
  2238. "_tag": -1,
  2239. "_active": true,
  2240. "_components": [
  2241. {
  2242. "__id__": 69
  2243. }
  2244. ],
  2245. "_prefab": {
  2246. "__id__": 70
  2247. },
  2248. "_id": "",
  2249. "_opacity": 255,
  2250. "_color": {
  2251. "__type__": "cc.Color",
  2252. "r": 255,
  2253. "g": 255,
  2254. "b": 255,
  2255. "a": 255
  2256. },
  2257. "_cascadeOpacityEnabled": true,
  2258. "_anchorPoint": {
  2259. "__type__": "cc.Vec2",
  2260. "x": 0.5,
  2261. "y": 0.5
  2262. },
  2263. "_contentSize": {
  2264. "__type__": "cc.Size",
  2265. "width": 18,
  2266. "height": 26
  2267. },
  2268. "_rotationX": 0,
  2269. "_rotationY": 0,
  2270. "_scaleX": 1,
  2271. "_scaleY": 1,
  2272. "_position": {
  2273. "__type__": "cc.Vec2",
  2274. "x": -13.6,
  2275. "y": 0
  2276. },
  2277. "_skewX": 0,
  2278. "_skewY": 0,
  2279. "_localZOrder": 0,
  2280. "_globalZOrder": 0,
  2281. "_opacityModifyRGB": false,
  2282. "groupIndex": 0
  2283. },
  2284. {
  2285. "__type__": "cc.Sprite",
  2286. "_name": "",
  2287. "_objFlags": 0,
  2288. "node": {
  2289. "__id__": 68
  2290. },
  2291. "_enabled": true,
  2292. "_spriteFrame": null,
  2293. "_type": 0,
  2294. "_sizeMode": 1,
  2295. "_fillType": 0,
  2296. "_fillCenter": {
  2297. "__type__": "cc.Vec2",
  2298. "x": 0,
  2299. "y": 0
  2300. },
  2301. "_fillStart": 0,
  2302. "_fillRange": 0,
  2303. "_isTrimmedMode": true,
  2304. "_srcBlendFactor": 770,
  2305. "_dstBlendFactor": 771,
  2306. "_atlas": null
  2307. },
  2308. {
  2309. "__type__": "cc.PrefabInfo",
  2310. "root": {
  2311. "__id__": 1
  2312. },
  2313. "asset": {
  2314. "__uuid__": "6a4f3ae2-1f9e-448c-bb80-e16eed3312fd"
  2315. },
  2316. "fileId": "d5Sfddh/ZNVZRhNLyLAelX",
  2317. "sync": false
  2318. },
  2319. {
  2320. "__type__": "cc.Label",
  2321. "_name": "",
  2322. "_objFlags": 0,
  2323. "node": {
  2324. "__id__": 67
  2325. },
  2326. "_enabled": true,
  2327. "_useOriginalSize": false,
  2328. "_actualFontSize": 24,
  2329. "_fontSize": 24,
  2330. "_lineHeight": 40,
  2331. "_enableWrapText": true,
  2332. "_N$file": null,
  2333. "_isSystemFontUsed": true,
  2334. "_spacingX": 0,
  2335. "_N$string": "Label",
  2336. "_N$horizontalAlign": 0,
  2337. "_N$verticalAlign": 1,
  2338. "_N$fontFamily": "Arial",
  2339. "_N$overflow": 0
  2340. },
  2341. {
  2342. "__type__": "cc.PrefabInfo",
  2343. "root": {
  2344. "__id__": 1
  2345. },
  2346. "asset": {
  2347. "__uuid__": "6a4f3ae2-1f9e-448c-bb80-e16eed3312fd"
  2348. },
  2349. "fileId": "a1d6B8VZNBd6Pt8w4RgGqb",
  2350. "sync": false
  2351. },
  2352. {
  2353. "__type__": "cc.Node",
  2354. "_name": "level_home_tag_star",
  2355. "_objFlags": 0,
  2356. "_parent": {
  2357. "__id__": 53
  2358. },
  2359. "_children": [],
  2360. "_tag": -1,
  2361. "_active": true,
  2362. "_components": [
  2363. {
  2364. "__id__": 74
  2365. }
  2366. ],
  2367. "_prefab": {
  2368. "__id__": 75
  2369. },
  2370. "_id": "",
  2371. "_opacity": 255,
  2372. "_color": {
  2373. "__type__": "cc.Color",
  2374. "r": 255,
  2375. "g": 255,
  2376. "b": 255,
  2377. "a": 255
  2378. },
  2379. "_cascadeOpacityEnabled": true,
  2380. "_anchorPoint": {
  2381. "__type__": "cc.Vec2",
  2382. "x": 0.5,
  2383. "y": 0.5
  2384. },
  2385. "_contentSize": {
  2386. "__type__": "cc.Size",
  2387. "width": 52,
  2388. "height": 58
  2389. },
  2390. "_rotationX": 0,
  2391. "_rotationY": 0,
  2392. "_scaleX": 1,
  2393. "_scaleY": 1,
  2394. "_position": {
  2395. "__type__": "cc.Vec2",
  2396. "x": 178,
  2397. "y": 0
  2398. },
  2399. "_skewX": 0,
  2400. "_skewY": 0,
  2401. "_localZOrder": 0,
  2402. "_globalZOrder": 0,
  2403. "_opacityModifyRGB": false,
  2404. "groupIndex": 0
  2405. },
  2406. {
  2407. "__type__": "cc.Sprite",
  2408. "_name": "",
  2409. "_objFlags": 0,
  2410. "node": {
  2411. "__id__": 73
  2412. },
  2413. "_enabled": true,
  2414. "_spriteFrame": {
  2415. "__uuid__": "d70fee61-65c6-4d34-a71b-0557eba384b1"
  2416. },
  2417. "_type": 0,
  2418. "_sizeMode": 1,
  2419. "_fillType": 0,
  2420. "_fillCenter": {
  2421. "__type__": "cc.Vec2",
  2422. "x": 0,
  2423. "y": 0
  2424. },
  2425. "_fillStart": 0,
  2426. "_fillRange": 0,
  2427. "_isTrimmedMode": true,
  2428. "_srcBlendFactor": 770,
  2429. "_dstBlendFactor": 771,
  2430. "_atlas": null
  2431. },
  2432. {
  2433. "__type__": "cc.PrefabInfo",
  2434. "root": {
  2435. "__id__": 1
  2436. },
  2437. "asset": {
  2438. "__uuid__": "6a4f3ae2-1f9e-448c-bb80-e16eed3312fd"
  2439. },
  2440. "fileId": "9a2OKhWQJH+7VudfhRCGj8",
  2441. "sync": false
  2442. },
  2443. {
  2444. "__type__": "cc.Node",
  2445. "_name": "starCountLabel",
  2446. "_objFlags": 0,
  2447. "_parent": {
  2448. "__id__": 53
  2449. },
  2450. "_children": [],
  2451. "_tag": -1,
  2452. "_active": true,
  2453. "_components": [
  2454. {
  2455. "__id__": 77
  2456. },
  2457. {
  2458. "__id__": 78
  2459. }
  2460. ],
  2461. "_prefab": {
  2462. "__id__": 79
  2463. },
  2464. "_id": "",
  2465. "_opacity": 255,
  2466. "_color": {
  2467. "__type__": "cc.Color",
  2468. "r": 147,
  2469. "g": 76,
  2470. "b": 49,
  2471. "a": 255
  2472. },
  2473. "_cascadeOpacityEnabled": true,
  2474. "_anchorPoint": {
  2475. "__type__": "cc.Vec2",
  2476. "x": 0,
  2477. "y": 0.5
  2478. },
  2479. "_contentSize": {
  2480. "__type__": "cc.Size",
  2481. "width": 40,
  2482. "height": 30
  2483. },
  2484. "_rotationX": 0,
  2485. "_rotationY": 0,
  2486. "_scaleX": 1,
  2487. "_scaleY": 1,
  2488. "_position": {
  2489. "__type__": "cc.Vec2",
  2490. "x": 215.8,
  2491. "y": 0
  2492. },
  2493. "_skewX": 0,
  2494. "_skewY": 0,
  2495. "_localZOrder": 0,
  2496. "_globalZOrder": 0,
  2497. "_opacityModifyRGB": false,
  2498. "groupIndex": 0
  2499. },
  2500. {
  2501. "__type__": "cc.Label",
  2502. "_name": "",
  2503. "_objFlags": 0,
  2504. "node": {
  2505. "__id__": 76
  2506. },
  2507. "_enabled": true,
  2508. "_useOriginalSize": false,
  2509. "_actualFontSize": 24,
  2510. "_fontSize": 24,
  2511. "_lineHeight": 30,
  2512. "_enableWrapText": true,
  2513. "_N$file": null,
  2514. "_isSystemFontUsed": true,
  2515. "_spacingX": 0,
  2516. "_N$string": "123",
  2517. "_N$horizontalAlign": 1,
  2518. "_N$verticalAlign": 1,
  2519. "_N$fontFamily": "Arial",
  2520. "_N$overflow": 0
  2521. },
  2522. {
  2523. "__type__": "cc.LabelOutline",
  2524. "_name": "",
  2525. "_objFlags": 0,
  2526. "node": {
  2527. "__id__": 76
  2528. },
  2529. "_enabled": true,
  2530. "_color": {
  2531. "__type__": "cc.Color",
  2532. "r": 255,
  2533. "g": 255,
  2534. "b": 255,
  2535. "a": 255
  2536. },
  2537. "_width": 2
  2538. },
  2539. {
  2540. "__type__": "cc.PrefabInfo",
  2541. "root": {
  2542. "__id__": 1
  2543. },
  2544. "asset": {
  2545. "__uuid__": "6a4f3ae2-1f9e-448c-bb80-e16eed3312fd"
  2546. },
  2547. "fileId": "8900iq1LJIqbFXjOuKnWwo",
  2548. "sync": false
  2549. },
  2550. {
  2551. "__type__": "cc.Sprite",
  2552. "_name": "",
  2553. "_objFlags": 0,
  2554. "node": {
  2555. "__id__": 53
  2556. },
  2557. "_enabled": true,
  2558. "_spriteFrame": {
  2559. "__uuid__": "006f1c83-1f35-4d89-be94-cfbf870f71ec"
  2560. },
  2561. "_type": 1,
  2562. "_sizeMode": 0,
  2563. "_fillType": 0,
  2564. "_fillCenter": {
  2565. "__type__": "cc.Vec2",
  2566. "x": 0,
  2567. "y": 0
  2568. },
  2569. "_fillStart": 0,
  2570. "_fillRange": 0,
  2571. "_isTrimmedMode": true,
  2572. "_srcBlendFactor": 770,
  2573. "_dstBlendFactor": 771,
  2574. "_atlas": null
  2575. },
  2576. {
  2577. "__type__": "3439c0Y45xO2buqZz41TT/k",
  2578. "_name": "",
  2579. "_objFlags": 0,
  2580. "node": {
  2581. "__id__": 53
  2582. },
  2583. "_enabled": true,
  2584. "avatarSprite": {
  2585. "__id__": 55
  2586. },
  2587. "rankSprite": {
  2588. "__id__": 61
  2589. },
  2590. "rankLabel": {
  2591. "__id__": 64
  2592. },
  2593. "nameLabel": {
  2594. "__id__": 71
  2595. },
  2596. "genderSprite": {
  2597. "__id__": 69
  2598. },
  2599. "starCountLabel": {
  2600. "__id__": 77
  2601. },
  2602. "starNode": {
  2603. "__id__": 73
  2604. },
  2605. "rankFrames": [
  2606. {
  2607. "__uuid__": "ba87c6a1-4c9a-441d-ba39-a53661e309e0"
  2608. },
  2609. {
  2610. "__uuid__": "2940cb78-5a63-473e-abba-6adf12cce5d8"
  2611. },
  2612. {
  2613. "__uuid__": "0c708880-c0b1-4ea0-acba-4614d591c311"
  2614. }
  2615. ],
  2616. "genderFrames": [
  2617. {
  2618. "__uuid__": "f35a0f20-5e5f-4a4b-b123-89a2db75b006"
  2619. },
  2620. {
  2621. "__uuid__": "99eb115d-167b-4042-9c60-3f8540ff2c6d"
  2622. }
  2623. ]
  2624. },
  2625. {
  2626. "__type__": "cc.PrefabInfo",
  2627. "root": {
  2628. "__id__": 1
  2629. },
  2630. "asset": {
  2631. "__uuid__": "6a4f3ae2-1f9e-448c-bb80-e16eed3312fd"
  2632. },
  2633. "fileId": "b6sxkvlslIP4kaHG8axgjH",
  2634. "sync": false
  2635. },
  2636. {
  2637. "__type__": "cc.ScrollView",
  2638. "_name": "",
  2639. "_objFlags": 0,
  2640. "node": {
  2641. "__id__": 44
  2642. },
  2643. "_enabled": true,
  2644. "content": {
  2645. "__id__": 46
  2646. },
  2647. "horizontal": false,
  2648. "vertical": true,
  2649. "inertia": true,
  2650. "brake": 0.75,
  2651. "elastic": true,
  2652. "bounceDuration": 0.23,
  2653. "scrollEvents": [
  2654. {
  2655. "__id__": 84
  2656. }
  2657. ],
  2658. "cancelInnerEvents": true,
  2659. "_N$horizontalScrollBar": null,
  2660. "_N$verticalScrollBar": null
  2661. },
  2662. {
  2663. "__type__": "cc.ClickEvent",
  2664. "target": {
  2665. "__id__": 44
  2666. },
  2667. "component": "RankListWithAdapter",
  2668. "handler": "onScrollEvent",
  2669. "customEventData": ""
  2670. },
  2671. {
  2672. "__type__": "17839B0Bp9KRbQeHc1fe3ma",
  2673. "_name": "",
  2674. "_objFlags": 0,
  2675. "node": {
  2676. "__id__": 44
  2677. },
  2678. "_enabled": true,
  2679. "scrollView": {
  2680. "__id__": 83
  2681. },
  2682. "content": {
  2683. "__id__": 46
  2684. },
  2685. "tipLabel": {
  2686. "__id__": 51
  2687. },
  2688. "item": {
  2689. "__uuid__": "e013898d-276e-4169-b672-2b022ba01efc"
  2690. },
  2691. "itemScriptName": "CompanyRankItem",
  2692. "myItem": {
  2693. "__id__": 53
  2694. }
  2695. },
  2696. {
  2697. "__type__": "cc.PrefabInfo",
  2698. "root": {
  2699. "__id__": 1
  2700. },
  2701. "asset": {
  2702. "__uuid__": "6a4f3ae2-1f9e-448c-bb80-e16eed3312fd"
  2703. },
  2704. "fileId": "21TXSqJVFJwKCZXR9pbS14",
  2705. "sync": false
  2706. },
  2707. {
  2708. "__type__": "cc.Node",
  2709. "_name": "artist_rank_listview",
  2710. "_objFlags": 0,
  2711. "_parent": {
  2712. "__id__": 6
  2713. },
  2714. "_children": [
  2715. {
  2716. "__id__": 88
  2717. },
  2718. {
  2719. "__id__": 93
  2720. },
  2721. {
  2722. "__id__": 96
  2723. }
  2724. ],
  2725. "_tag": -1,
  2726. "_active": true,
  2727. "_components": [
  2728. {
  2729. "__id__": 133
  2730. },
  2731. {
  2732. "__id__": 135
  2733. }
  2734. ],
  2735. "_prefab": {
  2736. "__id__": 136
  2737. },
  2738. "_id": "",
  2739. "_opacity": 255,
  2740. "_color": {
  2741. "__type__": "cc.Color",
  2742. "r": 255,
  2743. "g": 255,
  2744. "b": 255,
  2745. "a": 255
  2746. },
  2747. "_cascadeOpacityEnabled": true,
  2748. "_anchorPoint": {
  2749. "__type__": "cc.Vec2",
  2750. "x": 0.5,
  2751. "y": 0.5
  2752. },
  2753. "_contentSize": {
  2754. "__type__": "cc.Size",
  2755. "width": 700,
  2756. "height": 670
  2757. },
  2758. "_rotationX": 0,
  2759. "_rotationY": 0,
  2760. "_scaleX": 1,
  2761. "_scaleY": 1,
  2762. "_position": {
  2763. "__type__": "cc.Vec2",
  2764. "x": 0,
  2765. "y": -93
  2766. },
  2767. "_skewX": 0,
  2768. "_skewY": 0,
  2769. "_localZOrder": 0,
  2770. "_globalZOrder": 0,
  2771. "_opacityModifyRGB": false,
  2772. "groupIndex": 0
  2773. },
  2774. {
  2775. "__type__": "cc.Node",
  2776. "_name": "view",
  2777. "_objFlags": 0,
  2778. "_parent": {
  2779. "__id__": 87
  2780. },
  2781. "_children": [
  2782. {
  2783. "__id__": 89
  2784. }
  2785. ],
  2786. "_tag": -1,
  2787. "_active": true,
  2788. "_components": [
  2789. {
  2790. "__id__": 91
  2791. }
  2792. ],
  2793. "_prefab": {
  2794. "__id__": 92
  2795. },
  2796. "_id": "",
  2797. "_opacity": 255,
  2798. "_color": {
  2799. "__type__": "cc.Color",
  2800. "r": 255,
  2801. "g": 255,
  2802. "b": 255,
  2803. "a": 255
  2804. },
  2805. "_cascadeOpacityEnabled": true,
  2806. "_anchorPoint": {
  2807. "__type__": "cc.Vec2",
  2808. "x": 0.5,
  2809. "y": 0.5
  2810. },
  2811. "_contentSize": {
  2812. "__type__": "cc.Size",
  2813. "width": 700,
  2814. "height": 670
  2815. },
  2816. "_rotationX": 0,
  2817. "_rotationY": 0,
  2818. "_scaleX": 1,
  2819. "_scaleY": 1,
  2820. "_position": {
  2821. "__type__": "cc.Vec2",
  2822. "x": 0,
  2823. "y": 0
  2824. },
  2825. "_skewX": 0,
  2826. "_skewY": 0,
  2827. "_localZOrder": 0,
  2828. "_globalZOrder": 0,
  2829. "_opacityModifyRGB": false,
  2830. "groupIndex": 0
  2831. },
  2832. {
  2833. "__type__": "cc.Node",
  2834. "_name": "content",
  2835. "_objFlags": 0,
  2836. "_parent": {
  2837. "__id__": 88
  2838. },
  2839. "_children": [],
  2840. "_tag": -1,
  2841. "_active": true,
  2842. "_components": [],
  2843. "_prefab": {
  2844. "__id__": 90
  2845. },
  2846. "_id": "",
  2847. "_opacity": 255,
  2848. "_color": {
  2849. "__type__": "cc.Color",
  2850. "r": 255,
  2851. "g": 255,
  2852. "b": 255,
  2853. "a": 255
  2854. },
  2855. "_cascadeOpacityEnabled": true,
  2856. "_anchorPoint": {
  2857. "__type__": "cc.Vec2",
  2858. "x": 0.5,
  2859. "y": 1
  2860. },
  2861. "_contentSize": {
  2862. "__type__": "cc.Size",
  2863. "width": 700,
  2864. "height": 400
  2865. },
  2866. "_rotationX": 0,
  2867. "_rotationY": 0,
  2868. "_scaleX": 1,
  2869. "_scaleY": 1,
  2870. "_position": {
  2871. "__type__": "cc.Vec2",
  2872. "x": 0,
  2873. "y": 350
  2874. },
  2875. "_skewX": 0,
  2876. "_skewY": 0,
  2877. "_localZOrder": 0,
  2878. "_globalZOrder": 0,
  2879. "_opacityModifyRGB": false,
  2880. "groupIndex": 0
  2881. },
  2882. {
  2883. "__type__": "cc.PrefabInfo",
  2884. "root": {
  2885. "__id__": 1
  2886. },
  2887. "asset": {
  2888. "__uuid__": "6a4f3ae2-1f9e-448c-bb80-e16eed3312fd"
  2889. },
  2890. "fileId": "70xo6DaDVKdoCQ+CM/vO9v",
  2891. "sync": false
  2892. },
  2893. {
  2894. "__type__": "cc.Mask",
  2895. "_name": "",
  2896. "_objFlags": 0,
  2897. "node": {
  2898. "__id__": 88
  2899. },
  2900. "_enabled": true,
  2901. "_type": 0,
  2902. "_segements": 64,
  2903. "_N$spriteFrame": null,
  2904. "_N$alphaThreshold": 1,
  2905. "_N$inverted": false
  2906. },
  2907. {
  2908. "__type__": "cc.PrefabInfo",
  2909. "root": {
  2910. "__id__": 1
  2911. },
  2912. "asset": {
  2913. "__uuid__": "6a4f3ae2-1f9e-448c-bb80-e16eed3312fd"
  2914. },
  2915. "fileId": "38s/LtFvNNab5btOxAFJYv",
  2916. "sync": false
  2917. },
  2918. {
  2919. "__type__": "cc.Node",
  2920. "_name": "tipLabel",
  2921. "_objFlags": 0,
  2922. "_parent": {
  2923. "__id__": 87
  2924. },
  2925. "_children": [],
  2926. "_tag": -1,
  2927. "_active": true,
  2928. "_components": [
  2929. {
  2930. "__id__": 94
  2931. }
  2932. ],
  2933. "_prefab": {
  2934. "__id__": 95
  2935. },
  2936. "_id": "",
  2937. "_opacity": 255,
  2938. "_color": {
  2939. "__type__": "cc.Color",
  2940. "r": 74,
  2941. "g": 65,
  2942. "b": 58,
  2943. "a": 255
  2944. },
  2945. "_cascadeOpacityEnabled": true,
  2946. "_anchorPoint": {
  2947. "__type__": "cc.Vec2",
  2948. "x": 0.5,
  2949. "y": 0.5
  2950. },
  2951. "_contentSize": {
  2952. "__type__": "cc.Size",
  2953. "width": 550,
  2954. "height": 50
  2955. },
  2956. "_rotationX": 0,
  2957. "_rotationY": 0,
  2958. "_scaleX": 1,
  2959. "_scaleY": 1,
  2960. "_position": {
  2961. "__type__": "cc.Vec2",
  2962. "x": -4.1,
  2963. "y": -7.9
  2964. },
  2965. "_skewX": 0,
  2966. "_skewY": 0,
  2967. "_localZOrder": 0,
  2968. "_globalZOrder": 0,
  2969. "_opacityModifyRGB": false,
  2970. "groupIndex": 0
  2971. },
  2972. {
  2973. "__type__": "cc.Label",
  2974. "_name": "",
  2975. "_objFlags": 0,
  2976. "node": {
  2977. "__id__": 93
  2978. },
  2979. "_enabled": true,
  2980. "_useOriginalSize": false,
  2981. "_actualFontSize": 40,
  2982. "_fontSize": 40,
  2983. "_lineHeight": 50,
  2984. "_enableWrapText": true,
  2985. "_N$file": null,
  2986. "_isSystemFontUsed": true,
  2987. "_spacingX": 0,
  2988. "_N$string": "加载中...",
  2989. "_N$horizontalAlign": 1,
  2990. "_N$verticalAlign": 0,
  2991. "_N$fontFamily": "Arial",
  2992. "_N$overflow": 3
  2993. },
  2994. {
  2995. "__type__": "cc.PrefabInfo",
  2996. "root": {
  2997. "__id__": 1
  2998. },
  2999. "asset": {
  3000. "__uuid__": "6a4f3ae2-1f9e-448c-bb80-e16eed3312fd"
  3001. },
  3002. "fileId": "08+prTHsFM87p7bKEFjNFA",
  3003. "sync": false
  3004. },
  3005. {
  3006. "__type__": "cc.Node",
  3007. "_name": "artist_my_item",
  3008. "_objFlags": 0,
  3009. "_parent": {
  3010. "__id__": 87
  3011. },
  3012. "_children": [
  3013. {
  3014. "__id__": 97
  3015. },
  3016. {
  3017. "__id__": 100
  3018. },
  3019. {
  3020. "__id__": 103
  3021. },
  3022. {
  3023. "__id__": 106
  3024. },
  3025. {
  3026. "__id__": 110
  3027. },
  3028. {
  3029. "__id__": 116
  3030. },
  3031. {
  3032. "__id__": 119
  3033. },
  3034. {
  3035. "__id__": 122
  3036. },
  3037. {
  3038. "__id__": 126
  3039. }
  3040. ],
  3041. "_tag": -1,
  3042. "_active": true,
  3043. "_components": [
  3044. {
  3045. "__id__": 130
  3046. },
  3047. {
  3048. "__id__": 131
  3049. }
  3050. ],
  3051. "_prefab": {
  3052. "__id__": 132
  3053. },
  3054. "_id": "",
  3055. "_opacity": 255,
  3056. "_color": {
  3057. "__type__": "cc.Color",
  3058. "r": 255,
  3059. "g": 255,
  3060. "b": 255,
  3061. "a": 255
  3062. },
  3063. "_cascadeOpacityEnabled": true,
  3064. "_anchorPoint": {
  3065. "__type__": "cc.Vec2",
  3066. "x": 0.5,
  3067. "y": 0.5
  3068. },
  3069. "_contentSize": {
  3070. "__type__": "cc.Size",
  3071. "width": 680,
  3072. "height": 130
  3073. },
  3074. "_rotationX": 0,
  3075. "_rotationY": 0,
  3076. "_scaleX": 1,
  3077. "_scaleY": 1,
  3078. "_position": {
  3079. "__type__": "cc.Vec2",
  3080. "x": 0,
  3081. "y": -431
  3082. },
  3083. "_skewX": 0,
  3084. "_skewY": 0,
  3085. "_localZOrder": 0,
  3086. "_globalZOrder": 0,
  3087. "_opacityModifyRGB": false,
  3088. "groupIndex": 0
  3089. },
  3090. {
  3091. "__type__": "cc.Node",
  3092. "_name": "avatar_sprite",
  3093. "_objFlags": 0,
  3094. "_parent": {
  3095. "__id__": 96
  3096. },
  3097. "_children": [],
  3098. "_tag": -1,
  3099. "_active": true,
  3100. "_components": [
  3101. {
  3102. "__id__": 98
  3103. }
  3104. ],
  3105. "_prefab": {
  3106. "__id__": 99
  3107. },
  3108. "_id": "",
  3109. "_opacity": 255,
  3110. "_color": {
  3111. "__type__": "cc.Color",
  3112. "r": 255,
  3113. "g": 255,
  3114. "b": 255,
  3115. "a": 255
  3116. },
  3117. "_cascadeOpacityEnabled": true,
  3118. "_anchorPoint": {
  3119. "__type__": "cc.Vec2",
  3120. "x": 0.5,
  3121. "y": 0.5
  3122. },
  3123. "_contentSize": {
  3124. "__type__": "cc.Size",
  3125. "width": 94,
  3126. "height": 94
  3127. },
  3128. "_rotationX": 0,
  3129. "_rotationY": 0,
  3130. "_scaleX": 1,
  3131. "_scaleY": 1,
  3132. "_position": {
  3133. "__type__": "cc.Vec2",
  3134. "x": -150,
  3135. "y": 0
  3136. },
  3137. "_skewX": 0,
  3138. "_skewY": 0,
  3139. "_localZOrder": 0,
  3140. "_globalZOrder": 0,
  3141. "_opacityModifyRGB": false,
  3142. "groupIndex": 0
  3143. },
  3144. {
  3145. "__type__": "cc.Sprite",
  3146. "_name": "",
  3147. "_objFlags": 0,
  3148. "node": {
  3149. "__id__": 97
  3150. },
  3151. "_enabled": true,
  3152. "_spriteFrame": null,
  3153. "_type": 0,
  3154. "_sizeMode": 0,
  3155. "_fillType": 0,
  3156. "_fillCenter": {
  3157. "__type__": "cc.Vec2",
  3158. "x": 0,
  3159. "y": 0
  3160. },
  3161. "_fillStart": 0,
  3162. "_fillRange": 0,
  3163. "_isTrimmedMode": true,
  3164. "_srcBlendFactor": 770,
  3165. "_dstBlendFactor": 771,
  3166. "_atlas": null
  3167. },
  3168. {
  3169. "__type__": "cc.PrefabInfo",
  3170. "root": {
  3171. "__id__": 1
  3172. },
  3173. "asset": {
  3174. "__uuid__": "6a4f3ae2-1f9e-448c-bb80-e16eed3312fd"
  3175. },
  3176. "fileId": "d7rk99X1tIwIUBIFIYBCkC",
  3177. "sync": false
  3178. },
  3179. {
  3180. "__type__": "cc.Node",
  3181. "_name": "avatar_border",
  3182. "_objFlags": 0,
  3183. "_parent": {
  3184. "__id__": 96
  3185. },
  3186. "_children": [],
  3187. "_tag": -1,
  3188. "_active": true,
  3189. "_components": [
  3190. {
  3191. "__id__": 101
  3192. }
  3193. ],
  3194. "_prefab": {
  3195. "__id__": 102
  3196. },
  3197. "_id": "",
  3198. "_opacity": 255,
  3199. "_color": {
  3200. "__type__": "cc.Color",
  3201. "r": 255,
  3202. "g": 255,
  3203. "b": 255,
  3204. "a": 255
  3205. },
  3206. "_cascadeOpacityEnabled": true,
  3207. "_anchorPoint": {
  3208. "__type__": "cc.Vec2",
  3209. "x": 0.5,
  3210. "y": 0.5
  3211. },
  3212. "_contentSize": {
  3213. "__type__": "cc.Size",
  3214. "width": 94,
  3215. "height": 94
  3216. },
  3217. "_rotationX": 0,
  3218. "_rotationY": 0,
  3219. "_scaleX": 1,
  3220. "_scaleY": 1,
  3221. "_position": {
  3222. "__type__": "cc.Vec2",
  3223. "x": -150,
  3224. "y": 0
  3225. },
  3226. "_skewX": 0,
  3227. "_skewY": 0,
  3228. "_localZOrder": 0,
  3229. "_globalZOrder": 0,
  3230. "_opacityModifyRGB": false,
  3231. "groupIndex": 0
  3232. },
  3233. {
  3234. "__type__": "cc.Sprite",
  3235. "_name": "",
  3236. "_objFlags": 0,
  3237. "node": {
  3238. "__id__": 100
  3239. },
  3240. "_enabled": true,
  3241. "_spriteFrame": {
  3242. "__uuid__": "06a4cfc4-a5ce-41d5-81a7-d7df9144e13e"
  3243. },
  3244. "_type": 0,
  3245. "_sizeMode": 1,
  3246. "_fillType": 0,
  3247. "_fillCenter": {
  3248. "__type__": "cc.Vec2",
  3249. "x": 0,
  3250. "y": 0
  3251. },
  3252. "_fillStart": 0,
  3253. "_fillRange": 0,
  3254. "_isTrimmedMode": true,
  3255. "_srcBlendFactor": 770,
  3256. "_dstBlendFactor": 771,
  3257. "_atlas": null
  3258. },
  3259. {
  3260. "__type__": "cc.PrefabInfo",
  3261. "root": {
  3262. "__id__": 1
  3263. },
  3264. "asset": {
  3265. "__uuid__": "6a4f3ae2-1f9e-448c-bb80-e16eed3312fd"
  3266. },
  3267. "fileId": "16WtPXH7VAtY0vvSds9dXX",
  3268. "sync": false
  3269. },
  3270. {
  3271. "__type__": "cc.Node",
  3272. "_name": "rank_icon",
  3273. "_objFlags": 0,
  3274. "_parent": {
  3275. "__id__": 96
  3276. },
  3277. "_children": [],
  3278. "_tag": -1,
  3279. "_active": true,
  3280. "_components": [
  3281. {
  3282. "__id__": 104
  3283. }
  3284. ],
  3285. "_prefab": {
  3286. "__id__": 105
  3287. },
  3288. "_id": "",
  3289. "_opacity": 255,
  3290. "_color": {
  3291. "__type__": "cc.Color",
  3292. "r": 255,
  3293. "g": 255,
  3294. "b": 255,
  3295. "a": 255
  3296. },
  3297. "_cascadeOpacityEnabled": true,
  3298. "_anchorPoint": {
  3299. "__type__": "cc.Vec2",
  3300. "x": 0.5,
  3301. "y": 0.5
  3302. },
  3303. "_contentSize": {
  3304. "__type__": "cc.Size",
  3305. "width": 66,
  3306. "height": 68
  3307. },
  3308. "_rotationX": 0,
  3309. "_rotationY": 0,
  3310. "_scaleX": 1,
  3311. "_scaleY": 1,
  3312. "_position": {
  3313. "__type__": "cc.Vec2",
  3314. "x": -266.4,
  3315. "y": 0
  3316. },
  3317. "_skewX": 0,
  3318. "_skewY": 0,
  3319. "_localZOrder": 0,
  3320. "_globalZOrder": 0,
  3321. "_opacityModifyRGB": false,
  3322. "groupIndex": 0
  3323. },
  3324. {
  3325. "__type__": "cc.Sprite",
  3326. "_name": "",
  3327. "_objFlags": 0,
  3328. "node": {
  3329. "__id__": 103
  3330. },
  3331. "_enabled": true,
  3332. "_spriteFrame": {
  3333. "__uuid__": "ba87c6a1-4c9a-441d-ba39-a53661e309e0"
  3334. },
  3335. "_type": 0,
  3336. "_sizeMode": 1,
  3337. "_fillType": 0,
  3338. "_fillCenter": {
  3339. "__type__": "cc.Vec2",
  3340. "x": 0,
  3341. "y": 0
  3342. },
  3343. "_fillStart": 0,
  3344. "_fillRange": 0,
  3345. "_isTrimmedMode": true,
  3346. "_srcBlendFactor": 770,
  3347. "_dstBlendFactor": 771,
  3348. "_atlas": null
  3349. },
  3350. {
  3351. "__type__": "cc.PrefabInfo",
  3352. "root": {
  3353. "__id__": 1
  3354. },
  3355. "asset": {
  3356. "__uuid__": "6a4f3ae2-1f9e-448c-bb80-e16eed3312fd"
  3357. },
  3358. "fileId": "17b48sJrFJH40TeZt5i5ck",
  3359. "sync": false
  3360. },
  3361. {
  3362. "__type__": "cc.Node",
  3363. "_name": "rankText",
  3364. "_objFlags": 0,
  3365. "_parent": {
  3366. "__id__": 96
  3367. },
  3368. "_children": [],
  3369. "_tag": -1,
  3370. "_active": true,
  3371. "_components": [
  3372. {
  3373. "__id__": 107
  3374. },
  3375. {
  3376. "__id__": 108
  3377. }
  3378. ],
  3379. "_prefab": {
  3380. "__id__": 109
  3381. },
  3382. "_id": "",
  3383. "_opacity": 255,
  3384. "_color": {
  3385. "__type__": "cc.Color",
  3386. "r": 255,
  3387. "g": 255,
  3388. "b": 255,
  3389. "a": 255
  3390. },
  3391. "_cascadeOpacityEnabled": true,
  3392. "_anchorPoint": {
  3393. "__type__": "cc.Vec2",
  3394. "x": 0.5,
  3395. "y": 0.5
  3396. },
  3397. "_contentSize": {
  3398. "__type__": "cc.Size",
  3399. "width": 90,
  3400. "height": 40
  3401. },
  3402. "_rotationX": 0,
  3403. "_rotationY": 0,
  3404. "_scaleX": 1,
  3405. "_scaleY": 1,
  3406. "_position": {
  3407. "__type__": "cc.Vec2",
  3408. "x": -266.3,
  3409. "y": 0
  3410. },
  3411. "_skewX": 0,
  3412. "_skewY": 0,
  3413. "_localZOrder": 0,
  3414. "_globalZOrder": 0,
  3415. "_opacityModifyRGB": false,
  3416. "groupIndex": 0
  3417. },
  3418. {
  3419. "__type__": "cc.Label",
  3420. "_name": "",
  3421. "_objFlags": 0,
  3422. "node": {
  3423. "__id__": 106
  3424. },
  3425. "_enabled": true,
  3426. "_useOriginalSize": false,
  3427. "_actualFontSize": 30,
  3428. "_fontSize": 30,
  3429. "_lineHeight": 40,
  3430. "_enableWrapText": true,
  3431. "_N$file": null,
  3432. "_isSystemFontUsed": true,
  3433. "_spacingX": 0,
  3434. "_N$string": "未上榜",
  3435. "_N$horizontalAlign": 0,
  3436. "_N$verticalAlign": 0,
  3437. "_N$fontFamily": "Arial",
  3438. "_N$overflow": 0
  3439. },
  3440. {
  3441. "__type__": "cc.LabelOutline",
  3442. "_name": "",
  3443. "_objFlags": 0,
  3444. "node": {
  3445. "__id__": 106
  3446. },
  3447. "_enabled": true,
  3448. "_color": {
  3449. "__type__": "cc.Color",
  3450. "r": 105,
  3451. "g": 46,
  3452. "b": 14,
  3453. "a": 255
  3454. },
  3455. "_width": 2
  3456. },
  3457. {
  3458. "__type__": "cc.PrefabInfo",
  3459. "root": {
  3460. "__id__": 1
  3461. },
  3462. "asset": {
  3463. "__uuid__": "6a4f3ae2-1f9e-448c-bb80-e16eed3312fd"
  3464. },
  3465. "fileId": "487HfSn35KR4dtYaFEqO7z",
  3466. "sync": false
  3467. },
  3468. {
  3469. "__type__": "cc.Node",
  3470. "_name": "nameText",
  3471. "_objFlags": 0,
  3472. "_parent": {
  3473. "__id__": 96
  3474. },
  3475. "_children": [
  3476. {
  3477. "__id__": 111
  3478. }
  3479. ],
  3480. "_tag": -1,
  3481. "_active": true,
  3482. "_components": [
  3483. {
  3484. "__id__": 114
  3485. }
  3486. ],
  3487. "_prefab": {
  3488. "__id__": 115
  3489. },
  3490. "_id": "",
  3491. "_opacity": 255,
  3492. "_color": {
  3493. "__type__": "cc.Color",
  3494. "r": 54,
  3495. "g": 46,
  3496. "b": 43,
  3497. "a": 255
  3498. },
  3499. "_cascadeOpacityEnabled": true,
  3500. "_anchorPoint": {
  3501. "__type__": "cc.Vec2",
  3502. "x": 0,
  3503. "y": 0.5
  3504. },
  3505. "_contentSize": {
  3506. "__type__": "cc.Size",
  3507. "width": 59,
  3508. "height": 40
  3509. },
  3510. "_rotationX": 0,
  3511. "_rotationY": 0,
  3512. "_scaleX": 1,
  3513. "_scaleY": 1,
  3514. "_position": {
  3515. "__type__": "cc.Vec2",
  3516. "x": -67.7,
  3517. "y": 20
  3518. },
  3519. "_skewX": 0,
  3520. "_skewY": 0,
  3521. "_localZOrder": 0,
  3522. "_globalZOrder": 0,
  3523. "_opacityModifyRGB": false,
  3524. "groupIndex": 0
  3525. },
  3526. {
  3527. "__type__": "cc.Node",
  3528. "_name": "gender",
  3529. "_objFlags": 0,
  3530. "_parent": {
  3531. "__id__": 110
  3532. },
  3533. "_children": [],
  3534. "_tag": -1,
  3535. "_active": true,
  3536. "_components": [
  3537. {
  3538. "__id__": 112
  3539. }
  3540. ],
  3541. "_prefab": {
  3542. "__id__": 113
  3543. },
  3544. "_id": "",
  3545. "_opacity": 255,
  3546. "_color": {
  3547. "__type__": "cc.Color",
  3548. "r": 255,
  3549. "g": 255,
  3550. "b": 255,
  3551. "a": 255
  3552. },
  3553. "_cascadeOpacityEnabled": true,
  3554. "_anchorPoint": {
  3555. "__type__": "cc.Vec2",
  3556. "x": 0.5,
  3557. "y": 0.5
  3558. },
  3559. "_contentSize": {
  3560. "__type__": "cc.Size",
  3561. "width": 18,
  3562. "height": 26
  3563. },
  3564. "_rotationX": 0,
  3565. "_rotationY": 0,
  3566. "_scaleX": 1,
  3567. "_scaleY": 1,
  3568. "_position": {
  3569. "__type__": "cc.Vec2",
  3570. "x": -13.6,
  3571. "y": 0
  3572. },
  3573. "_skewX": 0,
  3574. "_skewY": 0,
  3575. "_localZOrder": 0,
  3576. "_globalZOrder": 0,
  3577. "_opacityModifyRGB": false,
  3578. "groupIndex": 0
  3579. },
  3580. {
  3581. "__type__": "cc.Sprite",
  3582. "_name": "",
  3583. "_objFlags": 0,
  3584. "node": {
  3585. "__id__": 111
  3586. },
  3587. "_enabled": true,
  3588. "_spriteFrame": null,
  3589. "_type": 0,
  3590. "_sizeMode": 1,
  3591. "_fillType": 0,
  3592. "_fillCenter": {
  3593. "__type__": "cc.Vec2",
  3594. "x": 0,
  3595. "y": 0
  3596. },
  3597. "_fillStart": 0,
  3598. "_fillRange": 0,
  3599. "_isTrimmedMode": true,
  3600. "_srcBlendFactor": 770,
  3601. "_dstBlendFactor": 771,
  3602. "_atlas": null
  3603. },
  3604. {
  3605. "__type__": "cc.PrefabInfo",
  3606. "root": {
  3607. "__id__": 1
  3608. },
  3609. "asset": {
  3610. "__uuid__": "6a4f3ae2-1f9e-448c-bb80-e16eed3312fd"
  3611. },
  3612. "fileId": "aeY8WmhvJLoI6zfSI1iSTc",
  3613. "sync": false
  3614. },
  3615. {
  3616. "__type__": "cc.Label",
  3617. "_name": "",
  3618. "_objFlags": 0,
  3619. "node": {
  3620. "__id__": 110
  3621. },
  3622. "_enabled": true,
  3623. "_useOriginalSize": false,
  3624. "_actualFontSize": 24,
  3625. "_fontSize": 24,
  3626. "_lineHeight": 40,
  3627. "_enableWrapText": true,
  3628. "_N$file": null,
  3629. "_isSystemFontUsed": true,
  3630. "_spacingX": 0,
  3631. "_N$string": "Label",
  3632. "_N$horizontalAlign": 0,
  3633. "_N$verticalAlign": 0,
  3634. "_N$fontFamily": "Arial",
  3635. "_N$overflow": 0
  3636. },
  3637. {
  3638. "__type__": "cc.PrefabInfo",
  3639. "root": {
  3640. "__id__": 1
  3641. },
  3642. "asset": {
  3643. "__uuid__": "6a4f3ae2-1f9e-448c-bb80-e16eed3312fd"
  3644. },
  3645. "fileId": "a9mC4WRvRJBaJ263Pl8btK",
  3646. "sync": false
  3647. },
  3648. {
  3649. "__type__": "cc.Node",
  3650. "_name": "artist_level",
  3651. "_objFlags": 0,
  3652. "_parent": {
  3653. "__id__": 96
  3654. },
  3655. "_children": [],
  3656. "_tag": -1,
  3657. "_active": true,
  3658. "_components": [
  3659. {
  3660. "__id__": 117
  3661. }
  3662. ],
  3663. "_prefab": {
  3664. "__id__": 118
  3665. },
  3666. "_id": "",
  3667. "_opacity": 255,
  3668. "_color": {
  3669. "__type__": "cc.Color",
  3670. "r": 255,
  3671. "g": 255,
  3672. "b": 255,
  3673. "a": 255
  3674. },
  3675. "_cascadeOpacityEnabled": true,
  3676. "_anchorPoint": {
  3677. "__type__": "cc.Vec2",
  3678. "x": 0.5,
  3679. "y": 0.5
  3680. },
  3681. "_contentSize": {
  3682. "__type__": "cc.Size",
  3683. "width": 40,
  3684. "height": 36
  3685. },
  3686. "_rotationX": 0,
  3687. "_rotationY": 0,
  3688. "_scaleX": 1,
  3689. "_scaleY": 1,
  3690. "_position": {
  3691. "__type__": "cc.Vec2",
  3692. "x": -72,
  3693. "y": -15
  3694. },
  3695. "_skewX": 0,
  3696. "_skewY": 0,
  3697. "_localZOrder": 0,
  3698. "_globalZOrder": 0,
  3699. "_opacityModifyRGB": false,
  3700. "groupIndex": 0
  3701. },
  3702. {
  3703. "__type__": "cc.Sprite",
  3704. "_name": "",
  3705. "_objFlags": 0,
  3706. "node": {
  3707. "__id__": 116
  3708. },
  3709. "_enabled": true,
  3710. "_spriteFrame": null,
  3711. "_type": 0,
  3712. "_sizeMode": 1,
  3713. "_fillType": 0,
  3714. "_fillCenter": {
  3715. "__type__": "cc.Vec2",
  3716. "x": 0,
  3717. "y": 0
  3718. },
  3719. "_fillStart": 0,
  3720. "_fillRange": 0,
  3721. "_isTrimmedMode": true,
  3722. "_srcBlendFactor": 770,
  3723. "_dstBlendFactor": 771,
  3724. "_atlas": null
  3725. },
  3726. {
  3727. "__type__": "cc.PrefabInfo",
  3728. "root": {
  3729. "__id__": 1
  3730. },
  3731. "asset": {
  3732. "__uuid__": "6a4f3ae2-1f9e-448c-bb80-e16eed3312fd"
  3733. },
  3734. "fileId": "60EAt12JNCT6U1YhXR9WWV",
  3735. "sync": false
  3736. },
  3737. {
  3738. "__type__": "cc.Node",
  3739. "_name": "jobLevelName",
  3740. "_objFlags": 0,
  3741. "_parent": {
  3742. "__id__": 96
  3743. },
  3744. "_children": [],
  3745. "_tag": -1,
  3746. "_active": true,
  3747. "_components": [
  3748. {
  3749. "__id__": 120
  3750. }
  3751. ],
  3752. "_prefab": {
  3753. "__id__": 121
  3754. },
  3755. "_id": "",
  3756. "_opacity": 255,
  3757. "_color": {
  3758. "__type__": "cc.Color",
  3759. "r": 88,
  3760. "g": 74,
  3761. "b": 71,
  3762. "a": 255
  3763. },
  3764. "_cascadeOpacityEnabled": true,
  3765. "_anchorPoint": {
  3766. "__type__": "cc.Vec2",
  3767. "x": 0,
  3768. "y": 0.5
  3769. },
  3770. "_contentSize": {
  3771. "__type__": "cc.Size",
  3772. "width": 27,
  3773. "height": 40
  3774. },
  3775. "_rotationX": 0,
  3776. "_rotationY": 0,
  3777. "_scaleX": 1,
  3778. "_scaleY": 1,
  3779. "_position": {
  3780. "__type__": "cc.Vec2",
  3781. "x": -37.6,
  3782. "y": -15
  3783. },
  3784. "_skewX": 0,
  3785. "_skewY": 0,
  3786. "_localZOrder": 0,
  3787. "_globalZOrder": 0,
  3788. "_opacityModifyRGB": false,
  3789. "groupIndex": 0
  3790. },
  3791. {
  3792. "__type__": "cc.Label",
  3793. "_name": "",
  3794. "_objFlags": 0,
  3795. "node": {
  3796. "__id__": 119
  3797. },
  3798. "_enabled": true,
  3799. "_useOriginalSize": false,
  3800. "_actualFontSize": 24,
  3801. "_fontSize": 24,
  3802. "_lineHeight": 40,
  3803. "_enableWrapText": true,
  3804. "_N$file": null,
  3805. "_isSystemFontUsed": true,
  3806. "_spacingX": 0,
  3807. "_N$string": "24",
  3808. "_N$horizontalAlign": 0,
  3809. "_N$verticalAlign": 1,
  3810. "_N$fontFamily": "Arial",
  3811. "_N$overflow": 0
  3812. },
  3813. {
  3814. "__type__": "cc.PrefabInfo",
  3815. "root": {
  3816. "__id__": 1
  3817. },
  3818. "asset": {
  3819. "__uuid__": "6a4f3ae2-1f9e-448c-bb80-e16eed3312fd"
  3820. },
  3821. "fileId": "8c2QCyDx1CcYUqCQCm+Ahb",
  3822. "sync": false
  3823. },
  3824. {
  3825. "__type__": "cc.Node",
  3826. "_name": "incomeText",
  3827. "_objFlags": 0,
  3828. "_parent": {
  3829. "__id__": 96
  3830. },
  3831. "_children": [],
  3832. "_tag": -1,
  3833. "_active": true,
  3834. "_components": [
  3835. {
  3836. "__id__": 123
  3837. },
  3838. {
  3839. "__id__": 124
  3840. }
  3841. ],
  3842. "_prefab": {
  3843. "__id__": 125
  3844. },
  3845. "_id": "",
  3846. "_opacity": 255,
  3847. "_color": {
  3848. "__type__": "cc.Color",
  3849. "r": 147,
  3850. "g": 76,
  3851. "b": 49,
  3852. "a": 255
  3853. },
  3854. "_cascadeOpacityEnabled": true,
  3855. "_anchorPoint": {
  3856. "__type__": "cc.Vec2",
  3857. "x": 0,
  3858. "y": 0.5
  3859. },
  3860. "_contentSize": {
  3861. "__type__": "cc.Size",
  3862. "width": 44,
  3863. "height": 30
  3864. },
  3865. "_rotationX": 0,
  3866. "_rotationY": 0,
  3867. "_scaleX": 1,
  3868. "_scaleY": 1,
  3869. "_position": {
  3870. "__type__": "cc.Vec2",
  3871. "x": 149.1,
  3872. "y": 20
  3873. },
  3874. "_skewX": 0,
  3875. "_skewY": 0,
  3876. "_localZOrder": 0,
  3877. "_globalZOrder": 0,
  3878. "_opacityModifyRGB": false,
  3879. "groupIndex": 0
  3880. },
  3881. {
  3882. "__type__": "cc.Label",
  3883. "_name": "",
  3884. "_objFlags": 0,
  3885. "node": {
  3886. "__id__": 122
  3887. },
  3888. "_enabled": true,
  3889. "_useOriginalSize": false,
  3890. "_actualFontSize": 22,
  3891. "_fontSize": 22,
  3892. "_lineHeight": 30,
  3893. "_enableWrapText": true,
  3894. "_N$file": null,
  3895. "_isSystemFontUsed": true,
  3896. "_spacingX": 0,
  3897. "_N$string": "年薪",
  3898. "_N$horizontalAlign": 0,
  3899. "_N$verticalAlign": 0,
  3900. "_N$fontFamily": "Arial",
  3901. "_N$overflow": 0
  3902. },
  3903. {
  3904. "__type__": "cc.LabelOutline",
  3905. "_name": "",
  3906. "_objFlags": 0,
  3907. "node": {
  3908. "__id__": 122
  3909. },
  3910. "_enabled": true,
  3911. "_color": {
  3912. "__type__": "cc.Color",
  3913. "r": 255,
  3914. "g": 255,
  3915. "b": 255,
  3916. "a": 255
  3917. },
  3918. "_width": 2
  3919. },
  3920. {
  3921. "__type__": "cc.PrefabInfo",
  3922. "root": {
  3923. "__id__": 1
  3924. },
  3925. "asset": {
  3926. "__uuid__": "6a4f3ae2-1f9e-448c-bb80-e16eed3312fd"
  3927. },
  3928. "fileId": "23XZEPjgROTJcZqxK2Hoa5",
  3929. "sync": false
  3930. },
  3931. {
  3932. "__type__": "cc.Node",
  3933. "_name": "incomeNumberText",
  3934. "_objFlags": 0,
  3935. "_parent": {
  3936. "__id__": 96
  3937. },
  3938. "_children": [],
  3939. "_tag": -1,
  3940. "_active": true,
  3941. "_components": [
  3942. {
  3943. "__id__": 127
  3944. },
  3945. {
  3946. "__id__": 128
  3947. }
  3948. ],
  3949. "_prefab": {
  3950. "__id__": 129
  3951. },
  3952. "_id": "",
  3953. "_opacity": 255,
  3954. "_color": {
  3955. "__type__": "cc.Color",
  3956. "r": 147,
  3957. "g": 76,
  3958. "b": 49,
  3959. "a": 255
  3960. },
  3961. "_cascadeOpacityEnabled": true,
  3962. "_anchorPoint": {
  3963. "__type__": "cc.Vec2",
  3964. "x": 0,
  3965. "y": 0.5
  3966. },
  3967. "_contentSize": {
  3968. "__type__": "cc.Size",
  3969. "width": 13,
  3970. "height": 40
  3971. },
  3972. "_rotationX": 0,
  3973. "_rotationY": 0,
  3974. "_scaleX": 1,
  3975. "_scaleY": 1,
  3976. "_position": {
  3977. "__type__": "cc.Vec2",
  3978. "x": 149.1,
  3979. "y": -12.6
  3980. },
  3981. "_skewX": 0,
  3982. "_skewY": 0,
  3983. "_localZOrder": 0,
  3984. "_globalZOrder": 0,
  3985. "_opacityModifyRGB": false,
  3986. "groupIndex": 0
  3987. },
  3988. {
  3989. "__type__": "cc.Label",
  3990. "_name": "",
  3991. "_objFlags": 0,
  3992. "node": {
  3993. "__id__": 126
  3994. },
  3995. "_enabled": true,
  3996. "_useOriginalSize": false,
  3997. "_actualFontSize": 24,
  3998. "_fontSize": 24,
  3999. "_lineHeight": 40,
  4000. "_enableWrapText": true,
  4001. "_N$file": null,
  4002. "_isSystemFontUsed": true,
  4003. "_spacingX": 0,
  4004. "_N$string": "0",
  4005. "_N$horizontalAlign": 0,
  4006. "_N$verticalAlign": 1,
  4007. "_N$fontFamily": "Arial",
  4008. "_N$overflow": 0
  4009. },
  4010. {
  4011. "__type__": "cc.LabelOutline",
  4012. "_name": "",
  4013. "_objFlags": 0,
  4014. "node": {
  4015. "__id__": 126
  4016. },
  4017. "_enabled": true,
  4018. "_color": {
  4019. "__type__": "cc.Color",
  4020. "r": 255,
  4021. "g": 255,
  4022. "b": 255,
  4023. "a": 255
  4024. },
  4025. "_width": 2
  4026. },
  4027. {
  4028. "__type__": "cc.PrefabInfo",
  4029. "root": {
  4030. "__id__": 1
  4031. },
  4032. "asset": {
  4033. "__uuid__": "6a4f3ae2-1f9e-448c-bb80-e16eed3312fd"
  4034. },
  4035. "fileId": "3d7H4xhopK66rt1Sk5eBit",
  4036. "sync": false
  4037. },
  4038. {
  4039. "__type__": "cc.Sprite",
  4040. "_name": "",
  4041. "_objFlags": 0,
  4042. "node": {
  4043. "__id__": 96
  4044. },
  4045. "_enabled": true,
  4046. "_spriteFrame": {
  4047. "__uuid__": "006f1c83-1f35-4d89-be94-cfbf870f71ec"
  4048. },
  4049. "_type": 1,
  4050. "_sizeMode": 0,
  4051. "_fillType": 0,
  4052. "_fillCenter": {
  4053. "__type__": "cc.Vec2",
  4054. "x": 0,
  4055. "y": 0
  4056. },
  4057. "_fillStart": 0,
  4058. "_fillRange": 0,
  4059. "_isTrimmedMode": true,
  4060. "_srcBlendFactor": 770,
  4061. "_dstBlendFactor": 771,
  4062. "_atlas": null
  4063. },
  4064. {
  4065. "__type__": "3195d4zdCRBW4eGIVt6NTVy",
  4066. "_name": "",
  4067. "_objFlags": 0,
  4068. "node": {
  4069. "__id__": 96
  4070. },
  4071. "_enabled": true,
  4072. "avatarSprite": {
  4073. "__id__": 98
  4074. },
  4075. "rankSprite": {
  4076. "__id__": 104
  4077. },
  4078. "rankLabel": {
  4079. "__id__": 107
  4080. },
  4081. "nameLabel": {
  4082. "__id__": 114
  4083. },
  4084. "genderSprite": {
  4085. "__id__": 112
  4086. },
  4087. "artistLevelSprite": {
  4088. "__id__": 117
  4089. },
  4090. "jobLevelNameLabel": {
  4091. "__id__": 120
  4092. },
  4093. "incomeLabel": {
  4094. "__id__": 123
  4095. },
  4096. "incomeNumberLabel": {
  4097. "__id__": 127
  4098. },
  4099. "rankFrames": [
  4100. {
  4101. "__uuid__": "ba87c6a1-4c9a-441d-ba39-a53661e309e0"
  4102. },
  4103. {
  4104. "__uuid__": "2940cb78-5a63-473e-abba-6adf12cce5d8"
  4105. },
  4106. {
  4107. "__uuid__": "0c708880-c0b1-4ea0-acba-4614d591c311"
  4108. }
  4109. ],
  4110. "genderFrames": [
  4111. {
  4112. "__uuid__": "f35a0f20-5e5f-4a4b-b123-89a2db75b006"
  4113. },
  4114. {
  4115. "__uuid__": "99eb115d-167b-4042-9c60-3f8540ff2c6d"
  4116. }
  4117. ],
  4118. "jobLevelBgs": [
  4119. {
  4120. "__uuid__": "cba88366-b0bf-4bc1-9da3-7b4083fe47f5"
  4121. },
  4122. {
  4123. "__uuid__": "d81c5c21-66ad-4e7b-a8ba-8dbd0b5041e5"
  4124. },
  4125. {
  4126. "__uuid__": "7bf3b3d6-244e-4d5d-8c0b-f0b81e97eac3"
  4127. },
  4128. {
  4129. "__uuid__": "13299ec9-b83c-4c06-b5c4-37e91289886e"
  4130. },
  4131. {
  4132. "__uuid__": "bfcff3ed-7e9d-406a-8b80-25efe8f8b040"
  4133. },
  4134. {
  4135. "__uuid__": "19589104-6a0f-451b-b4d6-bd9429156d2d"
  4136. },
  4137. {
  4138. "__uuid__": "65e3a5c3-d4e1-4ea9-8865-9c758fb551c8"
  4139. },
  4140. {
  4141. "__uuid__": "9d76df32-1c9f-4ae5-b122-a2e7713ccdd9"
  4142. },
  4143. {
  4144. "__uuid__": "5c1997f3-105b-4ae0-a2ce-7200c177c180"
  4145. },
  4146. {
  4147. "__uuid__": "9eb11bbe-e6a5-4ceb-8879-b2621070ad83"
  4148. }
  4149. ]
  4150. },
  4151. {
  4152. "__type__": "cc.PrefabInfo",
  4153. "root": {
  4154. "__id__": 1
  4155. },
  4156. "asset": {
  4157. "__uuid__": "6a4f3ae2-1f9e-448c-bb80-e16eed3312fd"
  4158. },
  4159. "fileId": "c00ifEKdNHVIiSvxhud4xM",
  4160. "sync": false
  4161. },
  4162. {
  4163. "__type__": "cc.ScrollView",
  4164. "_name": "",
  4165. "_objFlags": 0,
  4166. "node": {
  4167. "__id__": 87
  4168. },
  4169. "_enabled": true,
  4170. "content": {
  4171. "__id__": 89
  4172. },
  4173. "horizontal": false,
  4174. "vertical": true,
  4175. "inertia": true,
  4176. "brake": 0.75,
  4177. "elastic": true,
  4178. "bounceDuration": 0.23,
  4179. "scrollEvents": [
  4180. {
  4181. "__id__": 134
  4182. }
  4183. ],
  4184. "cancelInnerEvents": true,
  4185. "_N$horizontalScrollBar": null,
  4186. "_N$verticalScrollBar": null
  4187. },
  4188. {
  4189. "__type__": "cc.ClickEvent",
  4190. "target": {
  4191. "__id__": 87
  4192. },
  4193. "component": "RankListWithAdapter",
  4194. "handler": "onScrollEvent",
  4195. "customEventData": ""
  4196. },
  4197. {
  4198. "__type__": "17839B0Bp9KRbQeHc1fe3ma",
  4199. "_name": "",
  4200. "_objFlags": 0,
  4201. "node": {
  4202. "__id__": 87
  4203. },
  4204. "_enabled": true,
  4205. "scrollView": {
  4206. "__id__": 133
  4207. },
  4208. "content": {
  4209. "__id__": 89
  4210. },
  4211. "tipLabel": {
  4212. "__id__": 94
  4213. },
  4214. "item": {
  4215. "__uuid__": "e4d46c87-e250-481e-a1ef-3fb3c1bf234b"
  4216. },
  4217. "itemScriptName": "ArtistRankItem",
  4218. "myItem": {
  4219. "__id__": 96
  4220. }
  4221. },
  4222. {
  4223. "__type__": "cc.PrefabInfo",
  4224. "root": {
  4225. "__id__": 1
  4226. },
  4227. "asset": {
  4228. "__uuid__": "6a4f3ae2-1f9e-448c-bb80-e16eed3312fd"
  4229. },
  4230. "fileId": "aaJJV7AyhEEKTPyPju9YmB",
  4231. "sync": false
  4232. },
  4233. {
  4234. "__type__": "cc.Node",
  4235. "_name": "divier_line",
  4236. "_objFlags": 0,
  4237. "_parent": {
  4238. "__id__": 6
  4239. },
  4240. "_children": [],
  4241. "_tag": -1,
  4242. "_active": true,
  4243. "_components": [
  4244. {
  4245. "__id__": 138
  4246. }
  4247. ],
  4248. "_prefab": {
  4249. "__id__": 139
  4250. },
  4251. "_id": "",
  4252. "_opacity": 255,
  4253. "_color": {
  4254. "__type__": "cc.Color",
  4255. "r": 255,
  4256. "g": 255,
  4257. "b": 255,
  4258. "a": 255
  4259. },
  4260. "_cascadeOpacityEnabled": true,
  4261. "_anchorPoint": {
  4262. "__type__": "cc.Vec2",
  4263. "x": 0.5,
  4264. "y": 0.5
  4265. },
  4266. "_contentSize": {
  4267. "__type__": "cc.Size",
  4268. "width": 670,
  4269. "height": 2
  4270. },
  4271. "_rotationX": 0,
  4272. "_rotationY": 0,
  4273. "_scaleX": 1,
  4274. "_scaleY": 1,
  4275. "_position": {
  4276. "__type__": "cc.Vec2",
  4277. "x": 0,
  4278. "y": -445
  4279. },
  4280. "_skewX": 0,
  4281. "_skewY": 0,
  4282. "_localZOrder": 0,
  4283. "_globalZOrder": 0,
  4284. "_opacityModifyRGB": false,
  4285. "groupIndex": 0
  4286. },
  4287. {
  4288. "__type__": "cc.Sprite",
  4289. "_name": "",
  4290. "_objFlags": 0,
  4291. "node": {
  4292. "__id__": 137
  4293. },
  4294. "_enabled": true,
  4295. "_spriteFrame": {
  4296. "__uuid__": "f765aa9a-5fe5-4215-9b30-c52d671f63ef"
  4297. },
  4298. "_type": 2,
  4299. "_sizeMode": 0,
  4300. "_fillType": 0,
  4301. "_fillCenter": {
  4302. "__type__": "cc.Vec2",
  4303. "x": 0,
  4304. "y": 0
  4305. },
  4306. "_fillStart": 0,
  4307. "_fillRange": 0,
  4308. "_isTrimmedMode": true,
  4309. "_srcBlendFactor": 770,
  4310. "_dstBlendFactor": 771,
  4311. "_atlas": null
  4312. },
  4313. {
  4314. "__type__": "cc.PrefabInfo",
  4315. "root": {
  4316. "__id__": 1
  4317. },
  4318. "asset": {
  4319. "__uuid__": "6a4f3ae2-1f9e-448c-bb80-e16eed3312fd"
  4320. },
  4321. "fileId": "e3Xluy5SFLBJhZczsmwlYp",
  4322. "sync": false
  4323. },
  4324. {
  4325. "__type__": "cc.Node",
  4326. "_name": "closeButton",
  4327. "_objFlags": 0,
  4328. "_parent": {
  4329. "__id__": 6
  4330. },
  4331. "_children": [],
  4332. "_tag": -1,
  4333. "_active": true,
  4334. "_components": [
  4335. {
  4336. "__id__": 141
  4337. },
  4338. {
  4339. "__id__": 142
  4340. }
  4341. ],
  4342. "_prefab": {
  4343. "__id__": 144
  4344. },
  4345. "_id": "",
  4346. "_opacity": 255,
  4347. "_color": {
  4348. "__type__": "cc.Color",
  4349. "r": 255,
  4350. "g": 255,
  4351. "b": 255,
  4352. "a": 255
  4353. },
  4354. "_cascadeOpacityEnabled": true,
  4355. "_anchorPoint": {
  4356. "__type__": "cc.Vec2",
  4357. "x": 0.5,
  4358. "y": 0.5
  4359. },
  4360. "_contentSize": {
  4361. "__type__": "cc.Size",
  4362. "width": 70,
  4363. "height": 72
  4364. },
  4365. "_rotationX": 0,
  4366. "_rotationY": 0,
  4367. "_scaleX": 1,
  4368. "_scaleY": 1,
  4369. "_position": {
  4370. "__type__": "cc.Vec2",
  4371. "x": 338,
  4372. "y": 481
  4373. },
  4374. "_skewX": 0,
  4375. "_skewY": 0,
  4376. "_localZOrder": 0,
  4377. "_globalZOrder": 0,
  4378. "_opacityModifyRGB": false,
  4379. "groupIndex": 0
  4380. },
  4381. {
  4382. "__type__": "cc.Sprite",
  4383. "_name": "",
  4384. "_objFlags": 0,
  4385. "node": {
  4386. "__id__": 140
  4387. },
  4388. "_enabled": true,
  4389. "_spriteFrame": {
  4390. "__uuid__": "d81639e6-1728-48fa-854b-da4cdcc7709c"
  4391. },
  4392. "_type": 1,
  4393. "_sizeMode": 1,
  4394. "_fillType": 0,
  4395. "_fillCenter": {
  4396. "__type__": "cc.Vec2",
  4397. "x": 0,
  4398. "y": 0
  4399. },
  4400. "_fillStart": 0,
  4401. "_fillRange": 0,
  4402. "_isTrimmedMode": true,
  4403. "_srcBlendFactor": 770,
  4404. "_dstBlendFactor": 771,
  4405. "_atlas": null
  4406. },
  4407. {
  4408. "__type__": "cc.Button",
  4409. "_name": "",
  4410. "_objFlags": 0,
  4411. "node": {
  4412. "__id__": 140
  4413. },
  4414. "_enabled": true,
  4415. "transition": 1,
  4416. "pressedColor": {
  4417. "__type__": "cc.Color",
  4418. "r": 120,
  4419. "g": 120,
  4420. "b": 120,
  4421. "a": 255
  4422. },
  4423. "hoverColor": {
  4424. "__type__": "cc.Color",
  4425. "r": 255,
  4426. "g": 255,
  4427. "b": 255,
  4428. "a": 255
  4429. },
  4430. "duration": 0.1,
  4431. "zoomScale": 1.2,
  4432. "clickEvents": [
  4433. {
  4434. "__id__": 143
  4435. }
  4436. ],
  4437. "_N$interactable": true,
  4438. "_N$enableAutoGrayEffect": false,
  4439. "_N$normalColor": {
  4440. "__type__": "cc.Color",
  4441. "r": 255,
  4442. "g": 255,
  4443. "b": 255,
  4444. "a": 255
  4445. },
  4446. "_N$disabledColor": {
  4447. "__type__": "cc.Color",
  4448. "r": 255,
  4449. "g": 255,
  4450. "b": 255,
  4451. "a": 255
  4452. },
  4453. "_N$normalSprite": null,
  4454. "_N$pressedSprite": null,
  4455. "pressedSprite": null,
  4456. "_N$hoverSprite": null,
  4457. "hoverSprite": null,
  4458. "_N$disabledSprite": null,
  4459. "_N$target": {
  4460. "__id__": 140
  4461. }
  4462. },
  4463. {
  4464. "__type__": "cc.ClickEvent",
  4465. "target": {
  4466. "__id__": 1
  4467. },
  4468. "component": "RankPage",
  4469. "handler": "close",
  4470. "customEventData": ""
  4471. },
  4472. {
  4473. "__type__": "cc.PrefabInfo",
  4474. "root": {
  4475. "__id__": 1
  4476. },
  4477. "asset": {
  4478. "__uuid__": "6a4f3ae2-1f9e-448c-bb80-e16eed3312fd"
  4479. },
  4480. "fileId": "73mzUW3qRNmYFFwLycm3rG",
  4481. "sync": false
  4482. },
  4483. {
  4484. "__type__": "cc.Node",
  4485. "_name": "color_full_bar",
  4486. "_objFlags": 0,
  4487. "_parent": {
  4488. "__id__": 6
  4489. },
  4490. "_children": [
  4491. {
  4492. "__id__": 146
  4493. }
  4494. ],
  4495. "_tag": -1,
  4496. "_active": true,
  4497. "_components": [
  4498. {
  4499. "__id__": 149
  4500. }
  4501. ],
  4502. "_prefab": {
  4503. "__id__": 150
  4504. },
  4505. "_id": "",
  4506. "_opacity": 255,
  4507. "_color": {
  4508. "__type__": "cc.Color",
  4509. "r": 255,
  4510. "g": 255,
  4511. "b": 255,
  4512. "a": 255
  4513. },
  4514. "_cascadeOpacityEnabled": true,
  4515. "_anchorPoint": {
  4516. "__type__": "cc.Vec2",
  4517. "x": 0.5,
  4518. "y": 0.5
  4519. },
  4520. "_contentSize": {
  4521. "__type__": "cc.Size",
  4522. "width": 432,
  4523. "height": 96
  4524. },
  4525. "_rotationX": 0,
  4526. "_rotationY": 0,
  4527. "_scaleX": 1,
  4528. "_scaleY": 1,
  4529. "_position": {
  4530. "__type__": "cc.Vec2",
  4531. "x": 0,
  4532. "y": 507
  4533. },
  4534. "_skewX": 0,
  4535. "_skewY": 0,
  4536. "_localZOrder": 0,
  4537. "_globalZOrder": 0,
  4538. "_opacityModifyRGB": false,
  4539. "groupIndex": 0
  4540. },
  4541. {
  4542. "__type__": "cc.Node",
  4543. "_name": "New Label",
  4544. "_objFlags": 0,
  4545. "_parent": {
  4546. "__id__": 145
  4547. },
  4548. "_children": [],
  4549. "_tag": -1,
  4550. "_active": true,
  4551. "_components": [
  4552. {
  4553. "__id__": 147
  4554. }
  4555. ],
  4556. "_prefab": {
  4557. "__id__": 148
  4558. },
  4559. "_id": "",
  4560. "_opacity": 255,
  4561. "_color": {
  4562. "__type__": "cc.Color",
  4563. "r": 255,
  4564. "g": 255,
  4565. "b": 255,
  4566. "a": 255
  4567. },
  4568. "_cascadeOpacityEnabled": true,
  4569. "_anchorPoint": {
  4570. "__type__": "cc.Vec2",
  4571. "x": 0.5,
  4572. "y": 0.5
  4573. },
  4574. "_contentSize": {
  4575. "__type__": "cc.Size",
  4576. "width": 120,
  4577. "height": 40
  4578. },
  4579. "_rotationX": 0,
  4580. "_rotationY": 0,
  4581. "_scaleX": 1,
  4582. "_scaleY": 1,
  4583. "_position": {
  4584. "__type__": "cc.Vec2",
  4585. "x": 0,
  4586. "y": 6.7
  4587. },
  4588. "_skewX": 0,
  4589. "_skewY": 0,
  4590. "_localZOrder": 0,
  4591. "_globalZOrder": 0,
  4592. "_opacityModifyRGB": false,
  4593. "groupIndex": 0
  4594. },
  4595. {
  4596. "__type__": "cc.Label",
  4597. "_name": "",
  4598. "_objFlags": 0,
  4599. "node": {
  4600. "__id__": 146
  4601. },
  4602. "_enabled": true,
  4603. "_useOriginalSize": false,
  4604. "_actualFontSize": 40,
  4605. "_fontSize": 40,
  4606. "_lineHeight": 40,
  4607. "_enableWrapText": true,
  4608. "_N$file": null,
  4609. "_isSystemFontUsed": true,
  4610. "_spacingX": 0,
  4611. "_N$string": "排行榜",
  4612. "_N$horizontalAlign": 1,
  4613. "_N$verticalAlign": 1,
  4614. "_N$fontFamily": "Arial",
  4615. "_N$overflow": 0
  4616. },
  4617. {
  4618. "__type__": "cc.PrefabInfo",
  4619. "root": {
  4620. "__id__": 1
  4621. },
  4622. "asset": {
  4623. "__uuid__": "6a4f3ae2-1f9e-448c-bb80-e16eed3312fd"
  4624. },
  4625. "fileId": "cboMRvW+FKBqZ9aG+p8t2O",
  4626. "sync": false
  4627. },
  4628. {
  4629. "__type__": "cc.Sprite",
  4630. "_name": "",
  4631. "_objFlags": 0,
  4632. "node": {
  4633. "__id__": 145
  4634. },
  4635. "_enabled": true,
  4636. "_spriteFrame": {
  4637. "__uuid__": "69e568db-5875-40fd-b252-0363f5d5fc42"
  4638. },
  4639. "_type": 0,
  4640. "_sizeMode": 1,
  4641. "_fillType": 0,
  4642. "_fillCenter": {
  4643. "__type__": "cc.Vec2",
  4644. "x": 0,
  4645. "y": 0
  4646. },
  4647. "_fillStart": 0,
  4648. "_fillRange": 0,
  4649. "_isTrimmedMode": true,
  4650. "_srcBlendFactor": 770,
  4651. "_dstBlendFactor": 771,
  4652. "_atlas": null
  4653. },
  4654. {
  4655. "__type__": "cc.PrefabInfo",
  4656. "root": {
  4657. "__id__": 1
  4658. },
  4659. "asset": {
  4660. "__uuid__": "6a4f3ae2-1f9e-448c-bb80-e16eed3312fd"
  4661. },
  4662. "fileId": "51RvMBtANGSJ6zcfSeoY1t",
  4663. "sync": false
  4664. },
  4665. {
  4666. "__type__": "cc.PrefabInfo",
  4667. "root": {
  4668. "__id__": 1
  4669. },
  4670. "asset": {
  4671. "__uuid__": "6a4f3ae2-1f9e-448c-bb80-e16eed3312fd"
  4672. },
  4673. "fileId": "5dgqVyZe1CArdE2XqY9RRn",
  4674. "sync": false
  4675. },
  4676. {
  4677. "__type__": "8c002BT7ZNDu6q/xr4Txs6A",
  4678. "_name": "",
  4679. "_objFlags": 0,
  4680. "node": {
  4681. "__id__": 1
  4682. },
  4683. "_enabled": true,
  4684. "content": {
  4685. "__id__": 6
  4686. },
  4687. "myNode": null,
  4688. "allRankSpriteFrame": [
  4689. {
  4690. "__uuid__": "74d1c930-8aea-4b89-ae33-a111bbf08b63"
  4691. },
  4692. {
  4693. "__uuid__": "fbe76b55-9a6a-4aca-99ca-49d4c79bc42f"
  4694. }
  4695. ],
  4696. "friendRankSpriteFrame": [
  4697. {
  4698. "__uuid__": "80dc9f09-5f1f-465c-be0f-8ccf2c123698"
  4699. },
  4700. {
  4701. "__uuid__": "1f291233-efe6-493c-b8e3-1cdf28c03a19"
  4702. }
  4703. ],
  4704. "secondTabSpriteFrame": [
  4705. null,
  4706. {
  4707. "__uuid__": "36e400ea-3e3c-4307-a4a9-7fdc627d9138"
  4708. }
  4709. ],
  4710. "allRankTab": {
  4711. "__id__": 14
  4712. },
  4713. "friendRankTab": {
  4714. "__id__": 19
  4715. },
  4716. "companyTab": {
  4717. "__id__": 28
  4718. },
  4719. "artistTab": {
  4720. "__id__": 37
  4721. },
  4722. "companyText": {
  4723. "__id__": 25
  4724. },
  4725. "artistText": {
  4726. "__id__": 34
  4727. },
  4728. "companySrcollView": {
  4729. "__id__": 83
  4730. },
  4731. "artistSrcollView": {
  4732. "__id__": 133
  4733. }
  4734. },
  4735. {
  4736. "__type__": "cc.PrefabInfo",
  4737. "root": {
  4738. "__id__": 1
  4739. },
  4740. "asset": {
  4741. "__uuid__": "6a4f3ae2-1f9e-448c-bb80-e16eed3312fd"
  4742. },
  4743. "fileId": "b7cp1oG1VLmI2BozgMoa7x",
  4744. "sync": false
  4745. }
  4746. ]