rank_page.prefab 68 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762
  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__": 119
  31. }
  32. ],
  33. "_prefab": {
  34. "__id__": 120
  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__": 15
  191. },
  192. {
  193. "__id__": 20
  194. },
  195. {
  196. "__id__": 23
  197. },
  198. {
  199. "__id__": 31
  200. },
  201. {
  202. "__id__": 39
  203. },
  204. {
  205. "__id__": 53
  206. },
  207. {
  208. "__id__": 110
  209. },
  210. {
  211. "__id__": 113
  212. },
  213. {
  214. "__id__": 64
  215. }
  216. ],
  217. "_tag": -1,
  218. "_active": true,
  219. "_components": [],
  220. "_prefab": {
  221. "__id__": 118
  222. },
  223. "_id": "",
  224. "_opacity": 255,
  225. "_color": {
  226. "__type__": "cc.Color",
  227. "r": 255,
  228. "g": 255,
  229. "b": 255,
  230. "a": 255
  231. },
  232. "_cascadeOpacityEnabled": true,
  233. "_anchorPoint": {
  234. "__type__": "cc.Vec2",
  235. "x": 0.5,
  236. "y": 0.5
  237. },
  238. "_contentSize": {
  239. "__type__": "cc.Size",
  240. "width": 724,
  241. "height": 1220
  242. },
  243. "_rotationX": 0,
  244. "_rotationY": 0,
  245. "_scaleX": 1,
  246. "_scaleY": 1,
  247. "_position": {
  248. "__type__": "cc.Vec2",
  249. "x": 0,
  250. "y": -57
  251. },
  252. "_skewX": 0,
  253. "_skewY": 0,
  254. "_localZOrder": 0,
  255. "_globalZOrder": 0,
  256. "_opacityModifyRGB": false,
  257. "groupIndex": 0
  258. },
  259. {
  260. "__type__": "cc.Node",
  261. "_name": "friend_list_bg1",
  262. "_objFlags": 0,
  263. "_parent": {
  264. "__id__": 6
  265. },
  266. "_children": [],
  267. "_tag": -1,
  268. "_active": true,
  269. "_components": [
  270. {
  271. "__id__": 8
  272. }
  273. ],
  274. "_prefab": {
  275. "__id__": 9
  276. },
  277. "_id": "",
  278. "_opacity": 255,
  279. "_color": {
  280. "__type__": "cc.Color",
  281. "r": 255,
  282. "g": 255,
  283. "b": 255,
  284. "a": 255
  285. },
  286. "_cascadeOpacityEnabled": true,
  287. "_anchorPoint": {
  288. "__type__": "cc.Vec2",
  289. "x": 0.5,
  290. "y": 0.5
  291. },
  292. "_contentSize": {
  293. "__type__": "cc.Size",
  294. "width": 724,
  295. "height": 1114
  296. },
  297. "_rotationX": 0,
  298. "_rotationY": 0,
  299. "_scaleX": 1,
  300. "_scaleY": 1,
  301. "_position": {
  302. "__type__": "cc.Vec2",
  303. "x": 0,
  304. "y": -52
  305. },
  306. "_skewX": 0,
  307. "_skewY": 0,
  308. "_localZOrder": 0,
  309. "_globalZOrder": 0,
  310. "_opacityModifyRGB": false,
  311. "groupIndex": 0
  312. },
  313. {
  314. "__type__": "cc.Sprite",
  315. "_name": "",
  316. "_objFlags": 0,
  317. "node": {
  318. "__id__": 7
  319. },
  320. "_enabled": true,
  321. "_spriteFrame": {
  322. "__uuid__": "10b43ea1-f312-479c-8660-91135716db45"
  323. },
  324. "_type": 1,
  325. "_sizeMode": 0,
  326. "_fillType": 0,
  327. "_fillCenter": {
  328. "__type__": "cc.Vec2",
  329. "x": 0,
  330. "y": 0
  331. },
  332. "_fillStart": 0,
  333. "_fillRange": 0,
  334. "_isTrimmedMode": true,
  335. "_srcBlendFactor": 770,
  336. "_dstBlendFactor": 771,
  337. "_atlas": null
  338. },
  339. {
  340. "__type__": "cc.PrefabInfo",
  341. "root": {
  342. "__id__": 1
  343. },
  344. "asset": {
  345. "__uuid__": "6a4f3ae2-1f9e-448c-bb80-e16eed3312fd"
  346. },
  347. "fileId": "ddGkhrRANMvL9NLeaTcwMg",
  348. "sync": false
  349. },
  350. {
  351. "__type__": "cc.Node",
  352. "_name": "all_rank_tab",
  353. "_objFlags": 0,
  354. "_parent": {
  355. "__id__": 6
  356. },
  357. "_children": [],
  358. "_tag": -1,
  359. "_active": true,
  360. "_components": [
  361. {
  362. "__id__": 11
  363. },
  364. {
  365. "__id__": 12
  366. }
  367. ],
  368. "_prefab": {
  369. "__id__": 14
  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": 200,
  389. "height": 47
  390. },
  391. "_rotationX": 0,
  392. "_rotationY": 0,
  393. "_scaleX": 1,
  394. "_scaleY": 1,
  395. "_position": {
  396. "__type__": "cc.Vec2",
  397. "x": -236,
  398. "y": 496
  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__": "74d1c930-8aea-4b89-ae33-a111bbf08b63"
  417. },
  418. "_type": 0,
  419. "_sizeMode": 1,
  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.Button",
  435. "_name": "",
  436. "_objFlags": 0,
  437. "node": {
  438. "__id__": 10
  439. },
  440. "_enabled": true,
  441. "transition": 0,
  442. "pressedColor": {
  443. "__type__": "cc.Color",
  444. "r": 255,
  445. "g": 255,
  446. "b": 255,
  447. "a": 255
  448. },
  449. "hoverColor": {
  450. "__type__": "cc.Color",
  451. "r": 255,
  452. "g": 255,
  453. "b": 255,
  454. "a": 255
  455. },
  456. "duration": 0.1,
  457. "zoomScale": 1.2,
  458. "clickEvents": [
  459. {
  460. "__id__": 13
  461. }
  462. ],
  463. "_N$interactable": true,
  464. "_N$enableAutoGrayEffect": false,
  465. "_N$normalColor": {
  466. "__type__": "cc.Color",
  467. "r": 255,
  468. "g": 255,
  469. "b": 255,
  470. "a": 255
  471. },
  472. "_N$disabledColor": {
  473. "__type__": "cc.Color",
  474. "r": 255,
  475. "g": 255,
  476. "b": 255,
  477. "a": 255
  478. },
  479. "_N$normalSprite": {
  480. "__uuid__": "46c743af-046d-4b73-b4af-d52189121127"
  481. },
  482. "_N$pressedSprite": {
  483. "__uuid__": "46c743af-046d-4b73-b4af-d52189121127"
  484. },
  485. "pressedSprite": {
  486. "__uuid__": "46c743af-046d-4b73-b4af-d52189121127"
  487. },
  488. "_N$hoverSprite": {
  489. "__uuid__": "46c743af-046d-4b73-b4af-d52189121127"
  490. },
  491. "hoverSprite": {
  492. "__uuid__": "46c743af-046d-4b73-b4af-d52189121127"
  493. },
  494. "_N$disabledSprite": {
  495. "__uuid__": "46c743af-046d-4b73-b4af-d52189121127"
  496. },
  497. "_N$target": {
  498. "__id__": 10
  499. }
  500. },
  501. {
  502. "__type__": "cc.ClickEvent",
  503. "target": {
  504. "__id__": 1
  505. },
  506. "component": "RankPage",
  507. "handler": "allRankSelected",
  508. "customEventData": ""
  509. },
  510. {
  511. "__type__": "cc.PrefabInfo",
  512. "root": {
  513. "__id__": 1
  514. },
  515. "asset": {
  516. "__uuid__": "6a4f3ae2-1f9e-448c-bb80-e16eed3312fd"
  517. },
  518. "fileId": "0alR2HlTRKJKRg2cRuhHD4",
  519. "sync": false
  520. },
  521. {
  522. "__type__": "cc.Node",
  523. "_name": "friend_rank_tab",
  524. "_objFlags": 0,
  525. "_parent": {
  526. "__id__": 6
  527. },
  528. "_children": [],
  529. "_tag": -1,
  530. "_active": true,
  531. "_components": [
  532. {
  533. "__id__": 16
  534. },
  535. {
  536. "__id__": 17
  537. }
  538. ],
  539. "_prefab": {
  540. "__id__": 19
  541. },
  542. "_id": "",
  543. "_opacity": 255,
  544. "_color": {
  545. "__type__": "cc.Color",
  546. "r": 255,
  547. "g": 255,
  548. "b": 255,
  549. "a": 255
  550. },
  551. "_cascadeOpacityEnabled": true,
  552. "_anchorPoint": {
  553. "__type__": "cc.Vec2",
  554. "x": 0.5,
  555. "y": 0.5
  556. },
  557. "_contentSize": {
  558. "__type__": "cc.Size",
  559. "width": 200,
  560. "height": 47
  561. },
  562. "_rotationX": 0,
  563. "_rotationY": 0,
  564. "_scaleX": 1,
  565. "_scaleY": 1,
  566. "_position": {
  567. "__type__": "cc.Vec2",
  568. "x": -26,
  569. "y": 496
  570. },
  571. "_skewX": 0,
  572. "_skewY": 0,
  573. "_localZOrder": 0,
  574. "_globalZOrder": 0,
  575. "_opacityModifyRGB": false,
  576. "groupIndex": 0
  577. },
  578. {
  579. "__type__": "cc.Sprite",
  580. "_name": "",
  581. "_objFlags": 0,
  582. "node": {
  583. "__id__": 15
  584. },
  585. "_enabled": true,
  586. "_spriteFrame": {
  587. "__uuid__": "80dc9f09-5f1f-465c-be0f-8ccf2c123698"
  588. },
  589. "_type": 0,
  590. "_sizeMode": 1,
  591. "_fillType": 0,
  592. "_fillCenter": {
  593. "__type__": "cc.Vec2",
  594. "x": 0,
  595. "y": 0
  596. },
  597. "_fillStart": 0,
  598. "_fillRange": 0,
  599. "_isTrimmedMode": true,
  600. "_srcBlendFactor": 770,
  601. "_dstBlendFactor": 771,
  602. "_atlas": null
  603. },
  604. {
  605. "__type__": "cc.Button",
  606. "_name": "",
  607. "_objFlags": 0,
  608. "node": {
  609. "__id__": 15
  610. },
  611. "_enabled": true,
  612. "transition": 0,
  613. "pressedColor": {
  614. "__type__": "cc.Color",
  615. "r": 120,
  616. "g": 120,
  617. "b": 120,
  618. "a": 255
  619. },
  620. "hoverColor": {
  621. "__type__": "cc.Color",
  622. "r": 255,
  623. "g": 255,
  624. "b": 255,
  625. "a": 255
  626. },
  627. "duration": 0.1,
  628. "zoomScale": 1.2,
  629. "clickEvents": [
  630. {
  631. "__id__": 18
  632. }
  633. ],
  634. "_N$interactable": true,
  635. "_N$enableAutoGrayEffect": false,
  636. "_N$normalColor": {
  637. "__type__": "cc.Color",
  638. "r": 255,
  639. "g": 255,
  640. "b": 255,
  641. "a": 255
  642. },
  643. "_N$disabledColor": {
  644. "__type__": "cc.Color",
  645. "r": 255,
  646. "g": 255,
  647. "b": 255,
  648. "a": 255
  649. },
  650. "_N$normalSprite": {
  651. "__uuid__": "55fcad8a-30d6-4b8c-b5f9-f8f61796e2cc"
  652. },
  653. "_N$pressedSprite": null,
  654. "pressedSprite": null,
  655. "_N$hoverSprite": null,
  656. "hoverSprite": null,
  657. "_N$disabledSprite": null,
  658. "_N$target": {
  659. "__id__": 15
  660. }
  661. },
  662. {
  663. "__type__": "cc.ClickEvent",
  664. "target": {
  665. "__id__": 1
  666. },
  667. "component": "RankPage",
  668. "handler": "friendRankSelected",
  669. "customEventData": ""
  670. },
  671. {
  672. "__type__": "cc.PrefabInfo",
  673. "root": {
  674. "__id__": 1
  675. },
  676. "asset": {
  677. "__uuid__": "6a4f3ae2-1f9e-448c-bb80-e16eed3312fd"
  678. },
  679. "fileId": "f7oUbQVXpMG7d6wlI8CAeF",
  680. "sync": false
  681. },
  682. {
  683. "__type__": "cc.Node",
  684. "_name": "list_bg",
  685. "_objFlags": 0,
  686. "_parent": {
  687. "__id__": 6
  688. },
  689. "_children": [],
  690. "_tag": -1,
  691. "_active": true,
  692. "_components": [
  693. {
  694. "__id__": 21
  695. }
  696. ],
  697. "_prefab": {
  698. "__id__": 22
  699. },
  700. "_id": "",
  701. "_opacity": 255,
  702. "_color": {
  703. "__type__": "cc.Color",
  704. "r": 255,
  705. "g": 255,
  706. "b": 255,
  707. "a": 255
  708. },
  709. "_cascadeOpacityEnabled": true,
  710. "_anchorPoint": {
  711. "__type__": "cc.Vec2",
  712. "x": 0.5,
  713. "y": 0.5
  714. },
  715. "_contentSize": {
  716. "__type__": "cc.Size",
  717. "width": 712,
  718. "height": 1060
  719. },
  720. "_rotationX": 0,
  721. "_rotationY": 0,
  722. "_scaleX": 1,
  723. "_scaleY": 1,
  724. "_position": {
  725. "__type__": "cc.Vec2",
  726. "x": 0,
  727. "y": -50
  728. },
  729. "_skewX": 0,
  730. "_skewY": 0,
  731. "_localZOrder": 0,
  732. "_globalZOrder": 0,
  733. "_opacityModifyRGB": false,
  734. "groupIndex": 0
  735. },
  736. {
  737. "__type__": "cc.Sprite",
  738. "_name": "",
  739. "_objFlags": 0,
  740. "node": {
  741. "__id__": 20
  742. },
  743. "_enabled": true,
  744. "_spriteFrame": {
  745. "__uuid__": "a4d627d3-eaf3-4f2e-86bb-f8d0dc09d5bf"
  746. },
  747. "_type": 1,
  748. "_sizeMode": 0,
  749. "_fillType": 0,
  750. "_fillCenter": {
  751. "__type__": "cc.Vec2",
  752. "x": 0,
  753. "y": 0
  754. },
  755. "_fillStart": 0,
  756. "_fillRange": 0,
  757. "_isTrimmedMode": true,
  758. "_srcBlendFactor": 770,
  759. "_dstBlendFactor": 771,
  760. "_atlas": null
  761. },
  762. {
  763. "__type__": "cc.PrefabInfo",
  764. "root": {
  765. "__id__": 1
  766. },
  767. "asset": {
  768. "__uuid__": "6a4f3ae2-1f9e-448c-bb80-e16eed3312fd"
  769. },
  770. "fileId": "72VoHeWZlG65vqj1+X53GO",
  771. "sync": false
  772. },
  773. {
  774. "__type__": "cc.Node",
  775. "_name": "company_rank",
  776. "_objFlags": 0,
  777. "_parent": {
  778. "__id__": 6
  779. },
  780. "_children": [
  781. {
  782. "__id__": 24
  783. }
  784. ],
  785. "_tag": -1,
  786. "_active": true,
  787. "_components": [
  788. {
  789. "__id__": 27
  790. },
  791. {
  792. "__id__": 28
  793. }
  794. ],
  795. "_prefab": {
  796. "__id__": 30
  797. },
  798. "_id": "",
  799. "_opacity": 255,
  800. "_color": {
  801. "__type__": "cc.Color",
  802. "r": 255,
  803. "g": 255,
  804. "b": 255,
  805. "a": 255
  806. },
  807. "_cascadeOpacityEnabled": true,
  808. "_anchorPoint": {
  809. "__type__": "cc.Vec2",
  810. "x": 0.5,
  811. "y": 0.5
  812. },
  813. "_contentSize": {
  814. "__type__": "cc.Size",
  815. "width": 248,
  816. "height": 76
  817. },
  818. "_rotationX": 0,
  819. "_rotationY": 0,
  820. "_scaleX": 1,
  821. "_scaleY": 1,
  822. "_position": {
  823. "__type__": "cc.Vec2",
  824. "x": -142,
  825. "y": 390
  826. },
  827. "_skewX": 0,
  828. "_skewY": 0,
  829. "_localZOrder": 0,
  830. "_globalZOrder": 0,
  831. "_opacityModifyRGB": false,
  832. "groupIndex": 0
  833. },
  834. {
  835. "__type__": "cc.Node",
  836. "_name": "companyText",
  837. "_objFlags": 0,
  838. "_parent": {
  839. "__id__": 23
  840. },
  841. "_children": [],
  842. "_tag": -1,
  843. "_active": true,
  844. "_components": [
  845. {
  846. "__id__": 25
  847. }
  848. ],
  849. "_prefab": {
  850. "__id__": 26
  851. },
  852. "_id": "",
  853. "_opacity": 255,
  854. "_color": {
  855. "__type__": "cc.Color",
  856. "r": 255,
  857. "g": 244,
  858. "b": 222,
  859. "a": 255
  860. },
  861. "_cascadeOpacityEnabled": true,
  862. "_anchorPoint": {
  863. "__type__": "cc.Vec2",
  864. "x": 0.5,
  865. "y": 0.5
  866. },
  867. "_contentSize": {
  868. "__type__": "cc.Size",
  869. "width": 151,
  870. "height": 50
  871. },
  872. "_rotationX": 0,
  873. "_rotationY": 0,
  874. "_scaleX": 1,
  875. "_scaleY": 1,
  876. "_position": {
  877. "__type__": "cc.Vec2",
  878. "x": 0,
  879. "y": 0
  880. },
  881. "_skewX": 0,
  882. "_skewY": 0,
  883. "_localZOrder": 0,
  884. "_globalZOrder": 0,
  885. "_opacityModifyRGB": false,
  886. "groupIndex": 0
  887. },
  888. {
  889. "__type__": "cc.RichText",
  890. "_name": "",
  891. "_objFlags": 0,
  892. "node": {
  893. "__id__": 24
  894. },
  895. "_enabled": true,
  896. "_N$string": "<outline color=#c47005 width=2><b>经济公司<b></outline>",
  897. "_N$horizontalAlign": 0,
  898. "_N$fontSize": 36,
  899. "_N$font": null,
  900. "_N$maxWidth": 0,
  901. "_N$lineHeight": 50,
  902. "_N$imageAtlas": null,
  903. "_N$handleTouchEvent": true
  904. },
  905. {
  906. "__type__": "cc.PrefabInfo",
  907. "root": {
  908. "__id__": 1
  909. },
  910. "asset": {
  911. "__uuid__": "6a4f3ae2-1f9e-448c-bb80-e16eed3312fd"
  912. },
  913. "fileId": "18ZDSoXRhAWKvuBafdTb0F",
  914. "sync": false
  915. },
  916. {
  917. "__type__": "cc.Sprite",
  918. "_name": "",
  919. "_objFlags": 0,
  920. "node": {
  921. "__id__": 23
  922. },
  923. "_enabled": true,
  924. "_spriteFrame": {
  925. "__uuid__": "b23a5bf8-551c-4467-8ea3-5a5966bb2340"
  926. },
  927. "_type": 0,
  928. "_sizeMode": 1,
  929. "_fillType": 0,
  930. "_fillCenter": {
  931. "__type__": "cc.Vec2",
  932. "x": 0,
  933. "y": 0
  934. },
  935. "_fillStart": 0,
  936. "_fillRange": 0,
  937. "_isTrimmedMode": true,
  938. "_srcBlendFactor": 770,
  939. "_dstBlendFactor": 771,
  940. "_atlas": null
  941. },
  942. {
  943. "__type__": "cc.Button",
  944. "_name": "",
  945. "_objFlags": 0,
  946. "node": {
  947. "__id__": 23
  948. },
  949. "_enabled": true,
  950. "transition": 0,
  951. "pressedColor": {
  952. "__type__": "cc.Color",
  953. "r": 211,
  954. "g": 211,
  955. "b": 211,
  956. "a": 255
  957. },
  958. "hoverColor": {
  959. "__type__": "cc.Color",
  960. "r": 255,
  961. "g": 255,
  962. "b": 255,
  963. "a": 255
  964. },
  965. "duration": 0.1,
  966. "zoomScale": 1.2,
  967. "clickEvents": [
  968. {
  969. "__id__": 29
  970. }
  971. ],
  972. "_N$interactable": true,
  973. "_N$enableAutoGrayEffect": false,
  974. "_N$normalColor": {
  975. "__type__": "cc.Color",
  976. "r": 214,
  977. "g": 214,
  978. "b": 214,
  979. "a": 255
  980. },
  981. "_N$disabledColor": {
  982. "__type__": "cc.Color",
  983. "r": 124,
  984. "g": 124,
  985. "b": 124,
  986. "a": 255
  987. },
  988. "_N$normalSprite": null,
  989. "_N$pressedSprite": null,
  990. "pressedSprite": null,
  991. "_N$hoverSprite": null,
  992. "hoverSprite": null,
  993. "_N$disabledSprite": null,
  994. "_N$target": {
  995. "__id__": 23
  996. }
  997. },
  998. {
  999. "__type__": "cc.ClickEvent",
  1000. "target": {
  1001. "__id__": 1
  1002. },
  1003. "component": "RankPage",
  1004. "handler": "companyTabSelected",
  1005. "customEventData": ""
  1006. },
  1007. {
  1008. "__type__": "cc.PrefabInfo",
  1009. "root": {
  1010. "__id__": 1
  1011. },
  1012. "asset": {
  1013. "__uuid__": "6a4f3ae2-1f9e-448c-bb80-e16eed3312fd"
  1014. },
  1015. "fileId": "81TrvYGnRL8L6WOLb14Qty",
  1016. "sync": false
  1017. },
  1018. {
  1019. "__type__": "cc.Node",
  1020. "_name": "artist_rank",
  1021. "_objFlags": 0,
  1022. "_parent": {
  1023. "__id__": 6
  1024. },
  1025. "_children": [
  1026. {
  1027. "__id__": 32
  1028. }
  1029. ],
  1030. "_tag": -1,
  1031. "_active": true,
  1032. "_components": [
  1033. {
  1034. "__id__": 35
  1035. },
  1036. {
  1037. "__id__": 36
  1038. }
  1039. ],
  1040. "_prefab": {
  1041. "__id__": 38
  1042. },
  1043. "_id": "",
  1044. "_opacity": 255,
  1045. "_color": {
  1046. "__type__": "cc.Color",
  1047. "r": 255,
  1048. "g": 255,
  1049. "b": 255,
  1050. "a": 255
  1051. },
  1052. "_cascadeOpacityEnabled": true,
  1053. "_anchorPoint": {
  1054. "__type__": "cc.Vec2",
  1055. "x": 0.5,
  1056. "y": 0.5
  1057. },
  1058. "_contentSize": {
  1059. "__type__": "cc.Size",
  1060. "width": 248,
  1061. "height": 76
  1062. },
  1063. "_rotationX": 0,
  1064. "_rotationY": 0,
  1065. "_scaleX": 1,
  1066. "_scaleY": 1,
  1067. "_position": {
  1068. "__type__": "cc.Vec2",
  1069. "x": 142,
  1070. "y": 390
  1071. },
  1072. "_skewX": 0,
  1073. "_skewY": 0,
  1074. "_localZOrder": 0,
  1075. "_globalZOrder": 0,
  1076. "_opacityModifyRGB": false,
  1077. "groupIndex": 0
  1078. },
  1079. {
  1080. "__type__": "cc.Node",
  1081. "_name": "artistText",
  1082. "_objFlags": 0,
  1083. "_parent": {
  1084. "__id__": 31
  1085. },
  1086. "_children": [],
  1087. "_tag": -1,
  1088. "_active": true,
  1089. "_components": [
  1090. {
  1091. "__id__": 33
  1092. }
  1093. ],
  1094. "_prefab": {
  1095. "__id__": 34
  1096. },
  1097. "_id": "",
  1098. "_opacity": 255,
  1099. "_color": {
  1100. "__type__": "cc.Color",
  1101. "r": 161,
  1102. "g": 105,
  1103. "b": 33,
  1104. "a": 255
  1105. },
  1106. "_cascadeOpacityEnabled": true,
  1107. "_anchorPoint": {
  1108. "__type__": "cc.Vec2",
  1109. "x": 0.5,
  1110. "y": 0.5
  1111. },
  1112. "_contentSize": {
  1113. "__type__": "cc.Size",
  1114. "width": 77,
  1115. "height": 50
  1116. },
  1117. "_rotationX": 0,
  1118. "_rotationY": 0,
  1119. "_scaleX": 1,
  1120. "_scaleY": 1,
  1121. "_position": {
  1122. "__type__": "cc.Vec2",
  1123. "x": 0,
  1124. "y": 0
  1125. },
  1126. "_skewX": 0,
  1127. "_skewY": 0,
  1128. "_localZOrder": 0,
  1129. "_globalZOrder": 0,
  1130. "_opacityModifyRGB": false,
  1131. "groupIndex": 0
  1132. },
  1133. {
  1134. "__type__": "cc.RichText",
  1135. "_name": "",
  1136. "_objFlags": 0,
  1137. "node": {
  1138. "__id__": 32
  1139. },
  1140. "_enabled": true,
  1141. "_N$string": "<outline color=#A16921 width=2><b>艺人<b></outline>",
  1142. "_N$horizontalAlign": 0,
  1143. "_N$fontSize": 36,
  1144. "_N$font": null,
  1145. "_N$maxWidth": 0,
  1146. "_N$lineHeight": 50,
  1147. "_N$imageAtlas": null,
  1148. "_N$handleTouchEvent": true
  1149. },
  1150. {
  1151. "__type__": "cc.PrefabInfo",
  1152. "root": {
  1153. "__id__": 1
  1154. },
  1155. "asset": {
  1156. "__uuid__": "6a4f3ae2-1f9e-448c-bb80-e16eed3312fd"
  1157. },
  1158. "fileId": "98Brdo1blMnqCTMH/f8/mc",
  1159. "sync": false
  1160. },
  1161. {
  1162. "__type__": "cc.Sprite",
  1163. "_name": "",
  1164. "_objFlags": 0,
  1165. "node": {
  1166. "__id__": 31
  1167. },
  1168. "_enabled": true,
  1169. "_spriteFrame": {
  1170. "__uuid__": "b23a5bf8-551c-4467-8ea3-5a5966bb2340"
  1171. },
  1172. "_type": 0,
  1173. "_sizeMode": 1,
  1174. "_fillType": 0,
  1175. "_fillCenter": {
  1176. "__type__": "cc.Vec2",
  1177. "x": 0,
  1178. "y": 0
  1179. },
  1180. "_fillStart": 0,
  1181. "_fillRange": 0,
  1182. "_isTrimmedMode": true,
  1183. "_srcBlendFactor": 770,
  1184. "_dstBlendFactor": 771,
  1185. "_atlas": null
  1186. },
  1187. {
  1188. "__type__": "cc.Button",
  1189. "_name": "",
  1190. "_objFlags": 0,
  1191. "node": {
  1192. "__id__": 31
  1193. },
  1194. "_enabled": true,
  1195. "transition": 0,
  1196. "pressedColor": {
  1197. "__type__": "cc.Color",
  1198. "r": 211,
  1199. "g": 211,
  1200. "b": 211,
  1201. "a": 255
  1202. },
  1203. "hoverColor": {
  1204. "__type__": "cc.Color",
  1205. "r": 255,
  1206. "g": 255,
  1207. "b": 255,
  1208. "a": 255
  1209. },
  1210. "duration": 0.1,
  1211. "zoomScale": 1.2,
  1212. "clickEvents": [
  1213. {
  1214. "__id__": 37
  1215. }
  1216. ],
  1217. "_N$interactable": true,
  1218. "_N$enableAutoGrayEffect": false,
  1219. "_N$normalColor": {
  1220. "__type__": "cc.Color",
  1221. "r": 214,
  1222. "g": 214,
  1223. "b": 214,
  1224. "a": 255
  1225. },
  1226. "_N$disabledColor": {
  1227. "__type__": "cc.Color",
  1228. "r": 124,
  1229. "g": 124,
  1230. "b": 124,
  1231. "a": 255
  1232. },
  1233. "_N$normalSprite": null,
  1234. "_N$pressedSprite": null,
  1235. "pressedSprite": null,
  1236. "_N$hoverSprite": null,
  1237. "hoverSprite": null,
  1238. "_N$disabledSprite": null,
  1239. "_N$target": {
  1240. "__id__": 31
  1241. }
  1242. },
  1243. {
  1244. "__type__": "cc.ClickEvent",
  1245. "target": {
  1246. "__id__": 1
  1247. },
  1248. "component": "RankPage",
  1249. "handler": "artistTabSelected",
  1250. "customEventData": ""
  1251. },
  1252. {
  1253. "__type__": "cc.PrefabInfo",
  1254. "root": {
  1255. "__id__": 1
  1256. },
  1257. "asset": {
  1258. "__uuid__": "6a4f3ae2-1f9e-448c-bb80-e16eed3312fd"
  1259. },
  1260. "fileId": "18RbyONFJD9oWrSQirm1Zt",
  1261. "sync": false
  1262. },
  1263. {
  1264. "__type__": "cc.Node",
  1265. "_name": "top_divider",
  1266. "_objFlags": 0,
  1267. "_parent": {
  1268. "__id__": 6
  1269. },
  1270. "_children": [
  1271. {
  1272. "__id__": 40
  1273. }
  1274. ],
  1275. "_tag": -1,
  1276. "_active": true,
  1277. "_components": [
  1278. {
  1279. "__id__": 51
  1280. }
  1281. ],
  1282. "_prefab": {
  1283. "__id__": 52
  1284. },
  1285. "_id": "",
  1286. "_opacity": 255,
  1287. "_color": {
  1288. "__type__": "cc.Color",
  1289. "r": 255,
  1290. "g": 255,
  1291. "b": 255,
  1292. "a": 255
  1293. },
  1294. "_cascadeOpacityEnabled": true,
  1295. "_anchorPoint": {
  1296. "__type__": "cc.Vec2",
  1297. "x": 0.5,
  1298. "y": 0.5
  1299. },
  1300. "_contentSize": {
  1301. "__type__": "cc.Size",
  1302. "width": 670,
  1303. "height": 30
  1304. },
  1305. "_rotationX": 0,
  1306. "_rotationY": 0,
  1307. "_scaleX": 1,
  1308. "_scaleY": 1,
  1309. "_position": {
  1310. "__type__": "cc.Vec2",
  1311. "x": 0,
  1312. "y": 330
  1313. },
  1314. "_skewX": 0,
  1315. "_skewY": 0,
  1316. "_localZOrder": 0,
  1317. "_globalZOrder": 0,
  1318. "_opacityModifyRGB": false,
  1319. "groupIndex": 0
  1320. },
  1321. {
  1322. "__type__": "cc.Node",
  1323. "_name": "indicator",
  1324. "_objFlags": 0,
  1325. "_parent": {
  1326. "__id__": 39
  1327. },
  1328. "_children": [
  1329. {
  1330. "__id__": 41
  1331. },
  1332. {
  1333. "__id__": 44
  1334. },
  1335. {
  1336. "__id__": 47
  1337. }
  1338. ],
  1339. "_tag": -1,
  1340. "_active": true,
  1341. "_components": [],
  1342. "_prefab": {
  1343. "__id__": 50
  1344. },
  1345. "_id": "",
  1346. "_opacity": 255,
  1347. "_color": {
  1348. "__type__": "cc.Color",
  1349. "r": 255,
  1350. "g": 255,
  1351. "b": 255,
  1352. "a": 255
  1353. },
  1354. "_cascadeOpacityEnabled": true,
  1355. "_anchorPoint": {
  1356. "__type__": "cc.Vec2",
  1357. "x": 0.5,
  1358. "y": 0.5
  1359. },
  1360. "_contentSize": {
  1361. "__type__": "cc.Size",
  1362. "width": 0,
  1363. "height": 0
  1364. },
  1365. "_rotationX": 0,
  1366. "_rotationY": 0,
  1367. "_scaleX": 1,
  1368. "_scaleY": 1,
  1369. "_position": {
  1370. "__type__": "cc.Vec2",
  1371. "x": -140,
  1372. "y": 0
  1373. },
  1374. "_skewX": 0,
  1375. "_skewY": 0,
  1376. "_localZOrder": 0,
  1377. "_globalZOrder": 0,
  1378. "_opacityModifyRGB": false,
  1379. "groupIndex": 0
  1380. },
  1381. {
  1382. "__type__": "cc.Node",
  1383. "_name": "divider_arrow",
  1384. "_objFlags": 0,
  1385. "_parent": {
  1386. "__id__": 40
  1387. },
  1388. "_children": [],
  1389. "_tag": -1,
  1390. "_active": true,
  1391. "_components": [
  1392. {
  1393. "__id__": 42
  1394. }
  1395. ],
  1396. "_prefab": {
  1397. "__id__": 43
  1398. },
  1399. "_id": "",
  1400. "_opacity": 255,
  1401. "_color": {
  1402. "__type__": "cc.Color",
  1403. "r": 255,
  1404. "g": 255,
  1405. "b": 255,
  1406. "a": 255
  1407. },
  1408. "_cascadeOpacityEnabled": true,
  1409. "_anchorPoint": {
  1410. "__type__": "cc.Vec2",
  1411. "x": 0.5,
  1412. "y": 0.5
  1413. },
  1414. "_contentSize": {
  1415. "__type__": "cc.Size",
  1416. "width": 50,
  1417. "height": 20
  1418. },
  1419. "_rotationX": 0,
  1420. "_rotationY": 0,
  1421. "_scaleX": 1,
  1422. "_scaleY": 1,
  1423. "_position": {
  1424. "__type__": "cc.Vec2",
  1425. "x": 0,
  1426. "y": 0
  1427. },
  1428. "_skewX": 0,
  1429. "_skewY": 0,
  1430. "_localZOrder": 0,
  1431. "_globalZOrder": 0,
  1432. "_opacityModifyRGB": false,
  1433. "groupIndex": 0
  1434. },
  1435. {
  1436. "__type__": "cc.Sprite",
  1437. "_name": "",
  1438. "_objFlags": 0,
  1439. "node": {
  1440. "__id__": 41
  1441. },
  1442. "_enabled": true,
  1443. "_spriteFrame": {
  1444. "__uuid__": "0a6072dd-0eb1-49c6-a7eb-ab6b96e2b5b7"
  1445. },
  1446. "_type": 0,
  1447. "_sizeMode": 1,
  1448. "_fillType": 0,
  1449. "_fillCenter": {
  1450. "__type__": "cc.Vec2",
  1451. "x": 0,
  1452. "y": 0
  1453. },
  1454. "_fillStart": 0,
  1455. "_fillRange": 0,
  1456. "_isTrimmedMode": true,
  1457. "_srcBlendFactor": 770,
  1458. "_dstBlendFactor": 771,
  1459. "_atlas": null
  1460. },
  1461. {
  1462. "__type__": "cc.PrefabInfo",
  1463. "root": {
  1464. "__id__": 1
  1465. },
  1466. "asset": {
  1467. "__uuid__": "6a4f3ae2-1f9e-448c-bb80-e16eed3312fd"
  1468. },
  1469. "fileId": "b5rDn1xnVDZKLCUn63YlZs",
  1470. "sync": false
  1471. },
  1472. {
  1473. "__type__": "cc.Node",
  1474. "_name": "divier_line_left",
  1475. "_objFlags": 0,
  1476. "_parent": {
  1477. "__id__": 40
  1478. },
  1479. "_children": [],
  1480. "_tag": -1,
  1481. "_active": true,
  1482. "_components": [
  1483. {
  1484. "__id__": 45
  1485. }
  1486. ],
  1487. "_prefab": {
  1488. "__id__": 46
  1489. },
  1490. "_id": "",
  1491. "_opacity": 255,
  1492. "_color": {
  1493. "__type__": "cc.Color",
  1494. "r": 255,
  1495. "g": 255,
  1496. "b": 255,
  1497. "a": 255
  1498. },
  1499. "_cascadeOpacityEnabled": true,
  1500. "_anchorPoint": {
  1501. "__type__": "cc.Vec2",
  1502. "x": 1,
  1503. "y": 0.5
  1504. },
  1505. "_contentSize": {
  1506. "__type__": "cc.Size",
  1507. "width": 700,
  1508. "height": 2
  1509. },
  1510. "_rotationX": 0,
  1511. "_rotationY": 0,
  1512. "_scaleX": 1,
  1513. "_scaleY": 1,
  1514. "_position": {
  1515. "__type__": "cc.Vec2",
  1516. "x": -30,
  1517. "y": 9
  1518. },
  1519. "_skewX": 0,
  1520. "_skewY": 0,
  1521. "_localZOrder": 0,
  1522. "_globalZOrder": 0,
  1523. "_opacityModifyRGB": false,
  1524. "groupIndex": 0
  1525. },
  1526. {
  1527. "__type__": "cc.Sprite",
  1528. "_name": "",
  1529. "_objFlags": 0,
  1530. "node": {
  1531. "__id__": 44
  1532. },
  1533. "_enabled": true,
  1534. "_spriteFrame": {
  1535. "__uuid__": "f765aa9a-5fe5-4215-9b30-c52d671f63ef"
  1536. },
  1537. "_type": 2,
  1538. "_sizeMode": 0,
  1539. "_fillType": 0,
  1540. "_fillCenter": {
  1541. "__type__": "cc.Vec2",
  1542. "x": 0,
  1543. "y": 0
  1544. },
  1545. "_fillStart": 0,
  1546. "_fillRange": 0,
  1547. "_isTrimmedMode": true,
  1548. "_srcBlendFactor": 770,
  1549. "_dstBlendFactor": 771,
  1550. "_atlas": null
  1551. },
  1552. {
  1553. "__type__": "cc.PrefabInfo",
  1554. "root": {
  1555. "__id__": 1
  1556. },
  1557. "asset": {
  1558. "__uuid__": "6a4f3ae2-1f9e-448c-bb80-e16eed3312fd"
  1559. },
  1560. "fileId": "ceV+vp8JdMKZICYEY7pY9i",
  1561. "sync": false
  1562. },
  1563. {
  1564. "__type__": "cc.Node",
  1565. "_name": "divier_line_right",
  1566. "_objFlags": 0,
  1567. "_parent": {
  1568. "__id__": 40
  1569. },
  1570. "_children": [],
  1571. "_tag": -1,
  1572. "_active": true,
  1573. "_components": [
  1574. {
  1575. "__id__": 48
  1576. }
  1577. ],
  1578. "_prefab": {
  1579. "__id__": 49
  1580. },
  1581. "_id": "",
  1582. "_opacity": 255,
  1583. "_color": {
  1584. "__type__": "cc.Color",
  1585. "r": 255,
  1586. "g": 255,
  1587. "b": 255,
  1588. "a": 255
  1589. },
  1590. "_cascadeOpacityEnabled": true,
  1591. "_anchorPoint": {
  1592. "__type__": "cc.Vec2",
  1593. "x": 0,
  1594. "y": 0.5
  1595. },
  1596. "_contentSize": {
  1597. "__type__": "cc.Size",
  1598. "width": 700,
  1599. "height": 2
  1600. },
  1601. "_rotationX": 0,
  1602. "_rotationY": 0,
  1603. "_scaleX": 1,
  1604. "_scaleY": 1,
  1605. "_position": {
  1606. "__type__": "cc.Vec2",
  1607. "x": 31,
  1608. "y": 9
  1609. },
  1610. "_skewX": 700,
  1611. "_skewY": 0,
  1612. "_localZOrder": 0,
  1613. "_globalZOrder": 0,
  1614. "_opacityModifyRGB": false,
  1615. "groupIndex": 0
  1616. },
  1617. {
  1618. "__type__": "cc.Sprite",
  1619. "_name": "",
  1620. "_objFlags": 0,
  1621. "node": {
  1622. "__id__": 47
  1623. },
  1624. "_enabled": true,
  1625. "_spriteFrame": {
  1626. "__uuid__": "f765aa9a-5fe5-4215-9b30-c52d671f63ef"
  1627. },
  1628. "_type": 2,
  1629. "_sizeMode": 0,
  1630. "_fillType": 0,
  1631. "_fillCenter": {
  1632. "__type__": "cc.Vec2",
  1633. "x": 0,
  1634. "y": 0
  1635. },
  1636. "_fillStart": 0,
  1637. "_fillRange": 0,
  1638. "_isTrimmedMode": true,
  1639. "_srcBlendFactor": 770,
  1640. "_dstBlendFactor": 771,
  1641. "_atlas": null
  1642. },
  1643. {
  1644. "__type__": "cc.PrefabInfo",
  1645. "root": {
  1646. "__id__": 1
  1647. },
  1648. "asset": {
  1649. "__uuid__": "6a4f3ae2-1f9e-448c-bb80-e16eed3312fd"
  1650. },
  1651. "fileId": "1d1DX7mddOGqeC86gFMtrw",
  1652. "sync": false
  1653. },
  1654. {
  1655. "__type__": "cc.PrefabInfo",
  1656. "root": {
  1657. "__id__": 1
  1658. },
  1659. "asset": {
  1660. "__uuid__": "6a4f3ae2-1f9e-448c-bb80-e16eed3312fd"
  1661. },
  1662. "fileId": "3b1h4s/kdPl6ARkq7+0Kf7",
  1663. "sync": false
  1664. },
  1665. {
  1666. "__type__": "cc.Mask",
  1667. "_name": "",
  1668. "_objFlags": 0,
  1669. "node": {
  1670. "__id__": 39
  1671. },
  1672. "_enabled": true,
  1673. "_type": 0,
  1674. "_segements": 64,
  1675. "_N$spriteFrame": null,
  1676. "_N$alphaThreshold": 1,
  1677. "_N$inverted": false
  1678. },
  1679. {
  1680. "__type__": "cc.PrefabInfo",
  1681. "root": {
  1682. "__id__": 1
  1683. },
  1684. "asset": {
  1685. "__uuid__": "6a4f3ae2-1f9e-448c-bb80-e16eed3312fd"
  1686. },
  1687. "fileId": "16xLNwBEtE0IGaew96W445",
  1688. "sync": false
  1689. },
  1690. {
  1691. "__type__": "cc.Node",
  1692. "_name": "rank_listview",
  1693. "_objFlags": 0,
  1694. "_parent": {
  1695. "__id__": 6
  1696. },
  1697. "_children": [
  1698. {
  1699. "__id__": 54
  1700. },
  1701. {
  1702. "__id__": 59
  1703. }
  1704. ],
  1705. "_tag": -1,
  1706. "_active": true,
  1707. "_components": [
  1708. {
  1709. "__id__": 62
  1710. },
  1711. {
  1712. "__id__": 63
  1713. }
  1714. ],
  1715. "_prefab": {
  1716. "__id__": 109
  1717. },
  1718. "_id": "",
  1719. "_opacity": 255,
  1720. "_color": {
  1721. "__type__": "cc.Color",
  1722. "r": 255,
  1723. "g": 255,
  1724. "b": 255,
  1725. "a": 255
  1726. },
  1727. "_cascadeOpacityEnabled": true,
  1728. "_anchorPoint": {
  1729. "__type__": "cc.Vec2",
  1730. "x": 0.5,
  1731. "y": 0.5
  1732. },
  1733. "_contentSize": {
  1734. "__type__": "cc.Size",
  1735. "width": 700,
  1736. "height": 700
  1737. },
  1738. "_rotationX": 0,
  1739. "_rotationY": 0,
  1740. "_scaleX": 1,
  1741. "_scaleY": 1,
  1742. "_position": {
  1743. "__type__": "cc.Vec2",
  1744. "x": 0,
  1745. "y": -49
  1746. },
  1747. "_skewX": 0,
  1748. "_skewY": 0,
  1749. "_localZOrder": 0,
  1750. "_globalZOrder": 0,
  1751. "_opacityModifyRGB": false,
  1752. "groupIndex": 0
  1753. },
  1754. {
  1755. "__type__": "cc.Node",
  1756. "_name": "view",
  1757. "_objFlags": 0,
  1758. "_parent": {
  1759. "__id__": 53
  1760. },
  1761. "_children": [
  1762. {
  1763. "__id__": 55
  1764. }
  1765. ],
  1766. "_tag": -1,
  1767. "_active": true,
  1768. "_components": [
  1769. {
  1770. "__id__": 57
  1771. }
  1772. ],
  1773. "_prefab": {
  1774. "__id__": 58
  1775. },
  1776. "_id": "",
  1777. "_opacity": 255,
  1778. "_color": {
  1779. "__type__": "cc.Color",
  1780. "r": 255,
  1781. "g": 255,
  1782. "b": 255,
  1783. "a": 255
  1784. },
  1785. "_cascadeOpacityEnabled": true,
  1786. "_anchorPoint": {
  1787. "__type__": "cc.Vec2",
  1788. "x": 0.5,
  1789. "y": 0.5
  1790. },
  1791. "_contentSize": {
  1792. "__type__": "cc.Size",
  1793. "width": 700,
  1794. "height": 700
  1795. },
  1796. "_rotationX": 0,
  1797. "_rotationY": 0,
  1798. "_scaleX": 1,
  1799. "_scaleY": 1,
  1800. "_position": {
  1801. "__type__": "cc.Vec2",
  1802. "x": 0,
  1803. "y": 0
  1804. },
  1805. "_skewX": 0,
  1806. "_skewY": 0,
  1807. "_localZOrder": 0,
  1808. "_globalZOrder": 0,
  1809. "_opacityModifyRGB": false,
  1810. "groupIndex": 0
  1811. },
  1812. {
  1813. "__type__": "cc.Node",
  1814. "_name": "content",
  1815. "_objFlags": 0,
  1816. "_parent": {
  1817. "__id__": 54
  1818. },
  1819. "_children": [],
  1820. "_tag": -1,
  1821. "_active": true,
  1822. "_components": [],
  1823. "_prefab": {
  1824. "__id__": 56
  1825. },
  1826. "_id": "",
  1827. "_opacity": 255,
  1828. "_color": {
  1829. "__type__": "cc.Color",
  1830. "r": 255,
  1831. "g": 255,
  1832. "b": 255,
  1833. "a": 255
  1834. },
  1835. "_cascadeOpacityEnabled": true,
  1836. "_anchorPoint": {
  1837. "__type__": "cc.Vec2",
  1838. "x": 0.5,
  1839. "y": 1
  1840. },
  1841. "_contentSize": {
  1842. "__type__": "cc.Size",
  1843. "width": 700,
  1844. "height": 400
  1845. },
  1846. "_rotationX": 0,
  1847. "_rotationY": 0,
  1848. "_scaleX": 1,
  1849. "_scaleY": 1,
  1850. "_position": {
  1851. "__type__": "cc.Vec2",
  1852. "x": 0,
  1853. "y": 350
  1854. },
  1855. "_skewX": 0,
  1856. "_skewY": 0,
  1857. "_localZOrder": 0,
  1858. "_globalZOrder": 0,
  1859. "_opacityModifyRGB": false,
  1860. "groupIndex": 0
  1861. },
  1862. {
  1863. "__type__": "cc.PrefabInfo",
  1864. "root": {
  1865. "__id__": 1
  1866. },
  1867. "asset": {
  1868. "__uuid__": "6a4f3ae2-1f9e-448c-bb80-e16eed3312fd"
  1869. },
  1870. "fileId": "70xo6DaDVKdoCQ+CM/vO9v",
  1871. "sync": false
  1872. },
  1873. {
  1874. "__type__": "cc.Mask",
  1875. "_name": "",
  1876. "_objFlags": 0,
  1877. "node": {
  1878. "__id__": 54
  1879. },
  1880. "_enabled": true,
  1881. "_type": 0,
  1882. "_segements": 64,
  1883. "_N$spriteFrame": null,
  1884. "_N$alphaThreshold": 1,
  1885. "_N$inverted": false
  1886. },
  1887. {
  1888. "__type__": "cc.PrefabInfo",
  1889. "root": {
  1890. "__id__": 1
  1891. },
  1892. "asset": {
  1893. "__uuid__": "6a4f3ae2-1f9e-448c-bb80-e16eed3312fd"
  1894. },
  1895. "fileId": "38s/LtFvNNab5btOxAFJYv",
  1896. "sync": false
  1897. },
  1898. {
  1899. "__type__": "cc.Node",
  1900. "_name": "tipLabel",
  1901. "_objFlags": 0,
  1902. "_parent": {
  1903. "__id__": 53
  1904. },
  1905. "_children": [],
  1906. "_tag": -1,
  1907. "_active": true,
  1908. "_components": [
  1909. {
  1910. "__id__": 60
  1911. }
  1912. ],
  1913. "_prefab": {
  1914. "__id__": 61
  1915. },
  1916. "_id": "",
  1917. "_opacity": 255,
  1918. "_color": {
  1919. "__type__": "cc.Color",
  1920. "r": 74,
  1921. "g": 65,
  1922. "b": 58,
  1923. "a": 255
  1924. },
  1925. "_cascadeOpacityEnabled": true,
  1926. "_anchorPoint": {
  1927. "__type__": "cc.Vec2",
  1928. "x": 0.5,
  1929. "y": 0.5
  1930. },
  1931. "_contentSize": {
  1932. "__type__": "cc.Size",
  1933. "width": 550,
  1934. "height": 50
  1935. },
  1936. "_rotationX": 0,
  1937. "_rotationY": 0,
  1938. "_scaleX": 1,
  1939. "_scaleY": 1,
  1940. "_position": {
  1941. "__type__": "cc.Vec2",
  1942. "x": -4.1,
  1943. "y": -7.9
  1944. },
  1945. "_skewX": 0,
  1946. "_skewY": 0,
  1947. "_localZOrder": 0,
  1948. "_globalZOrder": 0,
  1949. "_opacityModifyRGB": false,
  1950. "groupIndex": 0
  1951. },
  1952. {
  1953. "__type__": "cc.Label",
  1954. "_name": "",
  1955. "_objFlags": 0,
  1956. "node": {
  1957. "__id__": 59
  1958. },
  1959. "_enabled": true,
  1960. "_useOriginalSize": false,
  1961. "_actualFontSize": 40,
  1962. "_fontSize": 40,
  1963. "_lineHeight": 50,
  1964. "_enableWrapText": true,
  1965. "_N$file": null,
  1966. "_isSystemFontUsed": true,
  1967. "_spacingX": 0,
  1968. "_N$string": "加载中...",
  1969. "_N$horizontalAlign": 1,
  1970. "_N$verticalAlign": 0,
  1971. "_N$fontFamily": "Arial",
  1972. "_N$overflow": 3
  1973. },
  1974. {
  1975. "__type__": "cc.PrefabInfo",
  1976. "root": {
  1977. "__id__": 1
  1978. },
  1979. "asset": {
  1980. "__uuid__": "6a4f3ae2-1f9e-448c-bb80-e16eed3312fd"
  1981. },
  1982. "fileId": "08+prTHsFM87p7bKEFjNFA",
  1983. "sync": false
  1984. },
  1985. {
  1986. "__type__": "cc.ScrollView",
  1987. "_name": "",
  1988. "_objFlags": 0,
  1989. "node": {
  1990. "__id__": 53
  1991. },
  1992. "_enabled": true,
  1993. "content": {
  1994. "__id__": 55
  1995. },
  1996. "horizontal": false,
  1997. "vertical": true,
  1998. "inertia": true,
  1999. "brake": 0.75,
  2000. "elastic": true,
  2001. "bounceDuration": 0.23,
  2002. "scrollEvents": [],
  2003. "cancelInnerEvents": true,
  2004. "_N$horizontalScrollBar": null,
  2005. "_N$verticalScrollBar": null
  2006. },
  2007. {
  2008. "__type__": "ff926xOEz9NQpeEuLvnvCBw",
  2009. "_name": "",
  2010. "_objFlags": 0,
  2011. "node": {
  2012. "__id__": 53
  2013. },
  2014. "_enabled": true,
  2015. "scrollView": {
  2016. "__id__": 62
  2017. },
  2018. "content": {
  2019. "__id__": 55
  2020. },
  2021. "tipLabel": {
  2022. "__id__": 60
  2023. },
  2024. "item": {
  2025. "__id__": 64
  2026. },
  2027. "itemScriptName": "RankItem"
  2028. },
  2029. {
  2030. "__type__": "cc.Node",
  2031. "_name": "my_item",
  2032. "_objFlags": 0,
  2033. "_parent": {
  2034. "__id__": 6
  2035. },
  2036. "_children": [
  2037. {
  2038. "__id__": 65
  2039. },
  2040. {
  2041. "__id__": 68
  2042. },
  2043. {
  2044. "__id__": 71
  2045. },
  2046. {
  2047. "__id__": 74
  2048. },
  2049. {
  2050. "__id__": 77
  2051. },
  2052. {
  2053. "__id__": 83
  2054. },
  2055. {
  2056. "__id__": 86
  2057. },
  2058. {
  2059. "__id__": 90
  2060. },
  2061. {
  2062. "__id__": 97
  2063. },
  2064. {
  2065. "__id__": 100
  2066. },
  2067. {
  2068. "__id__": 103
  2069. }
  2070. ],
  2071. "_tag": -1,
  2072. "_active": true,
  2073. "_components": [
  2074. {
  2075. "__id__": 106
  2076. },
  2077. {
  2078. "__id__": 107
  2079. }
  2080. ],
  2081. "_prefab": {
  2082. "__id__": 108
  2083. },
  2084. "_id": "",
  2085. "_opacity": 255,
  2086. "_color": {
  2087. "__type__": "cc.Color",
  2088. "r": 255,
  2089. "g": 255,
  2090. "b": 255,
  2091. "a": 255
  2092. },
  2093. "_cascadeOpacityEnabled": true,
  2094. "_anchorPoint": {
  2095. "__type__": "cc.Vec2",
  2096. "x": 0.5,
  2097. "y": 0.5
  2098. },
  2099. "_contentSize": {
  2100. "__type__": "cc.Size",
  2101. "width": 680,
  2102. "height": 130
  2103. },
  2104. "_rotationX": 0,
  2105. "_rotationY": 0,
  2106. "_scaleX": 1,
  2107. "_scaleY": 1,
  2108. "_position": {
  2109. "__type__": "cc.Vec2",
  2110. "x": 0,
  2111. "y": -496.4
  2112. },
  2113. "_skewX": 0,
  2114. "_skewY": 0,
  2115. "_localZOrder": 0,
  2116. "_globalZOrder": 0,
  2117. "_opacityModifyRGB": false,
  2118. "groupIndex": 0
  2119. },
  2120. {
  2121. "__type__": "cc.Node",
  2122. "_name": "avatar_sprite",
  2123. "_objFlags": 0,
  2124. "_parent": {
  2125. "__id__": 64
  2126. },
  2127. "_children": [],
  2128. "_tag": -1,
  2129. "_active": true,
  2130. "_components": [
  2131. {
  2132. "__id__": 66
  2133. }
  2134. ],
  2135. "_prefab": {
  2136. "__id__": 67
  2137. },
  2138. "_id": "",
  2139. "_opacity": 255,
  2140. "_color": {
  2141. "__type__": "cc.Color",
  2142. "r": 255,
  2143. "g": 255,
  2144. "b": 255,
  2145. "a": 255
  2146. },
  2147. "_cascadeOpacityEnabled": true,
  2148. "_anchorPoint": {
  2149. "__type__": "cc.Vec2",
  2150. "x": 0.5,
  2151. "y": 0.5
  2152. },
  2153. "_contentSize": {
  2154. "__type__": "cc.Size",
  2155. "width": 94,
  2156. "height": 94
  2157. },
  2158. "_rotationX": 0,
  2159. "_rotationY": 0,
  2160. "_scaleX": 1,
  2161. "_scaleY": 1,
  2162. "_position": {
  2163. "__type__": "cc.Vec2",
  2164. "x": -150,
  2165. "y": 0
  2166. },
  2167. "_skewX": 0,
  2168. "_skewY": 0,
  2169. "_localZOrder": 0,
  2170. "_globalZOrder": 0,
  2171. "_opacityModifyRGB": false,
  2172. "groupIndex": 0
  2173. },
  2174. {
  2175. "__type__": "cc.Sprite",
  2176. "_name": "",
  2177. "_objFlags": 0,
  2178. "node": {
  2179. "__id__": 65
  2180. },
  2181. "_enabled": true,
  2182. "_spriteFrame": {
  2183. "__uuid__": "8cdb44ac-a3f6-449f-b354-7cd48cf84061"
  2184. },
  2185. "_type": 0,
  2186. "_sizeMode": 0,
  2187. "_fillType": 0,
  2188. "_fillCenter": {
  2189. "__type__": "cc.Vec2",
  2190. "x": 0,
  2191. "y": 0
  2192. },
  2193. "_fillStart": 0,
  2194. "_fillRange": 0,
  2195. "_isTrimmedMode": true,
  2196. "_srcBlendFactor": 770,
  2197. "_dstBlendFactor": 771,
  2198. "_atlas": null
  2199. },
  2200. {
  2201. "__type__": "cc.PrefabInfo",
  2202. "root": {
  2203. "__id__": 1
  2204. },
  2205. "asset": {
  2206. "__uuid__": "6a4f3ae2-1f9e-448c-bb80-e16eed3312fd"
  2207. },
  2208. "fileId": "5fWJfo78RBDKXmY4Fo3xAm",
  2209. "sync": false
  2210. },
  2211. {
  2212. "__type__": "cc.Node",
  2213. "_name": "avatar_border",
  2214. "_objFlags": 0,
  2215. "_parent": {
  2216. "__id__": 64
  2217. },
  2218. "_children": [],
  2219. "_tag": -1,
  2220. "_active": true,
  2221. "_components": [
  2222. {
  2223. "__id__": 69
  2224. }
  2225. ],
  2226. "_prefab": {
  2227. "__id__": 70
  2228. },
  2229. "_id": "",
  2230. "_opacity": 255,
  2231. "_color": {
  2232. "__type__": "cc.Color",
  2233. "r": 255,
  2234. "g": 255,
  2235. "b": 255,
  2236. "a": 255
  2237. },
  2238. "_cascadeOpacityEnabled": true,
  2239. "_anchorPoint": {
  2240. "__type__": "cc.Vec2",
  2241. "x": 0.5,
  2242. "y": 0.5
  2243. },
  2244. "_contentSize": {
  2245. "__type__": "cc.Size",
  2246. "width": 94,
  2247. "height": 94
  2248. },
  2249. "_rotationX": 0,
  2250. "_rotationY": 0,
  2251. "_scaleX": 1,
  2252. "_scaleY": 1,
  2253. "_position": {
  2254. "__type__": "cc.Vec2",
  2255. "x": -150,
  2256. "y": 0
  2257. },
  2258. "_skewX": 0,
  2259. "_skewY": 0,
  2260. "_localZOrder": 0,
  2261. "_globalZOrder": 0,
  2262. "_opacityModifyRGB": false,
  2263. "groupIndex": 0
  2264. },
  2265. {
  2266. "__type__": "cc.Sprite",
  2267. "_name": "",
  2268. "_objFlags": 0,
  2269. "node": {
  2270. "__id__": 68
  2271. },
  2272. "_enabled": true,
  2273. "_spriteFrame": {
  2274. "__uuid__": "06a4cfc4-a5ce-41d5-81a7-d7df9144e13e"
  2275. },
  2276. "_type": 0,
  2277. "_sizeMode": 1,
  2278. "_fillType": 0,
  2279. "_fillCenter": {
  2280. "__type__": "cc.Vec2",
  2281. "x": 0,
  2282. "y": 0
  2283. },
  2284. "_fillStart": 0,
  2285. "_fillRange": 0,
  2286. "_isTrimmedMode": true,
  2287. "_srcBlendFactor": 770,
  2288. "_dstBlendFactor": 771,
  2289. "_atlas": null
  2290. },
  2291. {
  2292. "__type__": "cc.PrefabInfo",
  2293. "root": {
  2294. "__id__": 1
  2295. },
  2296. "asset": {
  2297. "__uuid__": "6a4f3ae2-1f9e-448c-bb80-e16eed3312fd"
  2298. },
  2299. "fileId": "0cro6e8JJAeI+H225wN33d",
  2300. "sync": false
  2301. },
  2302. {
  2303. "__type__": "cc.Node",
  2304. "_name": "rank_icon",
  2305. "_objFlags": 0,
  2306. "_parent": {
  2307. "__id__": 64
  2308. },
  2309. "_children": [],
  2310. "_tag": -1,
  2311. "_active": true,
  2312. "_components": [
  2313. {
  2314. "__id__": 72
  2315. }
  2316. ],
  2317. "_prefab": {
  2318. "__id__": 73
  2319. },
  2320. "_id": "",
  2321. "_opacity": 255,
  2322. "_color": {
  2323. "__type__": "cc.Color",
  2324. "r": 255,
  2325. "g": 255,
  2326. "b": 255,
  2327. "a": 255
  2328. },
  2329. "_cascadeOpacityEnabled": true,
  2330. "_anchorPoint": {
  2331. "__type__": "cc.Vec2",
  2332. "x": 0.5,
  2333. "y": 0.5
  2334. },
  2335. "_contentSize": {
  2336. "__type__": "cc.Size",
  2337. "width": 66,
  2338. "height": 68
  2339. },
  2340. "_rotationX": 0,
  2341. "_rotationY": 0,
  2342. "_scaleX": 1,
  2343. "_scaleY": 1,
  2344. "_position": {
  2345. "__type__": "cc.Vec2",
  2346. "x": -266.4,
  2347. "y": 0
  2348. },
  2349. "_skewX": 0,
  2350. "_skewY": 0,
  2351. "_localZOrder": 0,
  2352. "_globalZOrder": 0,
  2353. "_opacityModifyRGB": false,
  2354. "groupIndex": 0
  2355. },
  2356. {
  2357. "__type__": "cc.Sprite",
  2358. "_name": "",
  2359. "_objFlags": 0,
  2360. "node": {
  2361. "__id__": 71
  2362. },
  2363. "_enabled": true,
  2364. "_spriteFrame": {
  2365. "__uuid__": "ba87c6a1-4c9a-441d-ba39-a53661e309e0"
  2366. },
  2367. "_type": 0,
  2368. "_sizeMode": 1,
  2369. "_fillType": 0,
  2370. "_fillCenter": {
  2371. "__type__": "cc.Vec2",
  2372. "x": 0,
  2373. "y": 0
  2374. },
  2375. "_fillStart": 0,
  2376. "_fillRange": 0,
  2377. "_isTrimmedMode": true,
  2378. "_srcBlendFactor": 770,
  2379. "_dstBlendFactor": 771,
  2380. "_atlas": null
  2381. },
  2382. {
  2383. "__type__": "cc.PrefabInfo",
  2384. "root": {
  2385. "__id__": 1
  2386. },
  2387. "asset": {
  2388. "__uuid__": "6a4f3ae2-1f9e-448c-bb80-e16eed3312fd"
  2389. },
  2390. "fileId": "6bLNnFJmFHrrpfkeO6TAGl",
  2391. "sync": false
  2392. },
  2393. {
  2394. "__type__": "cc.Node",
  2395. "_name": "rankText",
  2396. "_objFlags": 0,
  2397. "_parent": {
  2398. "__id__": 64
  2399. },
  2400. "_children": [],
  2401. "_tag": -1,
  2402. "_active": true,
  2403. "_components": [
  2404. {
  2405. "__id__": 75
  2406. }
  2407. ],
  2408. "_prefab": {
  2409. "__id__": 76
  2410. },
  2411. "_id": "",
  2412. "_opacity": 255,
  2413. "_color": {
  2414. "__type__": "cc.Color",
  2415. "r": 255,
  2416. "g": 255,
  2417. "b": 255,
  2418. "a": 255
  2419. },
  2420. "_cascadeOpacityEnabled": true,
  2421. "_anchorPoint": {
  2422. "__type__": "cc.Vec2",
  2423. "x": 0.5,
  2424. "y": 0.5
  2425. },
  2426. "_contentSize": {
  2427. "__type__": "cc.Size",
  2428. "width": 94,
  2429. "height": 40
  2430. },
  2431. "_rotationX": 0,
  2432. "_rotationY": 0,
  2433. "_scaleX": 1,
  2434. "_scaleY": 1,
  2435. "_position": {
  2436. "__type__": "cc.Vec2",
  2437. "x": -266.3,
  2438. "y": 0
  2439. },
  2440. "_skewX": 0,
  2441. "_skewY": 0,
  2442. "_localZOrder": 0,
  2443. "_globalZOrder": 0,
  2444. "_opacityModifyRGB": false,
  2445. "groupIndex": 0
  2446. },
  2447. {
  2448. "__type__": "cc.RichText",
  2449. "_name": "",
  2450. "_objFlags": 0,
  2451. "node": {
  2452. "__id__": 74
  2453. },
  2454. "_enabled": true,
  2455. "_N$string": "<outline color=#692e0e><b>未上榜</b></outline>",
  2456. "_N$horizontalAlign": 0,
  2457. "_N$fontSize": 30,
  2458. "_N$font": null,
  2459. "_N$maxWidth": 0,
  2460. "_N$lineHeight": 40,
  2461. "_N$imageAtlas": null,
  2462. "_N$handleTouchEvent": true
  2463. },
  2464. {
  2465. "__type__": "cc.PrefabInfo",
  2466. "root": {
  2467. "__id__": 1
  2468. },
  2469. "asset": {
  2470. "__uuid__": "6a4f3ae2-1f9e-448c-bb80-e16eed3312fd"
  2471. },
  2472. "fileId": "a4+pea5lpDPKlzNN3eb3DU",
  2473. "sync": false
  2474. },
  2475. {
  2476. "__type__": "cc.Node",
  2477. "_name": "nameText",
  2478. "_objFlags": 0,
  2479. "_parent": {
  2480. "__id__": 64
  2481. },
  2482. "_children": [
  2483. {
  2484. "__id__": 78
  2485. }
  2486. ],
  2487. "_tag": -1,
  2488. "_active": true,
  2489. "_components": [
  2490. {
  2491. "__id__": 81
  2492. }
  2493. ],
  2494. "_prefab": {
  2495. "__id__": 82
  2496. },
  2497. "_id": "",
  2498. "_opacity": 255,
  2499. "_color": {
  2500. "__type__": "cc.Color",
  2501. "r": 54,
  2502. "g": 46,
  2503. "b": 43,
  2504. "a": 255
  2505. },
  2506. "_cascadeOpacityEnabled": true,
  2507. "_anchorPoint": {
  2508. "__type__": "cc.Vec2",
  2509. "x": 0,
  2510. "y": 0.5
  2511. },
  2512. "_contentSize": {
  2513. "__type__": "cc.Size",
  2514. "width": 96,
  2515. "height": 30
  2516. },
  2517. "_rotationX": 0,
  2518. "_rotationY": 0,
  2519. "_scaleX": 1,
  2520. "_scaleY": 1,
  2521. "_position": {
  2522. "__type__": "cc.Vec2",
  2523. "x": -67.7,
  2524. "y": 0
  2525. },
  2526. "_skewX": 0,
  2527. "_skewY": 0,
  2528. "_localZOrder": 0,
  2529. "_globalZOrder": 0,
  2530. "_opacityModifyRGB": false,
  2531. "groupIndex": 0
  2532. },
  2533. {
  2534. "__type__": "cc.Node",
  2535. "_name": "gender",
  2536. "_objFlags": 0,
  2537. "_parent": {
  2538. "__id__": 77
  2539. },
  2540. "_children": [],
  2541. "_tag": -1,
  2542. "_active": true,
  2543. "_components": [
  2544. {
  2545. "__id__": 79
  2546. }
  2547. ],
  2548. "_prefab": {
  2549. "__id__": 80
  2550. },
  2551. "_id": "",
  2552. "_opacity": 255,
  2553. "_color": {
  2554. "__type__": "cc.Color",
  2555. "r": 255,
  2556. "g": 255,
  2557. "b": 255,
  2558. "a": 255
  2559. },
  2560. "_cascadeOpacityEnabled": true,
  2561. "_anchorPoint": {
  2562. "__type__": "cc.Vec2",
  2563. "x": 0.5,
  2564. "y": 0.5
  2565. },
  2566. "_contentSize": {
  2567. "__type__": "cc.Size",
  2568. "width": 18,
  2569. "height": 26
  2570. },
  2571. "_rotationX": 0,
  2572. "_rotationY": 0,
  2573. "_scaleX": 1,
  2574. "_scaleY": 1,
  2575. "_position": {
  2576. "__type__": "cc.Vec2",
  2577. "x": -13.6,
  2578. "y": 0
  2579. },
  2580. "_skewX": 0,
  2581. "_skewY": 0,
  2582. "_localZOrder": 0,
  2583. "_globalZOrder": 0,
  2584. "_opacityModifyRGB": false,
  2585. "groupIndex": 0
  2586. },
  2587. {
  2588. "__type__": "cc.Sprite",
  2589. "_name": "",
  2590. "_objFlags": 0,
  2591. "node": {
  2592. "__id__": 78
  2593. },
  2594. "_enabled": true,
  2595. "_spriteFrame": null,
  2596. "_type": 0,
  2597. "_sizeMode": 1,
  2598. "_fillType": 0,
  2599. "_fillCenter": {
  2600. "__type__": "cc.Vec2",
  2601. "x": 0,
  2602. "y": 0
  2603. },
  2604. "_fillStart": 0,
  2605. "_fillRange": 0,
  2606. "_isTrimmedMode": true,
  2607. "_srcBlendFactor": 770,
  2608. "_dstBlendFactor": 771,
  2609. "_atlas": null
  2610. },
  2611. {
  2612. "__type__": "cc.PrefabInfo",
  2613. "root": {
  2614. "__id__": 1
  2615. },
  2616. "asset": {
  2617. "__uuid__": "6a4f3ae2-1f9e-448c-bb80-e16eed3312fd"
  2618. },
  2619. "fileId": "82UwBHSJJF56ZuVBqhGeHT",
  2620. "sync": false
  2621. },
  2622. {
  2623. "__type__": "cc.RichText",
  2624. "_name": "",
  2625. "_objFlags": 0,
  2626. "node": {
  2627. "__id__": 77
  2628. },
  2629. "_enabled": true,
  2630. "_N$string": "突突突突",
  2631. "_N$horizontalAlign": 0,
  2632. "_N$fontSize": 24,
  2633. "_N$font": null,
  2634. "_N$maxWidth": 0,
  2635. "_N$lineHeight": 30,
  2636. "_N$imageAtlas": null,
  2637. "_N$handleTouchEvent": true
  2638. },
  2639. {
  2640. "__type__": "cc.PrefabInfo",
  2641. "root": {
  2642. "__id__": 1
  2643. },
  2644. "asset": {
  2645. "__uuid__": "6a4f3ae2-1f9e-448c-bb80-e16eed3312fd"
  2646. },
  2647. "fileId": "06Gr1CgBVBiKgG3wI1/ht8",
  2648. "sync": false
  2649. },
  2650. {
  2651. "__type__": "cc.Node",
  2652. "_name": "level_home_tag_star",
  2653. "_objFlags": 0,
  2654. "_parent": {
  2655. "__id__": 64
  2656. },
  2657. "_children": [],
  2658. "_tag": -1,
  2659. "_active": true,
  2660. "_components": [
  2661. {
  2662. "__id__": 84
  2663. }
  2664. ],
  2665. "_prefab": {
  2666. "__id__": 85
  2667. },
  2668. "_id": "",
  2669. "_opacity": 255,
  2670. "_color": {
  2671. "__type__": "cc.Color",
  2672. "r": 255,
  2673. "g": 255,
  2674. "b": 255,
  2675. "a": 255
  2676. },
  2677. "_cascadeOpacityEnabled": true,
  2678. "_anchorPoint": {
  2679. "__type__": "cc.Vec2",
  2680. "x": 0.5,
  2681. "y": 0.5
  2682. },
  2683. "_contentSize": {
  2684. "__type__": "cc.Size",
  2685. "width": 52,
  2686. "height": 58
  2687. },
  2688. "_rotationX": 0,
  2689. "_rotationY": 0,
  2690. "_scaleX": 1,
  2691. "_scaleY": 1,
  2692. "_position": {
  2693. "__type__": "cc.Vec2",
  2694. "x": 178,
  2695. "y": 0
  2696. },
  2697. "_skewX": 0,
  2698. "_skewY": 0,
  2699. "_localZOrder": 0,
  2700. "_globalZOrder": 0,
  2701. "_opacityModifyRGB": false,
  2702. "groupIndex": 0
  2703. },
  2704. {
  2705. "__type__": "cc.Sprite",
  2706. "_name": "",
  2707. "_objFlags": 0,
  2708. "node": {
  2709. "__id__": 83
  2710. },
  2711. "_enabled": true,
  2712. "_spriteFrame": {
  2713. "__uuid__": "d70fee61-65c6-4d34-a71b-0557eba384b1"
  2714. },
  2715. "_type": 0,
  2716. "_sizeMode": 1,
  2717. "_fillType": 0,
  2718. "_fillCenter": {
  2719. "__type__": "cc.Vec2",
  2720. "x": 0,
  2721. "y": 0
  2722. },
  2723. "_fillStart": 0,
  2724. "_fillRange": 0,
  2725. "_isTrimmedMode": true,
  2726. "_srcBlendFactor": 770,
  2727. "_dstBlendFactor": 771,
  2728. "_atlas": null
  2729. },
  2730. {
  2731. "__type__": "cc.PrefabInfo",
  2732. "root": {
  2733. "__id__": 1
  2734. },
  2735. "asset": {
  2736. "__uuid__": "6a4f3ae2-1f9e-448c-bb80-e16eed3312fd"
  2737. },
  2738. "fileId": "90SkzAjUJAIL8YuDbckhxC",
  2739. "sync": false
  2740. },
  2741. {
  2742. "__type__": "cc.Node",
  2743. "_name": "starCountLabel",
  2744. "_objFlags": 0,
  2745. "_parent": {
  2746. "__id__": 64
  2747. },
  2748. "_children": [],
  2749. "_tag": -1,
  2750. "_active": true,
  2751. "_components": [
  2752. {
  2753. "__id__": 87
  2754. },
  2755. {
  2756. "__id__": 88
  2757. }
  2758. ],
  2759. "_prefab": {
  2760. "__id__": 89
  2761. },
  2762. "_id": "",
  2763. "_opacity": 255,
  2764. "_color": {
  2765. "__type__": "cc.Color",
  2766. "r": 147,
  2767. "g": 76,
  2768. "b": 49,
  2769. "a": 255
  2770. },
  2771. "_cascadeOpacityEnabled": true,
  2772. "_anchorPoint": {
  2773. "__type__": "cc.Vec2",
  2774. "x": 0,
  2775. "y": 0.5
  2776. },
  2777. "_contentSize": {
  2778. "__type__": "cc.Size",
  2779. "width": 40,
  2780. "height": 30
  2781. },
  2782. "_rotationX": 0,
  2783. "_rotationY": 0,
  2784. "_scaleX": 1,
  2785. "_scaleY": 1,
  2786. "_position": {
  2787. "__type__": "cc.Vec2",
  2788. "x": 215.8,
  2789. "y": 0
  2790. },
  2791. "_skewX": 0,
  2792. "_skewY": 0,
  2793. "_localZOrder": 0,
  2794. "_globalZOrder": 0,
  2795. "_opacityModifyRGB": false,
  2796. "groupIndex": 0
  2797. },
  2798. {
  2799. "__type__": "cc.Label",
  2800. "_name": "",
  2801. "_objFlags": 0,
  2802. "node": {
  2803. "__id__": 86
  2804. },
  2805. "_enabled": true,
  2806. "_useOriginalSize": false,
  2807. "_actualFontSize": 24,
  2808. "_fontSize": 24,
  2809. "_lineHeight": 30,
  2810. "_enableWrapText": true,
  2811. "_N$file": null,
  2812. "_isSystemFontUsed": true,
  2813. "_spacingX": 0,
  2814. "_N$string": "123",
  2815. "_N$horizontalAlign": 1,
  2816. "_N$verticalAlign": 1,
  2817. "_N$fontFamily": "Arial",
  2818. "_N$overflow": 0
  2819. },
  2820. {
  2821. "__type__": "cc.LabelOutline",
  2822. "_name": "",
  2823. "_objFlags": 0,
  2824. "node": {
  2825. "__id__": 86
  2826. },
  2827. "_enabled": true,
  2828. "_color": {
  2829. "__type__": "cc.Color",
  2830. "r": 255,
  2831. "g": 255,
  2832. "b": 255,
  2833. "a": 255
  2834. },
  2835. "_width": 2
  2836. },
  2837. {
  2838. "__type__": "cc.PrefabInfo",
  2839. "root": {
  2840. "__id__": 1
  2841. },
  2842. "asset": {
  2843. "__uuid__": "6a4f3ae2-1f9e-448c-bb80-e16eed3312fd"
  2844. },
  2845. "fileId": "76PvO2KDpDCLwDkWNRXWZZ",
  2846. "sync": false
  2847. },
  2848. {
  2849. "__type__": "cc.Node",
  2850. "_name": "jobLevelStar",
  2851. "_objFlags": 0,
  2852. "_parent": {
  2853. "__id__": 64
  2854. },
  2855. "_children": [
  2856. {
  2857. "__id__": 91
  2858. }
  2859. ],
  2860. "_tag": -1,
  2861. "_active": false,
  2862. "_components": [
  2863. {
  2864. "__id__": 95
  2865. }
  2866. ],
  2867. "_prefab": {
  2868. "__id__": 96
  2869. },
  2870. "_id": "",
  2871. "_opacity": 255,
  2872. "_color": {
  2873. "__type__": "cc.Color",
  2874. "r": 255,
  2875. "g": 255,
  2876. "b": 255,
  2877. "a": 255
  2878. },
  2879. "_cascadeOpacityEnabled": true,
  2880. "_anchorPoint": {
  2881. "__type__": "cc.Vec2",
  2882. "x": 0.5,
  2883. "y": 0.5
  2884. },
  2885. "_contentSize": {
  2886. "__type__": "cc.Size",
  2887. "width": 45,
  2888. "height": 42
  2889. },
  2890. "_rotationX": 0,
  2891. "_rotationY": 0,
  2892. "_scaleX": 1,
  2893. "_scaleY": 1,
  2894. "_position": {
  2895. "__type__": "cc.Vec2",
  2896. "x": -67.4,
  2897. "y": -15
  2898. },
  2899. "_skewX": 0,
  2900. "_skewY": 0,
  2901. "_localZOrder": 0,
  2902. "_globalZOrder": 0,
  2903. "_opacityModifyRGB": false,
  2904. "groupIndex": 0
  2905. },
  2906. {
  2907. "__type__": "cc.Node",
  2908. "_name": "New Label",
  2909. "_objFlags": 0,
  2910. "_parent": {
  2911. "__id__": 90
  2912. },
  2913. "_children": [],
  2914. "_tag": -1,
  2915. "_active": false,
  2916. "_components": [
  2917. {
  2918. "__id__": 92
  2919. },
  2920. {
  2921. "__id__": 93
  2922. }
  2923. ],
  2924. "_prefab": {
  2925. "__id__": 94
  2926. },
  2927. "_id": "",
  2928. "_opacity": 255,
  2929. "_color": {
  2930. "__type__": "cc.Color",
  2931. "r": 255,
  2932. "g": 255,
  2933. "b": 255,
  2934. "a": 255
  2935. },
  2936. "_cascadeOpacityEnabled": true,
  2937. "_anchorPoint": {
  2938. "__type__": "cc.Vec2",
  2939. "x": 0.5,
  2940. "y": 0.5
  2941. },
  2942. "_contentSize": {
  2943. "__type__": "cc.Size",
  2944. "width": 11,
  2945. "height": 20
  2946. },
  2947. "_rotationX": 0,
  2948. "_rotationY": 0,
  2949. "_scaleX": 1,
  2950. "_scaleY": 1,
  2951. "_position": {
  2952. "__type__": "cc.Vec2",
  2953. "x": -1.5,
  2954. "y": -2
  2955. },
  2956. "_skewX": 0,
  2957. "_skewY": 0,
  2958. "_localZOrder": 0,
  2959. "_globalZOrder": 0,
  2960. "_opacityModifyRGB": false,
  2961. "groupIndex": 0
  2962. },
  2963. {
  2964. "__type__": "cc.Label",
  2965. "_name": "",
  2966. "_objFlags": 0,
  2967. "node": {
  2968. "__id__": 91
  2969. },
  2970. "_enabled": true,
  2971. "_useOriginalSize": false,
  2972. "_actualFontSize": 20,
  2973. "_fontSize": 20,
  2974. "_lineHeight": 20,
  2975. "_enableWrapText": true,
  2976. "_N$file": null,
  2977. "_isSystemFontUsed": true,
  2978. "_spacingX": 0,
  2979. "_N$string": "1",
  2980. "_N$horizontalAlign": 1,
  2981. "_N$verticalAlign": 1,
  2982. "_N$fontFamily": "Arial",
  2983. "_N$overflow": 0
  2984. },
  2985. {
  2986. "__type__": "cc.LabelOutline",
  2987. "_name": "",
  2988. "_objFlags": 0,
  2989. "node": {
  2990. "__id__": 91
  2991. },
  2992. "_enabled": true,
  2993. "_color": {
  2994. "__type__": "cc.Color",
  2995. "r": 105,
  2996. "g": 46,
  2997. "b": 14,
  2998. "a": 255
  2999. },
  3000. "_width": 2
  3001. },
  3002. {
  3003. "__type__": "cc.PrefabInfo",
  3004. "root": {
  3005. "__id__": 1
  3006. },
  3007. "asset": {
  3008. "__uuid__": "6a4f3ae2-1f9e-448c-bb80-e16eed3312fd"
  3009. },
  3010. "fileId": "fdrEy8s3dCBowcRUoGCWru",
  3011. "sync": false
  3012. },
  3013. {
  3014. "__type__": "cc.Sprite",
  3015. "_name": "",
  3016. "_objFlags": 0,
  3017. "node": {
  3018. "__id__": 90
  3019. },
  3020. "_enabled": true,
  3021. "_spriteFrame": {
  3022. "__uuid__": "d8cf5900-c692-44ee-8061-f4a6de001a12"
  3023. },
  3024. "_type": 0,
  3025. "_sizeMode": 1,
  3026. "_fillType": 0,
  3027. "_fillCenter": {
  3028. "__type__": "cc.Vec2",
  3029. "x": 0,
  3030. "y": 0
  3031. },
  3032. "_fillStart": 0,
  3033. "_fillRange": 0,
  3034. "_isTrimmedMode": true,
  3035. "_srcBlendFactor": 770,
  3036. "_dstBlendFactor": 771,
  3037. "_atlas": null
  3038. },
  3039. {
  3040. "__type__": "cc.PrefabInfo",
  3041. "root": {
  3042. "__id__": 1
  3043. },
  3044. "asset": {
  3045. "__uuid__": "6a4f3ae2-1f9e-448c-bb80-e16eed3312fd"
  3046. },
  3047. "fileId": "251fqeFjhEUaxFh2zqXMEJ",
  3048. "sync": false
  3049. },
  3050. {
  3051. "__type__": "cc.Node",
  3052. "_name": "jobLevelName",
  3053. "_objFlags": 0,
  3054. "_parent": {
  3055. "__id__": 64
  3056. },
  3057. "_children": [],
  3058. "_tag": -1,
  3059. "_active": false,
  3060. "_components": [
  3061. {
  3062. "__id__": 98
  3063. }
  3064. ],
  3065. "_prefab": {
  3066. "__id__": 99
  3067. },
  3068. "_id": "",
  3069. "_opacity": 255,
  3070. "_color": {
  3071. "__type__": "cc.Color",
  3072. "r": 88,
  3073. "g": 74,
  3074. "b": 71,
  3075. "a": 255
  3076. },
  3077. "_cascadeOpacityEnabled": true,
  3078. "_anchorPoint": {
  3079. "__type__": "cc.Vec2",
  3080. "x": 0,
  3081. "y": 0.5
  3082. },
  3083. "_contentSize": {
  3084. "__type__": "cc.Size",
  3085. "width": 147,
  3086. "height": 30
  3087. },
  3088. "_rotationX": 0,
  3089. "_rotationY": 0,
  3090. "_scaleX": 1,
  3091. "_scaleY": 1,
  3092. "_position": {
  3093. "__type__": "cc.Vec2",
  3094. "x": -37.6,
  3095. "y": -15
  3096. },
  3097. "_skewX": 0,
  3098. "_skewY": 0,
  3099. "_localZOrder": 0,
  3100. "_globalZOrder": 0,
  3101. "_opacityModifyRGB": false,
  3102. "groupIndex": 0
  3103. },
  3104. {
  3105. "__type__": "cc.RichText",
  3106. "_name": "",
  3107. "_objFlags": 0,
  3108. "node": {
  3109. "__id__": 97
  3110. },
  3111. "_enabled": true,
  3112. "_N$string": "<b>国际武林巨星</b>",
  3113. "_N$horizontalAlign": 0,
  3114. "_N$fontSize": 24,
  3115. "_N$font": null,
  3116. "_N$maxWidth": 0,
  3117. "_N$lineHeight": 30,
  3118. "_N$imageAtlas": null,
  3119. "_N$handleTouchEvent": true
  3120. },
  3121. {
  3122. "__type__": "cc.PrefabInfo",
  3123. "root": {
  3124. "__id__": 1
  3125. },
  3126. "asset": {
  3127. "__uuid__": "6a4f3ae2-1f9e-448c-bb80-e16eed3312fd"
  3128. },
  3129. "fileId": "98ijs1kadFxK4NgJLd3c3m",
  3130. "sync": false
  3131. },
  3132. {
  3133. "__type__": "cc.Node",
  3134. "_name": "incomeText",
  3135. "_objFlags": 0,
  3136. "_parent": {
  3137. "__id__": 64
  3138. },
  3139. "_children": [],
  3140. "_tag": -1,
  3141. "_active": true,
  3142. "_components": [
  3143. {
  3144. "__id__": 101
  3145. }
  3146. ],
  3147. "_prefab": {
  3148. "__id__": 102
  3149. },
  3150. "_id": "",
  3151. "_opacity": 255,
  3152. "_color": {
  3153. "__type__": "cc.Color",
  3154. "r": 147,
  3155. "g": 76,
  3156. "b": 49,
  3157. "a": 255
  3158. },
  3159. "_cascadeOpacityEnabled": true,
  3160. "_anchorPoint": {
  3161. "__type__": "cc.Vec2",
  3162. "x": 0,
  3163. "y": 0.5
  3164. },
  3165. "_contentSize": {
  3166. "__type__": "cc.Size",
  3167. "width": 49,
  3168. "height": 30
  3169. },
  3170. "_rotationX": 0,
  3171. "_rotationY": 0,
  3172. "_scaleX": 1,
  3173. "_scaleY": 1,
  3174. "_position": {
  3175. "__type__": "cc.Vec2",
  3176. "x": 149.1,
  3177. "y": 20
  3178. },
  3179. "_skewX": 0,
  3180. "_skewY": 0,
  3181. "_localZOrder": 0,
  3182. "_globalZOrder": 0,
  3183. "_opacityModifyRGB": false,
  3184. "groupIndex": 0
  3185. },
  3186. {
  3187. "__type__": "cc.RichText",
  3188. "_name": "",
  3189. "_objFlags": 0,
  3190. "node": {
  3191. "__id__": 100
  3192. },
  3193. "_enabled": true,
  3194. "_N$string": "<outline color=#ffffff width=2><b>年薪</b></outline>",
  3195. "_N$horizontalAlign": 0,
  3196. "_N$fontSize": 22,
  3197. "_N$font": null,
  3198. "_N$maxWidth": 0,
  3199. "_N$lineHeight": 30,
  3200. "_N$imageAtlas": null,
  3201. "_N$handleTouchEvent": true
  3202. },
  3203. {
  3204. "__type__": "cc.PrefabInfo",
  3205. "root": {
  3206. "__id__": 1
  3207. },
  3208. "asset": {
  3209. "__uuid__": "6a4f3ae2-1f9e-448c-bb80-e16eed3312fd"
  3210. },
  3211. "fileId": "15q2UeGxhJOZv6kAoBLsG7",
  3212. "sync": false
  3213. },
  3214. {
  3215. "__type__": "cc.Node",
  3216. "_name": "incomeNumberText",
  3217. "_objFlags": 0,
  3218. "_parent": {
  3219. "__id__": 64
  3220. },
  3221. "_children": [],
  3222. "_tag": -1,
  3223. "_active": true,
  3224. "_components": [
  3225. {
  3226. "__id__": 104
  3227. }
  3228. ],
  3229. "_prefab": {
  3230. "__id__": 105
  3231. },
  3232. "_id": "",
  3233. "_opacity": 255,
  3234. "_color": {
  3235. "__type__": "cc.Color",
  3236. "r": 147,
  3237. "g": 76,
  3238. "b": 49,
  3239. "a": 255
  3240. },
  3241. "_cascadeOpacityEnabled": true,
  3242. "_anchorPoint": {
  3243. "__type__": "cc.Vec2",
  3244. "x": 0,
  3245. "y": 0.5
  3246. },
  3247. "_contentSize": {
  3248. "__type__": "cc.Size",
  3249. "width": 64,
  3250. "height": 30
  3251. },
  3252. "_rotationX": 0,
  3253. "_rotationY": 0,
  3254. "_scaleX": 1,
  3255. "_scaleY": 1,
  3256. "_position": {
  3257. "__type__": "cc.Vec2",
  3258. "x": 149.1,
  3259. "y": -12.6
  3260. },
  3261. "_skewX": 0,
  3262. "_skewY": 0,
  3263. "_localZOrder": 0,
  3264. "_globalZOrder": 0,
  3265. "_opacityModifyRGB": false,
  3266. "groupIndex": 0
  3267. },
  3268. {
  3269. "__type__": "cc.RichText",
  3270. "_name": "",
  3271. "_objFlags": 0,
  3272. "node": {
  3273. "__id__": 103
  3274. },
  3275. "_enabled": true,
  3276. "_N$string": "<outline color=#ffffff width=2><b>123...</b></outline>",
  3277. "_N$horizontalAlign": 0,
  3278. "_N$fontSize": 24,
  3279. "_N$font": null,
  3280. "_N$maxWidth": 0,
  3281. "_N$lineHeight": 30,
  3282. "_N$imageAtlas": null,
  3283. "_N$handleTouchEvent": true
  3284. },
  3285. {
  3286. "__type__": "cc.PrefabInfo",
  3287. "root": {
  3288. "__id__": 1
  3289. },
  3290. "asset": {
  3291. "__uuid__": "6a4f3ae2-1f9e-448c-bb80-e16eed3312fd"
  3292. },
  3293. "fileId": "683t+8srxGUbFhPWK4xkCf",
  3294. "sync": false
  3295. },
  3296. {
  3297. "__type__": "cc.Sprite",
  3298. "_name": "",
  3299. "_objFlags": 0,
  3300. "node": {
  3301. "__id__": 64
  3302. },
  3303. "_enabled": true,
  3304. "_spriteFrame": {
  3305. "__uuid__": "006f1c83-1f35-4d89-be94-cfbf870f71ec"
  3306. },
  3307. "_type": 1,
  3308. "_sizeMode": 0,
  3309. "_fillType": 0,
  3310. "_fillCenter": {
  3311. "__type__": "cc.Vec2",
  3312. "x": 0,
  3313. "y": 0
  3314. },
  3315. "_fillStart": 0,
  3316. "_fillRange": 0,
  3317. "_isTrimmedMode": true,
  3318. "_srcBlendFactor": 770,
  3319. "_dstBlendFactor": 771,
  3320. "_atlas": null
  3321. },
  3322. {
  3323. "__type__": "3439c0Y45xO2buqZz41TT/k",
  3324. "_name": "",
  3325. "_objFlags": 0,
  3326. "node": {
  3327. "__id__": 64
  3328. },
  3329. "_enabled": true,
  3330. "avatarSprite": {
  3331. "__id__": 66
  3332. },
  3333. "avatarBorderSprite": {
  3334. "__id__": 69
  3335. },
  3336. "rankSprite": {
  3337. "__id__": 72
  3338. },
  3339. "rankText": {
  3340. "__id__": 75
  3341. },
  3342. "nameText": {
  3343. "__id__": 81
  3344. },
  3345. "genderSprite": {
  3346. "__id__": 79
  3347. },
  3348. "starCountLabel": {
  3349. "__id__": 87
  3350. },
  3351. "starNode": {
  3352. "__id__": 83
  3353. },
  3354. "jobLevelStar": {
  3355. "__id__": 90
  3356. },
  3357. "jobLevelLabel": {
  3358. "__id__": 92
  3359. },
  3360. "jobLevelNameText": {
  3361. "__id__": 98
  3362. },
  3363. "incomeText": {
  3364. "__id__": 101
  3365. },
  3366. "incomeNumberText": {
  3367. "__id__": 104
  3368. },
  3369. "bgFrames": [
  3370. {
  3371. "__uuid__": "3593b09b-1c66-470b-82c4-9d7ada8f3ec9"
  3372. },
  3373. {
  3374. "__uuid__": "006f1c83-1f35-4d89-be94-cfbf870f71ec"
  3375. }
  3376. ],
  3377. "borderFrames": [
  3378. {
  3379. "__uuid__": "58412cd4-6a03-4085-9bf9-8a97fba70808"
  3380. },
  3381. {
  3382. "__uuid__": "06a4cfc4-a5ce-41d5-81a7-d7df9144e13e"
  3383. }
  3384. ],
  3385. "rankFrames": [
  3386. {
  3387. "__uuid__": "ba87c6a1-4c9a-441d-ba39-a53661e309e0"
  3388. },
  3389. {
  3390. "__uuid__": "2940cb78-5a63-473e-abba-6adf12cce5d8"
  3391. },
  3392. {
  3393. "__uuid__": "0c708880-c0b1-4ea0-acba-4614d591c311"
  3394. }
  3395. ],
  3396. "genderFrames": [
  3397. {
  3398. "__uuid__": "f35a0f20-5e5f-4a4b-b123-89a2db75b006"
  3399. },
  3400. {
  3401. "__uuid__": "99eb115d-167b-4042-9c60-3f8540ff2c6d"
  3402. }
  3403. ]
  3404. },
  3405. {
  3406. "__type__": "cc.PrefabInfo",
  3407. "root": {
  3408. "__id__": 1
  3409. },
  3410. "asset": {
  3411. "__uuid__": "6a4f3ae2-1f9e-448c-bb80-e16eed3312fd"
  3412. },
  3413. "fileId": "02ORpRnHZLO5ZkG94JEe3i",
  3414. "sync": false
  3415. },
  3416. {
  3417. "__type__": "cc.PrefabInfo",
  3418. "root": {
  3419. "__id__": 1
  3420. },
  3421. "asset": {
  3422. "__uuid__": "6a4f3ae2-1f9e-448c-bb80-e16eed3312fd"
  3423. },
  3424. "fileId": "aaJJV7AyhEEKTPyPju9YmB",
  3425. "sync": false
  3426. },
  3427. {
  3428. "__type__": "cc.Node",
  3429. "_name": "divier_line",
  3430. "_objFlags": 0,
  3431. "_parent": {
  3432. "__id__": 6
  3433. },
  3434. "_children": [],
  3435. "_tag": -1,
  3436. "_active": true,
  3437. "_components": [
  3438. {
  3439. "__id__": 111
  3440. }
  3441. ],
  3442. "_prefab": {
  3443. "__id__": 112
  3444. },
  3445. "_id": "",
  3446. "_opacity": 255,
  3447. "_color": {
  3448. "__type__": "cc.Color",
  3449. "r": 255,
  3450. "g": 255,
  3451. "b": 255,
  3452. "a": 255
  3453. },
  3454. "_cascadeOpacityEnabled": true,
  3455. "_anchorPoint": {
  3456. "__type__": "cc.Vec2",
  3457. "x": 0.5,
  3458. "y": 0.5
  3459. },
  3460. "_contentSize": {
  3461. "__type__": "cc.Size",
  3462. "width": 670,
  3463. "height": 2
  3464. },
  3465. "_rotationX": 0,
  3466. "_rotationY": 0,
  3467. "_scaleX": 1,
  3468. "_scaleY": 1,
  3469. "_position": {
  3470. "__type__": "cc.Vec2",
  3471. "x": 0,
  3472. "y": -423.4
  3473. },
  3474. "_skewX": 0,
  3475. "_skewY": 0,
  3476. "_localZOrder": 0,
  3477. "_globalZOrder": 0,
  3478. "_opacityModifyRGB": false,
  3479. "groupIndex": 0
  3480. },
  3481. {
  3482. "__type__": "cc.Sprite",
  3483. "_name": "",
  3484. "_objFlags": 0,
  3485. "node": {
  3486. "__id__": 110
  3487. },
  3488. "_enabled": true,
  3489. "_spriteFrame": {
  3490. "__uuid__": "f765aa9a-5fe5-4215-9b30-c52d671f63ef"
  3491. },
  3492. "_type": 2,
  3493. "_sizeMode": 0,
  3494. "_fillType": 0,
  3495. "_fillCenter": {
  3496. "__type__": "cc.Vec2",
  3497. "x": 0,
  3498. "y": 0
  3499. },
  3500. "_fillStart": 0,
  3501. "_fillRange": 0,
  3502. "_isTrimmedMode": true,
  3503. "_srcBlendFactor": 770,
  3504. "_dstBlendFactor": 771,
  3505. "_atlas": null
  3506. },
  3507. {
  3508. "__type__": "cc.PrefabInfo",
  3509. "root": {
  3510. "__id__": 1
  3511. },
  3512. "asset": {
  3513. "__uuid__": "6a4f3ae2-1f9e-448c-bb80-e16eed3312fd"
  3514. },
  3515. "fileId": "e3Xluy5SFLBJhZczsmwlYp",
  3516. "sync": false
  3517. },
  3518. {
  3519. "__type__": "cc.Node",
  3520. "_name": "closeButton",
  3521. "_objFlags": 0,
  3522. "_parent": {
  3523. "__id__": 6
  3524. },
  3525. "_children": [],
  3526. "_tag": -1,
  3527. "_active": true,
  3528. "_components": [
  3529. {
  3530. "__id__": 114
  3531. },
  3532. {
  3533. "__id__": 115
  3534. }
  3535. ],
  3536. "_prefab": {
  3537. "__id__": 117
  3538. },
  3539. "_id": "",
  3540. "_opacity": 255,
  3541. "_color": {
  3542. "__type__": "cc.Color",
  3543. "r": 255,
  3544. "g": 255,
  3545. "b": 255,
  3546. "a": 255
  3547. },
  3548. "_cascadeOpacityEnabled": true,
  3549. "_anchorPoint": {
  3550. "__type__": "cc.Vec2",
  3551. "x": 0.5,
  3552. "y": 0.5
  3553. },
  3554. "_contentSize": {
  3555. "__type__": "cc.Size",
  3556. "width": 70,
  3557. "height": 72
  3558. },
  3559. "_rotationX": 0,
  3560. "_rotationY": 0,
  3561. "_scaleX": 1,
  3562. "_scaleY": 1,
  3563. "_position": {
  3564. "__type__": "cc.Vec2",
  3565. "x": 338,
  3566. "y": 481
  3567. },
  3568. "_skewX": 0,
  3569. "_skewY": 0,
  3570. "_localZOrder": 0,
  3571. "_globalZOrder": 0,
  3572. "_opacityModifyRGB": false,
  3573. "groupIndex": 0
  3574. },
  3575. {
  3576. "__type__": "cc.Sprite",
  3577. "_name": "",
  3578. "_objFlags": 0,
  3579. "node": {
  3580. "__id__": 113
  3581. },
  3582. "_enabled": true,
  3583. "_spriteFrame": {
  3584. "__uuid__": "d81639e6-1728-48fa-854b-da4cdcc7709c"
  3585. },
  3586. "_type": 1,
  3587. "_sizeMode": 1,
  3588. "_fillType": 0,
  3589. "_fillCenter": {
  3590. "__type__": "cc.Vec2",
  3591. "x": 0,
  3592. "y": 0
  3593. },
  3594. "_fillStart": 0,
  3595. "_fillRange": 0,
  3596. "_isTrimmedMode": true,
  3597. "_srcBlendFactor": 770,
  3598. "_dstBlendFactor": 771,
  3599. "_atlas": null
  3600. },
  3601. {
  3602. "__type__": "cc.Button",
  3603. "_name": "",
  3604. "_objFlags": 0,
  3605. "node": {
  3606. "__id__": 113
  3607. },
  3608. "_enabled": true,
  3609. "transition": 1,
  3610. "pressedColor": {
  3611. "__type__": "cc.Color",
  3612. "r": 120,
  3613. "g": 120,
  3614. "b": 120,
  3615. "a": 255
  3616. },
  3617. "hoverColor": {
  3618. "__type__": "cc.Color",
  3619. "r": 255,
  3620. "g": 255,
  3621. "b": 255,
  3622. "a": 255
  3623. },
  3624. "duration": 0.1,
  3625. "zoomScale": 1.2,
  3626. "clickEvents": [
  3627. {
  3628. "__id__": 116
  3629. }
  3630. ],
  3631. "_N$interactable": true,
  3632. "_N$enableAutoGrayEffect": false,
  3633. "_N$normalColor": {
  3634. "__type__": "cc.Color",
  3635. "r": 255,
  3636. "g": 255,
  3637. "b": 255,
  3638. "a": 255
  3639. },
  3640. "_N$disabledColor": {
  3641. "__type__": "cc.Color",
  3642. "r": 255,
  3643. "g": 255,
  3644. "b": 255,
  3645. "a": 255
  3646. },
  3647. "_N$normalSprite": null,
  3648. "_N$pressedSprite": null,
  3649. "pressedSprite": null,
  3650. "_N$hoverSprite": null,
  3651. "hoverSprite": null,
  3652. "_N$disabledSprite": null,
  3653. "_N$target": {
  3654. "__id__": 113
  3655. }
  3656. },
  3657. {
  3658. "__type__": "cc.ClickEvent",
  3659. "target": {
  3660. "__id__": 1
  3661. },
  3662. "component": "RankPage",
  3663. "handler": "close",
  3664. "customEventData": ""
  3665. },
  3666. {
  3667. "__type__": "cc.PrefabInfo",
  3668. "root": {
  3669. "__id__": 1
  3670. },
  3671. "asset": {
  3672. "__uuid__": "6a4f3ae2-1f9e-448c-bb80-e16eed3312fd"
  3673. },
  3674. "fileId": "73mzUW3qRNmYFFwLycm3rG",
  3675. "sync": false
  3676. },
  3677. {
  3678. "__type__": "cc.PrefabInfo",
  3679. "root": {
  3680. "__id__": 1
  3681. },
  3682. "asset": {
  3683. "__uuid__": "6a4f3ae2-1f9e-448c-bb80-e16eed3312fd"
  3684. },
  3685. "fileId": "5dgqVyZe1CArdE2XqY9RRn",
  3686. "sync": false
  3687. },
  3688. {
  3689. "__type__": "8c002BT7ZNDu6q/xr4Txs6A",
  3690. "_name": "",
  3691. "_objFlags": 0,
  3692. "node": {
  3693. "__id__": 1
  3694. },
  3695. "_enabled": true,
  3696. "content": {
  3697. "__id__": 6
  3698. },
  3699. "myNode": {
  3700. "__id__": 64
  3701. },
  3702. "allRankSpriteFrame": [
  3703. {
  3704. "__uuid__": "74d1c930-8aea-4b89-ae33-a111bbf08b63"
  3705. },
  3706. {
  3707. "__uuid__": "fbe76b55-9a6a-4aca-99ca-49d4c79bc42f"
  3708. }
  3709. ],
  3710. "friendRankSpriteFrame": [
  3711. {
  3712. "__uuid__": "80dc9f09-5f1f-465c-be0f-8ccf2c123698"
  3713. },
  3714. {
  3715. "__uuid__": "1f291233-efe6-493c-b8e3-1cdf28c03a19"
  3716. }
  3717. ],
  3718. "secondTabSpriteFrame": [
  3719. {
  3720. "__uuid__": "5532edef-aa3f-4816-8018-e4b1c6472a0c"
  3721. },
  3722. {
  3723. "__uuid__": "b23a5bf8-551c-4467-8ea3-5a5966bb2340"
  3724. }
  3725. ],
  3726. "topDivider": {
  3727. "__id__": 40
  3728. },
  3729. "allRankTab": {
  3730. "__id__": 11
  3731. },
  3732. "friendRankTab": {
  3733. "__id__": 16
  3734. },
  3735. "companyTab": {
  3736. "__id__": 27
  3737. },
  3738. "artistTab": {
  3739. "__id__": 35
  3740. },
  3741. "companyText": {
  3742. "__id__": 25
  3743. },
  3744. "artistText": {
  3745. "__id__": 33
  3746. },
  3747. "srcollView": {
  3748. "__id__": 62
  3749. }
  3750. },
  3751. {
  3752. "__type__": "cc.PrefabInfo",
  3753. "root": {
  3754. "__id__": 1
  3755. },
  3756. "asset": {
  3757. "__uuid__": "6a4f3ae2-1f9e-448c-bb80-e16eed3312fd"
  3758. },
  3759. "fileId": "b7cp1oG1VLmI2BozgMoa7x",
  3760. "sync": false
  3761. }
  3762. ]