game_rank.prefab 94 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271
  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": "game_rank",
  16. "_objFlags": 0,
  17. "_parent": null,
  18. "_children": [
  19. {
  20. "__id__": 2
  21. },
  22. {
  23. "__id__": 6
  24. }
  25. ],
  26. "_active": true,
  27. "_level": 1,
  28. "_components": [
  29. {
  30. "__id__": 156
  31. }
  32. ],
  33. "_prefab": {
  34. "__id__": 157
  35. },
  36. "_opacity": 255,
  37. "_color": {
  38. "__type__": "cc.Color",
  39. "r": 255,
  40. "g": 255,
  41. "b": 255,
  42. "a": 255
  43. },
  44. "_contentSize": {
  45. "__type__": "cc.Size",
  46. "width": 750,
  47. "height": 1334
  48. },
  49. "_anchorPoint": {
  50. "__type__": "cc.Vec2",
  51. "x": 0.5,
  52. "y": 0.5
  53. },
  54. "_position": {
  55. "__type__": "cc.Vec3",
  56. "x": 0,
  57. "y": 0,
  58. "z": 0
  59. },
  60. "_scale": {
  61. "__type__": "cc.Vec3",
  62. "x": 1,
  63. "y": 1,
  64. "z": 1
  65. },
  66. "_rotationX": 0,
  67. "_rotationY": 0,
  68. "_quat": {
  69. "__type__": "cc.Quat",
  70. "x": 0,
  71. "y": 0,
  72. "z": 0,
  73. "w": 1
  74. },
  75. "_skewX": 0,
  76. "_skewY": 0,
  77. "_zIndex": 110,
  78. "groupIndex": 0,
  79. "_id": ""
  80. },
  81. {
  82. "__type__": "cc.Node",
  83. "_name": "mask",
  84. "_objFlags": 0,
  85. "_parent": {
  86. "__id__": 1
  87. },
  88. "_children": [],
  89. "_active": true,
  90. "_level": 2,
  91. "_components": [
  92. {
  93. "__id__": 3
  94. },
  95. {
  96. "__id__": 4
  97. }
  98. ],
  99. "_prefab": {
  100. "__id__": 5
  101. },
  102. "_opacity": 153,
  103. "_color": {
  104. "__type__": "cc.Color",
  105. "r": 0,
  106. "g": 0,
  107. "b": 0,
  108. "a": 255
  109. },
  110. "_contentSize": {
  111. "__type__": "cc.Size",
  112. "width": 1500,
  113. "height": 2000
  114. },
  115. "_anchorPoint": {
  116. "__type__": "cc.Vec2",
  117. "x": 0.5,
  118. "y": 0.5
  119. },
  120. "_position": {
  121. "__type__": "cc.Vec3",
  122. "x": 0,
  123. "y": 0,
  124. "z": 0
  125. },
  126. "_scale": {
  127. "__type__": "cc.Vec3",
  128. "x": 1,
  129. "y": 1,
  130. "z": 1
  131. },
  132. "_rotationX": 0,
  133. "_rotationY": 0,
  134. "_quat": {
  135. "__type__": "cc.Quat",
  136. "x": 0,
  137. "y": 0,
  138. "z": 0,
  139. "w": 1
  140. },
  141. "_skewX": 0,
  142. "_skewY": 0,
  143. "_zIndex": 0,
  144. "groupIndex": 0,
  145. "_id": ""
  146. },
  147. {
  148. "__type__": "cc.Sprite",
  149. "_name": "",
  150. "_objFlags": 0,
  151. "node": {
  152. "__id__": 2
  153. },
  154. "_enabled": true,
  155. "_srcBlendFactor": 770,
  156. "_dstBlendFactor": 771,
  157. "_spriteFrame": {
  158. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  159. },
  160. "_type": 0,
  161. "_sizeMode": 0,
  162. "_fillType": 0,
  163. "_fillCenter": {
  164. "__type__": "cc.Vec2",
  165. "x": 0,
  166. "y": 0
  167. },
  168. "_fillStart": 0,
  169. "_fillRange": 0,
  170. "_isTrimmedMode": true,
  171. "_state": 0,
  172. "_atlas": null,
  173. "_id": "0eCJ/iNhdAjJGYgF6rFRwG"
  174. },
  175. {
  176. "__type__": "cc.BlockInputEvents",
  177. "_name": "",
  178. "_objFlags": 0,
  179. "node": {
  180. "__id__": 2
  181. },
  182. "_enabled": true,
  183. "_id": "1aWSH/MVlIypZNUmQrvNUg"
  184. },
  185. {
  186. "__type__": "cc.PrefabInfo",
  187. "root": {
  188. "__id__": 1
  189. },
  190. "asset": {
  191. "__uuid__": "cf09f681-edab-4bbb-9e85-11c0abe6fc35"
  192. },
  193. "fileId": "fag3lH8ptJQ7jgu0K9kyuV",
  194. "sync": false
  195. },
  196. {
  197. "__type__": "cc.Node",
  198. "_name": "content",
  199. "_objFlags": 0,
  200. "_parent": {
  201. "__id__": 1
  202. },
  203. "_children": [
  204. {
  205. "__id__": 7
  206. },
  207. {
  208. "__id__": 11
  209. },
  210. {
  211. "__id__": 22
  212. },
  213. {
  214. "__id__": 28
  215. },
  216. {
  217. "__id__": 69
  218. },
  219. {
  220. "__id__": 74
  221. },
  222. {
  223. "__id__": 119
  224. },
  225. {
  226. "__id__": 143
  227. },
  228. {
  229. "__id__": 149
  230. }
  231. ],
  232. "_active": true,
  233. "_level": 2,
  234. "_components": [],
  235. "_prefab": {
  236. "__id__": 155
  237. },
  238. "_opacity": 255,
  239. "_color": {
  240. "__type__": "cc.Color",
  241. "r": 255,
  242. "g": 255,
  243. "b": 255,
  244. "a": 255
  245. },
  246. "_contentSize": {
  247. "__type__": "cc.Size",
  248. "width": 700,
  249. "height": 1140
  250. },
  251. "_anchorPoint": {
  252. "__type__": "cc.Vec2",
  253. "x": 0.5,
  254. "y": 0.5
  255. },
  256. "_position": {
  257. "__type__": "cc.Vec3",
  258. "x": 0,
  259. "y": -40,
  260. "z": 0
  261. },
  262. "_scale": {
  263. "__type__": "cc.Vec3",
  264. "x": 1,
  265. "y": 1,
  266. "z": 1
  267. },
  268. "_rotationX": 0,
  269. "_rotationY": 0,
  270. "_quat": {
  271. "__type__": "cc.Quat",
  272. "x": 0,
  273. "y": 0,
  274. "z": 0,
  275. "w": 1
  276. },
  277. "_skewX": 0,
  278. "_skewY": 0,
  279. "_zIndex": 0,
  280. "groupIndex": 0,
  281. "_id": ""
  282. },
  283. {
  284. "__type__": "cc.Node",
  285. "_name": "common_frame_bg",
  286. "_objFlags": 0,
  287. "_parent": {
  288. "__id__": 6
  289. },
  290. "_children": [],
  291. "_active": true,
  292. "_level": 3,
  293. "_components": [
  294. {
  295. "__id__": 8
  296. },
  297. {
  298. "__id__": 9
  299. }
  300. ],
  301. "_prefab": {
  302. "__id__": 10
  303. },
  304. "_opacity": 255,
  305. "_color": {
  306. "__type__": "cc.Color",
  307. "r": 255,
  308. "g": 255,
  309. "b": 255,
  310. "a": 255
  311. },
  312. "_contentSize": {
  313. "__type__": "cc.Size",
  314. "width": 700,
  315. "height": 1140
  316. },
  317. "_anchorPoint": {
  318. "__type__": "cc.Vec2",
  319. "x": 0.5,
  320. "y": 0.5
  321. },
  322. "_position": {
  323. "__type__": "cc.Vec3",
  324. "x": 0,
  325. "y": 0,
  326. "z": 0
  327. },
  328. "_scale": {
  329. "__type__": "cc.Vec3",
  330. "x": 1,
  331. "y": 1,
  332. "z": 1
  333. },
  334. "_rotationX": 0,
  335. "_rotationY": 0,
  336. "_quat": {
  337. "__type__": "cc.Quat",
  338. "x": 0,
  339. "y": 0,
  340. "z": 0,
  341. "w": 1
  342. },
  343. "_skewX": 0,
  344. "_skewY": 0,
  345. "_zIndex": 0,
  346. "groupIndex": 0,
  347. "_id": ""
  348. },
  349. {
  350. "__type__": "cc.Sprite",
  351. "_name": "",
  352. "_objFlags": 0,
  353. "node": {
  354. "__id__": 7
  355. },
  356. "_enabled": true,
  357. "_srcBlendFactor": 770,
  358. "_dstBlendFactor": 771,
  359. "_spriteFrame": {
  360. "__uuid__": "47ce8a87-06e6-4fa9-b7f8-bf15f9c21c54"
  361. },
  362. "_type": 1,
  363. "_sizeMode": 0,
  364. "_fillType": 0,
  365. "_fillCenter": {
  366. "__type__": "cc.Vec2",
  367. "x": 0,
  368. "y": 0
  369. },
  370. "_fillStart": 0,
  371. "_fillRange": 0,
  372. "_isTrimmedMode": true,
  373. "_state": 0,
  374. "_atlas": null,
  375. "_id": "d7+vpc5FJHX5NTM+133fUY"
  376. },
  377. {
  378. "__type__": "cc.Widget",
  379. "_name": "",
  380. "_objFlags": 0,
  381. "node": {
  382. "__id__": 7
  383. },
  384. "_enabled": true,
  385. "alignMode": 1,
  386. "_target": null,
  387. "_alignFlags": 45,
  388. "_left": 0,
  389. "_right": 0,
  390. "_top": 0,
  391. "_bottom": 0,
  392. "_verticalCenter": 0,
  393. "_horizontalCenter": 0,
  394. "_isAbsLeft": true,
  395. "_isAbsRight": true,
  396. "_isAbsTop": true,
  397. "_isAbsBottom": true,
  398. "_isAbsHorizontalCenter": true,
  399. "_isAbsVerticalCenter": true,
  400. "_originalWidth": 600,
  401. "_originalHeight": 800,
  402. "_id": "dbFlzkoZBGhqkRBd2ouA9O"
  403. },
  404. {
  405. "__type__": "cc.PrefabInfo",
  406. "root": {
  407. "__id__": 1
  408. },
  409. "asset": {
  410. "__uuid__": "cf09f681-edab-4bbb-9e85-11c0abe6fc35"
  411. },
  412. "fileId": "c0J3BhIlJL87utnD2j+JAC",
  413. "sync": false
  414. },
  415. {
  416. "__type__": "cc.Node",
  417. "_name": "top_color_bar",
  418. "_objFlags": 0,
  419. "_parent": {
  420. "__id__": 6
  421. },
  422. "_children": [
  423. {
  424. "__id__": 12
  425. }
  426. ],
  427. "_active": true,
  428. "_level": 3,
  429. "_components": [
  430. {
  431. "__id__": 19
  432. },
  433. {
  434. "__id__": 20
  435. }
  436. ],
  437. "_prefab": {
  438. "__id__": 21
  439. },
  440. "_opacity": 255,
  441. "_color": {
  442. "__type__": "cc.Color",
  443. "r": 255,
  444. "g": 255,
  445. "b": 255,
  446. "a": 255
  447. },
  448. "_contentSize": {
  449. "__type__": "cc.Size",
  450. "width": 432,
  451. "height": 96
  452. },
  453. "_anchorPoint": {
  454. "__type__": "cc.Vec2",
  455. "x": 0.5,
  456. "y": 0.5
  457. },
  458. "_position": {
  459. "__type__": "cc.Vec3",
  460. "x": 0,
  461. "y": 572,
  462. "z": 0
  463. },
  464. "_scale": {
  465. "__type__": "cc.Vec3",
  466. "x": 1,
  467. "y": 1,
  468. "z": 1
  469. },
  470. "_rotationX": 0,
  471. "_rotationY": 0,
  472. "_quat": {
  473. "__type__": "cc.Quat",
  474. "x": 0,
  475. "y": 0,
  476. "z": 0,
  477. "w": 1
  478. },
  479. "_skewX": 0,
  480. "_skewY": 0,
  481. "_zIndex": 0,
  482. "groupIndex": 0,
  483. "_id": ""
  484. },
  485. {
  486. "__type__": "cc.Node",
  487. "_name": "richtext",
  488. "_objFlags": 0,
  489. "_parent": {
  490. "__id__": 11
  491. },
  492. "_children": [
  493. {
  494. "__id__": 13
  495. }
  496. ],
  497. "_active": true,
  498. "_level": 4,
  499. "_components": [
  500. {
  501. "__id__": 17
  502. }
  503. ],
  504. "_prefab": {
  505. "__id__": 18
  506. },
  507. "_opacity": 255,
  508. "_color": {
  509. "__type__": "cc.Color",
  510. "r": 255,
  511. "g": 255,
  512. "b": 255,
  513. "a": 255
  514. },
  515. "_contentSize": {
  516. "__type__": "cc.Size",
  517. "width": 166,
  518. "height": 50
  519. },
  520. "_anchorPoint": {
  521. "__type__": "cc.Vec2",
  522. "x": 0.5,
  523. "y": 0.5
  524. },
  525. "_position": {
  526. "__type__": "cc.Vec3",
  527. "x": 0,
  528. "y": 10,
  529. "z": 0
  530. },
  531. "_scale": {
  532. "__type__": "cc.Vec3",
  533. "x": 1,
  534. "y": 1,
  535. "z": 1
  536. },
  537. "_rotationX": 0,
  538. "_rotationY": 0,
  539. "_quat": {
  540. "__type__": "cc.Quat",
  541. "x": 0,
  542. "y": 0,
  543. "z": 0,
  544. "w": 1
  545. },
  546. "_skewX": 0,
  547. "_skewY": 0,
  548. "_zIndex": 0,
  549. "groupIndex": 0,
  550. "_id": ""
  551. },
  552. {
  553. "__type__": "cc.PrivateNode",
  554. "_name": "RICHTEXT_CHILD",
  555. "_objFlags": 0,
  556. "_parent": {
  557. "__id__": 12
  558. },
  559. "_children": [],
  560. "_active": true,
  561. "_level": 5,
  562. "_components": [
  563. {
  564. "__id__": 14
  565. },
  566. {
  567. "__id__": 15
  568. }
  569. ],
  570. "_prefab": {
  571. "__id__": 16
  572. },
  573. "_opacity": 255,
  574. "_color": {
  575. "__type__": "cc.Color",
  576. "r": 255,
  577. "g": 255,
  578. "b": 255,
  579. "a": 255
  580. },
  581. "_contentSize": {
  582. "__type__": "cc.Size",
  583. "width": 166,
  584. "height": 50
  585. },
  586. "_anchorPoint": {
  587. "__type__": "cc.Vec2",
  588. "x": 0,
  589. "y": 0
  590. },
  591. "_position": {
  592. "__type__": "cc.Vec3",
  593. "x": -83,
  594. "y": -25,
  595. "z": 0
  596. },
  597. "_scale": {
  598. "__type__": "cc.Vec3",
  599. "x": 1,
  600. "y": 1,
  601. "z": 1
  602. },
  603. "_rotationX": 0,
  604. "_rotationY": 0,
  605. "_quat": {
  606. "__type__": "cc.Quat",
  607. "x": 0,
  608. "y": 0,
  609. "z": 0,
  610. "w": 1
  611. },
  612. "_skewX": 0,
  613. "_skewY": 0,
  614. "_zIndex": -32768,
  615. "groupIndex": 0,
  616. "_id": ""
  617. },
  618. {
  619. "__type__": "cc.Label",
  620. "_name": "",
  621. "_objFlags": 0,
  622. "node": {
  623. "__id__": 13
  624. },
  625. "_enabled": true,
  626. "_srcBlendFactor": 1,
  627. "_dstBlendFactor": 771,
  628. "_useOriginalSize": true,
  629. "_string": "总部排行",
  630. "_N$string": "总部排行",
  631. "_fontSize": 40,
  632. "_lineHeight": 50,
  633. "_enableWrapText": true,
  634. "_N$file": null,
  635. "_isSystemFontUsed": true,
  636. "_spacingX": 0,
  637. "_N$horizontalAlign": 0,
  638. "_N$verticalAlign": 1,
  639. "_N$fontFamily": "Arial",
  640. "_N$overflow": 0,
  641. "_id": "d0TM9Gwf5CbYxJ01SOf1Ct"
  642. },
  643. {
  644. "__type__": "cc.LabelOutline",
  645. "_name": "",
  646. "_objFlags": 0,
  647. "node": {
  648. "__id__": 13
  649. },
  650. "_enabled": true,
  651. "_color": {
  652. "__type__": "cc.Color",
  653. "r": 194,
  654. "g": 83,
  655. "b": 83,
  656. "a": 255
  657. },
  658. "_width": 3,
  659. "_id": "3eZpo6sOJKKZVTzqm71Yng"
  660. },
  661. {
  662. "__type__": "cc.PrefabInfo",
  663. "root": {
  664. "__id__": 1
  665. },
  666. "asset": {
  667. "__uuid__": "cf09f681-edab-4bbb-9e85-11c0abe6fc35"
  668. },
  669. "fileId": "8dLssEEjxLX54SLG6XxfMN",
  670. "sync": false
  671. },
  672. {
  673. "__type__": "cc.RichText",
  674. "_name": "",
  675. "_objFlags": 0,
  676. "node": {
  677. "__id__": 12
  678. },
  679. "_enabled": true,
  680. "_N$string": "<b><outline color=#c25353 width=3><color=white>总部排行</color></outline></b>",
  681. "_N$horizontalAlign": 0,
  682. "_N$fontSize": 40,
  683. "_N$font": null,
  684. "_N$maxWidth": 0,
  685. "_N$lineHeight": 50,
  686. "_N$imageAtlas": null,
  687. "_N$handleTouchEvent": true,
  688. "_id": "73Y99hKKtAo5EF+PkQHoIw"
  689. },
  690. {
  691. "__type__": "cc.PrefabInfo",
  692. "root": {
  693. "__id__": 1
  694. },
  695. "asset": {
  696. "__uuid__": "cf09f681-edab-4bbb-9e85-11c0abe6fc35"
  697. },
  698. "fileId": "4crz3E1MpA3Z+eBGObHlt4",
  699. "sync": false
  700. },
  701. {
  702. "__type__": "cc.Sprite",
  703. "_name": "",
  704. "_objFlags": 0,
  705. "node": {
  706. "__id__": 11
  707. },
  708. "_enabled": true,
  709. "_srcBlendFactor": 770,
  710. "_dstBlendFactor": 771,
  711. "_spriteFrame": {
  712. "__uuid__": "a813d5dc-f021-4f82-803c-a3701eaffc4e"
  713. },
  714. "_type": 0,
  715. "_sizeMode": 1,
  716. "_fillType": 0,
  717. "_fillCenter": {
  718. "__type__": "cc.Vec2",
  719. "x": 0,
  720. "y": 0
  721. },
  722. "_fillStart": 0,
  723. "_fillRange": 0,
  724. "_isTrimmedMode": true,
  725. "_state": 0,
  726. "_atlas": null,
  727. "_id": "17EJh0WwlNkIlBpWW9E/Is"
  728. },
  729. {
  730. "__type__": "cc.Widget",
  731. "_name": "",
  732. "_objFlags": 0,
  733. "node": {
  734. "__id__": 11
  735. },
  736. "_enabled": true,
  737. "alignMode": 1,
  738. "_target": null,
  739. "_alignFlags": 1,
  740. "_left": 0,
  741. "_right": 0,
  742. "_top": -50,
  743. "_bottom": 0,
  744. "_verticalCenter": 0,
  745. "_horizontalCenter": 0,
  746. "_isAbsLeft": true,
  747. "_isAbsRight": true,
  748. "_isAbsTop": true,
  749. "_isAbsBottom": true,
  750. "_isAbsHorizontalCenter": true,
  751. "_isAbsVerticalCenter": true,
  752. "_originalWidth": 0,
  753. "_originalHeight": 0,
  754. "_id": "36ytiWXkBDbp09Eu2sgnTK"
  755. },
  756. {
  757. "__type__": "cc.PrefabInfo",
  758. "root": {
  759. "__id__": 1
  760. },
  761. "asset": {
  762. "__uuid__": "cf09f681-edab-4bbb-9e85-11c0abe6fc35"
  763. },
  764. "fileId": "e7TDgvmfZAn7YtCML85o7L",
  765. "sync": false
  766. },
  767. {
  768. "__type__": "cc.Node",
  769. "_name": "closeButton",
  770. "_objFlags": 0,
  771. "_parent": {
  772. "__id__": 6
  773. },
  774. "_children": [],
  775. "_active": true,
  776. "_level": 3,
  777. "_components": [
  778. {
  779. "__id__": 23
  780. },
  781. {
  782. "__id__": 24
  783. },
  784. {
  785. "__id__": 26
  786. }
  787. ],
  788. "_prefab": {
  789. "__id__": 27
  790. },
  791. "_opacity": 255,
  792. "_color": {
  793. "__type__": "cc.Color",
  794. "r": 255,
  795. "g": 255,
  796. "b": 255,
  797. "a": 255
  798. },
  799. "_contentSize": {
  800. "__type__": "cc.Size",
  801. "width": 70,
  802. "height": 72
  803. },
  804. "_anchorPoint": {
  805. "__type__": "cc.Vec2",
  806. "x": 0.5,
  807. "y": 0.5
  808. },
  809. "_position": {
  810. "__type__": "cc.Vec3",
  811. "x": 330,
  812. "y": 544,
  813. "z": 0
  814. },
  815. "_scale": {
  816. "__type__": "cc.Vec3",
  817. "x": 1,
  818. "y": 1,
  819. "z": 1
  820. },
  821. "_rotationX": 0,
  822. "_rotationY": 0,
  823. "_quat": {
  824. "__type__": "cc.Quat",
  825. "x": 0,
  826. "y": 0,
  827. "z": 0,
  828. "w": 1
  829. },
  830. "_skewX": 0,
  831. "_skewY": 0,
  832. "_zIndex": 0,
  833. "groupIndex": 0,
  834. "_id": ""
  835. },
  836. {
  837. "__type__": "cc.Sprite",
  838. "_name": "",
  839. "_objFlags": 0,
  840. "node": {
  841. "__id__": 22
  842. },
  843. "_enabled": true,
  844. "_srcBlendFactor": 770,
  845. "_dstBlendFactor": 771,
  846. "_spriteFrame": {
  847. "__uuid__": "5e4122b9-5634-44c1-af70-c2aae5fab4eb"
  848. },
  849. "_type": 0,
  850. "_sizeMode": 1,
  851. "_fillType": 0,
  852. "_fillCenter": {
  853. "__type__": "cc.Vec2",
  854. "x": 0,
  855. "y": 0
  856. },
  857. "_fillStart": 0,
  858. "_fillRange": 0,
  859. "_isTrimmedMode": true,
  860. "_state": 0,
  861. "_atlas": null,
  862. "_id": "06GhBn0fBDmq6cSbbbszaL"
  863. },
  864. {
  865. "__type__": "cc.Button",
  866. "_name": "",
  867. "_objFlags": 0,
  868. "node": {
  869. "__id__": 22
  870. },
  871. "_enabled": true,
  872. "transition": 1,
  873. "pressedColor": {
  874. "__type__": "cc.Color",
  875. "r": 120,
  876. "g": 120,
  877. "b": 120,
  878. "a": 255
  879. },
  880. "hoverColor": {
  881. "__type__": "cc.Color",
  882. "r": 255,
  883. "g": 255,
  884. "b": 255,
  885. "a": 255
  886. },
  887. "duration": 0.1,
  888. "zoomScale": 1.2,
  889. "clickEvents": [
  890. {
  891. "__id__": 25
  892. }
  893. ],
  894. "_N$interactable": true,
  895. "_N$enableAutoGrayEffect": false,
  896. "_N$normalColor": {
  897. "__type__": "cc.Color",
  898. "r": 255,
  899. "g": 255,
  900. "b": 255,
  901. "a": 255
  902. },
  903. "_N$disabledColor": {
  904. "__type__": "cc.Color",
  905. "r": 255,
  906. "g": 255,
  907. "b": 255,
  908. "a": 255
  909. },
  910. "_N$normalSprite": {
  911. "__uuid__": "5e4122b9-5634-44c1-af70-c2aae5fab4eb"
  912. },
  913. "_N$pressedSprite": {
  914. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  915. },
  916. "pressedSprite": {
  917. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  918. },
  919. "_N$hoverSprite": {
  920. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  921. },
  922. "hoverSprite": {
  923. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  924. },
  925. "_N$disabledSprite": {
  926. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  927. },
  928. "_N$target": {
  929. "__id__": 22
  930. },
  931. "_id": "9cKhjQDXtJfK4Fs+TOT6c4"
  932. },
  933. {
  934. "__type__": "cc.ClickEvent",
  935. "target": {
  936. "__id__": 1
  937. },
  938. "component": "GameRank",
  939. "handler": "closeNode",
  940. "customEventData": ""
  941. },
  942. {
  943. "__type__": "cc.Widget",
  944. "_name": "",
  945. "_objFlags": 0,
  946. "node": {
  947. "__id__": 22
  948. },
  949. "_enabled": true,
  950. "alignMode": 1,
  951. "_target": null,
  952. "_alignFlags": 33,
  953. "_left": 0,
  954. "_right": -15,
  955. "_top": -10,
  956. "_bottom": 0,
  957. "_verticalCenter": 0,
  958. "_horizontalCenter": 0,
  959. "_isAbsLeft": true,
  960. "_isAbsRight": true,
  961. "_isAbsTop": true,
  962. "_isAbsBottom": true,
  963. "_isAbsHorizontalCenter": true,
  964. "_isAbsVerticalCenter": true,
  965. "_originalWidth": 0,
  966. "_originalHeight": 0,
  967. "_id": "32MALldBxETYvrLBI4Mnz4"
  968. },
  969. {
  970. "__type__": "cc.PrefabInfo",
  971. "root": {
  972. "__id__": 1
  973. },
  974. "asset": {
  975. "__uuid__": "cf09f681-edab-4bbb-9e85-11c0abe6fc35"
  976. },
  977. "fileId": "44AjA9fRlNoopPLSfIMqQc",
  978. "sync": false
  979. },
  980. {
  981. "__type__": "cc.Node",
  982. "_name": "tabNode",
  983. "_objFlags": 0,
  984. "_parent": {
  985. "__id__": 6
  986. },
  987. "_children": [
  988. {
  989. "__id__": 29
  990. },
  991. {
  992. "__id__": 42
  993. },
  994. {
  995. "__id__": 54
  996. }
  997. ],
  998. "_active": true,
  999. "_level": 3,
  1000. "_components": [
  1001. {
  1002. "__id__": 66
  1003. },
  1004. {
  1005. "__id__": 67
  1006. }
  1007. ],
  1008. "_prefab": {
  1009. "__id__": 68
  1010. },
  1011. "_opacity": 255,
  1012. "_color": {
  1013. "__type__": "cc.Color",
  1014. "r": 255,
  1015. "g": 255,
  1016. "b": 255,
  1017. "a": 255
  1018. },
  1019. "_contentSize": {
  1020. "__type__": "cc.Size",
  1021. "width": 620,
  1022. "height": 96
  1023. },
  1024. "_anchorPoint": {
  1025. "__type__": "cc.Vec2",
  1026. "x": 0.5,
  1027. "y": 0.5
  1028. },
  1029. "_position": {
  1030. "__type__": "cc.Vec3",
  1031. "x": 0,
  1032. "y": 457,
  1033. "z": 0
  1034. },
  1035. "_scale": {
  1036. "__type__": "cc.Vec3",
  1037. "x": 1,
  1038. "y": 1,
  1039. "z": 1
  1040. },
  1041. "_rotationX": 0,
  1042. "_rotationY": 0,
  1043. "_quat": {
  1044. "__type__": "cc.Quat",
  1045. "x": 0,
  1046. "y": 0,
  1047. "z": 0,
  1048. "w": 1
  1049. },
  1050. "_skewX": 0,
  1051. "_skewY": 0,
  1052. "_zIndex": 0,
  1053. "groupIndex": 0,
  1054. "_id": ""
  1055. },
  1056. {
  1057. "__type__": "cc.Node",
  1058. "_name": "friend_btn",
  1059. "_objFlags": 0,
  1060. "_parent": {
  1061. "__id__": 28
  1062. },
  1063. "_children": [
  1064. {
  1065. "__id__": 30
  1066. }
  1067. ],
  1068. "_active": true,
  1069. "_level": 4,
  1070. "_components": [
  1071. {
  1072. "__id__": 37
  1073. },
  1074. {
  1075. "__id__": 38
  1076. },
  1077. {
  1078. "__id__": 40
  1079. }
  1080. ],
  1081. "_prefab": {
  1082. "__id__": 41
  1083. },
  1084. "_opacity": 255,
  1085. "_color": {
  1086. "__type__": "cc.Color",
  1087. "r": 255,
  1088. "g": 255,
  1089. "b": 255,
  1090. "a": 255
  1091. },
  1092. "_contentSize": {
  1093. "__type__": "cc.Size",
  1094. "width": 200,
  1095. "height": 96
  1096. },
  1097. "_anchorPoint": {
  1098. "__type__": "cc.Vec2",
  1099. "x": 0.5,
  1100. "y": 0.5
  1101. },
  1102. "_position": {
  1103. "__type__": "cc.Vec3",
  1104. "x": -210,
  1105. "y": 0,
  1106. "z": 0
  1107. },
  1108. "_scale": {
  1109. "__type__": "cc.Vec3",
  1110. "x": 1,
  1111. "y": 1,
  1112. "z": 1
  1113. },
  1114. "_rotationX": 0,
  1115. "_rotationY": 0,
  1116. "_quat": {
  1117. "__type__": "cc.Quat",
  1118. "x": 0,
  1119. "y": 0,
  1120. "z": 0,
  1121. "w": 1
  1122. },
  1123. "_skewX": 0,
  1124. "_skewY": 0,
  1125. "_zIndex": 0,
  1126. "groupIndex": 0,
  1127. "_id": ""
  1128. },
  1129. {
  1130. "__type__": "cc.Node",
  1131. "_name": "btn_text",
  1132. "_objFlags": 0,
  1133. "_parent": {
  1134. "__id__": 29
  1135. },
  1136. "_children": [
  1137. {
  1138. "__id__": 31
  1139. }
  1140. ],
  1141. "_active": true,
  1142. "_level": 5,
  1143. "_components": [
  1144. {
  1145. "__id__": 35
  1146. }
  1147. ],
  1148. "_prefab": {
  1149. "__id__": 36
  1150. },
  1151. "_opacity": 255,
  1152. "_color": {
  1153. "__type__": "cc.Color",
  1154. "r": 255,
  1155. "g": 255,
  1156. "b": 255,
  1157. "a": 255
  1158. },
  1159. "_contentSize": {
  1160. "__type__": "cc.Size",
  1161. "width": 124,
  1162. "height": 40
  1163. },
  1164. "_anchorPoint": {
  1165. "__type__": "cc.Vec2",
  1166. "x": 0.5,
  1167. "y": 0.5
  1168. },
  1169. "_position": {
  1170. "__type__": "cc.Vec3",
  1171. "x": 0,
  1172. "y": 10,
  1173. "z": 0
  1174. },
  1175. "_scale": {
  1176. "__type__": "cc.Vec3",
  1177. "x": 1,
  1178. "y": 1,
  1179. "z": 1
  1180. },
  1181. "_rotationX": 0,
  1182. "_rotationY": 0,
  1183. "_quat": {
  1184. "__type__": "cc.Quat",
  1185. "x": 0,
  1186. "y": 0,
  1187. "z": 0,
  1188. "w": 1
  1189. },
  1190. "_skewX": 0,
  1191. "_skewY": 0,
  1192. "_zIndex": 0,
  1193. "groupIndex": 0,
  1194. "_id": ""
  1195. },
  1196. {
  1197. "__type__": "cc.PrivateNode",
  1198. "_name": "RICHTEXT_CHILD",
  1199. "_objFlags": 0,
  1200. "_parent": {
  1201. "__id__": 30
  1202. },
  1203. "_children": [],
  1204. "_active": true,
  1205. "_level": 6,
  1206. "_components": [
  1207. {
  1208. "__id__": 32
  1209. },
  1210. {
  1211. "__id__": 33
  1212. }
  1213. ],
  1214. "_prefab": {
  1215. "__id__": 34
  1216. },
  1217. "_opacity": 255,
  1218. "_color": {
  1219. "__type__": "cc.Color",
  1220. "r": 255,
  1221. "g": 255,
  1222. "b": 255,
  1223. "a": 255
  1224. },
  1225. "_contentSize": {
  1226. "__type__": "cc.Size",
  1227. "width": 124,
  1228. "height": 40
  1229. },
  1230. "_anchorPoint": {
  1231. "__type__": "cc.Vec2",
  1232. "x": 0,
  1233. "y": 0
  1234. },
  1235. "_position": {
  1236. "__type__": "cc.Vec3",
  1237. "x": -62,
  1238. "y": -20,
  1239. "z": 0
  1240. },
  1241. "_scale": {
  1242. "__type__": "cc.Vec3",
  1243. "x": 1,
  1244. "y": 1,
  1245. "z": 1
  1246. },
  1247. "_rotationX": 0,
  1248. "_rotationY": 0,
  1249. "_quat": {
  1250. "__type__": "cc.Quat",
  1251. "x": 0,
  1252. "y": 0,
  1253. "z": 0,
  1254. "w": 1
  1255. },
  1256. "_skewX": 0,
  1257. "_skewY": 0,
  1258. "_zIndex": -32768,
  1259. "groupIndex": 0,
  1260. "_id": ""
  1261. },
  1262. {
  1263. "__type__": "cc.Label",
  1264. "_name": "",
  1265. "_objFlags": 0,
  1266. "node": {
  1267. "__id__": 31
  1268. },
  1269. "_enabled": true,
  1270. "_srcBlendFactor": 1,
  1271. "_dstBlendFactor": 771,
  1272. "_useOriginalSize": true,
  1273. "_string": "好友排行",
  1274. "_N$string": "好友排行",
  1275. "_fontSize": 30,
  1276. "_lineHeight": 40,
  1277. "_enableWrapText": true,
  1278. "_N$file": null,
  1279. "_isSystemFontUsed": true,
  1280. "_spacingX": 0,
  1281. "_N$horizontalAlign": 0,
  1282. "_N$verticalAlign": 1,
  1283. "_N$fontFamily": "Arial",
  1284. "_N$overflow": 0,
  1285. "_id": "fegvNWLUpFEbz0hGQAw9Iq"
  1286. },
  1287. {
  1288. "__type__": "cc.LabelOutline",
  1289. "_name": "",
  1290. "_objFlags": 0,
  1291. "node": {
  1292. "__id__": 31
  1293. },
  1294. "_enabled": true,
  1295. "_color": {
  1296. "__type__": "cc.Color",
  1297. "r": 255,
  1298. "g": 174,
  1299. "b": 0,
  1300. "a": 255
  1301. },
  1302. "_width": 2,
  1303. "_id": "b2F6mfCrtCF57w1svFMLZW"
  1304. },
  1305. {
  1306. "__type__": "cc.PrefabInfo",
  1307. "root": {
  1308. "__id__": 1
  1309. },
  1310. "asset": {
  1311. "__uuid__": "cf09f681-edab-4bbb-9e85-11c0abe6fc35"
  1312. },
  1313. "fileId": "3e/X5XMLNK46K2vQG/WY+B",
  1314. "sync": false
  1315. },
  1316. {
  1317. "__type__": "cc.RichText",
  1318. "_name": "",
  1319. "_objFlags": 0,
  1320. "node": {
  1321. "__id__": 30
  1322. },
  1323. "_enabled": true,
  1324. "_N$string": "<b><outline color=#ffae00 width=2><color=white>好友排行</color></outline></b>",
  1325. "_N$horizontalAlign": 0,
  1326. "_N$fontSize": 30,
  1327. "_N$font": null,
  1328. "_N$maxWidth": 0,
  1329. "_N$lineHeight": 40,
  1330. "_N$imageAtlas": null,
  1331. "_N$handleTouchEvent": true,
  1332. "_id": "de06ujuMJOVYdgUVHtoreN"
  1333. },
  1334. {
  1335. "__type__": "cc.PrefabInfo",
  1336. "root": {
  1337. "__id__": 1
  1338. },
  1339. "asset": {
  1340. "__uuid__": "cf09f681-edab-4bbb-9e85-11c0abe6fc35"
  1341. },
  1342. "fileId": "13w+auh0VCubyixMOb9Vsw",
  1343. "sync": false
  1344. },
  1345. {
  1346. "__type__": "cc.Sprite",
  1347. "_name": "",
  1348. "_objFlags": 0,
  1349. "node": {
  1350. "__id__": 29
  1351. },
  1352. "_enabled": true,
  1353. "_srcBlendFactor": 770,
  1354. "_dstBlendFactor": 771,
  1355. "_spriteFrame": {
  1356. "__uuid__": "efb96997-7ce2-4d20-9e49-961f154945ea"
  1357. },
  1358. "_type": 0,
  1359. "_sizeMode": 0,
  1360. "_fillType": 0,
  1361. "_fillCenter": {
  1362. "__type__": "cc.Vec2",
  1363. "x": 0,
  1364. "y": 0
  1365. },
  1366. "_fillStart": 0,
  1367. "_fillRange": 0,
  1368. "_isTrimmedMode": false,
  1369. "_state": 0,
  1370. "_atlas": null,
  1371. "_id": "67v+GhJFRCzIwDmOCkob/z"
  1372. },
  1373. {
  1374. "__type__": "cc.Button",
  1375. "_name": "",
  1376. "_objFlags": 0,
  1377. "node": {
  1378. "__id__": 29
  1379. },
  1380. "_enabled": true,
  1381. "transition": 1,
  1382. "pressedColor": {
  1383. "__type__": "cc.Color",
  1384. "r": 120,
  1385. "g": 120,
  1386. "b": 120,
  1387. "a": 255
  1388. },
  1389. "hoverColor": {
  1390. "__type__": "cc.Color",
  1391. "r": 255,
  1392. "g": 255,
  1393. "b": 255,
  1394. "a": 255
  1395. },
  1396. "duration": 0.1,
  1397. "zoomScale": 1.2,
  1398. "clickEvents": [
  1399. {
  1400. "__id__": 39
  1401. }
  1402. ],
  1403. "_N$interactable": true,
  1404. "_N$enableAutoGrayEffect": false,
  1405. "_N$normalColor": {
  1406. "__type__": "cc.Color",
  1407. "r": 255,
  1408. "g": 255,
  1409. "b": 255,
  1410. "a": 255
  1411. },
  1412. "_N$disabledColor": {
  1413. "__type__": "cc.Color",
  1414. "r": 255,
  1415. "g": 255,
  1416. "b": 255,
  1417. "a": 255
  1418. },
  1419. "_N$normalSprite": {
  1420. "__uuid__": "efb96997-7ce2-4d20-9e49-961f154945ea"
  1421. },
  1422. "_N$pressedSprite": {
  1423. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  1424. },
  1425. "pressedSprite": {
  1426. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  1427. },
  1428. "_N$hoverSprite": {
  1429. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  1430. },
  1431. "hoverSprite": {
  1432. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  1433. },
  1434. "_N$disabledSprite": {
  1435. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  1436. },
  1437. "_N$target": {
  1438. "__id__": 29
  1439. },
  1440. "_id": "6cTYVfTp5NooJg6YkGtA6q"
  1441. },
  1442. {
  1443. "__type__": "cc.ClickEvent",
  1444. "target": {
  1445. "__id__": 1
  1446. },
  1447. "component": "GameRank",
  1448. "handler": "handleTab",
  1449. "customEventData": "0"
  1450. },
  1451. {
  1452. "__type__": "e7ca9t9kmhCRISKFXOOAGhr",
  1453. "_name": "",
  1454. "_objFlags": 0,
  1455. "node": {
  1456. "__id__": 29
  1457. },
  1458. "_enabled": true,
  1459. "bgFrames": [
  1460. {
  1461. "__uuid__": "63140a8e-c2d9-41fd-bd26-96926d62aac6"
  1462. },
  1463. {
  1464. "__uuid__": "efb96997-7ce2-4d20-9e49-961f154945ea"
  1465. }
  1466. ],
  1467. "titleRichText": {
  1468. "__id__": 35
  1469. },
  1470. "tabText": "好友排行",
  1471. "_id": "43MzrwVOJPkIv+DyFkPAXQ"
  1472. },
  1473. {
  1474. "__type__": "cc.PrefabInfo",
  1475. "root": {
  1476. "__id__": 1
  1477. },
  1478. "asset": {
  1479. "__uuid__": "cf09f681-edab-4bbb-9e85-11c0abe6fc35"
  1480. },
  1481. "fileId": "edvFGhdZxDnqaELIod6L5G",
  1482. "sync": false
  1483. },
  1484. {
  1485. "__type__": "cc.Node",
  1486. "_name": "country_btn",
  1487. "_objFlags": 0,
  1488. "_parent": {
  1489. "__id__": 28
  1490. },
  1491. "_children": [
  1492. {
  1493. "__id__": 43
  1494. }
  1495. ],
  1496. "_active": true,
  1497. "_level": 4,
  1498. "_components": [
  1499. {
  1500. "__id__": 49
  1501. },
  1502. {
  1503. "__id__": 50
  1504. },
  1505. {
  1506. "__id__": 52
  1507. }
  1508. ],
  1509. "_prefab": {
  1510. "__id__": 53
  1511. },
  1512. "_opacity": 255,
  1513. "_color": {
  1514. "__type__": "cc.Color",
  1515. "r": 255,
  1516. "g": 255,
  1517. "b": 255,
  1518. "a": 255
  1519. },
  1520. "_contentSize": {
  1521. "__type__": "cc.Size",
  1522. "width": 200,
  1523. "height": 96
  1524. },
  1525. "_anchorPoint": {
  1526. "__type__": "cc.Vec2",
  1527. "x": 0.5,
  1528. "y": 0.5
  1529. },
  1530. "_position": {
  1531. "__type__": "cc.Vec3",
  1532. "x": 0,
  1533. "y": 0,
  1534. "z": 0
  1535. },
  1536. "_scale": {
  1537. "__type__": "cc.Vec3",
  1538. "x": 1,
  1539. "y": 1,
  1540. "z": 1
  1541. },
  1542. "_rotationX": 0,
  1543. "_rotationY": 0,
  1544. "_quat": {
  1545. "__type__": "cc.Quat",
  1546. "x": 0,
  1547. "y": 0,
  1548. "z": 0,
  1549. "w": 1
  1550. },
  1551. "_skewX": 0,
  1552. "_skewY": 0,
  1553. "_zIndex": 0,
  1554. "groupIndex": 0,
  1555. "_id": ""
  1556. },
  1557. {
  1558. "__type__": "cc.Node",
  1559. "_name": "btn_text",
  1560. "_objFlags": 0,
  1561. "_parent": {
  1562. "__id__": 42
  1563. },
  1564. "_children": [
  1565. {
  1566. "__id__": 44
  1567. }
  1568. ],
  1569. "_active": true,
  1570. "_level": 5,
  1571. "_components": [
  1572. {
  1573. "__id__": 47
  1574. }
  1575. ],
  1576. "_prefab": {
  1577. "__id__": 48
  1578. },
  1579. "_opacity": 255,
  1580. "_color": {
  1581. "__type__": "cc.Color",
  1582. "r": 255,
  1583. "g": 255,
  1584. "b": 255,
  1585. "a": 255
  1586. },
  1587. "_contentSize": {
  1588. "__type__": "cc.Size",
  1589. "width": 120,
  1590. "height": 40
  1591. },
  1592. "_anchorPoint": {
  1593. "__type__": "cc.Vec2",
  1594. "x": 0.5,
  1595. "y": 0.5
  1596. },
  1597. "_position": {
  1598. "__type__": "cc.Vec3",
  1599. "x": 0,
  1600. "y": 10,
  1601. "z": 0
  1602. },
  1603. "_scale": {
  1604. "__type__": "cc.Vec3",
  1605. "x": 1,
  1606. "y": 1,
  1607. "z": 1
  1608. },
  1609. "_rotationX": 0,
  1610. "_rotationY": 0,
  1611. "_quat": {
  1612. "__type__": "cc.Quat",
  1613. "x": 0,
  1614. "y": 0,
  1615. "z": 0,
  1616. "w": 1
  1617. },
  1618. "_skewX": 0,
  1619. "_skewY": 0,
  1620. "_zIndex": 0,
  1621. "groupIndex": 0,
  1622. "_id": ""
  1623. },
  1624. {
  1625. "__type__": "cc.PrivateNode",
  1626. "_name": "RICHTEXT_CHILD",
  1627. "_objFlags": 0,
  1628. "_parent": {
  1629. "__id__": 43
  1630. },
  1631. "_children": [],
  1632. "_active": true,
  1633. "_level": 6,
  1634. "_components": [
  1635. {
  1636. "__id__": 45
  1637. }
  1638. ],
  1639. "_prefab": {
  1640. "__id__": 46
  1641. },
  1642. "_opacity": 255,
  1643. "_color": {
  1644. "__type__": "cc.Color",
  1645. "r": 182,
  1646. "g": 137,
  1647. "b": 107,
  1648. "a": 255
  1649. },
  1650. "_contentSize": {
  1651. "__type__": "cc.Size",
  1652. "width": 120,
  1653. "height": 40
  1654. },
  1655. "_anchorPoint": {
  1656. "__type__": "cc.Vec2",
  1657. "x": 0,
  1658. "y": 0
  1659. },
  1660. "_position": {
  1661. "__type__": "cc.Vec3",
  1662. "x": -60,
  1663. "y": -20,
  1664. "z": 0
  1665. },
  1666. "_scale": {
  1667. "__type__": "cc.Vec3",
  1668. "x": 1,
  1669. "y": 1,
  1670. "z": 1
  1671. },
  1672. "_rotationX": 0,
  1673. "_rotationY": 0,
  1674. "_quat": {
  1675. "__type__": "cc.Quat",
  1676. "x": 0,
  1677. "y": 0,
  1678. "z": 0,
  1679. "w": 1
  1680. },
  1681. "_skewX": 0,
  1682. "_skewY": 0,
  1683. "_zIndex": -32768,
  1684. "groupIndex": 0,
  1685. "_id": ""
  1686. },
  1687. {
  1688. "__type__": "cc.Label",
  1689. "_name": "",
  1690. "_objFlags": 0,
  1691. "node": {
  1692. "__id__": 44
  1693. },
  1694. "_enabled": true,
  1695. "_srcBlendFactor": 1,
  1696. "_dstBlendFactor": 771,
  1697. "_useOriginalSize": true,
  1698. "_string": "全国排行",
  1699. "_N$string": "全国排行",
  1700. "_fontSize": 30,
  1701. "_lineHeight": 40,
  1702. "_enableWrapText": true,
  1703. "_N$file": null,
  1704. "_isSystemFontUsed": true,
  1705. "_spacingX": 0,
  1706. "_N$horizontalAlign": 0,
  1707. "_N$verticalAlign": 1,
  1708. "_N$fontFamily": "Arial",
  1709. "_N$overflow": 0,
  1710. "_id": "e078t2oshDcIoe8DxbF7d2"
  1711. },
  1712. {
  1713. "__type__": "cc.PrefabInfo",
  1714. "root": {
  1715. "__id__": 1
  1716. },
  1717. "asset": {
  1718. "__uuid__": "cf09f681-edab-4bbb-9e85-11c0abe6fc35"
  1719. },
  1720. "fileId": "92sTuXiWFCV5ukhfC9JLTz",
  1721. "sync": false
  1722. },
  1723. {
  1724. "__type__": "cc.RichText",
  1725. "_name": "",
  1726. "_objFlags": 0,
  1727. "node": {
  1728. "__id__": 43
  1729. },
  1730. "_enabled": true,
  1731. "_N$string": "<b><color=#B6896B>全国排行</color></b>",
  1732. "_N$horizontalAlign": 0,
  1733. "_N$fontSize": 30,
  1734. "_N$font": null,
  1735. "_N$maxWidth": 0,
  1736. "_N$lineHeight": 40,
  1737. "_N$imageAtlas": null,
  1738. "_N$handleTouchEvent": true,
  1739. "_id": "74OteMfqpLOaVzHs0tDi+n"
  1740. },
  1741. {
  1742. "__type__": "cc.PrefabInfo",
  1743. "root": {
  1744. "__id__": 1
  1745. },
  1746. "asset": {
  1747. "__uuid__": "cf09f681-edab-4bbb-9e85-11c0abe6fc35"
  1748. },
  1749. "fileId": "600kr6WKlBlKeOUqkgJgwz",
  1750. "sync": false
  1751. },
  1752. {
  1753. "__type__": "cc.Sprite",
  1754. "_name": "",
  1755. "_objFlags": 0,
  1756. "node": {
  1757. "__id__": 42
  1758. },
  1759. "_enabled": true,
  1760. "_srcBlendFactor": 770,
  1761. "_dstBlendFactor": 771,
  1762. "_spriteFrame": {
  1763. "__uuid__": "63140a8e-c2d9-41fd-bd26-96926d62aac6"
  1764. },
  1765. "_type": 0,
  1766. "_sizeMode": 0,
  1767. "_fillType": 0,
  1768. "_fillCenter": {
  1769. "__type__": "cc.Vec2",
  1770. "x": 0,
  1771. "y": 0
  1772. },
  1773. "_fillStart": 0,
  1774. "_fillRange": 0,
  1775. "_isTrimmedMode": false,
  1776. "_state": 0,
  1777. "_atlas": null,
  1778. "_id": "bf7eEcGC5D45GPuxnF881x"
  1779. },
  1780. {
  1781. "__type__": "cc.Button",
  1782. "_name": "",
  1783. "_objFlags": 0,
  1784. "node": {
  1785. "__id__": 42
  1786. },
  1787. "_enabled": true,
  1788. "transition": 1,
  1789. "pressedColor": {
  1790. "__type__": "cc.Color",
  1791. "r": 120,
  1792. "g": 120,
  1793. "b": 120,
  1794. "a": 255
  1795. },
  1796. "hoverColor": {
  1797. "__type__": "cc.Color",
  1798. "r": 255,
  1799. "g": 255,
  1800. "b": 255,
  1801. "a": 255
  1802. },
  1803. "duration": 0.1,
  1804. "zoomScale": 1.2,
  1805. "clickEvents": [
  1806. {
  1807. "__id__": 51
  1808. }
  1809. ],
  1810. "_N$interactable": true,
  1811. "_N$enableAutoGrayEffect": false,
  1812. "_N$normalColor": {
  1813. "__type__": "cc.Color",
  1814. "r": 255,
  1815. "g": 255,
  1816. "b": 255,
  1817. "a": 255
  1818. },
  1819. "_N$disabledColor": {
  1820. "__type__": "cc.Color",
  1821. "r": 255,
  1822. "g": 255,
  1823. "b": 255,
  1824. "a": 255
  1825. },
  1826. "_N$normalSprite": {
  1827. "__uuid__": "63140a8e-c2d9-41fd-bd26-96926d62aac6"
  1828. },
  1829. "_N$pressedSprite": {
  1830. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  1831. },
  1832. "pressedSprite": {
  1833. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  1834. },
  1835. "_N$hoverSprite": {
  1836. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  1837. },
  1838. "hoverSprite": {
  1839. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  1840. },
  1841. "_N$disabledSprite": {
  1842. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  1843. },
  1844. "_N$target": {
  1845. "__id__": 42
  1846. },
  1847. "_id": "9b9e5z31RGyLMiK/eJGSIL"
  1848. },
  1849. {
  1850. "__type__": "cc.ClickEvent",
  1851. "target": {
  1852. "__id__": 1
  1853. },
  1854. "component": "GameRank",
  1855. "handler": "handleTab",
  1856. "customEventData": "1"
  1857. },
  1858. {
  1859. "__type__": "e7ca9t9kmhCRISKFXOOAGhr",
  1860. "_name": "",
  1861. "_objFlags": 0,
  1862. "node": {
  1863. "__id__": 42
  1864. },
  1865. "_enabled": true,
  1866. "bgFrames": [
  1867. {
  1868. "__uuid__": "63140a8e-c2d9-41fd-bd26-96926d62aac6"
  1869. },
  1870. {
  1871. "__uuid__": "efb96997-7ce2-4d20-9e49-961f154945ea"
  1872. }
  1873. ],
  1874. "titleRichText": {
  1875. "__id__": 47
  1876. },
  1877. "tabText": "全国排行",
  1878. "_id": "8c2oj3U2lJw7ZP4Wy4AMVI"
  1879. },
  1880. {
  1881. "__type__": "cc.PrefabInfo",
  1882. "root": {
  1883. "__id__": 1
  1884. },
  1885. "asset": {
  1886. "__uuid__": "cf09f681-edab-4bbb-9e85-11c0abe6fc35"
  1887. },
  1888. "fileId": "3a5MlJHy5Hj59gPW5NRtZp",
  1889. "sync": false
  1890. },
  1891. {
  1892. "__type__": "cc.Node",
  1893. "_name": "crowd_btn",
  1894. "_objFlags": 0,
  1895. "_parent": {
  1896. "__id__": 28
  1897. },
  1898. "_children": [
  1899. {
  1900. "__id__": 55
  1901. }
  1902. ],
  1903. "_active": true,
  1904. "_level": 4,
  1905. "_components": [
  1906. {
  1907. "__id__": 61
  1908. },
  1909. {
  1910. "__id__": 62
  1911. },
  1912. {
  1913. "__id__": 64
  1914. }
  1915. ],
  1916. "_prefab": {
  1917. "__id__": 65
  1918. },
  1919. "_opacity": 255,
  1920. "_color": {
  1921. "__type__": "cc.Color",
  1922. "r": 255,
  1923. "g": 255,
  1924. "b": 255,
  1925. "a": 255
  1926. },
  1927. "_contentSize": {
  1928. "__type__": "cc.Size",
  1929. "width": 200,
  1930. "height": 96
  1931. },
  1932. "_anchorPoint": {
  1933. "__type__": "cc.Vec2",
  1934. "x": 0.5,
  1935. "y": 0.5
  1936. },
  1937. "_position": {
  1938. "__type__": "cc.Vec3",
  1939. "x": 210,
  1940. "y": 0,
  1941. "z": 0
  1942. },
  1943. "_scale": {
  1944. "__type__": "cc.Vec3",
  1945. "x": 1,
  1946. "y": 1,
  1947. "z": 1
  1948. },
  1949. "_rotationX": 0,
  1950. "_rotationY": 0,
  1951. "_quat": {
  1952. "__type__": "cc.Quat",
  1953. "x": 0,
  1954. "y": 0,
  1955. "z": 0,
  1956. "w": 1
  1957. },
  1958. "_skewX": 0,
  1959. "_skewY": 0,
  1960. "_zIndex": 0,
  1961. "groupIndex": 0,
  1962. "_id": ""
  1963. },
  1964. {
  1965. "__type__": "cc.Node",
  1966. "_name": "btn_text",
  1967. "_objFlags": 0,
  1968. "_parent": {
  1969. "__id__": 54
  1970. },
  1971. "_children": [
  1972. {
  1973. "__id__": 56
  1974. }
  1975. ],
  1976. "_active": true,
  1977. "_level": 5,
  1978. "_components": [
  1979. {
  1980. "__id__": 59
  1981. }
  1982. ],
  1983. "_prefab": {
  1984. "__id__": 60
  1985. },
  1986. "_opacity": 255,
  1987. "_color": {
  1988. "__type__": "cc.Color",
  1989. "r": 255,
  1990. "g": 255,
  1991. "b": 255,
  1992. "a": 255
  1993. },
  1994. "_contentSize": {
  1995. "__type__": "cc.Size",
  1996. "width": 90,
  1997. "height": 40
  1998. },
  1999. "_anchorPoint": {
  2000. "__type__": "cc.Vec2",
  2001. "x": 0.5,
  2002. "y": 0.5
  2003. },
  2004. "_position": {
  2005. "__type__": "cc.Vec3",
  2006. "x": 0,
  2007. "y": 10,
  2008. "z": 0
  2009. },
  2010. "_scale": {
  2011. "__type__": "cc.Vec3",
  2012. "x": 1,
  2013. "y": 1,
  2014. "z": 1
  2015. },
  2016. "_rotationX": 0,
  2017. "_rotationY": 0,
  2018. "_quat": {
  2019. "__type__": "cc.Quat",
  2020. "x": 0,
  2021. "y": 0,
  2022. "z": 0,
  2023. "w": 1
  2024. },
  2025. "_skewX": 0,
  2026. "_skewY": 0,
  2027. "_zIndex": 0,
  2028. "groupIndex": 0,
  2029. "_id": ""
  2030. },
  2031. {
  2032. "__type__": "cc.PrivateNode",
  2033. "_name": "RICHTEXT_CHILD",
  2034. "_objFlags": 0,
  2035. "_parent": {
  2036. "__id__": 55
  2037. },
  2038. "_children": [],
  2039. "_active": true,
  2040. "_level": 6,
  2041. "_components": [
  2042. {
  2043. "__id__": 57
  2044. }
  2045. ],
  2046. "_prefab": {
  2047. "__id__": 58
  2048. },
  2049. "_opacity": 255,
  2050. "_color": {
  2051. "__type__": "cc.Color",
  2052. "r": 182,
  2053. "g": 137,
  2054. "b": 107,
  2055. "a": 255
  2056. },
  2057. "_contentSize": {
  2058. "__type__": "cc.Size",
  2059. "width": 90,
  2060. "height": 40
  2061. },
  2062. "_anchorPoint": {
  2063. "__type__": "cc.Vec2",
  2064. "x": 0,
  2065. "y": 0
  2066. },
  2067. "_position": {
  2068. "__type__": "cc.Vec3",
  2069. "x": -45,
  2070. "y": -20,
  2071. "z": 0
  2072. },
  2073. "_scale": {
  2074. "__type__": "cc.Vec3",
  2075. "x": 1,
  2076. "y": 1,
  2077. "z": 1
  2078. },
  2079. "_rotationX": 0,
  2080. "_rotationY": 0,
  2081. "_quat": {
  2082. "__type__": "cc.Quat",
  2083. "x": 0,
  2084. "y": 0,
  2085. "z": 0,
  2086. "w": 1
  2087. },
  2088. "_skewX": 0,
  2089. "_skewY": 0,
  2090. "_zIndex": -32768,
  2091. "groupIndex": 0,
  2092. "_id": ""
  2093. },
  2094. {
  2095. "__type__": "cc.Label",
  2096. "_name": "",
  2097. "_objFlags": 0,
  2098. "node": {
  2099. "__id__": 56
  2100. },
  2101. "_enabled": true,
  2102. "_srcBlendFactor": 1,
  2103. "_dstBlendFactor": 771,
  2104. "_useOriginalSize": true,
  2105. "_string": "群排行",
  2106. "_N$string": "群排行",
  2107. "_fontSize": 30,
  2108. "_lineHeight": 40,
  2109. "_enableWrapText": true,
  2110. "_N$file": null,
  2111. "_isSystemFontUsed": true,
  2112. "_spacingX": 0,
  2113. "_N$horizontalAlign": 0,
  2114. "_N$verticalAlign": 1,
  2115. "_N$fontFamily": "Arial",
  2116. "_N$overflow": 0,
  2117. "_id": "4ejPvHZH9G+KKdpJZbK8xW"
  2118. },
  2119. {
  2120. "__type__": "cc.PrefabInfo",
  2121. "root": {
  2122. "__id__": 1
  2123. },
  2124. "asset": {
  2125. "__uuid__": "cf09f681-edab-4bbb-9e85-11c0abe6fc35"
  2126. },
  2127. "fileId": "2efNUCiZVAHpGt0G3iDNsL",
  2128. "sync": false
  2129. },
  2130. {
  2131. "__type__": "cc.RichText",
  2132. "_name": "",
  2133. "_objFlags": 0,
  2134. "node": {
  2135. "__id__": 55
  2136. },
  2137. "_enabled": true,
  2138. "_N$string": "<b><color=#B6896B>群排行</color></b>",
  2139. "_N$horizontalAlign": 0,
  2140. "_N$fontSize": 30,
  2141. "_N$font": null,
  2142. "_N$maxWidth": 0,
  2143. "_N$lineHeight": 40,
  2144. "_N$imageAtlas": null,
  2145. "_N$handleTouchEvent": true,
  2146. "_id": "77YtKs0GdBOreTGI23+UtH"
  2147. },
  2148. {
  2149. "__type__": "cc.PrefabInfo",
  2150. "root": {
  2151. "__id__": 1
  2152. },
  2153. "asset": {
  2154. "__uuid__": "cf09f681-edab-4bbb-9e85-11c0abe6fc35"
  2155. },
  2156. "fileId": "d91OgmS+tJmY3M9OyeNLjr",
  2157. "sync": false
  2158. },
  2159. {
  2160. "__type__": "cc.Sprite",
  2161. "_name": "",
  2162. "_objFlags": 0,
  2163. "node": {
  2164. "__id__": 54
  2165. },
  2166. "_enabled": true,
  2167. "_srcBlendFactor": 770,
  2168. "_dstBlendFactor": 771,
  2169. "_spriteFrame": {
  2170. "__uuid__": "63140a8e-c2d9-41fd-bd26-96926d62aac6"
  2171. },
  2172. "_type": 0,
  2173. "_sizeMode": 0,
  2174. "_fillType": 0,
  2175. "_fillCenter": {
  2176. "__type__": "cc.Vec2",
  2177. "x": 0,
  2178. "y": 0
  2179. },
  2180. "_fillStart": 0,
  2181. "_fillRange": 0,
  2182. "_isTrimmedMode": false,
  2183. "_state": 0,
  2184. "_atlas": null,
  2185. "_id": "00vdh7iFRISrFntI2lyplE"
  2186. },
  2187. {
  2188. "__type__": "cc.Button",
  2189. "_name": "",
  2190. "_objFlags": 0,
  2191. "node": {
  2192. "__id__": 54
  2193. },
  2194. "_enabled": true,
  2195. "transition": 1,
  2196. "pressedColor": {
  2197. "__type__": "cc.Color",
  2198. "r": 120,
  2199. "g": 120,
  2200. "b": 120,
  2201. "a": 255
  2202. },
  2203. "hoverColor": {
  2204. "__type__": "cc.Color",
  2205. "r": 255,
  2206. "g": 255,
  2207. "b": 255,
  2208. "a": 255
  2209. },
  2210. "duration": 0.1,
  2211. "zoomScale": 1.2,
  2212. "clickEvents": [
  2213. {
  2214. "__id__": 63
  2215. }
  2216. ],
  2217. "_N$interactable": true,
  2218. "_N$enableAutoGrayEffect": false,
  2219. "_N$normalColor": {
  2220. "__type__": "cc.Color",
  2221. "r": 255,
  2222. "g": 255,
  2223. "b": 255,
  2224. "a": 255
  2225. },
  2226. "_N$disabledColor": {
  2227. "__type__": "cc.Color",
  2228. "r": 255,
  2229. "g": 255,
  2230. "b": 255,
  2231. "a": 255
  2232. },
  2233. "_N$normalSprite": {
  2234. "__uuid__": "63140a8e-c2d9-41fd-bd26-96926d62aac6"
  2235. },
  2236. "_N$pressedSprite": {
  2237. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  2238. },
  2239. "pressedSprite": {
  2240. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  2241. },
  2242. "_N$hoverSprite": {
  2243. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  2244. },
  2245. "hoverSprite": {
  2246. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  2247. },
  2248. "_N$disabledSprite": {
  2249. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  2250. },
  2251. "_N$target": {
  2252. "__id__": 54
  2253. },
  2254. "_id": "a17/dVYWRF+4pp+nCCuZE/"
  2255. },
  2256. {
  2257. "__type__": "cc.ClickEvent",
  2258. "target": {
  2259. "__id__": 1
  2260. },
  2261. "component": "GameRank",
  2262. "handler": "handleTab",
  2263. "customEventData": "2"
  2264. },
  2265. {
  2266. "__type__": "e7ca9t9kmhCRISKFXOOAGhr",
  2267. "_name": "",
  2268. "_objFlags": 0,
  2269. "node": {
  2270. "__id__": 54
  2271. },
  2272. "_enabled": true,
  2273. "bgFrames": [
  2274. {
  2275. "__uuid__": "63140a8e-c2d9-41fd-bd26-96926d62aac6"
  2276. },
  2277. {
  2278. "__uuid__": "efb96997-7ce2-4d20-9e49-961f154945ea"
  2279. }
  2280. ],
  2281. "titleRichText": {
  2282. "__id__": 59
  2283. },
  2284. "tabText": "群排行",
  2285. "_id": "fdZUEQlFZEf4kRRcRf5Bo5"
  2286. },
  2287. {
  2288. "__type__": "cc.PrefabInfo",
  2289. "root": {
  2290. "__id__": 1
  2291. },
  2292. "asset": {
  2293. "__uuid__": "cf09f681-edab-4bbb-9e85-11c0abe6fc35"
  2294. },
  2295. "fileId": "8afR3TJlFLpIkMr1dV0x7q",
  2296. "sync": false
  2297. },
  2298. {
  2299. "__type__": "cc.Widget",
  2300. "_name": "",
  2301. "_objFlags": 0,
  2302. "node": {
  2303. "__id__": 28
  2304. },
  2305. "_enabled": true,
  2306. "alignMode": 1,
  2307. "_target": null,
  2308. "_alignFlags": 17,
  2309. "_left": 0,
  2310. "_right": 0,
  2311. "_top": 65,
  2312. "_bottom": 0,
  2313. "_verticalCenter": 0,
  2314. "_horizontalCenter": 0,
  2315. "_isAbsLeft": true,
  2316. "_isAbsRight": true,
  2317. "_isAbsTop": true,
  2318. "_isAbsBottom": true,
  2319. "_isAbsHorizontalCenter": true,
  2320. "_isAbsVerticalCenter": true,
  2321. "_originalWidth": 0,
  2322. "_originalHeight": 0,
  2323. "_id": "34DF6YAfFFPbwtB3YxL/IE"
  2324. },
  2325. {
  2326. "__type__": "cc.Layout",
  2327. "_name": "",
  2328. "_objFlags": 0,
  2329. "node": {
  2330. "__id__": 28
  2331. },
  2332. "_enabled": true,
  2333. "_layoutSize": {
  2334. "__type__": "cc.Size",
  2335. "width": 620,
  2336. "height": 96
  2337. },
  2338. "_resize": 0,
  2339. "_N$layoutType": 1,
  2340. "_N$padding": 0,
  2341. "_N$cellSize": {
  2342. "__type__": "cc.Size",
  2343. "width": 40,
  2344. "height": 40
  2345. },
  2346. "_N$startAxis": 0,
  2347. "_N$paddingLeft": 0,
  2348. "_N$paddingRight": 0,
  2349. "_N$paddingTop": 0,
  2350. "_N$paddingBottom": 0,
  2351. "_N$spacingX": 10,
  2352. "_N$spacingY": 0,
  2353. "_N$verticalDirection": 1,
  2354. "_N$horizontalDirection": 0,
  2355. "_id": "ef/VXrNABKFrKzCr6QA2fT"
  2356. },
  2357. {
  2358. "__type__": "cc.PrefabInfo",
  2359. "root": {
  2360. "__id__": 1
  2361. },
  2362. "asset": {
  2363. "__uuid__": "cf09f681-edab-4bbb-9e85-11c0abe6fc35"
  2364. },
  2365. "fileId": "094dH6f3NPBqRXrsPQZiNW",
  2366. "sync": false
  2367. },
  2368. {
  2369. "__type__": "cc.Node",
  2370. "_name": "wechatFriendNode",
  2371. "_objFlags": 0,
  2372. "_parent": {
  2373. "__id__": 6
  2374. },
  2375. "_children": [],
  2376. "_active": false,
  2377. "_level": 3,
  2378. "_components": [
  2379. {
  2380. "__id__": 70
  2381. },
  2382. {
  2383. "__id__": 71
  2384. },
  2385. {
  2386. "__id__": 72
  2387. }
  2388. ],
  2389. "_prefab": {
  2390. "__id__": 73
  2391. },
  2392. "_opacity": 255,
  2393. "_color": {
  2394. "__type__": "cc.Color",
  2395. "r": 255,
  2396. "g": 255,
  2397. "b": 255,
  2398. "a": 255
  2399. },
  2400. "_contentSize": {
  2401. "__type__": "cc.Size",
  2402. "width": 644,
  2403. "height": 844
  2404. },
  2405. "_anchorPoint": {
  2406. "__type__": "cc.Vec2",
  2407. "x": 0.5,
  2408. "y": 0.5
  2409. },
  2410. "_position": {
  2411. "__type__": "cc.Vec3",
  2412. "x": 0,
  2413. "y": -27,
  2414. "z": 0
  2415. },
  2416. "_scale": {
  2417. "__type__": "cc.Vec3",
  2418. "x": 1,
  2419. "y": 1,
  2420. "z": 1
  2421. },
  2422. "_rotationX": 0,
  2423. "_rotationY": 0,
  2424. "_quat": {
  2425. "__type__": "cc.Quat",
  2426. "x": 0,
  2427. "y": 0,
  2428. "z": 0,
  2429. "w": 1
  2430. },
  2431. "_skewX": 0,
  2432. "_skewY": 0,
  2433. "_zIndex": 0,
  2434. "groupIndex": 0,
  2435. "_id": ""
  2436. },
  2437. {
  2438. "__type__": "cc.Widget",
  2439. "_name": "",
  2440. "_objFlags": 0,
  2441. "node": {
  2442. "__id__": 69
  2443. },
  2444. "_enabled": true,
  2445. "alignMode": 1,
  2446. "_target": null,
  2447. "_alignFlags": 1,
  2448. "_left": 0,
  2449. "_right": 0,
  2450. "_top": 175,
  2451. "_bottom": 121,
  2452. "_verticalCenter": 0,
  2453. "_horizontalCenter": 0,
  2454. "_isAbsLeft": true,
  2455. "_isAbsRight": true,
  2456. "_isAbsTop": true,
  2457. "_isAbsBottom": true,
  2458. "_isAbsHorizontalCenter": true,
  2459. "_isAbsVerticalCenter": true,
  2460. "_originalWidth": 0,
  2461. "_originalHeight": 844,
  2462. "_id": "c9IZZiB5FCsaDEW+oDs5d9"
  2463. },
  2464. {
  2465. "__type__": "6e7dbRhB7dF8o783HyR8wlY",
  2466. "_name": "",
  2467. "_objFlags": 0,
  2468. "node": {
  2469. "__id__": 69
  2470. },
  2471. "_enabled": true,
  2472. "_id": "45tzxryLFLN4WnxheUpXgF"
  2473. },
  2474. {
  2475. "__type__": "cc.WXSubContextView",
  2476. "_name": "",
  2477. "_objFlags": 0,
  2478. "node": {
  2479. "__id__": 69
  2480. },
  2481. "_enabled": true,
  2482. "_id": "f8IUB+TWZBsKfVeOhsnwO+"
  2483. },
  2484. {
  2485. "__type__": "cc.PrefabInfo",
  2486. "root": {
  2487. "__id__": 1
  2488. },
  2489. "asset": {
  2490. "__uuid__": "cf09f681-edab-4bbb-9e85-11c0abe6fc35"
  2491. },
  2492. "fileId": "49vm5JUElL9Yva6kdsui6y",
  2493. "sync": false
  2494. },
  2495. {
  2496. "__type__": "cc.Node",
  2497. "_name": "countryNode",
  2498. "_objFlags": 0,
  2499. "_parent": {
  2500. "__id__": 6
  2501. },
  2502. "_children": [
  2503. {
  2504. "__id__": 75
  2505. },
  2506. {
  2507. "__id__": 84
  2508. }
  2509. ],
  2510. "_active": true,
  2511. "_level": 3,
  2512. "_components": [
  2513. {
  2514. "__id__": 116
  2515. },
  2516. {
  2517. "__id__": 117
  2518. }
  2519. ],
  2520. "_prefab": {
  2521. "__id__": 118
  2522. },
  2523. "_opacity": 255,
  2524. "_color": {
  2525. "__type__": "cc.Color",
  2526. "r": 255,
  2527. "g": 255,
  2528. "b": 255,
  2529. "a": 255
  2530. },
  2531. "_contentSize": {
  2532. "__type__": "cc.Size",
  2533. "width": 644,
  2534. "height": 844
  2535. },
  2536. "_anchorPoint": {
  2537. "__type__": "cc.Vec2",
  2538. "x": 0.5,
  2539. "y": 0.5
  2540. },
  2541. "_position": {
  2542. "__type__": "cc.Vec3",
  2543. "x": 0,
  2544. "y": -27,
  2545. "z": 0
  2546. },
  2547. "_scale": {
  2548. "__type__": "cc.Vec3",
  2549. "x": 1,
  2550. "y": 1,
  2551. "z": 1
  2552. },
  2553. "_rotationX": 0,
  2554. "_rotationY": 0,
  2555. "_quat": {
  2556. "__type__": "cc.Quat",
  2557. "x": 0,
  2558. "y": 0,
  2559. "z": 0,
  2560. "w": 1
  2561. },
  2562. "_skewX": 0,
  2563. "_skewY": 0,
  2564. "_zIndex": 0,
  2565. "groupIndex": 0,
  2566. "_id": ""
  2567. },
  2568. {
  2569. "__type__": "cc.Node",
  2570. "_name": "scrollview",
  2571. "_objFlags": 0,
  2572. "_parent": {
  2573. "__id__": 74
  2574. },
  2575. "_children": [
  2576. {
  2577. "__id__": 76
  2578. }
  2579. ],
  2580. "_active": true,
  2581. "_level": 4,
  2582. "_components": [
  2583. {
  2584. "__id__": 80
  2585. },
  2586. {
  2587. "__id__": 81
  2588. },
  2589. {
  2590. "__id__": 82
  2591. }
  2592. ],
  2593. "_prefab": {
  2594. "__id__": 83
  2595. },
  2596. "_opacity": 255,
  2597. "_color": {
  2598. "__type__": "cc.Color",
  2599. "r": 255,
  2600. "g": 255,
  2601. "b": 255,
  2602. "a": 255
  2603. },
  2604. "_contentSize": {
  2605. "__type__": "cc.Size",
  2606. "width": 644,
  2607. "height": 692
  2608. },
  2609. "_anchorPoint": {
  2610. "__type__": "cc.Vec2",
  2611. "x": 0.5,
  2612. "y": 0.5
  2613. },
  2614. "_position": {
  2615. "__type__": "cc.Vec3",
  2616. "x": 0,
  2617. "y": 76,
  2618. "z": 0
  2619. },
  2620. "_scale": {
  2621. "__type__": "cc.Vec3",
  2622. "x": 1,
  2623. "y": 1,
  2624. "z": 1
  2625. },
  2626. "_rotationX": 0,
  2627. "_rotationY": 0,
  2628. "_quat": {
  2629. "__type__": "cc.Quat",
  2630. "x": 0,
  2631. "y": 0,
  2632. "z": 0,
  2633. "w": 1
  2634. },
  2635. "_skewX": 0,
  2636. "_skewY": 0,
  2637. "_zIndex": 0,
  2638. "groupIndex": 0,
  2639. "_id": ""
  2640. },
  2641. {
  2642. "__type__": "cc.Node",
  2643. "_name": "layout",
  2644. "_objFlags": 0,
  2645. "_parent": {
  2646. "__id__": 75
  2647. },
  2648. "_children": [],
  2649. "_active": true,
  2650. "_level": 5,
  2651. "_components": [
  2652. {
  2653. "__id__": 77
  2654. },
  2655. {
  2656. "__id__": 78
  2657. }
  2658. ],
  2659. "_prefab": {
  2660. "__id__": 79
  2661. },
  2662. "_opacity": 255,
  2663. "_color": {
  2664. "__type__": "cc.Color",
  2665. "r": 255,
  2666. "g": 255,
  2667. "b": 255,
  2668. "a": 255
  2669. },
  2670. "_contentSize": {
  2671. "__type__": "cc.Size",
  2672. "width": 644,
  2673. "height": 692
  2674. },
  2675. "_anchorPoint": {
  2676. "__type__": "cc.Vec2",
  2677. "x": 0.5,
  2678. "y": 1
  2679. },
  2680. "_position": {
  2681. "__type__": "cc.Vec3",
  2682. "x": 0,
  2683. "y": 346,
  2684. "z": 0
  2685. },
  2686. "_scale": {
  2687. "__type__": "cc.Vec3",
  2688. "x": 1,
  2689. "y": 1,
  2690. "z": 1
  2691. },
  2692. "_rotationX": 0,
  2693. "_rotationY": 0,
  2694. "_quat": {
  2695. "__type__": "cc.Quat",
  2696. "x": 0,
  2697. "y": 0,
  2698. "z": 0,
  2699. "w": 1
  2700. },
  2701. "_skewX": 0,
  2702. "_skewY": 0,
  2703. "_zIndex": 0,
  2704. "groupIndex": 0,
  2705. "_id": ""
  2706. },
  2707. {
  2708. "__type__": "cc.Layout",
  2709. "_name": "",
  2710. "_objFlags": 0,
  2711. "node": {
  2712. "__id__": 76
  2713. },
  2714. "_enabled": true,
  2715. "_layoutSize": {
  2716. "__type__": "cc.Size",
  2717. "width": 644,
  2718. "height": 692
  2719. },
  2720. "_resize": 1,
  2721. "_N$layoutType": 2,
  2722. "_N$padding": 0,
  2723. "_N$cellSize": {
  2724. "__type__": "cc.Size",
  2725. "width": 40,
  2726. "height": 40
  2727. },
  2728. "_N$startAxis": 0,
  2729. "_N$paddingLeft": 0,
  2730. "_N$paddingRight": 0,
  2731. "_N$paddingTop": 0,
  2732. "_N$paddingBottom": 0,
  2733. "_N$spacingX": 0,
  2734. "_N$spacingY": 8,
  2735. "_N$verticalDirection": 1,
  2736. "_N$horizontalDirection": 0,
  2737. "_id": "f8auach/RDU7wNpWyjaBgm"
  2738. },
  2739. {
  2740. "__type__": "cc.Widget",
  2741. "_name": "",
  2742. "_objFlags": 0,
  2743. "node": {
  2744. "__id__": 76
  2745. },
  2746. "_enabled": true,
  2747. "alignMode": 1,
  2748. "_target": null,
  2749. "_alignFlags": 1,
  2750. "_left": 0,
  2751. "_right": 0,
  2752. "_top": 0,
  2753. "_bottom": 0,
  2754. "_verticalCenter": 0,
  2755. "_horizontalCenter": 0,
  2756. "_isAbsLeft": true,
  2757. "_isAbsRight": true,
  2758. "_isAbsTop": true,
  2759. "_isAbsBottom": true,
  2760. "_isAbsHorizontalCenter": true,
  2761. "_isAbsVerticalCenter": true,
  2762. "_originalWidth": 0,
  2763. "_originalHeight": 692,
  2764. "_id": "265zYizFRLXY+P9TAbp3vN"
  2765. },
  2766. {
  2767. "__type__": "cc.PrefabInfo",
  2768. "root": {
  2769. "__id__": 1
  2770. },
  2771. "asset": {
  2772. "__uuid__": "cf09f681-edab-4bbb-9e85-11c0abe6fc35"
  2773. },
  2774. "fileId": "113PVBuLZE96QlZfk197fH",
  2775. "sync": false
  2776. },
  2777. {
  2778. "__type__": "cc.ScrollView",
  2779. "_name": "",
  2780. "_objFlags": 0,
  2781. "node": {
  2782. "__id__": 75
  2783. },
  2784. "_enabled": true,
  2785. "content": {
  2786. "__id__": 76
  2787. },
  2788. "horizontal": false,
  2789. "vertical": false,
  2790. "inertia": true,
  2791. "brake": 0.75,
  2792. "elastic": true,
  2793. "bounceDuration": 0.23,
  2794. "scrollEvents": [],
  2795. "cancelInnerEvents": true,
  2796. "_N$horizontalScrollBar": null,
  2797. "_N$verticalScrollBar": null,
  2798. "_id": "c5r8lHh6FJPIb5hIEdMxzI"
  2799. },
  2800. {
  2801. "__type__": "cc.Mask",
  2802. "_name": "",
  2803. "_objFlags": 0,
  2804. "node": {
  2805. "__id__": 75
  2806. },
  2807. "_enabled": true,
  2808. "_srcBlendFactor": 770,
  2809. "_dstBlendFactor": 771,
  2810. "_spriteFrame": null,
  2811. "_type": 0,
  2812. "_segments": 64,
  2813. "_N$alphaThreshold": 0,
  2814. "_N$inverted": false,
  2815. "_id": "49EIkGsKdIYpjdC5OvyoFv"
  2816. },
  2817. {
  2818. "__type__": "cc.Widget",
  2819. "_name": "",
  2820. "_objFlags": 0,
  2821. "node": {
  2822. "__id__": 75
  2823. },
  2824. "_enabled": true,
  2825. "alignMode": 1,
  2826. "_target": null,
  2827. "_alignFlags": 45,
  2828. "_left": 0,
  2829. "_right": 0,
  2830. "_top": 0,
  2831. "_bottom": 152,
  2832. "_verticalCenter": 0,
  2833. "_horizontalCenter": 0,
  2834. "_isAbsLeft": true,
  2835. "_isAbsRight": true,
  2836. "_isAbsTop": true,
  2837. "_isAbsBottom": true,
  2838. "_isAbsHorizontalCenter": true,
  2839. "_isAbsVerticalCenter": true,
  2840. "_originalWidth": 240,
  2841. "_originalHeight": 250,
  2842. "_id": "f7f31Ijh9GgbLD+sDvoG2V"
  2843. },
  2844. {
  2845. "__type__": "cc.PrefabInfo",
  2846. "root": {
  2847. "__id__": 1
  2848. },
  2849. "asset": {
  2850. "__uuid__": "cf09f681-edab-4bbb-9e85-11c0abe6fc35"
  2851. },
  2852. "fileId": "1dvovBIQtPg6K+g71W0nt+",
  2853. "sync": false
  2854. },
  2855. {
  2856. "__type__": "cc.Node",
  2857. "_name": "game_rank_item",
  2858. "_objFlags": 0,
  2859. "_parent": {
  2860. "__id__": 74
  2861. },
  2862. "_children": [
  2863. {
  2864. "__id__": 85
  2865. },
  2866. {
  2867. "__id__": 88
  2868. },
  2869. {
  2870. "__id__": 91
  2871. },
  2872. {
  2873. "__id__": 95
  2874. },
  2875. {
  2876. "__id__": 102
  2877. },
  2878. {
  2879. "__id__": 105
  2880. }
  2881. ],
  2882. "_active": false,
  2883. "_level": 4,
  2884. "_components": [
  2885. {
  2886. "__id__": 113
  2887. },
  2888. {
  2889. "__id__": 114
  2890. }
  2891. ],
  2892. "_prefab": {
  2893. "__id__": 115
  2894. },
  2895. "_opacity": 255,
  2896. "_color": {
  2897. "__type__": "cc.Color",
  2898. "r": 255,
  2899. "g": 255,
  2900. "b": 255,
  2901. "a": 255
  2902. },
  2903. "_contentSize": {
  2904. "__type__": "cc.Size",
  2905. "width": 644,
  2906. "height": 134
  2907. },
  2908. "_anchorPoint": {
  2909. "__type__": "cc.Vec2",
  2910. "x": 0.5,
  2911. "y": 0.5
  2912. },
  2913. "_position": {
  2914. "__type__": "cc.Vec3",
  2915. "x": 0,
  2916. "y": -355,
  2917. "z": 0
  2918. },
  2919. "_scale": {
  2920. "__type__": "cc.Vec3",
  2921. "x": 1,
  2922. "y": 1,
  2923. "z": 1
  2924. },
  2925. "_rotationX": 0,
  2926. "_rotationY": 0,
  2927. "_quat": {
  2928. "__type__": "cc.Quat",
  2929. "x": 0,
  2930. "y": 0,
  2931. "z": 0,
  2932. "w": 1
  2933. },
  2934. "_skewX": 0,
  2935. "_skewY": 0,
  2936. "_zIndex": 0,
  2937. "groupIndex": 0,
  2938. "_id": ""
  2939. },
  2940. {
  2941. "__type__": "cc.Node",
  2942. "_name": "sprite",
  2943. "_objFlags": 0,
  2944. "_parent": {
  2945. "__id__": 84
  2946. },
  2947. "_children": [],
  2948. "_active": true,
  2949. "_level": 2,
  2950. "_components": [
  2951. {
  2952. "__id__": 86
  2953. }
  2954. ],
  2955. "_prefab": {
  2956. "__id__": 87
  2957. },
  2958. "_opacity": 255,
  2959. "_color": {
  2960. "__type__": "cc.Color",
  2961. "r": 255,
  2962. "g": 255,
  2963. "b": 255,
  2964. "a": 255
  2965. },
  2966. "_contentSize": {
  2967. "__type__": "cc.Size",
  2968. "width": 95,
  2969. "height": 95
  2970. },
  2971. "_anchorPoint": {
  2972. "__type__": "cc.Vec2",
  2973. "x": 0.5,
  2974. "y": 0.5
  2975. },
  2976. "_position": {
  2977. "__type__": "cc.Vec3",
  2978. "x": -163,
  2979. "y": 3,
  2980. "z": 0
  2981. },
  2982. "_scale": {
  2983. "__type__": "cc.Vec3",
  2984. "x": 1,
  2985. "y": 1,
  2986. "z": 1
  2987. },
  2988. "_rotationX": 0,
  2989. "_rotationY": 0,
  2990. "_quat": {
  2991. "__type__": "cc.Quat",
  2992. "x": 0,
  2993. "y": 0,
  2994. "z": 0,
  2995. "w": 1
  2996. },
  2997. "_skewX": 0,
  2998. "_skewY": 0,
  2999. "_zIndex": 0,
  3000. "groupIndex": 0,
  3001. "_id": ""
  3002. },
  3003. {
  3004. "__type__": "cc.Sprite",
  3005. "_name": "",
  3006. "_objFlags": 0,
  3007. "node": {
  3008. "__id__": 85
  3009. },
  3010. "_enabled": true,
  3011. "_srcBlendFactor": 770,
  3012. "_dstBlendFactor": 771,
  3013. "_spriteFrame": {
  3014. "__uuid__": "440d27dc-97e0-4316-9af8-52bc3f94d5c1"
  3015. },
  3016. "_type": 0,
  3017. "_sizeMode": 0,
  3018. "_fillType": 0,
  3019. "_fillCenter": {
  3020. "__type__": "cc.Vec2",
  3021. "x": 0,
  3022. "y": 0
  3023. },
  3024. "_fillStart": 0,
  3025. "_fillRange": 0,
  3026. "_isTrimmedMode": true,
  3027. "_state": 0,
  3028. "_atlas": null,
  3029. "_id": "47GfLW6ZBPPIKjWXJFye/s"
  3030. },
  3031. {
  3032. "__type__": "cc.PrefabInfo",
  3033. "root": {
  3034. "__id__": 1
  3035. },
  3036. "asset": {
  3037. "__uuid__": "cf09f681-edab-4bbb-9e85-11c0abe6fc35"
  3038. },
  3039. "fileId": "678vpZ77dJv7CEBTOBub+r",
  3040. "sync": false
  3041. },
  3042. {
  3043. "__type__": "cc.Node",
  3044. "_name": "gameRankBg",
  3045. "_objFlags": 0,
  3046. "_parent": {
  3047. "__id__": 84
  3048. },
  3049. "_children": [],
  3050. "_active": true,
  3051. "_level": 2,
  3052. "_components": [
  3053. {
  3054. "__id__": 89
  3055. }
  3056. ],
  3057. "_prefab": {
  3058. "__id__": 90
  3059. },
  3060. "_opacity": 255,
  3061. "_color": {
  3062. "__type__": "cc.Color",
  3063. "r": 255,
  3064. "g": 255,
  3065. "b": 255,
  3066. "a": 255
  3067. },
  3068. "_contentSize": {
  3069. "__type__": "cc.Size",
  3070. "width": 644,
  3071. "height": 134
  3072. },
  3073. "_anchorPoint": {
  3074. "__type__": "cc.Vec2",
  3075. "x": 0.5,
  3076. "y": 0.5
  3077. },
  3078. "_position": {
  3079. "__type__": "cc.Vec3",
  3080. "x": 0,
  3081. "y": 0,
  3082. "z": 0
  3083. },
  3084. "_scale": {
  3085. "__type__": "cc.Vec3",
  3086. "x": 1,
  3087. "y": 1,
  3088. "z": 1
  3089. },
  3090. "_rotationX": 0,
  3091. "_rotationY": 0,
  3092. "_quat": {
  3093. "__type__": "cc.Quat",
  3094. "x": 0,
  3095. "y": 0,
  3096. "z": 0,
  3097. "w": 1
  3098. },
  3099. "_skewX": 0,
  3100. "_skewY": 0,
  3101. "_zIndex": 0,
  3102. "groupIndex": 0,
  3103. "_id": ""
  3104. },
  3105. {
  3106. "__type__": "cc.Sprite",
  3107. "_name": "",
  3108. "_objFlags": 0,
  3109. "node": {
  3110. "__id__": 88
  3111. },
  3112. "_enabled": true,
  3113. "_srcBlendFactor": 770,
  3114. "_dstBlendFactor": 771,
  3115. "_spriteFrame": {
  3116. "__uuid__": "6f177754-7101-4f15-bbbd-8bda9989e769"
  3117. },
  3118. "_type": 0,
  3119. "_sizeMode": 1,
  3120. "_fillType": 0,
  3121. "_fillCenter": {
  3122. "__type__": "cc.Vec2",
  3123. "x": 0,
  3124. "y": 0
  3125. },
  3126. "_fillStart": 0,
  3127. "_fillRange": 0,
  3128. "_isTrimmedMode": true,
  3129. "_state": 0,
  3130. "_atlas": null,
  3131. "_id": "dboajQbnxASLi6tiPmpXTM"
  3132. },
  3133. {
  3134. "__type__": "cc.PrefabInfo",
  3135. "root": {
  3136. "__id__": 1
  3137. },
  3138. "asset": {
  3139. "__uuid__": "cf09f681-edab-4bbb-9e85-11c0abe6fc35"
  3140. },
  3141. "fileId": "1eLW46GDVH3aU//q0V24bV",
  3142. "sync": false
  3143. },
  3144. {
  3145. "__type__": "cc.Node",
  3146. "_name": "rankSprite",
  3147. "_objFlags": 0,
  3148. "_parent": {
  3149. "__id__": 84
  3150. },
  3151. "_children": [],
  3152. "_active": true,
  3153. "_level": 2,
  3154. "_components": [
  3155. {
  3156. "__id__": 92
  3157. },
  3158. {
  3159. "__id__": 93
  3160. }
  3161. ],
  3162. "_prefab": {
  3163. "__id__": 94
  3164. },
  3165. "_opacity": 255,
  3166. "_color": {
  3167. "__type__": "cc.Color",
  3168. "r": 255,
  3169. "g": 255,
  3170. "b": 255,
  3171. "a": 255
  3172. },
  3173. "_contentSize": {
  3174. "__type__": "cc.Size",
  3175. "width": 66,
  3176. "height": 68
  3177. },
  3178. "_anchorPoint": {
  3179. "__type__": "cc.Vec2",
  3180. "x": 0.5,
  3181. "y": 0.5
  3182. },
  3183. "_position": {
  3184. "__type__": "cc.Vec3",
  3185. "x": -269,
  3186. "y": 0,
  3187. "z": 0
  3188. },
  3189. "_scale": {
  3190. "__type__": "cc.Vec3",
  3191. "x": 1,
  3192. "y": 1,
  3193. "z": 1
  3194. },
  3195. "_rotationX": 0,
  3196. "_rotationY": 0,
  3197. "_quat": {
  3198. "__type__": "cc.Quat",
  3199. "x": 0,
  3200. "y": 0,
  3201. "z": 0,
  3202. "w": 1
  3203. },
  3204. "_skewX": 0,
  3205. "_skewY": 0,
  3206. "_zIndex": 0,
  3207. "groupIndex": 0,
  3208. "_id": ""
  3209. },
  3210. {
  3211. "__type__": "cc.Sprite",
  3212. "_name": "",
  3213. "_objFlags": 0,
  3214. "node": {
  3215. "__id__": 91
  3216. },
  3217. "_enabled": true,
  3218. "_srcBlendFactor": 770,
  3219. "_dstBlendFactor": 771,
  3220. "_spriteFrame": {
  3221. "__uuid__": "942165e1-1277-4cd8-ad91-daa4a9c65ac1"
  3222. },
  3223. "_type": 0,
  3224. "_sizeMode": 1,
  3225. "_fillType": 0,
  3226. "_fillCenter": {
  3227. "__type__": "cc.Vec2",
  3228. "x": 0,
  3229. "y": 0
  3230. },
  3231. "_fillStart": 0,
  3232. "_fillRange": 0,
  3233. "_isTrimmedMode": true,
  3234. "_state": 0,
  3235. "_atlas": null,
  3236. "_id": "7dWQ6/bLFPILewzQZ83fup"
  3237. },
  3238. {
  3239. "__type__": "cc.Widget",
  3240. "_name": "",
  3241. "_objFlags": 0,
  3242. "node": {
  3243. "__id__": 91
  3244. },
  3245. "_enabled": true,
  3246. "alignMode": 1,
  3247. "_target": null,
  3248. "_alignFlags": 8,
  3249. "_left": 20,
  3250. "_right": 0,
  3251. "_top": 0,
  3252. "_bottom": 0,
  3253. "_verticalCenter": 0,
  3254. "_horizontalCenter": 0,
  3255. "_isAbsLeft": true,
  3256. "_isAbsRight": true,
  3257. "_isAbsTop": true,
  3258. "_isAbsBottom": true,
  3259. "_isAbsHorizontalCenter": true,
  3260. "_isAbsVerticalCenter": true,
  3261. "_originalWidth": 0,
  3262. "_originalHeight": 0,
  3263. "_id": "34HmZJf6NJMbJt6RzvwhrI"
  3264. },
  3265. {
  3266. "__type__": "cc.PrefabInfo",
  3267. "root": {
  3268. "__id__": 1
  3269. },
  3270. "asset": {
  3271. "__uuid__": "cf09f681-edab-4bbb-9e85-11c0abe6fc35"
  3272. },
  3273. "fileId": "57twoAvtFCf4rCONJ1b6sU",
  3274. "sync": false
  3275. },
  3276. {
  3277. "__type__": "cc.Node",
  3278. "_name": "rankRichtext",
  3279. "_objFlags": 0,
  3280. "_parent": {
  3281. "__id__": 84
  3282. },
  3283. "_children": [
  3284. {
  3285. "__id__": 96
  3286. }
  3287. ],
  3288. "_active": false,
  3289. "_level": 2,
  3290. "_components": [
  3291. {
  3292. "__id__": 100
  3293. }
  3294. ],
  3295. "_prefab": {
  3296. "__id__": 101
  3297. },
  3298. "_opacity": 255,
  3299. "_color": {
  3300. "__type__": "cc.Color",
  3301. "r": 255,
  3302. "g": 255,
  3303. "b": 255,
  3304. "a": 255
  3305. },
  3306. "_contentSize": {
  3307. "__type__": "cc.Size",
  3308. "width": 100,
  3309. "height": 40
  3310. },
  3311. "_anchorPoint": {
  3312. "__type__": "cc.Vec2",
  3313. "x": 0.5,
  3314. "y": 0.5
  3315. },
  3316. "_position": {
  3317. "__type__": "cc.Vec3",
  3318. "x": -267,
  3319. "y": 0,
  3320. "z": 0
  3321. },
  3322. "_scale": {
  3323. "__type__": "cc.Vec3",
  3324. "x": 1,
  3325. "y": 1,
  3326. "z": 1
  3327. },
  3328. "_rotationX": 0,
  3329. "_rotationY": 0,
  3330. "_quat": {
  3331. "__type__": "cc.Quat",
  3332. "x": 0,
  3333. "y": 0,
  3334. "z": 0,
  3335. "w": 1
  3336. },
  3337. "_skewX": 0,
  3338. "_skewY": 0,
  3339. "_zIndex": 0,
  3340. "groupIndex": 0,
  3341. "_id": ""
  3342. },
  3343. {
  3344. "__type__": "cc.PrivateNode",
  3345. "_name": "RICHTEXT_CHILD",
  3346. "_objFlags": 0,
  3347. "_parent": {
  3348. "__id__": 95
  3349. },
  3350. "_children": [],
  3351. "_active": false,
  3352. "_level": 3,
  3353. "_components": [
  3354. {
  3355. "__id__": 97
  3356. },
  3357. {
  3358. "__id__": 98
  3359. }
  3360. ],
  3361. "_prefab": {
  3362. "__id__": 99
  3363. },
  3364. "_opacity": 255,
  3365. "_color": {
  3366. "__type__": "cc.Color",
  3367. "r": 255,
  3368. "g": 255,
  3369. "b": 255,
  3370. "a": 255
  3371. },
  3372. "_contentSize": {
  3373. "__type__": "cc.Size",
  3374. "width": 71.57,
  3375. "height": 40
  3376. },
  3377. "_anchorPoint": {
  3378. "__type__": "cc.Vec2",
  3379. "x": 0,
  3380. "y": 0
  3381. },
  3382. "_position": {
  3383. "__type__": "cc.Vec3",
  3384. "x": -35.785,
  3385. "y": -20,
  3386. "z": 0
  3387. },
  3388. "_scale": {
  3389. "__type__": "cc.Vec3",
  3390. "x": 1,
  3391. "y": 1,
  3392. "z": 1
  3393. },
  3394. "_rotationX": 0,
  3395. "_rotationY": 0,
  3396. "_quat": {
  3397. "__type__": "cc.Quat",
  3398. "x": 0,
  3399. "y": 0,
  3400. "z": 0,
  3401. "w": 1
  3402. },
  3403. "_skewX": 0,
  3404. "_skewY": 0,
  3405. "_zIndex": -32768,
  3406. "groupIndex": 0,
  3407. "_id": ""
  3408. },
  3409. {
  3410. "__type__": "cc.Label",
  3411. "_name": "",
  3412. "_objFlags": 0,
  3413. "node": {
  3414. "__id__": 96
  3415. },
  3416. "_enabled": true,
  3417. "_srcBlendFactor": 1,
  3418. "_dstBlendFactor": 771,
  3419. "_useOriginalSize": true,
  3420. "_string": "100+",
  3421. "_N$string": "100+",
  3422. "_fontSize": 30,
  3423. "_lineHeight": 40,
  3424. "_enableWrapText": true,
  3425. "_N$file": null,
  3426. "_isSystemFontUsed": true,
  3427. "_spacingX": 0,
  3428. "_N$horizontalAlign": 0,
  3429. "_N$verticalAlign": 1,
  3430. "_N$fontFamily": "Arial",
  3431. "_N$overflow": 0,
  3432. "_id": "4duejC1rZMQZ9F9gkPjDZp"
  3433. },
  3434. {
  3435. "__type__": "cc.LabelOutline",
  3436. "_name": "",
  3437. "_objFlags": 0,
  3438. "node": {
  3439. "__id__": 96
  3440. },
  3441. "_enabled": true,
  3442. "_color": {
  3443. "__type__": "cc.Color",
  3444. "r": 105,
  3445. "g": 46,
  3446. "b": 14,
  3447. "a": 255
  3448. },
  3449. "_width": 2,
  3450. "_id": "3fJzD8m3FHjZhj6C9MkWKt"
  3451. },
  3452. {
  3453. "__type__": "cc.PrefabInfo",
  3454. "root": {
  3455. "__id__": 1
  3456. },
  3457. "asset": {
  3458. "__uuid__": "cf09f681-edab-4bbb-9e85-11c0abe6fc35"
  3459. },
  3460. "fileId": "293TEJxKVIr7F2vIfMpyuf",
  3461. "sync": false
  3462. },
  3463. {
  3464. "__type__": "cc.RichText",
  3465. "_name": "",
  3466. "_objFlags": 0,
  3467. "node": {
  3468. "__id__": 95
  3469. },
  3470. "_enabled": true,
  3471. "_N$string": "<b><outline color=#692e0e width=2><color=white>100+</color></outline></b>",
  3472. "_N$horizontalAlign": 1,
  3473. "_N$fontSize": 30,
  3474. "_N$font": null,
  3475. "_N$maxWidth": 100,
  3476. "_N$lineHeight": 40,
  3477. "_N$imageAtlas": null,
  3478. "_N$handleTouchEvent": true,
  3479. "_id": "0eqATAnFtFTYNlqxeCM5uu"
  3480. },
  3481. {
  3482. "__type__": "cc.PrefabInfo",
  3483. "root": {
  3484. "__id__": 1
  3485. },
  3486. "asset": {
  3487. "__uuid__": "cf09f681-edab-4bbb-9e85-11c0abe6fc35"
  3488. },
  3489. "fileId": "62U5y374xHJZHWDYMaLkeR",
  3490. "sync": false
  3491. },
  3492. {
  3493. "__type__": "cc.Node",
  3494. "_name": "nameLabel",
  3495. "_objFlags": 0,
  3496. "_parent": {
  3497. "__id__": 84
  3498. },
  3499. "_children": [],
  3500. "_active": true,
  3501. "_level": 2,
  3502. "_components": [
  3503. {
  3504. "__id__": 103
  3505. }
  3506. ],
  3507. "_prefab": {
  3508. "__id__": 104
  3509. },
  3510. "_opacity": 255,
  3511. "_color": {
  3512. "__type__": "cc.Color",
  3513. "r": 54,
  3514. "g": 46,
  3515. "b": 43,
  3516. "a": 255
  3517. },
  3518. "_contentSize": {
  3519. "__type__": "cc.Size",
  3520. "width": 140,
  3521. "height": 26
  3522. },
  3523. "_anchorPoint": {
  3524. "__type__": "cc.Vec2",
  3525. "x": 0,
  3526. "y": 0.5
  3527. },
  3528. "_position": {
  3529. "__type__": "cc.Vec3",
  3530. "x": -100,
  3531. "y": 0,
  3532. "z": 0
  3533. },
  3534. "_scale": {
  3535. "__type__": "cc.Vec3",
  3536. "x": 1,
  3537. "y": 1,
  3538. "z": 1
  3539. },
  3540. "_rotationX": 0,
  3541. "_rotationY": 0,
  3542. "_quat": {
  3543. "__type__": "cc.Quat",
  3544. "x": 0,
  3545. "y": 0,
  3546. "z": 0,
  3547. "w": 1
  3548. },
  3549. "_skewX": 0,
  3550. "_skewY": 0,
  3551. "_zIndex": 0,
  3552. "groupIndex": 0,
  3553. "_id": ""
  3554. },
  3555. {
  3556. "__type__": "cc.Label",
  3557. "_name": "",
  3558. "_objFlags": 0,
  3559. "node": {
  3560. "__id__": 102
  3561. },
  3562. "_enabled": true,
  3563. "_srcBlendFactor": 1,
  3564. "_dstBlendFactor": 771,
  3565. "_useOriginalSize": false,
  3566. "_string": "Label",
  3567. "_N$string": "Label",
  3568. "_fontSize": 24,
  3569. "_lineHeight": 26,
  3570. "_enableWrapText": false,
  3571. "_N$file": null,
  3572. "_isSystemFontUsed": true,
  3573. "_spacingX": 0,
  3574. "_N$horizontalAlign": 0,
  3575. "_N$verticalAlign": 1,
  3576. "_N$fontFamily": "Arial",
  3577. "_N$overflow": 2,
  3578. "_id": "3d546YD/lBuIez5n4ac4nc"
  3579. },
  3580. {
  3581. "__type__": "cc.PrefabInfo",
  3582. "root": {
  3583. "__id__": 1
  3584. },
  3585. "asset": {
  3586. "__uuid__": "cf09f681-edab-4bbb-9e85-11c0abe6fc35"
  3587. },
  3588. "fileId": "0bYB9aX41Bv6l5Lq1GrvhU",
  3589. "sync": false
  3590. },
  3591. {
  3592. "__type__": "cc.Node",
  3593. "_name": "lvRichtext",
  3594. "_objFlags": 0,
  3595. "_parent": {
  3596. "__id__": 84
  3597. },
  3598. "_children": [
  3599. {
  3600. "__id__": 106
  3601. }
  3602. ],
  3603. "_active": true,
  3604. "_level": 2,
  3605. "_components": [
  3606. {
  3607. "__id__": 110
  3608. },
  3609. {
  3610. "__id__": 111
  3611. }
  3612. ],
  3613. "_prefab": {
  3614. "__id__": 112
  3615. },
  3616. "_opacity": 255,
  3617. "_color": {
  3618. "__type__": "cc.Color",
  3619. "r": 255,
  3620. "g": 255,
  3621. "b": 255,
  3622. "a": 255
  3623. },
  3624. "_contentSize": {
  3625. "__type__": "cc.Size",
  3626. "width": 250,
  3627. "height": 35
  3628. },
  3629. "_anchorPoint": {
  3630. "__type__": "cc.Vec2",
  3631. "x": 1,
  3632. "y": 0.5
  3633. },
  3634. "_position": {
  3635. "__type__": "cc.Vec3",
  3636. "x": 297,
  3637. "y": 0,
  3638. "z": 0
  3639. },
  3640. "_scale": {
  3641. "__type__": "cc.Vec3",
  3642. "x": 1,
  3643. "y": 1,
  3644. "z": 1
  3645. },
  3646. "_rotationX": 0,
  3647. "_rotationY": 0,
  3648. "_quat": {
  3649. "__type__": "cc.Quat",
  3650. "x": 0,
  3651. "y": 0,
  3652. "z": 0,
  3653. "w": 1
  3654. },
  3655. "_skewX": 0,
  3656. "_skewY": 0,
  3657. "_zIndex": 0,
  3658. "groupIndex": 0,
  3659. "_id": ""
  3660. },
  3661. {
  3662. "__type__": "cc.PrivateNode",
  3663. "_name": "RICHTEXT_CHILD",
  3664. "_objFlags": 0,
  3665. "_parent": {
  3666. "__id__": 105
  3667. },
  3668. "_children": [],
  3669. "_active": false,
  3670. "_level": 3,
  3671. "_components": [
  3672. {
  3673. "__id__": 107
  3674. },
  3675. {
  3676. "__id__": 108
  3677. }
  3678. ],
  3679. "_prefab": {
  3680. "__id__": 109
  3681. },
  3682. "_opacity": 255,
  3683. "_color": {
  3684. "__type__": "cc.Color",
  3685. "r": 147,
  3686. "g": 76,
  3687. "b": 49,
  3688. "a": 255
  3689. },
  3690. "_contentSize": {
  3691. "__type__": "cc.Size",
  3692. "width": 62.37,
  3693. "height": 35
  3694. },
  3695. "_anchorPoint": {
  3696. "__type__": "cc.Vec2",
  3697. "x": 0,
  3698. "y": 0
  3699. },
  3700. "_position": {
  3701. "__type__": "cc.Vec3",
  3702. "x": -62.37,
  3703. "y": -17.5,
  3704. "z": 0
  3705. },
  3706. "_scale": {
  3707. "__type__": "cc.Vec3",
  3708. "x": 1,
  3709. "y": 1,
  3710. "z": 1
  3711. },
  3712. "_rotationX": 0,
  3713. "_rotationY": 0,
  3714. "_quat": {
  3715. "__type__": "cc.Quat",
  3716. "x": 0,
  3717. "y": 0,
  3718. "z": 0,
  3719. "w": 1
  3720. },
  3721. "_skewX": 0,
  3722. "_skewY": 0,
  3723. "_zIndex": -32768,
  3724. "groupIndex": 0,
  3725. "_id": ""
  3726. },
  3727. {
  3728. "__type__": "cc.Label",
  3729. "_name": "",
  3730. "_objFlags": 0,
  3731. "node": {
  3732. "__id__": 106
  3733. },
  3734. "_enabled": true,
  3735. "_srcBlendFactor": 1,
  3736. "_dstBlendFactor": 771,
  3737. "_useOriginalSize": true,
  3738. "_string": "LV.1",
  3739. "_N$string": "LV.1",
  3740. "_fontSize": 30,
  3741. "_lineHeight": 35,
  3742. "_enableWrapText": true,
  3743. "_N$file": null,
  3744. "_isSystemFontUsed": true,
  3745. "_spacingX": 0,
  3746. "_N$horizontalAlign": 0,
  3747. "_N$verticalAlign": 1,
  3748. "_N$fontFamily": "Arial",
  3749. "_N$overflow": 0,
  3750. "_id": "41UrrcKxhFnYCOpkhD4U4Q"
  3751. },
  3752. {
  3753. "__type__": "cc.LabelOutline",
  3754. "_name": "",
  3755. "_objFlags": 0,
  3756. "node": {
  3757. "__id__": 106
  3758. },
  3759. "_enabled": true,
  3760. "_color": {
  3761. "__type__": "cc.Color",
  3762. "r": 255,
  3763. "g": 255,
  3764. "b": 255,
  3765. "a": 255
  3766. },
  3767. "_width": 2,
  3768. "_id": "e0u+20BkdF+Kodf1cT7Ey+"
  3769. },
  3770. {
  3771. "__type__": "cc.PrefabInfo",
  3772. "root": {
  3773. "__id__": 1
  3774. },
  3775. "asset": {
  3776. "__uuid__": "cf09f681-edab-4bbb-9e85-11c0abe6fc35"
  3777. },
  3778. "fileId": "8d/KlVqOJOTogPlFL/cIsY",
  3779. "sync": false
  3780. },
  3781. {
  3782. "__type__": "cc.RichText",
  3783. "_name": "",
  3784. "_objFlags": 0,
  3785. "node": {
  3786. "__id__": 105
  3787. },
  3788. "_enabled": true,
  3789. "_N$string": "<b><outline color=white width=2><color=#934C31>LV.1</color></outline></b>",
  3790. "_N$horizontalAlign": 2,
  3791. "_N$fontSize": 30,
  3792. "_N$font": null,
  3793. "_N$maxWidth": 250,
  3794. "_N$lineHeight": 35,
  3795. "_N$imageAtlas": null,
  3796. "_N$handleTouchEvent": true,
  3797. "_id": "bcOCfnObNHJJdMyZtgU/ex"
  3798. },
  3799. {
  3800. "__type__": "cc.Widget",
  3801. "_name": "",
  3802. "_objFlags": 0,
  3803. "node": {
  3804. "__id__": 105
  3805. },
  3806. "_enabled": true,
  3807. "alignMode": 1,
  3808. "_target": null,
  3809. "_alignFlags": 32,
  3810. "_left": 0,
  3811. "_right": 25,
  3812. "_top": 0,
  3813. "_bottom": 0,
  3814. "_verticalCenter": 0,
  3815. "_horizontalCenter": 0,
  3816. "_isAbsLeft": true,
  3817. "_isAbsRight": true,
  3818. "_isAbsTop": true,
  3819. "_isAbsBottom": true,
  3820. "_isAbsHorizontalCenter": true,
  3821. "_isAbsVerticalCenter": true,
  3822. "_originalWidth": 0,
  3823. "_originalHeight": 0,
  3824. "_id": "65RfO1CeJEyLeOVJFYt8AZ"
  3825. },
  3826. {
  3827. "__type__": "cc.PrefabInfo",
  3828. "root": {
  3829. "__id__": 1
  3830. },
  3831. "asset": {
  3832. "__uuid__": "cf09f681-edab-4bbb-9e85-11c0abe6fc35"
  3833. },
  3834. "fileId": "99XrIsrE9PR7lRHCo4mmbE",
  3835. "sync": false
  3836. },
  3837. {
  3838. "__type__": "e1b9ajTOylHjrIVTeaPia/Q",
  3839. "_name": "",
  3840. "_objFlags": 0,
  3841. "node": {
  3842. "__id__": 84
  3843. },
  3844. "_enabled": true,
  3845. "headDefaultSpriteFrame": null,
  3846. "headSprite": {
  3847. "__id__": 86
  3848. },
  3849. "background": {
  3850. "__id__": 89
  3851. },
  3852. "rankSprite": {
  3853. "__id__": 92
  3854. },
  3855. "rankRichText": {
  3856. "__id__": 100
  3857. },
  3858. "nameLabel": {
  3859. "__id__": 103
  3860. },
  3861. "lvRichText": {
  3862. "__id__": 110
  3863. },
  3864. "rankSpriteFrame": [
  3865. {
  3866. "__uuid__": "942165e1-1277-4cd8-ad91-daa4a9c65ac1"
  3867. },
  3868. {
  3869. "__uuid__": "365d3428-d618-4e2f-935c-fe2e1b9a8296"
  3870. },
  3871. {
  3872. "__uuid__": "b28d8db0-f3e0-4680-991d-3b2b90342382"
  3873. }
  3874. ],
  3875. "backgroundSpriteFrame": [
  3876. {
  3877. "__uuid__": "c1045b89-0602-4927-8cf8-ad413dd42490"
  3878. },
  3879. {
  3880. "__uuid__": "6f177754-7101-4f15-bbbd-8bda9989e769"
  3881. }
  3882. ],
  3883. "_id": "43rMpdBbtLjrYoJ7WyV08z"
  3884. },
  3885. {
  3886. "__type__": "cc.Widget",
  3887. "_name": "",
  3888. "_objFlags": 0,
  3889. "node": {
  3890. "__id__": 84
  3891. },
  3892. "_enabled": true,
  3893. "alignMode": 1,
  3894. "_target": null,
  3895. "_alignFlags": 4,
  3896. "_left": 0,
  3897. "_right": 0,
  3898. "_top": 0,
  3899. "_bottom": 0,
  3900. "_verticalCenter": 0,
  3901. "_horizontalCenter": 0,
  3902. "_isAbsLeft": true,
  3903. "_isAbsRight": true,
  3904. "_isAbsTop": true,
  3905. "_isAbsBottom": true,
  3906. "_isAbsHorizontalCenter": true,
  3907. "_isAbsVerticalCenter": true,
  3908. "_originalWidth": 0,
  3909. "_originalHeight": 0,
  3910. "_id": "fbphKMq5hIeZc2PwRamae6"
  3911. },
  3912. {
  3913. "__type__": "cc.PrefabInfo",
  3914. "root": {
  3915. "__id__": 1
  3916. },
  3917. "asset": {
  3918. "__uuid__": "cf09f681-edab-4bbb-9e85-11c0abe6fc35"
  3919. },
  3920. "fileId": "b8B272J2RPhJu+wLpOxExe",
  3921. "sync": false
  3922. },
  3923. {
  3924. "__type__": "cc.Widget",
  3925. "_name": "",
  3926. "_objFlags": 0,
  3927. "node": {
  3928. "__id__": 74
  3929. },
  3930. "_enabled": true,
  3931. "alignMode": 1,
  3932. "_target": null,
  3933. "_alignFlags": 5,
  3934. "_left": 0,
  3935. "_right": 0,
  3936. "_top": 175,
  3937. "_bottom": 121,
  3938. "_verticalCenter": 0,
  3939. "_horizontalCenter": 0,
  3940. "_isAbsLeft": true,
  3941. "_isAbsRight": true,
  3942. "_isAbsTop": true,
  3943. "_isAbsBottom": true,
  3944. "_isAbsHorizontalCenter": true,
  3945. "_isAbsVerticalCenter": true,
  3946. "_originalWidth": 0,
  3947. "_originalHeight": 844,
  3948. "_id": "d9cxvlVbBAkY2+91kovfJF"
  3949. },
  3950. {
  3951. "__type__": "82068HS8JpFPr6ZQRFMztzU",
  3952. "_name": "",
  3953. "_objFlags": 0,
  3954. "node": {
  3955. "__id__": 74
  3956. },
  3957. "_enabled": true,
  3958. "scrollView": {
  3959. "__id__": 80
  3960. },
  3961. "layout": {
  3962. "__id__": 77
  3963. },
  3964. "rankItem": {
  3965. "__uuid__": "d319eb7a-e4e6-4e3c-843c-b83c8978e29d"
  3966. },
  3967. "meNode": {
  3968. "__id__": 84
  3969. },
  3970. "_id": "47Vm3DvOFJELX6nth0iyYF"
  3971. },
  3972. {
  3973. "__type__": "cc.PrefabInfo",
  3974. "root": {
  3975. "__id__": 1
  3976. },
  3977. "asset": {
  3978. "__uuid__": "cf09f681-edab-4bbb-9e85-11c0abe6fc35"
  3979. },
  3980. "fileId": "6514TQIstHj4mKu2sfCIwh",
  3981. "sync": false
  3982. },
  3983. {
  3984. "__type__": "cc.Node",
  3985. "_name": "crowdNode",
  3986. "_objFlags": 0,
  3987. "_parent": {
  3988. "__id__": 6
  3989. },
  3990. "_children": [
  3991. {
  3992. "__id__": 120
  3993. },
  3994. {
  3995. "__id__": 136
  3996. }
  3997. ],
  3998. "_active": false,
  3999. "_level": 3,
  4000. "_components": [
  4001. {
  4002. "__id__": 140
  4003. },
  4004. {
  4005. "__id__": 141
  4006. }
  4007. ],
  4008. "_prefab": {
  4009. "__id__": 142
  4010. },
  4011. "_opacity": 255,
  4012. "_color": {
  4013. "__type__": "cc.Color",
  4014. "r": 255,
  4015. "g": 255,
  4016. "b": 255,
  4017. "a": 255
  4018. },
  4019. "_contentSize": {
  4020. "__type__": "cc.Size",
  4021. "width": 644,
  4022. "height": 844
  4023. },
  4024. "_anchorPoint": {
  4025. "__type__": "cc.Vec2",
  4026. "x": 0.5,
  4027. "y": 0.5
  4028. },
  4029. "_position": {
  4030. "__type__": "cc.Vec3",
  4031. "x": 0,
  4032. "y": -27,
  4033. "z": 0
  4034. },
  4035. "_scale": {
  4036. "__type__": "cc.Vec3",
  4037. "x": 1,
  4038. "y": 1,
  4039. "z": 1
  4040. },
  4041. "_rotationX": 0,
  4042. "_rotationY": 0,
  4043. "_quat": {
  4044. "__type__": "cc.Quat",
  4045. "x": 0,
  4046. "y": 0,
  4047. "z": 0,
  4048. "w": 1
  4049. },
  4050. "_skewX": 0,
  4051. "_skewY": 0,
  4052. "_zIndex": 0,
  4053. "groupIndex": 0,
  4054. "_id": ""
  4055. },
  4056. {
  4057. "__type__": "cc.Node",
  4058. "_name": "shareNode",
  4059. "_objFlags": 0,
  4060. "_parent": {
  4061. "__id__": 119
  4062. },
  4063. "_children": [
  4064. {
  4065. "__id__": 121
  4066. },
  4067. {
  4068. "__id__": 125
  4069. }
  4070. ],
  4071. "_active": true,
  4072. "_level": 4,
  4073. "_components": [
  4074. {
  4075. "__id__": 134
  4076. }
  4077. ],
  4078. "_prefab": {
  4079. "__id__": 135
  4080. },
  4081. "_opacity": 255,
  4082. "_color": {
  4083. "__type__": "cc.Color",
  4084. "r": 255,
  4085. "g": 255,
  4086. "b": 255,
  4087. "a": 255
  4088. },
  4089. "_contentSize": {
  4090. "__type__": "cc.Size",
  4091. "width": 644,
  4092. "height": 844
  4093. },
  4094. "_anchorPoint": {
  4095. "__type__": "cc.Vec2",
  4096. "x": 0.5,
  4097. "y": 0.5
  4098. },
  4099. "_position": {
  4100. "__type__": "cc.Vec3",
  4101. "x": 0,
  4102. "y": 0,
  4103. "z": 0
  4104. },
  4105. "_scale": {
  4106. "__type__": "cc.Vec3",
  4107. "x": 1,
  4108. "y": 1,
  4109. "z": 1
  4110. },
  4111. "_rotationX": 0,
  4112. "_rotationY": 0,
  4113. "_quat": {
  4114. "__type__": "cc.Quat",
  4115. "x": 0,
  4116. "y": 0,
  4117. "z": 0,
  4118. "w": 1
  4119. },
  4120. "_skewX": 0,
  4121. "_skewY": 0,
  4122. "_zIndex": 0,
  4123. "groupIndex": 0,
  4124. "_id": ""
  4125. },
  4126. {
  4127. "__type__": "cc.Node",
  4128. "_name": "game_rank_share",
  4129. "_objFlags": 0,
  4130. "_parent": {
  4131. "__id__": 120
  4132. },
  4133. "_children": [],
  4134. "_active": true,
  4135. "_level": 5,
  4136. "_components": [
  4137. {
  4138. "__id__": 122
  4139. },
  4140. {
  4141. "__id__": 123
  4142. }
  4143. ],
  4144. "_prefab": {
  4145. "__id__": 124
  4146. },
  4147. "_opacity": 255,
  4148. "_color": {
  4149. "__type__": "cc.Color",
  4150. "r": 255,
  4151. "g": 255,
  4152. "b": 255,
  4153. "a": 255
  4154. },
  4155. "_contentSize": {
  4156. "__type__": "cc.Size",
  4157. "width": 600,
  4158. "height": 480
  4159. },
  4160. "_anchorPoint": {
  4161. "__type__": "cc.Vec2",
  4162. "x": 0.5,
  4163. "y": 0.5
  4164. },
  4165. "_position": {
  4166. "__type__": "cc.Vec3",
  4167. "x": 0,
  4168. "y": 182,
  4169. "z": 0
  4170. },
  4171. "_scale": {
  4172. "__type__": "cc.Vec3",
  4173. "x": 1,
  4174. "y": 1,
  4175. "z": 1
  4176. },
  4177. "_rotationX": 0,
  4178. "_rotationY": 0,
  4179. "_quat": {
  4180. "__type__": "cc.Quat",
  4181. "x": 0,
  4182. "y": 0,
  4183. "z": 0,
  4184. "w": 1
  4185. },
  4186. "_skewX": 0,
  4187. "_skewY": 0,
  4188. "_zIndex": 0,
  4189. "groupIndex": 0,
  4190. "_id": ""
  4191. },
  4192. {
  4193. "__type__": "cc.Sprite",
  4194. "_name": "",
  4195. "_objFlags": 0,
  4196. "node": {
  4197. "__id__": 121
  4198. },
  4199. "_enabled": true,
  4200. "_srcBlendFactor": 770,
  4201. "_dstBlendFactor": 771,
  4202. "_spriteFrame": {
  4203. "__uuid__": "af8cff8d-aada-4126-a574-4feeaf388b85"
  4204. },
  4205. "_type": 0,
  4206. "_sizeMode": 1,
  4207. "_fillType": 0,
  4208. "_fillCenter": {
  4209. "__type__": "cc.Vec2",
  4210. "x": 0,
  4211. "y": 0
  4212. },
  4213. "_fillStart": 0,
  4214. "_fillRange": 0,
  4215. "_isTrimmedMode": true,
  4216. "_state": 0,
  4217. "_atlas": null,
  4218. "_id": "feI+WT2CJKqKaR61UwD2gH"
  4219. },
  4220. {
  4221. "__type__": "cc.Widget",
  4222. "_name": "",
  4223. "_objFlags": 0,
  4224. "node": {
  4225. "__id__": 121
  4226. },
  4227. "_enabled": true,
  4228. "alignMode": 1,
  4229. "_target": null,
  4230. "_alignFlags": 1,
  4231. "_left": 0,
  4232. "_right": 0,
  4233. "_top": 0,
  4234. "_bottom": 0,
  4235. "_verticalCenter": 0,
  4236. "_horizontalCenter": 0,
  4237. "_isAbsLeft": true,
  4238. "_isAbsRight": true,
  4239. "_isAbsTop": true,
  4240. "_isAbsBottom": true,
  4241. "_isAbsHorizontalCenter": true,
  4242. "_isAbsVerticalCenter": true,
  4243. "_originalWidth": 0,
  4244. "_originalHeight": 0,
  4245. "_id": "5eRUWHdUpGLbykWVszxGRd"
  4246. },
  4247. {
  4248. "__type__": "cc.PrefabInfo",
  4249. "root": {
  4250. "__id__": 1
  4251. },
  4252. "asset": {
  4253. "__uuid__": "cf09f681-edab-4bbb-9e85-11c0abe6fc35"
  4254. },
  4255. "fileId": "edwchCwx9N47v6TmyxHl5N",
  4256. "sync": false
  4257. },
  4258. {
  4259. "__type__": "cc.Node",
  4260. "_name": "share_btn",
  4261. "_objFlags": 0,
  4262. "_parent": {
  4263. "__id__": 120
  4264. },
  4265. "_children": [
  4266. {
  4267. "__id__": 126
  4268. }
  4269. ],
  4270. "_active": true,
  4271. "_level": 5,
  4272. "_components": [
  4273. {
  4274. "__id__": 129
  4275. },
  4276. {
  4277. "__id__": 130
  4278. },
  4279. {
  4280. "__id__": 132
  4281. }
  4282. ],
  4283. "_prefab": {
  4284. "__id__": 133
  4285. },
  4286. "_opacity": 255,
  4287. "_color": {
  4288. "__type__": "cc.Color",
  4289. "r": 255,
  4290. "g": 255,
  4291. "b": 255,
  4292. "a": 255
  4293. },
  4294. "_contentSize": {
  4295. "__type__": "cc.Size",
  4296. "width": 420,
  4297. "height": 90
  4298. },
  4299. "_anchorPoint": {
  4300. "__type__": "cc.Vec2",
  4301. "x": 0.5,
  4302. "y": 0.5
  4303. },
  4304. "_position": {
  4305. "__type__": "cc.Vec3",
  4306. "x": 0,
  4307. "y": -139,
  4308. "z": 0
  4309. },
  4310. "_scale": {
  4311. "__type__": "cc.Vec3",
  4312. "x": 1,
  4313. "y": 1,
  4314. "z": 1
  4315. },
  4316. "_rotationX": 0,
  4317. "_rotationY": 0,
  4318. "_quat": {
  4319. "__type__": "cc.Quat",
  4320. "x": 0,
  4321. "y": 0,
  4322. "z": 0,
  4323. "w": 1
  4324. },
  4325. "_skewX": 0,
  4326. "_skewY": 0,
  4327. "_zIndex": 0,
  4328. "groupIndex": 0,
  4329. "_id": ""
  4330. },
  4331. {
  4332. "__type__": "cc.Node",
  4333. "_name": "game_rank_share_title",
  4334. "_objFlags": 0,
  4335. "_parent": {
  4336. "__id__": 125
  4337. },
  4338. "_children": [],
  4339. "_active": true,
  4340. "_level": 6,
  4341. "_components": [
  4342. {
  4343. "__id__": 127
  4344. }
  4345. ],
  4346. "_prefab": {
  4347. "__id__": 128
  4348. },
  4349. "_opacity": 255,
  4350. "_color": {
  4351. "__type__": "cc.Color",
  4352. "r": 255,
  4353. "g": 255,
  4354. "b": 255,
  4355. "a": 255
  4356. },
  4357. "_contentSize": {
  4358. "__type__": "cc.Size",
  4359. "width": 128,
  4360. "height": 47
  4361. },
  4362. "_anchorPoint": {
  4363. "__type__": "cc.Vec2",
  4364. "x": 0.5,
  4365. "y": 0.5
  4366. },
  4367. "_position": {
  4368. "__type__": "cc.Vec3",
  4369. "x": 0,
  4370. "y": 0,
  4371. "z": 0
  4372. },
  4373. "_scale": {
  4374. "__type__": "cc.Vec3",
  4375. "x": 1,
  4376. "y": 1,
  4377. "z": 1
  4378. },
  4379. "_rotationX": 0,
  4380. "_rotationY": 0,
  4381. "_quat": {
  4382. "__type__": "cc.Quat",
  4383. "x": 0,
  4384. "y": 0,
  4385. "z": 0,
  4386. "w": 1
  4387. },
  4388. "_skewX": 0,
  4389. "_skewY": 0,
  4390. "_zIndex": 0,
  4391. "groupIndex": 0,
  4392. "_id": ""
  4393. },
  4394. {
  4395. "__type__": "cc.Sprite",
  4396. "_name": "",
  4397. "_objFlags": 0,
  4398. "node": {
  4399. "__id__": 126
  4400. },
  4401. "_enabled": true,
  4402. "_srcBlendFactor": 770,
  4403. "_dstBlendFactor": 771,
  4404. "_spriteFrame": {
  4405. "__uuid__": "1e059f99-94d8-4dcb-9c01-1922d263e013"
  4406. },
  4407. "_type": 0,
  4408. "_sizeMode": 1,
  4409. "_fillType": 0,
  4410. "_fillCenter": {
  4411. "__type__": "cc.Vec2",
  4412. "x": 0,
  4413. "y": 0
  4414. },
  4415. "_fillStart": 0,
  4416. "_fillRange": 0,
  4417. "_isTrimmedMode": true,
  4418. "_state": 0,
  4419. "_atlas": null,
  4420. "_id": "a2WfUshHpF7LRdXhtBJSu3"
  4421. },
  4422. {
  4423. "__type__": "cc.PrefabInfo",
  4424. "root": {
  4425. "__id__": 1
  4426. },
  4427. "asset": {
  4428. "__uuid__": "cf09f681-edab-4bbb-9e85-11c0abe6fc35"
  4429. },
  4430. "fileId": "2e4bRyf/xEA4efV7nErhiU",
  4431. "sync": false
  4432. },
  4433. {
  4434. "__type__": "cc.Sprite",
  4435. "_name": "",
  4436. "_objFlags": 0,
  4437. "node": {
  4438. "__id__": 125
  4439. },
  4440. "_enabled": true,
  4441. "_srcBlendFactor": 770,
  4442. "_dstBlendFactor": 771,
  4443. "_spriteFrame": {
  4444. "__uuid__": "76995837-21e8-4905-8dd3-b19b5cba516b"
  4445. },
  4446. "_type": 0,
  4447. "_sizeMode": 0,
  4448. "_fillType": 0,
  4449. "_fillCenter": {
  4450. "__type__": "cc.Vec2",
  4451. "x": 0,
  4452. "y": 0
  4453. },
  4454. "_fillStart": 0,
  4455. "_fillRange": 0,
  4456. "_isTrimmedMode": true,
  4457. "_state": 0,
  4458. "_atlas": null,
  4459. "_id": "a2jht28W9NpLrGquhE/HQd"
  4460. },
  4461. {
  4462. "__type__": "cc.Button",
  4463. "_name": "",
  4464. "_objFlags": 0,
  4465. "node": {
  4466. "__id__": 125
  4467. },
  4468. "_enabled": true,
  4469. "transition": 1,
  4470. "pressedColor": {
  4471. "__type__": "cc.Color",
  4472. "r": 120,
  4473. "g": 120,
  4474. "b": 120,
  4475. "a": 255
  4476. },
  4477. "hoverColor": {
  4478. "__type__": "cc.Color",
  4479. "r": 255,
  4480. "g": 255,
  4481. "b": 255,
  4482. "a": 255
  4483. },
  4484. "duration": 0.1,
  4485. "zoomScale": 1.2,
  4486. "clickEvents": [
  4487. {
  4488. "__id__": 131
  4489. }
  4490. ],
  4491. "_N$interactable": true,
  4492. "_N$enableAutoGrayEffect": false,
  4493. "_N$normalColor": {
  4494. "__type__": "cc.Color",
  4495. "r": 255,
  4496. "g": 255,
  4497. "b": 255,
  4498. "a": 255
  4499. },
  4500. "_N$disabledColor": {
  4501. "__type__": "cc.Color",
  4502. "r": 255,
  4503. "g": 255,
  4504. "b": 255,
  4505. "a": 255
  4506. },
  4507. "_N$normalSprite": {
  4508. "__uuid__": "76995837-21e8-4905-8dd3-b19b5cba516b"
  4509. },
  4510. "_N$pressedSprite": {
  4511. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  4512. },
  4513. "pressedSprite": {
  4514. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  4515. },
  4516. "_N$hoverSprite": {
  4517. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  4518. },
  4519. "hoverSprite": {
  4520. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  4521. },
  4522. "_N$disabledSprite": {
  4523. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  4524. },
  4525. "_N$target": {
  4526. "__id__": 125
  4527. },
  4528. "_id": "baNsadED9P2KZ7jvQ4i+KM"
  4529. },
  4530. {
  4531. "__type__": "cc.ClickEvent",
  4532. "target": {
  4533. "__id__": 119
  4534. },
  4535. "component": "GameCrowdRank",
  4536. "handler": "shareToCrowd",
  4537. "customEventData": ""
  4538. },
  4539. {
  4540. "__type__": "cc.Widget",
  4541. "_name": "",
  4542. "_objFlags": 0,
  4543. "node": {
  4544. "__id__": 125
  4545. },
  4546. "_enabled": true,
  4547. "alignMode": 1,
  4548. "_target": null,
  4549. "_alignFlags": 1,
  4550. "_left": 0,
  4551. "_right": 0,
  4552. "_top": 516,
  4553. "_bottom": 238,
  4554. "_verticalCenter": 0,
  4555. "_horizontalCenter": 0,
  4556. "_isAbsLeft": true,
  4557. "_isAbsRight": true,
  4558. "_isAbsTop": true,
  4559. "_isAbsBottom": true,
  4560. "_isAbsHorizontalCenter": true,
  4561. "_isAbsVerticalCenter": true,
  4562. "_originalWidth": 0,
  4563. "_originalHeight": 0,
  4564. "_id": "a1YXlF6FJOxI8ZTcz7y4PG"
  4565. },
  4566. {
  4567. "__type__": "cc.PrefabInfo",
  4568. "root": {
  4569. "__id__": 1
  4570. },
  4571. "asset": {
  4572. "__uuid__": "cf09f681-edab-4bbb-9e85-11c0abe6fc35"
  4573. },
  4574. "fileId": "92My/H8MFJUJq+JNa22v05",
  4575. "sync": false
  4576. },
  4577. {
  4578. "__type__": "cc.Widget",
  4579. "_name": "",
  4580. "_objFlags": 0,
  4581. "node": {
  4582. "__id__": 120
  4583. },
  4584. "_enabled": true,
  4585. "alignMode": 1,
  4586. "_target": null,
  4587. "_alignFlags": 45,
  4588. "_left": 0,
  4589. "_right": 0,
  4590. "_top": 0,
  4591. "_bottom": 0,
  4592. "_verticalCenter": 0,
  4593. "_horizontalCenter": 0,
  4594. "_isAbsLeft": true,
  4595. "_isAbsRight": true,
  4596. "_isAbsTop": true,
  4597. "_isAbsBottom": true,
  4598. "_isAbsHorizontalCenter": true,
  4599. "_isAbsVerticalCenter": true,
  4600. "_originalWidth": 0,
  4601. "_originalHeight": 0,
  4602. "_id": "c4bjNXjxBETozrbgHpb0S6"
  4603. },
  4604. {
  4605. "__type__": "cc.PrefabInfo",
  4606. "root": {
  4607. "__id__": 1
  4608. },
  4609. "asset": {
  4610. "__uuid__": "cf09f681-edab-4bbb-9e85-11c0abe6fc35"
  4611. },
  4612. "fileId": "a9MJzIQwZKqZ8ONeg/UED6",
  4613. "sync": false
  4614. },
  4615. {
  4616. "__type__": "cc.Node",
  4617. "_name": "rankNode",
  4618. "_objFlags": 0,
  4619. "_parent": {
  4620. "__id__": 119
  4621. },
  4622. "_children": [],
  4623. "_active": false,
  4624. "_level": 4,
  4625. "_components": [
  4626. {
  4627. "__id__": 137
  4628. },
  4629. {
  4630. "__id__": 138
  4631. }
  4632. ],
  4633. "_prefab": {
  4634. "__id__": 139
  4635. },
  4636. "_opacity": 255,
  4637. "_color": {
  4638. "__type__": "cc.Color",
  4639. "r": 255,
  4640. "g": 255,
  4641. "b": 255,
  4642. "a": 255
  4643. },
  4644. "_contentSize": {
  4645. "__type__": "cc.Size",
  4646. "width": 644,
  4647. "height": 844
  4648. },
  4649. "_anchorPoint": {
  4650. "__type__": "cc.Vec2",
  4651. "x": 0.5,
  4652. "y": 0.5
  4653. },
  4654. "_position": {
  4655. "__type__": "cc.Vec3",
  4656. "x": 0,
  4657. "y": 0,
  4658. "z": 0
  4659. },
  4660. "_scale": {
  4661. "__type__": "cc.Vec3",
  4662. "x": 1,
  4663. "y": 1,
  4664. "z": 1
  4665. },
  4666. "_rotationX": 0,
  4667. "_rotationY": 0,
  4668. "_quat": {
  4669. "__type__": "cc.Quat",
  4670. "x": 0,
  4671. "y": 0,
  4672. "z": 0,
  4673. "w": 1
  4674. },
  4675. "_skewX": 0,
  4676. "_skewY": 0,
  4677. "_zIndex": 0,
  4678. "groupIndex": 0,
  4679. "_id": ""
  4680. },
  4681. {
  4682. "__type__": "cc.Widget",
  4683. "_name": "",
  4684. "_objFlags": 0,
  4685. "node": {
  4686. "__id__": 136
  4687. },
  4688. "_enabled": true,
  4689. "alignMode": 1,
  4690. "_target": null,
  4691. "_alignFlags": 45,
  4692. "_left": 0,
  4693. "_right": 0,
  4694. "_top": 0,
  4695. "_bottom": 0,
  4696. "_verticalCenter": 0,
  4697. "_horizontalCenter": 0,
  4698. "_isAbsLeft": true,
  4699. "_isAbsRight": true,
  4700. "_isAbsTop": true,
  4701. "_isAbsBottom": true,
  4702. "_isAbsHorizontalCenter": true,
  4703. "_isAbsVerticalCenter": true,
  4704. "_originalWidth": 0,
  4705. "_originalHeight": 0,
  4706. "_id": "b408CS8alAlJRObbvpH64d"
  4707. },
  4708. {
  4709. "__type__": "cc.WXSubContextView",
  4710. "_name": "",
  4711. "_objFlags": 0,
  4712. "node": {
  4713. "__id__": 136
  4714. },
  4715. "_enabled": true,
  4716. "_id": "aaMQP84fFLvLW80hUsw17m"
  4717. },
  4718. {
  4719. "__type__": "cc.PrefabInfo",
  4720. "root": {
  4721. "__id__": 1
  4722. },
  4723. "asset": {
  4724. "__uuid__": "cf09f681-edab-4bbb-9e85-11c0abe6fc35"
  4725. },
  4726. "fileId": "8eA0ey73pHir4P4LB1UaBa",
  4727. "sync": false
  4728. },
  4729. {
  4730. "__type__": "cc.Widget",
  4731. "_name": "",
  4732. "_objFlags": 0,
  4733. "node": {
  4734. "__id__": 119
  4735. },
  4736. "_enabled": true,
  4737. "alignMode": 1,
  4738. "_target": null,
  4739. "_alignFlags": 5,
  4740. "_left": 0,
  4741. "_right": 0,
  4742. "_top": 175,
  4743. "_bottom": 121,
  4744. "_verticalCenter": 0,
  4745. "_horizontalCenter": 0,
  4746. "_isAbsLeft": true,
  4747. "_isAbsRight": true,
  4748. "_isAbsTop": true,
  4749. "_isAbsBottom": true,
  4750. "_isAbsHorizontalCenter": true,
  4751. "_isAbsVerticalCenter": true,
  4752. "_originalWidth": 0,
  4753. "_originalHeight": 844,
  4754. "_id": "cfq5iMDPdJlIsRInUdWuBt"
  4755. },
  4756. {
  4757. "__type__": "17c43ZOtQxAXJ4RQOAkAy46",
  4758. "_name": "",
  4759. "_objFlags": 0,
  4760. "node": {
  4761. "__id__": 119
  4762. },
  4763. "_enabled": true,
  4764. "shareNode": {
  4765. "__id__": 120
  4766. },
  4767. "rankNode": {
  4768. "__id__": 136
  4769. },
  4770. "_id": "5c2mnXc7VM2L4jK7YXIke2"
  4771. },
  4772. {
  4773. "__type__": "cc.PrefabInfo",
  4774. "root": {
  4775. "__id__": 1
  4776. },
  4777. "asset": {
  4778. "__uuid__": "cf09f681-edab-4bbb-9e85-11c0abe6fc35"
  4779. },
  4780. "fileId": "c1ty8w+lBCI4Ki/851gq+R",
  4781. "sync": false
  4782. },
  4783. {
  4784. "__type__": "cc.Node",
  4785. "_name": "previous_btn",
  4786. "_objFlags": 0,
  4787. "_parent": {
  4788. "__id__": 6
  4789. },
  4790. "_children": [],
  4791. "_active": true,
  4792. "_level": 3,
  4793. "_components": [
  4794. {
  4795. "__id__": 144
  4796. },
  4797. {
  4798. "__id__": 145
  4799. },
  4800. {
  4801. "__id__": 147
  4802. }
  4803. ],
  4804. "_prefab": {
  4805. "__id__": 148
  4806. },
  4807. "_opacity": 255,
  4808. "_color": {
  4809. "__type__": "cc.Color",
  4810. "r": 255,
  4811. "g": 255,
  4812. "b": 255,
  4813. "a": 255
  4814. },
  4815. "_contentSize": {
  4816. "__type__": "cc.Size",
  4817. "width": 264,
  4818. "height": 80
  4819. },
  4820. "_anchorPoint": {
  4821. "__type__": "cc.Vec2",
  4822. "x": 0.5,
  4823. "y": 0.5
  4824. },
  4825. "_position": {
  4826. "__type__": "cc.Vec3",
  4827. "x": -157,
  4828. "y": -500,
  4829. "z": 0
  4830. },
  4831. "_scale": {
  4832. "__type__": "cc.Vec3",
  4833. "x": 1,
  4834. "y": 1,
  4835. "z": 1
  4836. },
  4837. "_rotationX": 0,
  4838. "_rotationY": 0,
  4839. "_quat": {
  4840. "__type__": "cc.Quat",
  4841. "x": 0,
  4842. "y": 0,
  4843. "z": 0,
  4844. "w": 1
  4845. },
  4846. "_skewX": 0,
  4847. "_skewY": 0,
  4848. "_zIndex": 0,
  4849. "groupIndex": 0,
  4850. "_id": ""
  4851. },
  4852. {
  4853. "__type__": "cc.Sprite",
  4854. "_name": "",
  4855. "_objFlags": 0,
  4856. "node": {
  4857. "__id__": 143
  4858. },
  4859. "_enabled": true,
  4860. "_srcBlendFactor": 770,
  4861. "_dstBlendFactor": 771,
  4862. "_spriteFrame": {
  4863. "__uuid__": "0116770b-89f3-4c0d-afc1-ad77cd00fcaa"
  4864. },
  4865. "_type": 1,
  4866. "_sizeMode": 0,
  4867. "_fillType": 0,
  4868. "_fillCenter": {
  4869. "__type__": "cc.Vec2",
  4870. "x": 0,
  4871. "y": 0
  4872. },
  4873. "_fillStart": 0,
  4874. "_fillRange": 0,
  4875. "_isTrimmedMode": true,
  4876. "_state": 0,
  4877. "_atlas": null,
  4878. "_id": "e3mJF3AKRMbY+z3iZ9pYTl"
  4879. },
  4880. {
  4881. "__type__": "cc.Button",
  4882. "_name": "",
  4883. "_objFlags": 0,
  4884. "node": {
  4885. "__id__": 143
  4886. },
  4887. "_enabled": true,
  4888. "transition": 1,
  4889. "pressedColor": {
  4890. "__type__": "cc.Color",
  4891. "r": 120,
  4892. "g": 120,
  4893. "b": 120,
  4894. "a": 255
  4895. },
  4896. "hoverColor": {
  4897. "__type__": "cc.Color",
  4898. "r": 255,
  4899. "g": 255,
  4900. "b": 255,
  4901. "a": 255
  4902. },
  4903. "duration": 0.1,
  4904. "zoomScale": 1.2,
  4905. "clickEvents": [
  4906. {
  4907. "__id__": 146
  4908. }
  4909. ],
  4910. "_N$interactable": true,
  4911. "_N$enableAutoGrayEffect": false,
  4912. "_N$normalColor": {
  4913. "__type__": "cc.Color",
  4914. "r": 255,
  4915. "g": 255,
  4916. "b": 255,
  4917. "a": 255
  4918. },
  4919. "_N$disabledColor": {
  4920. "__type__": "cc.Color",
  4921. "r": 255,
  4922. "g": 255,
  4923. "b": 255,
  4924. "a": 255
  4925. },
  4926. "_N$normalSprite": {
  4927. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  4928. },
  4929. "_N$pressedSprite": {
  4930. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  4931. },
  4932. "pressedSprite": {
  4933. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  4934. },
  4935. "_N$hoverSprite": {
  4936. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  4937. },
  4938. "hoverSprite": {
  4939. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  4940. },
  4941. "_N$disabledSprite": {
  4942. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  4943. },
  4944. "_N$target": {
  4945. "__id__": 143
  4946. },
  4947. "_id": "861Gr0iwVEaoUB4sQx5JD1"
  4948. },
  4949. {
  4950. "__type__": "cc.ClickEvent",
  4951. "target": {
  4952. "__id__": 1
  4953. },
  4954. "component": "GameRank",
  4955. "handler": "handlePageFlipOver",
  4956. "customEventData": "0"
  4957. },
  4958. {
  4959. "__type__": "cc.Widget",
  4960. "_name": "",
  4961. "_objFlags": 0,
  4962. "node": {
  4963. "__id__": 143
  4964. },
  4965. "_enabled": true,
  4966. "alignMode": 1,
  4967. "_target": null,
  4968. "_alignFlags": 20,
  4969. "_left": 0,
  4970. "_right": 0,
  4971. "_top": 0,
  4972. "_bottom": 30,
  4973. "_verticalCenter": 0,
  4974. "_horizontalCenter": -157,
  4975. "_isAbsLeft": true,
  4976. "_isAbsRight": true,
  4977. "_isAbsTop": true,
  4978. "_isAbsBottom": true,
  4979. "_isAbsHorizontalCenter": true,
  4980. "_isAbsVerticalCenter": true,
  4981. "_originalWidth": 0,
  4982. "_originalHeight": 0,
  4983. "_id": "95WpJek4ZLr51EVqFAWzm6"
  4984. },
  4985. {
  4986. "__type__": "cc.PrefabInfo",
  4987. "root": {
  4988. "__id__": 1
  4989. },
  4990. "asset": {
  4991. "__uuid__": "cf09f681-edab-4bbb-9e85-11c0abe6fc35"
  4992. },
  4993. "fileId": "ddOK6mO8BL/ZjMLr5nOywk",
  4994. "sync": false
  4995. },
  4996. {
  4997. "__type__": "cc.Node",
  4998. "_name": "next_btn",
  4999. "_objFlags": 0,
  5000. "_parent": {
  5001. "__id__": 6
  5002. },
  5003. "_children": [],
  5004. "_active": true,
  5005. "_level": 3,
  5006. "_components": [
  5007. {
  5008. "__id__": 150
  5009. },
  5010. {
  5011. "__id__": 151
  5012. },
  5013. {
  5014. "__id__": 153
  5015. }
  5016. ],
  5017. "_prefab": {
  5018. "__id__": 154
  5019. },
  5020. "_opacity": 255,
  5021. "_color": {
  5022. "__type__": "cc.Color",
  5023. "r": 255,
  5024. "g": 255,
  5025. "b": 255,
  5026. "a": 255
  5027. },
  5028. "_contentSize": {
  5029. "__type__": "cc.Size",
  5030. "width": 264,
  5031. "height": 80
  5032. },
  5033. "_anchorPoint": {
  5034. "__type__": "cc.Vec2",
  5035. "x": 0.5,
  5036. "y": 0.5
  5037. },
  5038. "_position": {
  5039. "__type__": "cc.Vec3",
  5040. "x": 157,
  5041. "y": -500,
  5042. "z": 0
  5043. },
  5044. "_scale": {
  5045. "__type__": "cc.Vec3",
  5046. "x": 1,
  5047. "y": 1,
  5048. "z": 1
  5049. },
  5050. "_rotationX": 0,
  5051. "_rotationY": 0,
  5052. "_quat": {
  5053. "__type__": "cc.Quat",
  5054. "x": 0,
  5055. "y": 0,
  5056. "z": 0,
  5057. "w": 1
  5058. },
  5059. "_skewX": 0,
  5060. "_skewY": 0,
  5061. "_zIndex": 0,
  5062. "groupIndex": 0,
  5063. "_id": ""
  5064. },
  5065. {
  5066. "__type__": "cc.Sprite",
  5067. "_name": "",
  5068. "_objFlags": 0,
  5069. "node": {
  5070. "__id__": 149
  5071. },
  5072. "_enabled": true,
  5073. "_srcBlendFactor": 770,
  5074. "_dstBlendFactor": 771,
  5075. "_spriteFrame": {
  5076. "__uuid__": "34eea2a0-e4e1-4131-ab03-b56f3aa000d1"
  5077. },
  5078. "_type": 1,
  5079. "_sizeMode": 0,
  5080. "_fillType": 0,
  5081. "_fillCenter": {
  5082. "__type__": "cc.Vec2",
  5083. "x": 0,
  5084. "y": 0
  5085. },
  5086. "_fillStart": 0,
  5087. "_fillRange": 0,
  5088. "_isTrimmedMode": true,
  5089. "_state": 0,
  5090. "_atlas": null,
  5091. "_id": "09dGexLl9G86GfXoiRt76O"
  5092. },
  5093. {
  5094. "__type__": "cc.Button",
  5095. "_name": "",
  5096. "_objFlags": 0,
  5097. "node": {
  5098. "__id__": 149
  5099. },
  5100. "_enabled": true,
  5101. "transition": 1,
  5102. "pressedColor": {
  5103. "__type__": "cc.Color",
  5104. "r": 120,
  5105. "g": 120,
  5106. "b": 120,
  5107. "a": 255
  5108. },
  5109. "hoverColor": {
  5110. "__type__": "cc.Color",
  5111. "r": 255,
  5112. "g": 255,
  5113. "b": 255,
  5114. "a": 255
  5115. },
  5116. "duration": 0.1,
  5117. "zoomScale": 1.2,
  5118. "clickEvents": [
  5119. {
  5120. "__id__": 152
  5121. }
  5122. ],
  5123. "_N$interactable": true,
  5124. "_N$enableAutoGrayEffect": false,
  5125. "_N$normalColor": {
  5126. "__type__": "cc.Color",
  5127. "r": 255,
  5128. "g": 255,
  5129. "b": 255,
  5130. "a": 255
  5131. },
  5132. "_N$disabledColor": {
  5133. "__type__": "cc.Color",
  5134. "r": 255,
  5135. "g": 255,
  5136. "b": 255,
  5137. "a": 255
  5138. },
  5139. "_N$normalSprite": {
  5140. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  5141. },
  5142. "_N$pressedSprite": {
  5143. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  5144. },
  5145. "pressedSprite": {
  5146. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  5147. },
  5148. "_N$hoverSprite": {
  5149. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  5150. },
  5151. "hoverSprite": {
  5152. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  5153. },
  5154. "_N$disabledSprite": {
  5155. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  5156. },
  5157. "_N$target": {
  5158. "__id__": 149
  5159. },
  5160. "_id": "10mo7SQwxBhphHG4kfhj2B"
  5161. },
  5162. {
  5163. "__type__": "cc.ClickEvent",
  5164. "target": {
  5165. "__id__": 1
  5166. },
  5167. "component": "GameRank",
  5168. "handler": "handlePageFlipOver",
  5169. "customEventData": "1"
  5170. },
  5171. {
  5172. "__type__": "cc.Widget",
  5173. "_name": "",
  5174. "_objFlags": 0,
  5175. "node": {
  5176. "__id__": 149
  5177. },
  5178. "_enabled": true,
  5179. "alignMode": 1,
  5180. "_target": null,
  5181. "_alignFlags": 20,
  5182. "_left": 0,
  5183. "_right": 0,
  5184. "_top": 0,
  5185. "_bottom": 30,
  5186. "_verticalCenter": 0,
  5187. "_horizontalCenter": 157,
  5188. "_isAbsLeft": true,
  5189. "_isAbsRight": true,
  5190. "_isAbsTop": true,
  5191. "_isAbsBottom": true,
  5192. "_isAbsHorizontalCenter": true,
  5193. "_isAbsVerticalCenter": true,
  5194. "_originalWidth": 0,
  5195. "_originalHeight": 0,
  5196. "_id": "311o5FtEFO7JmJYiNqcNE1"
  5197. },
  5198. {
  5199. "__type__": "cc.PrefabInfo",
  5200. "root": {
  5201. "__id__": 1
  5202. },
  5203. "asset": {
  5204. "__uuid__": "cf09f681-edab-4bbb-9e85-11c0abe6fc35"
  5205. },
  5206. "fileId": "29BR21RhxIa4TdWz9lMdZk",
  5207. "sync": false
  5208. },
  5209. {
  5210. "__type__": "cc.PrefabInfo",
  5211. "root": {
  5212. "__id__": 1
  5213. },
  5214. "asset": {
  5215. "__uuid__": "cf09f681-edab-4bbb-9e85-11c0abe6fc35"
  5216. },
  5217. "fileId": "ccgRtaqBRCB79N0Rf0rVnC",
  5218. "sync": false
  5219. },
  5220. {
  5221. "__type__": "92795fzMa1KLJoZ2bBxxbI6",
  5222. "_name": "",
  5223. "_objFlags": 0,
  5224. "node": {
  5225. "__id__": 1
  5226. },
  5227. "_enabled": true,
  5228. "content": {
  5229. "__id__": 6
  5230. },
  5231. "friendNode": {
  5232. "__id__": 69
  5233. },
  5234. "countryNode": {
  5235. "__id__": 74
  5236. },
  5237. "crowdNode": {
  5238. "__id__": 119
  5239. },
  5240. "rankTab": [
  5241. {
  5242. "__id__": 29
  5243. },
  5244. {
  5245. "__id__": 42
  5246. },
  5247. {
  5248. "__id__": 54
  5249. }
  5250. ],
  5251. "previousButton": {
  5252. "__id__": 143
  5253. },
  5254. "nextButton": {
  5255. "__id__": 149
  5256. },
  5257. "_N$zIndex": 110,
  5258. "_id": "a3wcktze1Lrb75nBIlMs4x"
  5259. },
  5260. {
  5261. "__type__": "cc.PrefabInfo",
  5262. "root": {
  5263. "__id__": 1
  5264. },
  5265. "asset": {
  5266. "__uuid__": "cf09f681-edab-4bbb-9e85-11c0abe6fc35"
  5267. },
  5268. "fileId": "f8Xy+U7UpNX6fuLFnqRKlp",
  5269. "sync": false
  5270. }
  5271. ]