MainScene.fire 99 KB

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