BeginScene.fire 90 KB

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