game_rank.prefab 117 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655
  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__": 197
  31. }
  32. ],
  33. "_prefab": {
  34. "__id__": 198
  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": ""
  174. },
  175. {
  176. "__type__": "cc.BlockInputEvents",
  177. "_name": "",
  178. "_objFlags": 0,
  179. "node": {
  180. "__id__": 2
  181. },
  182. "_enabled": true,
  183. "_id": ""
  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__": 115
  221. },
  222. {
  223. "__id__": 160
  224. },
  225. {
  226. "__id__": 184
  227. },
  228. {
  229. "__id__": 190
  230. }
  231. ],
  232. "_active": true,
  233. "_level": 2,
  234. "_components": [],
  235. "_prefab": {
  236. "__id__": 196
  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": ""
  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": ""
  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": ""
  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": ""
  660. },
  661. {
  662. "__type__": "cc.PrefabInfo",
  663. "root": {
  664. "__id__": 1
  665. },
  666. "asset": {
  667. "__uuid__": "cf09f681-edab-4bbb-9e85-11c0abe6fc35"
  668. },
  669. "fileId": "f8Dg2+P69BnqifxMi5F0+y",
  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": ""
  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": ""
  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": ""
  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": ""
  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": ""
  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": ""
  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": ""
  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": ""
  1304. },
  1305. {
  1306. "__type__": "cc.PrefabInfo",
  1307. "root": {
  1308. "__id__": 1
  1309. },
  1310. "asset": {
  1311. "__uuid__": "cf09f681-edab-4bbb-9e85-11c0abe6fc35"
  1312. },
  1313. "fileId": "2fnjupwFdNroKdkUW3Ss5a",
  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": ""
  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": ""
  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": ""
  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": ""
  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": ""
  1711. },
  1712. {
  1713. "__type__": "cc.PrefabInfo",
  1714. "root": {
  1715. "__id__": 1
  1716. },
  1717. "asset": {
  1718. "__uuid__": "cf09f681-edab-4bbb-9e85-11c0abe6fc35"
  1719. },
  1720. "fileId": "d2NMtKjblNqKuqqDY6gKuY",
  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": ""
  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": ""
  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": ""
  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": ""
  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": ""
  2118. },
  2119. {
  2120. "__type__": "cc.PrefabInfo",
  2121. "root": {
  2122. "__id__": 1
  2123. },
  2124. "asset": {
  2125. "__uuid__": "cf09f681-edab-4bbb-9e85-11c0abe6fc35"
  2126. },
  2127. "fileId": "d8bAz6Y0FORrGo7hhTHPWE",
  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": ""
  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": ""
  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": ""
  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": ""
  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": ""
  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": 1,
  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": ""
  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. {
  2377. "__id__": 70
  2378. },
  2379. {
  2380. "__id__": 79
  2381. }
  2382. ],
  2383. "_active": false,
  2384. "_level": 3,
  2385. "_components": [
  2386. {
  2387. "__id__": 111
  2388. },
  2389. {
  2390. "__id__": 112
  2391. },
  2392. {
  2393. "__id__": 113
  2394. }
  2395. ],
  2396. "_prefab": {
  2397. "__id__": 114
  2398. },
  2399. "_opacity": 255,
  2400. "_color": {
  2401. "__type__": "cc.Color",
  2402. "r": 255,
  2403. "g": 255,
  2404. "b": 255,
  2405. "a": 255
  2406. },
  2407. "_contentSize": {
  2408. "__type__": "cc.Size",
  2409. "width": 644,
  2410. "height": 844
  2411. },
  2412. "_anchorPoint": {
  2413. "__type__": "cc.Vec2",
  2414. "x": 0.5,
  2415. "y": 0.5
  2416. },
  2417. "_position": {
  2418. "__type__": "cc.Vec3",
  2419. "x": 0,
  2420. "y": -27,
  2421. "z": 0
  2422. },
  2423. "_scale": {
  2424. "__type__": "cc.Vec3",
  2425. "x": 1,
  2426. "y": 1,
  2427. "z": 1
  2428. },
  2429. "_rotationX": 0,
  2430. "_rotationY": 0,
  2431. "_quat": {
  2432. "__type__": "cc.Quat",
  2433. "x": 0,
  2434. "y": 0,
  2435. "z": 0,
  2436. "w": 1
  2437. },
  2438. "_skewX": 0,
  2439. "_skewY": 0,
  2440. "_zIndex": 0,
  2441. "groupIndex": 0,
  2442. "_id": ""
  2443. },
  2444. {
  2445. "__type__": "cc.Node",
  2446. "_name": "scrollview",
  2447. "_objFlags": 0,
  2448. "_parent": {
  2449. "__id__": 69
  2450. },
  2451. "_children": [
  2452. {
  2453. "__id__": 71
  2454. }
  2455. ],
  2456. "_active": false,
  2457. "_level": 4,
  2458. "_components": [
  2459. {
  2460. "__id__": 75
  2461. },
  2462. {
  2463. "__id__": 76
  2464. },
  2465. {
  2466. "__id__": 77
  2467. }
  2468. ],
  2469. "_prefab": {
  2470. "__id__": 78
  2471. },
  2472. "_opacity": 255,
  2473. "_color": {
  2474. "__type__": "cc.Color",
  2475. "r": 255,
  2476. "g": 255,
  2477. "b": 255,
  2478. "a": 255
  2479. },
  2480. "_contentSize": {
  2481. "__type__": "cc.Size",
  2482. "width": 644,
  2483. "height": 692
  2484. },
  2485. "_anchorPoint": {
  2486. "__type__": "cc.Vec2",
  2487. "x": 0.5,
  2488. "y": 0.5
  2489. },
  2490. "_position": {
  2491. "__type__": "cc.Vec3",
  2492. "x": 0,
  2493. "y": 76,
  2494. "z": 0
  2495. },
  2496. "_scale": {
  2497. "__type__": "cc.Vec3",
  2498. "x": 1,
  2499. "y": 1,
  2500. "z": 1
  2501. },
  2502. "_rotationX": 0,
  2503. "_rotationY": 0,
  2504. "_quat": {
  2505. "__type__": "cc.Quat",
  2506. "x": 0,
  2507. "y": 0,
  2508. "z": 0,
  2509. "w": 1
  2510. },
  2511. "_skewX": 0,
  2512. "_skewY": 0,
  2513. "_zIndex": 0,
  2514. "groupIndex": 0,
  2515. "_id": ""
  2516. },
  2517. {
  2518. "__type__": "cc.Node",
  2519. "_name": "layout",
  2520. "_objFlags": 0,
  2521. "_parent": {
  2522. "__id__": 70
  2523. },
  2524. "_children": [],
  2525. "_active": true,
  2526. "_level": 5,
  2527. "_components": [
  2528. {
  2529. "__id__": 72
  2530. },
  2531. {
  2532. "__id__": 73
  2533. }
  2534. ],
  2535. "_prefab": {
  2536. "__id__": 74
  2537. },
  2538. "_opacity": 255,
  2539. "_color": {
  2540. "__type__": "cc.Color",
  2541. "r": 255,
  2542. "g": 255,
  2543. "b": 255,
  2544. "a": 255
  2545. },
  2546. "_contentSize": {
  2547. "__type__": "cc.Size",
  2548. "width": 644,
  2549. "height": 692
  2550. },
  2551. "_anchorPoint": {
  2552. "__type__": "cc.Vec2",
  2553. "x": 0.5,
  2554. "y": 1
  2555. },
  2556. "_position": {
  2557. "__type__": "cc.Vec3",
  2558. "x": 0,
  2559. "y": 346,
  2560. "z": 0
  2561. },
  2562. "_scale": {
  2563. "__type__": "cc.Vec3",
  2564. "x": 1,
  2565. "y": 1,
  2566. "z": 1
  2567. },
  2568. "_rotationX": 0,
  2569. "_rotationY": 0,
  2570. "_quat": {
  2571. "__type__": "cc.Quat",
  2572. "x": 0,
  2573. "y": 0,
  2574. "z": 0,
  2575. "w": 1
  2576. },
  2577. "_skewX": 0,
  2578. "_skewY": 0,
  2579. "_zIndex": 0,
  2580. "groupIndex": 0,
  2581. "_id": ""
  2582. },
  2583. {
  2584. "__type__": "cc.Layout",
  2585. "_name": "",
  2586. "_objFlags": 0,
  2587. "node": {
  2588. "__id__": 71
  2589. },
  2590. "_enabled": true,
  2591. "_layoutSize": {
  2592. "__type__": "cc.Size",
  2593. "width": 644,
  2594. "height": 692
  2595. },
  2596. "_resize": 1,
  2597. "_N$layoutType": 2,
  2598. "_N$padding": 0,
  2599. "_N$cellSize": {
  2600. "__type__": "cc.Size",
  2601. "width": 40,
  2602. "height": 40
  2603. },
  2604. "_N$startAxis": 0,
  2605. "_N$paddingLeft": 0,
  2606. "_N$paddingRight": 0,
  2607. "_N$paddingTop": 0,
  2608. "_N$paddingBottom": 0,
  2609. "_N$spacingX": 0,
  2610. "_N$spacingY": 8,
  2611. "_N$verticalDirection": 1,
  2612. "_N$horizontalDirection": 0,
  2613. "_id": ""
  2614. },
  2615. {
  2616. "__type__": "cc.Widget",
  2617. "_name": "",
  2618. "_objFlags": 0,
  2619. "node": {
  2620. "__id__": 71
  2621. },
  2622. "_enabled": true,
  2623. "alignMode": 1,
  2624. "_target": null,
  2625. "_alignFlags": 1,
  2626. "_left": 0,
  2627. "_right": 0,
  2628. "_top": 0,
  2629. "_bottom": 0,
  2630. "_verticalCenter": 0,
  2631. "_horizontalCenter": 0,
  2632. "_isAbsLeft": true,
  2633. "_isAbsRight": true,
  2634. "_isAbsTop": true,
  2635. "_isAbsBottom": true,
  2636. "_isAbsHorizontalCenter": true,
  2637. "_isAbsVerticalCenter": true,
  2638. "_originalWidth": 0,
  2639. "_originalHeight": 692,
  2640. "_id": ""
  2641. },
  2642. {
  2643. "__type__": "cc.PrefabInfo",
  2644. "root": {
  2645. "__id__": 1
  2646. },
  2647. "asset": {
  2648. "__uuid__": "cf09f681-edab-4bbb-9e85-11c0abe6fc35"
  2649. },
  2650. "fileId": "f8VHnh/MBPHb8fqgJ7ioSM",
  2651. "sync": false
  2652. },
  2653. {
  2654. "__type__": "cc.ScrollView",
  2655. "_name": "",
  2656. "_objFlags": 0,
  2657. "node": {
  2658. "__id__": 70
  2659. },
  2660. "_enabled": true,
  2661. "horizontal": false,
  2662. "vertical": false,
  2663. "inertia": true,
  2664. "brake": 0.75,
  2665. "elastic": true,
  2666. "bounceDuration": 0.23,
  2667. "scrollEvents": [],
  2668. "cancelInnerEvents": true,
  2669. "_N$content": {
  2670. "__id__": 71
  2671. },
  2672. "content": {
  2673. "__id__": 71
  2674. },
  2675. "_N$horizontalScrollBar": null,
  2676. "_N$verticalScrollBar": null,
  2677. "_id": ""
  2678. },
  2679. {
  2680. "__type__": "cc.Mask",
  2681. "_name": "",
  2682. "_objFlags": 0,
  2683. "node": {
  2684. "__id__": 70
  2685. },
  2686. "_enabled": true,
  2687. "_srcBlendFactor": 770,
  2688. "_dstBlendFactor": 771,
  2689. "_spriteFrame": null,
  2690. "_type": 0,
  2691. "_segments": 64,
  2692. "_N$alphaThreshold": 0,
  2693. "_N$inverted": false,
  2694. "_id": ""
  2695. },
  2696. {
  2697. "__type__": "cc.Widget",
  2698. "_name": "",
  2699. "_objFlags": 0,
  2700. "node": {
  2701. "__id__": 70
  2702. },
  2703. "_enabled": true,
  2704. "alignMode": 1,
  2705. "_target": null,
  2706. "_alignFlags": 45,
  2707. "_left": 0,
  2708. "_right": 0,
  2709. "_top": 0,
  2710. "_bottom": 152,
  2711. "_verticalCenter": 0,
  2712. "_horizontalCenter": 0,
  2713. "_isAbsLeft": true,
  2714. "_isAbsRight": true,
  2715. "_isAbsTop": true,
  2716. "_isAbsBottom": true,
  2717. "_isAbsHorizontalCenter": true,
  2718. "_isAbsVerticalCenter": true,
  2719. "_originalWidth": 240,
  2720. "_originalHeight": 250,
  2721. "_id": ""
  2722. },
  2723. {
  2724. "__type__": "cc.PrefabInfo",
  2725. "root": {
  2726. "__id__": 1
  2727. },
  2728. "asset": {
  2729. "__uuid__": "cf09f681-edab-4bbb-9e85-11c0abe6fc35"
  2730. },
  2731. "fileId": "a5830FAM9LKZ0rZwiXOar8",
  2732. "sync": false
  2733. },
  2734. {
  2735. "__type__": "cc.Node",
  2736. "_name": "game_rank_item",
  2737. "_objFlags": 0,
  2738. "_parent": {
  2739. "__id__": 69
  2740. },
  2741. "_children": [
  2742. {
  2743. "__id__": 80
  2744. },
  2745. {
  2746. "__id__": 83
  2747. },
  2748. {
  2749. "__id__": 86
  2750. },
  2751. {
  2752. "__id__": 90
  2753. },
  2754. {
  2755. "__id__": 97
  2756. },
  2757. {
  2758. "__id__": 100
  2759. }
  2760. ],
  2761. "_active": false,
  2762. "_level": 4,
  2763. "_components": [
  2764. {
  2765. "__id__": 108
  2766. },
  2767. {
  2768. "__id__": 109
  2769. }
  2770. ],
  2771. "_prefab": {
  2772. "__id__": 110
  2773. },
  2774. "_opacity": 255,
  2775. "_color": {
  2776. "__type__": "cc.Color",
  2777. "r": 255,
  2778. "g": 255,
  2779. "b": 255,
  2780. "a": 255
  2781. },
  2782. "_contentSize": {
  2783. "__type__": "cc.Size",
  2784. "width": 644,
  2785. "height": 134
  2786. },
  2787. "_anchorPoint": {
  2788. "__type__": "cc.Vec2",
  2789. "x": 0.5,
  2790. "y": 0.5
  2791. },
  2792. "_position": {
  2793. "__type__": "cc.Vec3",
  2794. "x": 0,
  2795. "y": -355,
  2796. "z": 0
  2797. },
  2798. "_scale": {
  2799. "__type__": "cc.Vec3",
  2800. "x": 1,
  2801. "y": 1,
  2802. "z": 1
  2803. },
  2804. "_rotationX": 0,
  2805. "_rotationY": 0,
  2806. "_quat": {
  2807. "__type__": "cc.Quat",
  2808. "x": 0,
  2809. "y": 0,
  2810. "z": 0,
  2811. "w": 1
  2812. },
  2813. "_skewX": 0,
  2814. "_skewY": 0,
  2815. "_zIndex": 0,
  2816. "groupIndex": 0,
  2817. "_id": ""
  2818. },
  2819. {
  2820. "__type__": "cc.Node",
  2821. "_name": "sprite",
  2822. "_objFlags": 0,
  2823. "_parent": {
  2824. "__id__": 79
  2825. },
  2826. "_children": [],
  2827. "_active": true,
  2828. "_level": 2,
  2829. "_components": [
  2830. {
  2831. "__id__": 81
  2832. }
  2833. ],
  2834. "_prefab": {
  2835. "__id__": 82
  2836. },
  2837. "_opacity": 255,
  2838. "_color": {
  2839. "__type__": "cc.Color",
  2840. "r": 255,
  2841. "g": 255,
  2842. "b": 255,
  2843. "a": 255
  2844. },
  2845. "_contentSize": {
  2846. "__type__": "cc.Size",
  2847. "width": 95,
  2848. "height": 95
  2849. },
  2850. "_anchorPoint": {
  2851. "__type__": "cc.Vec2",
  2852. "x": 0.5,
  2853. "y": 0.5
  2854. },
  2855. "_position": {
  2856. "__type__": "cc.Vec3",
  2857. "x": -163,
  2858. "y": 3,
  2859. "z": 0
  2860. },
  2861. "_scale": {
  2862. "__type__": "cc.Vec3",
  2863. "x": 1,
  2864. "y": 1,
  2865. "z": 1
  2866. },
  2867. "_rotationX": 0,
  2868. "_rotationY": 0,
  2869. "_quat": {
  2870. "__type__": "cc.Quat",
  2871. "x": 0,
  2872. "y": 0,
  2873. "z": 0,
  2874. "w": 1
  2875. },
  2876. "_skewX": 0,
  2877. "_skewY": 0,
  2878. "_zIndex": 0,
  2879. "groupIndex": 0,
  2880. "_id": ""
  2881. },
  2882. {
  2883. "__type__": "cc.Sprite",
  2884. "_name": "",
  2885. "_objFlags": 0,
  2886. "node": {
  2887. "__id__": 80
  2888. },
  2889. "_enabled": true,
  2890. "_srcBlendFactor": 770,
  2891. "_dstBlendFactor": 771,
  2892. "_spriteFrame": {
  2893. "__uuid__": "440d27dc-97e0-4316-9af8-52bc3f94d5c1"
  2894. },
  2895. "_type": 0,
  2896. "_sizeMode": 0,
  2897. "_fillType": 0,
  2898. "_fillCenter": {
  2899. "__type__": "cc.Vec2",
  2900. "x": 0,
  2901. "y": 0
  2902. },
  2903. "_fillStart": 0,
  2904. "_fillRange": 0,
  2905. "_isTrimmedMode": true,
  2906. "_state": 0,
  2907. "_atlas": null,
  2908. "_id": ""
  2909. },
  2910. {
  2911. "__type__": "cc.PrefabInfo",
  2912. "root": {
  2913. "__id__": 1
  2914. },
  2915. "asset": {
  2916. "__uuid__": "cf09f681-edab-4bbb-9e85-11c0abe6fc35"
  2917. },
  2918. "fileId": "f4XYlp9DBFPZ041fVUPY8P",
  2919. "sync": false
  2920. },
  2921. {
  2922. "__type__": "cc.Node",
  2923. "_name": "gameRankBg",
  2924. "_objFlags": 0,
  2925. "_parent": {
  2926. "__id__": 79
  2927. },
  2928. "_children": [],
  2929. "_active": true,
  2930. "_level": 2,
  2931. "_components": [
  2932. {
  2933. "__id__": 84
  2934. }
  2935. ],
  2936. "_prefab": {
  2937. "__id__": 85
  2938. },
  2939. "_opacity": 255,
  2940. "_color": {
  2941. "__type__": "cc.Color",
  2942. "r": 255,
  2943. "g": 255,
  2944. "b": 255,
  2945. "a": 255
  2946. },
  2947. "_contentSize": {
  2948. "__type__": "cc.Size",
  2949. "width": 644,
  2950. "height": 134
  2951. },
  2952. "_anchorPoint": {
  2953. "__type__": "cc.Vec2",
  2954. "x": 0.5,
  2955. "y": 0.5
  2956. },
  2957. "_position": {
  2958. "__type__": "cc.Vec3",
  2959. "x": 0,
  2960. "y": 0,
  2961. "z": 0
  2962. },
  2963. "_scale": {
  2964. "__type__": "cc.Vec3",
  2965. "x": 1,
  2966. "y": 1,
  2967. "z": 1
  2968. },
  2969. "_rotationX": 0,
  2970. "_rotationY": 0,
  2971. "_quat": {
  2972. "__type__": "cc.Quat",
  2973. "x": 0,
  2974. "y": 0,
  2975. "z": 0,
  2976. "w": 1
  2977. },
  2978. "_skewX": 0,
  2979. "_skewY": 0,
  2980. "_zIndex": 0,
  2981. "groupIndex": 0,
  2982. "_id": ""
  2983. },
  2984. {
  2985. "__type__": "cc.Sprite",
  2986. "_name": "",
  2987. "_objFlags": 0,
  2988. "node": {
  2989. "__id__": 83
  2990. },
  2991. "_enabled": true,
  2992. "_srcBlendFactor": 770,
  2993. "_dstBlendFactor": 771,
  2994. "_spriteFrame": {
  2995. "__uuid__": "6f177754-7101-4f15-bbbd-8bda9989e769"
  2996. },
  2997. "_type": 0,
  2998. "_sizeMode": 1,
  2999. "_fillType": 0,
  3000. "_fillCenter": {
  3001. "__type__": "cc.Vec2",
  3002. "x": 0,
  3003. "y": 0
  3004. },
  3005. "_fillStart": 0,
  3006. "_fillRange": 0,
  3007. "_isTrimmedMode": true,
  3008. "_state": 0,
  3009. "_atlas": null,
  3010. "_id": ""
  3011. },
  3012. {
  3013. "__type__": "cc.PrefabInfo",
  3014. "root": {
  3015. "__id__": 1
  3016. },
  3017. "asset": {
  3018. "__uuid__": "cf09f681-edab-4bbb-9e85-11c0abe6fc35"
  3019. },
  3020. "fileId": "afH2iAkiZBkrQZgpbQqQ9S",
  3021. "sync": false
  3022. },
  3023. {
  3024. "__type__": "cc.Node",
  3025. "_name": "rankSprite",
  3026. "_objFlags": 0,
  3027. "_parent": {
  3028. "__id__": 79
  3029. },
  3030. "_children": [],
  3031. "_active": true,
  3032. "_level": 2,
  3033. "_components": [
  3034. {
  3035. "__id__": 87
  3036. },
  3037. {
  3038. "__id__": 88
  3039. }
  3040. ],
  3041. "_prefab": {
  3042. "__id__": 89
  3043. },
  3044. "_opacity": 255,
  3045. "_color": {
  3046. "__type__": "cc.Color",
  3047. "r": 255,
  3048. "g": 255,
  3049. "b": 255,
  3050. "a": 255
  3051. },
  3052. "_contentSize": {
  3053. "__type__": "cc.Size",
  3054. "width": 66,
  3055. "height": 68
  3056. },
  3057. "_anchorPoint": {
  3058. "__type__": "cc.Vec2",
  3059. "x": 0.5,
  3060. "y": 0.5
  3061. },
  3062. "_position": {
  3063. "__type__": "cc.Vec3",
  3064. "x": -269,
  3065. "y": 0,
  3066. "z": 0
  3067. },
  3068. "_scale": {
  3069. "__type__": "cc.Vec3",
  3070. "x": 1,
  3071. "y": 1,
  3072. "z": 1
  3073. },
  3074. "_rotationX": 0,
  3075. "_rotationY": 0,
  3076. "_quat": {
  3077. "__type__": "cc.Quat",
  3078. "x": 0,
  3079. "y": 0,
  3080. "z": 0,
  3081. "w": 1
  3082. },
  3083. "_skewX": 0,
  3084. "_skewY": 0,
  3085. "_zIndex": 0,
  3086. "groupIndex": 0,
  3087. "_id": ""
  3088. },
  3089. {
  3090. "__type__": "cc.Sprite",
  3091. "_name": "",
  3092. "_objFlags": 0,
  3093. "node": {
  3094. "__id__": 86
  3095. },
  3096. "_enabled": true,
  3097. "_srcBlendFactor": 770,
  3098. "_dstBlendFactor": 771,
  3099. "_spriteFrame": {
  3100. "__uuid__": "942165e1-1277-4cd8-ad91-daa4a9c65ac1"
  3101. },
  3102. "_type": 0,
  3103. "_sizeMode": 1,
  3104. "_fillType": 0,
  3105. "_fillCenter": {
  3106. "__type__": "cc.Vec2",
  3107. "x": 0,
  3108. "y": 0
  3109. },
  3110. "_fillStart": 0,
  3111. "_fillRange": 0,
  3112. "_isTrimmedMode": true,
  3113. "_state": 0,
  3114. "_atlas": null,
  3115. "_id": ""
  3116. },
  3117. {
  3118. "__type__": "cc.Widget",
  3119. "_name": "",
  3120. "_objFlags": 0,
  3121. "node": {
  3122. "__id__": 86
  3123. },
  3124. "_enabled": true,
  3125. "alignMode": 1,
  3126. "_target": null,
  3127. "_alignFlags": 8,
  3128. "_left": 20,
  3129. "_right": 0,
  3130. "_top": 0,
  3131. "_bottom": 0,
  3132. "_verticalCenter": 0,
  3133. "_horizontalCenter": 0,
  3134. "_isAbsLeft": true,
  3135. "_isAbsRight": true,
  3136. "_isAbsTop": true,
  3137. "_isAbsBottom": true,
  3138. "_isAbsHorizontalCenter": true,
  3139. "_isAbsVerticalCenter": true,
  3140. "_originalWidth": 0,
  3141. "_originalHeight": 0,
  3142. "_id": ""
  3143. },
  3144. {
  3145. "__type__": "cc.PrefabInfo",
  3146. "root": {
  3147. "__id__": 1
  3148. },
  3149. "asset": {
  3150. "__uuid__": "cf09f681-edab-4bbb-9e85-11c0abe6fc35"
  3151. },
  3152. "fileId": "1bSUMSXBhHJaRPEY081Srh",
  3153. "sync": false
  3154. },
  3155. {
  3156. "__type__": "cc.Node",
  3157. "_name": "rankRichtext",
  3158. "_objFlags": 0,
  3159. "_parent": {
  3160. "__id__": 79
  3161. },
  3162. "_children": [
  3163. {
  3164. "__id__": 91
  3165. }
  3166. ],
  3167. "_active": false,
  3168. "_level": 2,
  3169. "_components": [
  3170. {
  3171. "__id__": 95
  3172. }
  3173. ],
  3174. "_prefab": {
  3175. "__id__": 96
  3176. },
  3177. "_opacity": 255,
  3178. "_color": {
  3179. "__type__": "cc.Color",
  3180. "r": 255,
  3181. "g": 255,
  3182. "b": 255,
  3183. "a": 255
  3184. },
  3185. "_contentSize": {
  3186. "__type__": "cc.Size",
  3187. "width": 100,
  3188. "height": 40
  3189. },
  3190. "_anchorPoint": {
  3191. "__type__": "cc.Vec2",
  3192. "x": 0.5,
  3193. "y": 0.5
  3194. },
  3195. "_position": {
  3196. "__type__": "cc.Vec3",
  3197. "x": -267,
  3198. "y": 0,
  3199. "z": 0
  3200. },
  3201. "_scale": {
  3202. "__type__": "cc.Vec3",
  3203. "x": 1,
  3204. "y": 1,
  3205. "z": 1
  3206. },
  3207. "_rotationX": 0,
  3208. "_rotationY": 0,
  3209. "_quat": {
  3210. "__type__": "cc.Quat",
  3211. "x": 0,
  3212. "y": 0,
  3213. "z": 0,
  3214. "w": 1
  3215. },
  3216. "_skewX": 0,
  3217. "_skewY": 0,
  3218. "_zIndex": 0,
  3219. "groupIndex": 0,
  3220. "_id": ""
  3221. },
  3222. {
  3223. "__type__": "cc.PrivateNode",
  3224. "_name": "RICHTEXT_CHILD",
  3225. "_objFlags": 0,
  3226. "_parent": {
  3227. "__id__": 90
  3228. },
  3229. "_children": [],
  3230. "_active": false,
  3231. "_level": 3,
  3232. "_components": [
  3233. {
  3234. "__id__": 92
  3235. },
  3236. {
  3237. "__id__": 93
  3238. }
  3239. ],
  3240. "_prefab": {
  3241. "__id__": 94
  3242. },
  3243. "_opacity": 255,
  3244. "_color": {
  3245. "__type__": "cc.Color",
  3246. "r": 255,
  3247. "g": 255,
  3248. "b": 255,
  3249. "a": 255
  3250. },
  3251. "_contentSize": {
  3252. "__type__": "cc.Size",
  3253. "width": 71.57,
  3254. "height": 40
  3255. },
  3256. "_anchorPoint": {
  3257. "__type__": "cc.Vec2",
  3258. "x": 0,
  3259. "y": 0
  3260. },
  3261. "_position": {
  3262. "__type__": "cc.Vec3",
  3263. "x": -35.785,
  3264. "y": -20,
  3265. "z": 0
  3266. },
  3267. "_scale": {
  3268. "__type__": "cc.Vec3",
  3269. "x": 1,
  3270. "y": 1,
  3271. "z": 1
  3272. },
  3273. "_rotationX": 0,
  3274. "_rotationY": 0,
  3275. "_quat": {
  3276. "__type__": "cc.Quat",
  3277. "x": 0,
  3278. "y": 0,
  3279. "z": 0,
  3280. "w": 1
  3281. },
  3282. "_skewX": 0,
  3283. "_skewY": 0,
  3284. "_zIndex": -32768,
  3285. "groupIndex": 0,
  3286. "_id": ""
  3287. },
  3288. {
  3289. "__type__": "cc.Label",
  3290. "_name": "",
  3291. "_objFlags": 0,
  3292. "node": {
  3293. "__id__": 91
  3294. },
  3295. "_enabled": true,
  3296. "_srcBlendFactor": 1,
  3297. "_dstBlendFactor": 771,
  3298. "_useOriginalSize": true,
  3299. "_string": "100+",
  3300. "_N$string": "100+",
  3301. "_fontSize": 30,
  3302. "_lineHeight": 40,
  3303. "_enableWrapText": true,
  3304. "_N$file": null,
  3305. "_isSystemFontUsed": true,
  3306. "_spacingX": 0,
  3307. "_N$horizontalAlign": 0,
  3308. "_N$verticalAlign": 1,
  3309. "_N$fontFamily": "Arial",
  3310. "_N$overflow": 0,
  3311. "_id": ""
  3312. },
  3313. {
  3314. "__type__": "cc.LabelOutline",
  3315. "_name": "",
  3316. "_objFlags": 0,
  3317. "node": {
  3318. "__id__": 91
  3319. },
  3320. "_enabled": true,
  3321. "_color": {
  3322. "__type__": "cc.Color",
  3323. "r": 105,
  3324. "g": 46,
  3325. "b": 14,
  3326. "a": 255
  3327. },
  3328. "_width": 2,
  3329. "_id": ""
  3330. },
  3331. {
  3332. "__type__": "cc.PrefabInfo",
  3333. "root": {
  3334. "__id__": 1
  3335. },
  3336. "asset": {
  3337. "__uuid__": "cf09f681-edab-4bbb-9e85-11c0abe6fc35"
  3338. },
  3339. "fileId": "53uSRiilZEVbyNtZqr4JtM",
  3340. "sync": false
  3341. },
  3342. {
  3343. "__type__": "cc.RichText",
  3344. "_name": "",
  3345. "_objFlags": 0,
  3346. "node": {
  3347. "__id__": 90
  3348. },
  3349. "_enabled": true,
  3350. "_N$string": "<b><outline color=#692e0e width=2><color=white>100+</color></outline></b>",
  3351. "_N$horizontalAlign": 1,
  3352. "_N$fontSize": 30,
  3353. "_N$font": null,
  3354. "_N$maxWidth": 100,
  3355. "_N$lineHeight": 40,
  3356. "_N$imageAtlas": null,
  3357. "_N$handleTouchEvent": true,
  3358. "_id": ""
  3359. },
  3360. {
  3361. "__type__": "cc.PrefabInfo",
  3362. "root": {
  3363. "__id__": 1
  3364. },
  3365. "asset": {
  3366. "__uuid__": "cf09f681-edab-4bbb-9e85-11c0abe6fc35"
  3367. },
  3368. "fileId": "68YIWHOp1Jhbw1Szlvg7Gw",
  3369. "sync": false
  3370. },
  3371. {
  3372. "__type__": "cc.Node",
  3373. "_name": "nameLabel",
  3374. "_objFlags": 0,
  3375. "_parent": {
  3376. "__id__": 79
  3377. },
  3378. "_children": [],
  3379. "_active": true,
  3380. "_level": 2,
  3381. "_components": [
  3382. {
  3383. "__id__": 98
  3384. }
  3385. ],
  3386. "_prefab": {
  3387. "__id__": 99
  3388. },
  3389. "_opacity": 255,
  3390. "_color": {
  3391. "__type__": "cc.Color",
  3392. "r": 54,
  3393. "g": 46,
  3394. "b": 43,
  3395. "a": 255
  3396. },
  3397. "_contentSize": {
  3398. "__type__": "cc.Size",
  3399. "width": 140,
  3400. "height": 26
  3401. },
  3402. "_anchorPoint": {
  3403. "__type__": "cc.Vec2",
  3404. "x": 0,
  3405. "y": 0.5
  3406. },
  3407. "_position": {
  3408. "__type__": "cc.Vec3",
  3409. "x": -100,
  3410. "y": 0,
  3411. "z": 0
  3412. },
  3413. "_scale": {
  3414. "__type__": "cc.Vec3",
  3415. "x": 1,
  3416. "y": 1,
  3417. "z": 1
  3418. },
  3419. "_rotationX": 0,
  3420. "_rotationY": 0,
  3421. "_quat": {
  3422. "__type__": "cc.Quat",
  3423. "x": 0,
  3424. "y": 0,
  3425. "z": 0,
  3426. "w": 1
  3427. },
  3428. "_skewX": 0,
  3429. "_skewY": 0,
  3430. "_zIndex": 0,
  3431. "groupIndex": 0,
  3432. "_id": ""
  3433. },
  3434. {
  3435. "__type__": "cc.Label",
  3436. "_name": "",
  3437. "_objFlags": 0,
  3438. "node": {
  3439. "__id__": 97
  3440. },
  3441. "_enabled": true,
  3442. "_srcBlendFactor": 1,
  3443. "_dstBlendFactor": 771,
  3444. "_useOriginalSize": false,
  3445. "_string": "Label",
  3446. "_N$string": "Label",
  3447. "_fontSize": 24,
  3448. "_lineHeight": 26,
  3449. "_enableWrapText": false,
  3450. "_N$file": null,
  3451. "_isSystemFontUsed": true,
  3452. "_spacingX": 0,
  3453. "_N$horizontalAlign": 0,
  3454. "_N$verticalAlign": 1,
  3455. "_N$fontFamily": "Arial",
  3456. "_N$overflow": 2,
  3457. "_id": ""
  3458. },
  3459. {
  3460. "__type__": "cc.PrefabInfo",
  3461. "root": {
  3462. "__id__": 1
  3463. },
  3464. "asset": {
  3465. "__uuid__": "cf09f681-edab-4bbb-9e85-11c0abe6fc35"
  3466. },
  3467. "fileId": "64gN/x5oBJa6MZNe0kj+B0",
  3468. "sync": false
  3469. },
  3470. {
  3471. "__type__": "cc.Node",
  3472. "_name": "lvRichtext",
  3473. "_objFlags": 0,
  3474. "_parent": {
  3475. "__id__": 79
  3476. },
  3477. "_children": [
  3478. {
  3479. "__id__": 101
  3480. }
  3481. ],
  3482. "_active": true,
  3483. "_level": 2,
  3484. "_components": [
  3485. {
  3486. "__id__": 105
  3487. },
  3488. {
  3489. "__id__": 106
  3490. }
  3491. ],
  3492. "_prefab": {
  3493. "__id__": 107
  3494. },
  3495. "_opacity": 255,
  3496. "_color": {
  3497. "__type__": "cc.Color",
  3498. "r": 255,
  3499. "g": 255,
  3500. "b": 255,
  3501. "a": 255
  3502. },
  3503. "_contentSize": {
  3504. "__type__": "cc.Size",
  3505. "width": 250,
  3506. "height": 35
  3507. },
  3508. "_anchorPoint": {
  3509. "__type__": "cc.Vec2",
  3510. "x": 1,
  3511. "y": 0.5
  3512. },
  3513. "_position": {
  3514. "__type__": "cc.Vec3",
  3515. "x": 297,
  3516. "y": 0,
  3517. "z": 0
  3518. },
  3519. "_scale": {
  3520. "__type__": "cc.Vec3",
  3521. "x": 1,
  3522. "y": 1,
  3523. "z": 1
  3524. },
  3525. "_rotationX": 0,
  3526. "_rotationY": 0,
  3527. "_quat": {
  3528. "__type__": "cc.Quat",
  3529. "x": 0,
  3530. "y": 0,
  3531. "z": 0,
  3532. "w": 1
  3533. },
  3534. "_skewX": 0,
  3535. "_skewY": 0,
  3536. "_zIndex": 0,
  3537. "groupIndex": 0,
  3538. "_id": ""
  3539. },
  3540. {
  3541. "__type__": "cc.PrivateNode",
  3542. "_name": "RICHTEXT_CHILD",
  3543. "_objFlags": 0,
  3544. "_parent": {
  3545. "__id__": 100
  3546. },
  3547. "_children": [],
  3548. "_active": false,
  3549. "_level": 3,
  3550. "_components": [
  3551. {
  3552. "__id__": 102
  3553. },
  3554. {
  3555. "__id__": 103
  3556. }
  3557. ],
  3558. "_prefab": {
  3559. "__id__": 104
  3560. },
  3561. "_opacity": 255,
  3562. "_color": {
  3563. "__type__": "cc.Color",
  3564. "r": 147,
  3565. "g": 76,
  3566. "b": 49,
  3567. "a": 255
  3568. },
  3569. "_contentSize": {
  3570. "__type__": "cc.Size",
  3571. "width": 62.37,
  3572. "height": 35
  3573. },
  3574. "_anchorPoint": {
  3575. "__type__": "cc.Vec2",
  3576. "x": 0,
  3577. "y": 0
  3578. },
  3579. "_position": {
  3580. "__type__": "cc.Vec3",
  3581. "x": -62.37,
  3582. "y": -17.5,
  3583. "z": 0
  3584. },
  3585. "_scale": {
  3586. "__type__": "cc.Vec3",
  3587. "x": 1,
  3588. "y": 1,
  3589. "z": 1
  3590. },
  3591. "_rotationX": 0,
  3592. "_rotationY": 0,
  3593. "_quat": {
  3594. "__type__": "cc.Quat",
  3595. "x": 0,
  3596. "y": 0,
  3597. "z": 0,
  3598. "w": 1
  3599. },
  3600. "_skewX": 0,
  3601. "_skewY": 0,
  3602. "_zIndex": -32768,
  3603. "groupIndex": 0,
  3604. "_id": ""
  3605. },
  3606. {
  3607. "__type__": "cc.Label",
  3608. "_name": "",
  3609. "_objFlags": 0,
  3610. "node": {
  3611. "__id__": 101
  3612. },
  3613. "_enabled": true,
  3614. "_srcBlendFactor": 1,
  3615. "_dstBlendFactor": 771,
  3616. "_useOriginalSize": true,
  3617. "_string": "LV.1",
  3618. "_N$string": "LV.1",
  3619. "_fontSize": 30,
  3620. "_lineHeight": 35,
  3621. "_enableWrapText": true,
  3622. "_N$file": null,
  3623. "_isSystemFontUsed": true,
  3624. "_spacingX": 0,
  3625. "_N$horizontalAlign": 0,
  3626. "_N$verticalAlign": 1,
  3627. "_N$fontFamily": "Arial",
  3628. "_N$overflow": 0,
  3629. "_id": ""
  3630. },
  3631. {
  3632. "__type__": "cc.LabelOutline",
  3633. "_name": "",
  3634. "_objFlags": 0,
  3635. "node": {
  3636. "__id__": 101
  3637. },
  3638. "_enabled": true,
  3639. "_color": {
  3640. "__type__": "cc.Color",
  3641. "r": 255,
  3642. "g": 255,
  3643. "b": 255,
  3644. "a": 255
  3645. },
  3646. "_width": 2,
  3647. "_id": ""
  3648. },
  3649. {
  3650. "__type__": "cc.PrefabInfo",
  3651. "root": {
  3652. "__id__": 1
  3653. },
  3654. "asset": {
  3655. "__uuid__": "cf09f681-edab-4bbb-9e85-11c0abe6fc35"
  3656. },
  3657. "fileId": "88aF+lHqhGX7lRKgHDsH17",
  3658. "sync": false
  3659. },
  3660. {
  3661. "__type__": "cc.RichText",
  3662. "_name": "",
  3663. "_objFlags": 0,
  3664. "node": {
  3665. "__id__": 100
  3666. },
  3667. "_enabled": true,
  3668. "_N$string": "<b><outline color=white width=2><color=#934C31>LV.1</color></outline></b>",
  3669. "_N$horizontalAlign": 2,
  3670. "_N$fontSize": 30,
  3671. "_N$font": null,
  3672. "_N$maxWidth": 250,
  3673. "_N$lineHeight": 35,
  3674. "_N$imageAtlas": null,
  3675. "_N$handleTouchEvent": true,
  3676. "_id": ""
  3677. },
  3678. {
  3679. "__type__": "cc.Widget",
  3680. "_name": "",
  3681. "_objFlags": 0,
  3682. "node": {
  3683. "__id__": 100
  3684. },
  3685. "_enabled": true,
  3686. "alignMode": 1,
  3687. "_target": null,
  3688. "_alignFlags": 32,
  3689. "_left": 0,
  3690. "_right": 25,
  3691. "_top": 0,
  3692. "_bottom": 0,
  3693. "_verticalCenter": 0,
  3694. "_horizontalCenter": 0,
  3695. "_isAbsLeft": true,
  3696. "_isAbsRight": true,
  3697. "_isAbsTop": true,
  3698. "_isAbsBottom": true,
  3699. "_isAbsHorizontalCenter": true,
  3700. "_isAbsVerticalCenter": true,
  3701. "_originalWidth": 0,
  3702. "_originalHeight": 0,
  3703. "_id": ""
  3704. },
  3705. {
  3706. "__type__": "cc.PrefabInfo",
  3707. "root": {
  3708. "__id__": 1
  3709. },
  3710. "asset": {
  3711. "__uuid__": "cf09f681-edab-4bbb-9e85-11c0abe6fc35"
  3712. },
  3713. "fileId": "cfWJRMxHxFcrVtQWsMKOYt",
  3714. "sync": false
  3715. },
  3716. {
  3717. "__type__": "e1b9ajTOylHjrIVTeaPia/Q",
  3718. "_name": "",
  3719. "_objFlags": 0,
  3720. "node": {
  3721. "__id__": 79
  3722. },
  3723. "_enabled": true,
  3724. "headDefaultSpriteFrame": {
  3725. "__uuid__": "440d27dc-97e0-4316-9af8-52bc3f94d5c1"
  3726. },
  3727. "headSprite": {
  3728. "__id__": 81
  3729. },
  3730. "background": {
  3731. "__id__": 84
  3732. },
  3733. "rankSprite": {
  3734. "__id__": 87
  3735. },
  3736. "rankRichText": {
  3737. "__id__": 95
  3738. },
  3739. "nameLabel": {
  3740. "__id__": 98
  3741. },
  3742. "lvRichText": {
  3743. "__id__": 105
  3744. },
  3745. "rankSpriteFrame": [
  3746. {
  3747. "__uuid__": "942165e1-1277-4cd8-ad91-daa4a9c65ac1"
  3748. },
  3749. {
  3750. "__uuid__": "365d3428-d618-4e2f-935c-fe2e1b9a8296"
  3751. },
  3752. {
  3753. "__uuid__": "b28d8db0-f3e0-4680-991d-3b2b90342382"
  3754. }
  3755. ],
  3756. "backgroundSpriteFrame": [
  3757. {
  3758. "__uuid__": "c1045b89-0602-4927-8cf8-ad413dd42490"
  3759. },
  3760. {
  3761. "__uuid__": "6f177754-7101-4f15-bbbd-8bda9989e769"
  3762. }
  3763. ],
  3764. "_id": ""
  3765. },
  3766. {
  3767. "__type__": "cc.Widget",
  3768. "_name": "",
  3769. "_objFlags": 0,
  3770. "node": {
  3771. "__id__": 79
  3772. },
  3773. "_enabled": true,
  3774. "alignMode": 1,
  3775. "_target": null,
  3776. "_alignFlags": 4,
  3777. "_left": 0,
  3778. "_right": 0,
  3779. "_top": 0,
  3780. "_bottom": 0,
  3781. "_verticalCenter": 0,
  3782. "_horizontalCenter": 0,
  3783. "_isAbsLeft": true,
  3784. "_isAbsRight": true,
  3785. "_isAbsTop": true,
  3786. "_isAbsBottom": true,
  3787. "_isAbsHorizontalCenter": true,
  3788. "_isAbsVerticalCenter": true,
  3789. "_originalWidth": 0,
  3790. "_originalHeight": 0,
  3791. "_id": ""
  3792. },
  3793. {
  3794. "__type__": "cc.PrefabInfo",
  3795. "root": {
  3796. "__id__": 1
  3797. },
  3798. "asset": {
  3799. "__uuid__": "cf09f681-edab-4bbb-9e85-11c0abe6fc35"
  3800. },
  3801. "fileId": "a4AtlcoYRNO6gc9Wmn1SJ5",
  3802. "sync": false
  3803. },
  3804. {
  3805. "__type__": "cc.Widget",
  3806. "_name": "",
  3807. "_objFlags": 0,
  3808. "node": {
  3809. "__id__": 69
  3810. },
  3811. "_enabled": true,
  3812. "alignMode": 1,
  3813. "_target": null,
  3814. "_alignFlags": 1,
  3815. "_left": 0,
  3816. "_right": 0,
  3817. "_top": 175,
  3818. "_bottom": 121,
  3819. "_verticalCenter": 0,
  3820. "_horizontalCenter": 0,
  3821. "_isAbsLeft": true,
  3822. "_isAbsRight": true,
  3823. "_isAbsTop": true,
  3824. "_isAbsBottom": true,
  3825. "_isAbsHorizontalCenter": true,
  3826. "_isAbsVerticalCenter": true,
  3827. "_originalWidth": 0,
  3828. "_originalHeight": 844,
  3829. "_id": ""
  3830. },
  3831. {
  3832. "__type__": "6e7dbRhB7dF8o783HyR8wlY",
  3833. "_name": "",
  3834. "_objFlags": 0,
  3835. "node": {
  3836. "__id__": 69
  3837. },
  3838. "_enabled": true,
  3839. "scrollView": {
  3840. "__id__": 75
  3841. },
  3842. "layout": {
  3843. "__id__": 72
  3844. },
  3845. "rankItem": {
  3846. "__uuid__": "d319eb7a-e4e6-4e3c-843c-b83c8978e29d"
  3847. },
  3848. "meNode": {
  3849. "__id__": 79
  3850. },
  3851. "_id": ""
  3852. },
  3853. {
  3854. "__type__": "cc.WXSubContextView",
  3855. "_name": "",
  3856. "_objFlags": 0,
  3857. "node": {
  3858. "__id__": 69
  3859. },
  3860. "_enabled": true,
  3861. "_id": ""
  3862. },
  3863. {
  3864. "__type__": "cc.PrefabInfo",
  3865. "root": {
  3866. "__id__": 1
  3867. },
  3868. "asset": {
  3869. "__uuid__": "cf09f681-edab-4bbb-9e85-11c0abe6fc35"
  3870. },
  3871. "fileId": "49vm5JUElL9Yva6kdsui6y",
  3872. "sync": false
  3873. },
  3874. {
  3875. "__type__": "cc.Node",
  3876. "_name": "countryNode",
  3877. "_objFlags": 0,
  3878. "_parent": {
  3879. "__id__": 6
  3880. },
  3881. "_children": [
  3882. {
  3883. "__id__": 116
  3884. },
  3885. {
  3886. "__id__": 125
  3887. }
  3888. ],
  3889. "_active": true,
  3890. "_level": 3,
  3891. "_components": [
  3892. {
  3893. "__id__": 157
  3894. },
  3895. {
  3896. "__id__": 158
  3897. }
  3898. ],
  3899. "_prefab": {
  3900. "__id__": 159
  3901. },
  3902. "_opacity": 255,
  3903. "_color": {
  3904. "__type__": "cc.Color",
  3905. "r": 255,
  3906. "g": 255,
  3907. "b": 255,
  3908. "a": 255
  3909. },
  3910. "_contentSize": {
  3911. "__type__": "cc.Size",
  3912. "width": 644,
  3913. "height": 844
  3914. },
  3915. "_anchorPoint": {
  3916. "__type__": "cc.Vec2",
  3917. "x": 0.5,
  3918. "y": 0.5
  3919. },
  3920. "_position": {
  3921. "__type__": "cc.Vec3",
  3922. "x": 0,
  3923. "y": -27,
  3924. "z": 0
  3925. },
  3926. "_scale": {
  3927. "__type__": "cc.Vec3",
  3928. "x": 1,
  3929. "y": 1,
  3930. "z": 1
  3931. },
  3932. "_rotationX": 0,
  3933. "_rotationY": 0,
  3934. "_quat": {
  3935. "__type__": "cc.Quat",
  3936. "x": 0,
  3937. "y": 0,
  3938. "z": 0,
  3939. "w": 1
  3940. },
  3941. "_skewX": 0,
  3942. "_skewY": 0,
  3943. "_zIndex": 0,
  3944. "groupIndex": 0,
  3945. "_id": ""
  3946. },
  3947. {
  3948. "__type__": "cc.Node",
  3949. "_name": "scrollview",
  3950. "_objFlags": 0,
  3951. "_parent": {
  3952. "__id__": 115
  3953. },
  3954. "_children": [
  3955. {
  3956. "__id__": 117
  3957. }
  3958. ],
  3959. "_active": true,
  3960. "_level": 4,
  3961. "_components": [
  3962. {
  3963. "__id__": 121
  3964. },
  3965. {
  3966. "__id__": 122
  3967. },
  3968. {
  3969. "__id__": 123
  3970. }
  3971. ],
  3972. "_prefab": {
  3973. "__id__": 124
  3974. },
  3975. "_opacity": 255,
  3976. "_color": {
  3977. "__type__": "cc.Color",
  3978. "r": 255,
  3979. "g": 255,
  3980. "b": 255,
  3981. "a": 255
  3982. },
  3983. "_contentSize": {
  3984. "__type__": "cc.Size",
  3985. "width": 644,
  3986. "height": 692
  3987. },
  3988. "_anchorPoint": {
  3989. "__type__": "cc.Vec2",
  3990. "x": 0.5,
  3991. "y": 0.5
  3992. },
  3993. "_position": {
  3994. "__type__": "cc.Vec3",
  3995. "x": 0,
  3996. "y": 76,
  3997. "z": 0
  3998. },
  3999. "_scale": {
  4000. "__type__": "cc.Vec3",
  4001. "x": 1,
  4002. "y": 1,
  4003. "z": 1
  4004. },
  4005. "_rotationX": 0,
  4006. "_rotationY": 0,
  4007. "_quat": {
  4008. "__type__": "cc.Quat",
  4009. "x": 0,
  4010. "y": 0,
  4011. "z": 0,
  4012. "w": 1
  4013. },
  4014. "_skewX": 0,
  4015. "_skewY": 0,
  4016. "_zIndex": 0,
  4017. "groupIndex": 0,
  4018. "_id": ""
  4019. },
  4020. {
  4021. "__type__": "cc.Node",
  4022. "_name": "layout",
  4023. "_objFlags": 0,
  4024. "_parent": {
  4025. "__id__": 116
  4026. },
  4027. "_children": [],
  4028. "_active": true,
  4029. "_level": 5,
  4030. "_components": [
  4031. {
  4032. "__id__": 118
  4033. },
  4034. {
  4035. "__id__": 119
  4036. }
  4037. ],
  4038. "_prefab": {
  4039. "__id__": 120
  4040. },
  4041. "_opacity": 255,
  4042. "_color": {
  4043. "__type__": "cc.Color",
  4044. "r": 255,
  4045. "g": 255,
  4046. "b": 255,
  4047. "a": 255
  4048. },
  4049. "_contentSize": {
  4050. "__type__": "cc.Size",
  4051. "width": 644,
  4052. "height": 692
  4053. },
  4054. "_anchorPoint": {
  4055. "__type__": "cc.Vec2",
  4056. "x": 0.5,
  4057. "y": 1
  4058. },
  4059. "_position": {
  4060. "__type__": "cc.Vec3",
  4061. "x": 0,
  4062. "y": 346,
  4063. "z": 0
  4064. },
  4065. "_scale": {
  4066. "__type__": "cc.Vec3",
  4067. "x": 1,
  4068. "y": 1,
  4069. "z": 1
  4070. },
  4071. "_rotationX": 0,
  4072. "_rotationY": 0,
  4073. "_quat": {
  4074. "__type__": "cc.Quat",
  4075. "x": 0,
  4076. "y": 0,
  4077. "z": 0,
  4078. "w": 1
  4079. },
  4080. "_skewX": 0,
  4081. "_skewY": 0,
  4082. "_zIndex": 0,
  4083. "groupIndex": 0,
  4084. "_id": ""
  4085. },
  4086. {
  4087. "__type__": "cc.Layout",
  4088. "_name": "",
  4089. "_objFlags": 0,
  4090. "node": {
  4091. "__id__": 117
  4092. },
  4093. "_enabled": true,
  4094. "_layoutSize": {
  4095. "__type__": "cc.Size",
  4096. "width": 644,
  4097. "height": 692
  4098. },
  4099. "_resize": 1,
  4100. "_N$layoutType": 2,
  4101. "_N$padding": 0,
  4102. "_N$cellSize": {
  4103. "__type__": "cc.Size",
  4104. "width": 40,
  4105. "height": 40
  4106. },
  4107. "_N$startAxis": 0,
  4108. "_N$paddingLeft": 0,
  4109. "_N$paddingRight": 0,
  4110. "_N$paddingTop": 0,
  4111. "_N$paddingBottom": 0,
  4112. "_N$spacingX": 0,
  4113. "_N$spacingY": 8,
  4114. "_N$verticalDirection": 1,
  4115. "_N$horizontalDirection": 0,
  4116. "_id": ""
  4117. },
  4118. {
  4119. "__type__": "cc.Widget",
  4120. "_name": "",
  4121. "_objFlags": 0,
  4122. "node": {
  4123. "__id__": 117
  4124. },
  4125. "_enabled": true,
  4126. "alignMode": 1,
  4127. "_target": null,
  4128. "_alignFlags": 1,
  4129. "_left": 0,
  4130. "_right": 0,
  4131. "_top": 0,
  4132. "_bottom": 0,
  4133. "_verticalCenter": 0,
  4134. "_horizontalCenter": 0,
  4135. "_isAbsLeft": true,
  4136. "_isAbsRight": true,
  4137. "_isAbsTop": true,
  4138. "_isAbsBottom": true,
  4139. "_isAbsHorizontalCenter": true,
  4140. "_isAbsVerticalCenter": true,
  4141. "_originalWidth": 0,
  4142. "_originalHeight": 692,
  4143. "_id": ""
  4144. },
  4145. {
  4146. "__type__": "cc.PrefabInfo",
  4147. "root": {
  4148. "__id__": 1
  4149. },
  4150. "asset": {
  4151. "__uuid__": "cf09f681-edab-4bbb-9e85-11c0abe6fc35"
  4152. },
  4153. "fileId": "113PVBuLZE96QlZfk197fH",
  4154. "sync": false
  4155. },
  4156. {
  4157. "__type__": "cc.ScrollView",
  4158. "_name": "",
  4159. "_objFlags": 0,
  4160. "node": {
  4161. "__id__": 116
  4162. },
  4163. "_enabled": true,
  4164. "horizontal": false,
  4165. "vertical": false,
  4166. "inertia": true,
  4167. "brake": 0.75,
  4168. "elastic": true,
  4169. "bounceDuration": 0.23,
  4170. "scrollEvents": [],
  4171. "cancelInnerEvents": true,
  4172. "_N$content": {
  4173. "__id__": 117
  4174. },
  4175. "content": {
  4176. "__id__": 117
  4177. },
  4178. "_N$horizontalScrollBar": null,
  4179. "_N$verticalScrollBar": null,
  4180. "_id": ""
  4181. },
  4182. {
  4183. "__type__": "cc.Mask",
  4184. "_name": "",
  4185. "_objFlags": 0,
  4186. "node": {
  4187. "__id__": 116
  4188. },
  4189. "_enabled": true,
  4190. "_srcBlendFactor": 770,
  4191. "_dstBlendFactor": 771,
  4192. "_spriteFrame": null,
  4193. "_type": 0,
  4194. "_segments": 64,
  4195. "_N$alphaThreshold": 0,
  4196. "_N$inverted": false,
  4197. "_id": ""
  4198. },
  4199. {
  4200. "__type__": "cc.Widget",
  4201. "_name": "",
  4202. "_objFlags": 0,
  4203. "node": {
  4204. "__id__": 116
  4205. },
  4206. "_enabled": true,
  4207. "alignMode": 1,
  4208. "_target": null,
  4209. "_alignFlags": 45,
  4210. "_left": 0,
  4211. "_right": 0,
  4212. "_top": 0,
  4213. "_bottom": 152,
  4214. "_verticalCenter": 0,
  4215. "_horizontalCenter": 0,
  4216. "_isAbsLeft": true,
  4217. "_isAbsRight": true,
  4218. "_isAbsTop": true,
  4219. "_isAbsBottom": true,
  4220. "_isAbsHorizontalCenter": true,
  4221. "_isAbsVerticalCenter": true,
  4222. "_originalWidth": 240,
  4223. "_originalHeight": 250,
  4224. "_id": ""
  4225. },
  4226. {
  4227. "__type__": "cc.PrefabInfo",
  4228. "root": {
  4229. "__id__": 1
  4230. },
  4231. "asset": {
  4232. "__uuid__": "cf09f681-edab-4bbb-9e85-11c0abe6fc35"
  4233. },
  4234. "fileId": "1dvovBIQtPg6K+g71W0nt+",
  4235. "sync": false
  4236. },
  4237. {
  4238. "__type__": "cc.Node",
  4239. "_name": "game_rank_item",
  4240. "_objFlags": 0,
  4241. "_parent": {
  4242. "__id__": 115
  4243. },
  4244. "_children": [
  4245. {
  4246. "__id__": 126
  4247. },
  4248. {
  4249. "__id__": 129
  4250. },
  4251. {
  4252. "__id__": 132
  4253. },
  4254. {
  4255. "__id__": 136
  4256. },
  4257. {
  4258. "__id__": 143
  4259. },
  4260. {
  4261. "__id__": 146
  4262. }
  4263. ],
  4264. "_active": false,
  4265. "_level": 4,
  4266. "_components": [
  4267. {
  4268. "__id__": 154
  4269. },
  4270. {
  4271. "__id__": 155
  4272. }
  4273. ],
  4274. "_prefab": {
  4275. "__id__": 156
  4276. },
  4277. "_opacity": 255,
  4278. "_color": {
  4279. "__type__": "cc.Color",
  4280. "r": 255,
  4281. "g": 255,
  4282. "b": 255,
  4283. "a": 255
  4284. },
  4285. "_contentSize": {
  4286. "__type__": "cc.Size",
  4287. "width": 644,
  4288. "height": 134
  4289. },
  4290. "_anchorPoint": {
  4291. "__type__": "cc.Vec2",
  4292. "x": 0.5,
  4293. "y": 0.5
  4294. },
  4295. "_position": {
  4296. "__type__": "cc.Vec3",
  4297. "x": 0,
  4298. "y": -355,
  4299. "z": 0
  4300. },
  4301. "_scale": {
  4302. "__type__": "cc.Vec3",
  4303. "x": 1,
  4304. "y": 1,
  4305. "z": 1
  4306. },
  4307. "_rotationX": 0,
  4308. "_rotationY": 0,
  4309. "_quat": {
  4310. "__type__": "cc.Quat",
  4311. "x": 0,
  4312. "y": 0,
  4313. "z": 0,
  4314. "w": 1
  4315. },
  4316. "_skewX": 0,
  4317. "_skewY": 0,
  4318. "_zIndex": 0,
  4319. "groupIndex": 0,
  4320. "_id": ""
  4321. },
  4322. {
  4323. "__type__": "cc.Node",
  4324. "_name": "sprite",
  4325. "_objFlags": 0,
  4326. "_parent": {
  4327. "__id__": 125
  4328. },
  4329. "_children": [],
  4330. "_active": true,
  4331. "_level": 2,
  4332. "_components": [
  4333. {
  4334. "__id__": 127
  4335. }
  4336. ],
  4337. "_prefab": {
  4338. "__id__": 128
  4339. },
  4340. "_opacity": 255,
  4341. "_color": {
  4342. "__type__": "cc.Color",
  4343. "r": 255,
  4344. "g": 255,
  4345. "b": 255,
  4346. "a": 255
  4347. },
  4348. "_contentSize": {
  4349. "__type__": "cc.Size",
  4350. "width": 95,
  4351. "height": 95
  4352. },
  4353. "_anchorPoint": {
  4354. "__type__": "cc.Vec2",
  4355. "x": 0.5,
  4356. "y": 0.5
  4357. },
  4358. "_position": {
  4359. "__type__": "cc.Vec3",
  4360. "x": -163,
  4361. "y": 3,
  4362. "z": 0
  4363. },
  4364. "_scale": {
  4365. "__type__": "cc.Vec3",
  4366. "x": 1,
  4367. "y": 1,
  4368. "z": 1
  4369. },
  4370. "_rotationX": 0,
  4371. "_rotationY": 0,
  4372. "_quat": {
  4373. "__type__": "cc.Quat",
  4374. "x": 0,
  4375. "y": 0,
  4376. "z": 0,
  4377. "w": 1
  4378. },
  4379. "_skewX": 0,
  4380. "_skewY": 0,
  4381. "_zIndex": 0,
  4382. "groupIndex": 0,
  4383. "_id": ""
  4384. },
  4385. {
  4386. "__type__": "cc.Sprite",
  4387. "_name": "",
  4388. "_objFlags": 0,
  4389. "node": {
  4390. "__id__": 126
  4391. },
  4392. "_enabled": true,
  4393. "_srcBlendFactor": 770,
  4394. "_dstBlendFactor": 771,
  4395. "_spriteFrame": {
  4396. "__uuid__": "440d27dc-97e0-4316-9af8-52bc3f94d5c1"
  4397. },
  4398. "_type": 0,
  4399. "_sizeMode": 0,
  4400. "_fillType": 0,
  4401. "_fillCenter": {
  4402. "__type__": "cc.Vec2",
  4403. "x": 0,
  4404. "y": 0
  4405. },
  4406. "_fillStart": 0,
  4407. "_fillRange": 0,
  4408. "_isTrimmedMode": true,
  4409. "_state": 0,
  4410. "_atlas": null,
  4411. "_id": ""
  4412. },
  4413. {
  4414. "__type__": "cc.PrefabInfo",
  4415. "root": {
  4416. "__id__": 1
  4417. },
  4418. "asset": {
  4419. "__uuid__": "cf09f681-edab-4bbb-9e85-11c0abe6fc35"
  4420. },
  4421. "fileId": "678vpZ77dJv7CEBTOBub+r",
  4422. "sync": false
  4423. },
  4424. {
  4425. "__type__": "cc.Node",
  4426. "_name": "gameRankBg",
  4427. "_objFlags": 0,
  4428. "_parent": {
  4429. "__id__": 125
  4430. },
  4431. "_children": [],
  4432. "_active": true,
  4433. "_level": 2,
  4434. "_components": [
  4435. {
  4436. "__id__": 130
  4437. }
  4438. ],
  4439. "_prefab": {
  4440. "__id__": 131
  4441. },
  4442. "_opacity": 255,
  4443. "_color": {
  4444. "__type__": "cc.Color",
  4445. "r": 255,
  4446. "g": 255,
  4447. "b": 255,
  4448. "a": 255
  4449. },
  4450. "_contentSize": {
  4451. "__type__": "cc.Size",
  4452. "width": 644,
  4453. "height": 134
  4454. },
  4455. "_anchorPoint": {
  4456. "__type__": "cc.Vec2",
  4457. "x": 0.5,
  4458. "y": 0.5
  4459. },
  4460. "_position": {
  4461. "__type__": "cc.Vec3",
  4462. "x": 0,
  4463. "y": 0,
  4464. "z": 0
  4465. },
  4466. "_scale": {
  4467. "__type__": "cc.Vec3",
  4468. "x": 1,
  4469. "y": 1,
  4470. "z": 1
  4471. },
  4472. "_rotationX": 0,
  4473. "_rotationY": 0,
  4474. "_quat": {
  4475. "__type__": "cc.Quat",
  4476. "x": 0,
  4477. "y": 0,
  4478. "z": 0,
  4479. "w": 1
  4480. },
  4481. "_skewX": 0,
  4482. "_skewY": 0,
  4483. "_zIndex": 0,
  4484. "groupIndex": 0,
  4485. "_id": ""
  4486. },
  4487. {
  4488. "__type__": "cc.Sprite",
  4489. "_name": "",
  4490. "_objFlags": 0,
  4491. "node": {
  4492. "__id__": 129
  4493. },
  4494. "_enabled": true,
  4495. "_srcBlendFactor": 770,
  4496. "_dstBlendFactor": 771,
  4497. "_spriteFrame": {
  4498. "__uuid__": "6f177754-7101-4f15-bbbd-8bda9989e769"
  4499. },
  4500. "_type": 0,
  4501. "_sizeMode": 1,
  4502. "_fillType": 0,
  4503. "_fillCenter": {
  4504. "__type__": "cc.Vec2",
  4505. "x": 0,
  4506. "y": 0
  4507. },
  4508. "_fillStart": 0,
  4509. "_fillRange": 0,
  4510. "_isTrimmedMode": true,
  4511. "_state": 0,
  4512. "_atlas": null,
  4513. "_id": ""
  4514. },
  4515. {
  4516. "__type__": "cc.PrefabInfo",
  4517. "root": {
  4518. "__id__": 1
  4519. },
  4520. "asset": {
  4521. "__uuid__": "cf09f681-edab-4bbb-9e85-11c0abe6fc35"
  4522. },
  4523. "fileId": "1eLW46GDVH3aU//q0V24bV",
  4524. "sync": false
  4525. },
  4526. {
  4527. "__type__": "cc.Node",
  4528. "_name": "rankSprite",
  4529. "_objFlags": 0,
  4530. "_parent": {
  4531. "__id__": 125
  4532. },
  4533. "_children": [],
  4534. "_active": true,
  4535. "_level": 2,
  4536. "_components": [
  4537. {
  4538. "__id__": 133
  4539. },
  4540. {
  4541. "__id__": 134
  4542. }
  4543. ],
  4544. "_prefab": {
  4545. "__id__": 135
  4546. },
  4547. "_opacity": 255,
  4548. "_color": {
  4549. "__type__": "cc.Color",
  4550. "r": 255,
  4551. "g": 255,
  4552. "b": 255,
  4553. "a": 255
  4554. },
  4555. "_contentSize": {
  4556. "__type__": "cc.Size",
  4557. "width": 66,
  4558. "height": 68
  4559. },
  4560. "_anchorPoint": {
  4561. "__type__": "cc.Vec2",
  4562. "x": 0.5,
  4563. "y": 0.5
  4564. },
  4565. "_position": {
  4566. "__type__": "cc.Vec3",
  4567. "x": -269,
  4568. "y": 0,
  4569. "z": 0
  4570. },
  4571. "_scale": {
  4572. "__type__": "cc.Vec3",
  4573. "x": 1,
  4574. "y": 1,
  4575. "z": 1
  4576. },
  4577. "_rotationX": 0,
  4578. "_rotationY": 0,
  4579. "_quat": {
  4580. "__type__": "cc.Quat",
  4581. "x": 0,
  4582. "y": 0,
  4583. "z": 0,
  4584. "w": 1
  4585. },
  4586. "_skewX": 0,
  4587. "_skewY": 0,
  4588. "_zIndex": 0,
  4589. "groupIndex": 0,
  4590. "_id": ""
  4591. },
  4592. {
  4593. "__type__": "cc.Sprite",
  4594. "_name": "",
  4595. "_objFlags": 0,
  4596. "node": {
  4597. "__id__": 132
  4598. },
  4599. "_enabled": true,
  4600. "_srcBlendFactor": 770,
  4601. "_dstBlendFactor": 771,
  4602. "_spriteFrame": {
  4603. "__uuid__": "942165e1-1277-4cd8-ad91-daa4a9c65ac1"
  4604. },
  4605. "_type": 0,
  4606. "_sizeMode": 1,
  4607. "_fillType": 0,
  4608. "_fillCenter": {
  4609. "__type__": "cc.Vec2",
  4610. "x": 0,
  4611. "y": 0
  4612. },
  4613. "_fillStart": 0,
  4614. "_fillRange": 0,
  4615. "_isTrimmedMode": true,
  4616. "_state": 0,
  4617. "_atlas": null,
  4618. "_id": ""
  4619. },
  4620. {
  4621. "__type__": "cc.Widget",
  4622. "_name": "",
  4623. "_objFlags": 0,
  4624. "node": {
  4625. "__id__": 132
  4626. },
  4627. "_enabled": true,
  4628. "alignMode": 1,
  4629. "_target": null,
  4630. "_alignFlags": 8,
  4631. "_left": 20,
  4632. "_right": 0,
  4633. "_top": 0,
  4634. "_bottom": 0,
  4635. "_verticalCenter": 0,
  4636. "_horizontalCenter": 0,
  4637. "_isAbsLeft": true,
  4638. "_isAbsRight": true,
  4639. "_isAbsTop": true,
  4640. "_isAbsBottom": true,
  4641. "_isAbsHorizontalCenter": true,
  4642. "_isAbsVerticalCenter": true,
  4643. "_originalWidth": 0,
  4644. "_originalHeight": 0,
  4645. "_id": ""
  4646. },
  4647. {
  4648. "__type__": "cc.PrefabInfo",
  4649. "root": {
  4650. "__id__": 1
  4651. },
  4652. "asset": {
  4653. "__uuid__": "cf09f681-edab-4bbb-9e85-11c0abe6fc35"
  4654. },
  4655. "fileId": "57twoAvtFCf4rCONJ1b6sU",
  4656. "sync": false
  4657. },
  4658. {
  4659. "__type__": "cc.Node",
  4660. "_name": "rankRichtext",
  4661. "_objFlags": 0,
  4662. "_parent": {
  4663. "__id__": 125
  4664. },
  4665. "_children": [
  4666. {
  4667. "__id__": 137
  4668. }
  4669. ],
  4670. "_active": false,
  4671. "_level": 2,
  4672. "_components": [
  4673. {
  4674. "__id__": 141
  4675. }
  4676. ],
  4677. "_prefab": {
  4678. "__id__": 142
  4679. },
  4680. "_opacity": 255,
  4681. "_color": {
  4682. "__type__": "cc.Color",
  4683. "r": 255,
  4684. "g": 255,
  4685. "b": 255,
  4686. "a": 255
  4687. },
  4688. "_contentSize": {
  4689. "__type__": "cc.Size",
  4690. "width": 100,
  4691. "height": 40
  4692. },
  4693. "_anchorPoint": {
  4694. "__type__": "cc.Vec2",
  4695. "x": 0.5,
  4696. "y": 0.5
  4697. },
  4698. "_position": {
  4699. "__type__": "cc.Vec3",
  4700. "x": -267,
  4701. "y": 0,
  4702. "z": 0
  4703. },
  4704. "_scale": {
  4705. "__type__": "cc.Vec3",
  4706. "x": 1,
  4707. "y": 1,
  4708. "z": 1
  4709. },
  4710. "_rotationX": 0,
  4711. "_rotationY": 0,
  4712. "_quat": {
  4713. "__type__": "cc.Quat",
  4714. "x": 0,
  4715. "y": 0,
  4716. "z": 0,
  4717. "w": 1
  4718. },
  4719. "_skewX": 0,
  4720. "_skewY": 0,
  4721. "_zIndex": 0,
  4722. "groupIndex": 0,
  4723. "_id": ""
  4724. },
  4725. {
  4726. "__type__": "cc.PrivateNode",
  4727. "_name": "RICHTEXT_CHILD",
  4728. "_objFlags": 0,
  4729. "_parent": {
  4730. "__id__": 136
  4731. },
  4732. "_children": [],
  4733. "_active": false,
  4734. "_level": 3,
  4735. "_components": [
  4736. {
  4737. "__id__": 138
  4738. },
  4739. {
  4740. "__id__": 139
  4741. }
  4742. ],
  4743. "_prefab": {
  4744. "__id__": 140
  4745. },
  4746. "_opacity": 255,
  4747. "_color": {
  4748. "__type__": "cc.Color",
  4749. "r": 255,
  4750. "g": 255,
  4751. "b": 255,
  4752. "a": 255
  4753. },
  4754. "_contentSize": {
  4755. "__type__": "cc.Size",
  4756. "width": 71.57,
  4757. "height": 40
  4758. },
  4759. "_anchorPoint": {
  4760. "__type__": "cc.Vec2",
  4761. "x": 0,
  4762. "y": 0
  4763. },
  4764. "_position": {
  4765. "__type__": "cc.Vec3",
  4766. "x": -35.785,
  4767. "y": -20,
  4768. "z": 0
  4769. },
  4770. "_scale": {
  4771. "__type__": "cc.Vec3",
  4772. "x": 1,
  4773. "y": 1,
  4774. "z": 1
  4775. },
  4776. "_rotationX": 0,
  4777. "_rotationY": 0,
  4778. "_quat": {
  4779. "__type__": "cc.Quat",
  4780. "x": 0,
  4781. "y": 0,
  4782. "z": 0,
  4783. "w": 1
  4784. },
  4785. "_skewX": 0,
  4786. "_skewY": 0,
  4787. "_zIndex": -32768,
  4788. "groupIndex": 0,
  4789. "_id": ""
  4790. },
  4791. {
  4792. "__type__": "cc.Label",
  4793. "_name": "",
  4794. "_objFlags": 0,
  4795. "node": {
  4796. "__id__": 137
  4797. },
  4798. "_enabled": true,
  4799. "_srcBlendFactor": 1,
  4800. "_dstBlendFactor": 771,
  4801. "_useOriginalSize": true,
  4802. "_string": "100+",
  4803. "_N$string": "100+",
  4804. "_fontSize": 30,
  4805. "_lineHeight": 40,
  4806. "_enableWrapText": true,
  4807. "_N$file": null,
  4808. "_isSystemFontUsed": true,
  4809. "_spacingX": 0,
  4810. "_N$horizontalAlign": 0,
  4811. "_N$verticalAlign": 1,
  4812. "_N$fontFamily": "Arial",
  4813. "_N$overflow": 0,
  4814. "_id": ""
  4815. },
  4816. {
  4817. "__type__": "cc.LabelOutline",
  4818. "_name": "",
  4819. "_objFlags": 0,
  4820. "node": {
  4821. "__id__": 137
  4822. },
  4823. "_enabled": true,
  4824. "_color": {
  4825. "__type__": "cc.Color",
  4826. "r": 105,
  4827. "g": 46,
  4828. "b": 14,
  4829. "a": 255
  4830. },
  4831. "_width": 2,
  4832. "_id": ""
  4833. },
  4834. {
  4835. "__type__": "cc.PrefabInfo",
  4836. "root": {
  4837. "__id__": 1
  4838. },
  4839. "asset": {
  4840. "__uuid__": "cf09f681-edab-4bbb-9e85-11c0abe6fc35"
  4841. },
  4842. "fileId": "293TEJxKVIr7F2vIfMpyuf",
  4843. "sync": false
  4844. },
  4845. {
  4846. "__type__": "cc.RichText",
  4847. "_name": "",
  4848. "_objFlags": 0,
  4849. "node": {
  4850. "__id__": 136
  4851. },
  4852. "_enabled": true,
  4853. "_N$string": "<b><outline color=#692e0e width=2><color=white>100+</color></outline></b>",
  4854. "_N$horizontalAlign": 1,
  4855. "_N$fontSize": 30,
  4856. "_N$font": null,
  4857. "_N$maxWidth": 100,
  4858. "_N$lineHeight": 40,
  4859. "_N$imageAtlas": null,
  4860. "_N$handleTouchEvent": true,
  4861. "_id": ""
  4862. },
  4863. {
  4864. "__type__": "cc.PrefabInfo",
  4865. "root": {
  4866. "__id__": 1
  4867. },
  4868. "asset": {
  4869. "__uuid__": "cf09f681-edab-4bbb-9e85-11c0abe6fc35"
  4870. },
  4871. "fileId": "62U5y374xHJZHWDYMaLkeR",
  4872. "sync": false
  4873. },
  4874. {
  4875. "__type__": "cc.Node",
  4876. "_name": "nameLabel",
  4877. "_objFlags": 0,
  4878. "_parent": {
  4879. "__id__": 125
  4880. },
  4881. "_children": [],
  4882. "_active": true,
  4883. "_level": 2,
  4884. "_components": [
  4885. {
  4886. "__id__": 144
  4887. }
  4888. ],
  4889. "_prefab": {
  4890. "__id__": 145
  4891. },
  4892. "_opacity": 255,
  4893. "_color": {
  4894. "__type__": "cc.Color",
  4895. "r": 54,
  4896. "g": 46,
  4897. "b": 43,
  4898. "a": 255
  4899. },
  4900. "_contentSize": {
  4901. "__type__": "cc.Size",
  4902. "width": 140,
  4903. "height": 26
  4904. },
  4905. "_anchorPoint": {
  4906. "__type__": "cc.Vec2",
  4907. "x": 0,
  4908. "y": 0.5
  4909. },
  4910. "_position": {
  4911. "__type__": "cc.Vec3",
  4912. "x": -100,
  4913. "y": 0,
  4914. "z": 0
  4915. },
  4916. "_scale": {
  4917. "__type__": "cc.Vec3",
  4918. "x": 1,
  4919. "y": 1,
  4920. "z": 1
  4921. },
  4922. "_rotationX": 0,
  4923. "_rotationY": 0,
  4924. "_quat": {
  4925. "__type__": "cc.Quat",
  4926. "x": 0,
  4927. "y": 0,
  4928. "z": 0,
  4929. "w": 1
  4930. },
  4931. "_skewX": 0,
  4932. "_skewY": 0,
  4933. "_zIndex": 0,
  4934. "groupIndex": 0,
  4935. "_id": ""
  4936. },
  4937. {
  4938. "__type__": "cc.Label",
  4939. "_name": "",
  4940. "_objFlags": 0,
  4941. "node": {
  4942. "__id__": 143
  4943. },
  4944. "_enabled": true,
  4945. "_srcBlendFactor": 1,
  4946. "_dstBlendFactor": 771,
  4947. "_useOriginalSize": false,
  4948. "_string": "Label",
  4949. "_N$string": "Label",
  4950. "_fontSize": 24,
  4951. "_lineHeight": 26,
  4952. "_enableWrapText": false,
  4953. "_N$file": null,
  4954. "_isSystemFontUsed": true,
  4955. "_spacingX": 0,
  4956. "_N$horizontalAlign": 0,
  4957. "_N$verticalAlign": 1,
  4958. "_N$fontFamily": "Arial",
  4959. "_N$overflow": 2,
  4960. "_id": ""
  4961. },
  4962. {
  4963. "__type__": "cc.PrefabInfo",
  4964. "root": {
  4965. "__id__": 1
  4966. },
  4967. "asset": {
  4968. "__uuid__": "cf09f681-edab-4bbb-9e85-11c0abe6fc35"
  4969. },
  4970. "fileId": "0bYB9aX41Bv6l5Lq1GrvhU",
  4971. "sync": false
  4972. },
  4973. {
  4974. "__type__": "cc.Node",
  4975. "_name": "lvRichtext",
  4976. "_objFlags": 0,
  4977. "_parent": {
  4978. "__id__": 125
  4979. },
  4980. "_children": [
  4981. {
  4982. "__id__": 147
  4983. }
  4984. ],
  4985. "_active": true,
  4986. "_level": 2,
  4987. "_components": [
  4988. {
  4989. "__id__": 151
  4990. },
  4991. {
  4992. "__id__": 152
  4993. }
  4994. ],
  4995. "_prefab": {
  4996. "__id__": 153
  4997. },
  4998. "_opacity": 255,
  4999. "_color": {
  5000. "__type__": "cc.Color",
  5001. "r": 255,
  5002. "g": 255,
  5003. "b": 255,
  5004. "a": 255
  5005. },
  5006. "_contentSize": {
  5007. "__type__": "cc.Size",
  5008. "width": 250,
  5009. "height": 35
  5010. },
  5011. "_anchorPoint": {
  5012. "__type__": "cc.Vec2",
  5013. "x": 1,
  5014. "y": 0.5
  5015. },
  5016. "_position": {
  5017. "__type__": "cc.Vec3",
  5018. "x": 297,
  5019. "y": 0,
  5020. "z": 0
  5021. },
  5022. "_scale": {
  5023. "__type__": "cc.Vec3",
  5024. "x": 1,
  5025. "y": 1,
  5026. "z": 1
  5027. },
  5028. "_rotationX": 0,
  5029. "_rotationY": 0,
  5030. "_quat": {
  5031. "__type__": "cc.Quat",
  5032. "x": 0,
  5033. "y": 0,
  5034. "z": 0,
  5035. "w": 1
  5036. },
  5037. "_skewX": 0,
  5038. "_skewY": 0,
  5039. "_zIndex": 0,
  5040. "groupIndex": 0,
  5041. "_id": ""
  5042. },
  5043. {
  5044. "__type__": "cc.PrivateNode",
  5045. "_name": "RICHTEXT_CHILD",
  5046. "_objFlags": 0,
  5047. "_parent": {
  5048. "__id__": 146
  5049. },
  5050. "_children": [],
  5051. "_active": false,
  5052. "_level": 3,
  5053. "_components": [
  5054. {
  5055. "__id__": 148
  5056. },
  5057. {
  5058. "__id__": 149
  5059. }
  5060. ],
  5061. "_prefab": {
  5062. "__id__": 150
  5063. },
  5064. "_opacity": 255,
  5065. "_color": {
  5066. "__type__": "cc.Color",
  5067. "r": 147,
  5068. "g": 76,
  5069. "b": 49,
  5070. "a": 255
  5071. },
  5072. "_contentSize": {
  5073. "__type__": "cc.Size",
  5074. "width": 62.37,
  5075. "height": 35
  5076. },
  5077. "_anchorPoint": {
  5078. "__type__": "cc.Vec2",
  5079. "x": 0,
  5080. "y": 0
  5081. },
  5082. "_position": {
  5083. "__type__": "cc.Vec3",
  5084. "x": -62.37,
  5085. "y": -17.5,
  5086. "z": 0
  5087. },
  5088. "_scale": {
  5089. "__type__": "cc.Vec3",
  5090. "x": 1,
  5091. "y": 1,
  5092. "z": 1
  5093. },
  5094. "_rotationX": 0,
  5095. "_rotationY": 0,
  5096. "_quat": {
  5097. "__type__": "cc.Quat",
  5098. "x": 0,
  5099. "y": 0,
  5100. "z": 0,
  5101. "w": 1
  5102. },
  5103. "_skewX": 0,
  5104. "_skewY": 0,
  5105. "_zIndex": -32768,
  5106. "groupIndex": 0,
  5107. "_id": ""
  5108. },
  5109. {
  5110. "__type__": "cc.Label",
  5111. "_name": "",
  5112. "_objFlags": 0,
  5113. "node": {
  5114. "__id__": 147
  5115. },
  5116. "_enabled": true,
  5117. "_srcBlendFactor": 1,
  5118. "_dstBlendFactor": 771,
  5119. "_useOriginalSize": true,
  5120. "_string": "LV.1",
  5121. "_N$string": "LV.1",
  5122. "_fontSize": 30,
  5123. "_lineHeight": 35,
  5124. "_enableWrapText": true,
  5125. "_N$file": null,
  5126. "_isSystemFontUsed": true,
  5127. "_spacingX": 0,
  5128. "_N$horizontalAlign": 0,
  5129. "_N$verticalAlign": 1,
  5130. "_N$fontFamily": "Arial",
  5131. "_N$overflow": 0,
  5132. "_id": ""
  5133. },
  5134. {
  5135. "__type__": "cc.LabelOutline",
  5136. "_name": "",
  5137. "_objFlags": 0,
  5138. "node": {
  5139. "__id__": 147
  5140. },
  5141. "_enabled": true,
  5142. "_color": {
  5143. "__type__": "cc.Color",
  5144. "r": 255,
  5145. "g": 255,
  5146. "b": 255,
  5147. "a": 255
  5148. },
  5149. "_width": 2,
  5150. "_id": ""
  5151. },
  5152. {
  5153. "__type__": "cc.PrefabInfo",
  5154. "root": {
  5155. "__id__": 1
  5156. },
  5157. "asset": {
  5158. "__uuid__": "cf09f681-edab-4bbb-9e85-11c0abe6fc35"
  5159. },
  5160. "fileId": "8d/KlVqOJOTogPlFL/cIsY",
  5161. "sync": false
  5162. },
  5163. {
  5164. "__type__": "cc.RichText",
  5165. "_name": "",
  5166. "_objFlags": 0,
  5167. "node": {
  5168. "__id__": 146
  5169. },
  5170. "_enabled": true,
  5171. "_N$string": "<b><outline color=white width=2><color=#934C31>LV.1</color></outline></b>",
  5172. "_N$horizontalAlign": 2,
  5173. "_N$fontSize": 30,
  5174. "_N$font": null,
  5175. "_N$maxWidth": 250,
  5176. "_N$lineHeight": 35,
  5177. "_N$imageAtlas": null,
  5178. "_N$handleTouchEvent": true,
  5179. "_id": ""
  5180. },
  5181. {
  5182. "__type__": "cc.Widget",
  5183. "_name": "",
  5184. "_objFlags": 0,
  5185. "node": {
  5186. "__id__": 146
  5187. },
  5188. "_enabled": true,
  5189. "alignMode": 1,
  5190. "_target": null,
  5191. "_alignFlags": 32,
  5192. "_left": 0,
  5193. "_right": 25,
  5194. "_top": 0,
  5195. "_bottom": 0,
  5196. "_verticalCenter": 0,
  5197. "_horizontalCenter": 0,
  5198. "_isAbsLeft": true,
  5199. "_isAbsRight": true,
  5200. "_isAbsTop": true,
  5201. "_isAbsBottom": true,
  5202. "_isAbsHorizontalCenter": true,
  5203. "_isAbsVerticalCenter": true,
  5204. "_originalWidth": 0,
  5205. "_originalHeight": 0,
  5206. "_id": ""
  5207. },
  5208. {
  5209. "__type__": "cc.PrefabInfo",
  5210. "root": {
  5211. "__id__": 1
  5212. },
  5213. "asset": {
  5214. "__uuid__": "cf09f681-edab-4bbb-9e85-11c0abe6fc35"
  5215. },
  5216. "fileId": "99XrIsrE9PR7lRHCo4mmbE",
  5217. "sync": false
  5218. },
  5219. {
  5220. "__type__": "e1b9ajTOylHjrIVTeaPia/Q",
  5221. "_name": "",
  5222. "_objFlags": 0,
  5223. "node": {
  5224. "__id__": 125
  5225. },
  5226. "_enabled": true,
  5227. "headDefaultSpriteFrame": {
  5228. "__uuid__": "440d27dc-97e0-4316-9af8-52bc3f94d5c1"
  5229. },
  5230. "headSprite": {
  5231. "__id__": 127
  5232. },
  5233. "background": {
  5234. "__id__": 130
  5235. },
  5236. "rankSprite": {
  5237. "__id__": 133
  5238. },
  5239. "rankRichText": {
  5240. "__id__": 141
  5241. },
  5242. "nameLabel": {
  5243. "__id__": 144
  5244. },
  5245. "lvRichText": {
  5246. "__id__": 151
  5247. },
  5248. "rankSpriteFrame": [
  5249. {
  5250. "__uuid__": "942165e1-1277-4cd8-ad91-daa4a9c65ac1"
  5251. },
  5252. {
  5253. "__uuid__": "365d3428-d618-4e2f-935c-fe2e1b9a8296"
  5254. },
  5255. {
  5256. "__uuid__": "b28d8db0-f3e0-4680-991d-3b2b90342382"
  5257. }
  5258. ],
  5259. "backgroundSpriteFrame": [
  5260. {
  5261. "__uuid__": "c1045b89-0602-4927-8cf8-ad413dd42490"
  5262. },
  5263. {
  5264. "__uuid__": "6f177754-7101-4f15-bbbd-8bda9989e769"
  5265. }
  5266. ],
  5267. "_id": ""
  5268. },
  5269. {
  5270. "__type__": "cc.Widget",
  5271. "_name": "",
  5272. "_objFlags": 0,
  5273. "node": {
  5274. "__id__": 125
  5275. },
  5276. "_enabled": true,
  5277. "alignMode": 1,
  5278. "_target": null,
  5279. "_alignFlags": 4,
  5280. "_left": 0,
  5281. "_right": 0,
  5282. "_top": 0,
  5283. "_bottom": 0,
  5284. "_verticalCenter": 0,
  5285. "_horizontalCenter": 0,
  5286. "_isAbsLeft": true,
  5287. "_isAbsRight": true,
  5288. "_isAbsTop": true,
  5289. "_isAbsBottom": true,
  5290. "_isAbsHorizontalCenter": true,
  5291. "_isAbsVerticalCenter": true,
  5292. "_originalWidth": 0,
  5293. "_originalHeight": 0,
  5294. "_id": ""
  5295. },
  5296. {
  5297. "__type__": "cc.PrefabInfo",
  5298. "root": {
  5299. "__id__": 1
  5300. },
  5301. "asset": {
  5302. "__uuid__": "cf09f681-edab-4bbb-9e85-11c0abe6fc35"
  5303. },
  5304. "fileId": "b8B272J2RPhJu+wLpOxExe",
  5305. "sync": false
  5306. },
  5307. {
  5308. "__type__": "cc.Widget",
  5309. "_name": "",
  5310. "_objFlags": 0,
  5311. "node": {
  5312. "__id__": 115
  5313. },
  5314. "_enabled": true,
  5315. "alignMode": 1,
  5316. "_target": null,
  5317. "_alignFlags": 5,
  5318. "_left": 0,
  5319. "_right": 0,
  5320. "_top": 175,
  5321. "_bottom": 121,
  5322. "_verticalCenter": 0,
  5323. "_horizontalCenter": 0,
  5324. "_isAbsLeft": true,
  5325. "_isAbsRight": true,
  5326. "_isAbsTop": true,
  5327. "_isAbsBottom": true,
  5328. "_isAbsHorizontalCenter": true,
  5329. "_isAbsVerticalCenter": true,
  5330. "_originalWidth": 0,
  5331. "_originalHeight": 844,
  5332. "_id": ""
  5333. },
  5334. {
  5335. "__type__": "82068HS8JpFPr6ZQRFMztzU",
  5336. "_name": "",
  5337. "_objFlags": 0,
  5338. "node": {
  5339. "__id__": 115
  5340. },
  5341. "_enabled": true,
  5342. "scrollView": {
  5343. "__id__": 121
  5344. },
  5345. "layout": {
  5346. "__id__": 118
  5347. },
  5348. "rankItem": {
  5349. "__uuid__": "d319eb7a-e4e6-4e3c-843c-b83c8978e29d"
  5350. },
  5351. "meNode": {
  5352. "__id__": 125
  5353. },
  5354. "_id": ""
  5355. },
  5356. {
  5357. "__type__": "cc.PrefabInfo",
  5358. "root": {
  5359. "__id__": 1
  5360. },
  5361. "asset": {
  5362. "__uuid__": "cf09f681-edab-4bbb-9e85-11c0abe6fc35"
  5363. },
  5364. "fileId": "6514TQIstHj4mKu2sfCIwh",
  5365. "sync": false
  5366. },
  5367. {
  5368. "__type__": "cc.Node",
  5369. "_name": "crowdNode",
  5370. "_objFlags": 0,
  5371. "_parent": {
  5372. "__id__": 6
  5373. },
  5374. "_children": [
  5375. {
  5376. "__id__": 161
  5377. },
  5378. {
  5379. "__id__": 177
  5380. }
  5381. ],
  5382. "_active": false,
  5383. "_level": 3,
  5384. "_components": [
  5385. {
  5386. "__id__": 181
  5387. },
  5388. {
  5389. "__id__": 182
  5390. }
  5391. ],
  5392. "_prefab": {
  5393. "__id__": 183
  5394. },
  5395. "_opacity": 255,
  5396. "_color": {
  5397. "__type__": "cc.Color",
  5398. "r": 255,
  5399. "g": 255,
  5400. "b": 255,
  5401. "a": 255
  5402. },
  5403. "_contentSize": {
  5404. "__type__": "cc.Size",
  5405. "width": 644,
  5406. "height": 844
  5407. },
  5408. "_anchorPoint": {
  5409. "__type__": "cc.Vec2",
  5410. "x": 0.5,
  5411. "y": 0.5
  5412. },
  5413. "_position": {
  5414. "__type__": "cc.Vec3",
  5415. "x": 0,
  5416. "y": -27,
  5417. "z": 0
  5418. },
  5419. "_scale": {
  5420. "__type__": "cc.Vec3",
  5421. "x": 1,
  5422. "y": 1,
  5423. "z": 1
  5424. },
  5425. "_rotationX": 0,
  5426. "_rotationY": 0,
  5427. "_quat": {
  5428. "__type__": "cc.Quat",
  5429. "x": 0,
  5430. "y": 0,
  5431. "z": 0,
  5432. "w": 1
  5433. },
  5434. "_skewX": 0,
  5435. "_skewY": 0,
  5436. "_zIndex": 0,
  5437. "groupIndex": 0,
  5438. "_id": ""
  5439. },
  5440. {
  5441. "__type__": "cc.Node",
  5442. "_name": "shareNode",
  5443. "_objFlags": 0,
  5444. "_parent": {
  5445. "__id__": 160
  5446. },
  5447. "_children": [
  5448. {
  5449. "__id__": 162
  5450. },
  5451. {
  5452. "__id__": 166
  5453. }
  5454. ],
  5455. "_active": true,
  5456. "_level": 4,
  5457. "_components": [
  5458. {
  5459. "__id__": 175
  5460. }
  5461. ],
  5462. "_prefab": {
  5463. "__id__": 176
  5464. },
  5465. "_opacity": 255,
  5466. "_color": {
  5467. "__type__": "cc.Color",
  5468. "r": 255,
  5469. "g": 255,
  5470. "b": 255,
  5471. "a": 255
  5472. },
  5473. "_contentSize": {
  5474. "__type__": "cc.Size",
  5475. "width": 644,
  5476. "height": 844
  5477. },
  5478. "_anchorPoint": {
  5479. "__type__": "cc.Vec2",
  5480. "x": 0.5,
  5481. "y": 0.5
  5482. },
  5483. "_position": {
  5484. "__type__": "cc.Vec3",
  5485. "x": 0,
  5486. "y": 0,
  5487. "z": 0
  5488. },
  5489. "_scale": {
  5490. "__type__": "cc.Vec3",
  5491. "x": 1,
  5492. "y": 1,
  5493. "z": 1
  5494. },
  5495. "_rotationX": 0,
  5496. "_rotationY": 0,
  5497. "_quat": {
  5498. "__type__": "cc.Quat",
  5499. "x": 0,
  5500. "y": 0,
  5501. "z": 0,
  5502. "w": 1
  5503. },
  5504. "_skewX": 0,
  5505. "_skewY": 0,
  5506. "_zIndex": 0,
  5507. "groupIndex": 0,
  5508. "_id": ""
  5509. },
  5510. {
  5511. "__type__": "cc.Node",
  5512. "_name": "game_rank_share",
  5513. "_objFlags": 0,
  5514. "_parent": {
  5515. "__id__": 161
  5516. },
  5517. "_children": [],
  5518. "_active": true,
  5519. "_level": 5,
  5520. "_components": [
  5521. {
  5522. "__id__": 163
  5523. },
  5524. {
  5525. "__id__": 164
  5526. }
  5527. ],
  5528. "_prefab": {
  5529. "__id__": 165
  5530. },
  5531. "_opacity": 255,
  5532. "_color": {
  5533. "__type__": "cc.Color",
  5534. "r": 255,
  5535. "g": 255,
  5536. "b": 255,
  5537. "a": 255
  5538. },
  5539. "_contentSize": {
  5540. "__type__": "cc.Size",
  5541. "width": 600,
  5542. "height": 480
  5543. },
  5544. "_anchorPoint": {
  5545. "__type__": "cc.Vec2",
  5546. "x": 0.5,
  5547. "y": 0.5
  5548. },
  5549. "_position": {
  5550. "__type__": "cc.Vec3",
  5551. "x": 0,
  5552. "y": 182,
  5553. "z": 0
  5554. },
  5555. "_scale": {
  5556. "__type__": "cc.Vec3",
  5557. "x": 1,
  5558. "y": 1,
  5559. "z": 1
  5560. },
  5561. "_rotationX": 0,
  5562. "_rotationY": 0,
  5563. "_quat": {
  5564. "__type__": "cc.Quat",
  5565. "x": 0,
  5566. "y": 0,
  5567. "z": 0,
  5568. "w": 1
  5569. },
  5570. "_skewX": 0,
  5571. "_skewY": 0,
  5572. "_zIndex": 0,
  5573. "groupIndex": 0,
  5574. "_id": ""
  5575. },
  5576. {
  5577. "__type__": "cc.Sprite",
  5578. "_name": "",
  5579. "_objFlags": 0,
  5580. "node": {
  5581. "__id__": 162
  5582. },
  5583. "_enabled": true,
  5584. "_srcBlendFactor": 770,
  5585. "_dstBlendFactor": 771,
  5586. "_spriteFrame": {
  5587. "__uuid__": "af8cff8d-aada-4126-a574-4feeaf388b85"
  5588. },
  5589. "_type": 0,
  5590. "_sizeMode": 1,
  5591. "_fillType": 0,
  5592. "_fillCenter": {
  5593. "__type__": "cc.Vec2",
  5594. "x": 0,
  5595. "y": 0
  5596. },
  5597. "_fillStart": 0,
  5598. "_fillRange": 0,
  5599. "_isTrimmedMode": true,
  5600. "_state": 0,
  5601. "_atlas": null,
  5602. "_id": ""
  5603. },
  5604. {
  5605. "__type__": "cc.Widget",
  5606. "_name": "",
  5607. "_objFlags": 0,
  5608. "node": {
  5609. "__id__": 162
  5610. },
  5611. "_enabled": true,
  5612. "alignMode": 1,
  5613. "_target": null,
  5614. "_alignFlags": 1,
  5615. "_left": 0,
  5616. "_right": 0,
  5617. "_top": 0,
  5618. "_bottom": 0,
  5619. "_verticalCenter": 0,
  5620. "_horizontalCenter": 0,
  5621. "_isAbsLeft": true,
  5622. "_isAbsRight": true,
  5623. "_isAbsTop": true,
  5624. "_isAbsBottom": true,
  5625. "_isAbsHorizontalCenter": true,
  5626. "_isAbsVerticalCenter": true,
  5627. "_originalWidth": 0,
  5628. "_originalHeight": 0,
  5629. "_id": ""
  5630. },
  5631. {
  5632. "__type__": "cc.PrefabInfo",
  5633. "root": {
  5634. "__id__": 1
  5635. },
  5636. "asset": {
  5637. "__uuid__": "cf09f681-edab-4bbb-9e85-11c0abe6fc35"
  5638. },
  5639. "fileId": "edwchCwx9N47v6TmyxHl5N",
  5640. "sync": false
  5641. },
  5642. {
  5643. "__type__": "cc.Node",
  5644. "_name": "share_btn",
  5645. "_objFlags": 0,
  5646. "_parent": {
  5647. "__id__": 161
  5648. },
  5649. "_children": [
  5650. {
  5651. "__id__": 167
  5652. }
  5653. ],
  5654. "_active": true,
  5655. "_level": 5,
  5656. "_components": [
  5657. {
  5658. "__id__": 170
  5659. },
  5660. {
  5661. "__id__": 171
  5662. },
  5663. {
  5664. "__id__": 173
  5665. }
  5666. ],
  5667. "_prefab": {
  5668. "__id__": 174
  5669. },
  5670. "_opacity": 255,
  5671. "_color": {
  5672. "__type__": "cc.Color",
  5673. "r": 255,
  5674. "g": 255,
  5675. "b": 255,
  5676. "a": 255
  5677. },
  5678. "_contentSize": {
  5679. "__type__": "cc.Size",
  5680. "width": 420,
  5681. "height": 90
  5682. },
  5683. "_anchorPoint": {
  5684. "__type__": "cc.Vec2",
  5685. "x": 0.5,
  5686. "y": 0.5
  5687. },
  5688. "_position": {
  5689. "__type__": "cc.Vec3",
  5690. "x": 0,
  5691. "y": -139,
  5692. "z": 0
  5693. },
  5694. "_scale": {
  5695. "__type__": "cc.Vec3",
  5696. "x": 1,
  5697. "y": 1,
  5698. "z": 1
  5699. },
  5700. "_rotationX": 0,
  5701. "_rotationY": 0,
  5702. "_quat": {
  5703. "__type__": "cc.Quat",
  5704. "x": 0,
  5705. "y": 0,
  5706. "z": 0,
  5707. "w": 1
  5708. },
  5709. "_skewX": 0,
  5710. "_skewY": 0,
  5711. "_zIndex": 0,
  5712. "groupIndex": 0,
  5713. "_id": ""
  5714. },
  5715. {
  5716. "__type__": "cc.Node",
  5717. "_name": "game_rank_share_title",
  5718. "_objFlags": 0,
  5719. "_parent": {
  5720. "__id__": 166
  5721. },
  5722. "_children": [],
  5723. "_active": true,
  5724. "_level": 6,
  5725. "_components": [
  5726. {
  5727. "__id__": 168
  5728. }
  5729. ],
  5730. "_prefab": {
  5731. "__id__": 169
  5732. },
  5733. "_opacity": 255,
  5734. "_color": {
  5735. "__type__": "cc.Color",
  5736. "r": 255,
  5737. "g": 255,
  5738. "b": 255,
  5739. "a": 255
  5740. },
  5741. "_contentSize": {
  5742. "__type__": "cc.Size",
  5743. "width": 128,
  5744. "height": 47
  5745. },
  5746. "_anchorPoint": {
  5747. "__type__": "cc.Vec2",
  5748. "x": 0.5,
  5749. "y": 0.5
  5750. },
  5751. "_position": {
  5752. "__type__": "cc.Vec3",
  5753. "x": 0,
  5754. "y": 0,
  5755. "z": 0
  5756. },
  5757. "_scale": {
  5758. "__type__": "cc.Vec3",
  5759. "x": 1,
  5760. "y": 1,
  5761. "z": 1
  5762. },
  5763. "_rotationX": 0,
  5764. "_rotationY": 0,
  5765. "_quat": {
  5766. "__type__": "cc.Quat",
  5767. "x": 0,
  5768. "y": 0,
  5769. "z": 0,
  5770. "w": 1
  5771. },
  5772. "_skewX": 0,
  5773. "_skewY": 0,
  5774. "_zIndex": 0,
  5775. "groupIndex": 0,
  5776. "_id": ""
  5777. },
  5778. {
  5779. "__type__": "cc.Sprite",
  5780. "_name": "",
  5781. "_objFlags": 0,
  5782. "node": {
  5783. "__id__": 167
  5784. },
  5785. "_enabled": true,
  5786. "_srcBlendFactor": 770,
  5787. "_dstBlendFactor": 771,
  5788. "_spriteFrame": {
  5789. "__uuid__": "1e059f99-94d8-4dcb-9c01-1922d263e013"
  5790. },
  5791. "_type": 0,
  5792. "_sizeMode": 1,
  5793. "_fillType": 0,
  5794. "_fillCenter": {
  5795. "__type__": "cc.Vec2",
  5796. "x": 0,
  5797. "y": 0
  5798. },
  5799. "_fillStart": 0,
  5800. "_fillRange": 0,
  5801. "_isTrimmedMode": true,
  5802. "_state": 0,
  5803. "_atlas": null,
  5804. "_id": ""
  5805. },
  5806. {
  5807. "__type__": "cc.PrefabInfo",
  5808. "root": {
  5809. "__id__": 1
  5810. },
  5811. "asset": {
  5812. "__uuid__": "cf09f681-edab-4bbb-9e85-11c0abe6fc35"
  5813. },
  5814. "fileId": "2e4bRyf/xEA4efV7nErhiU",
  5815. "sync": false
  5816. },
  5817. {
  5818. "__type__": "cc.Sprite",
  5819. "_name": "",
  5820. "_objFlags": 0,
  5821. "node": {
  5822. "__id__": 166
  5823. },
  5824. "_enabled": true,
  5825. "_srcBlendFactor": 770,
  5826. "_dstBlendFactor": 771,
  5827. "_spriteFrame": {
  5828. "__uuid__": "76995837-21e8-4905-8dd3-b19b5cba516b"
  5829. },
  5830. "_type": 0,
  5831. "_sizeMode": 0,
  5832. "_fillType": 0,
  5833. "_fillCenter": {
  5834. "__type__": "cc.Vec2",
  5835. "x": 0,
  5836. "y": 0
  5837. },
  5838. "_fillStart": 0,
  5839. "_fillRange": 0,
  5840. "_isTrimmedMode": true,
  5841. "_state": 0,
  5842. "_atlas": null,
  5843. "_id": ""
  5844. },
  5845. {
  5846. "__type__": "cc.Button",
  5847. "_name": "",
  5848. "_objFlags": 0,
  5849. "node": {
  5850. "__id__": 166
  5851. },
  5852. "_enabled": true,
  5853. "transition": 1,
  5854. "pressedColor": {
  5855. "__type__": "cc.Color",
  5856. "r": 120,
  5857. "g": 120,
  5858. "b": 120,
  5859. "a": 255
  5860. },
  5861. "hoverColor": {
  5862. "__type__": "cc.Color",
  5863. "r": 255,
  5864. "g": 255,
  5865. "b": 255,
  5866. "a": 255
  5867. },
  5868. "duration": 0.1,
  5869. "zoomScale": 1.2,
  5870. "clickEvents": [
  5871. {
  5872. "__id__": 172
  5873. }
  5874. ],
  5875. "_N$interactable": true,
  5876. "_N$enableAutoGrayEffect": false,
  5877. "_N$normalColor": {
  5878. "__type__": "cc.Color",
  5879. "r": 255,
  5880. "g": 255,
  5881. "b": 255,
  5882. "a": 255
  5883. },
  5884. "_N$disabledColor": {
  5885. "__type__": "cc.Color",
  5886. "r": 255,
  5887. "g": 255,
  5888. "b": 255,
  5889. "a": 255
  5890. },
  5891. "_N$normalSprite": {
  5892. "__uuid__": "76995837-21e8-4905-8dd3-b19b5cba516b"
  5893. },
  5894. "_N$pressedSprite": {
  5895. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  5896. },
  5897. "pressedSprite": {
  5898. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  5899. },
  5900. "_N$hoverSprite": {
  5901. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  5902. },
  5903. "hoverSprite": {
  5904. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  5905. },
  5906. "_N$disabledSprite": {
  5907. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  5908. },
  5909. "_N$target": {
  5910. "__id__": 166
  5911. },
  5912. "_id": ""
  5913. },
  5914. {
  5915. "__type__": "cc.ClickEvent",
  5916. "target": {
  5917. "__id__": 160
  5918. },
  5919. "component": "GameCrowdRank",
  5920. "handler": "shareToCrowd",
  5921. "customEventData": ""
  5922. },
  5923. {
  5924. "__type__": "cc.Widget",
  5925. "_name": "",
  5926. "_objFlags": 0,
  5927. "node": {
  5928. "__id__": 166
  5929. },
  5930. "_enabled": true,
  5931. "alignMode": 1,
  5932. "_target": null,
  5933. "_alignFlags": 1,
  5934. "_left": 0,
  5935. "_right": 0,
  5936. "_top": 516,
  5937. "_bottom": 238,
  5938. "_verticalCenter": 0,
  5939. "_horizontalCenter": 0,
  5940. "_isAbsLeft": true,
  5941. "_isAbsRight": true,
  5942. "_isAbsTop": true,
  5943. "_isAbsBottom": true,
  5944. "_isAbsHorizontalCenter": true,
  5945. "_isAbsVerticalCenter": true,
  5946. "_originalWidth": 0,
  5947. "_originalHeight": 0,
  5948. "_id": ""
  5949. },
  5950. {
  5951. "__type__": "cc.PrefabInfo",
  5952. "root": {
  5953. "__id__": 1
  5954. },
  5955. "asset": {
  5956. "__uuid__": "cf09f681-edab-4bbb-9e85-11c0abe6fc35"
  5957. },
  5958. "fileId": "92My/H8MFJUJq+JNa22v05",
  5959. "sync": false
  5960. },
  5961. {
  5962. "__type__": "cc.Widget",
  5963. "_name": "",
  5964. "_objFlags": 0,
  5965. "node": {
  5966. "__id__": 161
  5967. },
  5968. "_enabled": true,
  5969. "alignMode": 1,
  5970. "_target": null,
  5971. "_alignFlags": 45,
  5972. "_left": 0,
  5973. "_right": 0,
  5974. "_top": 0,
  5975. "_bottom": 0,
  5976. "_verticalCenter": 0,
  5977. "_horizontalCenter": 0,
  5978. "_isAbsLeft": true,
  5979. "_isAbsRight": true,
  5980. "_isAbsTop": true,
  5981. "_isAbsBottom": true,
  5982. "_isAbsHorizontalCenter": true,
  5983. "_isAbsVerticalCenter": true,
  5984. "_originalWidth": 0,
  5985. "_originalHeight": 0,
  5986. "_id": ""
  5987. },
  5988. {
  5989. "__type__": "cc.PrefabInfo",
  5990. "root": {
  5991. "__id__": 1
  5992. },
  5993. "asset": {
  5994. "__uuid__": "cf09f681-edab-4bbb-9e85-11c0abe6fc35"
  5995. },
  5996. "fileId": "a9MJzIQwZKqZ8ONeg/UED6",
  5997. "sync": false
  5998. },
  5999. {
  6000. "__type__": "cc.Node",
  6001. "_name": "rankNode",
  6002. "_objFlags": 0,
  6003. "_parent": {
  6004. "__id__": 160
  6005. },
  6006. "_children": [],
  6007. "_active": false,
  6008. "_level": 4,
  6009. "_components": [
  6010. {
  6011. "__id__": 178
  6012. },
  6013. {
  6014. "__id__": 179
  6015. }
  6016. ],
  6017. "_prefab": {
  6018. "__id__": 180
  6019. },
  6020. "_opacity": 255,
  6021. "_color": {
  6022. "__type__": "cc.Color",
  6023. "r": 255,
  6024. "g": 255,
  6025. "b": 255,
  6026. "a": 255
  6027. },
  6028. "_contentSize": {
  6029. "__type__": "cc.Size",
  6030. "width": 644,
  6031. "height": 844
  6032. },
  6033. "_anchorPoint": {
  6034. "__type__": "cc.Vec2",
  6035. "x": 0.5,
  6036. "y": 0.5
  6037. },
  6038. "_position": {
  6039. "__type__": "cc.Vec3",
  6040. "x": 0,
  6041. "y": 0,
  6042. "z": 0
  6043. },
  6044. "_scale": {
  6045. "__type__": "cc.Vec3",
  6046. "x": 1,
  6047. "y": 1,
  6048. "z": 1
  6049. },
  6050. "_rotationX": 0,
  6051. "_rotationY": 0,
  6052. "_quat": {
  6053. "__type__": "cc.Quat",
  6054. "x": 0,
  6055. "y": 0,
  6056. "z": 0,
  6057. "w": 1
  6058. },
  6059. "_skewX": 0,
  6060. "_skewY": 0,
  6061. "_zIndex": 0,
  6062. "groupIndex": 0,
  6063. "_id": ""
  6064. },
  6065. {
  6066. "__type__": "cc.Widget",
  6067. "_name": "",
  6068. "_objFlags": 0,
  6069. "node": {
  6070. "__id__": 177
  6071. },
  6072. "_enabled": true,
  6073. "alignMode": 1,
  6074. "_target": null,
  6075. "_alignFlags": 45,
  6076. "_left": 0,
  6077. "_right": 0,
  6078. "_top": 0,
  6079. "_bottom": 0,
  6080. "_verticalCenter": 0,
  6081. "_horizontalCenter": 0,
  6082. "_isAbsLeft": true,
  6083. "_isAbsRight": true,
  6084. "_isAbsTop": true,
  6085. "_isAbsBottom": true,
  6086. "_isAbsHorizontalCenter": true,
  6087. "_isAbsVerticalCenter": true,
  6088. "_originalWidth": 0,
  6089. "_originalHeight": 0,
  6090. "_id": ""
  6091. },
  6092. {
  6093. "__type__": "cc.WXSubContextView",
  6094. "_name": "",
  6095. "_objFlags": 0,
  6096. "node": {
  6097. "__id__": 177
  6098. },
  6099. "_enabled": true,
  6100. "_id": ""
  6101. },
  6102. {
  6103. "__type__": "cc.PrefabInfo",
  6104. "root": {
  6105. "__id__": 1
  6106. },
  6107. "asset": {
  6108. "__uuid__": "cf09f681-edab-4bbb-9e85-11c0abe6fc35"
  6109. },
  6110. "fileId": "8eA0ey73pHir4P4LB1UaBa",
  6111. "sync": false
  6112. },
  6113. {
  6114. "__type__": "cc.Widget",
  6115. "_name": "",
  6116. "_objFlags": 0,
  6117. "node": {
  6118. "__id__": 160
  6119. },
  6120. "_enabled": true,
  6121. "alignMode": 1,
  6122. "_target": null,
  6123. "_alignFlags": 5,
  6124. "_left": 0,
  6125. "_right": 0,
  6126. "_top": 175,
  6127. "_bottom": 121,
  6128. "_verticalCenter": 0,
  6129. "_horizontalCenter": 0,
  6130. "_isAbsLeft": true,
  6131. "_isAbsRight": true,
  6132. "_isAbsTop": true,
  6133. "_isAbsBottom": true,
  6134. "_isAbsHorizontalCenter": true,
  6135. "_isAbsVerticalCenter": true,
  6136. "_originalWidth": 0,
  6137. "_originalHeight": 844,
  6138. "_id": ""
  6139. },
  6140. {
  6141. "__type__": "17c43ZOtQxAXJ4RQOAkAy46",
  6142. "_name": "",
  6143. "_objFlags": 0,
  6144. "node": {
  6145. "__id__": 160
  6146. },
  6147. "_enabled": true,
  6148. "shareNode": {
  6149. "__id__": 161
  6150. },
  6151. "rankNode": {
  6152. "__id__": 177
  6153. },
  6154. "_id": ""
  6155. },
  6156. {
  6157. "__type__": "cc.PrefabInfo",
  6158. "root": {
  6159. "__id__": 1
  6160. },
  6161. "asset": {
  6162. "__uuid__": "cf09f681-edab-4bbb-9e85-11c0abe6fc35"
  6163. },
  6164. "fileId": "c1ty8w+lBCI4Ki/851gq+R",
  6165. "sync": false
  6166. },
  6167. {
  6168. "__type__": "cc.Node",
  6169. "_name": "previous_btn",
  6170. "_objFlags": 0,
  6171. "_parent": {
  6172. "__id__": 6
  6173. },
  6174. "_children": [],
  6175. "_active": true,
  6176. "_level": 3,
  6177. "_components": [
  6178. {
  6179. "__id__": 185
  6180. },
  6181. {
  6182. "__id__": 186
  6183. },
  6184. {
  6185. "__id__": 188
  6186. }
  6187. ],
  6188. "_prefab": {
  6189. "__id__": 189
  6190. },
  6191. "_opacity": 255,
  6192. "_color": {
  6193. "__type__": "cc.Color",
  6194. "r": 255,
  6195. "g": 255,
  6196. "b": 255,
  6197. "a": 255
  6198. },
  6199. "_contentSize": {
  6200. "__type__": "cc.Size",
  6201. "width": 264,
  6202. "height": 80
  6203. },
  6204. "_anchorPoint": {
  6205. "__type__": "cc.Vec2",
  6206. "x": 0.5,
  6207. "y": 0.5
  6208. },
  6209. "_position": {
  6210. "__type__": "cc.Vec3",
  6211. "x": -157,
  6212. "y": -500,
  6213. "z": 0
  6214. },
  6215. "_scale": {
  6216. "__type__": "cc.Vec3",
  6217. "x": 1,
  6218. "y": 1,
  6219. "z": 1
  6220. },
  6221. "_rotationX": 0,
  6222. "_rotationY": 0,
  6223. "_quat": {
  6224. "__type__": "cc.Quat",
  6225. "x": 0,
  6226. "y": 0,
  6227. "z": 0,
  6228. "w": 1
  6229. },
  6230. "_skewX": 0,
  6231. "_skewY": 0,
  6232. "_zIndex": 0,
  6233. "groupIndex": 0,
  6234. "_id": ""
  6235. },
  6236. {
  6237. "__type__": "cc.Sprite",
  6238. "_name": "",
  6239. "_objFlags": 0,
  6240. "node": {
  6241. "__id__": 184
  6242. },
  6243. "_enabled": true,
  6244. "_srcBlendFactor": 770,
  6245. "_dstBlendFactor": 771,
  6246. "_spriteFrame": {
  6247. "__uuid__": "0116770b-89f3-4c0d-afc1-ad77cd00fcaa"
  6248. },
  6249. "_type": 1,
  6250. "_sizeMode": 0,
  6251. "_fillType": 0,
  6252. "_fillCenter": {
  6253. "__type__": "cc.Vec2",
  6254. "x": 0,
  6255. "y": 0
  6256. },
  6257. "_fillStart": 0,
  6258. "_fillRange": 0,
  6259. "_isTrimmedMode": true,
  6260. "_state": 0,
  6261. "_atlas": null,
  6262. "_id": ""
  6263. },
  6264. {
  6265. "__type__": "cc.Button",
  6266. "_name": "",
  6267. "_objFlags": 0,
  6268. "node": {
  6269. "__id__": 184
  6270. },
  6271. "_enabled": true,
  6272. "transition": 1,
  6273. "pressedColor": {
  6274. "__type__": "cc.Color",
  6275. "r": 120,
  6276. "g": 120,
  6277. "b": 120,
  6278. "a": 255
  6279. },
  6280. "hoverColor": {
  6281. "__type__": "cc.Color",
  6282. "r": 255,
  6283. "g": 255,
  6284. "b": 255,
  6285. "a": 255
  6286. },
  6287. "duration": 0.1,
  6288. "zoomScale": 1.2,
  6289. "clickEvents": [
  6290. {
  6291. "__id__": 187
  6292. }
  6293. ],
  6294. "_N$interactable": true,
  6295. "_N$enableAutoGrayEffect": false,
  6296. "_N$normalColor": {
  6297. "__type__": "cc.Color",
  6298. "r": 255,
  6299. "g": 255,
  6300. "b": 255,
  6301. "a": 255
  6302. },
  6303. "_N$disabledColor": {
  6304. "__type__": "cc.Color",
  6305. "r": 255,
  6306. "g": 255,
  6307. "b": 255,
  6308. "a": 255
  6309. },
  6310. "_N$normalSprite": {
  6311. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  6312. },
  6313. "_N$pressedSprite": {
  6314. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  6315. },
  6316. "pressedSprite": {
  6317. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  6318. },
  6319. "_N$hoverSprite": {
  6320. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  6321. },
  6322. "hoverSprite": {
  6323. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  6324. },
  6325. "_N$disabledSprite": {
  6326. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  6327. },
  6328. "_N$target": {
  6329. "__id__": 184
  6330. },
  6331. "_id": ""
  6332. },
  6333. {
  6334. "__type__": "cc.ClickEvent",
  6335. "target": {
  6336. "__id__": 1
  6337. },
  6338. "component": "GameRank",
  6339. "handler": "handlePageFlipOver",
  6340. "customEventData": "0"
  6341. },
  6342. {
  6343. "__type__": "cc.Widget",
  6344. "_name": "",
  6345. "_objFlags": 0,
  6346. "node": {
  6347. "__id__": 184
  6348. },
  6349. "_enabled": true,
  6350. "alignMode": 1,
  6351. "_target": null,
  6352. "_alignFlags": 20,
  6353. "_left": 0,
  6354. "_right": 0,
  6355. "_top": 0,
  6356. "_bottom": 30,
  6357. "_verticalCenter": 0,
  6358. "_horizontalCenter": -157,
  6359. "_isAbsLeft": true,
  6360. "_isAbsRight": true,
  6361. "_isAbsTop": true,
  6362. "_isAbsBottom": true,
  6363. "_isAbsHorizontalCenter": true,
  6364. "_isAbsVerticalCenter": true,
  6365. "_originalWidth": 0,
  6366. "_originalHeight": 0,
  6367. "_id": ""
  6368. },
  6369. {
  6370. "__type__": "cc.PrefabInfo",
  6371. "root": {
  6372. "__id__": 1
  6373. },
  6374. "asset": {
  6375. "__uuid__": "cf09f681-edab-4bbb-9e85-11c0abe6fc35"
  6376. },
  6377. "fileId": "ddOK6mO8BL/ZjMLr5nOywk",
  6378. "sync": false
  6379. },
  6380. {
  6381. "__type__": "cc.Node",
  6382. "_name": "next_btn",
  6383. "_objFlags": 0,
  6384. "_parent": {
  6385. "__id__": 6
  6386. },
  6387. "_children": [],
  6388. "_active": true,
  6389. "_level": 3,
  6390. "_components": [
  6391. {
  6392. "__id__": 191
  6393. },
  6394. {
  6395. "__id__": 192
  6396. },
  6397. {
  6398. "__id__": 194
  6399. }
  6400. ],
  6401. "_prefab": {
  6402. "__id__": 195
  6403. },
  6404. "_opacity": 255,
  6405. "_color": {
  6406. "__type__": "cc.Color",
  6407. "r": 255,
  6408. "g": 255,
  6409. "b": 255,
  6410. "a": 255
  6411. },
  6412. "_contentSize": {
  6413. "__type__": "cc.Size",
  6414. "width": 264,
  6415. "height": 80
  6416. },
  6417. "_anchorPoint": {
  6418. "__type__": "cc.Vec2",
  6419. "x": 0.5,
  6420. "y": 0.5
  6421. },
  6422. "_position": {
  6423. "__type__": "cc.Vec3",
  6424. "x": 157,
  6425. "y": -500,
  6426. "z": 0
  6427. },
  6428. "_scale": {
  6429. "__type__": "cc.Vec3",
  6430. "x": 1,
  6431. "y": 1,
  6432. "z": 1
  6433. },
  6434. "_rotationX": 0,
  6435. "_rotationY": 0,
  6436. "_quat": {
  6437. "__type__": "cc.Quat",
  6438. "x": 0,
  6439. "y": 0,
  6440. "z": 0,
  6441. "w": 1
  6442. },
  6443. "_skewX": 0,
  6444. "_skewY": 0,
  6445. "_zIndex": 0,
  6446. "groupIndex": 0,
  6447. "_id": ""
  6448. },
  6449. {
  6450. "__type__": "cc.Sprite",
  6451. "_name": "",
  6452. "_objFlags": 0,
  6453. "node": {
  6454. "__id__": 190
  6455. },
  6456. "_enabled": true,
  6457. "_srcBlendFactor": 770,
  6458. "_dstBlendFactor": 771,
  6459. "_spriteFrame": {
  6460. "__uuid__": "34eea2a0-e4e1-4131-ab03-b56f3aa000d1"
  6461. },
  6462. "_type": 1,
  6463. "_sizeMode": 0,
  6464. "_fillType": 0,
  6465. "_fillCenter": {
  6466. "__type__": "cc.Vec2",
  6467. "x": 0,
  6468. "y": 0
  6469. },
  6470. "_fillStart": 0,
  6471. "_fillRange": 0,
  6472. "_isTrimmedMode": true,
  6473. "_state": 0,
  6474. "_atlas": null,
  6475. "_id": ""
  6476. },
  6477. {
  6478. "__type__": "cc.Button",
  6479. "_name": "",
  6480. "_objFlags": 0,
  6481. "node": {
  6482. "__id__": 190
  6483. },
  6484. "_enabled": true,
  6485. "transition": 1,
  6486. "pressedColor": {
  6487. "__type__": "cc.Color",
  6488. "r": 120,
  6489. "g": 120,
  6490. "b": 120,
  6491. "a": 255
  6492. },
  6493. "hoverColor": {
  6494. "__type__": "cc.Color",
  6495. "r": 255,
  6496. "g": 255,
  6497. "b": 255,
  6498. "a": 255
  6499. },
  6500. "duration": 0.1,
  6501. "zoomScale": 1.2,
  6502. "clickEvents": [
  6503. {
  6504. "__id__": 193
  6505. }
  6506. ],
  6507. "_N$interactable": true,
  6508. "_N$enableAutoGrayEffect": false,
  6509. "_N$normalColor": {
  6510. "__type__": "cc.Color",
  6511. "r": 255,
  6512. "g": 255,
  6513. "b": 255,
  6514. "a": 255
  6515. },
  6516. "_N$disabledColor": {
  6517. "__type__": "cc.Color",
  6518. "r": 255,
  6519. "g": 255,
  6520. "b": 255,
  6521. "a": 255
  6522. },
  6523. "_N$normalSprite": {
  6524. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  6525. },
  6526. "_N$pressedSprite": {
  6527. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  6528. },
  6529. "pressedSprite": {
  6530. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  6531. },
  6532. "_N$hoverSprite": {
  6533. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  6534. },
  6535. "hoverSprite": {
  6536. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  6537. },
  6538. "_N$disabledSprite": {
  6539. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  6540. },
  6541. "_N$target": {
  6542. "__id__": 190
  6543. },
  6544. "_id": ""
  6545. },
  6546. {
  6547. "__type__": "cc.ClickEvent",
  6548. "target": {
  6549. "__id__": 1
  6550. },
  6551. "component": "GameRank",
  6552. "handler": "handlePageFlipOver",
  6553. "customEventData": "1"
  6554. },
  6555. {
  6556. "__type__": "cc.Widget",
  6557. "_name": "",
  6558. "_objFlags": 0,
  6559. "node": {
  6560. "__id__": 190
  6561. },
  6562. "_enabled": true,
  6563. "alignMode": 1,
  6564. "_target": null,
  6565. "_alignFlags": 20,
  6566. "_left": 0,
  6567. "_right": 0,
  6568. "_top": 0,
  6569. "_bottom": 30,
  6570. "_verticalCenter": 0,
  6571. "_horizontalCenter": 157,
  6572. "_isAbsLeft": true,
  6573. "_isAbsRight": true,
  6574. "_isAbsTop": true,
  6575. "_isAbsBottom": true,
  6576. "_isAbsHorizontalCenter": true,
  6577. "_isAbsVerticalCenter": true,
  6578. "_originalWidth": 0,
  6579. "_originalHeight": 0,
  6580. "_id": ""
  6581. },
  6582. {
  6583. "__type__": "cc.PrefabInfo",
  6584. "root": {
  6585. "__id__": 1
  6586. },
  6587. "asset": {
  6588. "__uuid__": "cf09f681-edab-4bbb-9e85-11c0abe6fc35"
  6589. },
  6590. "fileId": "29BR21RhxIa4TdWz9lMdZk",
  6591. "sync": false
  6592. },
  6593. {
  6594. "__type__": "cc.PrefabInfo",
  6595. "root": {
  6596. "__id__": 1
  6597. },
  6598. "asset": {
  6599. "__uuid__": "cf09f681-edab-4bbb-9e85-11c0abe6fc35"
  6600. },
  6601. "fileId": "ccgRtaqBRCB79N0Rf0rVnC",
  6602. "sync": false
  6603. },
  6604. {
  6605. "__type__": "92795fzMa1KLJoZ2bBxxbI6",
  6606. "_name": "",
  6607. "_objFlags": 0,
  6608. "node": {
  6609. "__id__": 1
  6610. },
  6611. "_enabled": true,
  6612. "content": {
  6613. "__id__": 6
  6614. },
  6615. "friendNode": {
  6616. "__id__": 69
  6617. },
  6618. "countryNode": {
  6619. "__id__": 115
  6620. },
  6621. "crowdNode": {
  6622. "__id__": 160
  6623. },
  6624. "rankTab": [
  6625. {
  6626. "__id__": 29
  6627. },
  6628. {
  6629. "__id__": 42
  6630. },
  6631. {
  6632. "__id__": 54
  6633. }
  6634. ],
  6635. "previousButton": {
  6636. "__id__": 184
  6637. },
  6638. "nextButton": {
  6639. "__id__": 190
  6640. },
  6641. "_N$zIndex": 110,
  6642. "_id": ""
  6643. },
  6644. {
  6645. "__type__": "cc.PrefabInfo",
  6646. "root": {
  6647. "__id__": 1
  6648. },
  6649. "asset": {
  6650. "__uuid__": "cf09f681-edab-4bbb-9e85-11c0abe6fc35"
  6651. },
  6652. "fileId": "f8Xy+U7UpNX6fuLFnqRKlp",
  6653. "sync": false
  6654. }
  6655. ]