loading.scene 184 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182
  1. [
  2. {
  3. "__type__": "cc.SceneAsset",
  4. "_name": "loading",
  5. "_objFlags": 0,
  6. "__editorExtras__": {},
  7. "_native": "",
  8. "scene": {
  9. "__id__": 1
  10. }
  11. },
  12. {
  13. "__type__": "cc.Scene",
  14. "_name": "loading",
  15. "_objFlags": 0,
  16. "__editorExtras__": {},
  17. "_parent": null,
  18. "_children": [
  19. {
  20. "__id__": 2
  21. }
  22. ],
  23. "_active": true,
  24. "_components": [],
  25. "_prefab": null,
  26. "_lpos": {
  27. "__type__": "cc.Vec3",
  28. "x": 0,
  29. "y": 0,
  30. "z": 0
  31. },
  32. "_lrot": {
  33. "__type__": "cc.Quat",
  34. "x": 0,
  35. "y": 0,
  36. "z": 0,
  37. "w": 1
  38. },
  39. "_lscale": {
  40. "__type__": "cc.Vec3",
  41. "x": 1,
  42. "y": 1,
  43. "z": 1
  44. },
  45. "_mobility": 0,
  46. "_layer": 1073741824,
  47. "_euler": {
  48. "__type__": "cc.Vec3",
  49. "x": 0,
  50. "y": 0,
  51. "z": 0
  52. },
  53. "autoReleaseAssets": false,
  54. "_globals": {
  55. "__id__": 255
  56. },
  57. "_id": "eb6c002f-3c97-4736-b995-0488c0e7aed4"
  58. },
  59. {
  60. "__type__": "cc.Node",
  61. "_name": "Canvas",
  62. "_objFlags": 0,
  63. "__editorExtras__": {},
  64. "_parent": {
  65. "__id__": 1
  66. },
  67. "_children": [
  68. {
  69. "__id__": 3
  70. },
  71. {
  72. "__id__": 5
  73. },
  74. {
  75. "__id__": 9
  76. },
  77. {
  78. "__id__": 13
  79. },
  80. {
  81. "__id__": 20
  82. },
  83. {
  84. "__id__": 24
  85. },
  86. {
  87. "__id__": 30
  88. },
  89. {
  90. "__id__": 36
  91. },
  92. {
  93. "__id__": 42
  94. },
  95. {
  96. "__id__": 55
  97. },
  98. {
  99. "__id__": 198
  100. }
  101. ],
  102. "_active": true,
  103. "_components": [
  104. {
  105. "__id__": 251
  106. },
  107. {
  108. "__id__": 252
  109. },
  110. {
  111. "__id__": 253
  112. },
  113. {
  114. "__id__": 254
  115. }
  116. ],
  117. "_prefab": null,
  118. "_lpos": {
  119. "__type__": "cc.Vec3",
  120. "x": 360,
  121. "y": 640,
  122. "z": 0
  123. },
  124. "_lrot": {
  125. "__type__": "cc.Quat",
  126. "x": 0,
  127. "y": 0,
  128. "z": 0,
  129. "w": 1
  130. },
  131. "_lscale": {
  132. "__type__": "cc.Vec3",
  133. "x": 1,
  134. "y": 1,
  135. "z": 1
  136. },
  137. "_mobility": 0,
  138. "_layer": 33554432,
  139. "_euler": {
  140. "__type__": "cc.Vec3",
  141. "x": 0,
  142. "y": 0,
  143. "z": 0
  144. },
  145. "_id": "beI88Z2HpFELqR4T5EMHpg"
  146. },
  147. {
  148. "__type__": "cc.Node",
  149. "_name": "Camera",
  150. "_objFlags": 0,
  151. "__editorExtras__": {},
  152. "_parent": {
  153. "__id__": 2
  154. },
  155. "_children": [],
  156. "_active": true,
  157. "_components": [
  158. {
  159. "__id__": 4
  160. }
  161. ],
  162. "_prefab": null,
  163. "_lpos": {
  164. "__type__": "cc.Vec3",
  165. "x": 0,
  166. "y": 0,
  167. "z": 1000
  168. },
  169. "_lrot": {
  170. "__type__": "cc.Quat",
  171. "x": 0,
  172. "y": 0,
  173. "z": 0,
  174. "w": 1
  175. },
  176. "_lscale": {
  177. "__type__": "cc.Vec3",
  178. "x": 1,
  179. "y": 1,
  180. "z": 1
  181. },
  182. "_mobility": 0,
  183. "_layer": 1073741824,
  184. "_euler": {
  185. "__type__": "cc.Vec3",
  186. "x": 0,
  187. "y": 0,
  188. "z": 0
  189. },
  190. "_id": "ebFwiq8gBFaYpqYbdoDODe"
  191. },
  192. {
  193. "__type__": "cc.Camera",
  194. "_name": "",
  195. "_objFlags": 0,
  196. "__editorExtras__": {},
  197. "node": {
  198. "__id__": 3
  199. },
  200. "_enabled": true,
  201. "__prefab": null,
  202. "_projection": 0,
  203. "_priority": 0,
  204. "_fov": 45,
  205. "_fovAxis": 0,
  206. "_orthoHeight": 640,
  207. "_near": 0,
  208. "_far": 1000,
  209. "_color": {
  210. "__type__": "cc.Color",
  211. "r": 0,
  212. "g": 0,
  213. "b": 0,
  214. "a": 255
  215. },
  216. "_depth": 1,
  217. "_stencil": 0,
  218. "_clearFlags": 7,
  219. "_rect": {
  220. "__type__": "cc.Rect",
  221. "x": 0,
  222. "y": 0,
  223. "width": 1,
  224. "height": 1
  225. },
  226. "_aperture": 19,
  227. "_shutter": 7,
  228. "_iso": 0,
  229. "_screenScale": 1,
  230. "_visibility": 1108344832,
  231. "_targetTexture": null,
  232. "_postProcess": null,
  233. "_usePostProcess": false,
  234. "_cameraType": -1,
  235. "_trackingType": 0,
  236. "_id": "63WIch3o5BEYRlXzTT0oWc"
  237. },
  238. {
  239. "__type__": "cc.Node",
  240. "_name": "bg",
  241. "_objFlags": 0,
  242. "__editorExtras__": {},
  243. "_parent": {
  244. "__id__": 2
  245. },
  246. "_children": [],
  247. "_active": true,
  248. "_components": [
  249. {
  250. "__id__": 6
  251. },
  252. {
  253. "__id__": 7
  254. },
  255. {
  256. "__id__": 8
  257. }
  258. ],
  259. "_prefab": null,
  260. "_lpos": {
  261. "__type__": "cc.Vec3",
  262. "x": 0,
  263. "y": 0,
  264. "z": 0
  265. },
  266. "_lrot": {
  267. "__type__": "cc.Quat",
  268. "x": 0,
  269. "y": 0,
  270. "z": 0,
  271. "w": 1
  272. },
  273. "_lscale": {
  274. "__type__": "cc.Vec3",
  275. "x": 1,
  276. "y": 1,
  277. "z": 1
  278. },
  279. "_mobility": 0,
  280. "_layer": 33554432,
  281. "_euler": {
  282. "__type__": "cc.Vec3",
  283. "x": 0,
  284. "y": 0,
  285. "z": 0
  286. },
  287. "_id": "60Ci1Sy8lEcYvh1I7I0CI4"
  288. },
  289. {
  290. "__type__": "cc.UITransform",
  291. "_name": "",
  292. "_objFlags": 0,
  293. "__editorExtras__": {},
  294. "node": {
  295. "__id__": 5
  296. },
  297. "_enabled": true,
  298. "__prefab": null,
  299. "_contentSize": {
  300. "__type__": "cc.Size",
  301. "width": 720,
  302. "height": 1280
  303. },
  304. "_anchorPoint": {
  305. "__type__": "cc.Vec2",
  306. "x": 0.5,
  307. "y": 0.5
  308. },
  309. "_id": "14iu7JjzJDmbFy5burE4kX"
  310. },
  311. {
  312. "__type__": "cc.Sprite",
  313. "_name": "",
  314. "_objFlags": 0,
  315. "__editorExtras__": {},
  316. "node": {
  317. "__id__": 5
  318. },
  319. "_enabled": true,
  320. "__prefab": null,
  321. "_customMaterial": null,
  322. "_srcBlendFactor": 2,
  323. "_dstBlendFactor": 4,
  324. "_color": {
  325. "__type__": "cc.Color",
  326. "r": 255,
  327. "g": 255,
  328. "b": 255,
  329. "a": 255
  330. },
  331. "_spriteFrame": {
  332. "__uuid__": "40f98466-ae5b-418f-a192-3dfcd265faa8@f9941",
  333. "__expectedType__": "cc.SpriteFrame"
  334. },
  335. "_type": 0,
  336. "_fillType": 0,
  337. "_sizeMode": 0,
  338. "_fillCenter": {
  339. "__type__": "cc.Vec2",
  340. "x": 0,
  341. "y": 0
  342. },
  343. "_fillStart": 0,
  344. "_fillRange": 0,
  345. "_isTrimmedMode": true,
  346. "_useGrayscale": false,
  347. "_atlas": null,
  348. "_id": "95rT9JfblHUoPUz/i845F/"
  349. },
  350. {
  351. "__type__": "cc.Widget",
  352. "_name": "",
  353. "_objFlags": 0,
  354. "__editorExtras__": {},
  355. "node": {
  356. "__id__": 5
  357. },
  358. "_enabled": true,
  359. "__prefab": null,
  360. "_alignFlags": 45,
  361. "_target": null,
  362. "_left": 0,
  363. "_right": 0,
  364. "_top": 0,
  365. "_bottom": 0,
  366. "_horizontalCenter": 0,
  367. "_verticalCenter": 0,
  368. "_isAbsLeft": true,
  369. "_isAbsRight": true,
  370. "_isAbsTop": true,
  371. "_isAbsBottom": true,
  372. "_isAbsHorizontalCenter": true,
  373. "_isAbsVerticalCenter": true,
  374. "_originalWidth": 720,
  375. "_originalHeight": 1280,
  376. "_alignMode": 2,
  377. "_lockFlags": 0,
  378. "_id": "8bUSKrKjpFnYt3WG+iY1ff"
  379. },
  380. {
  381. "__type__": "cc.Node",
  382. "_name": "Logo",
  383. "_objFlags": 0,
  384. "__editorExtras__": {},
  385. "_parent": {
  386. "__id__": 2
  387. },
  388. "_children": [],
  389. "_active": true,
  390. "_components": [
  391. {
  392. "__id__": 10
  393. },
  394. {
  395. "__id__": 11
  396. },
  397. {
  398. "__id__": 12
  399. }
  400. ],
  401. "_prefab": null,
  402. "_lpos": {
  403. "__type__": "cc.Vec3",
  404. "x": 0,
  405. "y": 374.028,
  406. "z": 0
  407. },
  408. "_lrot": {
  409. "__type__": "cc.Quat",
  410. "x": 0,
  411. "y": 0,
  412. "z": 0,
  413. "w": 1
  414. },
  415. "_lscale": {
  416. "__type__": "cc.Vec3",
  417. "x": 1.3,
  418. "y": 1.3,
  419. "z": 1
  420. },
  421. "_mobility": 0,
  422. "_layer": 33554432,
  423. "_euler": {
  424. "__type__": "cc.Vec3",
  425. "x": 0,
  426. "y": 0,
  427. "z": 0
  428. },
  429. "_id": "9fCxNw/Y9B3aS4UOJxZDOH"
  430. },
  431. {
  432. "__type__": "cc.UITransform",
  433. "_name": "",
  434. "_objFlags": 0,
  435. "__editorExtras__": {},
  436. "node": {
  437. "__id__": 9
  438. },
  439. "_enabled": true,
  440. "__prefab": null,
  441. "_contentSize": {
  442. "__type__": "cc.Size",
  443. "width": 361,
  444. "height": 72
  445. },
  446. "_anchorPoint": {
  447. "__type__": "cc.Vec2",
  448. "x": 0.5,
  449. "y": 0.5
  450. },
  451. "_id": "13e8nUHIZMg7ncvq9AAzP7"
  452. },
  453. {
  454. "__type__": "cc.Sprite",
  455. "_name": "",
  456. "_objFlags": 0,
  457. "__editorExtras__": {},
  458. "node": {
  459. "__id__": 9
  460. },
  461. "_enabled": true,
  462. "__prefab": null,
  463. "_customMaterial": null,
  464. "_srcBlendFactor": 2,
  465. "_dstBlendFactor": 4,
  466. "_color": {
  467. "__type__": "cc.Color",
  468. "r": 255,
  469. "g": 255,
  470. "b": 255,
  471. "a": 255
  472. },
  473. "_spriteFrame": {
  474. "__uuid__": "0d2f3e18-d70d-4fc2-a54c-f00327999f5c@f9941",
  475. "__expectedType__": "cc.SpriteFrame"
  476. },
  477. "_type": 0,
  478. "_fillType": 0,
  479. "_sizeMode": 1,
  480. "_fillCenter": {
  481. "__type__": "cc.Vec2",
  482. "x": 0,
  483. "y": 0
  484. },
  485. "_fillStart": 0,
  486. "_fillRange": 0,
  487. "_isTrimmedMode": true,
  488. "_useGrayscale": false,
  489. "_atlas": null,
  490. "_id": "9dXiIN7k1HTpCkAGh566BQ"
  491. },
  492. {
  493. "__type__": "cc.Widget",
  494. "_name": "",
  495. "_objFlags": 0,
  496. "__editorExtras__": {},
  497. "node": {
  498. "__id__": 9
  499. },
  500. "_enabled": true,
  501. "__prefab": null,
  502. "_alignFlags": 1,
  503. "_target": null,
  504. "_left": 0,
  505. "_right": 0,
  506. "_top": 219.17199999999997,
  507. "_bottom": 0,
  508. "_horizontalCenter": 0,
  509. "_verticalCenter": 0,
  510. "_isAbsLeft": true,
  511. "_isAbsRight": true,
  512. "_isAbsTop": true,
  513. "_isAbsBottom": true,
  514. "_isAbsHorizontalCenter": true,
  515. "_isAbsVerticalCenter": true,
  516. "_originalWidth": 0,
  517. "_originalHeight": 0,
  518. "_alignMode": 2,
  519. "_lockFlags": 0,
  520. "_id": "b5v4c2OUBMuIuHzdQX1/dA"
  521. },
  522. {
  523. "__type__": "cc.Node",
  524. "_name": "tips",
  525. "_objFlags": 0,
  526. "__editorExtras__": {},
  527. "_parent": {
  528. "__id__": 2
  529. },
  530. "_children": [
  531. {
  532. "__id__": 14
  533. }
  534. ],
  535. "_active": true,
  536. "_components": [
  537. {
  538. "__id__": 17
  539. },
  540. {
  541. "__id__": 18
  542. },
  543. {
  544. "__id__": 19
  545. }
  546. ],
  547. "_prefab": null,
  548. "_lpos": {
  549. "__type__": "cc.Vec3",
  550. "x": 0,
  551. "y": -426.844,
  552. "z": 0
  553. },
  554. "_lrot": {
  555. "__type__": "cc.Quat",
  556. "x": 0,
  557. "y": 0,
  558. "z": 0,
  559. "w": 1
  560. },
  561. "_lscale": {
  562. "__type__": "cc.Vec3",
  563. "x": 1,
  564. "y": 1,
  565. "z": 1
  566. },
  567. "_mobility": 0,
  568. "_layer": 33554432,
  569. "_euler": {
  570. "__type__": "cc.Vec3",
  571. "x": 0,
  572. "y": 0,
  573. "z": 0
  574. },
  575. "_id": "29icX17R1IkIUEyONb1hSw"
  576. },
  577. {
  578. "__type__": "cc.Node",
  579. "_name": "Label",
  580. "_objFlags": 0,
  581. "__editorExtras__": {},
  582. "_parent": {
  583. "__id__": 13
  584. },
  585. "_children": [],
  586. "_active": true,
  587. "_components": [
  588. {
  589. "__id__": 15
  590. },
  591. {
  592. "__id__": 16
  593. }
  594. ],
  595. "_prefab": null,
  596. "_lpos": {
  597. "__type__": "cc.Vec3",
  598. "x": 0,
  599. "y": 0,
  600. "z": 0
  601. },
  602. "_lrot": {
  603. "__type__": "cc.Quat",
  604. "x": 0,
  605. "y": 0,
  606. "z": 0,
  607. "w": 1
  608. },
  609. "_lscale": {
  610. "__type__": "cc.Vec3",
  611. "x": 1,
  612. "y": 1,
  613. "z": 1
  614. },
  615. "_mobility": 0,
  616. "_layer": 33554432,
  617. "_euler": {
  618. "__type__": "cc.Vec3",
  619. "x": 0,
  620. "y": 0,
  621. "z": 0
  622. },
  623. "_id": "d43ph4GDZNqbxA+zZOi6pW"
  624. },
  625. {
  626. "__type__": "cc.UITransform",
  627. "_name": "",
  628. "_objFlags": 0,
  629. "__editorExtras__": {},
  630. "node": {
  631. "__id__": 14
  632. },
  633. "_enabled": true,
  634. "__prefab": null,
  635. "_contentSize": {
  636. "__type__": "cc.Size",
  637. "width": 320,
  638. "height": 50.4
  639. },
  640. "_anchorPoint": {
  641. "__type__": "cc.Vec2",
  642. "x": 0.5,
  643. "y": 0.5
  644. },
  645. "_id": "feQ4/kLONGRohaK5YsRi9Z"
  646. },
  647. {
  648. "__type__": "cc.Label",
  649. "_name": "",
  650. "_objFlags": 0,
  651. "__editorExtras__": {},
  652. "node": {
  653. "__id__": 14
  654. },
  655. "_enabled": true,
  656. "__prefab": null,
  657. "_customMaterial": null,
  658. "_srcBlendFactor": 2,
  659. "_dstBlendFactor": 4,
  660. "_color": {
  661. "__type__": "cc.Color",
  662. "r": 0,
  663. "g": 0,
  664. "b": 0,
  665. "a": 255
  666. },
  667. "_string": "点击屏幕左右两边控制小球左右移动",
  668. "_horizontalAlign": 1,
  669. "_verticalAlign": 1,
  670. "_actualFontSize": 20,
  671. "_fontSize": 20,
  672. "_fontFamily": "Arial",
  673. "_lineHeight": 40,
  674. "_overflow": 0,
  675. "_enableWrapText": true,
  676. "_font": null,
  677. "_isSystemFontUsed": true,
  678. "_spacingX": 0,
  679. "_isItalic": false,
  680. "_isBold": true,
  681. "_isUnderline": false,
  682. "_underlineHeight": 2,
  683. "_cacheMode": 0,
  684. "_enableOutline": false,
  685. "_outlineColor": {
  686. "__type__": "cc.Color",
  687. "r": 0,
  688. "g": 0,
  689. "b": 0,
  690. "a": 255
  691. },
  692. "_outlineWidth": 2,
  693. "_enableShadow": false,
  694. "_shadowColor": {
  695. "__type__": "cc.Color",
  696. "r": 0,
  697. "g": 0,
  698. "b": 0,
  699. "a": 255
  700. },
  701. "_shadowOffset": {
  702. "__type__": "cc.Vec2",
  703. "x": 2,
  704. "y": 2
  705. },
  706. "_shadowBlur": 2,
  707. "_id": "f6/Va+9hxLVbtzrm998og6"
  708. },
  709. {
  710. "__type__": "cc.UITransform",
  711. "_name": "",
  712. "_objFlags": 0,
  713. "__editorExtras__": {},
  714. "node": {
  715. "__id__": 13
  716. },
  717. "_enabled": true,
  718. "__prefab": null,
  719. "_contentSize": {
  720. "__type__": "cc.Size",
  721. "width": 540,
  722. "height": 48
  723. },
  724. "_anchorPoint": {
  725. "__type__": "cc.Vec2",
  726. "x": 0.5,
  727. "y": 0.5
  728. },
  729. "_id": "920xj7P5JMNro+svUz/06V"
  730. },
  731. {
  732. "__type__": "cc.Sprite",
  733. "_name": "",
  734. "_objFlags": 0,
  735. "__editorExtras__": {},
  736. "node": {
  737. "__id__": 13
  738. },
  739. "_enabled": true,
  740. "__prefab": null,
  741. "_customMaterial": null,
  742. "_srcBlendFactor": 2,
  743. "_dstBlendFactor": 4,
  744. "_color": {
  745. "__type__": "cc.Color",
  746. "r": 255,
  747. "g": 255,
  748. "b": 255,
  749. "a": 255
  750. },
  751. "_spriteFrame": {
  752. "__uuid__": "2e9e42b0-8fdd-4674-8031-bccc8163dbfa@f9941",
  753. "__expectedType__": "cc.SpriteFrame"
  754. },
  755. "_type": 0,
  756. "_fillType": 0,
  757. "_sizeMode": 1,
  758. "_fillCenter": {
  759. "__type__": "cc.Vec2",
  760. "x": 0,
  761. "y": 0
  762. },
  763. "_fillStart": 0,
  764. "_fillRange": 0,
  765. "_isTrimmedMode": true,
  766. "_useGrayscale": false,
  767. "_atlas": null,
  768. "_id": "e135yiEsxOaKCSXIPg1rSs"
  769. },
  770. {
  771. "__type__": "cc.Widget",
  772. "_name": "",
  773. "_objFlags": 0,
  774. "__editorExtras__": {},
  775. "node": {
  776. "__id__": 13
  777. },
  778. "_enabled": true,
  779. "__prefab": null,
  780. "_alignFlags": 4,
  781. "_target": null,
  782. "_left": 0,
  783. "_right": 0,
  784. "_top": 0,
  785. "_bottom": 189.156,
  786. "_horizontalCenter": 0,
  787. "_verticalCenter": 0,
  788. "_isAbsLeft": true,
  789. "_isAbsRight": true,
  790. "_isAbsTop": true,
  791. "_isAbsBottom": true,
  792. "_isAbsHorizontalCenter": true,
  793. "_isAbsVerticalCenter": true,
  794. "_originalWidth": 0,
  795. "_originalHeight": 0,
  796. "_alignMode": 2,
  797. "_lockFlags": 0,
  798. "_id": "62l4k2dgFIaaGd4zqDXAqs"
  799. },
  800. {
  801. "__type__": "cc.Node",
  802. "_name": "image",
  803. "_objFlags": 0,
  804. "__editorExtras__": {},
  805. "_parent": {
  806. "__id__": 2
  807. },
  808. "_children": [],
  809. "_active": true,
  810. "_components": [
  811. {
  812. "__id__": 21
  813. },
  814. {
  815. "__id__": 22
  816. },
  817. {
  818. "__id__": 23
  819. }
  820. ],
  821. "_prefab": null,
  822. "_lpos": {
  823. "__type__": "cc.Vec3",
  824. "x": 0,
  825. "y": 203.39999999999998,
  826. "z": 0
  827. },
  828. "_lrot": {
  829. "__type__": "cc.Quat",
  830. "x": 0,
  831. "y": 0,
  832. "z": 0,
  833. "w": 1
  834. },
  835. "_lscale": {
  836. "__type__": "cc.Vec3",
  837. "x": 1.3,
  838. "y": 1.3,
  839. "z": 1
  840. },
  841. "_mobility": 0,
  842. "_layer": 33554432,
  843. "_euler": {
  844. "__type__": "cc.Vec3",
  845. "x": 0,
  846. "y": 0,
  847. "z": 0
  848. },
  849. "_id": "f3C1uns0xLlpX9xNje/XUu"
  850. },
  851. {
  852. "__type__": "cc.UITransform",
  853. "_name": "",
  854. "_objFlags": 0,
  855. "__editorExtras__": {},
  856. "node": {
  857. "__id__": 20
  858. },
  859. "_enabled": true,
  860. "__prefab": null,
  861. "_contentSize": {
  862. "__type__": "cc.Size",
  863. "width": 285,
  864. "height": 65
  865. },
  866. "_anchorPoint": {
  867. "__type__": "cc.Vec2",
  868. "x": 0.5,
  869. "y": 0.5
  870. },
  871. "_id": "dfSTH+2gdK0oxuz2aTKKIP"
  872. },
  873. {
  874. "__type__": "cc.Sprite",
  875. "_name": "",
  876. "_objFlags": 0,
  877. "__editorExtras__": {},
  878. "node": {
  879. "__id__": 20
  880. },
  881. "_enabled": true,
  882. "__prefab": null,
  883. "_customMaterial": null,
  884. "_srcBlendFactor": 2,
  885. "_dstBlendFactor": 4,
  886. "_color": {
  887. "__type__": "cc.Color",
  888. "r": 255,
  889. "g": 255,
  890. "b": 255,
  891. "a": 255
  892. },
  893. "_spriteFrame": {
  894. "__uuid__": "751f5df0-8275-486e-8b56-93564bab36ea@f9941",
  895. "__expectedType__": "cc.SpriteFrame"
  896. },
  897. "_type": 0,
  898. "_fillType": 0,
  899. "_sizeMode": 1,
  900. "_fillCenter": {
  901. "__type__": "cc.Vec2",
  902. "x": 0,
  903. "y": 0
  904. },
  905. "_fillStart": 0,
  906. "_fillRange": 0,
  907. "_isTrimmedMode": true,
  908. "_useGrayscale": false,
  909. "_atlas": null,
  910. "_id": "04A4LY1r1Lx4JG6KLgNfBM"
  911. },
  912. {
  913. "__type__": "cc.Widget",
  914. "_name": "",
  915. "_objFlags": 0,
  916. "__editorExtras__": {},
  917. "node": {
  918. "__id__": 20
  919. },
  920. "_enabled": true,
  921. "__prefab": null,
  922. "_alignFlags": 1,
  923. "_target": null,
  924. "_left": 0,
  925. "_right": 0,
  926. "_top": 394.35,
  927. "_bottom": 0,
  928. "_horizontalCenter": 0,
  929. "_verticalCenter": 0,
  930. "_isAbsLeft": true,
  931. "_isAbsRight": true,
  932. "_isAbsTop": true,
  933. "_isAbsBottom": true,
  934. "_isAbsHorizontalCenter": true,
  935. "_isAbsVerticalCenter": true,
  936. "_originalWidth": 0,
  937. "_originalHeight": 0,
  938. "_alignMode": 2,
  939. "_lockFlags": 0,
  940. "_id": "ceDs4bO8lKPJyqj4uPymlF"
  941. },
  942. {
  943. "__type__": "cc.Node",
  944. "_name": "RankBtn",
  945. "_objFlags": 0,
  946. "__editorExtras__": {},
  947. "_parent": {
  948. "__id__": 2
  949. },
  950. "_children": [],
  951. "_active": true,
  952. "_components": [
  953. {
  954. "__id__": 25
  955. },
  956. {
  957. "__id__": 26
  958. },
  959. {
  960. "__id__": 27
  961. },
  962. {
  963. "__id__": 28
  964. }
  965. ],
  966. "_prefab": null,
  967. "_lpos": {
  968. "__type__": "cc.Vec3",
  969. "x": -291.774,
  970. "y": -107.976,
  971. "z": 0
  972. },
  973. "_lrot": {
  974. "__type__": "cc.Quat",
  975. "x": 0,
  976. "y": 0,
  977. "z": 0,
  978. "w": 1
  979. },
  980. "_lscale": {
  981. "__type__": "cc.Vec3",
  982. "x": 1.3,
  983. "y": 1.3,
  984. "z": 1
  985. },
  986. "_mobility": 0,
  987. "_layer": 33554432,
  988. "_euler": {
  989. "__type__": "cc.Vec3",
  990. "x": 0,
  991. "y": 0,
  992. "z": 0
  993. },
  994. "_id": "3dp3vyBJtA6IUVDrQb7WxP"
  995. },
  996. {
  997. "__type__": "cc.UITransform",
  998. "_name": "",
  999. "_objFlags": 0,
  1000. "__editorExtras__": {},
  1001. "node": {
  1002. "__id__": 24
  1003. },
  1004. "_enabled": true,
  1005. "__prefab": null,
  1006. "_contentSize": {
  1007. "__type__": "cc.Size",
  1008. "width": 70,
  1009. "height": 70
  1010. },
  1011. "_anchorPoint": {
  1012. "__type__": "cc.Vec2",
  1013. "x": 0.5,
  1014. "y": 0.5
  1015. },
  1016. "_id": "74dVd6gQ5Io7/D9i+7IRMb"
  1017. },
  1018. {
  1019. "__type__": "cc.Sprite",
  1020. "_name": "",
  1021. "_objFlags": 0,
  1022. "__editorExtras__": {},
  1023. "node": {
  1024. "__id__": 24
  1025. },
  1026. "_enabled": true,
  1027. "__prefab": null,
  1028. "_customMaterial": null,
  1029. "_srcBlendFactor": 2,
  1030. "_dstBlendFactor": 4,
  1031. "_color": {
  1032. "__type__": "cc.Color",
  1033. "r": 255,
  1034. "g": 255,
  1035. "b": 255,
  1036. "a": 255
  1037. },
  1038. "_spriteFrame": {
  1039. "__uuid__": "76eb05af-f0bd-4b82-9da0-0422e8947ac8@f9941",
  1040. "__expectedType__": "cc.SpriteFrame"
  1041. },
  1042. "_type": 0,
  1043. "_fillType": 0,
  1044. "_sizeMode": 1,
  1045. "_fillCenter": {
  1046. "__type__": "cc.Vec2",
  1047. "x": 0,
  1048. "y": 0
  1049. },
  1050. "_fillStart": 0,
  1051. "_fillRange": 0,
  1052. "_isTrimmedMode": true,
  1053. "_useGrayscale": false,
  1054. "_atlas": null,
  1055. "_id": "4dvxfjMIZHWbc9EbKblYLZ"
  1056. },
  1057. {
  1058. "__type__": "cc.Widget",
  1059. "_name": "",
  1060. "_objFlags": 0,
  1061. "__editorExtras__": {},
  1062. "node": {
  1063. "__id__": 24
  1064. },
  1065. "_enabled": true,
  1066. "__prefab": null,
  1067. "_alignFlags": 1,
  1068. "_target": null,
  1069. "_left": 0,
  1070. "_right": 0,
  1071. "_top": 702.476,
  1072. "_bottom": 0,
  1073. "_horizontalCenter": 0,
  1074. "_verticalCenter": 0,
  1075. "_isAbsLeft": true,
  1076. "_isAbsRight": true,
  1077. "_isAbsTop": true,
  1078. "_isAbsBottom": true,
  1079. "_isAbsHorizontalCenter": true,
  1080. "_isAbsVerticalCenter": true,
  1081. "_originalWidth": 0,
  1082. "_originalHeight": 0,
  1083. "_alignMode": 2,
  1084. "_lockFlags": 0,
  1085. "_id": "09dnfS4ahOyYCToiPltWG6"
  1086. },
  1087. {
  1088. "__type__": "cc.Button",
  1089. "_name": "",
  1090. "_objFlags": 0,
  1091. "__editorExtras__": {},
  1092. "node": {
  1093. "__id__": 24
  1094. },
  1095. "_enabled": true,
  1096. "__prefab": null,
  1097. "clickEvents": [
  1098. {
  1099. "__id__": 29
  1100. }
  1101. ],
  1102. "_interactable": true,
  1103. "_transition": 3,
  1104. "_normalColor": {
  1105. "__type__": "cc.Color",
  1106. "r": 255,
  1107. "g": 255,
  1108. "b": 255,
  1109. "a": 255
  1110. },
  1111. "_hoverColor": {
  1112. "__type__": "cc.Color",
  1113. "r": 211,
  1114. "g": 211,
  1115. "b": 211,
  1116. "a": 255
  1117. },
  1118. "_pressedColor": {
  1119. "__type__": "cc.Color",
  1120. "r": 255,
  1121. "g": 255,
  1122. "b": 255,
  1123. "a": 255
  1124. },
  1125. "_disabledColor": {
  1126. "__type__": "cc.Color",
  1127. "r": 124,
  1128. "g": 124,
  1129. "b": 124,
  1130. "a": 255
  1131. },
  1132. "_normalSprite": null,
  1133. "_hoverSprite": null,
  1134. "_pressedSprite": null,
  1135. "_disabledSprite": null,
  1136. "_duration": 0.1,
  1137. "_zoomScale": 1.05,
  1138. "_target": null,
  1139. "_id": "a0QiUqFpBN1JH+t/9wmGgZ"
  1140. },
  1141. {
  1142. "__type__": "cc.ClickEvent",
  1143. "target": {
  1144. "__id__": 2
  1145. },
  1146. "component": "",
  1147. "_componentId": "f844ftp60pCEp9kVQoHbs1G",
  1148. "handler": "ClickRank",
  1149. "customEventData": ""
  1150. },
  1151. {
  1152. "__type__": "cc.Node",
  1153. "_name": "Set",
  1154. "_objFlags": 0,
  1155. "__editorExtras__": {},
  1156. "_parent": {
  1157. "__id__": 2
  1158. },
  1159. "_children": [],
  1160. "_active": true,
  1161. "_components": [
  1162. {
  1163. "__id__": 31
  1164. },
  1165. {
  1166. "__id__": 32
  1167. },
  1168. {
  1169. "__id__": 33
  1170. },
  1171. {
  1172. "__id__": 34
  1173. }
  1174. ],
  1175. "_prefab": null,
  1176. "_lpos": {
  1177. "__type__": "cc.Vec3",
  1178. "x": -291.774,
  1179. "y": 47.75,
  1180. "z": 0
  1181. },
  1182. "_lrot": {
  1183. "__type__": "cc.Quat",
  1184. "x": 0,
  1185. "y": 0,
  1186. "z": 0,
  1187. "w": 1
  1188. },
  1189. "_lscale": {
  1190. "__type__": "cc.Vec3",
  1191. "x": 1.3,
  1192. "y": 1.3,
  1193. "z": 1
  1194. },
  1195. "_mobility": 0,
  1196. "_layer": 33554432,
  1197. "_euler": {
  1198. "__type__": "cc.Vec3",
  1199. "x": 0,
  1200. "y": 0,
  1201. "z": 0
  1202. },
  1203. "_id": "e9+vI+qz5Gjb3633GyPFkf"
  1204. },
  1205. {
  1206. "__type__": "cc.UITransform",
  1207. "_name": "",
  1208. "_objFlags": 0,
  1209. "__editorExtras__": {},
  1210. "node": {
  1211. "__id__": 30
  1212. },
  1213. "_enabled": true,
  1214. "__prefab": null,
  1215. "_contentSize": {
  1216. "__type__": "cc.Size",
  1217. "width": 70,
  1218. "height": 70
  1219. },
  1220. "_anchorPoint": {
  1221. "__type__": "cc.Vec2",
  1222. "x": 0.5,
  1223. "y": 0.5
  1224. },
  1225. "_id": "f5YXrqH9NF86527DcEhKWF"
  1226. },
  1227. {
  1228. "__type__": "cc.Sprite",
  1229. "_name": "",
  1230. "_objFlags": 0,
  1231. "__editorExtras__": {},
  1232. "node": {
  1233. "__id__": 30
  1234. },
  1235. "_enabled": true,
  1236. "__prefab": null,
  1237. "_customMaterial": null,
  1238. "_srcBlendFactor": 2,
  1239. "_dstBlendFactor": 4,
  1240. "_color": {
  1241. "__type__": "cc.Color",
  1242. "r": 255,
  1243. "g": 255,
  1244. "b": 255,
  1245. "a": 255
  1246. },
  1247. "_spriteFrame": {
  1248. "__uuid__": "e1c2e056-a650-46ad-a58e-89034dd350c8@f9941",
  1249. "__expectedType__": "cc.SpriteFrame"
  1250. },
  1251. "_type": 0,
  1252. "_fillType": 0,
  1253. "_sizeMode": 1,
  1254. "_fillCenter": {
  1255. "__type__": "cc.Vec2",
  1256. "x": 0,
  1257. "y": 0
  1258. },
  1259. "_fillStart": 0,
  1260. "_fillRange": 0,
  1261. "_isTrimmedMode": true,
  1262. "_useGrayscale": false,
  1263. "_atlas": null,
  1264. "_id": "c5tUL58X5NMbB+7SqSGifs"
  1265. },
  1266. {
  1267. "__type__": "cc.Widget",
  1268. "_name": "",
  1269. "_objFlags": 0,
  1270. "__editorExtras__": {},
  1271. "node": {
  1272. "__id__": 30
  1273. },
  1274. "_enabled": true,
  1275. "__prefab": null,
  1276. "_alignFlags": 1,
  1277. "_target": null,
  1278. "_left": 0,
  1279. "_right": 0,
  1280. "_top": 546.75,
  1281. "_bottom": 0,
  1282. "_horizontalCenter": 0,
  1283. "_verticalCenter": 0,
  1284. "_isAbsLeft": true,
  1285. "_isAbsRight": true,
  1286. "_isAbsTop": true,
  1287. "_isAbsBottom": true,
  1288. "_isAbsHorizontalCenter": true,
  1289. "_isAbsVerticalCenter": true,
  1290. "_originalWidth": 0,
  1291. "_originalHeight": 0,
  1292. "_alignMode": 2,
  1293. "_lockFlags": 0,
  1294. "_id": "aaE6LeZEVEwY0zZfDlUQ1A"
  1295. },
  1296. {
  1297. "__type__": "cc.Button",
  1298. "_name": "",
  1299. "_objFlags": 0,
  1300. "__editorExtras__": {},
  1301. "node": {
  1302. "__id__": 30
  1303. },
  1304. "_enabled": true,
  1305. "__prefab": null,
  1306. "clickEvents": [
  1307. {
  1308. "__id__": 35
  1309. }
  1310. ],
  1311. "_interactable": true,
  1312. "_transition": 3,
  1313. "_normalColor": {
  1314. "__type__": "cc.Color",
  1315. "r": 255,
  1316. "g": 255,
  1317. "b": 255,
  1318. "a": 255
  1319. },
  1320. "_hoverColor": {
  1321. "__type__": "cc.Color",
  1322. "r": 211,
  1323. "g": 211,
  1324. "b": 211,
  1325. "a": 255
  1326. },
  1327. "_pressedColor": {
  1328. "__type__": "cc.Color",
  1329. "r": 255,
  1330. "g": 255,
  1331. "b": 255,
  1332. "a": 255
  1333. },
  1334. "_disabledColor": {
  1335. "__type__": "cc.Color",
  1336. "r": 124,
  1337. "g": 124,
  1338. "b": 124,
  1339. "a": 255
  1340. },
  1341. "_normalSprite": null,
  1342. "_hoverSprite": null,
  1343. "_pressedSprite": null,
  1344. "_disabledSprite": null,
  1345. "_duration": 0.1,
  1346. "_zoomScale": 1.05,
  1347. "_target": null,
  1348. "_id": "c9zKKjp3tN3LOEM3lgc/rL"
  1349. },
  1350. {
  1351. "__type__": "cc.ClickEvent",
  1352. "target": {
  1353. "__id__": 2
  1354. },
  1355. "component": "",
  1356. "_componentId": "f844ftp60pCEp9kVQoHbs1G",
  1357. "handler": "ClickSet",
  1358. "customEventData": ""
  1359. },
  1360. {
  1361. "__type__": "cc.Node",
  1362. "_name": "Start",
  1363. "_objFlags": 0,
  1364. "__editorExtras__": {},
  1365. "_parent": {
  1366. "__id__": 2
  1367. },
  1368. "_children": [],
  1369. "_active": true,
  1370. "_components": [
  1371. {
  1372. "__id__": 37
  1373. },
  1374. {
  1375. "__id__": 38
  1376. },
  1377. {
  1378. "__id__": 39
  1379. },
  1380. {
  1381. "__id__": 40
  1382. }
  1383. ],
  1384. "_prefab": null,
  1385. "_lpos": {
  1386. "__type__": "cc.Vec3",
  1387. "x": 0,
  1388. "y": -285.65599999999995,
  1389. "z": 0
  1390. },
  1391. "_lrot": {
  1392. "__type__": "cc.Quat",
  1393. "x": 0,
  1394. "y": 0,
  1395. "z": 0,
  1396. "w": 1
  1397. },
  1398. "_lscale": {
  1399. "__type__": "cc.Vec3",
  1400. "x": 1.3,
  1401. "y": 1.3,
  1402. "z": 1
  1403. },
  1404. "_mobility": 0,
  1405. "_layer": 33554432,
  1406. "_euler": {
  1407. "__type__": "cc.Vec3",
  1408. "x": 0,
  1409. "y": 0,
  1410. "z": 0
  1411. },
  1412. "_id": "c1F/bzsP9B+aegVJpQPaVr"
  1413. },
  1414. {
  1415. "__type__": "cc.UITransform",
  1416. "_name": "",
  1417. "_objFlags": 0,
  1418. "__editorExtras__": {},
  1419. "node": {
  1420. "__id__": 36
  1421. },
  1422. "_enabled": true,
  1423. "__prefab": null,
  1424. "_contentSize": {
  1425. "__type__": "cc.Size",
  1426. "width": 235,
  1427. "height": 76
  1428. },
  1429. "_anchorPoint": {
  1430. "__type__": "cc.Vec2",
  1431. "x": 0.5,
  1432. "y": 0.5
  1433. },
  1434. "_id": "28Z1a/TM1FophotKUkBkqG"
  1435. },
  1436. {
  1437. "__type__": "cc.Sprite",
  1438. "_name": "",
  1439. "_objFlags": 0,
  1440. "__editorExtras__": {},
  1441. "node": {
  1442. "__id__": 36
  1443. },
  1444. "_enabled": true,
  1445. "__prefab": null,
  1446. "_customMaterial": null,
  1447. "_srcBlendFactor": 2,
  1448. "_dstBlendFactor": 4,
  1449. "_color": {
  1450. "__type__": "cc.Color",
  1451. "r": 255,
  1452. "g": 255,
  1453. "b": 255,
  1454. "a": 255
  1455. },
  1456. "_spriteFrame": {
  1457. "__uuid__": "cbd1190a-9eea-4853-830a-d871b12ac34f@f9941",
  1458. "__expectedType__": "cc.SpriteFrame"
  1459. },
  1460. "_type": 0,
  1461. "_fillType": 0,
  1462. "_sizeMode": 1,
  1463. "_fillCenter": {
  1464. "__type__": "cc.Vec2",
  1465. "x": 0,
  1466. "y": 0
  1467. },
  1468. "_fillStart": 0,
  1469. "_fillRange": 0,
  1470. "_isTrimmedMode": true,
  1471. "_useGrayscale": false,
  1472. "_atlas": null,
  1473. "_id": "0eyN94ouJBV5juCfnIKIaZ"
  1474. },
  1475. {
  1476. "__type__": "cc.Widget",
  1477. "_name": "",
  1478. "_objFlags": 0,
  1479. "__editorExtras__": {},
  1480. "node": {
  1481. "__id__": 36
  1482. },
  1483. "_enabled": true,
  1484. "__prefab": null,
  1485. "_alignFlags": 4,
  1486. "_target": null,
  1487. "_left": 0,
  1488. "_right": 0,
  1489. "_top": 876.256,
  1490. "_bottom": 304.9440000000001,
  1491. "_horizontalCenter": 0,
  1492. "_verticalCenter": 0,
  1493. "_isAbsLeft": true,
  1494. "_isAbsRight": true,
  1495. "_isAbsTop": true,
  1496. "_isAbsBottom": true,
  1497. "_isAbsHorizontalCenter": true,
  1498. "_isAbsVerticalCenter": true,
  1499. "_originalWidth": 0,
  1500. "_originalHeight": 0,
  1501. "_alignMode": 2,
  1502. "_lockFlags": 0,
  1503. "_id": "34ZAOG2XpHKazVf9agUQpy"
  1504. },
  1505. {
  1506. "__type__": "cc.Button",
  1507. "_name": "",
  1508. "_objFlags": 0,
  1509. "__editorExtras__": {},
  1510. "node": {
  1511. "__id__": 36
  1512. },
  1513. "_enabled": true,
  1514. "__prefab": null,
  1515. "clickEvents": [
  1516. {
  1517. "__id__": 41
  1518. }
  1519. ],
  1520. "_interactable": true,
  1521. "_transition": 3,
  1522. "_normalColor": {
  1523. "__type__": "cc.Color",
  1524. "r": 255,
  1525. "g": 255,
  1526. "b": 255,
  1527. "a": 255
  1528. },
  1529. "_hoverColor": {
  1530. "__type__": "cc.Color",
  1531. "r": 211,
  1532. "g": 211,
  1533. "b": 211,
  1534. "a": 255
  1535. },
  1536. "_pressedColor": {
  1537. "__type__": "cc.Color",
  1538. "r": 255,
  1539. "g": 255,
  1540. "b": 255,
  1541. "a": 255
  1542. },
  1543. "_disabledColor": {
  1544. "__type__": "cc.Color",
  1545. "r": 124,
  1546. "g": 124,
  1547. "b": 124,
  1548. "a": 255
  1549. },
  1550. "_normalSprite": null,
  1551. "_hoverSprite": null,
  1552. "_pressedSprite": null,
  1553. "_disabledSprite": null,
  1554. "_duration": 0.1,
  1555. "_zoomScale": 1.05,
  1556. "_target": null,
  1557. "_id": "7couZlx2BLz7hi4GBl2sB0"
  1558. },
  1559. {
  1560. "__type__": "cc.ClickEvent",
  1561. "target": {
  1562. "__id__": 2
  1563. },
  1564. "component": "",
  1565. "_componentId": "f844ftp60pCEp9kVQoHbs1G",
  1566. "handler": "ClickGame",
  1567. "customEventData": ""
  1568. },
  1569. {
  1570. "__type__": "cc.Node",
  1571. "_name": "Slider",
  1572. "_objFlags": 0,
  1573. "__editorExtras__": {},
  1574. "_parent": {
  1575. "__id__": 2
  1576. },
  1577. "_children": [
  1578. {
  1579. "__id__": 43
  1580. },
  1581. {
  1582. "__id__": 49
  1583. }
  1584. ],
  1585. "_active": true,
  1586. "_components": [
  1587. {
  1588. "__id__": 52
  1589. },
  1590. {
  1591. "__id__": 53
  1592. },
  1593. {
  1594. "__id__": 54
  1595. }
  1596. ],
  1597. "_prefab": null,
  1598. "_lpos": {
  1599. "__type__": "cc.Vec3",
  1600. "x": 0,
  1601. "y": -347.543,
  1602. "z": 0
  1603. },
  1604. "_lrot": {
  1605. "__type__": "cc.Quat",
  1606. "x": 0,
  1607. "y": 0,
  1608. "z": 0,
  1609. "w": 1
  1610. },
  1611. "_lscale": {
  1612. "__type__": "cc.Vec3",
  1613. "x": 1.33,
  1614. "y": 1.33,
  1615. "z": 1
  1616. },
  1617. "_mobility": 0,
  1618. "_layer": 33554432,
  1619. "_euler": {
  1620. "__type__": "cc.Vec3",
  1621. "x": 0,
  1622. "y": 0,
  1623. "z": 0
  1624. },
  1625. "_id": "8eCDxkT9pBprSWWkSDrJj4"
  1626. },
  1627. {
  1628. "__type__": "cc.Node",
  1629. "_name": "Slider",
  1630. "_objFlags": 0,
  1631. "__editorExtras__": {},
  1632. "_parent": {
  1633. "__id__": 42
  1634. },
  1635. "_children": [
  1636. {
  1637. "__id__": 44
  1638. }
  1639. ],
  1640. "_active": true,
  1641. "_components": [
  1642. {
  1643. "__id__": 47
  1644. },
  1645. {
  1646. "__id__": 48
  1647. }
  1648. ],
  1649. "_prefab": null,
  1650. "_lpos": {
  1651. "__type__": "cc.Vec3",
  1652. "x": 0,
  1653. "y": 0,
  1654. "z": 0
  1655. },
  1656. "_lrot": {
  1657. "__type__": "cc.Quat",
  1658. "x": 0,
  1659. "y": 0,
  1660. "z": 0,
  1661. "w": 1
  1662. },
  1663. "_lscale": {
  1664. "__type__": "cc.Vec3",
  1665. "x": 1,
  1666. "y": 1,
  1667. "z": 1
  1668. },
  1669. "_mobility": 0,
  1670. "_layer": 33554432,
  1671. "_euler": {
  1672. "__type__": "cc.Vec3",
  1673. "x": 0,
  1674. "y": 0,
  1675. "z": 0
  1676. },
  1677. "_id": "7aaR84reVFc4mtQolACn5s"
  1678. },
  1679. {
  1680. "__type__": "cc.Node",
  1681. "_name": "微信图片_20240828142928@3x",
  1682. "_objFlags": 0,
  1683. "__editorExtras__": {},
  1684. "_parent": {
  1685. "__id__": 43
  1686. },
  1687. "_children": [],
  1688. "_active": true,
  1689. "_components": [
  1690. {
  1691. "__id__": 45
  1692. },
  1693. {
  1694. "__id__": 46
  1695. }
  1696. ],
  1697. "_prefab": null,
  1698. "_lpos": {
  1699. "__type__": "cc.Vec3",
  1700. "x": 0,
  1701. "y": -144.841,
  1702. "z": 0
  1703. },
  1704. "_lrot": {
  1705. "__type__": "cc.Quat",
  1706. "x": 0,
  1707. "y": 0,
  1708. "z": 0,
  1709. "w": 1
  1710. },
  1711. "_lscale": {
  1712. "__type__": "cc.Vec3",
  1713. "x": 0.3,
  1714. "y": 0.3,
  1715. "z": 1
  1716. },
  1717. "_mobility": 0,
  1718. "_layer": 33554432,
  1719. "_euler": {
  1720. "__type__": "cc.Vec3",
  1721. "x": 0,
  1722. "y": 0,
  1723. "z": 0
  1724. },
  1725. "_id": "6e4/zNri1IGpqz5lWlpC7b"
  1726. },
  1727. {
  1728. "__type__": "cc.UITransform",
  1729. "_name": "",
  1730. "_objFlags": 0,
  1731. "__editorExtras__": {},
  1732. "node": {
  1733. "__id__": 44
  1734. },
  1735. "_enabled": true,
  1736. "__prefab": null,
  1737. "_contentSize": {
  1738. "__type__": "cc.Size",
  1739. "width": 1446,
  1740. "height": 312
  1741. },
  1742. "_anchorPoint": {
  1743. "__type__": "cc.Vec2",
  1744. "x": 0.5,
  1745. "y": 0.5
  1746. },
  1747. "_id": "5cUE3//ltLV4E20YiMDO2X"
  1748. },
  1749. {
  1750. "__type__": "cc.Sprite",
  1751. "_name": "",
  1752. "_objFlags": 0,
  1753. "__editorExtras__": {},
  1754. "node": {
  1755. "__id__": 44
  1756. },
  1757. "_enabled": true,
  1758. "__prefab": null,
  1759. "_customMaterial": null,
  1760. "_srcBlendFactor": 2,
  1761. "_dstBlendFactor": 4,
  1762. "_color": {
  1763. "__type__": "cc.Color",
  1764. "r": 255,
  1765. "g": 255,
  1766. "b": 255,
  1767. "a": 255
  1768. },
  1769. "_spriteFrame": {
  1770. "__uuid__": "b73e0091-5ffe-4467-9334-10591425efe5@f9941",
  1771. "__expectedType__": "cc.SpriteFrame"
  1772. },
  1773. "_type": 0,
  1774. "_fillType": 0,
  1775. "_sizeMode": 1,
  1776. "_fillCenter": {
  1777. "__type__": "cc.Vec2",
  1778. "x": 0,
  1779. "y": 0
  1780. },
  1781. "_fillStart": 0,
  1782. "_fillRange": 0,
  1783. "_isTrimmedMode": true,
  1784. "_useGrayscale": false,
  1785. "_atlas": null,
  1786. "_id": "94fGeRXdlEq6AZnW0QkUIv"
  1787. },
  1788. {
  1789. "__type__": "cc.UITransform",
  1790. "_name": "",
  1791. "_objFlags": 0,
  1792. "__editorExtras__": {},
  1793. "node": {
  1794. "__id__": 43
  1795. },
  1796. "_enabled": true,
  1797. "__prefab": null,
  1798. "_contentSize": {
  1799. "__type__": "cc.Size",
  1800. "width": 454,
  1801. "height": 12
  1802. },
  1803. "_anchorPoint": {
  1804. "__type__": "cc.Vec2",
  1805. "x": 0.5,
  1806. "y": 0.5
  1807. },
  1808. "_id": "c3k5rXCqZCa7pu5NnnK0g3"
  1809. },
  1810. {
  1811. "__type__": "cc.Sprite",
  1812. "_name": "",
  1813. "_objFlags": 0,
  1814. "__editorExtras__": {},
  1815. "node": {
  1816. "__id__": 43
  1817. },
  1818. "_enabled": true,
  1819. "__prefab": null,
  1820. "_customMaterial": null,
  1821. "_srcBlendFactor": 2,
  1822. "_dstBlendFactor": 4,
  1823. "_color": {
  1824. "__type__": "cc.Color",
  1825. "r": 255,
  1826. "g": 255,
  1827. "b": 255,
  1828. "a": 255
  1829. },
  1830. "_spriteFrame": {
  1831. "__uuid__": "7c4a106e-7ed8-46d4-8646-4f6e20f2a163@f9941",
  1832. "__expectedType__": "cc.SpriteFrame"
  1833. },
  1834. "_type": 3,
  1835. "_fillType": 0,
  1836. "_sizeMode": 1,
  1837. "_fillCenter": {
  1838. "__type__": "cc.Vec2",
  1839. "x": 0,
  1840. "y": 0
  1841. },
  1842. "_fillStart": 0,
  1843. "_fillRange": 0,
  1844. "_isTrimmedMode": true,
  1845. "_useGrayscale": false,
  1846. "_atlas": null,
  1847. "_id": "8amq2RxAdBBoyl6XiWmG5k"
  1848. },
  1849. {
  1850. "__type__": "cc.Node",
  1851. "_name": "Label",
  1852. "_objFlags": 0,
  1853. "__editorExtras__": {},
  1854. "_parent": {
  1855. "__id__": 42
  1856. },
  1857. "_children": [],
  1858. "_active": true,
  1859. "_components": [
  1860. {
  1861. "__id__": 50
  1862. },
  1863. {
  1864. "__id__": 51
  1865. }
  1866. ],
  1867. "_prefab": null,
  1868. "_lpos": {
  1869. "__type__": "cc.Vec3",
  1870. "x": 0,
  1871. "y": 54.762,
  1872. "z": 0
  1873. },
  1874. "_lrot": {
  1875. "__type__": "cc.Quat",
  1876. "x": 0,
  1877. "y": 0,
  1878. "z": 0,
  1879. "w": 1
  1880. },
  1881. "_lscale": {
  1882. "__type__": "cc.Vec3",
  1883. "x": 1,
  1884. "y": 1,
  1885. "z": 1
  1886. },
  1887. "_mobility": 0,
  1888. "_layer": 33554432,
  1889. "_euler": {
  1890. "__type__": "cc.Vec3",
  1891. "x": 0,
  1892. "y": 0,
  1893. "z": 0
  1894. },
  1895. "_id": "29FUJ9iING+YdTStYNZThZ"
  1896. },
  1897. {
  1898. "__type__": "cc.UITransform",
  1899. "_name": "",
  1900. "_objFlags": 0,
  1901. "__editorExtras__": {},
  1902. "node": {
  1903. "__id__": 49
  1904. },
  1905. "_enabled": true,
  1906. "__prefab": null,
  1907. "_contentSize": {
  1908. "__type__": "cc.Size",
  1909. "width": 291.6796875,
  1910. "height": 50.4
  1911. },
  1912. "_anchorPoint": {
  1913. "__type__": "cc.Vec2",
  1914. "x": 0.5,
  1915. "y": 0.5
  1916. },
  1917. "_id": "70sZrBEIVL8ohzWRar+xUD"
  1918. },
  1919. {
  1920. "__type__": "cc.Label",
  1921. "_name": "",
  1922. "_objFlags": 0,
  1923. "__editorExtras__": {},
  1924. "node": {
  1925. "__id__": 49
  1926. },
  1927. "_enabled": true,
  1928. "__prefab": null,
  1929. "_customMaterial": null,
  1930. "_srcBlendFactor": 2,
  1931. "_dstBlendFactor": 4,
  1932. "_color": {
  1933. "__type__": "cc.Color",
  1934. "r": 0,
  1935. "g": 0,
  1936. "b": 0,
  1937. "a": 255
  1938. },
  1939. "_string": "首次加载游戏较慢,请耐心等待~",
  1940. "_horizontalAlign": 1,
  1941. "_verticalAlign": 1,
  1942. "_actualFontSize": 20,
  1943. "_fontSize": 20,
  1944. "_fontFamily": "Arial",
  1945. "_lineHeight": 40,
  1946. "_overflow": 0,
  1947. "_enableWrapText": true,
  1948. "_font": null,
  1949. "_isSystemFontUsed": true,
  1950. "_spacingX": 0,
  1951. "_isItalic": false,
  1952. "_isBold": true,
  1953. "_isUnderline": false,
  1954. "_underlineHeight": 2,
  1955. "_cacheMode": 0,
  1956. "_enableOutline": false,
  1957. "_outlineColor": {
  1958. "__type__": "cc.Color",
  1959. "r": 0,
  1960. "g": 0,
  1961. "b": 0,
  1962. "a": 255
  1963. },
  1964. "_outlineWidth": 2,
  1965. "_enableShadow": false,
  1966. "_shadowColor": {
  1967. "__type__": "cc.Color",
  1968. "r": 0,
  1969. "g": 0,
  1970. "b": 0,
  1971. "a": 255
  1972. },
  1973. "_shadowOffset": {
  1974. "__type__": "cc.Vec2",
  1975. "x": 2,
  1976. "y": 2
  1977. },
  1978. "_shadowBlur": 2,
  1979. "_id": "bbkAY0Q3pNppCWqeAlS54p"
  1980. },
  1981. {
  1982. "__type__": "cc.UITransform",
  1983. "_name": "",
  1984. "_objFlags": 0,
  1985. "__editorExtras__": {},
  1986. "node": {
  1987. "__id__": 42
  1988. },
  1989. "_enabled": true,
  1990. "__prefab": null,
  1991. "_contentSize": {
  1992. "__type__": "cc.Size",
  1993. "width": 460,
  1994. "height": 18
  1995. },
  1996. "_anchorPoint": {
  1997. "__type__": "cc.Vec2",
  1998. "x": 0.5,
  1999. "y": 0.5
  2000. },
  2001. "_id": "974lYacX5F/7QhAZOGxU31"
  2002. },
  2003. {
  2004. "__type__": "cc.Sprite",
  2005. "_name": "",
  2006. "_objFlags": 0,
  2007. "__editorExtras__": {},
  2008. "node": {
  2009. "__id__": 42
  2010. },
  2011. "_enabled": true,
  2012. "__prefab": null,
  2013. "_customMaterial": null,
  2014. "_srcBlendFactor": 2,
  2015. "_dstBlendFactor": 4,
  2016. "_color": {
  2017. "__type__": "cc.Color",
  2018. "r": 255,
  2019. "g": 255,
  2020. "b": 255,
  2021. "a": 255
  2022. },
  2023. "_spriteFrame": {
  2024. "__uuid__": "b52894b8-45a7-4b62-9d37-249d0c7bf9eb@f9941",
  2025. "__expectedType__": "cc.SpriteFrame"
  2026. },
  2027. "_type": 0,
  2028. "_fillType": 0,
  2029. "_sizeMode": 1,
  2030. "_fillCenter": {
  2031. "__type__": "cc.Vec2",
  2032. "x": 0,
  2033. "y": 0
  2034. },
  2035. "_fillStart": 0,
  2036. "_fillRange": 0,
  2037. "_isTrimmedMode": true,
  2038. "_useGrayscale": false,
  2039. "_atlas": null,
  2040. "_id": "d09BmjcGNPlKLy1h8ZwZud"
  2041. },
  2042. {
  2043. "__type__": "cc.Widget",
  2044. "_name": "",
  2045. "_objFlags": 0,
  2046. "__editorExtras__": {},
  2047. "node": {
  2048. "__id__": 42
  2049. },
  2050. "_enabled": true,
  2051. "__prefab": null,
  2052. "_alignFlags": 4,
  2053. "_target": null,
  2054. "_left": 0,
  2055. "_right": 0,
  2056. "_top": 0,
  2057. "_bottom": 280.48699999999997,
  2058. "_horizontalCenter": 0,
  2059. "_verticalCenter": 0,
  2060. "_isAbsLeft": true,
  2061. "_isAbsRight": true,
  2062. "_isAbsTop": true,
  2063. "_isAbsBottom": true,
  2064. "_isAbsHorizontalCenter": true,
  2065. "_isAbsVerticalCenter": true,
  2066. "_originalWidth": 0,
  2067. "_originalHeight": 0,
  2068. "_alignMode": 2,
  2069. "_lockFlags": 0,
  2070. "_id": "e3dJ0LnK9GxoBY1QwDfGRd"
  2071. },
  2072. {
  2073. "__type__": "cc.Node",
  2074. "_name": "RankPanel",
  2075. "_objFlags": 0,
  2076. "__editorExtras__": {},
  2077. "_parent": {
  2078. "__id__": 2
  2079. },
  2080. "_children": [
  2081. {
  2082. "__id__": 56
  2083. },
  2084. {
  2085. "__id__": 60
  2086. },
  2087. {
  2088. "__id__": 67
  2089. },
  2090. {
  2091. "__id__": 70
  2092. },
  2093. {
  2094. "__id__": 178
  2095. },
  2096. {
  2097. "__id__": 185
  2098. },
  2099. {
  2100. "__id__": 192
  2101. }
  2102. ],
  2103. "_active": false,
  2104. "_components": [
  2105. {
  2106. "__id__": 195
  2107. },
  2108. {
  2109. "__id__": 196
  2110. },
  2111. {
  2112. "__id__": 197
  2113. }
  2114. ],
  2115. "_prefab": null,
  2116. "_lpos": {
  2117. "__type__": "cc.Vec3",
  2118. "x": 0,
  2119. "y": 0,
  2120. "z": 0
  2121. },
  2122. "_lrot": {
  2123. "__type__": "cc.Quat",
  2124. "x": 0,
  2125. "y": 0,
  2126. "z": 0,
  2127. "w": 1
  2128. },
  2129. "_lscale": {
  2130. "__type__": "cc.Vec3",
  2131. "x": 1.33,
  2132. "y": 1.33,
  2133. "z": 1
  2134. },
  2135. "_mobility": 0,
  2136. "_layer": 33554432,
  2137. "_euler": {
  2138. "__type__": "cc.Vec3",
  2139. "x": 0,
  2140. "y": 0,
  2141. "z": 0
  2142. },
  2143. "_id": "baD/gUmGlE4anx8DlM66Xz"
  2144. },
  2145. {
  2146. "__type__": "cc.Node",
  2147. "_name": "Mask",
  2148. "_objFlags": 0,
  2149. "__editorExtras__": {},
  2150. "_parent": {
  2151. "__id__": 55
  2152. },
  2153. "_children": [],
  2154. "_active": true,
  2155. "_components": [
  2156. {
  2157. "__id__": 57
  2158. },
  2159. {
  2160. "__id__": 58
  2161. },
  2162. {
  2163. "__id__": 59
  2164. }
  2165. ],
  2166. "_prefab": null,
  2167. "_lpos": {
  2168. "__type__": "cc.Vec3",
  2169. "x": 0,
  2170. "y": 0,
  2171. "z": 0
  2172. },
  2173. "_lrot": {
  2174. "__type__": "cc.Quat",
  2175. "x": 0,
  2176. "y": 0,
  2177. "z": 0,
  2178. "w": 1
  2179. },
  2180. "_lscale": {
  2181. "__type__": "cc.Vec3",
  2182. "x": 1,
  2183. "y": 1,
  2184. "z": 1
  2185. },
  2186. "_mobility": 0,
  2187. "_layer": 33554432,
  2188. "_euler": {
  2189. "__type__": "cc.Vec3",
  2190. "x": 0,
  2191. "y": 0,
  2192. "z": 0
  2193. },
  2194. "_id": "5f+0ByrOFLWrlafSY+r+Sb"
  2195. },
  2196. {
  2197. "__type__": "cc.UITransform",
  2198. "_name": "",
  2199. "_objFlags": 0,
  2200. "__editorExtras__": {},
  2201. "node": {
  2202. "__id__": 56
  2203. },
  2204. "_enabled": true,
  2205. "__prefab": null,
  2206. "_contentSize": {
  2207. "__type__": "cc.Size",
  2208. "width": 541.3533834586466,
  2209. "height": 962.406015037594
  2210. },
  2211. "_anchorPoint": {
  2212. "__type__": "cc.Vec2",
  2213. "x": 0.5,
  2214. "y": 0.5
  2215. },
  2216. "_id": "6159YCpHBHZqZwP9qhMUOO"
  2217. },
  2218. {
  2219. "__type__": "cc.Button",
  2220. "_name": "",
  2221. "_objFlags": 0,
  2222. "__editorExtras__": {},
  2223. "node": {
  2224. "__id__": 56
  2225. },
  2226. "_enabled": true,
  2227. "__prefab": null,
  2228. "clickEvents": [],
  2229. "_interactable": true,
  2230. "_transition": 0,
  2231. "_normalColor": {
  2232. "__type__": "cc.Color",
  2233. "r": 255,
  2234. "g": 255,
  2235. "b": 255,
  2236. "a": 255
  2237. },
  2238. "_hoverColor": {
  2239. "__type__": "cc.Color",
  2240. "r": 211,
  2241. "g": 211,
  2242. "b": 211,
  2243. "a": 255
  2244. },
  2245. "_pressedColor": {
  2246. "__type__": "cc.Color",
  2247. "r": 255,
  2248. "g": 255,
  2249. "b": 255,
  2250. "a": 255
  2251. },
  2252. "_disabledColor": {
  2253. "__type__": "cc.Color",
  2254. "r": 124,
  2255. "g": 124,
  2256. "b": 124,
  2257. "a": 255
  2258. },
  2259. "_normalSprite": null,
  2260. "_hoverSprite": null,
  2261. "_pressedSprite": null,
  2262. "_disabledSprite": null,
  2263. "_duration": 0.1,
  2264. "_zoomScale": 1.2,
  2265. "_target": null,
  2266. "_id": "1fHUt6yvdN4oE0Df4tv1ar"
  2267. },
  2268. {
  2269. "__type__": "cc.Widget",
  2270. "_name": "",
  2271. "_objFlags": 0,
  2272. "__editorExtras__": {},
  2273. "node": {
  2274. "__id__": 56
  2275. },
  2276. "_enabled": true,
  2277. "__prefab": null,
  2278. "_alignFlags": 45,
  2279. "_target": {
  2280. "__id__": 2
  2281. },
  2282. "_left": 0,
  2283. "_right": 0,
  2284. "_top": 0,
  2285. "_bottom": 0,
  2286. "_horizontalCenter": 0,
  2287. "_verticalCenter": 0,
  2288. "_isAbsLeft": true,
  2289. "_isAbsRight": true,
  2290. "_isAbsTop": true,
  2291. "_isAbsBottom": true,
  2292. "_isAbsHorizontalCenter": true,
  2293. "_isAbsVerticalCenter": true,
  2294. "_originalWidth": 100,
  2295. "_originalHeight": 100,
  2296. "_alignMode": 2,
  2297. "_lockFlags": 0,
  2298. "_id": "feRcGTPodHHYUZPx9BSxeL"
  2299. },
  2300. {
  2301. "__type__": "cc.Node",
  2302. "_name": "Close",
  2303. "_objFlags": 0,
  2304. "__editorExtras__": {},
  2305. "_parent": {
  2306. "__id__": 55
  2307. },
  2308. "_children": [
  2309. {
  2310. "__id__": 61
  2311. }
  2312. ],
  2313. "_active": true,
  2314. "_components": [
  2315. {
  2316. "__id__": 65
  2317. },
  2318. {
  2319. "__id__": 66
  2320. }
  2321. ],
  2322. "_prefab": null,
  2323. "_lpos": {
  2324. "__type__": "cc.Vec3",
  2325. "x": 203.218,
  2326. "y": 306.037,
  2327. "z": 0
  2328. },
  2329. "_lrot": {
  2330. "__type__": "cc.Quat",
  2331. "x": 0,
  2332. "y": 0,
  2333. "z": 0,
  2334. "w": 1
  2335. },
  2336. "_lscale": {
  2337. "__type__": "cc.Vec3",
  2338. "x": 1,
  2339. "y": 1,
  2340. "z": 1
  2341. },
  2342. "_mobility": 0,
  2343. "_layer": 33554432,
  2344. "_euler": {
  2345. "__type__": "cc.Vec3",
  2346. "x": 0,
  2347. "y": 0,
  2348. "z": 0
  2349. },
  2350. "_id": "33HyLyvIVCD6qtb7Kxfm3m"
  2351. },
  2352. {
  2353. "__type__": "cc.Node",
  2354. "_name": "Button",
  2355. "_objFlags": 0,
  2356. "__editorExtras__": {},
  2357. "_parent": {
  2358. "__id__": 60
  2359. },
  2360. "_children": [],
  2361. "_active": true,
  2362. "_components": [
  2363. {
  2364. "__id__": 62
  2365. },
  2366. {
  2367. "__id__": 63
  2368. }
  2369. ],
  2370. "_prefab": null,
  2371. "_lpos": {
  2372. "__type__": "cc.Vec3",
  2373. "x": 0,
  2374. "y": 0,
  2375. "z": 0
  2376. },
  2377. "_lrot": {
  2378. "__type__": "cc.Quat",
  2379. "x": 0,
  2380. "y": 0,
  2381. "z": 0,
  2382. "w": 1
  2383. },
  2384. "_lscale": {
  2385. "__type__": "cc.Vec3",
  2386. "x": 1,
  2387. "y": 1,
  2388. "z": 1
  2389. },
  2390. "_mobility": 0,
  2391. "_layer": 33554432,
  2392. "_euler": {
  2393. "__type__": "cc.Vec3",
  2394. "x": 0,
  2395. "y": 0,
  2396. "z": 0
  2397. },
  2398. "_id": "e9lRq4RZ9ENpF7phyfvPf0"
  2399. },
  2400. {
  2401. "__type__": "cc.UITransform",
  2402. "_name": "",
  2403. "_objFlags": 0,
  2404. "__editorExtras__": {},
  2405. "node": {
  2406. "__id__": 61
  2407. },
  2408. "_enabled": true,
  2409. "__prefab": null,
  2410. "_contentSize": {
  2411. "__type__": "cc.Size",
  2412. "width": 60.65263157894737,
  2413. "height": 59.315789473684205
  2414. },
  2415. "_anchorPoint": {
  2416. "__type__": "cc.Vec2",
  2417. "x": 0.5,
  2418. "y": 0.5
  2419. },
  2420. "_id": "dcorfpAC5Bg7XQosM7c1EW"
  2421. },
  2422. {
  2423. "__type__": "cc.Button",
  2424. "_name": "",
  2425. "_objFlags": 0,
  2426. "__editorExtras__": {},
  2427. "node": {
  2428. "__id__": 61
  2429. },
  2430. "_enabled": true,
  2431. "__prefab": null,
  2432. "clickEvents": [
  2433. {
  2434. "__id__": 64
  2435. }
  2436. ],
  2437. "_interactable": true,
  2438. "_transition": 0,
  2439. "_normalColor": {
  2440. "__type__": "cc.Color",
  2441. "r": 214,
  2442. "g": 214,
  2443. "b": 214,
  2444. "a": 255
  2445. },
  2446. "_hoverColor": {
  2447. "__type__": "cc.Color",
  2448. "r": 211,
  2449. "g": 211,
  2450. "b": 211,
  2451. "a": 255
  2452. },
  2453. "_pressedColor": {
  2454. "__type__": "cc.Color",
  2455. "r": 255,
  2456. "g": 255,
  2457. "b": 255,
  2458. "a": 255
  2459. },
  2460. "_disabledColor": {
  2461. "__type__": "cc.Color",
  2462. "r": 124,
  2463. "g": 124,
  2464. "b": 124,
  2465. "a": 255
  2466. },
  2467. "_normalSprite": {
  2468. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  2469. "__expectedType__": "cc.SpriteFrame"
  2470. },
  2471. "_hoverSprite": {
  2472. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  2473. "__expectedType__": "cc.SpriteFrame"
  2474. },
  2475. "_pressedSprite": {
  2476. "__uuid__": "544e49d6-3f05-4fa8-9a9e-091f98fc2ce8@f9941",
  2477. "__expectedType__": "cc.SpriteFrame"
  2478. },
  2479. "_disabledSprite": {
  2480. "__uuid__": "951249e0-9f16-456d-8b85-a6ca954da16b@f9941",
  2481. "__expectedType__": "cc.SpriteFrame"
  2482. },
  2483. "_duration": 0.1,
  2484. "_zoomScale": 1.2,
  2485. "_target": {
  2486. "__id__": 61
  2487. },
  2488. "_id": "ac5gRjI4hBOYdrJ3gw74m3"
  2489. },
  2490. {
  2491. "__type__": "cc.ClickEvent",
  2492. "target": {
  2493. "__id__": 55
  2494. },
  2495. "component": "",
  2496. "_componentId": "e5acfZxSQRNB4uKAHZSxKvF",
  2497. "handler": "close",
  2498. "customEventData": ""
  2499. },
  2500. {
  2501. "__type__": "cc.UITransform",
  2502. "_name": "",
  2503. "_objFlags": 0,
  2504. "__editorExtras__": {},
  2505. "node": {
  2506. "__id__": 60
  2507. },
  2508. "_enabled": true,
  2509. "__prefab": null,
  2510. "_contentSize": {
  2511. "__type__": "cc.Size",
  2512. "width": 20,
  2513. "height": 20
  2514. },
  2515. "_anchorPoint": {
  2516. "__type__": "cc.Vec2",
  2517. "x": 0.5,
  2518. "y": 0.5
  2519. },
  2520. "_id": "96R8YuPmxIyrwxXxKdq8lv"
  2521. },
  2522. {
  2523. "__type__": "cc.Sprite",
  2524. "_name": "",
  2525. "_objFlags": 0,
  2526. "__editorExtras__": {},
  2527. "node": {
  2528. "__id__": 60
  2529. },
  2530. "_enabled": true,
  2531. "__prefab": null,
  2532. "_customMaterial": null,
  2533. "_srcBlendFactor": 2,
  2534. "_dstBlendFactor": 4,
  2535. "_color": {
  2536. "__type__": "cc.Color",
  2537. "r": 255,
  2538. "g": 255,
  2539. "b": 255,
  2540. "a": 255
  2541. },
  2542. "_spriteFrame": {
  2543. "__uuid__": "eade60c5-b6bc-4b7a-b0c0-e19acfb04b59@f9941",
  2544. "__expectedType__": "cc.SpriteFrame"
  2545. },
  2546. "_type": 0,
  2547. "_fillType": 0,
  2548. "_sizeMode": 1,
  2549. "_fillCenter": {
  2550. "__type__": "cc.Vec2",
  2551. "x": 0,
  2552. "y": 0
  2553. },
  2554. "_fillStart": 0,
  2555. "_fillRange": 0,
  2556. "_isTrimmedMode": true,
  2557. "_useGrayscale": false,
  2558. "_atlas": null,
  2559. "_id": "06wAQc/DJGWaLuENhnaKrN"
  2560. },
  2561. {
  2562. "__type__": "cc.Node",
  2563. "_name": "Title",
  2564. "_objFlags": 0,
  2565. "__editorExtras__": {},
  2566. "_parent": {
  2567. "__id__": 55
  2568. },
  2569. "_children": [],
  2570. "_active": true,
  2571. "_components": [
  2572. {
  2573. "__id__": 68
  2574. },
  2575. {
  2576. "__id__": 69
  2577. }
  2578. ],
  2579. "_prefab": null,
  2580. "_lpos": {
  2581. "__type__": "cc.Vec3",
  2582. "x": 0,
  2583. "y": 280.025,
  2584. "z": 0
  2585. },
  2586. "_lrot": {
  2587. "__type__": "cc.Quat",
  2588. "x": 0,
  2589. "y": 0,
  2590. "z": 0,
  2591. "w": 1
  2592. },
  2593. "_lscale": {
  2594. "__type__": "cc.Vec3",
  2595. "x": 1,
  2596. "y": 1,
  2597. "z": 1
  2598. },
  2599. "_mobility": 0,
  2600. "_layer": 33554432,
  2601. "_euler": {
  2602. "__type__": "cc.Vec3",
  2603. "x": 0,
  2604. "y": 0,
  2605. "z": 0
  2606. },
  2607. "_id": "6cp32YnXlOsb+J3NvFaebd"
  2608. },
  2609. {
  2610. "__type__": "cc.UITransform",
  2611. "_name": "",
  2612. "_objFlags": 0,
  2613. "__editorExtras__": {},
  2614. "node": {
  2615. "__id__": 67
  2616. },
  2617. "_enabled": true,
  2618. "__prefab": null,
  2619. "_contentSize": {
  2620. "__type__": "cc.Size",
  2621. "width": 99,
  2622. "height": 28
  2623. },
  2624. "_anchorPoint": {
  2625. "__type__": "cc.Vec2",
  2626. "x": 0.5,
  2627. "y": 0.5
  2628. },
  2629. "_id": "24QiNf4lVP3aEpFcuASgc/"
  2630. },
  2631. {
  2632. "__type__": "cc.Sprite",
  2633. "_name": "",
  2634. "_objFlags": 0,
  2635. "__editorExtras__": {},
  2636. "node": {
  2637. "__id__": 67
  2638. },
  2639. "_enabled": true,
  2640. "__prefab": null,
  2641. "_customMaterial": null,
  2642. "_srcBlendFactor": 2,
  2643. "_dstBlendFactor": 4,
  2644. "_color": {
  2645. "__type__": "cc.Color",
  2646. "r": 255,
  2647. "g": 255,
  2648. "b": 255,
  2649. "a": 255
  2650. },
  2651. "_spriteFrame": {
  2652. "__uuid__": "ea58309d-611d-427e-ac37-434a0ad60f2b@f9941",
  2653. "__expectedType__": "cc.SpriteFrame"
  2654. },
  2655. "_type": 0,
  2656. "_fillType": 0,
  2657. "_sizeMode": 1,
  2658. "_fillCenter": {
  2659. "__type__": "cc.Vec2",
  2660. "x": 0,
  2661. "y": 0
  2662. },
  2663. "_fillStart": 0,
  2664. "_fillRange": 0,
  2665. "_isTrimmedMode": true,
  2666. "_useGrayscale": false,
  2667. "_atlas": null,
  2668. "_id": "d9A2y/Eu5K8prpNYdcrJkq"
  2669. },
  2670. {
  2671. "__type__": "cc.Node",
  2672. "_name": "Layout",
  2673. "_objFlags": 0,
  2674. "__editorExtras__": {},
  2675. "_parent": {
  2676. "__id__": 55
  2677. },
  2678. "_children": [
  2679. {
  2680. "__id__": 71
  2681. },
  2682. {
  2683. "__id__": 86
  2684. },
  2685. {
  2686. "__id__": 101
  2687. },
  2688. {
  2689. "__id__": 116
  2690. },
  2691. {
  2692. "__id__": 131
  2693. },
  2694. {
  2695. "__id__": 146
  2696. },
  2697. {
  2698. "__id__": 161
  2699. }
  2700. ],
  2701. "_active": true,
  2702. "_components": [
  2703. {
  2704. "__id__": 176
  2705. },
  2706. {
  2707. "__id__": 177
  2708. }
  2709. ],
  2710. "_prefab": null,
  2711. "_lpos": {
  2712. "__type__": "cc.Vec3",
  2713. "x": 0,
  2714. "y": -24.798,
  2715. "z": 0
  2716. },
  2717. "_lrot": {
  2718. "__type__": "cc.Quat",
  2719. "x": 0,
  2720. "y": 0,
  2721. "z": 0,
  2722. "w": 1
  2723. },
  2724. "_lscale": {
  2725. "__type__": "cc.Vec3",
  2726. "x": 1,
  2727. "y": 1,
  2728. "z": 1
  2729. },
  2730. "_mobility": 0,
  2731. "_layer": 33554432,
  2732. "_euler": {
  2733. "__type__": "cc.Vec3",
  2734. "x": 0,
  2735. "y": 0,
  2736. "z": 0
  2737. },
  2738. "_id": "13PvabGmZGnbkpNnpAIPcy"
  2739. },
  2740. {
  2741. "__type__": "cc.Node",
  2742. "_name": "item",
  2743. "_objFlags": 0,
  2744. "__editorExtras__": {},
  2745. "_parent": {
  2746. "__id__": 70
  2747. },
  2748. "_children": [
  2749. {
  2750. "__id__": 72
  2751. },
  2752. {
  2753. "__id__": 75
  2754. },
  2755. {
  2756. "__id__": 78
  2757. },
  2758. {
  2759. "__id__": 81
  2760. }
  2761. ],
  2762. "_active": false,
  2763. "_components": [
  2764. {
  2765. "__id__": 84
  2766. },
  2767. {
  2768. "__id__": 85
  2769. }
  2770. ],
  2771. "_prefab": null,
  2772. "_lpos": {
  2773. "__type__": "cc.Vec3",
  2774. "x": 0,
  2775. "y": 228.99473684210523,
  2776. "z": 0
  2777. },
  2778. "_lrot": {
  2779. "__type__": "cc.Quat",
  2780. "x": 0,
  2781. "y": 0,
  2782. "z": 0,
  2783. "w": 1
  2784. },
  2785. "_lscale": {
  2786. "__type__": "cc.Vec3",
  2787. "x": 1,
  2788. "y": 1,
  2789. "z": 1
  2790. },
  2791. "_mobility": 0,
  2792. "_layer": 33554432,
  2793. "_euler": {
  2794. "__type__": "cc.Vec3",
  2795. "x": 0,
  2796. "y": 0,
  2797. "z": 0
  2798. },
  2799. "_id": "f3OmW1mT1HLb+Vh+eAcHxf"
  2800. },
  2801. {
  2802. "__type__": "cc.Node",
  2803. "_name": "image",
  2804. "_objFlags": 0,
  2805. "__editorExtras__": {},
  2806. "_parent": {
  2807. "__id__": 71
  2808. },
  2809. "_children": [],
  2810. "_active": true,
  2811. "_components": [
  2812. {
  2813. "__id__": 73
  2814. },
  2815. {
  2816. "__id__": 74
  2817. }
  2818. ],
  2819. "_prefab": null,
  2820. "_lpos": {
  2821. "__type__": "cc.Vec3",
  2822. "x": -108.615,
  2823. "y": 0,
  2824. "z": 0
  2825. },
  2826. "_lrot": {
  2827. "__type__": "cc.Quat",
  2828. "x": 0,
  2829. "y": 0,
  2830. "z": 0,
  2831. "w": 1
  2832. },
  2833. "_lscale": {
  2834. "__type__": "cc.Vec3",
  2835. "x": 1,
  2836. "y": 1,
  2837. "z": 1
  2838. },
  2839. "_mobility": 0,
  2840. "_layer": 33554432,
  2841. "_euler": {
  2842. "__type__": "cc.Vec3",
  2843. "x": 0,
  2844. "y": 0,
  2845. "z": 0
  2846. },
  2847. "_id": "fbo3D/QuNLcre8GkCfKZCJ"
  2848. },
  2849. {
  2850. "__type__": "cc.UITransform",
  2851. "_name": "",
  2852. "_objFlags": 0,
  2853. "__editorExtras__": {},
  2854. "node": {
  2855. "__id__": 72
  2856. },
  2857. "_enabled": true,
  2858. "__prefab": null,
  2859. "_contentSize": {
  2860. "__type__": "cc.Size",
  2861. "width": 40,
  2862. "height": 40
  2863. },
  2864. "_anchorPoint": {
  2865. "__type__": "cc.Vec2",
  2866. "x": 0.5,
  2867. "y": 0.5
  2868. },
  2869. "_id": "b4EYKr8HhLza7ecT5vJlwL"
  2870. },
  2871. {
  2872. "__type__": "cc.Sprite",
  2873. "_name": "",
  2874. "_objFlags": 0,
  2875. "__editorExtras__": {},
  2876. "node": {
  2877. "__id__": 72
  2878. },
  2879. "_enabled": true,
  2880. "__prefab": null,
  2881. "_customMaterial": null,
  2882. "_srcBlendFactor": 2,
  2883. "_dstBlendFactor": 4,
  2884. "_color": {
  2885. "__type__": "cc.Color",
  2886. "r": 255,
  2887. "g": 255,
  2888. "b": 255,
  2889. "a": 255
  2890. },
  2891. "_spriteFrame": {
  2892. "__uuid__": "5353ee01-7e47-43d8-b312-ba40cac746e1@f9941",
  2893. "__expectedType__": "cc.SpriteFrame"
  2894. },
  2895. "_type": 0,
  2896. "_fillType": 0,
  2897. "_sizeMode": 0,
  2898. "_fillCenter": {
  2899. "__type__": "cc.Vec2",
  2900. "x": 0,
  2901. "y": 0
  2902. },
  2903. "_fillStart": 0,
  2904. "_fillRange": 0,
  2905. "_isTrimmedMode": true,
  2906. "_useGrayscale": false,
  2907. "_atlas": null,
  2908. "_id": "f7zwnuZE1FFYbaNhSK1sE6"
  2909. },
  2910. {
  2911. "__type__": "cc.Node",
  2912. "_name": "Order",
  2913. "_objFlags": 0,
  2914. "__editorExtras__": {},
  2915. "_parent": {
  2916. "__id__": 71
  2917. },
  2918. "_children": [],
  2919. "_active": true,
  2920. "_components": [
  2921. {
  2922. "__id__": 76
  2923. },
  2924. {
  2925. "__id__": 77
  2926. }
  2927. ],
  2928. "_prefab": null,
  2929. "_lpos": {
  2930. "__type__": "cc.Vec3",
  2931. "x": -182.693,
  2932. "y": 0,
  2933. "z": 0
  2934. },
  2935. "_lrot": {
  2936. "__type__": "cc.Quat",
  2937. "x": 0,
  2938. "y": 0,
  2939. "z": 0,
  2940. "w": 1
  2941. },
  2942. "_lscale": {
  2943. "__type__": "cc.Vec3",
  2944. "x": 1,
  2945. "y": 1,
  2946. "z": 1
  2947. },
  2948. "_mobility": 0,
  2949. "_layer": 33554432,
  2950. "_euler": {
  2951. "__type__": "cc.Vec3",
  2952. "x": 0,
  2953. "y": 0,
  2954. "z": 0
  2955. },
  2956. "_id": "canD2tVvtAd6aKjsFNrOoS"
  2957. },
  2958. {
  2959. "__type__": "cc.UITransform",
  2960. "_name": "",
  2961. "_objFlags": 0,
  2962. "__editorExtras__": {},
  2963. "node": {
  2964. "__id__": 75
  2965. },
  2966. "_enabled": true,
  2967. "__prefab": null,
  2968. "_contentSize": {
  2969. "__type__": "cc.Size",
  2970. "width": 11.123046875,
  2971. "height": 50.4
  2972. },
  2973. "_anchorPoint": {
  2974. "__type__": "cc.Vec2",
  2975. "x": 0,
  2976. "y": 0.5
  2977. },
  2978. "_id": "e7dWPhs4JCia2uAPdkLpMu"
  2979. },
  2980. {
  2981. "__type__": "cc.Label",
  2982. "_name": "",
  2983. "_objFlags": 0,
  2984. "__editorExtras__": {},
  2985. "node": {
  2986. "__id__": 75
  2987. },
  2988. "_enabled": true,
  2989. "__prefab": null,
  2990. "_customMaterial": null,
  2991. "_srcBlendFactor": 2,
  2992. "_dstBlendFactor": 4,
  2993. "_color": {
  2994. "__type__": "cc.Color",
  2995. "r": 0,
  2996. "g": 0,
  2997. "b": 0,
  2998. "a": 255
  2999. },
  3000. "_string": "1",
  3001. "_horizontalAlign": 1,
  3002. "_verticalAlign": 1,
  3003. "_actualFontSize": 20,
  3004. "_fontSize": 20,
  3005. "_fontFamily": "Arial",
  3006. "_lineHeight": 40,
  3007. "_overflow": 0,
  3008. "_enableWrapText": true,
  3009. "_font": null,
  3010. "_isSystemFontUsed": true,
  3011. "_spacingX": 0,
  3012. "_isItalic": false,
  3013. "_isBold": false,
  3014. "_isUnderline": false,
  3015. "_underlineHeight": 2,
  3016. "_cacheMode": 0,
  3017. "_enableOutline": false,
  3018. "_outlineColor": {
  3019. "__type__": "cc.Color",
  3020. "r": 0,
  3021. "g": 0,
  3022. "b": 0,
  3023. "a": 255
  3024. },
  3025. "_outlineWidth": 2,
  3026. "_enableShadow": false,
  3027. "_shadowColor": {
  3028. "__type__": "cc.Color",
  3029. "r": 0,
  3030. "g": 0,
  3031. "b": 0,
  3032. "a": 255
  3033. },
  3034. "_shadowOffset": {
  3035. "__type__": "cc.Vec2",
  3036. "x": 2,
  3037. "y": 2
  3038. },
  3039. "_shadowBlur": 2,
  3040. "_id": "a4rXetey1L4ogNM3+r/Bcj"
  3041. },
  3042. {
  3043. "__type__": "cc.Node",
  3044. "_name": "NickName",
  3045. "_objFlags": 0,
  3046. "__editorExtras__": {},
  3047. "_parent": {
  3048. "__id__": 71
  3049. },
  3050. "_children": [],
  3051. "_active": true,
  3052. "_components": [
  3053. {
  3054. "__id__": 79
  3055. },
  3056. {
  3057. "__id__": 80
  3058. }
  3059. ],
  3060. "_prefab": null,
  3061. "_lpos": {
  3062. "__type__": "cc.Vec3",
  3063. "x": -76.968,
  3064. "y": 0,
  3065. "z": 0
  3066. },
  3067. "_lrot": {
  3068. "__type__": "cc.Quat",
  3069. "x": 0,
  3070. "y": 0,
  3071. "z": 0,
  3072. "w": 1
  3073. },
  3074. "_lscale": {
  3075. "__type__": "cc.Vec3",
  3076. "x": 1,
  3077. "y": 1,
  3078. "z": 1
  3079. },
  3080. "_mobility": 0,
  3081. "_layer": 33554432,
  3082. "_euler": {
  3083. "__type__": "cc.Vec3",
  3084. "x": 0,
  3085. "y": 0,
  3086. "z": 0
  3087. },
  3088. "_id": "3arZJ4qWFKIqAQeG+BuVrk"
  3089. },
  3090. {
  3091. "__type__": "cc.UITransform",
  3092. "_name": "",
  3093. "_objFlags": 0,
  3094. "__editorExtras__": {},
  3095. "node": {
  3096. "__id__": 78
  3097. },
  3098. "_enabled": true,
  3099. "__prefab": null,
  3100. "_contentSize": {
  3101. "__type__": "cc.Size",
  3102. "width": 40,
  3103. "height": 54.4
  3104. },
  3105. "_anchorPoint": {
  3106. "__type__": "cc.Vec2",
  3107. "x": 0,
  3108. "y": 0.5
  3109. },
  3110. "_id": "15o3NDKIdGWIpYkPH1upY6"
  3111. },
  3112. {
  3113. "__type__": "cc.Label",
  3114. "_name": "",
  3115. "_objFlags": 0,
  3116. "__editorExtras__": {},
  3117. "node": {
  3118. "__id__": 78
  3119. },
  3120. "_enabled": true,
  3121. "__prefab": null,
  3122. "_customMaterial": null,
  3123. "_srcBlendFactor": 2,
  3124. "_dstBlendFactor": 4,
  3125. "_color": {
  3126. "__type__": "cc.Color",
  3127. "r": 255,
  3128. "g": 255,
  3129. "b": 255,
  3130. "a": 255
  3131. },
  3132. "_string": "游客",
  3133. "_horizontalAlign": 1,
  3134. "_verticalAlign": 1,
  3135. "_actualFontSize": 18,
  3136. "_fontSize": 18,
  3137. "_fontFamily": "Arial",
  3138. "_lineHeight": 40,
  3139. "_overflow": 0,
  3140. "_enableWrapText": true,
  3141. "_font": null,
  3142. "_isSystemFontUsed": true,
  3143. "_spacingX": 0,
  3144. "_isItalic": false,
  3145. "_isBold": false,
  3146. "_isUnderline": false,
  3147. "_underlineHeight": 2,
  3148. "_cacheMode": 0,
  3149. "_enableOutline": true,
  3150. "_outlineColor": {
  3151. "__type__": "cc.Color",
  3152. "r": 0,
  3153. "g": 0,
  3154. "b": 0,
  3155. "a": 255
  3156. },
  3157. "_outlineWidth": 2,
  3158. "_enableShadow": false,
  3159. "_shadowColor": {
  3160. "__type__": "cc.Color",
  3161. "r": 0,
  3162. "g": 0,
  3163. "b": 0,
  3164. "a": 255
  3165. },
  3166. "_shadowOffset": {
  3167. "__type__": "cc.Vec2",
  3168. "x": 2,
  3169. "y": 2
  3170. },
  3171. "_shadowBlur": 2,
  3172. "_id": "51KIWIRP5DpJheG+TrlsAA"
  3173. },
  3174. {
  3175. "__type__": "cc.Node",
  3176. "_name": "Score",
  3177. "_objFlags": 0,
  3178. "__editorExtras__": {},
  3179. "_parent": {
  3180. "__id__": 71
  3181. },
  3182. "_children": [],
  3183. "_active": true,
  3184. "_components": [
  3185. {
  3186. "__id__": 82
  3187. },
  3188. {
  3189. "__id__": 83
  3190. }
  3191. ],
  3192. "_prefab": null,
  3193. "_lpos": {
  3194. "__type__": "cc.Vec3",
  3195. "x": 182.887,
  3196. "y": 0,
  3197. "z": 0
  3198. },
  3199. "_lrot": {
  3200. "__type__": "cc.Quat",
  3201. "x": 0,
  3202. "y": 0,
  3203. "z": 0,
  3204. "w": 1
  3205. },
  3206. "_lscale": {
  3207. "__type__": "cc.Vec3",
  3208. "x": 1,
  3209. "y": 1,
  3210. "z": 1
  3211. },
  3212. "_mobility": 0,
  3213. "_layer": 33554432,
  3214. "_euler": {
  3215. "__type__": "cc.Vec3",
  3216. "x": 0,
  3217. "y": 0,
  3218. "z": 0
  3219. },
  3220. "_id": "dfInVs2OZL0aRQvjIBfeKH"
  3221. },
  3222. {
  3223. "__type__": "cc.UITransform",
  3224. "_name": "",
  3225. "_objFlags": 0,
  3226. "__editorExtras__": {},
  3227. "node": {
  3228. "__id__": 81
  3229. },
  3230. "_enabled": true,
  3231. "__prefab": null,
  3232. "_contentSize": {
  3233. "__type__": "cc.Size",
  3234. "width": 80.0859375,
  3235. "height": 50.4
  3236. },
  3237. "_anchorPoint": {
  3238. "__type__": "cc.Vec2",
  3239. "x": 1,
  3240. "y": 0.5
  3241. },
  3242. "_id": "83zhTHrh9DiYgURR2A/Xzx"
  3243. },
  3244. {
  3245. "__type__": "cc.Label",
  3246. "_name": "",
  3247. "_objFlags": 0,
  3248. "__editorExtras__": {},
  3249. "node": {
  3250. "__id__": 81
  3251. },
  3252. "_enabled": true,
  3253. "__prefab": null,
  3254. "_customMaterial": null,
  3255. "_srcBlendFactor": 2,
  3256. "_dstBlendFactor": 4,
  3257. "_color": {
  3258. "__type__": "cc.Color",
  3259. "r": 0,
  3260. "g": 0,
  3261. "b": 0,
  3262. "a": 255
  3263. },
  3264. "_string": "12345644",
  3265. "_horizontalAlign": 1,
  3266. "_verticalAlign": 1,
  3267. "_actualFontSize": 18,
  3268. "_fontSize": 18,
  3269. "_fontFamily": "Arial",
  3270. "_lineHeight": 40,
  3271. "_overflow": 0,
  3272. "_enableWrapText": true,
  3273. "_font": null,
  3274. "_isSystemFontUsed": true,
  3275. "_spacingX": 0,
  3276. "_isItalic": false,
  3277. "_isBold": true,
  3278. "_isUnderline": false,
  3279. "_underlineHeight": 2,
  3280. "_cacheMode": 0,
  3281. "_enableOutline": false,
  3282. "_outlineColor": {
  3283. "__type__": "cc.Color",
  3284. "r": 0,
  3285. "g": 0,
  3286. "b": 0,
  3287. "a": 255
  3288. },
  3289. "_outlineWidth": 2,
  3290. "_enableShadow": false,
  3291. "_shadowColor": {
  3292. "__type__": "cc.Color",
  3293. "r": 0,
  3294. "g": 0,
  3295. "b": 0,
  3296. "a": 255
  3297. },
  3298. "_shadowOffset": {
  3299. "__type__": "cc.Vec2",
  3300. "x": 2,
  3301. "y": 2
  3302. },
  3303. "_shadowBlur": 2,
  3304. "_id": "e50u7N2dZMAqTw7YkzzwIr"
  3305. },
  3306. {
  3307. "__type__": "cc.UITransform",
  3308. "_name": "",
  3309. "_objFlags": 0,
  3310. "__editorExtras__": {},
  3311. "node": {
  3312. "__id__": 71
  3313. },
  3314. "_enabled": true,
  3315. "__prefab": null,
  3316. "_contentSize": {
  3317. "__type__": "cc.Size",
  3318. "width": 400,
  3319. "height": 60
  3320. },
  3321. "_anchorPoint": {
  3322. "__type__": "cc.Vec2",
  3323. "x": 0.5,
  3324. "y": 0.5
  3325. },
  3326. "_id": "80QlviH6xHeaemfTVxwGfq"
  3327. },
  3328. {
  3329. "__type__": "cc.Sprite",
  3330. "_name": "",
  3331. "_objFlags": 0,
  3332. "__editorExtras__": {},
  3333. "node": {
  3334. "__id__": 71
  3335. },
  3336. "_enabled": true,
  3337. "__prefab": null,
  3338. "_customMaterial": null,
  3339. "_srcBlendFactor": 2,
  3340. "_dstBlendFactor": 4,
  3341. "_color": {
  3342. "__type__": "cc.Color",
  3343. "r": 255,
  3344. "g": 255,
  3345. "b": 255,
  3346. "a": 255
  3347. },
  3348. "_spriteFrame": {
  3349. "__uuid__": "48234cb3-8e8c-40bf-9c21-0a66f352c05e@f9941",
  3350. "__expectedType__": "cc.SpriteFrame"
  3351. },
  3352. "_type": 0,
  3353. "_fillType": 0,
  3354. "_sizeMode": 1,
  3355. "_fillCenter": {
  3356. "__type__": "cc.Vec2",
  3357. "x": 0,
  3358. "y": 0
  3359. },
  3360. "_fillStart": 0,
  3361. "_fillRange": 0,
  3362. "_isTrimmedMode": true,
  3363. "_useGrayscale": false,
  3364. "_atlas": null,
  3365. "_id": "69semRirpCNacmxE83yTX8"
  3366. },
  3367. {
  3368. "__type__": "cc.Node",
  3369. "_name": "item-001",
  3370. "_objFlags": 0,
  3371. "__editorExtras__": {},
  3372. "_parent": {
  3373. "__id__": 70
  3374. },
  3375. "_children": [
  3376. {
  3377. "__id__": 87
  3378. },
  3379. {
  3380. "__id__": 90
  3381. },
  3382. {
  3383. "__id__": 93
  3384. },
  3385. {
  3386. "__id__": 96
  3387. }
  3388. ],
  3389. "_active": false,
  3390. "_components": [
  3391. {
  3392. "__id__": 99
  3393. },
  3394. {
  3395. "__id__": 100
  3396. }
  3397. ],
  3398. "_prefab": null,
  3399. "_lpos": {
  3400. "__type__": "cc.Vec3",
  3401. "x": 0,
  3402. "y": 153.99473684210523,
  3403. "z": 0
  3404. },
  3405. "_lrot": {
  3406. "__type__": "cc.Quat",
  3407. "x": 0,
  3408. "y": 0,
  3409. "z": 0,
  3410. "w": 1
  3411. },
  3412. "_lscale": {
  3413. "__type__": "cc.Vec3",
  3414. "x": 1,
  3415. "y": 1,
  3416. "z": 1
  3417. },
  3418. "_mobility": 0,
  3419. "_layer": 33554432,
  3420. "_euler": {
  3421. "__type__": "cc.Vec3",
  3422. "x": 0,
  3423. "y": 0,
  3424. "z": 0
  3425. },
  3426. "_id": "a2mdU62/lHm4nJ1wk6RtNr"
  3427. },
  3428. {
  3429. "__type__": "cc.Node",
  3430. "_name": "image",
  3431. "_objFlags": 0,
  3432. "__editorExtras__": {},
  3433. "_parent": {
  3434. "__id__": 86
  3435. },
  3436. "_children": [],
  3437. "_active": true,
  3438. "_components": [
  3439. {
  3440. "__id__": 88
  3441. },
  3442. {
  3443. "__id__": 89
  3444. }
  3445. ],
  3446. "_prefab": null,
  3447. "_lpos": {
  3448. "__type__": "cc.Vec3",
  3449. "x": -108.615,
  3450. "y": 0,
  3451. "z": 0
  3452. },
  3453. "_lrot": {
  3454. "__type__": "cc.Quat",
  3455. "x": 0,
  3456. "y": 0,
  3457. "z": 0,
  3458. "w": 1
  3459. },
  3460. "_lscale": {
  3461. "__type__": "cc.Vec3",
  3462. "x": 1,
  3463. "y": 1,
  3464. "z": 1
  3465. },
  3466. "_mobility": 0,
  3467. "_layer": 33554432,
  3468. "_euler": {
  3469. "__type__": "cc.Vec3",
  3470. "x": 0,
  3471. "y": 0,
  3472. "z": 0
  3473. },
  3474. "_id": "9eLf5aCjBALoLbQplDzQMe"
  3475. },
  3476. {
  3477. "__type__": "cc.UITransform",
  3478. "_name": "",
  3479. "_objFlags": 0,
  3480. "__editorExtras__": {},
  3481. "node": {
  3482. "__id__": 87
  3483. },
  3484. "_enabled": true,
  3485. "__prefab": null,
  3486. "_contentSize": {
  3487. "__type__": "cc.Size",
  3488. "width": 40,
  3489. "height": 40
  3490. },
  3491. "_anchorPoint": {
  3492. "__type__": "cc.Vec2",
  3493. "x": 0.5,
  3494. "y": 0.5
  3495. },
  3496. "_id": "e7tauMsvVJDoUwiTqIYs4o"
  3497. },
  3498. {
  3499. "__type__": "cc.Sprite",
  3500. "_name": "",
  3501. "_objFlags": 0,
  3502. "__editorExtras__": {},
  3503. "node": {
  3504. "__id__": 87
  3505. },
  3506. "_enabled": true,
  3507. "__prefab": null,
  3508. "_customMaterial": null,
  3509. "_srcBlendFactor": 2,
  3510. "_dstBlendFactor": 4,
  3511. "_color": {
  3512. "__type__": "cc.Color",
  3513. "r": 255,
  3514. "g": 255,
  3515. "b": 255,
  3516. "a": 255
  3517. },
  3518. "_spriteFrame": {
  3519. "__uuid__": "5353ee01-7e47-43d8-b312-ba40cac746e1@f9941",
  3520. "__expectedType__": "cc.SpriteFrame"
  3521. },
  3522. "_type": 0,
  3523. "_fillType": 0,
  3524. "_sizeMode": 0,
  3525. "_fillCenter": {
  3526. "__type__": "cc.Vec2",
  3527. "x": 0,
  3528. "y": 0
  3529. },
  3530. "_fillStart": 0,
  3531. "_fillRange": 0,
  3532. "_isTrimmedMode": true,
  3533. "_useGrayscale": false,
  3534. "_atlas": null,
  3535. "_id": "4daRaNZ+lA5JAQ5nihBQCg"
  3536. },
  3537. {
  3538. "__type__": "cc.Node",
  3539. "_name": "Order",
  3540. "_objFlags": 0,
  3541. "__editorExtras__": {},
  3542. "_parent": {
  3543. "__id__": 86
  3544. },
  3545. "_children": [],
  3546. "_active": true,
  3547. "_components": [
  3548. {
  3549. "__id__": 91
  3550. },
  3551. {
  3552. "__id__": 92
  3553. }
  3554. ],
  3555. "_prefab": null,
  3556. "_lpos": {
  3557. "__type__": "cc.Vec3",
  3558. "x": -182.693,
  3559. "y": 0,
  3560. "z": 0
  3561. },
  3562. "_lrot": {
  3563. "__type__": "cc.Quat",
  3564. "x": 0,
  3565. "y": 0,
  3566. "z": 0,
  3567. "w": 1
  3568. },
  3569. "_lscale": {
  3570. "__type__": "cc.Vec3",
  3571. "x": 1,
  3572. "y": 1,
  3573. "z": 1
  3574. },
  3575. "_mobility": 0,
  3576. "_layer": 33554432,
  3577. "_euler": {
  3578. "__type__": "cc.Vec3",
  3579. "x": 0,
  3580. "y": 0,
  3581. "z": 0
  3582. },
  3583. "_id": "ddcL/AhSxELIu26x4odcJX"
  3584. },
  3585. {
  3586. "__type__": "cc.UITransform",
  3587. "_name": "",
  3588. "_objFlags": 0,
  3589. "__editorExtras__": {},
  3590. "node": {
  3591. "__id__": 90
  3592. },
  3593. "_enabled": true,
  3594. "__prefab": null,
  3595. "_contentSize": {
  3596. "__type__": "cc.Size",
  3597. "width": 11.123046875,
  3598. "height": 50.4
  3599. },
  3600. "_anchorPoint": {
  3601. "__type__": "cc.Vec2",
  3602. "x": 0,
  3603. "y": 0.5
  3604. },
  3605. "_id": "7dYXZVSsFEL57QC84Mg3Vp"
  3606. },
  3607. {
  3608. "__type__": "cc.Label",
  3609. "_name": "",
  3610. "_objFlags": 0,
  3611. "__editorExtras__": {},
  3612. "node": {
  3613. "__id__": 90
  3614. },
  3615. "_enabled": true,
  3616. "__prefab": null,
  3617. "_customMaterial": null,
  3618. "_srcBlendFactor": 2,
  3619. "_dstBlendFactor": 4,
  3620. "_color": {
  3621. "__type__": "cc.Color",
  3622. "r": 0,
  3623. "g": 0,
  3624. "b": 0,
  3625. "a": 255
  3626. },
  3627. "_string": "1",
  3628. "_horizontalAlign": 1,
  3629. "_verticalAlign": 1,
  3630. "_actualFontSize": 20,
  3631. "_fontSize": 20,
  3632. "_fontFamily": "Arial",
  3633. "_lineHeight": 40,
  3634. "_overflow": 0,
  3635. "_enableWrapText": true,
  3636. "_font": null,
  3637. "_isSystemFontUsed": true,
  3638. "_spacingX": 0,
  3639. "_isItalic": false,
  3640. "_isBold": false,
  3641. "_isUnderline": false,
  3642. "_underlineHeight": 2,
  3643. "_cacheMode": 0,
  3644. "_enableOutline": false,
  3645. "_outlineColor": {
  3646. "__type__": "cc.Color",
  3647. "r": 0,
  3648. "g": 0,
  3649. "b": 0,
  3650. "a": 255
  3651. },
  3652. "_outlineWidth": 2,
  3653. "_enableShadow": false,
  3654. "_shadowColor": {
  3655. "__type__": "cc.Color",
  3656. "r": 0,
  3657. "g": 0,
  3658. "b": 0,
  3659. "a": 255
  3660. },
  3661. "_shadowOffset": {
  3662. "__type__": "cc.Vec2",
  3663. "x": 2,
  3664. "y": 2
  3665. },
  3666. "_shadowBlur": 2,
  3667. "_id": "b71iBtFDVAKJkzBHSTQ+qh"
  3668. },
  3669. {
  3670. "__type__": "cc.Node",
  3671. "_name": "NickName",
  3672. "_objFlags": 0,
  3673. "__editorExtras__": {},
  3674. "_parent": {
  3675. "__id__": 86
  3676. },
  3677. "_children": [],
  3678. "_active": true,
  3679. "_components": [
  3680. {
  3681. "__id__": 94
  3682. },
  3683. {
  3684. "__id__": 95
  3685. }
  3686. ],
  3687. "_prefab": null,
  3688. "_lpos": {
  3689. "__type__": "cc.Vec3",
  3690. "x": -76.968,
  3691. "y": 0,
  3692. "z": 0
  3693. },
  3694. "_lrot": {
  3695. "__type__": "cc.Quat",
  3696. "x": 0,
  3697. "y": 0,
  3698. "z": 0,
  3699. "w": 1
  3700. },
  3701. "_lscale": {
  3702. "__type__": "cc.Vec3",
  3703. "x": 1,
  3704. "y": 1,
  3705. "z": 1
  3706. },
  3707. "_mobility": 0,
  3708. "_layer": 33554432,
  3709. "_euler": {
  3710. "__type__": "cc.Vec3",
  3711. "x": 0,
  3712. "y": 0,
  3713. "z": 0
  3714. },
  3715. "_id": "e40a8JF5ZBVZlMCraxhhQI"
  3716. },
  3717. {
  3718. "__type__": "cc.UITransform",
  3719. "_name": "",
  3720. "_objFlags": 0,
  3721. "__editorExtras__": {},
  3722. "node": {
  3723. "__id__": 93
  3724. },
  3725. "_enabled": true,
  3726. "__prefab": null,
  3727. "_contentSize": {
  3728. "__type__": "cc.Size",
  3729. "width": 40,
  3730. "height": 54.4
  3731. },
  3732. "_anchorPoint": {
  3733. "__type__": "cc.Vec2",
  3734. "x": 0,
  3735. "y": 0.5
  3736. },
  3737. "_id": "c40LAfrMlGYb3ojTMVx6XC"
  3738. },
  3739. {
  3740. "__type__": "cc.Label",
  3741. "_name": "",
  3742. "_objFlags": 0,
  3743. "__editorExtras__": {},
  3744. "node": {
  3745. "__id__": 93
  3746. },
  3747. "_enabled": true,
  3748. "__prefab": null,
  3749. "_customMaterial": null,
  3750. "_srcBlendFactor": 2,
  3751. "_dstBlendFactor": 4,
  3752. "_color": {
  3753. "__type__": "cc.Color",
  3754. "r": 255,
  3755. "g": 255,
  3756. "b": 255,
  3757. "a": 255
  3758. },
  3759. "_string": "游客",
  3760. "_horizontalAlign": 1,
  3761. "_verticalAlign": 1,
  3762. "_actualFontSize": 18,
  3763. "_fontSize": 18,
  3764. "_fontFamily": "Arial",
  3765. "_lineHeight": 40,
  3766. "_overflow": 0,
  3767. "_enableWrapText": true,
  3768. "_font": null,
  3769. "_isSystemFontUsed": true,
  3770. "_spacingX": 0,
  3771. "_isItalic": false,
  3772. "_isBold": false,
  3773. "_isUnderline": false,
  3774. "_underlineHeight": 2,
  3775. "_cacheMode": 0,
  3776. "_enableOutline": true,
  3777. "_outlineColor": {
  3778. "__type__": "cc.Color",
  3779. "r": 0,
  3780. "g": 0,
  3781. "b": 0,
  3782. "a": 255
  3783. },
  3784. "_outlineWidth": 2,
  3785. "_enableShadow": false,
  3786. "_shadowColor": {
  3787. "__type__": "cc.Color",
  3788. "r": 0,
  3789. "g": 0,
  3790. "b": 0,
  3791. "a": 255
  3792. },
  3793. "_shadowOffset": {
  3794. "__type__": "cc.Vec2",
  3795. "x": 2,
  3796. "y": 2
  3797. },
  3798. "_shadowBlur": 2,
  3799. "_id": "c96Mebp/1D9LgPXr556kY7"
  3800. },
  3801. {
  3802. "__type__": "cc.Node",
  3803. "_name": "Score",
  3804. "_objFlags": 0,
  3805. "__editorExtras__": {},
  3806. "_parent": {
  3807. "__id__": 86
  3808. },
  3809. "_children": [],
  3810. "_active": true,
  3811. "_components": [
  3812. {
  3813. "__id__": 97
  3814. },
  3815. {
  3816. "__id__": 98
  3817. }
  3818. ],
  3819. "_prefab": null,
  3820. "_lpos": {
  3821. "__type__": "cc.Vec3",
  3822. "x": 182.887,
  3823. "y": 0,
  3824. "z": 0
  3825. },
  3826. "_lrot": {
  3827. "__type__": "cc.Quat",
  3828. "x": 0,
  3829. "y": 0,
  3830. "z": 0,
  3831. "w": 1
  3832. },
  3833. "_lscale": {
  3834. "__type__": "cc.Vec3",
  3835. "x": 1,
  3836. "y": 1,
  3837. "z": 1
  3838. },
  3839. "_mobility": 0,
  3840. "_layer": 33554432,
  3841. "_euler": {
  3842. "__type__": "cc.Vec3",
  3843. "x": 0,
  3844. "y": 0,
  3845. "z": 0
  3846. },
  3847. "_id": "aaqdQFOEJDOKCY79KpTF9+"
  3848. },
  3849. {
  3850. "__type__": "cc.UITransform",
  3851. "_name": "",
  3852. "_objFlags": 0,
  3853. "__editorExtras__": {},
  3854. "node": {
  3855. "__id__": 96
  3856. },
  3857. "_enabled": true,
  3858. "__prefab": null,
  3859. "_contentSize": {
  3860. "__type__": "cc.Size",
  3861. "width": 80.0859375,
  3862. "height": 50.4
  3863. },
  3864. "_anchorPoint": {
  3865. "__type__": "cc.Vec2",
  3866. "x": 1,
  3867. "y": 0.5
  3868. },
  3869. "_id": "647adALSlPEoGOFro2DwO/"
  3870. },
  3871. {
  3872. "__type__": "cc.Label",
  3873. "_name": "",
  3874. "_objFlags": 0,
  3875. "__editorExtras__": {},
  3876. "node": {
  3877. "__id__": 96
  3878. },
  3879. "_enabled": true,
  3880. "__prefab": null,
  3881. "_customMaterial": null,
  3882. "_srcBlendFactor": 2,
  3883. "_dstBlendFactor": 4,
  3884. "_color": {
  3885. "__type__": "cc.Color",
  3886. "r": 0,
  3887. "g": 0,
  3888. "b": 0,
  3889. "a": 255
  3890. },
  3891. "_string": "12345644",
  3892. "_horizontalAlign": 1,
  3893. "_verticalAlign": 1,
  3894. "_actualFontSize": 18,
  3895. "_fontSize": 18,
  3896. "_fontFamily": "Arial",
  3897. "_lineHeight": 40,
  3898. "_overflow": 0,
  3899. "_enableWrapText": true,
  3900. "_font": null,
  3901. "_isSystemFontUsed": true,
  3902. "_spacingX": 0,
  3903. "_isItalic": false,
  3904. "_isBold": true,
  3905. "_isUnderline": false,
  3906. "_underlineHeight": 2,
  3907. "_cacheMode": 0,
  3908. "_enableOutline": false,
  3909. "_outlineColor": {
  3910. "__type__": "cc.Color",
  3911. "r": 0,
  3912. "g": 0,
  3913. "b": 0,
  3914. "a": 255
  3915. },
  3916. "_outlineWidth": 2,
  3917. "_enableShadow": false,
  3918. "_shadowColor": {
  3919. "__type__": "cc.Color",
  3920. "r": 0,
  3921. "g": 0,
  3922. "b": 0,
  3923. "a": 255
  3924. },
  3925. "_shadowOffset": {
  3926. "__type__": "cc.Vec2",
  3927. "x": 2,
  3928. "y": 2
  3929. },
  3930. "_shadowBlur": 2,
  3931. "_id": "874V0AwppForX321W994Zc"
  3932. },
  3933. {
  3934. "__type__": "cc.UITransform",
  3935. "_name": "",
  3936. "_objFlags": 0,
  3937. "__editorExtras__": {},
  3938. "node": {
  3939. "__id__": 86
  3940. },
  3941. "_enabled": true,
  3942. "__prefab": null,
  3943. "_contentSize": {
  3944. "__type__": "cc.Size",
  3945. "width": 400,
  3946. "height": 60
  3947. },
  3948. "_anchorPoint": {
  3949. "__type__": "cc.Vec2",
  3950. "x": 0.5,
  3951. "y": 0.5
  3952. },
  3953. "_id": "7a0AoNq1RGF6YJAUEVotyp"
  3954. },
  3955. {
  3956. "__type__": "cc.Sprite",
  3957. "_name": "",
  3958. "_objFlags": 0,
  3959. "__editorExtras__": {},
  3960. "node": {
  3961. "__id__": 86
  3962. },
  3963. "_enabled": true,
  3964. "__prefab": null,
  3965. "_customMaterial": null,
  3966. "_srcBlendFactor": 2,
  3967. "_dstBlendFactor": 4,
  3968. "_color": {
  3969. "__type__": "cc.Color",
  3970. "r": 255,
  3971. "g": 255,
  3972. "b": 255,
  3973. "a": 255
  3974. },
  3975. "_spriteFrame": {
  3976. "__uuid__": "48234cb3-8e8c-40bf-9c21-0a66f352c05e@f9941",
  3977. "__expectedType__": "cc.SpriteFrame"
  3978. },
  3979. "_type": 0,
  3980. "_fillType": 0,
  3981. "_sizeMode": 1,
  3982. "_fillCenter": {
  3983. "__type__": "cc.Vec2",
  3984. "x": 0,
  3985. "y": 0
  3986. },
  3987. "_fillStart": 0,
  3988. "_fillRange": 0,
  3989. "_isTrimmedMode": true,
  3990. "_useGrayscale": false,
  3991. "_atlas": null,
  3992. "_id": "b01GKy+M1HLKxWeo9bALMU"
  3993. },
  3994. {
  3995. "__type__": "cc.Node",
  3996. "_name": "item-002",
  3997. "_objFlags": 0,
  3998. "__editorExtras__": {},
  3999. "_parent": {
  4000. "__id__": 70
  4001. },
  4002. "_children": [
  4003. {
  4004. "__id__": 102
  4005. },
  4006. {
  4007. "__id__": 105
  4008. },
  4009. {
  4010. "__id__": 108
  4011. },
  4012. {
  4013. "__id__": 111
  4014. }
  4015. ],
  4016. "_active": false,
  4017. "_components": [
  4018. {
  4019. "__id__": 114
  4020. },
  4021. {
  4022. "__id__": 115
  4023. }
  4024. ],
  4025. "_prefab": null,
  4026. "_lpos": {
  4027. "__type__": "cc.Vec3",
  4028. "x": 0,
  4029. "y": 78.99473684210523,
  4030. "z": 0
  4031. },
  4032. "_lrot": {
  4033. "__type__": "cc.Quat",
  4034. "x": 0,
  4035. "y": 0,
  4036. "z": 0,
  4037. "w": 1
  4038. },
  4039. "_lscale": {
  4040. "__type__": "cc.Vec3",
  4041. "x": 1,
  4042. "y": 1,
  4043. "z": 1
  4044. },
  4045. "_mobility": 0,
  4046. "_layer": 33554432,
  4047. "_euler": {
  4048. "__type__": "cc.Vec3",
  4049. "x": 0,
  4050. "y": 0,
  4051. "z": 0
  4052. },
  4053. "_id": "778fETaY5ND6MsHfbLpnHl"
  4054. },
  4055. {
  4056. "__type__": "cc.Node",
  4057. "_name": "image",
  4058. "_objFlags": 0,
  4059. "__editorExtras__": {},
  4060. "_parent": {
  4061. "__id__": 101
  4062. },
  4063. "_children": [],
  4064. "_active": true,
  4065. "_components": [
  4066. {
  4067. "__id__": 103
  4068. },
  4069. {
  4070. "__id__": 104
  4071. }
  4072. ],
  4073. "_prefab": null,
  4074. "_lpos": {
  4075. "__type__": "cc.Vec3",
  4076. "x": -108.615,
  4077. "y": 0,
  4078. "z": 0
  4079. },
  4080. "_lrot": {
  4081. "__type__": "cc.Quat",
  4082. "x": 0,
  4083. "y": 0,
  4084. "z": 0,
  4085. "w": 1
  4086. },
  4087. "_lscale": {
  4088. "__type__": "cc.Vec3",
  4089. "x": 1,
  4090. "y": 1,
  4091. "z": 1
  4092. },
  4093. "_mobility": 0,
  4094. "_layer": 33554432,
  4095. "_euler": {
  4096. "__type__": "cc.Vec3",
  4097. "x": 0,
  4098. "y": 0,
  4099. "z": 0
  4100. },
  4101. "_id": "1cS0bs4AxJhq4pQ3hwEdSD"
  4102. },
  4103. {
  4104. "__type__": "cc.UITransform",
  4105. "_name": "",
  4106. "_objFlags": 0,
  4107. "__editorExtras__": {},
  4108. "node": {
  4109. "__id__": 102
  4110. },
  4111. "_enabled": true,
  4112. "__prefab": null,
  4113. "_contentSize": {
  4114. "__type__": "cc.Size",
  4115. "width": 40,
  4116. "height": 40
  4117. },
  4118. "_anchorPoint": {
  4119. "__type__": "cc.Vec2",
  4120. "x": 0.5,
  4121. "y": 0.5
  4122. },
  4123. "_id": "d0GpwdoeZGDL227OD5j/2Y"
  4124. },
  4125. {
  4126. "__type__": "cc.Sprite",
  4127. "_name": "",
  4128. "_objFlags": 0,
  4129. "__editorExtras__": {},
  4130. "node": {
  4131. "__id__": 102
  4132. },
  4133. "_enabled": true,
  4134. "__prefab": null,
  4135. "_customMaterial": null,
  4136. "_srcBlendFactor": 2,
  4137. "_dstBlendFactor": 4,
  4138. "_color": {
  4139. "__type__": "cc.Color",
  4140. "r": 255,
  4141. "g": 255,
  4142. "b": 255,
  4143. "a": 255
  4144. },
  4145. "_spriteFrame": {
  4146. "__uuid__": "5353ee01-7e47-43d8-b312-ba40cac746e1@f9941",
  4147. "__expectedType__": "cc.SpriteFrame"
  4148. },
  4149. "_type": 0,
  4150. "_fillType": 0,
  4151. "_sizeMode": 0,
  4152. "_fillCenter": {
  4153. "__type__": "cc.Vec2",
  4154. "x": 0,
  4155. "y": 0
  4156. },
  4157. "_fillStart": 0,
  4158. "_fillRange": 0,
  4159. "_isTrimmedMode": true,
  4160. "_useGrayscale": false,
  4161. "_atlas": null,
  4162. "_id": "c1V0PzyyFMd7PWusXLLBkM"
  4163. },
  4164. {
  4165. "__type__": "cc.Node",
  4166. "_name": "Order",
  4167. "_objFlags": 0,
  4168. "__editorExtras__": {},
  4169. "_parent": {
  4170. "__id__": 101
  4171. },
  4172. "_children": [],
  4173. "_active": true,
  4174. "_components": [
  4175. {
  4176. "__id__": 106
  4177. },
  4178. {
  4179. "__id__": 107
  4180. }
  4181. ],
  4182. "_prefab": null,
  4183. "_lpos": {
  4184. "__type__": "cc.Vec3",
  4185. "x": -182.693,
  4186. "y": 0,
  4187. "z": 0
  4188. },
  4189. "_lrot": {
  4190. "__type__": "cc.Quat",
  4191. "x": 0,
  4192. "y": 0,
  4193. "z": 0,
  4194. "w": 1
  4195. },
  4196. "_lscale": {
  4197. "__type__": "cc.Vec3",
  4198. "x": 1,
  4199. "y": 1,
  4200. "z": 1
  4201. },
  4202. "_mobility": 0,
  4203. "_layer": 33554432,
  4204. "_euler": {
  4205. "__type__": "cc.Vec3",
  4206. "x": 0,
  4207. "y": 0,
  4208. "z": 0
  4209. },
  4210. "_id": "5fo77lBzFPvq2slfivAdjM"
  4211. },
  4212. {
  4213. "__type__": "cc.UITransform",
  4214. "_name": "",
  4215. "_objFlags": 0,
  4216. "__editorExtras__": {},
  4217. "node": {
  4218. "__id__": 105
  4219. },
  4220. "_enabled": true,
  4221. "__prefab": null,
  4222. "_contentSize": {
  4223. "__type__": "cc.Size",
  4224. "width": 11.123046875,
  4225. "height": 50.4
  4226. },
  4227. "_anchorPoint": {
  4228. "__type__": "cc.Vec2",
  4229. "x": 0,
  4230. "y": 0.5
  4231. },
  4232. "_id": "54wBKM2j1J6bvjLVE5QURJ"
  4233. },
  4234. {
  4235. "__type__": "cc.Label",
  4236. "_name": "",
  4237. "_objFlags": 0,
  4238. "__editorExtras__": {},
  4239. "node": {
  4240. "__id__": 105
  4241. },
  4242. "_enabled": true,
  4243. "__prefab": null,
  4244. "_customMaterial": null,
  4245. "_srcBlendFactor": 2,
  4246. "_dstBlendFactor": 4,
  4247. "_color": {
  4248. "__type__": "cc.Color",
  4249. "r": 0,
  4250. "g": 0,
  4251. "b": 0,
  4252. "a": 255
  4253. },
  4254. "_string": "1",
  4255. "_horizontalAlign": 1,
  4256. "_verticalAlign": 1,
  4257. "_actualFontSize": 20,
  4258. "_fontSize": 20,
  4259. "_fontFamily": "Arial",
  4260. "_lineHeight": 40,
  4261. "_overflow": 0,
  4262. "_enableWrapText": true,
  4263. "_font": null,
  4264. "_isSystemFontUsed": true,
  4265. "_spacingX": 0,
  4266. "_isItalic": false,
  4267. "_isBold": false,
  4268. "_isUnderline": false,
  4269. "_underlineHeight": 2,
  4270. "_cacheMode": 0,
  4271. "_enableOutline": false,
  4272. "_outlineColor": {
  4273. "__type__": "cc.Color",
  4274. "r": 0,
  4275. "g": 0,
  4276. "b": 0,
  4277. "a": 255
  4278. },
  4279. "_outlineWidth": 2,
  4280. "_enableShadow": false,
  4281. "_shadowColor": {
  4282. "__type__": "cc.Color",
  4283. "r": 0,
  4284. "g": 0,
  4285. "b": 0,
  4286. "a": 255
  4287. },
  4288. "_shadowOffset": {
  4289. "__type__": "cc.Vec2",
  4290. "x": 2,
  4291. "y": 2
  4292. },
  4293. "_shadowBlur": 2,
  4294. "_id": "ad+j/O2rZHroICW3vfzoCv"
  4295. },
  4296. {
  4297. "__type__": "cc.Node",
  4298. "_name": "NickName",
  4299. "_objFlags": 0,
  4300. "__editorExtras__": {},
  4301. "_parent": {
  4302. "__id__": 101
  4303. },
  4304. "_children": [],
  4305. "_active": true,
  4306. "_components": [
  4307. {
  4308. "__id__": 109
  4309. },
  4310. {
  4311. "__id__": 110
  4312. }
  4313. ],
  4314. "_prefab": null,
  4315. "_lpos": {
  4316. "__type__": "cc.Vec3",
  4317. "x": -76.968,
  4318. "y": 0,
  4319. "z": 0
  4320. },
  4321. "_lrot": {
  4322. "__type__": "cc.Quat",
  4323. "x": 0,
  4324. "y": 0,
  4325. "z": 0,
  4326. "w": 1
  4327. },
  4328. "_lscale": {
  4329. "__type__": "cc.Vec3",
  4330. "x": 1,
  4331. "y": 1,
  4332. "z": 1
  4333. },
  4334. "_mobility": 0,
  4335. "_layer": 33554432,
  4336. "_euler": {
  4337. "__type__": "cc.Vec3",
  4338. "x": 0,
  4339. "y": 0,
  4340. "z": 0
  4341. },
  4342. "_id": "38/ezkrstAj61NIWJKDqEu"
  4343. },
  4344. {
  4345. "__type__": "cc.UITransform",
  4346. "_name": "",
  4347. "_objFlags": 0,
  4348. "__editorExtras__": {},
  4349. "node": {
  4350. "__id__": 108
  4351. },
  4352. "_enabled": true,
  4353. "__prefab": null,
  4354. "_contentSize": {
  4355. "__type__": "cc.Size",
  4356. "width": 40,
  4357. "height": 54.4
  4358. },
  4359. "_anchorPoint": {
  4360. "__type__": "cc.Vec2",
  4361. "x": 0,
  4362. "y": 0.5
  4363. },
  4364. "_id": "0cS2QCRkBFZ4tTe9EaBoBs"
  4365. },
  4366. {
  4367. "__type__": "cc.Label",
  4368. "_name": "",
  4369. "_objFlags": 0,
  4370. "__editorExtras__": {},
  4371. "node": {
  4372. "__id__": 108
  4373. },
  4374. "_enabled": true,
  4375. "__prefab": null,
  4376. "_customMaterial": null,
  4377. "_srcBlendFactor": 2,
  4378. "_dstBlendFactor": 4,
  4379. "_color": {
  4380. "__type__": "cc.Color",
  4381. "r": 255,
  4382. "g": 255,
  4383. "b": 255,
  4384. "a": 255
  4385. },
  4386. "_string": "游客",
  4387. "_horizontalAlign": 1,
  4388. "_verticalAlign": 1,
  4389. "_actualFontSize": 18,
  4390. "_fontSize": 18,
  4391. "_fontFamily": "Arial",
  4392. "_lineHeight": 40,
  4393. "_overflow": 0,
  4394. "_enableWrapText": true,
  4395. "_font": null,
  4396. "_isSystemFontUsed": true,
  4397. "_spacingX": 0,
  4398. "_isItalic": false,
  4399. "_isBold": false,
  4400. "_isUnderline": false,
  4401. "_underlineHeight": 2,
  4402. "_cacheMode": 0,
  4403. "_enableOutline": true,
  4404. "_outlineColor": {
  4405. "__type__": "cc.Color",
  4406. "r": 0,
  4407. "g": 0,
  4408. "b": 0,
  4409. "a": 255
  4410. },
  4411. "_outlineWidth": 2,
  4412. "_enableShadow": false,
  4413. "_shadowColor": {
  4414. "__type__": "cc.Color",
  4415. "r": 0,
  4416. "g": 0,
  4417. "b": 0,
  4418. "a": 255
  4419. },
  4420. "_shadowOffset": {
  4421. "__type__": "cc.Vec2",
  4422. "x": 2,
  4423. "y": 2
  4424. },
  4425. "_shadowBlur": 2,
  4426. "_id": "f0pyv25NJM2rGWph4jJzZU"
  4427. },
  4428. {
  4429. "__type__": "cc.Node",
  4430. "_name": "Score",
  4431. "_objFlags": 0,
  4432. "__editorExtras__": {},
  4433. "_parent": {
  4434. "__id__": 101
  4435. },
  4436. "_children": [],
  4437. "_active": true,
  4438. "_components": [
  4439. {
  4440. "__id__": 112
  4441. },
  4442. {
  4443. "__id__": 113
  4444. }
  4445. ],
  4446. "_prefab": null,
  4447. "_lpos": {
  4448. "__type__": "cc.Vec3",
  4449. "x": 182.887,
  4450. "y": 0,
  4451. "z": 0
  4452. },
  4453. "_lrot": {
  4454. "__type__": "cc.Quat",
  4455. "x": 0,
  4456. "y": 0,
  4457. "z": 0,
  4458. "w": 1
  4459. },
  4460. "_lscale": {
  4461. "__type__": "cc.Vec3",
  4462. "x": 1,
  4463. "y": 1,
  4464. "z": 1
  4465. },
  4466. "_mobility": 0,
  4467. "_layer": 33554432,
  4468. "_euler": {
  4469. "__type__": "cc.Vec3",
  4470. "x": 0,
  4471. "y": 0,
  4472. "z": 0
  4473. },
  4474. "_id": "ceFYssu+lOz5qaq8KTcLRJ"
  4475. },
  4476. {
  4477. "__type__": "cc.UITransform",
  4478. "_name": "",
  4479. "_objFlags": 0,
  4480. "__editorExtras__": {},
  4481. "node": {
  4482. "__id__": 111
  4483. },
  4484. "_enabled": true,
  4485. "__prefab": null,
  4486. "_contentSize": {
  4487. "__type__": "cc.Size",
  4488. "width": 80.0859375,
  4489. "height": 50.4
  4490. },
  4491. "_anchorPoint": {
  4492. "__type__": "cc.Vec2",
  4493. "x": 1,
  4494. "y": 0.5
  4495. },
  4496. "_id": "f8PiXwttFGip6rMXXZKnEm"
  4497. },
  4498. {
  4499. "__type__": "cc.Label",
  4500. "_name": "",
  4501. "_objFlags": 0,
  4502. "__editorExtras__": {},
  4503. "node": {
  4504. "__id__": 111
  4505. },
  4506. "_enabled": true,
  4507. "__prefab": null,
  4508. "_customMaterial": null,
  4509. "_srcBlendFactor": 2,
  4510. "_dstBlendFactor": 4,
  4511. "_color": {
  4512. "__type__": "cc.Color",
  4513. "r": 0,
  4514. "g": 0,
  4515. "b": 0,
  4516. "a": 255
  4517. },
  4518. "_string": "12345644",
  4519. "_horizontalAlign": 1,
  4520. "_verticalAlign": 1,
  4521. "_actualFontSize": 18,
  4522. "_fontSize": 18,
  4523. "_fontFamily": "Arial",
  4524. "_lineHeight": 40,
  4525. "_overflow": 0,
  4526. "_enableWrapText": true,
  4527. "_font": null,
  4528. "_isSystemFontUsed": true,
  4529. "_spacingX": 0,
  4530. "_isItalic": false,
  4531. "_isBold": true,
  4532. "_isUnderline": false,
  4533. "_underlineHeight": 2,
  4534. "_cacheMode": 0,
  4535. "_enableOutline": false,
  4536. "_outlineColor": {
  4537. "__type__": "cc.Color",
  4538. "r": 0,
  4539. "g": 0,
  4540. "b": 0,
  4541. "a": 255
  4542. },
  4543. "_outlineWidth": 2,
  4544. "_enableShadow": false,
  4545. "_shadowColor": {
  4546. "__type__": "cc.Color",
  4547. "r": 0,
  4548. "g": 0,
  4549. "b": 0,
  4550. "a": 255
  4551. },
  4552. "_shadowOffset": {
  4553. "__type__": "cc.Vec2",
  4554. "x": 2,
  4555. "y": 2
  4556. },
  4557. "_shadowBlur": 2,
  4558. "_id": "91CQ//aMRB+5s5DIvTNz+w"
  4559. },
  4560. {
  4561. "__type__": "cc.UITransform",
  4562. "_name": "",
  4563. "_objFlags": 0,
  4564. "__editorExtras__": {},
  4565. "node": {
  4566. "__id__": 101
  4567. },
  4568. "_enabled": true,
  4569. "__prefab": null,
  4570. "_contentSize": {
  4571. "__type__": "cc.Size",
  4572. "width": 400,
  4573. "height": 60
  4574. },
  4575. "_anchorPoint": {
  4576. "__type__": "cc.Vec2",
  4577. "x": 0.5,
  4578. "y": 0.5
  4579. },
  4580. "_id": "f67oY47+RHM6ZZ588hp8uJ"
  4581. },
  4582. {
  4583. "__type__": "cc.Sprite",
  4584. "_name": "",
  4585. "_objFlags": 0,
  4586. "__editorExtras__": {},
  4587. "node": {
  4588. "__id__": 101
  4589. },
  4590. "_enabled": true,
  4591. "__prefab": null,
  4592. "_customMaterial": null,
  4593. "_srcBlendFactor": 2,
  4594. "_dstBlendFactor": 4,
  4595. "_color": {
  4596. "__type__": "cc.Color",
  4597. "r": 255,
  4598. "g": 255,
  4599. "b": 255,
  4600. "a": 255
  4601. },
  4602. "_spriteFrame": {
  4603. "__uuid__": "48234cb3-8e8c-40bf-9c21-0a66f352c05e@f9941",
  4604. "__expectedType__": "cc.SpriteFrame"
  4605. },
  4606. "_type": 0,
  4607. "_fillType": 0,
  4608. "_sizeMode": 1,
  4609. "_fillCenter": {
  4610. "__type__": "cc.Vec2",
  4611. "x": 0,
  4612. "y": 0
  4613. },
  4614. "_fillStart": 0,
  4615. "_fillRange": 0,
  4616. "_isTrimmedMode": true,
  4617. "_useGrayscale": false,
  4618. "_atlas": null,
  4619. "_id": "67WbEg5+xC5r6MNiuIhT2M"
  4620. },
  4621. {
  4622. "__type__": "cc.Node",
  4623. "_name": "item-003",
  4624. "_objFlags": 0,
  4625. "__editorExtras__": {},
  4626. "_parent": {
  4627. "__id__": 70
  4628. },
  4629. "_children": [
  4630. {
  4631. "__id__": 117
  4632. },
  4633. {
  4634. "__id__": 120
  4635. },
  4636. {
  4637. "__id__": 123
  4638. },
  4639. {
  4640. "__id__": 126
  4641. }
  4642. ],
  4643. "_active": false,
  4644. "_components": [
  4645. {
  4646. "__id__": 129
  4647. },
  4648. {
  4649. "__id__": 130
  4650. }
  4651. ],
  4652. "_prefab": null,
  4653. "_lpos": {
  4654. "__type__": "cc.Vec3",
  4655. "x": 0,
  4656. "y": 3.994736842105226,
  4657. "z": 0
  4658. },
  4659. "_lrot": {
  4660. "__type__": "cc.Quat",
  4661. "x": 0,
  4662. "y": 0,
  4663. "z": 0,
  4664. "w": 1
  4665. },
  4666. "_lscale": {
  4667. "__type__": "cc.Vec3",
  4668. "x": 1,
  4669. "y": 1,
  4670. "z": 1
  4671. },
  4672. "_mobility": 0,
  4673. "_layer": 33554432,
  4674. "_euler": {
  4675. "__type__": "cc.Vec3",
  4676. "x": 0,
  4677. "y": 0,
  4678. "z": 0
  4679. },
  4680. "_id": "985f7mwLRMabLD7Qm4sPtY"
  4681. },
  4682. {
  4683. "__type__": "cc.Node",
  4684. "_name": "image",
  4685. "_objFlags": 0,
  4686. "__editorExtras__": {},
  4687. "_parent": {
  4688. "__id__": 116
  4689. },
  4690. "_children": [],
  4691. "_active": true,
  4692. "_components": [
  4693. {
  4694. "__id__": 118
  4695. },
  4696. {
  4697. "__id__": 119
  4698. }
  4699. ],
  4700. "_prefab": null,
  4701. "_lpos": {
  4702. "__type__": "cc.Vec3",
  4703. "x": -108.615,
  4704. "y": 0,
  4705. "z": 0
  4706. },
  4707. "_lrot": {
  4708. "__type__": "cc.Quat",
  4709. "x": 0,
  4710. "y": 0,
  4711. "z": 0,
  4712. "w": 1
  4713. },
  4714. "_lscale": {
  4715. "__type__": "cc.Vec3",
  4716. "x": 1,
  4717. "y": 1,
  4718. "z": 1
  4719. },
  4720. "_mobility": 0,
  4721. "_layer": 33554432,
  4722. "_euler": {
  4723. "__type__": "cc.Vec3",
  4724. "x": 0,
  4725. "y": 0,
  4726. "z": 0
  4727. },
  4728. "_id": "fdJgeI/ZdCKbyf6em7u0cO"
  4729. },
  4730. {
  4731. "__type__": "cc.UITransform",
  4732. "_name": "",
  4733. "_objFlags": 0,
  4734. "__editorExtras__": {},
  4735. "node": {
  4736. "__id__": 117
  4737. },
  4738. "_enabled": true,
  4739. "__prefab": null,
  4740. "_contentSize": {
  4741. "__type__": "cc.Size",
  4742. "width": 40,
  4743. "height": 40
  4744. },
  4745. "_anchorPoint": {
  4746. "__type__": "cc.Vec2",
  4747. "x": 0.5,
  4748. "y": 0.5
  4749. },
  4750. "_id": "8fGk9EyLhC8JhBZogKIZNi"
  4751. },
  4752. {
  4753. "__type__": "cc.Sprite",
  4754. "_name": "",
  4755. "_objFlags": 0,
  4756. "__editorExtras__": {},
  4757. "node": {
  4758. "__id__": 117
  4759. },
  4760. "_enabled": true,
  4761. "__prefab": null,
  4762. "_customMaterial": null,
  4763. "_srcBlendFactor": 2,
  4764. "_dstBlendFactor": 4,
  4765. "_color": {
  4766. "__type__": "cc.Color",
  4767. "r": 255,
  4768. "g": 255,
  4769. "b": 255,
  4770. "a": 255
  4771. },
  4772. "_spriteFrame": {
  4773. "__uuid__": "5353ee01-7e47-43d8-b312-ba40cac746e1@f9941",
  4774. "__expectedType__": "cc.SpriteFrame"
  4775. },
  4776. "_type": 0,
  4777. "_fillType": 0,
  4778. "_sizeMode": 0,
  4779. "_fillCenter": {
  4780. "__type__": "cc.Vec2",
  4781. "x": 0,
  4782. "y": 0
  4783. },
  4784. "_fillStart": 0,
  4785. "_fillRange": 0,
  4786. "_isTrimmedMode": true,
  4787. "_useGrayscale": false,
  4788. "_atlas": null,
  4789. "_id": "eaJ/QVcyRPca63oqs5FKR9"
  4790. },
  4791. {
  4792. "__type__": "cc.Node",
  4793. "_name": "Order",
  4794. "_objFlags": 0,
  4795. "__editorExtras__": {},
  4796. "_parent": {
  4797. "__id__": 116
  4798. },
  4799. "_children": [],
  4800. "_active": true,
  4801. "_components": [
  4802. {
  4803. "__id__": 121
  4804. },
  4805. {
  4806. "__id__": 122
  4807. }
  4808. ],
  4809. "_prefab": null,
  4810. "_lpos": {
  4811. "__type__": "cc.Vec3",
  4812. "x": -182.693,
  4813. "y": 0,
  4814. "z": 0
  4815. },
  4816. "_lrot": {
  4817. "__type__": "cc.Quat",
  4818. "x": 0,
  4819. "y": 0,
  4820. "z": 0,
  4821. "w": 1
  4822. },
  4823. "_lscale": {
  4824. "__type__": "cc.Vec3",
  4825. "x": 1,
  4826. "y": 1,
  4827. "z": 1
  4828. },
  4829. "_mobility": 0,
  4830. "_layer": 33554432,
  4831. "_euler": {
  4832. "__type__": "cc.Vec3",
  4833. "x": 0,
  4834. "y": 0,
  4835. "z": 0
  4836. },
  4837. "_id": "fbencZN4ZPl6zyKHEwE1Fd"
  4838. },
  4839. {
  4840. "__type__": "cc.UITransform",
  4841. "_name": "",
  4842. "_objFlags": 0,
  4843. "__editorExtras__": {},
  4844. "node": {
  4845. "__id__": 120
  4846. },
  4847. "_enabled": true,
  4848. "__prefab": null,
  4849. "_contentSize": {
  4850. "__type__": "cc.Size",
  4851. "width": 11.123046875,
  4852. "height": 50.4
  4853. },
  4854. "_anchorPoint": {
  4855. "__type__": "cc.Vec2",
  4856. "x": 0,
  4857. "y": 0.5
  4858. },
  4859. "_id": "09uoyNwaJPPJnu82WHBImY"
  4860. },
  4861. {
  4862. "__type__": "cc.Label",
  4863. "_name": "",
  4864. "_objFlags": 0,
  4865. "__editorExtras__": {},
  4866. "node": {
  4867. "__id__": 120
  4868. },
  4869. "_enabled": true,
  4870. "__prefab": null,
  4871. "_customMaterial": null,
  4872. "_srcBlendFactor": 2,
  4873. "_dstBlendFactor": 4,
  4874. "_color": {
  4875. "__type__": "cc.Color",
  4876. "r": 0,
  4877. "g": 0,
  4878. "b": 0,
  4879. "a": 255
  4880. },
  4881. "_string": "1",
  4882. "_horizontalAlign": 1,
  4883. "_verticalAlign": 1,
  4884. "_actualFontSize": 20,
  4885. "_fontSize": 20,
  4886. "_fontFamily": "Arial",
  4887. "_lineHeight": 40,
  4888. "_overflow": 0,
  4889. "_enableWrapText": true,
  4890. "_font": null,
  4891. "_isSystemFontUsed": true,
  4892. "_spacingX": 0,
  4893. "_isItalic": false,
  4894. "_isBold": false,
  4895. "_isUnderline": false,
  4896. "_underlineHeight": 2,
  4897. "_cacheMode": 0,
  4898. "_enableOutline": false,
  4899. "_outlineColor": {
  4900. "__type__": "cc.Color",
  4901. "r": 0,
  4902. "g": 0,
  4903. "b": 0,
  4904. "a": 255
  4905. },
  4906. "_outlineWidth": 2,
  4907. "_enableShadow": false,
  4908. "_shadowColor": {
  4909. "__type__": "cc.Color",
  4910. "r": 0,
  4911. "g": 0,
  4912. "b": 0,
  4913. "a": 255
  4914. },
  4915. "_shadowOffset": {
  4916. "__type__": "cc.Vec2",
  4917. "x": 2,
  4918. "y": 2
  4919. },
  4920. "_shadowBlur": 2,
  4921. "_id": "21PIbNJ9VGsIzX0G3W5Mq0"
  4922. },
  4923. {
  4924. "__type__": "cc.Node",
  4925. "_name": "NickName",
  4926. "_objFlags": 0,
  4927. "__editorExtras__": {},
  4928. "_parent": {
  4929. "__id__": 116
  4930. },
  4931. "_children": [],
  4932. "_active": true,
  4933. "_components": [
  4934. {
  4935. "__id__": 124
  4936. },
  4937. {
  4938. "__id__": 125
  4939. }
  4940. ],
  4941. "_prefab": null,
  4942. "_lpos": {
  4943. "__type__": "cc.Vec3",
  4944. "x": -76.968,
  4945. "y": 0,
  4946. "z": 0
  4947. },
  4948. "_lrot": {
  4949. "__type__": "cc.Quat",
  4950. "x": 0,
  4951. "y": 0,
  4952. "z": 0,
  4953. "w": 1
  4954. },
  4955. "_lscale": {
  4956. "__type__": "cc.Vec3",
  4957. "x": 1,
  4958. "y": 1,
  4959. "z": 1
  4960. },
  4961. "_mobility": 0,
  4962. "_layer": 33554432,
  4963. "_euler": {
  4964. "__type__": "cc.Vec3",
  4965. "x": 0,
  4966. "y": 0,
  4967. "z": 0
  4968. },
  4969. "_id": "347nlNl7lCHbKiA34CdW07"
  4970. },
  4971. {
  4972. "__type__": "cc.UITransform",
  4973. "_name": "",
  4974. "_objFlags": 0,
  4975. "__editorExtras__": {},
  4976. "node": {
  4977. "__id__": 123
  4978. },
  4979. "_enabled": true,
  4980. "__prefab": null,
  4981. "_contentSize": {
  4982. "__type__": "cc.Size",
  4983. "width": 40,
  4984. "height": 54.4
  4985. },
  4986. "_anchorPoint": {
  4987. "__type__": "cc.Vec2",
  4988. "x": 0,
  4989. "y": 0.5
  4990. },
  4991. "_id": "67GF3g0cpLFZkuXa+f4cbB"
  4992. },
  4993. {
  4994. "__type__": "cc.Label",
  4995. "_name": "",
  4996. "_objFlags": 0,
  4997. "__editorExtras__": {},
  4998. "node": {
  4999. "__id__": 123
  5000. },
  5001. "_enabled": true,
  5002. "__prefab": null,
  5003. "_customMaterial": null,
  5004. "_srcBlendFactor": 2,
  5005. "_dstBlendFactor": 4,
  5006. "_color": {
  5007. "__type__": "cc.Color",
  5008. "r": 255,
  5009. "g": 255,
  5010. "b": 255,
  5011. "a": 255
  5012. },
  5013. "_string": "游客",
  5014. "_horizontalAlign": 1,
  5015. "_verticalAlign": 1,
  5016. "_actualFontSize": 18,
  5017. "_fontSize": 18,
  5018. "_fontFamily": "Arial",
  5019. "_lineHeight": 40,
  5020. "_overflow": 0,
  5021. "_enableWrapText": true,
  5022. "_font": null,
  5023. "_isSystemFontUsed": true,
  5024. "_spacingX": 0,
  5025. "_isItalic": false,
  5026. "_isBold": false,
  5027. "_isUnderline": false,
  5028. "_underlineHeight": 2,
  5029. "_cacheMode": 0,
  5030. "_enableOutline": true,
  5031. "_outlineColor": {
  5032. "__type__": "cc.Color",
  5033. "r": 0,
  5034. "g": 0,
  5035. "b": 0,
  5036. "a": 255
  5037. },
  5038. "_outlineWidth": 2,
  5039. "_enableShadow": false,
  5040. "_shadowColor": {
  5041. "__type__": "cc.Color",
  5042. "r": 0,
  5043. "g": 0,
  5044. "b": 0,
  5045. "a": 255
  5046. },
  5047. "_shadowOffset": {
  5048. "__type__": "cc.Vec2",
  5049. "x": 2,
  5050. "y": 2
  5051. },
  5052. "_shadowBlur": 2,
  5053. "_id": "56ygRSG3JNeKRn96iuexhp"
  5054. },
  5055. {
  5056. "__type__": "cc.Node",
  5057. "_name": "Score",
  5058. "_objFlags": 0,
  5059. "__editorExtras__": {},
  5060. "_parent": {
  5061. "__id__": 116
  5062. },
  5063. "_children": [],
  5064. "_active": true,
  5065. "_components": [
  5066. {
  5067. "__id__": 127
  5068. },
  5069. {
  5070. "__id__": 128
  5071. }
  5072. ],
  5073. "_prefab": null,
  5074. "_lpos": {
  5075. "__type__": "cc.Vec3",
  5076. "x": 182.887,
  5077. "y": 0,
  5078. "z": 0
  5079. },
  5080. "_lrot": {
  5081. "__type__": "cc.Quat",
  5082. "x": 0,
  5083. "y": 0,
  5084. "z": 0,
  5085. "w": 1
  5086. },
  5087. "_lscale": {
  5088. "__type__": "cc.Vec3",
  5089. "x": 1,
  5090. "y": 1,
  5091. "z": 1
  5092. },
  5093. "_mobility": 0,
  5094. "_layer": 33554432,
  5095. "_euler": {
  5096. "__type__": "cc.Vec3",
  5097. "x": 0,
  5098. "y": 0,
  5099. "z": 0
  5100. },
  5101. "_id": "cdbufXK2lC66TfoZaZXvlI"
  5102. },
  5103. {
  5104. "__type__": "cc.UITransform",
  5105. "_name": "",
  5106. "_objFlags": 0,
  5107. "__editorExtras__": {},
  5108. "node": {
  5109. "__id__": 126
  5110. },
  5111. "_enabled": true,
  5112. "__prefab": null,
  5113. "_contentSize": {
  5114. "__type__": "cc.Size",
  5115. "width": 80.0859375,
  5116. "height": 50.4
  5117. },
  5118. "_anchorPoint": {
  5119. "__type__": "cc.Vec2",
  5120. "x": 1,
  5121. "y": 0.5
  5122. },
  5123. "_id": "7bhC2fBfNAWZ4N0Q3IOWzz"
  5124. },
  5125. {
  5126. "__type__": "cc.Label",
  5127. "_name": "",
  5128. "_objFlags": 0,
  5129. "__editorExtras__": {},
  5130. "node": {
  5131. "__id__": 126
  5132. },
  5133. "_enabled": true,
  5134. "__prefab": null,
  5135. "_customMaterial": null,
  5136. "_srcBlendFactor": 2,
  5137. "_dstBlendFactor": 4,
  5138. "_color": {
  5139. "__type__": "cc.Color",
  5140. "r": 0,
  5141. "g": 0,
  5142. "b": 0,
  5143. "a": 255
  5144. },
  5145. "_string": "12345644",
  5146. "_horizontalAlign": 1,
  5147. "_verticalAlign": 1,
  5148. "_actualFontSize": 18,
  5149. "_fontSize": 18,
  5150. "_fontFamily": "Arial",
  5151. "_lineHeight": 40,
  5152. "_overflow": 0,
  5153. "_enableWrapText": true,
  5154. "_font": null,
  5155. "_isSystemFontUsed": true,
  5156. "_spacingX": 0,
  5157. "_isItalic": false,
  5158. "_isBold": true,
  5159. "_isUnderline": false,
  5160. "_underlineHeight": 2,
  5161. "_cacheMode": 0,
  5162. "_enableOutline": false,
  5163. "_outlineColor": {
  5164. "__type__": "cc.Color",
  5165. "r": 0,
  5166. "g": 0,
  5167. "b": 0,
  5168. "a": 255
  5169. },
  5170. "_outlineWidth": 2,
  5171. "_enableShadow": false,
  5172. "_shadowColor": {
  5173. "__type__": "cc.Color",
  5174. "r": 0,
  5175. "g": 0,
  5176. "b": 0,
  5177. "a": 255
  5178. },
  5179. "_shadowOffset": {
  5180. "__type__": "cc.Vec2",
  5181. "x": 2,
  5182. "y": 2
  5183. },
  5184. "_shadowBlur": 2,
  5185. "_id": "2c/JNSjg5HWZucGnHajq4n"
  5186. },
  5187. {
  5188. "__type__": "cc.UITransform",
  5189. "_name": "",
  5190. "_objFlags": 0,
  5191. "__editorExtras__": {},
  5192. "node": {
  5193. "__id__": 116
  5194. },
  5195. "_enabled": true,
  5196. "__prefab": null,
  5197. "_contentSize": {
  5198. "__type__": "cc.Size",
  5199. "width": 400,
  5200. "height": 60
  5201. },
  5202. "_anchorPoint": {
  5203. "__type__": "cc.Vec2",
  5204. "x": 0.5,
  5205. "y": 0.5
  5206. },
  5207. "_id": "24//nuc2JEUKfUhPgKZv4S"
  5208. },
  5209. {
  5210. "__type__": "cc.Sprite",
  5211. "_name": "",
  5212. "_objFlags": 0,
  5213. "__editorExtras__": {},
  5214. "node": {
  5215. "__id__": 116
  5216. },
  5217. "_enabled": true,
  5218. "__prefab": null,
  5219. "_customMaterial": null,
  5220. "_srcBlendFactor": 2,
  5221. "_dstBlendFactor": 4,
  5222. "_color": {
  5223. "__type__": "cc.Color",
  5224. "r": 255,
  5225. "g": 255,
  5226. "b": 255,
  5227. "a": 255
  5228. },
  5229. "_spriteFrame": {
  5230. "__uuid__": "48234cb3-8e8c-40bf-9c21-0a66f352c05e@f9941",
  5231. "__expectedType__": "cc.SpriteFrame"
  5232. },
  5233. "_type": 0,
  5234. "_fillType": 0,
  5235. "_sizeMode": 1,
  5236. "_fillCenter": {
  5237. "__type__": "cc.Vec2",
  5238. "x": 0,
  5239. "y": 0
  5240. },
  5241. "_fillStart": 0,
  5242. "_fillRange": 0,
  5243. "_isTrimmedMode": true,
  5244. "_useGrayscale": false,
  5245. "_atlas": null,
  5246. "_id": "d4GejzOLJAkZMPxw31iYLD"
  5247. },
  5248. {
  5249. "__type__": "cc.Node",
  5250. "_name": "item-004",
  5251. "_objFlags": 0,
  5252. "__editorExtras__": {},
  5253. "_parent": {
  5254. "__id__": 70
  5255. },
  5256. "_children": [
  5257. {
  5258. "__id__": 132
  5259. },
  5260. {
  5261. "__id__": 135
  5262. },
  5263. {
  5264. "__id__": 138
  5265. },
  5266. {
  5267. "__id__": 141
  5268. }
  5269. ],
  5270. "_active": false,
  5271. "_components": [
  5272. {
  5273. "__id__": 144
  5274. },
  5275. {
  5276. "__id__": 145
  5277. }
  5278. ],
  5279. "_prefab": null,
  5280. "_lpos": {
  5281. "__type__": "cc.Vec3",
  5282. "x": 0,
  5283. "y": -71.00526315789477,
  5284. "z": 0
  5285. },
  5286. "_lrot": {
  5287. "__type__": "cc.Quat",
  5288. "x": 0,
  5289. "y": 0,
  5290. "z": 0,
  5291. "w": 1
  5292. },
  5293. "_lscale": {
  5294. "__type__": "cc.Vec3",
  5295. "x": 1,
  5296. "y": 1,
  5297. "z": 1
  5298. },
  5299. "_mobility": 0,
  5300. "_layer": 33554432,
  5301. "_euler": {
  5302. "__type__": "cc.Vec3",
  5303. "x": 0,
  5304. "y": 0,
  5305. "z": 0
  5306. },
  5307. "_id": "daJK/0LGtHz7tSE8n5zvlt"
  5308. },
  5309. {
  5310. "__type__": "cc.Node",
  5311. "_name": "image",
  5312. "_objFlags": 0,
  5313. "__editorExtras__": {},
  5314. "_parent": {
  5315. "__id__": 131
  5316. },
  5317. "_children": [],
  5318. "_active": true,
  5319. "_components": [
  5320. {
  5321. "__id__": 133
  5322. },
  5323. {
  5324. "__id__": 134
  5325. }
  5326. ],
  5327. "_prefab": null,
  5328. "_lpos": {
  5329. "__type__": "cc.Vec3",
  5330. "x": -108.615,
  5331. "y": 0,
  5332. "z": 0
  5333. },
  5334. "_lrot": {
  5335. "__type__": "cc.Quat",
  5336. "x": 0,
  5337. "y": 0,
  5338. "z": 0,
  5339. "w": 1
  5340. },
  5341. "_lscale": {
  5342. "__type__": "cc.Vec3",
  5343. "x": 1,
  5344. "y": 1,
  5345. "z": 1
  5346. },
  5347. "_mobility": 0,
  5348. "_layer": 33554432,
  5349. "_euler": {
  5350. "__type__": "cc.Vec3",
  5351. "x": 0,
  5352. "y": 0,
  5353. "z": 0
  5354. },
  5355. "_id": "110iagJ1xCVpwZXdj7Atz1"
  5356. },
  5357. {
  5358. "__type__": "cc.UITransform",
  5359. "_name": "",
  5360. "_objFlags": 0,
  5361. "__editorExtras__": {},
  5362. "node": {
  5363. "__id__": 132
  5364. },
  5365. "_enabled": true,
  5366. "__prefab": null,
  5367. "_contentSize": {
  5368. "__type__": "cc.Size",
  5369. "width": 40,
  5370. "height": 40
  5371. },
  5372. "_anchorPoint": {
  5373. "__type__": "cc.Vec2",
  5374. "x": 0.5,
  5375. "y": 0.5
  5376. },
  5377. "_id": "fcbyqGP4NMcrt/V380NIZw"
  5378. },
  5379. {
  5380. "__type__": "cc.Sprite",
  5381. "_name": "",
  5382. "_objFlags": 0,
  5383. "__editorExtras__": {},
  5384. "node": {
  5385. "__id__": 132
  5386. },
  5387. "_enabled": true,
  5388. "__prefab": null,
  5389. "_customMaterial": null,
  5390. "_srcBlendFactor": 2,
  5391. "_dstBlendFactor": 4,
  5392. "_color": {
  5393. "__type__": "cc.Color",
  5394. "r": 255,
  5395. "g": 255,
  5396. "b": 255,
  5397. "a": 255
  5398. },
  5399. "_spriteFrame": {
  5400. "__uuid__": "5353ee01-7e47-43d8-b312-ba40cac746e1@f9941",
  5401. "__expectedType__": "cc.SpriteFrame"
  5402. },
  5403. "_type": 0,
  5404. "_fillType": 0,
  5405. "_sizeMode": 0,
  5406. "_fillCenter": {
  5407. "__type__": "cc.Vec2",
  5408. "x": 0,
  5409. "y": 0
  5410. },
  5411. "_fillStart": 0,
  5412. "_fillRange": 0,
  5413. "_isTrimmedMode": true,
  5414. "_useGrayscale": false,
  5415. "_atlas": null,
  5416. "_id": "f0BH3iOYVEdo8yb5HWdqCV"
  5417. },
  5418. {
  5419. "__type__": "cc.Node",
  5420. "_name": "Order",
  5421. "_objFlags": 0,
  5422. "__editorExtras__": {},
  5423. "_parent": {
  5424. "__id__": 131
  5425. },
  5426. "_children": [],
  5427. "_active": true,
  5428. "_components": [
  5429. {
  5430. "__id__": 136
  5431. },
  5432. {
  5433. "__id__": 137
  5434. }
  5435. ],
  5436. "_prefab": null,
  5437. "_lpos": {
  5438. "__type__": "cc.Vec3",
  5439. "x": -182.693,
  5440. "y": 0,
  5441. "z": 0
  5442. },
  5443. "_lrot": {
  5444. "__type__": "cc.Quat",
  5445. "x": 0,
  5446. "y": 0,
  5447. "z": 0,
  5448. "w": 1
  5449. },
  5450. "_lscale": {
  5451. "__type__": "cc.Vec3",
  5452. "x": 1,
  5453. "y": 1,
  5454. "z": 1
  5455. },
  5456. "_mobility": 0,
  5457. "_layer": 33554432,
  5458. "_euler": {
  5459. "__type__": "cc.Vec3",
  5460. "x": 0,
  5461. "y": 0,
  5462. "z": 0
  5463. },
  5464. "_id": "3awUss629NOptE2E3CRQX+"
  5465. },
  5466. {
  5467. "__type__": "cc.UITransform",
  5468. "_name": "",
  5469. "_objFlags": 0,
  5470. "__editorExtras__": {},
  5471. "node": {
  5472. "__id__": 135
  5473. },
  5474. "_enabled": true,
  5475. "__prefab": null,
  5476. "_contentSize": {
  5477. "__type__": "cc.Size",
  5478. "width": 11.123046875,
  5479. "height": 50.4
  5480. },
  5481. "_anchorPoint": {
  5482. "__type__": "cc.Vec2",
  5483. "x": 0,
  5484. "y": 0.5
  5485. },
  5486. "_id": "d2b/pYUS9FhIkmyr7mnt16"
  5487. },
  5488. {
  5489. "__type__": "cc.Label",
  5490. "_name": "",
  5491. "_objFlags": 0,
  5492. "__editorExtras__": {},
  5493. "node": {
  5494. "__id__": 135
  5495. },
  5496. "_enabled": true,
  5497. "__prefab": null,
  5498. "_customMaterial": null,
  5499. "_srcBlendFactor": 2,
  5500. "_dstBlendFactor": 4,
  5501. "_color": {
  5502. "__type__": "cc.Color",
  5503. "r": 0,
  5504. "g": 0,
  5505. "b": 0,
  5506. "a": 255
  5507. },
  5508. "_string": "1",
  5509. "_horizontalAlign": 1,
  5510. "_verticalAlign": 1,
  5511. "_actualFontSize": 20,
  5512. "_fontSize": 20,
  5513. "_fontFamily": "Arial",
  5514. "_lineHeight": 40,
  5515. "_overflow": 0,
  5516. "_enableWrapText": true,
  5517. "_font": null,
  5518. "_isSystemFontUsed": true,
  5519. "_spacingX": 0,
  5520. "_isItalic": false,
  5521. "_isBold": false,
  5522. "_isUnderline": false,
  5523. "_underlineHeight": 2,
  5524. "_cacheMode": 0,
  5525. "_enableOutline": false,
  5526. "_outlineColor": {
  5527. "__type__": "cc.Color",
  5528. "r": 0,
  5529. "g": 0,
  5530. "b": 0,
  5531. "a": 255
  5532. },
  5533. "_outlineWidth": 2,
  5534. "_enableShadow": false,
  5535. "_shadowColor": {
  5536. "__type__": "cc.Color",
  5537. "r": 0,
  5538. "g": 0,
  5539. "b": 0,
  5540. "a": 255
  5541. },
  5542. "_shadowOffset": {
  5543. "__type__": "cc.Vec2",
  5544. "x": 2,
  5545. "y": 2
  5546. },
  5547. "_shadowBlur": 2,
  5548. "_id": "11fbl9kkFEzru+rSPF8Li1"
  5549. },
  5550. {
  5551. "__type__": "cc.Node",
  5552. "_name": "NickName",
  5553. "_objFlags": 0,
  5554. "__editorExtras__": {},
  5555. "_parent": {
  5556. "__id__": 131
  5557. },
  5558. "_children": [],
  5559. "_active": true,
  5560. "_components": [
  5561. {
  5562. "__id__": 139
  5563. },
  5564. {
  5565. "__id__": 140
  5566. }
  5567. ],
  5568. "_prefab": null,
  5569. "_lpos": {
  5570. "__type__": "cc.Vec3",
  5571. "x": -76.968,
  5572. "y": 0,
  5573. "z": 0
  5574. },
  5575. "_lrot": {
  5576. "__type__": "cc.Quat",
  5577. "x": 0,
  5578. "y": 0,
  5579. "z": 0,
  5580. "w": 1
  5581. },
  5582. "_lscale": {
  5583. "__type__": "cc.Vec3",
  5584. "x": 1,
  5585. "y": 1,
  5586. "z": 1
  5587. },
  5588. "_mobility": 0,
  5589. "_layer": 33554432,
  5590. "_euler": {
  5591. "__type__": "cc.Vec3",
  5592. "x": 0,
  5593. "y": 0,
  5594. "z": 0
  5595. },
  5596. "_id": "0e+8Bcp9NGa4h+PCDvaV/B"
  5597. },
  5598. {
  5599. "__type__": "cc.UITransform",
  5600. "_name": "",
  5601. "_objFlags": 0,
  5602. "__editorExtras__": {},
  5603. "node": {
  5604. "__id__": 138
  5605. },
  5606. "_enabled": true,
  5607. "__prefab": null,
  5608. "_contentSize": {
  5609. "__type__": "cc.Size",
  5610. "width": 40,
  5611. "height": 54.4
  5612. },
  5613. "_anchorPoint": {
  5614. "__type__": "cc.Vec2",
  5615. "x": 0,
  5616. "y": 0.5
  5617. },
  5618. "_id": "baPysbxXxBx4wJDB7Rrpzl"
  5619. },
  5620. {
  5621. "__type__": "cc.Label",
  5622. "_name": "",
  5623. "_objFlags": 0,
  5624. "__editorExtras__": {},
  5625. "node": {
  5626. "__id__": 138
  5627. },
  5628. "_enabled": true,
  5629. "__prefab": null,
  5630. "_customMaterial": null,
  5631. "_srcBlendFactor": 2,
  5632. "_dstBlendFactor": 4,
  5633. "_color": {
  5634. "__type__": "cc.Color",
  5635. "r": 255,
  5636. "g": 255,
  5637. "b": 255,
  5638. "a": 255
  5639. },
  5640. "_string": "游客",
  5641. "_horizontalAlign": 1,
  5642. "_verticalAlign": 1,
  5643. "_actualFontSize": 18,
  5644. "_fontSize": 18,
  5645. "_fontFamily": "Arial",
  5646. "_lineHeight": 40,
  5647. "_overflow": 0,
  5648. "_enableWrapText": true,
  5649. "_font": null,
  5650. "_isSystemFontUsed": true,
  5651. "_spacingX": 0,
  5652. "_isItalic": false,
  5653. "_isBold": false,
  5654. "_isUnderline": false,
  5655. "_underlineHeight": 2,
  5656. "_cacheMode": 0,
  5657. "_enableOutline": true,
  5658. "_outlineColor": {
  5659. "__type__": "cc.Color",
  5660. "r": 0,
  5661. "g": 0,
  5662. "b": 0,
  5663. "a": 255
  5664. },
  5665. "_outlineWidth": 2,
  5666. "_enableShadow": false,
  5667. "_shadowColor": {
  5668. "__type__": "cc.Color",
  5669. "r": 0,
  5670. "g": 0,
  5671. "b": 0,
  5672. "a": 255
  5673. },
  5674. "_shadowOffset": {
  5675. "__type__": "cc.Vec2",
  5676. "x": 2,
  5677. "y": 2
  5678. },
  5679. "_shadowBlur": 2,
  5680. "_id": "1cvjFbq8NJtpn2a9WQia4+"
  5681. },
  5682. {
  5683. "__type__": "cc.Node",
  5684. "_name": "Score",
  5685. "_objFlags": 0,
  5686. "__editorExtras__": {},
  5687. "_parent": {
  5688. "__id__": 131
  5689. },
  5690. "_children": [],
  5691. "_active": true,
  5692. "_components": [
  5693. {
  5694. "__id__": 142
  5695. },
  5696. {
  5697. "__id__": 143
  5698. }
  5699. ],
  5700. "_prefab": null,
  5701. "_lpos": {
  5702. "__type__": "cc.Vec3",
  5703. "x": 182.887,
  5704. "y": 0,
  5705. "z": 0
  5706. },
  5707. "_lrot": {
  5708. "__type__": "cc.Quat",
  5709. "x": 0,
  5710. "y": 0,
  5711. "z": 0,
  5712. "w": 1
  5713. },
  5714. "_lscale": {
  5715. "__type__": "cc.Vec3",
  5716. "x": 1,
  5717. "y": 1,
  5718. "z": 1
  5719. },
  5720. "_mobility": 0,
  5721. "_layer": 33554432,
  5722. "_euler": {
  5723. "__type__": "cc.Vec3",
  5724. "x": 0,
  5725. "y": 0,
  5726. "z": 0
  5727. },
  5728. "_id": "e5gk2V2L5O049WLWc+R8CB"
  5729. },
  5730. {
  5731. "__type__": "cc.UITransform",
  5732. "_name": "",
  5733. "_objFlags": 0,
  5734. "__editorExtras__": {},
  5735. "node": {
  5736. "__id__": 141
  5737. },
  5738. "_enabled": true,
  5739. "__prefab": null,
  5740. "_contentSize": {
  5741. "__type__": "cc.Size",
  5742. "width": 80.0859375,
  5743. "height": 50.4
  5744. },
  5745. "_anchorPoint": {
  5746. "__type__": "cc.Vec2",
  5747. "x": 1,
  5748. "y": 0.5
  5749. },
  5750. "_id": "afVHn3j4dHvZURBDxa6ZBJ"
  5751. },
  5752. {
  5753. "__type__": "cc.Label",
  5754. "_name": "",
  5755. "_objFlags": 0,
  5756. "__editorExtras__": {},
  5757. "node": {
  5758. "__id__": 141
  5759. },
  5760. "_enabled": true,
  5761. "__prefab": null,
  5762. "_customMaterial": null,
  5763. "_srcBlendFactor": 2,
  5764. "_dstBlendFactor": 4,
  5765. "_color": {
  5766. "__type__": "cc.Color",
  5767. "r": 0,
  5768. "g": 0,
  5769. "b": 0,
  5770. "a": 255
  5771. },
  5772. "_string": "12345644",
  5773. "_horizontalAlign": 1,
  5774. "_verticalAlign": 1,
  5775. "_actualFontSize": 18,
  5776. "_fontSize": 18,
  5777. "_fontFamily": "Arial",
  5778. "_lineHeight": 40,
  5779. "_overflow": 0,
  5780. "_enableWrapText": true,
  5781. "_font": null,
  5782. "_isSystemFontUsed": true,
  5783. "_spacingX": 0,
  5784. "_isItalic": false,
  5785. "_isBold": true,
  5786. "_isUnderline": false,
  5787. "_underlineHeight": 2,
  5788. "_cacheMode": 0,
  5789. "_enableOutline": false,
  5790. "_outlineColor": {
  5791. "__type__": "cc.Color",
  5792. "r": 0,
  5793. "g": 0,
  5794. "b": 0,
  5795. "a": 255
  5796. },
  5797. "_outlineWidth": 2,
  5798. "_enableShadow": false,
  5799. "_shadowColor": {
  5800. "__type__": "cc.Color",
  5801. "r": 0,
  5802. "g": 0,
  5803. "b": 0,
  5804. "a": 255
  5805. },
  5806. "_shadowOffset": {
  5807. "__type__": "cc.Vec2",
  5808. "x": 2,
  5809. "y": 2
  5810. },
  5811. "_shadowBlur": 2,
  5812. "_id": "1eRdw4RThEMa4Cq7fFZ/Df"
  5813. },
  5814. {
  5815. "__type__": "cc.UITransform",
  5816. "_name": "",
  5817. "_objFlags": 0,
  5818. "__editorExtras__": {},
  5819. "node": {
  5820. "__id__": 131
  5821. },
  5822. "_enabled": true,
  5823. "__prefab": null,
  5824. "_contentSize": {
  5825. "__type__": "cc.Size",
  5826. "width": 400,
  5827. "height": 60
  5828. },
  5829. "_anchorPoint": {
  5830. "__type__": "cc.Vec2",
  5831. "x": 0.5,
  5832. "y": 0.5
  5833. },
  5834. "_id": "731iSrOy1MK6Uq8RjFS4yK"
  5835. },
  5836. {
  5837. "__type__": "cc.Sprite",
  5838. "_name": "",
  5839. "_objFlags": 0,
  5840. "__editorExtras__": {},
  5841. "node": {
  5842. "__id__": 131
  5843. },
  5844. "_enabled": true,
  5845. "__prefab": null,
  5846. "_customMaterial": null,
  5847. "_srcBlendFactor": 2,
  5848. "_dstBlendFactor": 4,
  5849. "_color": {
  5850. "__type__": "cc.Color",
  5851. "r": 255,
  5852. "g": 255,
  5853. "b": 255,
  5854. "a": 255
  5855. },
  5856. "_spriteFrame": {
  5857. "__uuid__": "48234cb3-8e8c-40bf-9c21-0a66f352c05e@f9941",
  5858. "__expectedType__": "cc.SpriteFrame"
  5859. },
  5860. "_type": 0,
  5861. "_fillType": 0,
  5862. "_sizeMode": 1,
  5863. "_fillCenter": {
  5864. "__type__": "cc.Vec2",
  5865. "x": 0,
  5866. "y": 0
  5867. },
  5868. "_fillStart": 0,
  5869. "_fillRange": 0,
  5870. "_isTrimmedMode": true,
  5871. "_useGrayscale": false,
  5872. "_atlas": null,
  5873. "_id": "b4kVf8h55ISZEheAYzcLdc"
  5874. },
  5875. {
  5876. "__type__": "cc.Node",
  5877. "_name": "item-005",
  5878. "_objFlags": 0,
  5879. "__editorExtras__": {},
  5880. "_parent": {
  5881. "__id__": 70
  5882. },
  5883. "_children": [
  5884. {
  5885. "__id__": 147
  5886. },
  5887. {
  5888. "__id__": 150
  5889. },
  5890. {
  5891. "__id__": 153
  5892. },
  5893. {
  5894. "__id__": 156
  5895. }
  5896. ],
  5897. "_active": false,
  5898. "_components": [
  5899. {
  5900. "__id__": 159
  5901. },
  5902. {
  5903. "__id__": 160
  5904. }
  5905. ],
  5906. "_prefab": null,
  5907. "_lpos": {
  5908. "__type__": "cc.Vec3",
  5909. "x": 0,
  5910. "y": 228.99473684210523,
  5911. "z": 0
  5912. },
  5913. "_lrot": {
  5914. "__type__": "cc.Quat",
  5915. "x": 0,
  5916. "y": 0,
  5917. "z": 0,
  5918. "w": 1
  5919. },
  5920. "_lscale": {
  5921. "__type__": "cc.Vec3",
  5922. "x": 1,
  5923. "y": 1,
  5924. "z": 1
  5925. },
  5926. "_mobility": 0,
  5927. "_layer": 33554432,
  5928. "_euler": {
  5929. "__type__": "cc.Vec3",
  5930. "x": 0,
  5931. "y": 0,
  5932. "z": 0
  5933. },
  5934. "_id": "22o55+bwpOqYqM+XwTS9c8"
  5935. },
  5936. {
  5937. "__type__": "cc.Node",
  5938. "_name": "image",
  5939. "_objFlags": 0,
  5940. "__editorExtras__": {},
  5941. "_parent": {
  5942. "__id__": 146
  5943. },
  5944. "_children": [],
  5945. "_active": true,
  5946. "_components": [
  5947. {
  5948. "__id__": 148
  5949. },
  5950. {
  5951. "__id__": 149
  5952. }
  5953. ],
  5954. "_prefab": null,
  5955. "_lpos": {
  5956. "__type__": "cc.Vec3",
  5957. "x": -108.615,
  5958. "y": 0,
  5959. "z": 0
  5960. },
  5961. "_lrot": {
  5962. "__type__": "cc.Quat",
  5963. "x": 0,
  5964. "y": 0,
  5965. "z": 0,
  5966. "w": 1
  5967. },
  5968. "_lscale": {
  5969. "__type__": "cc.Vec3",
  5970. "x": 1,
  5971. "y": 1,
  5972. "z": 1
  5973. },
  5974. "_mobility": 0,
  5975. "_layer": 33554432,
  5976. "_euler": {
  5977. "__type__": "cc.Vec3",
  5978. "x": 0,
  5979. "y": 0,
  5980. "z": 0
  5981. },
  5982. "_id": "c8id63NhtCmIvF2pf4mGT5"
  5983. },
  5984. {
  5985. "__type__": "cc.UITransform",
  5986. "_name": "",
  5987. "_objFlags": 0,
  5988. "__editorExtras__": {},
  5989. "node": {
  5990. "__id__": 147
  5991. },
  5992. "_enabled": true,
  5993. "__prefab": null,
  5994. "_contentSize": {
  5995. "__type__": "cc.Size",
  5996. "width": 40,
  5997. "height": 40
  5998. },
  5999. "_anchorPoint": {
  6000. "__type__": "cc.Vec2",
  6001. "x": 0.5,
  6002. "y": 0.5
  6003. },
  6004. "_id": "c144amAfJGX79UedekQLRJ"
  6005. },
  6006. {
  6007. "__type__": "cc.Sprite",
  6008. "_name": "",
  6009. "_objFlags": 0,
  6010. "__editorExtras__": {},
  6011. "node": {
  6012. "__id__": 147
  6013. },
  6014. "_enabled": true,
  6015. "__prefab": null,
  6016. "_customMaterial": null,
  6017. "_srcBlendFactor": 2,
  6018. "_dstBlendFactor": 4,
  6019. "_color": {
  6020. "__type__": "cc.Color",
  6021. "r": 255,
  6022. "g": 255,
  6023. "b": 255,
  6024. "a": 255
  6025. },
  6026. "_spriteFrame": {
  6027. "__uuid__": "5353ee01-7e47-43d8-b312-ba40cac746e1@f9941",
  6028. "__expectedType__": "cc.SpriteFrame"
  6029. },
  6030. "_type": 0,
  6031. "_fillType": 0,
  6032. "_sizeMode": 0,
  6033. "_fillCenter": {
  6034. "__type__": "cc.Vec2",
  6035. "x": 0,
  6036. "y": 0
  6037. },
  6038. "_fillStart": 0,
  6039. "_fillRange": 0,
  6040. "_isTrimmedMode": true,
  6041. "_useGrayscale": false,
  6042. "_atlas": null,
  6043. "_id": "4dE1fqi9hFS6kg19T1k4Zt"
  6044. },
  6045. {
  6046. "__type__": "cc.Node",
  6047. "_name": "Order",
  6048. "_objFlags": 0,
  6049. "__editorExtras__": {},
  6050. "_parent": {
  6051. "__id__": 146
  6052. },
  6053. "_children": [],
  6054. "_active": true,
  6055. "_components": [
  6056. {
  6057. "__id__": 151
  6058. },
  6059. {
  6060. "__id__": 152
  6061. }
  6062. ],
  6063. "_prefab": null,
  6064. "_lpos": {
  6065. "__type__": "cc.Vec3",
  6066. "x": -182.693,
  6067. "y": 0,
  6068. "z": 0
  6069. },
  6070. "_lrot": {
  6071. "__type__": "cc.Quat",
  6072. "x": 0,
  6073. "y": 0,
  6074. "z": 0,
  6075. "w": 1
  6076. },
  6077. "_lscale": {
  6078. "__type__": "cc.Vec3",
  6079. "x": 1,
  6080. "y": 1,
  6081. "z": 1
  6082. },
  6083. "_mobility": 0,
  6084. "_layer": 33554432,
  6085. "_euler": {
  6086. "__type__": "cc.Vec3",
  6087. "x": 0,
  6088. "y": 0,
  6089. "z": 0
  6090. },
  6091. "_id": "46vv623bNDCqxRcKDYbrEe"
  6092. },
  6093. {
  6094. "__type__": "cc.UITransform",
  6095. "_name": "",
  6096. "_objFlags": 0,
  6097. "__editorExtras__": {},
  6098. "node": {
  6099. "__id__": 150
  6100. },
  6101. "_enabled": true,
  6102. "__prefab": null,
  6103. "_contentSize": {
  6104. "__type__": "cc.Size",
  6105. "width": 11.123046875,
  6106. "height": 50.4
  6107. },
  6108. "_anchorPoint": {
  6109. "__type__": "cc.Vec2",
  6110. "x": 0,
  6111. "y": 0.5
  6112. },
  6113. "_id": "17Iojz5k1C7p72C1z9lhYQ"
  6114. },
  6115. {
  6116. "__type__": "cc.Label",
  6117. "_name": "",
  6118. "_objFlags": 0,
  6119. "__editorExtras__": {},
  6120. "node": {
  6121. "__id__": 150
  6122. },
  6123. "_enabled": true,
  6124. "__prefab": null,
  6125. "_customMaterial": null,
  6126. "_srcBlendFactor": 2,
  6127. "_dstBlendFactor": 4,
  6128. "_color": {
  6129. "__type__": "cc.Color",
  6130. "r": 0,
  6131. "g": 0,
  6132. "b": 0,
  6133. "a": 255
  6134. },
  6135. "_string": "1",
  6136. "_horizontalAlign": 1,
  6137. "_verticalAlign": 1,
  6138. "_actualFontSize": 20,
  6139. "_fontSize": 20,
  6140. "_fontFamily": "Arial",
  6141. "_lineHeight": 40,
  6142. "_overflow": 0,
  6143. "_enableWrapText": true,
  6144. "_font": null,
  6145. "_isSystemFontUsed": true,
  6146. "_spacingX": 0,
  6147. "_isItalic": false,
  6148. "_isBold": false,
  6149. "_isUnderline": false,
  6150. "_underlineHeight": 2,
  6151. "_cacheMode": 0,
  6152. "_enableOutline": false,
  6153. "_outlineColor": {
  6154. "__type__": "cc.Color",
  6155. "r": 0,
  6156. "g": 0,
  6157. "b": 0,
  6158. "a": 255
  6159. },
  6160. "_outlineWidth": 2,
  6161. "_enableShadow": false,
  6162. "_shadowColor": {
  6163. "__type__": "cc.Color",
  6164. "r": 0,
  6165. "g": 0,
  6166. "b": 0,
  6167. "a": 255
  6168. },
  6169. "_shadowOffset": {
  6170. "__type__": "cc.Vec2",
  6171. "x": 2,
  6172. "y": 2
  6173. },
  6174. "_shadowBlur": 2,
  6175. "_id": "89IIF5jNVDyr/hfkhcl3l2"
  6176. },
  6177. {
  6178. "__type__": "cc.Node",
  6179. "_name": "NickName",
  6180. "_objFlags": 0,
  6181. "__editorExtras__": {},
  6182. "_parent": {
  6183. "__id__": 146
  6184. },
  6185. "_children": [],
  6186. "_active": true,
  6187. "_components": [
  6188. {
  6189. "__id__": 154
  6190. },
  6191. {
  6192. "__id__": 155
  6193. }
  6194. ],
  6195. "_prefab": null,
  6196. "_lpos": {
  6197. "__type__": "cc.Vec3",
  6198. "x": -76.968,
  6199. "y": 0,
  6200. "z": 0
  6201. },
  6202. "_lrot": {
  6203. "__type__": "cc.Quat",
  6204. "x": 0,
  6205. "y": 0,
  6206. "z": 0,
  6207. "w": 1
  6208. },
  6209. "_lscale": {
  6210. "__type__": "cc.Vec3",
  6211. "x": 1,
  6212. "y": 1,
  6213. "z": 1
  6214. },
  6215. "_mobility": 0,
  6216. "_layer": 33554432,
  6217. "_euler": {
  6218. "__type__": "cc.Vec3",
  6219. "x": 0,
  6220. "y": 0,
  6221. "z": 0
  6222. },
  6223. "_id": "2ctHPOpLxES4jbOfFqbKJa"
  6224. },
  6225. {
  6226. "__type__": "cc.UITransform",
  6227. "_name": "",
  6228. "_objFlags": 0,
  6229. "__editorExtras__": {},
  6230. "node": {
  6231. "__id__": 153
  6232. },
  6233. "_enabled": true,
  6234. "__prefab": null,
  6235. "_contentSize": {
  6236. "__type__": "cc.Size",
  6237. "width": 40,
  6238. "height": 54.4
  6239. },
  6240. "_anchorPoint": {
  6241. "__type__": "cc.Vec2",
  6242. "x": 0,
  6243. "y": 0.5
  6244. },
  6245. "_id": "43Coh2lq1AZ5y36yUS31Mb"
  6246. },
  6247. {
  6248. "__type__": "cc.Label",
  6249. "_name": "",
  6250. "_objFlags": 0,
  6251. "__editorExtras__": {},
  6252. "node": {
  6253. "__id__": 153
  6254. },
  6255. "_enabled": true,
  6256. "__prefab": null,
  6257. "_customMaterial": null,
  6258. "_srcBlendFactor": 2,
  6259. "_dstBlendFactor": 4,
  6260. "_color": {
  6261. "__type__": "cc.Color",
  6262. "r": 255,
  6263. "g": 255,
  6264. "b": 255,
  6265. "a": 255
  6266. },
  6267. "_string": "游客",
  6268. "_horizontalAlign": 1,
  6269. "_verticalAlign": 1,
  6270. "_actualFontSize": 18,
  6271. "_fontSize": 18,
  6272. "_fontFamily": "Arial",
  6273. "_lineHeight": 40,
  6274. "_overflow": 0,
  6275. "_enableWrapText": true,
  6276. "_font": null,
  6277. "_isSystemFontUsed": true,
  6278. "_spacingX": 0,
  6279. "_isItalic": false,
  6280. "_isBold": false,
  6281. "_isUnderline": false,
  6282. "_underlineHeight": 2,
  6283. "_cacheMode": 0,
  6284. "_enableOutline": true,
  6285. "_outlineColor": {
  6286. "__type__": "cc.Color",
  6287. "r": 0,
  6288. "g": 0,
  6289. "b": 0,
  6290. "a": 255
  6291. },
  6292. "_outlineWidth": 2,
  6293. "_enableShadow": false,
  6294. "_shadowColor": {
  6295. "__type__": "cc.Color",
  6296. "r": 0,
  6297. "g": 0,
  6298. "b": 0,
  6299. "a": 255
  6300. },
  6301. "_shadowOffset": {
  6302. "__type__": "cc.Vec2",
  6303. "x": 2,
  6304. "y": 2
  6305. },
  6306. "_shadowBlur": 2,
  6307. "_id": "0bgblDcHNCA7u4V5PWYndW"
  6308. },
  6309. {
  6310. "__type__": "cc.Node",
  6311. "_name": "Score",
  6312. "_objFlags": 0,
  6313. "__editorExtras__": {},
  6314. "_parent": {
  6315. "__id__": 146
  6316. },
  6317. "_children": [],
  6318. "_active": true,
  6319. "_components": [
  6320. {
  6321. "__id__": 157
  6322. },
  6323. {
  6324. "__id__": 158
  6325. }
  6326. ],
  6327. "_prefab": null,
  6328. "_lpos": {
  6329. "__type__": "cc.Vec3",
  6330. "x": 182.887,
  6331. "y": 0,
  6332. "z": 0
  6333. },
  6334. "_lrot": {
  6335. "__type__": "cc.Quat",
  6336. "x": 0,
  6337. "y": 0,
  6338. "z": 0,
  6339. "w": 1
  6340. },
  6341. "_lscale": {
  6342. "__type__": "cc.Vec3",
  6343. "x": 1,
  6344. "y": 1,
  6345. "z": 1
  6346. },
  6347. "_mobility": 0,
  6348. "_layer": 33554432,
  6349. "_euler": {
  6350. "__type__": "cc.Vec3",
  6351. "x": 0,
  6352. "y": 0,
  6353. "z": 0
  6354. },
  6355. "_id": "45nwmkb3VPAJS2QGnp1aHj"
  6356. },
  6357. {
  6358. "__type__": "cc.UITransform",
  6359. "_name": "",
  6360. "_objFlags": 0,
  6361. "__editorExtras__": {},
  6362. "node": {
  6363. "__id__": 156
  6364. },
  6365. "_enabled": true,
  6366. "__prefab": null,
  6367. "_contentSize": {
  6368. "__type__": "cc.Size",
  6369. "width": 80.0859375,
  6370. "height": 50.4
  6371. },
  6372. "_anchorPoint": {
  6373. "__type__": "cc.Vec2",
  6374. "x": 1,
  6375. "y": 0.5
  6376. },
  6377. "_id": "77iM8NoqRIvJUWYR6VbG+k"
  6378. },
  6379. {
  6380. "__type__": "cc.Label",
  6381. "_name": "",
  6382. "_objFlags": 0,
  6383. "__editorExtras__": {},
  6384. "node": {
  6385. "__id__": 156
  6386. },
  6387. "_enabled": true,
  6388. "__prefab": null,
  6389. "_customMaterial": null,
  6390. "_srcBlendFactor": 2,
  6391. "_dstBlendFactor": 4,
  6392. "_color": {
  6393. "__type__": "cc.Color",
  6394. "r": 0,
  6395. "g": 0,
  6396. "b": 0,
  6397. "a": 255
  6398. },
  6399. "_string": "12345644",
  6400. "_horizontalAlign": 1,
  6401. "_verticalAlign": 1,
  6402. "_actualFontSize": 18,
  6403. "_fontSize": 18,
  6404. "_fontFamily": "Arial",
  6405. "_lineHeight": 40,
  6406. "_overflow": 0,
  6407. "_enableWrapText": true,
  6408. "_font": null,
  6409. "_isSystemFontUsed": true,
  6410. "_spacingX": 0,
  6411. "_isItalic": false,
  6412. "_isBold": true,
  6413. "_isUnderline": false,
  6414. "_underlineHeight": 2,
  6415. "_cacheMode": 0,
  6416. "_enableOutline": false,
  6417. "_outlineColor": {
  6418. "__type__": "cc.Color",
  6419. "r": 0,
  6420. "g": 0,
  6421. "b": 0,
  6422. "a": 255
  6423. },
  6424. "_outlineWidth": 2,
  6425. "_enableShadow": false,
  6426. "_shadowColor": {
  6427. "__type__": "cc.Color",
  6428. "r": 0,
  6429. "g": 0,
  6430. "b": 0,
  6431. "a": 255
  6432. },
  6433. "_shadowOffset": {
  6434. "__type__": "cc.Vec2",
  6435. "x": 2,
  6436. "y": 2
  6437. },
  6438. "_shadowBlur": 2,
  6439. "_id": "4bedbbRrNOe7eYZDygDXui"
  6440. },
  6441. {
  6442. "__type__": "cc.UITransform",
  6443. "_name": "",
  6444. "_objFlags": 0,
  6445. "__editorExtras__": {},
  6446. "node": {
  6447. "__id__": 146
  6448. },
  6449. "_enabled": true,
  6450. "__prefab": null,
  6451. "_contentSize": {
  6452. "__type__": "cc.Size",
  6453. "width": 400,
  6454. "height": 60
  6455. },
  6456. "_anchorPoint": {
  6457. "__type__": "cc.Vec2",
  6458. "x": 0.5,
  6459. "y": 0.5
  6460. },
  6461. "_id": "544hq5RpBNGaw38unoCRgI"
  6462. },
  6463. {
  6464. "__type__": "cc.Sprite",
  6465. "_name": "",
  6466. "_objFlags": 0,
  6467. "__editorExtras__": {},
  6468. "node": {
  6469. "__id__": 146
  6470. },
  6471. "_enabled": true,
  6472. "__prefab": null,
  6473. "_customMaterial": null,
  6474. "_srcBlendFactor": 2,
  6475. "_dstBlendFactor": 4,
  6476. "_color": {
  6477. "__type__": "cc.Color",
  6478. "r": 255,
  6479. "g": 255,
  6480. "b": 255,
  6481. "a": 255
  6482. },
  6483. "_spriteFrame": {
  6484. "__uuid__": "48234cb3-8e8c-40bf-9c21-0a66f352c05e@f9941",
  6485. "__expectedType__": "cc.SpriteFrame"
  6486. },
  6487. "_type": 0,
  6488. "_fillType": 0,
  6489. "_sizeMode": 1,
  6490. "_fillCenter": {
  6491. "__type__": "cc.Vec2",
  6492. "x": 0,
  6493. "y": 0
  6494. },
  6495. "_fillStart": 0,
  6496. "_fillRange": 0,
  6497. "_isTrimmedMode": true,
  6498. "_useGrayscale": false,
  6499. "_atlas": null,
  6500. "_id": "2eJUJW0+VBu5zzS80u/fER"
  6501. },
  6502. {
  6503. "__type__": "cc.Node",
  6504. "_name": "item-006",
  6505. "_objFlags": 0,
  6506. "__editorExtras__": {},
  6507. "_parent": {
  6508. "__id__": 70
  6509. },
  6510. "_children": [
  6511. {
  6512. "__id__": 162
  6513. },
  6514. {
  6515. "__id__": 165
  6516. },
  6517. {
  6518. "__id__": 168
  6519. },
  6520. {
  6521. "__id__": 171
  6522. }
  6523. ],
  6524. "_active": false,
  6525. "_components": [
  6526. {
  6527. "__id__": 174
  6528. },
  6529. {
  6530. "__id__": 175
  6531. }
  6532. ],
  6533. "_prefab": null,
  6534. "_lpos": {
  6535. "__type__": "cc.Vec3",
  6536. "x": 0,
  6537. "y": 153.99473684210523,
  6538. "z": 0
  6539. },
  6540. "_lrot": {
  6541. "__type__": "cc.Quat",
  6542. "x": 0,
  6543. "y": 0,
  6544. "z": 0,
  6545. "w": 1
  6546. },
  6547. "_lscale": {
  6548. "__type__": "cc.Vec3",
  6549. "x": 1,
  6550. "y": 1,
  6551. "z": 1
  6552. },
  6553. "_mobility": 0,
  6554. "_layer": 33554432,
  6555. "_euler": {
  6556. "__type__": "cc.Vec3",
  6557. "x": 0,
  6558. "y": 0,
  6559. "z": 0
  6560. },
  6561. "_id": "44G/tJhMtE754Ctkbc1qk+"
  6562. },
  6563. {
  6564. "__type__": "cc.Node",
  6565. "_name": "image",
  6566. "_objFlags": 0,
  6567. "__editorExtras__": {},
  6568. "_parent": {
  6569. "__id__": 161
  6570. },
  6571. "_children": [],
  6572. "_active": true,
  6573. "_components": [
  6574. {
  6575. "__id__": 163
  6576. },
  6577. {
  6578. "__id__": 164
  6579. }
  6580. ],
  6581. "_prefab": null,
  6582. "_lpos": {
  6583. "__type__": "cc.Vec3",
  6584. "x": -108.615,
  6585. "y": 0,
  6586. "z": 0
  6587. },
  6588. "_lrot": {
  6589. "__type__": "cc.Quat",
  6590. "x": 0,
  6591. "y": 0,
  6592. "z": 0,
  6593. "w": 1
  6594. },
  6595. "_lscale": {
  6596. "__type__": "cc.Vec3",
  6597. "x": 1,
  6598. "y": 1,
  6599. "z": 1
  6600. },
  6601. "_mobility": 0,
  6602. "_layer": 33554432,
  6603. "_euler": {
  6604. "__type__": "cc.Vec3",
  6605. "x": 0,
  6606. "y": 0,
  6607. "z": 0
  6608. },
  6609. "_id": "bfu5+OHQVCPYHSGP2DtI9k"
  6610. },
  6611. {
  6612. "__type__": "cc.UITransform",
  6613. "_name": "",
  6614. "_objFlags": 0,
  6615. "__editorExtras__": {},
  6616. "node": {
  6617. "__id__": 162
  6618. },
  6619. "_enabled": true,
  6620. "__prefab": null,
  6621. "_contentSize": {
  6622. "__type__": "cc.Size",
  6623. "width": 40,
  6624. "height": 40
  6625. },
  6626. "_anchorPoint": {
  6627. "__type__": "cc.Vec2",
  6628. "x": 0.5,
  6629. "y": 0.5
  6630. },
  6631. "_id": "299sh1MlBEh7fxFFobqoAM"
  6632. },
  6633. {
  6634. "__type__": "cc.Sprite",
  6635. "_name": "",
  6636. "_objFlags": 0,
  6637. "__editorExtras__": {},
  6638. "node": {
  6639. "__id__": 162
  6640. },
  6641. "_enabled": true,
  6642. "__prefab": null,
  6643. "_customMaterial": null,
  6644. "_srcBlendFactor": 2,
  6645. "_dstBlendFactor": 4,
  6646. "_color": {
  6647. "__type__": "cc.Color",
  6648. "r": 255,
  6649. "g": 255,
  6650. "b": 255,
  6651. "a": 255
  6652. },
  6653. "_spriteFrame": {
  6654. "__uuid__": "5353ee01-7e47-43d8-b312-ba40cac746e1@f9941",
  6655. "__expectedType__": "cc.SpriteFrame"
  6656. },
  6657. "_type": 0,
  6658. "_fillType": 0,
  6659. "_sizeMode": 0,
  6660. "_fillCenter": {
  6661. "__type__": "cc.Vec2",
  6662. "x": 0,
  6663. "y": 0
  6664. },
  6665. "_fillStart": 0,
  6666. "_fillRange": 0,
  6667. "_isTrimmedMode": true,
  6668. "_useGrayscale": false,
  6669. "_atlas": null,
  6670. "_id": "c9oqXbaqJGL6kz4EuzqA3i"
  6671. },
  6672. {
  6673. "__type__": "cc.Node",
  6674. "_name": "Order",
  6675. "_objFlags": 0,
  6676. "__editorExtras__": {},
  6677. "_parent": {
  6678. "__id__": 161
  6679. },
  6680. "_children": [],
  6681. "_active": true,
  6682. "_components": [
  6683. {
  6684. "__id__": 166
  6685. },
  6686. {
  6687. "__id__": 167
  6688. }
  6689. ],
  6690. "_prefab": null,
  6691. "_lpos": {
  6692. "__type__": "cc.Vec3",
  6693. "x": -182.693,
  6694. "y": 0,
  6695. "z": 0
  6696. },
  6697. "_lrot": {
  6698. "__type__": "cc.Quat",
  6699. "x": 0,
  6700. "y": 0,
  6701. "z": 0,
  6702. "w": 1
  6703. },
  6704. "_lscale": {
  6705. "__type__": "cc.Vec3",
  6706. "x": 1,
  6707. "y": 1,
  6708. "z": 1
  6709. },
  6710. "_mobility": 0,
  6711. "_layer": 33554432,
  6712. "_euler": {
  6713. "__type__": "cc.Vec3",
  6714. "x": 0,
  6715. "y": 0,
  6716. "z": 0
  6717. },
  6718. "_id": "38sE5LqipPBJ2rFN+/PAmq"
  6719. },
  6720. {
  6721. "__type__": "cc.UITransform",
  6722. "_name": "",
  6723. "_objFlags": 0,
  6724. "__editorExtras__": {},
  6725. "node": {
  6726. "__id__": 165
  6727. },
  6728. "_enabled": true,
  6729. "__prefab": null,
  6730. "_contentSize": {
  6731. "__type__": "cc.Size",
  6732. "width": 11.123046875,
  6733. "height": 50.4
  6734. },
  6735. "_anchorPoint": {
  6736. "__type__": "cc.Vec2",
  6737. "x": 0,
  6738. "y": 0.5
  6739. },
  6740. "_id": "fa+6QgQYZDVp0Bf+LDHD3u"
  6741. },
  6742. {
  6743. "__type__": "cc.Label",
  6744. "_name": "",
  6745. "_objFlags": 0,
  6746. "__editorExtras__": {},
  6747. "node": {
  6748. "__id__": 165
  6749. },
  6750. "_enabled": true,
  6751. "__prefab": null,
  6752. "_customMaterial": null,
  6753. "_srcBlendFactor": 2,
  6754. "_dstBlendFactor": 4,
  6755. "_color": {
  6756. "__type__": "cc.Color",
  6757. "r": 0,
  6758. "g": 0,
  6759. "b": 0,
  6760. "a": 255
  6761. },
  6762. "_string": "1",
  6763. "_horizontalAlign": 1,
  6764. "_verticalAlign": 1,
  6765. "_actualFontSize": 20,
  6766. "_fontSize": 20,
  6767. "_fontFamily": "Arial",
  6768. "_lineHeight": 40,
  6769. "_overflow": 0,
  6770. "_enableWrapText": true,
  6771. "_font": null,
  6772. "_isSystemFontUsed": true,
  6773. "_spacingX": 0,
  6774. "_isItalic": false,
  6775. "_isBold": false,
  6776. "_isUnderline": false,
  6777. "_underlineHeight": 2,
  6778. "_cacheMode": 0,
  6779. "_enableOutline": false,
  6780. "_outlineColor": {
  6781. "__type__": "cc.Color",
  6782. "r": 0,
  6783. "g": 0,
  6784. "b": 0,
  6785. "a": 255
  6786. },
  6787. "_outlineWidth": 2,
  6788. "_enableShadow": false,
  6789. "_shadowColor": {
  6790. "__type__": "cc.Color",
  6791. "r": 0,
  6792. "g": 0,
  6793. "b": 0,
  6794. "a": 255
  6795. },
  6796. "_shadowOffset": {
  6797. "__type__": "cc.Vec2",
  6798. "x": 2,
  6799. "y": 2
  6800. },
  6801. "_shadowBlur": 2,
  6802. "_id": "22ciAnHeRF3oxChAUVQDBU"
  6803. },
  6804. {
  6805. "__type__": "cc.Node",
  6806. "_name": "NickName",
  6807. "_objFlags": 0,
  6808. "__editorExtras__": {},
  6809. "_parent": {
  6810. "__id__": 161
  6811. },
  6812. "_children": [],
  6813. "_active": true,
  6814. "_components": [
  6815. {
  6816. "__id__": 169
  6817. },
  6818. {
  6819. "__id__": 170
  6820. }
  6821. ],
  6822. "_prefab": null,
  6823. "_lpos": {
  6824. "__type__": "cc.Vec3",
  6825. "x": -76.968,
  6826. "y": 0,
  6827. "z": 0
  6828. },
  6829. "_lrot": {
  6830. "__type__": "cc.Quat",
  6831. "x": 0,
  6832. "y": 0,
  6833. "z": 0,
  6834. "w": 1
  6835. },
  6836. "_lscale": {
  6837. "__type__": "cc.Vec3",
  6838. "x": 1,
  6839. "y": 1,
  6840. "z": 1
  6841. },
  6842. "_mobility": 0,
  6843. "_layer": 33554432,
  6844. "_euler": {
  6845. "__type__": "cc.Vec3",
  6846. "x": 0,
  6847. "y": 0,
  6848. "z": 0
  6849. },
  6850. "_id": "3akhlqRZBG9LfLZdlEGRHP"
  6851. },
  6852. {
  6853. "__type__": "cc.UITransform",
  6854. "_name": "",
  6855. "_objFlags": 0,
  6856. "__editorExtras__": {},
  6857. "node": {
  6858. "__id__": 168
  6859. },
  6860. "_enabled": true,
  6861. "__prefab": null,
  6862. "_contentSize": {
  6863. "__type__": "cc.Size",
  6864. "width": 40,
  6865. "height": 54.4
  6866. },
  6867. "_anchorPoint": {
  6868. "__type__": "cc.Vec2",
  6869. "x": 0,
  6870. "y": 0.5
  6871. },
  6872. "_id": "80CL8jLbRCxaVNNGz1u1Uy"
  6873. },
  6874. {
  6875. "__type__": "cc.Label",
  6876. "_name": "",
  6877. "_objFlags": 0,
  6878. "__editorExtras__": {},
  6879. "node": {
  6880. "__id__": 168
  6881. },
  6882. "_enabled": true,
  6883. "__prefab": null,
  6884. "_customMaterial": null,
  6885. "_srcBlendFactor": 2,
  6886. "_dstBlendFactor": 4,
  6887. "_color": {
  6888. "__type__": "cc.Color",
  6889. "r": 255,
  6890. "g": 255,
  6891. "b": 255,
  6892. "a": 255
  6893. },
  6894. "_string": "游客",
  6895. "_horizontalAlign": 1,
  6896. "_verticalAlign": 1,
  6897. "_actualFontSize": 18,
  6898. "_fontSize": 18,
  6899. "_fontFamily": "Arial",
  6900. "_lineHeight": 40,
  6901. "_overflow": 0,
  6902. "_enableWrapText": true,
  6903. "_font": null,
  6904. "_isSystemFontUsed": true,
  6905. "_spacingX": 0,
  6906. "_isItalic": false,
  6907. "_isBold": false,
  6908. "_isUnderline": false,
  6909. "_underlineHeight": 2,
  6910. "_cacheMode": 0,
  6911. "_enableOutline": true,
  6912. "_outlineColor": {
  6913. "__type__": "cc.Color",
  6914. "r": 0,
  6915. "g": 0,
  6916. "b": 0,
  6917. "a": 255
  6918. },
  6919. "_outlineWidth": 2,
  6920. "_enableShadow": false,
  6921. "_shadowColor": {
  6922. "__type__": "cc.Color",
  6923. "r": 0,
  6924. "g": 0,
  6925. "b": 0,
  6926. "a": 255
  6927. },
  6928. "_shadowOffset": {
  6929. "__type__": "cc.Vec2",
  6930. "x": 2,
  6931. "y": 2
  6932. },
  6933. "_shadowBlur": 2,
  6934. "_id": "3d/C917V1NyqPB56u5QMdx"
  6935. },
  6936. {
  6937. "__type__": "cc.Node",
  6938. "_name": "Score",
  6939. "_objFlags": 0,
  6940. "__editorExtras__": {},
  6941. "_parent": {
  6942. "__id__": 161
  6943. },
  6944. "_children": [],
  6945. "_active": true,
  6946. "_components": [
  6947. {
  6948. "__id__": 172
  6949. },
  6950. {
  6951. "__id__": 173
  6952. }
  6953. ],
  6954. "_prefab": null,
  6955. "_lpos": {
  6956. "__type__": "cc.Vec3",
  6957. "x": 182.887,
  6958. "y": 0,
  6959. "z": 0
  6960. },
  6961. "_lrot": {
  6962. "__type__": "cc.Quat",
  6963. "x": 0,
  6964. "y": 0,
  6965. "z": 0,
  6966. "w": 1
  6967. },
  6968. "_lscale": {
  6969. "__type__": "cc.Vec3",
  6970. "x": 1,
  6971. "y": 1,
  6972. "z": 1
  6973. },
  6974. "_mobility": 0,
  6975. "_layer": 33554432,
  6976. "_euler": {
  6977. "__type__": "cc.Vec3",
  6978. "x": 0,
  6979. "y": 0,
  6980. "z": 0
  6981. },
  6982. "_id": "400KfWqytEJact+SrgGq5v"
  6983. },
  6984. {
  6985. "__type__": "cc.UITransform",
  6986. "_name": "",
  6987. "_objFlags": 0,
  6988. "__editorExtras__": {},
  6989. "node": {
  6990. "__id__": 171
  6991. },
  6992. "_enabled": true,
  6993. "__prefab": null,
  6994. "_contentSize": {
  6995. "__type__": "cc.Size",
  6996. "width": 80.0859375,
  6997. "height": 50.4
  6998. },
  6999. "_anchorPoint": {
  7000. "__type__": "cc.Vec2",
  7001. "x": 1,
  7002. "y": 0.5
  7003. },
  7004. "_id": "517RQE335LGpeANRF6J8nh"
  7005. },
  7006. {
  7007. "__type__": "cc.Label",
  7008. "_name": "",
  7009. "_objFlags": 0,
  7010. "__editorExtras__": {},
  7011. "node": {
  7012. "__id__": 171
  7013. },
  7014. "_enabled": true,
  7015. "__prefab": null,
  7016. "_customMaterial": null,
  7017. "_srcBlendFactor": 2,
  7018. "_dstBlendFactor": 4,
  7019. "_color": {
  7020. "__type__": "cc.Color",
  7021. "r": 0,
  7022. "g": 0,
  7023. "b": 0,
  7024. "a": 255
  7025. },
  7026. "_string": "12345644",
  7027. "_horizontalAlign": 1,
  7028. "_verticalAlign": 1,
  7029. "_actualFontSize": 18,
  7030. "_fontSize": 18,
  7031. "_fontFamily": "Arial",
  7032. "_lineHeight": 40,
  7033. "_overflow": 0,
  7034. "_enableWrapText": true,
  7035. "_font": null,
  7036. "_isSystemFontUsed": true,
  7037. "_spacingX": 0,
  7038. "_isItalic": false,
  7039. "_isBold": true,
  7040. "_isUnderline": false,
  7041. "_underlineHeight": 2,
  7042. "_cacheMode": 0,
  7043. "_enableOutline": false,
  7044. "_outlineColor": {
  7045. "__type__": "cc.Color",
  7046. "r": 0,
  7047. "g": 0,
  7048. "b": 0,
  7049. "a": 255
  7050. },
  7051. "_outlineWidth": 2,
  7052. "_enableShadow": false,
  7053. "_shadowColor": {
  7054. "__type__": "cc.Color",
  7055. "r": 0,
  7056. "g": 0,
  7057. "b": 0,
  7058. "a": 255
  7059. },
  7060. "_shadowOffset": {
  7061. "__type__": "cc.Vec2",
  7062. "x": 2,
  7063. "y": 2
  7064. },
  7065. "_shadowBlur": 2,
  7066. "_id": "ceq3+L5BRCRYqGoDIHC+9Z"
  7067. },
  7068. {
  7069. "__type__": "cc.UITransform",
  7070. "_name": "",
  7071. "_objFlags": 0,
  7072. "__editorExtras__": {},
  7073. "node": {
  7074. "__id__": 161
  7075. },
  7076. "_enabled": true,
  7077. "__prefab": null,
  7078. "_contentSize": {
  7079. "__type__": "cc.Size",
  7080. "width": 400,
  7081. "height": 60
  7082. },
  7083. "_anchorPoint": {
  7084. "__type__": "cc.Vec2",
  7085. "x": 0.5,
  7086. "y": 0.5
  7087. },
  7088. "_id": "2eCurSEKNLQ4JV9/Fx6417"
  7089. },
  7090. {
  7091. "__type__": "cc.Sprite",
  7092. "_name": "",
  7093. "_objFlags": 0,
  7094. "__editorExtras__": {},
  7095. "node": {
  7096. "__id__": 161
  7097. },
  7098. "_enabled": true,
  7099. "__prefab": null,
  7100. "_customMaterial": null,
  7101. "_srcBlendFactor": 2,
  7102. "_dstBlendFactor": 4,
  7103. "_color": {
  7104. "__type__": "cc.Color",
  7105. "r": 255,
  7106. "g": 255,
  7107. "b": 255,
  7108. "a": 255
  7109. },
  7110. "_spriteFrame": {
  7111. "__uuid__": "48234cb3-8e8c-40bf-9c21-0a66f352c05e@f9941",
  7112. "__expectedType__": "cc.SpriteFrame"
  7113. },
  7114. "_type": 0,
  7115. "_fillType": 0,
  7116. "_sizeMode": 1,
  7117. "_fillCenter": {
  7118. "__type__": "cc.Vec2",
  7119. "x": 0,
  7120. "y": 0
  7121. },
  7122. "_fillStart": 0,
  7123. "_fillRange": 0,
  7124. "_isTrimmedMode": true,
  7125. "_useGrayscale": false,
  7126. "_atlas": null,
  7127. "_id": "b2h8HVK3dPOJh01dG9vlsK"
  7128. },
  7129. {
  7130. "__type__": "cc.UITransform",
  7131. "_name": "",
  7132. "_objFlags": 0,
  7133. "__editorExtras__": {},
  7134. "node": {
  7135. "__id__": 70
  7136. },
  7137. "_enabled": true,
  7138. "__prefab": null,
  7139. "_contentSize": {
  7140. "__type__": "cc.Size",
  7141. "width": 410.181954887218,
  7142. "height": 527.9894736842105
  7143. },
  7144. "_anchorPoint": {
  7145. "__type__": "cc.Vec2",
  7146. "x": 0.5,
  7147. "y": 0.5
  7148. },
  7149. "_id": "8dN0EoiWdMaLmUciNf8lSq"
  7150. },
  7151. {
  7152. "__type__": "cc.Layout",
  7153. "_name": "",
  7154. "_objFlags": 0,
  7155. "__editorExtras__": {},
  7156. "node": {
  7157. "__id__": 70
  7158. },
  7159. "_enabled": true,
  7160. "__prefab": null,
  7161. "_resizeMode": 0,
  7162. "_layoutType": 2,
  7163. "_cellSize": {
  7164. "__type__": "cc.Size",
  7165. "width": 40,
  7166. "height": 40
  7167. },
  7168. "_startAxis": 0,
  7169. "_paddingLeft": 0,
  7170. "_paddingRight": 0,
  7171. "_paddingTop": 5,
  7172. "_paddingBottom": 0,
  7173. "_spacingX": 0,
  7174. "_spacingY": 15,
  7175. "_verticalDirection": 1,
  7176. "_horizontalDirection": 0,
  7177. "_constraint": 0,
  7178. "_constraintNum": 2,
  7179. "_affectedByScale": false,
  7180. "_isAlign": false,
  7181. "_id": "96Y9L1vdFHzZ0D2vEcPDlU"
  7182. },
  7183. {
  7184. "__type__": "cc.Node",
  7185. "_name": "UP",
  7186. "_objFlags": 0,
  7187. "__editorExtras__": {},
  7188. "_parent": {
  7189. "__id__": 55
  7190. },
  7191. "_children": [
  7192. {
  7193. "__id__": 179
  7194. }
  7195. ],
  7196. "_active": true,
  7197. "_components": [
  7198. {
  7199. "__id__": 183
  7200. },
  7201. {
  7202. "__id__": 184
  7203. }
  7204. ],
  7205. "_prefab": null,
  7206. "_lpos": {
  7207. "__type__": "cc.Vec3",
  7208. "x": -160,
  7209. "y": -305,
  7210. "z": 0
  7211. },
  7212. "_lrot": {
  7213. "__type__": "cc.Quat",
  7214. "x": 0,
  7215. "y": 0,
  7216. "z": 0,
  7217. "w": 1
  7218. },
  7219. "_lscale": {
  7220. "__type__": "cc.Vec3",
  7221. "x": 1,
  7222. "y": 1,
  7223. "z": 1
  7224. },
  7225. "_mobility": 0,
  7226. "_layer": 33554432,
  7227. "_euler": {
  7228. "__type__": "cc.Vec3",
  7229. "x": 0,
  7230. "y": 0,
  7231. "z": 0
  7232. },
  7233. "_id": "7fkqQQ1G5HGop3cfm2YYNF"
  7234. },
  7235. {
  7236. "__type__": "cc.Node",
  7237. "_name": "Button",
  7238. "_objFlags": 0,
  7239. "__editorExtras__": {},
  7240. "_parent": {
  7241. "__id__": 178
  7242. },
  7243. "_children": [],
  7244. "_active": true,
  7245. "_components": [
  7246. {
  7247. "__id__": 180
  7248. },
  7249. {
  7250. "__id__": 181
  7251. }
  7252. ],
  7253. "_prefab": null,
  7254. "_lpos": {
  7255. "__type__": "cc.Vec3",
  7256. "x": 0,
  7257. "y": 0,
  7258. "z": 0
  7259. },
  7260. "_lrot": {
  7261. "__type__": "cc.Quat",
  7262. "x": 0,
  7263. "y": 0,
  7264. "z": 0,
  7265. "w": 1
  7266. },
  7267. "_lscale": {
  7268. "__type__": "cc.Vec3",
  7269. "x": 1,
  7270. "y": 1,
  7271. "z": 1
  7272. },
  7273. "_mobility": 0,
  7274. "_layer": 33554432,
  7275. "_euler": {
  7276. "__type__": "cc.Vec3",
  7277. "x": 0,
  7278. "y": 0,
  7279. "z": 0
  7280. },
  7281. "_id": "2eEv92UDVF9YteOP7QTfeB"
  7282. },
  7283. {
  7284. "__type__": "cc.UITransform",
  7285. "_name": "",
  7286. "_objFlags": 0,
  7287. "__editorExtras__": {},
  7288. "node": {
  7289. "__id__": 179
  7290. },
  7291. "_enabled": true,
  7292. "__prefab": null,
  7293. "_contentSize": {
  7294. "__type__": "cc.Size",
  7295. "width": 100,
  7296. "height": 40
  7297. },
  7298. "_anchorPoint": {
  7299. "__type__": "cc.Vec2",
  7300. "x": 0.5,
  7301. "y": 0.5
  7302. },
  7303. "_id": "53eeLDtkNA+aOkgPF8c9GW"
  7304. },
  7305. {
  7306. "__type__": "cc.Button",
  7307. "_name": "",
  7308. "_objFlags": 0,
  7309. "__editorExtras__": {},
  7310. "node": {
  7311. "__id__": 179
  7312. },
  7313. "_enabled": true,
  7314. "__prefab": null,
  7315. "clickEvents": [
  7316. {
  7317. "__id__": 182
  7318. }
  7319. ],
  7320. "_interactable": true,
  7321. "_transition": 3,
  7322. "_normalColor": {
  7323. "__type__": "cc.Color",
  7324. "r": 214,
  7325. "g": 214,
  7326. "b": 214,
  7327. "a": 255
  7328. },
  7329. "_hoverColor": {
  7330. "__type__": "cc.Color",
  7331. "r": 211,
  7332. "g": 211,
  7333. "b": 211,
  7334. "a": 255
  7335. },
  7336. "_pressedColor": {
  7337. "__type__": "cc.Color",
  7338. "r": 255,
  7339. "g": 255,
  7340. "b": 255,
  7341. "a": 255
  7342. },
  7343. "_disabledColor": {
  7344. "__type__": "cc.Color",
  7345. "r": 124,
  7346. "g": 124,
  7347. "b": 124,
  7348. "a": 255
  7349. },
  7350. "_normalSprite": {
  7351. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  7352. "__expectedType__": "cc.SpriteFrame"
  7353. },
  7354. "_hoverSprite": {
  7355. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  7356. "__expectedType__": "cc.SpriteFrame"
  7357. },
  7358. "_pressedSprite": {
  7359. "__uuid__": "544e49d6-3f05-4fa8-9a9e-091f98fc2ce8@f9941",
  7360. "__expectedType__": "cc.SpriteFrame"
  7361. },
  7362. "_disabledSprite": {
  7363. "__uuid__": "951249e0-9f16-456d-8b85-a6ca954da16b@f9941",
  7364. "__expectedType__": "cc.SpriteFrame"
  7365. },
  7366. "_duration": 0.1,
  7367. "_zoomScale": 1.05,
  7368. "_target": {
  7369. "__id__": 179
  7370. },
  7371. "_id": "ad8kjt0TNNqLBdGY2QXFVL"
  7372. },
  7373. {
  7374. "__type__": "cc.ClickEvent",
  7375. "target": {
  7376. "__id__": 55
  7377. },
  7378. "component": "",
  7379. "_componentId": "e5acfZxSQRNB4uKAHZSxKvF",
  7380. "handler": "UP",
  7381. "customEventData": ""
  7382. },
  7383. {
  7384. "__type__": "cc.UITransform",
  7385. "_name": "",
  7386. "_objFlags": 0,
  7387. "__editorExtras__": {},
  7388. "node": {
  7389. "__id__": 178
  7390. },
  7391. "_enabled": true,
  7392. "__prefab": null,
  7393. "_contentSize": {
  7394. "__type__": "cc.Size",
  7395. "width": 70,
  7396. "height": 16
  7397. },
  7398. "_anchorPoint": {
  7399. "__type__": "cc.Vec2",
  7400. "x": 0.5,
  7401. "y": 0.5
  7402. },
  7403. "_id": "13wUt5FTJA3Kc+Dw8Li4B3"
  7404. },
  7405. {
  7406. "__type__": "cc.Sprite",
  7407. "_name": "",
  7408. "_objFlags": 0,
  7409. "__editorExtras__": {},
  7410. "node": {
  7411. "__id__": 178
  7412. },
  7413. "_enabled": true,
  7414. "__prefab": null,
  7415. "_customMaterial": null,
  7416. "_srcBlendFactor": 2,
  7417. "_dstBlendFactor": 4,
  7418. "_color": {
  7419. "__type__": "cc.Color",
  7420. "r": 255,
  7421. "g": 255,
  7422. "b": 255,
  7423. "a": 255
  7424. },
  7425. "_spriteFrame": {
  7426. "__uuid__": "1c9b0605-7503-4a3f-85c7-00afa6079437@f9941",
  7427. "__expectedType__": "cc.SpriteFrame"
  7428. },
  7429. "_type": 0,
  7430. "_fillType": 0,
  7431. "_sizeMode": 1,
  7432. "_fillCenter": {
  7433. "__type__": "cc.Vec2",
  7434. "x": 0,
  7435. "y": 0
  7436. },
  7437. "_fillStart": 0,
  7438. "_fillRange": 0,
  7439. "_isTrimmedMode": true,
  7440. "_useGrayscale": false,
  7441. "_atlas": null,
  7442. "_id": "08Y4LwPDtMGJ8wSdHUWGE3"
  7443. },
  7444. {
  7445. "__type__": "cc.Node",
  7446. "_name": "DOWN",
  7447. "_objFlags": 0,
  7448. "__editorExtras__": {},
  7449. "_parent": {
  7450. "__id__": 55
  7451. },
  7452. "_children": [
  7453. {
  7454. "__id__": 186
  7455. }
  7456. ],
  7457. "_active": true,
  7458. "_components": [
  7459. {
  7460. "__id__": 190
  7461. },
  7462. {
  7463. "__id__": 191
  7464. }
  7465. ],
  7466. "_prefab": null,
  7467. "_lpos": {
  7468. "__type__": "cc.Vec3",
  7469. "x": 160,
  7470. "y": -305,
  7471. "z": 0
  7472. },
  7473. "_lrot": {
  7474. "__type__": "cc.Quat",
  7475. "x": 0,
  7476. "y": 0,
  7477. "z": 0,
  7478. "w": 1
  7479. },
  7480. "_lscale": {
  7481. "__type__": "cc.Vec3",
  7482. "x": 1,
  7483. "y": 1,
  7484. "z": 1
  7485. },
  7486. "_mobility": 0,
  7487. "_layer": 33554432,
  7488. "_euler": {
  7489. "__type__": "cc.Vec3",
  7490. "x": 0,
  7491. "y": 0,
  7492. "z": 0
  7493. },
  7494. "_id": "e8R4rcrj5FHJaGq6u4cmhA"
  7495. },
  7496. {
  7497. "__type__": "cc.Node",
  7498. "_name": "Button",
  7499. "_objFlags": 0,
  7500. "__editorExtras__": {},
  7501. "_parent": {
  7502. "__id__": 185
  7503. },
  7504. "_children": [],
  7505. "_active": true,
  7506. "_components": [
  7507. {
  7508. "__id__": 187
  7509. },
  7510. {
  7511. "__id__": 188
  7512. }
  7513. ],
  7514. "_prefab": null,
  7515. "_lpos": {
  7516. "__type__": "cc.Vec3",
  7517. "x": 0,
  7518. "y": 0,
  7519. "z": 0
  7520. },
  7521. "_lrot": {
  7522. "__type__": "cc.Quat",
  7523. "x": 0,
  7524. "y": 0,
  7525. "z": 0,
  7526. "w": 1
  7527. },
  7528. "_lscale": {
  7529. "__type__": "cc.Vec3",
  7530. "x": 1,
  7531. "y": 1,
  7532. "z": 1
  7533. },
  7534. "_mobility": 0,
  7535. "_layer": 33554432,
  7536. "_euler": {
  7537. "__type__": "cc.Vec3",
  7538. "x": 0,
  7539. "y": 0,
  7540. "z": 0
  7541. },
  7542. "_id": "11+MQsWRdPyKyGBH9zCxiQ"
  7543. },
  7544. {
  7545. "__type__": "cc.UITransform",
  7546. "_name": "",
  7547. "_objFlags": 0,
  7548. "__editorExtras__": {},
  7549. "node": {
  7550. "__id__": 186
  7551. },
  7552. "_enabled": true,
  7553. "__prefab": null,
  7554. "_contentSize": {
  7555. "__type__": "cc.Size",
  7556. "width": 100,
  7557. "height": 40
  7558. },
  7559. "_anchorPoint": {
  7560. "__type__": "cc.Vec2",
  7561. "x": 0.5,
  7562. "y": 0.5
  7563. },
  7564. "_id": "c2K3IzwIBHKIp3F4CGJ6Or"
  7565. },
  7566. {
  7567. "__type__": "cc.Button",
  7568. "_name": "",
  7569. "_objFlags": 0,
  7570. "__editorExtras__": {},
  7571. "node": {
  7572. "__id__": 186
  7573. },
  7574. "_enabled": true,
  7575. "__prefab": null,
  7576. "clickEvents": [
  7577. {
  7578. "__id__": 189
  7579. }
  7580. ],
  7581. "_interactable": true,
  7582. "_transition": 3,
  7583. "_normalColor": {
  7584. "__type__": "cc.Color",
  7585. "r": 214,
  7586. "g": 214,
  7587. "b": 214,
  7588. "a": 255
  7589. },
  7590. "_hoverColor": {
  7591. "__type__": "cc.Color",
  7592. "r": 211,
  7593. "g": 211,
  7594. "b": 211,
  7595. "a": 255
  7596. },
  7597. "_pressedColor": {
  7598. "__type__": "cc.Color",
  7599. "r": 255,
  7600. "g": 255,
  7601. "b": 255,
  7602. "a": 255
  7603. },
  7604. "_disabledColor": {
  7605. "__type__": "cc.Color",
  7606. "r": 124,
  7607. "g": 124,
  7608. "b": 124,
  7609. "a": 255
  7610. },
  7611. "_normalSprite": {
  7612. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  7613. "__expectedType__": "cc.SpriteFrame"
  7614. },
  7615. "_hoverSprite": {
  7616. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  7617. "__expectedType__": "cc.SpriteFrame"
  7618. },
  7619. "_pressedSprite": {
  7620. "__uuid__": "544e49d6-3f05-4fa8-9a9e-091f98fc2ce8@f9941",
  7621. "__expectedType__": "cc.SpriteFrame"
  7622. },
  7623. "_disabledSprite": {
  7624. "__uuid__": "951249e0-9f16-456d-8b85-a6ca954da16b@f9941",
  7625. "__expectedType__": "cc.SpriteFrame"
  7626. },
  7627. "_duration": 0.1,
  7628. "_zoomScale": 1.05,
  7629. "_target": {
  7630. "__id__": 186
  7631. },
  7632. "_id": "edHJvr289F2LGWKirH0Dfq"
  7633. },
  7634. {
  7635. "__type__": "cc.ClickEvent",
  7636. "target": {
  7637. "__id__": 55
  7638. },
  7639. "component": "",
  7640. "_componentId": "e5acfZxSQRNB4uKAHZSxKvF",
  7641. "handler": "DOWN",
  7642. "customEventData": ""
  7643. },
  7644. {
  7645. "__type__": "cc.UITransform",
  7646. "_name": "",
  7647. "_objFlags": 0,
  7648. "__editorExtras__": {},
  7649. "node": {
  7650. "__id__": 185
  7651. },
  7652. "_enabled": true,
  7653. "__prefab": null,
  7654. "_contentSize": {
  7655. "__type__": "cc.Size",
  7656. "width": 70,
  7657. "height": 16
  7658. },
  7659. "_anchorPoint": {
  7660. "__type__": "cc.Vec2",
  7661. "x": 0.5,
  7662. "y": 0.5
  7663. },
  7664. "_id": "b7j7mhG5pMhbElUyXqUw8+"
  7665. },
  7666. {
  7667. "__type__": "cc.Sprite",
  7668. "_name": "",
  7669. "_objFlags": 0,
  7670. "__editorExtras__": {},
  7671. "node": {
  7672. "__id__": 185
  7673. },
  7674. "_enabled": true,
  7675. "__prefab": null,
  7676. "_customMaterial": null,
  7677. "_srcBlendFactor": 2,
  7678. "_dstBlendFactor": 4,
  7679. "_color": {
  7680. "__type__": "cc.Color",
  7681. "r": 255,
  7682. "g": 255,
  7683. "b": 255,
  7684. "a": 255
  7685. },
  7686. "_spriteFrame": {
  7687. "__uuid__": "8008925a-fbbd-44b3-a80c-769accdd8b95@f9941",
  7688. "__expectedType__": "cc.SpriteFrame"
  7689. },
  7690. "_type": 0,
  7691. "_fillType": 0,
  7692. "_sizeMode": 1,
  7693. "_fillCenter": {
  7694. "__type__": "cc.Vec2",
  7695. "x": 0,
  7696. "y": 0
  7697. },
  7698. "_fillStart": 0,
  7699. "_fillRange": 0,
  7700. "_isTrimmedMode": true,
  7701. "_useGrayscale": false,
  7702. "_atlas": null,
  7703. "_id": "c5Fg9JZt5JDYuRTPSKs/Y0"
  7704. },
  7705. {
  7706. "__type__": "cc.Node",
  7707. "_name": "Page",
  7708. "_objFlags": 0,
  7709. "__editorExtras__": {},
  7710. "_parent": {
  7711. "__id__": 55
  7712. },
  7713. "_children": [],
  7714. "_active": true,
  7715. "_components": [
  7716. {
  7717. "__id__": 193
  7718. },
  7719. {
  7720. "__id__": 194
  7721. }
  7722. ],
  7723. "_prefab": null,
  7724. "_lpos": {
  7725. "__type__": "cc.Vec3",
  7726. "x": 0,
  7727. "y": -307.149,
  7728. "z": 0
  7729. },
  7730. "_lrot": {
  7731. "__type__": "cc.Quat",
  7732. "x": 0,
  7733. "y": 0,
  7734. "z": 0,
  7735. "w": 1
  7736. },
  7737. "_lscale": {
  7738. "__type__": "cc.Vec3",
  7739. "x": 1,
  7740. "y": 1,
  7741. "z": 1
  7742. },
  7743. "_mobility": 0,
  7744. "_layer": 33554432,
  7745. "_euler": {
  7746. "__type__": "cc.Vec3",
  7747. "x": 0,
  7748. "y": 0,
  7749. "z": 0
  7750. },
  7751. "_id": "a9RHg0p8VMB4IeO7kMcZw3"
  7752. },
  7753. {
  7754. "__type__": "cc.UITransform",
  7755. "_name": "",
  7756. "_objFlags": 0,
  7757. "__editorExtras__": {},
  7758. "node": {
  7759. "__id__": 192
  7760. },
  7761. "_enabled": true,
  7762. "__prefab": null,
  7763. "_contentSize": {
  7764. "__type__": "cc.Size",
  7765. "width": 56.0126953125,
  7766. "height": 50.4
  7767. },
  7768. "_anchorPoint": {
  7769. "__type__": "cc.Vec2",
  7770. "x": 0.5,
  7771. "y": 0.5
  7772. },
  7773. "_id": "a8IiL02kNL+IiOJiEqkMFR"
  7774. },
  7775. {
  7776. "__type__": "cc.Label",
  7777. "_name": "",
  7778. "_objFlags": 0,
  7779. "__editorExtras__": {},
  7780. "node": {
  7781. "__id__": 192
  7782. },
  7783. "_enabled": true,
  7784. "__prefab": null,
  7785. "_customMaterial": null,
  7786. "_srcBlendFactor": 2,
  7787. "_dstBlendFactor": 4,
  7788. "_color": {
  7789. "__type__": "cc.Color",
  7790. "r": 0,
  7791. "g": 0,
  7792. "b": 0,
  7793. "a": 255
  7794. },
  7795. "_string": "第 1 页",
  7796. "_horizontalAlign": 1,
  7797. "_verticalAlign": 1,
  7798. "_actualFontSize": 18,
  7799. "_fontSize": 18,
  7800. "_fontFamily": "Arial",
  7801. "_lineHeight": 40,
  7802. "_overflow": 0,
  7803. "_enableWrapText": true,
  7804. "_font": null,
  7805. "_isSystemFontUsed": true,
  7806. "_spacingX": 0,
  7807. "_isItalic": false,
  7808. "_isBold": true,
  7809. "_isUnderline": false,
  7810. "_underlineHeight": 2,
  7811. "_cacheMode": 0,
  7812. "_enableOutline": false,
  7813. "_outlineColor": {
  7814. "__type__": "cc.Color",
  7815. "r": 0,
  7816. "g": 0,
  7817. "b": 0,
  7818. "a": 255
  7819. },
  7820. "_outlineWidth": 2,
  7821. "_enableShadow": false,
  7822. "_shadowColor": {
  7823. "__type__": "cc.Color",
  7824. "r": 0,
  7825. "g": 0,
  7826. "b": 0,
  7827. "a": 255
  7828. },
  7829. "_shadowOffset": {
  7830. "__type__": "cc.Vec2",
  7831. "x": 2,
  7832. "y": 2
  7833. },
  7834. "_shadowBlur": 2,
  7835. "_id": "3b2v62ApNBr5zxSzQYk5IT"
  7836. },
  7837. {
  7838. "__type__": "cc.UITransform",
  7839. "_name": "",
  7840. "_objFlags": 0,
  7841. "__editorExtras__": {},
  7842. "node": {
  7843. "__id__": 55
  7844. },
  7845. "_enabled": true,
  7846. "__prefab": null,
  7847. "_contentSize": {
  7848. "__type__": "cc.Size",
  7849. "width": 460,
  7850. "height": 674
  7851. },
  7852. "_anchorPoint": {
  7853. "__type__": "cc.Vec2",
  7854. "x": 0.5,
  7855. "y": 0.5
  7856. },
  7857. "_id": "e4fwH8gAdIBoKhnnk1K+b0"
  7858. },
  7859. {
  7860. "__type__": "cc.Sprite",
  7861. "_name": "",
  7862. "_objFlags": 0,
  7863. "__editorExtras__": {},
  7864. "node": {
  7865. "__id__": 55
  7866. },
  7867. "_enabled": true,
  7868. "__prefab": null,
  7869. "_customMaterial": null,
  7870. "_srcBlendFactor": 2,
  7871. "_dstBlendFactor": 4,
  7872. "_color": {
  7873. "__type__": "cc.Color",
  7874. "r": 255,
  7875. "g": 255,
  7876. "b": 255,
  7877. "a": 255
  7878. },
  7879. "_spriteFrame": {
  7880. "__uuid__": "bec6a43a-6eab-4ef8-8aab-55c77779dc7b@f9941",
  7881. "__expectedType__": "cc.SpriteFrame"
  7882. },
  7883. "_type": 0,
  7884. "_fillType": 0,
  7885. "_sizeMode": 1,
  7886. "_fillCenter": {
  7887. "__type__": "cc.Vec2",
  7888. "x": 0,
  7889. "y": 0
  7890. },
  7891. "_fillStart": 0,
  7892. "_fillRange": 0,
  7893. "_isTrimmedMode": true,
  7894. "_useGrayscale": false,
  7895. "_atlas": null,
  7896. "_id": "7fWQkJNyREwqI6Hkb//NHg"
  7897. },
  7898. {
  7899. "__type__": "e5acfZxSQRNB4uKAHZSxKvF",
  7900. "_name": "",
  7901. "_objFlags": 0,
  7902. "__editorExtras__": {},
  7903. "node": {
  7904. "__id__": 55
  7905. },
  7906. "_enabled": true,
  7907. "__prefab": null,
  7908. "PageLabel": {
  7909. "__id__": 194
  7910. },
  7911. "Layout": {
  7912. "__id__": 70
  7913. },
  7914. "defaultImage": {
  7915. "__uuid__": "5353ee01-7e47-43d8-b312-ba40cac746e1@f9941",
  7916. "__expectedType__": "cc.SpriteFrame"
  7917. },
  7918. "_id": "296uAi0m5F6acWtTIl2KdA"
  7919. },
  7920. {
  7921. "__type__": "cc.Node",
  7922. "_name": "SetPanel",
  7923. "_objFlags": 0,
  7924. "__editorExtras__": {},
  7925. "_parent": {
  7926. "__id__": 2
  7927. },
  7928. "_children": [
  7929. {
  7930. "__id__": 199
  7931. },
  7932. {
  7933. "__id__": 203
  7934. },
  7935. {
  7936. "__id__": 210
  7937. },
  7938. {
  7939. "__id__": 213
  7940. },
  7941. {
  7942. "__id__": 216
  7943. },
  7944. {
  7945. "__id__": 232
  7946. }
  7947. ],
  7948. "_active": false,
  7949. "_components": [
  7950. {
  7951. "__id__": 248
  7952. },
  7953. {
  7954. "__id__": 249
  7955. },
  7956. {
  7957. "__id__": 250
  7958. }
  7959. ],
  7960. "_prefab": null,
  7961. "_lpos": {
  7962. "__type__": "cc.Vec3",
  7963. "x": 0,
  7964. "y": 58.695,
  7965. "z": 0
  7966. },
  7967. "_lrot": {
  7968. "__type__": "cc.Quat",
  7969. "x": 0,
  7970. "y": 0,
  7971. "z": 0,
  7972. "w": 1
  7973. },
  7974. "_lscale": {
  7975. "__type__": "cc.Vec3",
  7976. "x": 1.33,
  7977. "y": 1.33,
  7978. "z": 1
  7979. },
  7980. "_mobility": 0,
  7981. "_layer": 33554432,
  7982. "_euler": {
  7983. "__type__": "cc.Vec3",
  7984. "x": 0,
  7985. "y": 0,
  7986. "z": 0
  7987. },
  7988. "_id": "c7STfmYXhOabEMJ9tJIf1h"
  7989. },
  7990. {
  7991. "__type__": "cc.Node",
  7992. "_name": "Mask",
  7993. "_objFlags": 0,
  7994. "__editorExtras__": {},
  7995. "_parent": {
  7996. "__id__": 198
  7997. },
  7998. "_children": [],
  7999. "_active": true,
  8000. "_components": [
  8001. {
  8002. "__id__": 200
  8003. },
  8004. {
  8005. "__id__": 201
  8006. },
  8007. {
  8008. "__id__": 202
  8009. }
  8010. ],
  8011. "_prefab": null,
  8012. "_lpos": {
  8013. "__type__": "cc.Vec3",
  8014. "x": 0,
  8015. "y": -44.13157894736844,
  8016. "z": 0
  8017. },
  8018. "_lrot": {
  8019. "__type__": "cc.Quat",
  8020. "x": 0,
  8021. "y": 0,
  8022. "z": 0,
  8023. "w": 1
  8024. },
  8025. "_lscale": {
  8026. "__type__": "cc.Vec3",
  8027. "x": 1,
  8028. "y": 1,
  8029. "z": 1
  8030. },
  8031. "_mobility": 0,
  8032. "_layer": 33554432,
  8033. "_euler": {
  8034. "__type__": "cc.Vec3",
  8035. "x": 0,
  8036. "y": 0,
  8037. "z": 0
  8038. },
  8039. "_id": "aeZRHK0kFD5pv1HcmN6NzR"
  8040. },
  8041. {
  8042. "__type__": "cc.UITransform",
  8043. "_name": "",
  8044. "_objFlags": 0,
  8045. "__editorExtras__": {},
  8046. "node": {
  8047. "__id__": 199
  8048. },
  8049. "_enabled": true,
  8050. "__prefab": null,
  8051. "_contentSize": {
  8052. "__type__": "cc.Size",
  8053. "width": 541.3533834586466,
  8054. "height": 962.406015037594
  8055. },
  8056. "_anchorPoint": {
  8057. "__type__": "cc.Vec2",
  8058. "x": 0.5,
  8059. "y": 0.5
  8060. },
  8061. "_id": "40UCaDsNNI9LQEkL/HvqkZ"
  8062. },
  8063. {
  8064. "__type__": "cc.Button",
  8065. "_name": "",
  8066. "_objFlags": 0,
  8067. "__editorExtras__": {},
  8068. "node": {
  8069. "__id__": 199
  8070. },
  8071. "_enabled": true,
  8072. "__prefab": null,
  8073. "clickEvents": [],
  8074. "_interactable": true,
  8075. "_transition": 0,
  8076. "_normalColor": {
  8077. "__type__": "cc.Color",
  8078. "r": 255,
  8079. "g": 255,
  8080. "b": 255,
  8081. "a": 255
  8082. },
  8083. "_hoverColor": {
  8084. "__type__": "cc.Color",
  8085. "r": 211,
  8086. "g": 211,
  8087. "b": 211,
  8088. "a": 255
  8089. },
  8090. "_pressedColor": {
  8091. "__type__": "cc.Color",
  8092. "r": 255,
  8093. "g": 255,
  8094. "b": 255,
  8095. "a": 255
  8096. },
  8097. "_disabledColor": {
  8098. "__type__": "cc.Color",
  8099. "r": 124,
  8100. "g": 124,
  8101. "b": 124,
  8102. "a": 255
  8103. },
  8104. "_normalSprite": null,
  8105. "_hoverSprite": null,
  8106. "_pressedSprite": null,
  8107. "_disabledSprite": null,
  8108. "_duration": 0.1,
  8109. "_zoomScale": 1.2,
  8110. "_target": null,
  8111. "_id": "0em+LYR89HmpoAV7UH3ovb"
  8112. },
  8113. {
  8114. "__type__": "cc.Widget",
  8115. "_name": "",
  8116. "_objFlags": 0,
  8117. "__editorExtras__": {},
  8118. "node": {
  8119. "__id__": 199
  8120. },
  8121. "_enabled": true,
  8122. "__prefab": null,
  8123. "_alignFlags": 45,
  8124. "_target": {
  8125. "__id__": 2
  8126. },
  8127. "_left": 0,
  8128. "_right": 0,
  8129. "_top": 0,
  8130. "_bottom": 0,
  8131. "_horizontalCenter": 0,
  8132. "_verticalCenter": 0,
  8133. "_isAbsLeft": true,
  8134. "_isAbsRight": true,
  8135. "_isAbsTop": true,
  8136. "_isAbsBottom": true,
  8137. "_isAbsHorizontalCenter": true,
  8138. "_isAbsVerticalCenter": true,
  8139. "_originalWidth": 100,
  8140. "_originalHeight": 100,
  8141. "_alignMode": 2,
  8142. "_lockFlags": 0,
  8143. "_id": "72nNyH+MJLHqnYkg1Mw8px"
  8144. },
  8145. {
  8146. "__type__": "cc.Node",
  8147. "_name": "Close",
  8148. "_objFlags": 0,
  8149. "__editorExtras__": {},
  8150. "_parent": {
  8151. "__id__": 198
  8152. },
  8153. "_children": [
  8154. {
  8155. "__id__": 204
  8156. }
  8157. ],
  8158. "_active": true,
  8159. "_components": [
  8160. {
  8161. "__id__": 208
  8162. },
  8163. {
  8164. "__id__": 209
  8165. }
  8166. ],
  8167. "_prefab": null,
  8168. "_lpos": {
  8169. "__type__": "cc.Vec3",
  8170. "x": 200.276,
  8171. "y": 128.039,
  8172. "z": 0
  8173. },
  8174. "_lrot": {
  8175. "__type__": "cc.Quat",
  8176. "x": 0,
  8177. "y": 0,
  8178. "z": 0,
  8179. "w": 1
  8180. },
  8181. "_lscale": {
  8182. "__type__": "cc.Vec3",
  8183. "x": 1,
  8184. "y": 1,
  8185. "z": 1
  8186. },
  8187. "_mobility": 0,
  8188. "_layer": 33554432,
  8189. "_euler": {
  8190. "__type__": "cc.Vec3",
  8191. "x": 0,
  8192. "y": 0,
  8193. "z": 0
  8194. },
  8195. "_id": "fe6RsNSUdOmrb0pUeDlPxT"
  8196. },
  8197. {
  8198. "__type__": "cc.Node",
  8199. "_name": "Button",
  8200. "_objFlags": 0,
  8201. "__editorExtras__": {},
  8202. "_parent": {
  8203. "__id__": 203
  8204. },
  8205. "_children": [],
  8206. "_active": true,
  8207. "_components": [
  8208. {
  8209. "__id__": 205
  8210. },
  8211. {
  8212. "__id__": 206
  8213. }
  8214. ],
  8215. "_prefab": null,
  8216. "_lpos": {
  8217. "__type__": "cc.Vec3",
  8218. "x": 0,
  8219. "y": 0,
  8220. "z": 0
  8221. },
  8222. "_lrot": {
  8223. "__type__": "cc.Quat",
  8224. "x": 0,
  8225. "y": 0,
  8226. "z": 0,
  8227. "w": 1
  8228. },
  8229. "_lscale": {
  8230. "__type__": "cc.Vec3",
  8231. "x": 1,
  8232. "y": 1,
  8233. "z": 1
  8234. },
  8235. "_mobility": 0,
  8236. "_layer": 33554432,
  8237. "_euler": {
  8238. "__type__": "cc.Vec3",
  8239. "x": 0,
  8240. "y": 0,
  8241. "z": 0
  8242. },
  8243. "_id": "77ryncl7lH8L936zSY0w22"
  8244. },
  8245. {
  8246. "__type__": "cc.UITransform",
  8247. "_name": "",
  8248. "_objFlags": 0,
  8249. "__editorExtras__": {},
  8250. "node": {
  8251. "__id__": 204
  8252. },
  8253. "_enabled": true,
  8254. "__prefab": null,
  8255. "_contentSize": {
  8256. "__type__": "cc.Size",
  8257. "width": 60.65263157894737,
  8258. "height": 59.315789473684205
  8259. },
  8260. "_anchorPoint": {
  8261. "__type__": "cc.Vec2",
  8262. "x": 0.5,
  8263. "y": 0.5
  8264. },
  8265. "_id": "d7uoqCZH5FbLIG7VKc6VFW"
  8266. },
  8267. {
  8268. "__type__": "cc.Button",
  8269. "_name": "",
  8270. "_objFlags": 0,
  8271. "__editorExtras__": {},
  8272. "node": {
  8273. "__id__": 204
  8274. },
  8275. "_enabled": true,
  8276. "__prefab": null,
  8277. "clickEvents": [
  8278. {
  8279. "__id__": 207
  8280. }
  8281. ],
  8282. "_interactable": true,
  8283. "_transition": 0,
  8284. "_normalColor": {
  8285. "__type__": "cc.Color",
  8286. "r": 214,
  8287. "g": 214,
  8288. "b": 214,
  8289. "a": 255
  8290. },
  8291. "_hoverColor": {
  8292. "__type__": "cc.Color",
  8293. "r": 211,
  8294. "g": 211,
  8295. "b": 211,
  8296. "a": 255
  8297. },
  8298. "_pressedColor": {
  8299. "__type__": "cc.Color",
  8300. "r": 255,
  8301. "g": 255,
  8302. "b": 255,
  8303. "a": 255
  8304. },
  8305. "_disabledColor": {
  8306. "__type__": "cc.Color",
  8307. "r": 124,
  8308. "g": 124,
  8309. "b": 124,
  8310. "a": 255
  8311. },
  8312. "_normalSprite": {
  8313. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  8314. "__expectedType__": "cc.SpriteFrame"
  8315. },
  8316. "_hoverSprite": {
  8317. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  8318. "__expectedType__": "cc.SpriteFrame"
  8319. },
  8320. "_pressedSprite": {
  8321. "__uuid__": "544e49d6-3f05-4fa8-9a9e-091f98fc2ce8@f9941",
  8322. "__expectedType__": "cc.SpriteFrame"
  8323. },
  8324. "_disabledSprite": {
  8325. "__uuid__": "951249e0-9f16-456d-8b85-a6ca954da16b@f9941",
  8326. "__expectedType__": "cc.SpriteFrame"
  8327. },
  8328. "_duration": 0.1,
  8329. "_zoomScale": 1.2,
  8330. "_target": {
  8331. "__id__": 204
  8332. },
  8333. "_id": "70rCXZyKlPsI9UCayiQU5S"
  8334. },
  8335. {
  8336. "__type__": "cc.ClickEvent",
  8337. "target": {
  8338. "__id__": 198
  8339. },
  8340. "component": "",
  8341. "_componentId": "69705ajBrNBFLngI/WDLitw",
  8342. "handler": "close",
  8343. "customEventData": ""
  8344. },
  8345. {
  8346. "__type__": "cc.UITransform",
  8347. "_name": "",
  8348. "_objFlags": 0,
  8349. "__editorExtras__": {},
  8350. "node": {
  8351. "__id__": 203
  8352. },
  8353. "_enabled": true,
  8354. "__prefab": null,
  8355. "_contentSize": {
  8356. "__type__": "cc.Size",
  8357. "width": 20,
  8358. "height": 20
  8359. },
  8360. "_anchorPoint": {
  8361. "__type__": "cc.Vec2",
  8362. "x": 0.5,
  8363. "y": 0.5
  8364. },
  8365. "_id": "1dfRW6+XBPvJ0ezMMQGnVF"
  8366. },
  8367. {
  8368. "__type__": "cc.Sprite",
  8369. "_name": "",
  8370. "_objFlags": 0,
  8371. "__editorExtras__": {},
  8372. "node": {
  8373. "__id__": 203
  8374. },
  8375. "_enabled": true,
  8376. "__prefab": null,
  8377. "_customMaterial": null,
  8378. "_srcBlendFactor": 2,
  8379. "_dstBlendFactor": 4,
  8380. "_color": {
  8381. "__type__": "cc.Color",
  8382. "r": 255,
  8383. "g": 255,
  8384. "b": 255,
  8385. "a": 255
  8386. },
  8387. "_spriteFrame": {
  8388. "__uuid__": "d93e92ea-2d27-443c-a7c9-917a26910cbf@f9941",
  8389. "__expectedType__": "cc.SpriteFrame"
  8390. },
  8391. "_type": 0,
  8392. "_fillType": 0,
  8393. "_sizeMode": 1,
  8394. "_fillCenter": {
  8395. "__type__": "cc.Vec2",
  8396. "x": 0,
  8397. "y": 0
  8398. },
  8399. "_fillStart": 0,
  8400. "_fillRange": 0,
  8401. "_isTrimmedMode": true,
  8402. "_useGrayscale": false,
  8403. "_atlas": null,
  8404. "_id": "9epEaTJPVN/YYe2BMsIl5M"
  8405. },
  8406. {
  8407. "__type__": "cc.Node",
  8408. "_name": "Title",
  8409. "_objFlags": 0,
  8410. "__editorExtras__": {},
  8411. "_parent": {
  8412. "__id__": 198
  8413. },
  8414. "_children": [],
  8415. "_active": true,
  8416. "_components": [
  8417. {
  8418. "__id__": 211
  8419. },
  8420. {
  8421. "__id__": 212
  8422. }
  8423. ],
  8424. "_prefab": null,
  8425. "_lpos": {
  8426. "__type__": "cc.Vec3",
  8427. "x": 0,
  8428. "y": 125.564,
  8429. "z": 0
  8430. },
  8431. "_lrot": {
  8432. "__type__": "cc.Quat",
  8433. "x": 0,
  8434. "y": 0,
  8435. "z": 0,
  8436. "w": 1
  8437. },
  8438. "_lscale": {
  8439. "__type__": "cc.Vec3",
  8440. "x": 1,
  8441. "y": 1,
  8442. "z": 1
  8443. },
  8444. "_mobility": 0,
  8445. "_layer": 33554432,
  8446. "_euler": {
  8447. "__type__": "cc.Vec3",
  8448. "x": 0,
  8449. "y": 0,
  8450. "z": 0
  8451. },
  8452. "_id": "e6qdywkdBKbJapo/bIogJy"
  8453. },
  8454. {
  8455. "__type__": "cc.UITransform",
  8456. "_name": "",
  8457. "_objFlags": 0,
  8458. "__editorExtras__": {},
  8459. "node": {
  8460. "__id__": 210
  8461. },
  8462. "_enabled": true,
  8463. "__prefab": null,
  8464. "_contentSize": {
  8465. "__type__": "cc.Size",
  8466. "width": 63,
  8467. "height": 27
  8468. },
  8469. "_anchorPoint": {
  8470. "__type__": "cc.Vec2",
  8471. "x": 0.5,
  8472. "y": 0.5
  8473. },
  8474. "_id": "b9r1xtDR9OW5P5YAT9YfzE"
  8475. },
  8476. {
  8477. "__type__": "cc.Sprite",
  8478. "_name": "",
  8479. "_objFlags": 0,
  8480. "__editorExtras__": {},
  8481. "node": {
  8482. "__id__": 210
  8483. },
  8484. "_enabled": true,
  8485. "__prefab": null,
  8486. "_customMaterial": null,
  8487. "_srcBlendFactor": 2,
  8488. "_dstBlendFactor": 4,
  8489. "_color": {
  8490. "__type__": "cc.Color",
  8491. "r": 255,
  8492. "g": 255,
  8493. "b": 255,
  8494. "a": 255
  8495. },
  8496. "_spriteFrame": {
  8497. "__uuid__": "3c13d4ec-0bd6-4ca3-8e3d-efe84ea8f256@f9941",
  8498. "__expectedType__": "cc.SpriteFrame"
  8499. },
  8500. "_type": 0,
  8501. "_fillType": 0,
  8502. "_sizeMode": 1,
  8503. "_fillCenter": {
  8504. "__type__": "cc.Vec2",
  8505. "x": 0,
  8506. "y": 0
  8507. },
  8508. "_fillStart": 0,
  8509. "_fillRange": 0,
  8510. "_isTrimmedMode": true,
  8511. "_useGrayscale": false,
  8512. "_atlas": null,
  8513. "_id": "e9qT+stmJNy4f9jcgXhGCA"
  8514. },
  8515. {
  8516. "__type__": "cc.Node",
  8517. "_name": "联集 6",
  8518. "_objFlags": 0,
  8519. "__editorExtras__": {},
  8520. "_parent": {
  8521. "__id__": 198
  8522. },
  8523. "_children": [],
  8524. "_active": true,
  8525. "_components": [
  8526. {
  8527. "__id__": 214
  8528. },
  8529. {
  8530. "__id__": 215
  8531. }
  8532. ],
  8533. "_prefab": null,
  8534. "_lpos": {
  8535. "__type__": "cc.Vec3",
  8536. "x": 0,
  8537. "y": -27.95,
  8538. "z": 0
  8539. },
  8540. "_lrot": {
  8541. "__type__": "cc.Quat",
  8542. "x": 0,
  8543. "y": 0,
  8544. "z": 0,
  8545. "w": 1
  8546. },
  8547. "_lscale": {
  8548. "__type__": "cc.Vec3",
  8549. "x": 1,
  8550. "y": 1,
  8551. "z": 1
  8552. },
  8553. "_mobility": 0,
  8554. "_layer": 33554432,
  8555. "_euler": {
  8556. "__type__": "cc.Vec3",
  8557. "x": 0,
  8558. "y": 0,
  8559. "z": 0
  8560. },
  8561. "_id": "21WiwRkk9MZa3A+4/1QJ+s"
  8562. },
  8563. {
  8564. "__type__": "cc.UITransform",
  8565. "_name": "",
  8566. "_objFlags": 0,
  8567. "__editorExtras__": {},
  8568. "node": {
  8569. "__id__": 213
  8570. },
  8571. "_enabled": true,
  8572. "__prefab": null,
  8573. "_contentSize": {
  8574. "__type__": "cc.Size",
  8575. "width": 400,
  8576. "height": 140
  8577. },
  8578. "_anchorPoint": {
  8579. "__type__": "cc.Vec2",
  8580. "x": 0.5,
  8581. "y": 0.5
  8582. },
  8583. "_id": "729hGim6dOLKJizV63DOF1"
  8584. },
  8585. {
  8586. "__type__": "cc.Sprite",
  8587. "_name": "",
  8588. "_objFlags": 0,
  8589. "__editorExtras__": {},
  8590. "node": {
  8591. "__id__": 213
  8592. },
  8593. "_enabled": true,
  8594. "__prefab": null,
  8595. "_customMaterial": null,
  8596. "_srcBlendFactor": 2,
  8597. "_dstBlendFactor": 4,
  8598. "_color": {
  8599. "__type__": "cc.Color",
  8600. "r": 255,
  8601. "g": 255,
  8602. "b": 255,
  8603. "a": 255
  8604. },
  8605. "_spriteFrame": {
  8606. "__uuid__": "c916f89e-b1b9-4be0-beb9-ac4383e2ff00@f9941",
  8607. "__expectedType__": "cc.SpriteFrame"
  8608. },
  8609. "_type": 0,
  8610. "_fillType": 0,
  8611. "_sizeMode": 1,
  8612. "_fillCenter": {
  8613. "__type__": "cc.Vec2",
  8614. "x": 0,
  8615. "y": 0
  8616. },
  8617. "_fillStart": 0,
  8618. "_fillRange": 0,
  8619. "_isTrimmedMode": true,
  8620. "_useGrayscale": false,
  8621. "_atlas": null,
  8622. "_id": "a13ib+r85KYbVVztzCM7P8"
  8623. },
  8624. {
  8625. "__type__": "cc.Node",
  8626. "_name": "Effect",
  8627. "_objFlags": 0,
  8628. "__editorExtras__": {},
  8629. "_parent": {
  8630. "__id__": 198
  8631. },
  8632. "_children": [
  8633. {
  8634. "__id__": 217
  8635. },
  8636. {
  8637. "__id__": 220
  8638. },
  8639. {
  8640. "__id__": 225
  8641. }
  8642. ],
  8643. "_active": true,
  8644. "_components": [
  8645. {
  8646. "__id__": 230
  8647. },
  8648. {
  8649. "__id__": 231
  8650. }
  8651. ],
  8652. "_prefab": null,
  8653. "_lpos": {
  8654. "__type__": "cc.Vec3",
  8655. "x": -166.229,
  8656. "y": 2.127,
  8657. "z": 0
  8658. },
  8659. "_lrot": {
  8660. "__type__": "cc.Quat",
  8661. "x": 0,
  8662. "y": 0,
  8663. "z": 0,
  8664. "w": 1
  8665. },
  8666. "_lscale": {
  8667. "__type__": "cc.Vec3",
  8668. "x": 1,
  8669. "y": 1,
  8670. "z": 1
  8671. },
  8672. "_mobility": 0,
  8673. "_layer": 33554432,
  8674. "_euler": {
  8675. "__type__": "cc.Vec3",
  8676. "x": 0,
  8677. "y": 0,
  8678. "z": 0
  8679. },
  8680. "_id": "582hu+YfFANJmk8hG2dEN5"
  8681. },
  8682. {
  8683. "__type__": "cc.Node",
  8684. "_name": "Label",
  8685. "_objFlags": 0,
  8686. "__editorExtras__": {},
  8687. "_parent": {
  8688. "__id__": 216
  8689. },
  8690. "_children": [],
  8691. "_active": true,
  8692. "_components": [
  8693. {
  8694. "__id__": 218
  8695. },
  8696. {
  8697. "__id__": 219
  8698. }
  8699. ],
  8700. "_prefab": null,
  8701. "_lpos": {
  8702. "__type__": "cc.Vec3",
  8703. "x": 64.187,
  8704. "y": 3.025,
  8705. "z": 0
  8706. },
  8707. "_lrot": {
  8708. "__type__": "cc.Quat",
  8709. "x": 0,
  8710. "y": 0,
  8711. "z": 0,
  8712. "w": 1
  8713. },
  8714. "_lscale": {
  8715. "__type__": "cc.Vec3",
  8716. "x": 1,
  8717. "y": 1,
  8718. "z": 1
  8719. },
  8720. "_mobility": 0,
  8721. "_layer": 33554432,
  8722. "_euler": {
  8723. "__type__": "cc.Vec3",
  8724. "x": 0,
  8725. "y": 0,
  8726. "z": 0
  8727. },
  8728. "_id": "76wn3kB9tPWJ1n3rFXy1jL"
  8729. },
  8730. {
  8731. "__type__": "cc.UITransform",
  8732. "_name": "",
  8733. "_objFlags": 0,
  8734. "__editorExtras__": {},
  8735. "node": {
  8736. "__id__": 217
  8737. },
  8738. "_enabled": true,
  8739. "__prefab": null,
  8740. "_contentSize": {
  8741. "__type__": "cc.Size",
  8742. "width": 44,
  8743. "height": 54.4
  8744. },
  8745. "_anchorPoint": {
  8746. "__type__": "cc.Vec2",
  8747. "x": 0.5,
  8748. "y": 0.5
  8749. },
  8750. "_id": "aeYfiEDltDW7TdCUfKzpd5"
  8751. },
  8752. {
  8753. "__type__": "cc.Label",
  8754. "_name": "",
  8755. "_objFlags": 0,
  8756. "__editorExtras__": {},
  8757. "node": {
  8758. "__id__": 217
  8759. },
  8760. "_enabled": true,
  8761. "__prefab": null,
  8762. "_customMaterial": null,
  8763. "_srcBlendFactor": 2,
  8764. "_dstBlendFactor": 4,
  8765. "_color": {
  8766. "__type__": "cc.Color",
  8767. "r": 255,
  8768. "g": 255,
  8769. "b": 255,
  8770. "a": 255
  8771. },
  8772. "_string": "音效",
  8773. "_horizontalAlign": 1,
  8774. "_verticalAlign": 1,
  8775. "_actualFontSize": 20,
  8776. "_fontSize": 20,
  8777. "_fontFamily": "Arial",
  8778. "_lineHeight": 40,
  8779. "_overflow": 0,
  8780. "_enableWrapText": true,
  8781. "_font": null,
  8782. "_isSystemFontUsed": true,
  8783. "_spacingX": 0,
  8784. "_isItalic": false,
  8785. "_isBold": false,
  8786. "_isUnderline": false,
  8787. "_underlineHeight": 2,
  8788. "_cacheMode": 0,
  8789. "_enableOutline": true,
  8790. "_outlineColor": {
  8791. "__type__": "cc.Color",
  8792. "r": 0,
  8793. "g": 0,
  8794. "b": 0,
  8795. "a": 255
  8796. },
  8797. "_outlineWidth": 2,
  8798. "_enableShadow": false,
  8799. "_shadowColor": {
  8800. "__type__": "cc.Color",
  8801. "r": 0,
  8802. "g": 0,
  8803. "b": 0,
  8804. "a": 255
  8805. },
  8806. "_shadowOffset": {
  8807. "__type__": "cc.Vec2",
  8808. "x": 2,
  8809. "y": 2
  8810. },
  8811. "_shadowBlur": 2,
  8812. "_id": "24fj9HwwNLSbEx1bugY6R6"
  8813. },
  8814. {
  8815. "__type__": "cc.Node",
  8816. "_name": "Close",
  8817. "_objFlags": 0,
  8818. "__editorExtras__": {},
  8819. "_parent": {
  8820. "__id__": 216
  8821. },
  8822. "_children": [],
  8823. "_active": true,
  8824. "_components": [
  8825. {
  8826. "__id__": 221
  8827. },
  8828. {
  8829. "__id__": 222
  8830. },
  8831. {
  8832. "__id__": 223
  8833. }
  8834. ],
  8835. "_prefab": null,
  8836. "_lpos": {
  8837. "__type__": "cc.Vec3",
  8838. "x": 291.034,
  8839. "y": 0,
  8840. "z": 0
  8841. },
  8842. "_lrot": {
  8843. "__type__": "cc.Quat",
  8844. "x": 0,
  8845. "y": 0,
  8846. "z": 0,
  8847. "w": 1
  8848. },
  8849. "_lscale": {
  8850. "__type__": "cc.Vec3",
  8851. "x": 1,
  8852. "y": 1,
  8853. "z": 1
  8854. },
  8855. "_mobility": 0,
  8856. "_layer": 33554432,
  8857. "_euler": {
  8858. "__type__": "cc.Vec3",
  8859. "x": 0,
  8860. "y": 0,
  8861. "z": 0
  8862. },
  8863. "_id": "bfUP1efS9F7oseOnRfgey+"
  8864. },
  8865. {
  8866. "__type__": "cc.UITransform",
  8867. "_name": "",
  8868. "_objFlags": 0,
  8869. "__editorExtras__": {},
  8870. "node": {
  8871. "__id__": 220
  8872. },
  8873. "_enabled": true,
  8874. "__prefab": null,
  8875. "_contentSize": {
  8876. "__type__": "cc.Size",
  8877. "width": 55,
  8878. "height": 20
  8879. },
  8880. "_anchorPoint": {
  8881. "__type__": "cc.Vec2",
  8882. "x": 0.5,
  8883. "y": 0.5
  8884. },
  8885. "_id": "09Ai0S72tNc4uiS14gkYiq"
  8886. },
  8887. {
  8888. "__type__": "cc.Sprite",
  8889. "_name": "",
  8890. "_objFlags": 0,
  8891. "__editorExtras__": {},
  8892. "node": {
  8893. "__id__": 220
  8894. },
  8895. "_enabled": true,
  8896. "__prefab": null,
  8897. "_customMaterial": null,
  8898. "_srcBlendFactor": 2,
  8899. "_dstBlendFactor": 4,
  8900. "_color": {
  8901. "__type__": "cc.Color",
  8902. "r": 255,
  8903. "g": 255,
  8904. "b": 255,
  8905. "a": 255
  8906. },
  8907. "_spriteFrame": {
  8908. "__uuid__": "9f9e9519-d169-4d0b-986e-edaffc928352@f9941",
  8909. "__expectedType__": "cc.SpriteFrame"
  8910. },
  8911. "_type": 0,
  8912. "_fillType": 0,
  8913. "_sizeMode": 1,
  8914. "_fillCenter": {
  8915. "__type__": "cc.Vec2",
  8916. "x": 0,
  8917. "y": 0
  8918. },
  8919. "_fillStart": 0,
  8920. "_fillRange": 0,
  8921. "_isTrimmedMode": true,
  8922. "_useGrayscale": false,
  8923. "_atlas": null,
  8924. "_id": "01gzG74EhHyo6syusuQzBI"
  8925. },
  8926. {
  8927. "__type__": "cc.Button",
  8928. "_name": "",
  8929. "_objFlags": 0,
  8930. "__editorExtras__": {},
  8931. "node": {
  8932. "__id__": 220
  8933. },
  8934. "_enabled": true,
  8935. "__prefab": null,
  8936. "clickEvents": [
  8937. {
  8938. "__id__": 224
  8939. }
  8940. ],
  8941. "_interactable": true,
  8942. "_transition": 0,
  8943. "_normalColor": {
  8944. "__type__": "cc.Color",
  8945. "r": 255,
  8946. "g": 255,
  8947. "b": 255,
  8948. "a": 255
  8949. },
  8950. "_hoverColor": {
  8951. "__type__": "cc.Color",
  8952. "r": 211,
  8953. "g": 211,
  8954. "b": 211,
  8955. "a": 255
  8956. },
  8957. "_pressedColor": {
  8958. "__type__": "cc.Color",
  8959. "r": 255,
  8960. "g": 255,
  8961. "b": 255,
  8962. "a": 255
  8963. },
  8964. "_disabledColor": {
  8965. "__type__": "cc.Color",
  8966. "r": 124,
  8967. "g": 124,
  8968. "b": 124,
  8969. "a": 255
  8970. },
  8971. "_normalSprite": null,
  8972. "_hoverSprite": null,
  8973. "_pressedSprite": null,
  8974. "_disabledSprite": null,
  8975. "_duration": 0.1,
  8976. "_zoomScale": 1.2,
  8977. "_target": null,
  8978. "_id": "13WdbDaClJ0akrHIyPo+XP"
  8979. },
  8980. {
  8981. "__type__": "cc.ClickEvent",
  8982. "target": {
  8983. "__id__": 198
  8984. },
  8985. "component": "",
  8986. "_componentId": "69705ajBrNBFLngI/WDLitw",
  8987. "handler": "Effectopen",
  8988. "customEventData": ""
  8989. },
  8990. {
  8991. "__type__": "cc.Node",
  8992. "_name": "Open",
  8993. "_objFlags": 0,
  8994. "__editorExtras__": {},
  8995. "_parent": {
  8996. "__id__": 216
  8997. },
  8998. "_children": [],
  8999. "_active": false,
  9000. "_components": [
  9001. {
  9002. "__id__": 226
  9003. },
  9004. {
  9005. "__id__": 227
  9006. },
  9007. {
  9008. "__id__": 228
  9009. }
  9010. ],
  9011. "_prefab": null,
  9012. "_lpos": {
  9013. "__type__": "cc.Vec3",
  9014. "x": 291.094,
  9015. "y": 0,
  9016. "z": 0
  9017. },
  9018. "_lrot": {
  9019. "__type__": "cc.Quat",
  9020. "x": 0,
  9021. "y": 0,
  9022. "z": 0,
  9023. "w": 1
  9024. },
  9025. "_lscale": {
  9026. "__type__": "cc.Vec3",
  9027. "x": 1,
  9028. "y": 1,
  9029. "z": 1
  9030. },
  9031. "_mobility": 0,
  9032. "_layer": 33554432,
  9033. "_euler": {
  9034. "__type__": "cc.Vec3",
  9035. "x": 0,
  9036. "y": 0,
  9037. "z": 0
  9038. },
  9039. "_id": "05p8wgZWJAL7JeBwhAzeqt"
  9040. },
  9041. {
  9042. "__type__": "cc.UITransform",
  9043. "_name": "",
  9044. "_objFlags": 0,
  9045. "__editorExtras__": {},
  9046. "node": {
  9047. "__id__": 225
  9048. },
  9049. "_enabled": true,
  9050. "__prefab": null,
  9051. "_contentSize": {
  9052. "__type__": "cc.Size",
  9053. "width": 55,
  9054. "height": 20
  9055. },
  9056. "_anchorPoint": {
  9057. "__type__": "cc.Vec2",
  9058. "x": 0.5,
  9059. "y": 0.5
  9060. },
  9061. "_id": "21nhextxpAZLFcrot8w9W1"
  9062. },
  9063. {
  9064. "__type__": "cc.Sprite",
  9065. "_name": "",
  9066. "_objFlags": 0,
  9067. "__editorExtras__": {},
  9068. "node": {
  9069. "__id__": 225
  9070. },
  9071. "_enabled": true,
  9072. "__prefab": null,
  9073. "_customMaterial": null,
  9074. "_srcBlendFactor": 2,
  9075. "_dstBlendFactor": 4,
  9076. "_color": {
  9077. "__type__": "cc.Color",
  9078. "r": 255,
  9079. "g": 255,
  9080. "b": 255,
  9081. "a": 255
  9082. },
  9083. "_spriteFrame": {
  9084. "__uuid__": "9af9c618-45a8-4676-8865-8c62ddc63860@f9941",
  9085. "__expectedType__": "cc.SpriteFrame"
  9086. },
  9087. "_type": 0,
  9088. "_fillType": 0,
  9089. "_sizeMode": 1,
  9090. "_fillCenter": {
  9091. "__type__": "cc.Vec2",
  9092. "x": 0,
  9093. "y": 0
  9094. },
  9095. "_fillStart": 0,
  9096. "_fillRange": 0,
  9097. "_isTrimmedMode": true,
  9098. "_useGrayscale": false,
  9099. "_atlas": null,
  9100. "_id": "63dWragw5Ifanllz2dRjXO"
  9101. },
  9102. {
  9103. "__type__": "cc.Button",
  9104. "_name": "",
  9105. "_objFlags": 0,
  9106. "__editorExtras__": {},
  9107. "node": {
  9108. "__id__": 225
  9109. },
  9110. "_enabled": true,
  9111. "__prefab": null,
  9112. "clickEvents": [
  9113. {
  9114. "__id__": 229
  9115. }
  9116. ],
  9117. "_interactable": true,
  9118. "_transition": 0,
  9119. "_normalColor": {
  9120. "__type__": "cc.Color",
  9121. "r": 255,
  9122. "g": 255,
  9123. "b": 255,
  9124. "a": 255
  9125. },
  9126. "_hoverColor": {
  9127. "__type__": "cc.Color",
  9128. "r": 211,
  9129. "g": 211,
  9130. "b": 211,
  9131. "a": 255
  9132. },
  9133. "_pressedColor": {
  9134. "__type__": "cc.Color",
  9135. "r": 255,
  9136. "g": 255,
  9137. "b": 255,
  9138. "a": 255
  9139. },
  9140. "_disabledColor": {
  9141. "__type__": "cc.Color",
  9142. "r": 124,
  9143. "g": 124,
  9144. "b": 124,
  9145. "a": 255
  9146. },
  9147. "_normalSprite": null,
  9148. "_hoverSprite": null,
  9149. "_pressedSprite": null,
  9150. "_disabledSprite": null,
  9151. "_duration": 0.1,
  9152. "_zoomScale": 1.2,
  9153. "_target": {
  9154. "__id__": 225
  9155. },
  9156. "_id": "fbLDg60HVKtpO2kT2Xsqfr"
  9157. },
  9158. {
  9159. "__type__": "cc.ClickEvent",
  9160. "target": {
  9161. "__id__": 198
  9162. },
  9163. "component": "",
  9164. "_componentId": "69705ajBrNBFLngI/WDLitw",
  9165. "handler": "Effectclose",
  9166. "customEventData": ""
  9167. },
  9168. {
  9169. "__type__": "cc.UITransform",
  9170. "_name": "",
  9171. "_objFlags": 0,
  9172. "__editorExtras__": {},
  9173. "node": {
  9174. "__id__": 216
  9175. },
  9176. "_enabled": true,
  9177. "__prefab": null,
  9178. "_contentSize": {
  9179. "__type__": "cc.Size",
  9180. "width": 30,
  9181. "height": 25
  9182. },
  9183. "_anchorPoint": {
  9184. "__type__": "cc.Vec2",
  9185. "x": 0.5,
  9186. "y": 0.5
  9187. },
  9188. "_id": "92DMpZjuNOJoWlNRHVsAnb"
  9189. },
  9190. {
  9191. "__type__": "cc.Sprite",
  9192. "_name": "",
  9193. "_objFlags": 0,
  9194. "__editorExtras__": {},
  9195. "node": {
  9196. "__id__": 216
  9197. },
  9198. "_enabled": true,
  9199. "__prefab": null,
  9200. "_customMaterial": null,
  9201. "_srcBlendFactor": 2,
  9202. "_dstBlendFactor": 4,
  9203. "_color": {
  9204. "__type__": "cc.Color",
  9205. "r": 255,
  9206. "g": 255,
  9207. "b": 255,
  9208. "a": 255
  9209. },
  9210. "_spriteFrame": {
  9211. "__uuid__": "cfa1fe45-0886-41f8-b7ca-639ff370e84f@f9941",
  9212. "__expectedType__": "cc.SpriteFrame"
  9213. },
  9214. "_type": 0,
  9215. "_fillType": 0,
  9216. "_sizeMode": 1,
  9217. "_fillCenter": {
  9218. "__type__": "cc.Vec2",
  9219. "x": 0,
  9220. "y": 0
  9221. },
  9222. "_fillStart": 0,
  9223. "_fillRange": 0,
  9224. "_isTrimmedMode": true,
  9225. "_useGrayscale": false,
  9226. "_atlas": null,
  9227. "_id": "c2E4ox7ZdJDoPglTTm1IEJ"
  9228. },
  9229. {
  9230. "__type__": "cc.Node",
  9231. "_name": "Music",
  9232. "_objFlags": 0,
  9233. "__editorExtras__": {},
  9234. "_parent": {
  9235. "__id__": 198
  9236. },
  9237. "_children": [
  9238. {
  9239. "__id__": 233
  9240. },
  9241. {
  9242. "__id__": 236
  9243. },
  9244. {
  9245. "__id__": 241
  9246. }
  9247. ],
  9248. "_active": true,
  9249. "_components": [
  9250. {
  9251. "__id__": 246
  9252. },
  9253. {
  9254. "__id__": 247
  9255. }
  9256. ],
  9257. "_prefab": null,
  9258. "_lpos": {
  9259. "__type__": "cc.Vec3",
  9260. "x": -166.229,
  9261. "y": -59.02,
  9262. "z": 0
  9263. },
  9264. "_lrot": {
  9265. "__type__": "cc.Quat",
  9266. "x": 0,
  9267. "y": 0,
  9268. "z": 0,
  9269. "w": 1
  9270. },
  9271. "_lscale": {
  9272. "__type__": "cc.Vec3",
  9273. "x": 1,
  9274. "y": 1,
  9275. "z": 1
  9276. },
  9277. "_mobility": 0,
  9278. "_layer": 33554432,
  9279. "_euler": {
  9280. "__type__": "cc.Vec3",
  9281. "x": 0,
  9282. "y": 0,
  9283. "z": 0
  9284. },
  9285. "_id": "deVKKCyQ9K15lBG90qHqeb"
  9286. },
  9287. {
  9288. "__type__": "cc.Node",
  9289. "_name": "Label",
  9290. "_objFlags": 0,
  9291. "__editorExtras__": {},
  9292. "_parent": {
  9293. "__id__": 232
  9294. },
  9295. "_children": [],
  9296. "_active": true,
  9297. "_components": [
  9298. {
  9299. "__id__": 234
  9300. },
  9301. {
  9302. "__id__": 235
  9303. }
  9304. ],
  9305. "_prefab": null,
  9306. "_lpos": {
  9307. "__type__": "cc.Vec3",
  9308. "x": 64.187,
  9309. "y": -1.133,
  9310. "z": 0
  9311. },
  9312. "_lrot": {
  9313. "__type__": "cc.Quat",
  9314. "x": 0,
  9315. "y": 0,
  9316. "z": 0,
  9317. "w": 1
  9318. },
  9319. "_lscale": {
  9320. "__type__": "cc.Vec3",
  9321. "x": 1,
  9322. "y": 1,
  9323. "z": 1
  9324. },
  9325. "_mobility": 0,
  9326. "_layer": 33554432,
  9327. "_euler": {
  9328. "__type__": "cc.Vec3",
  9329. "x": 0,
  9330. "y": 0,
  9331. "z": 0
  9332. },
  9333. "_id": "c0HBPkjdpIZbIl7c5SYS7j"
  9334. },
  9335. {
  9336. "__type__": "cc.UITransform",
  9337. "_name": "",
  9338. "_objFlags": 0,
  9339. "__editorExtras__": {},
  9340. "node": {
  9341. "__id__": 233
  9342. },
  9343. "_enabled": true,
  9344. "__prefab": null,
  9345. "_contentSize": {
  9346. "__type__": "cc.Size",
  9347. "width": 44,
  9348. "height": 54.4
  9349. },
  9350. "_anchorPoint": {
  9351. "__type__": "cc.Vec2",
  9352. "x": 0.5,
  9353. "y": 0.5
  9354. },
  9355. "_id": "f3btl/akNIyK1wrHRq4ptD"
  9356. },
  9357. {
  9358. "__type__": "cc.Label",
  9359. "_name": "",
  9360. "_objFlags": 0,
  9361. "__editorExtras__": {},
  9362. "node": {
  9363. "__id__": 233
  9364. },
  9365. "_enabled": true,
  9366. "__prefab": null,
  9367. "_customMaterial": null,
  9368. "_srcBlendFactor": 2,
  9369. "_dstBlendFactor": 4,
  9370. "_color": {
  9371. "__type__": "cc.Color",
  9372. "r": 255,
  9373. "g": 255,
  9374. "b": 255,
  9375. "a": 255
  9376. },
  9377. "_string": "音乐",
  9378. "_horizontalAlign": 1,
  9379. "_verticalAlign": 1,
  9380. "_actualFontSize": 20,
  9381. "_fontSize": 20,
  9382. "_fontFamily": "Arial",
  9383. "_lineHeight": 40,
  9384. "_overflow": 0,
  9385. "_enableWrapText": true,
  9386. "_font": null,
  9387. "_isSystemFontUsed": true,
  9388. "_spacingX": 0,
  9389. "_isItalic": false,
  9390. "_isBold": false,
  9391. "_isUnderline": false,
  9392. "_underlineHeight": 2,
  9393. "_cacheMode": 0,
  9394. "_enableOutline": true,
  9395. "_outlineColor": {
  9396. "__type__": "cc.Color",
  9397. "r": 0,
  9398. "g": 0,
  9399. "b": 0,
  9400. "a": 255
  9401. },
  9402. "_outlineWidth": 2,
  9403. "_enableShadow": false,
  9404. "_shadowColor": {
  9405. "__type__": "cc.Color",
  9406. "r": 0,
  9407. "g": 0,
  9408. "b": 0,
  9409. "a": 255
  9410. },
  9411. "_shadowOffset": {
  9412. "__type__": "cc.Vec2",
  9413. "x": 2,
  9414. "y": 2
  9415. },
  9416. "_shadowBlur": 2,
  9417. "_id": "5dSJHYaYFFZJVJgdoSwrQ1"
  9418. },
  9419. {
  9420. "__type__": "cc.Node",
  9421. "_name": "Close",
  9422. "_objFlags": 0,
  9423. "__editorExtras__": {},
  9424. "_parent": {
  9425. "__id__": 232
  9426. },
  9427. "_children": [],
  9428. "_active": true,
  9429. "_components": [
  9430. {
  9431. "__id__": 237
  9432. },
  9433. {
  9434. "__id__": 238
  9435. },
  9436. {
  9437. "__id__": 239
  9438. }
  9439. ],
  9440. "_prefab": null,
  9441. "_lpos": {
  9442. "__type__": "cc.Vec3",
  9443. "x": 291.034,
  9444. "y": 2.94,
  9445. "z": 0
  9446. },
  9447. "_lrot": {
  9448. "__type__": "cc.Quat",
  9449. "x": 0,
  9450. "y": 0,
  9451. "z": 0,
  9452. "w": 1
  9453. },
  9454. "_lscale": {
  9455. "__type__": "cc.Vec3",
  9456. "x": 1,
  9457. "y": 1,
  9458. "z": 1
  9459. },
  9460. "_mobility": 0,
  9461. "_layer": 33554432,
  9462. "_euler": {
  9463. "__type__": "cc.Vec3",
  9464. "x": 0,
  9465. "y": 0,
  9466. "z": 0
  9467. },
  9468. "_id": "69RfvI9vFANbNp2nP3U46E"
  9469. },
  9470. {
  9471. "__type__": "cc.UITransform",
  9472. "_name": "",
  9473. "_objFlags": 0,
  9474. "__editorExtras__": {},
  9475. "node": {
  9476. "__id__": 236
  9477. },
  9478. "_enabled": true,
  9479. "__prefab": null,
  9480. "_contentSize": {
  9481. "__type__": "cc.Size",
  9482. "width": 55,
  9483. "height": 20
  9484. },
  9485. "_anchorPoint": {
  9486. "__type__": "cc.Vec2",
  9487. "x": 0.5,
  9488. "y": 0.5
  9489. },
  9490. "_id": "baLKcNEJFE8ZnrL/vScP+c"
  9491. },
  9492. {
  9493. "__type__": "cc.Sprite",
  9494. "_name": "",
  9495. "_objFlags": 0,
  9496. "__editorExtras__": {},
  9497. "node": {
  9498. "__id__": 236
  9499. },
  9500. "_enabled": true,
  9501. "__prefab": null,
  9502. "_customMaterial": null,
  9503. "_srcBlendFactor": 2,
  9504. "_dstBlendFactor": 4,
  9505. "_color": {
  9506. "__type__": "cc.Color",
  9507. "r": 255,
  9508. "g": 255,
  9509. "b": 255,
  9510. "a": 255
  9511. },
  9512. "_spriteFrame": {
  9513. "__uuid__": "9f9e9519-d169-4d0b-986e-edaffc928352@f9941",
  9514. "__expectedType__": "cc.SpriteFrame"
  9515. },
  9516. "_type": 0,
  9517. "_fillType": 0,
  9518. "_sizeMode": 1,
  9519. "_fillCenter": {
  9520. "__type__": "cc.Vec2",
  9521. "x": 0,
  9522. "y": 0
  9523. },
  9524. "_fillStart": 0,
  9525. "_fillRange": 0,
  9526. "_isTrimmedMode": true,
  9527. "_useGrayscale": false,
  9528. "_atlas": null,
  9529. "_id": "31iaGZlH5OnZxbtfnGN+Nk"
  9530. },
  9531. {
  9532. "__type__": "cc.Button",
  9533. "_name": "",
  9534. "_objFlags": 0,
  9535. "__editorExtras__": {},
  9536. "node": {
  9537. "__id__": 236
  9538. },
  9539. "_enabled": true,
  9540. "__prefab": null,
  9541. "clickEvents": [
  9542. {
  9543. "__id__": 240
  9544. }
  9545. ],
  9546. "_interactable": true,
  9547. "_transition": 0,
  9548. "_normalColor": {
  9549. "__type__": "cc.Color",
  9550. "r": 255,
  9551. "g": 255,
  9552. "b": 255,
  9553. "a": 255
  9554. },
  9555. "_hoverColor": {
  9556. "__type__": "cc.Color",
  9557. "r": 211,
  9558. "g": 211,
  9559. "b": 211,
  9560. "a": 255
  9561. },
  9562. "_pressedColor": {
  9563. "__type__": "cc.Color",
  9564. "r": 255,
  9565. "g": 255,
  9566. "b": 255,
  9567. "a": 255
  9568. },
  9569. "_disabledColor": {
  9570. "__type__": "cc.Color",
  9571. "r": 124,
  9572. "g": 124,
  9573. "b": 124,
  9574. "a": 255
  9575. },
  9576. "_normalSprite": null,
  9577. "_hoverSprite": null,
  9578. "_pressedSprite": null,
  9579. "_disabledSprite": null,
  9580. "_duration": 0.1,
  9581. "_zoomScale": 1.2,
  9582. "_target": null,
  9583. "_id": "648LRmBDRJebW9Jv6ZnD+2"
  9584. },
  9585. {
  9586. "__type__": "cc.ClickEvent",
  9587. "target": {
  9588. "__id__": 198
  9589. },
  9590. "component": "",
  9591. "_componentId": "69705ajBrNBFLngI/WDLitw",
  9592. "handler": "Musicopen",
  9593. "customEventData": ""
  9594. },
  9595. {
  9596. "__type__": "cc.Node",
  9597. "_name": "Open",
  9598. "_objFlags": 0,
  9599. "__editorExtras__": {},
  9600. "_parent": {
  9601. "__id__": 232
  9602. },
  9603. "_children": [],
  9604. "_active": false,
  9605. "_components": [
  9606. {
  9607. "__id__": 242
  9608. },
  9609. {
  9610. "__id__": 243
  9611. },
  9612. {
  9613. "__id__": 244
  9614. }
  9615. ],
  9616. "_prefab": null,
  9617. "_lpos": {
  9618. "__type__": "cc.Vec3",
  9619. "x": 291.094,
  9620. "y": 2.947,
  9621. "z": 0
  9622. },
  9623. "_lrot": {
  9624. "__type__": "cc.Quat",
  9625. "x": 0,
  9626. "y": 0,
  9627. "z": 0,
  9628. "w": 1
  9629. },
  9630. "_lscale": {
  9631. "__type__": "cc.Vec3",
  9632. "x": 1,
  9633. "y": 1,
  9634. "z": 1
  9635. },
  9636. "_mobility": 0,
  9637. "_layer": 33554432,
  9638. "_euler": {
  9639. "__type__": "cc.Vec3",
  9640. "x": 0,
  9641. "y": 0,
  9642. "z": 0
  9643. },
  9644. "_id": "3bcEemlOZAcqSlyvublPaZ"
  9645. },
  9646. {
  9647. "__type__": "cc.UITransform",
  9648. "_name": "",
  9649. "_objFlags": 0,
  9650. "__editorExtras__": {},
  9651. "node": {
  9652. "__id__": 241
  9653. },
  9654. "_enabled": true,
  9655. "__prefab": null,
  9656. "_contentSize": {
  9657. "__type__": "cc.Size",
  9658. "width": 55,
  9659. "height": 20
  9660. },
  9661. "_anchorPoint": {
  9662. "__type__": "cc.Vec2",
  9663. "x": 0.5,
  9664. "y": 0.5
  9665. },
  9666. "_id": "9bhPq4jFlDMo07MwonXZXK"
  9667. },
  9668. {
  9669. "__type__": "cc.Sprite",
  9670. "_name": "",
  9671. "_objFlags": 0,
  9672. "__editorExtras__": {},
  9673. "node": {
  9674. "__id__": 241
  9675. },
  9676. "_enabled": true,
  9677. "__prefab": null,
  9678. "_customMaterial": null,
  9679. "_srcBlendFactor": 2,
  9680. "_dstBlendFactor": 4,
  9681. "_color": {
  9682. "__type__": "cc.Color",
  9683. "r": 255,
  9684. "g": 255,
  9685. "b": 255,
  9686. "a": 255
  9687. },
  9688. "_spriteFrame": {
  9689. "__uuid__": "9af9c618-45a8-4676-8865-8c62ddc63860@f9941",
  9690. "__expectedType__": "cc.SpriteFrame"
  9691. },
  9692. "_type": 0,
  9693. "_fillType": 0,
  9694. "_sizeMode": 1,
  9695. "_fillCenter": {
  9696. "__type__": "cc.Vec2",
  9697. "x": 0,
  9698. "y": 0
  9699. },
  9700. "_fillStart": 0,
  9701. "_fillRange": 0,
  9702. "_isTrimmedMode": true,
  9703. "_useGrayscale": false,
  9704. "_atlas": null,
  9705. "_id": "1cNCm2DKBDhb3jzJpcxzUL"
  9706. },
  9707. {
  9708. "__type__": "cc.Button",
  9709. "_name": "",
  9710. "_objFlags": 0,
  9711. "__editorExtras__": {},
  9712. "node": {
  9713. "__id__": 241
  9714. },
  9715. "_enabled": true,
  9716. "__prefab": null,
  9717. "clickEvents": [
  9718. {
  9719. "__id__": 245
  9720. }
  9721. ],
  9722. "_interactable": true,
  9723. "_transition": 0,
  9724. "_normalColor": {
  9725. "__type__": "cc.Color",
  9726. "r": 255,
  9727. "g": 255,
  9728. "b": 255,
  9729. "a": 255
  9730. },
  9731. "_hoverColor": {
  9732. "__type__": "cc.Color",
  9733. "r": 211,
  9734. "g": 211,
  9735. "b": 211,
  9736. "a": 255
  9737. },
  9738. "_pressedColor": {
  9739. "__type__": "cc.Color",
  9740. "r": 255,
  9741. "g": 255,
  9742. "b": 255,
  9743. "a": 255
  9744. },
  9745. "_disabledColor": {
  9746. "__type__": "cc.Color",
  9747. "r": 124,
  9748. "g": 124,
  9749. "b": 124,
  9750. "a": 255
  9751. },
  9752. "_normalSprite": null,
  9753. "_hoverSprite": null,
  9754. "_pressedSprite": null,
  9755. "_disabledSprite": null,
  9756. "_duration": 0.1,
  9757. "_zoomScale": 1.2,
  9758. "_target": null,
  9759. "_id": "17zLaUXDhP96oU0hSLzFuG"
  9760. },
  9761. {
  9762. "__type__": "cc.ClickEvent",
  9763. "target": {
  9764. "__id__": 198
  9765. },
  9766. "component": "",
  9767. "_componentId": "69705ajBrNBFLngI/WDLitw",
  9768. "handler": "Musicclose",
  9769. "customEventData": ""
  9770. },
  9771. {
  9772. "__type__": "cc.UITransform",
  9773. "_name": "",
  9774. "_objFlags": 0,
  9775. "__editorExtras__": {},
  9776. "node": {
  9777. "__id__": 232
  9778. },
  9779. "_enabled": true,
  9780. "__prefab": null,
  9781. "_contentSize": {
  9782. "__type__": "cc.Size",
  9783. "width": 28,
  9784. "height": 30
  9785. },
  9786. "_anchorPoint": {
  9787. "__type__": "cc.Vec2",
  9788. "x": 0.5,
  9789. "y": 0.5
  9790. },
  9791. "_id": "9cqvzKkC9E9bptWnKl5Ua6"
  9792. },
  9793. {
  9794. "__type__": "cc.Sprite",
  9795. "_name": "",
  9796. "_objFlags": 0,
  9797. "__editorExtras__": {},
  9798. "node": {
  9799. "__id__": 232
  9800. },
  9801. "_enabled": true,
  9802. "__prefab": null,
  9803. "_customMaterial": null,
  9804. "_srcBlendFactor": 2,
  9805. "_dstBlendFactor": 4,
  9806. "_color": {
  9807. "__type__": "cc.Color",
  9808. "r": 255,
  9809. "g": 255,
  9810. "b": 255,
  9811. "a": 255
  9812. },
  9813. "_spriteFrame": {
  9814. "__uuid__": "d573d3ad-d9c6-4e2b-b998-dd8b14d13d35@f9941",
  9815. "__expectedType__": "cc.SpriteFrame"
  9816. },
  9817. "_type": 0,
  9818. "_fillType": 0,
  9819. "_sizeMode": 1,
  9820. "_fillCenter": {
  9821. "__type__": "cc.Vec2",
  9822. "x": 0,
  9823. "y": 0
  9824. },
  9825. "_fillStart": 0,
  9826. "_fillRange": 0,
  9827. "_isTrimmedMode": true,
  9828. "_useGrayscale": false,
  9829. "_atlas": null,
  9830. "_id": "f85odFnAdOiJN8v+xnY0lj"
  9831. },
  9832. {
  9833. "__type__": "cc.UITransform",
  9834. "_name": "",
  9835. "_objFlags": 0,
  9836. "__editorExtras__": {},
  9837. "node": {
  9838. "__id__": 198
  9839. },
  9840. "_enabled": true,
  9841. "__prefab": null,
  9842. "_contentSize": {
  9843. "__type__": "cc.Size",
  9844. "width": 460,
  9845. "height": 322
  9846. },
  9847. "_anchorPoint": {
  9848. "__type__": "cc.Vec2",
  9849. "x": 0.5,
  9850. "y": 0.5
  9851. },
  9852. "_id": "832EC5pANLOpgDEqI3Ps9g"
  9853. },
  9854. {
  9855. "__type__": "cc.Sprite",
  9856. "_name": "",
  9857. "_objFlags": 0,
  9858. "__editorExtras__": {},
  9859. "node": {
  9860. "__id__": 198
  9861. },
  9862. "_enabled": true,
  9863. "__prefab": null,
  9864. "_customMaterial": null,
  9865. "_srcBlendFactor": 2,
  9866. "_dstBlendFactor": 4,
  9867. "_color": {
  9868. "__type__": "cc.Color",
  9869. "r": 255,
  9870. "g": 255,
  9871. "b": 255,
  9872. "a": 255
  9873. },
  9874. "_spriteFrame": {
  9875. "__uuid__": "f728d889-607f-4537-a04b-83522a4aeba2@f9941",
  9876. "__expectedType__": "cc.SpriteFrame"
  9877. },
  9878. "_type": 0,
  9879. "_fillType": 0,
  9880. "_sizeMode": 1,
  9881. "_fillCenter": {
  9882. "__type__": "cc.Vec2",
  9883. "x": 0,
  9884. "y": 0
  9885. },
  9886. "_fillStart": 0,
  9887. "_fillRange": 0,
  9888. "_isTrimmedMode": true,
  9889. "_useGrayscale": false,
  9890. "_atlas": null,
  9891. "_id": "22/l0xNZFGhaB1FRsFby/X"
  9892. },
  9893. {
  9894. "__type__": "69705ajBrNBFLngI/WDLitw",
  9895. "_name": "",
  9896. "_objFlags": 0,
  9897. "__editorExtras__": {},
  9898. "node": {
  9899. "__id__": 198
  9900. },
  9901. "_enabled": true,
  9902. "__prefab": null,
  9903. "_id": "ad4D5RchtDK4IIzrBtCRN5"
  9904. },
  9905. {
  9906. "__type__": "cc.UITransform",
  9907. "_name": "",
  9908. "_objFlags": 0,
  9909. "__editorExtras__": {},
  9910. "node": {
  9911. "__id__": 2
  9912. },
  9913. "_enabled": true,
  9914. "__prefab": null,
  9915. "_contentSize": {
  9916. "__type__": "cc.Size",
  9917. "width": 720,
  9918. "height": 1280
  9919. },
  9920. "_anchorPoint": {
  9921. "__type__": "cc.Vec2",
  9922. "x": 0.5,
  9923. "y": 0.5
  9924. },
  9925. "_id": "d6rUX5yfhMlKoWX2bSbawx"
  9926. },
  9927. {
  9928. "__type__": "cc.Canvas",
  9929. "_name": "",
  9930. "_objFlags": 0,
  9931. "__editorExtras__": {},
  9932. "node": {
  9933. "__id__": 2
  9934. },
  9935. "_enabled": true,
  9936. "__prefab": null,
  9937. "_cameraComponent": {
  9938. "__id__": 4
  9939. },
  9940. "_alignCanvasWithScreen": true,
  9941. "_id": "12O/ljcVlEqLmVm3U2gEOQ"
  9942. },
  9943. {
  9944. "__type__": "cc.Widget",
  9945. "_name": "",
  9946. "_objFlags": 0,
  9947. "__editorExtras__": {},
  9948. "node": {
  9949. "__id__": 2
  9950. },
  9951. "_enabled": true,
  9952. "__prefab": null,
  9953. "_alignFlags": 45,
  9954. "_target": null,
  9955. "_left": 0,
  9956. "_right": 0,
  9957. "_top": 5.684341886080802e-14,
  9958. "_bottom": 5.684341886080802e-14,
  9959. "_horizontalCenter": 0,
  9960. "_verticalCenter": 0,
  9961. "_isAbsLeft": true,
  9962. "_isAbsRight": true,
  9963. "_isAbsTop": true,
  9964. "_isAbsBottom": true,
  9965. "_isAbsHorizontalCenter": true,
  9966. "_isAbsVerticalCenter": true,
  9967. "_originalWidth": 0,
  9968. "_originalHeight": 0,
  9969. "_alignMode": 2,
  9970. "_lockFlags": 0,
  9971. "_id": "c5V1EV8IpMtrIvY1OE9t2u"
  9972. },
  9973. {
  9974. "__type__": "f844ftp60pCEp9kVQoHbs1G",
  9975. "_name": "",
  9976. "_objFlags": 0,
  9977. "__editorExtras__": {},
  9978. "node": {
  9979. "__id__": 2
  9980. },
  9981. "_enabled": true,
  9982. "__prefab": null,
  9983. "RankNode": {
  9984. "__id__": 24
  9985. },
  9986. "StartNode": {
  9987. "__id__": 36
  9988. },
  9989. "SliderNode": {
  9990. "__id__": 42
  9991. },
  9992. "SetNode": {
  9993. "__id__": 30
  9994. },
  9995. "TipsNode": {
  9996. "__id__": 13
  9997. },
  9998. "RankPanelNode": {
  9999. "__id__": 55
  10000. },
  10001. "SetPanelNode": {
  10002. "__id__": 198
  10003. },
  10004. "_id": "13wY7mOPhEd6rhvqfyLsLD"
  10005. },
  10006. {
  10007. "__type__": "cc.SceneGlobals",
  10008. "ambient": {
  10009. "__id__": 256
  10010. },
  10011. "shadows": {
  10012. "__id__": 257
  10013. },
  10014. "_skybox": {
  10015. "__id__": 258
  10016. },
  10017. "fog": {
  10018. "__id__": 259
  10019. },
  10020. "octree": {
  10021. "__id__": 260
  10022. },
  10023. "skin": {
  10024. "__id__": 261
  10025. },
  10026. "lightProbeInfo": {
  10027. "__id__": 262
  10028. },
  10029. "postSettings": {
  10030. "__id__": 263
  10031. },
  10032. "bakedWithStationaryMainLight": false,
  10033. "bakedWithHighpLightmap": false
  10034. },
  10035. {
  10036. "__type__": "cc.AmbientInfo",
  10037. "_skyColorHDR": {
  10038. "__type__": "cc.Vec4",
  10039. "x": 0,
  10040. "y": 0,
  10041. "z": 0,
  10042. "w": 0.520833125
  10043. },
  10044. "_skyColor": {
  10045. "__type__": "cc.Vec4",
  10046. "x": 0,
  10047. "y": 0,
  10048. "z": 0,
  10049. "w": 0.520833125
  10050. },
  10051. "_skyIllumHDR": 20000,
  10052. "_skyIllum": 20000,
  10053. "_groundAlbedoHDR": {
  10054. "__type__": "cc.Vec4",
  10055. "x": 0,
  10056. "y": 0,
  10057. "z": 0,
  10058. "w": 0
  10059. },
  10060. "_groundAlbedo": {
  10061. "__type__": "cc.Vec4",
  10062. "x": 0,
  10063. "y": 0,
  10064. "z": 0,
  10065. "w": 0
  10066. },
  10067. "_skyColorLDR": {
  10068. "__type__": "cc.Vec4",
  10069. "x": 0.2,
  10070. "y": 0.5,
  10071. "z": 0.8,
  10072. "w": 1
  10073. },
  10074. "_skyIllumLDR": 20000,
  10075. "_groundAlbedoLDR": {
  10076. "__type__": "cc.Vec4",
  10077. "x": 0.2,
  10078. "y": 0.2,
  10079. "z": 0.2,
  10080. "w": 1
  10081. }
  10082. },
  10083. {
  10084. "__type__": "cc.ShadowsInfo",
  10085. "_enabled": false,
  10086. "_type": 0,
  10087. "_normal": {
  10088. "__type__": "cc.Vec3",
  10089. "x": 0,
  10090. "y": 1,
  10091. "z": 0
  10092. },
  10093. "_distance": 0,
  10094. "_planeBias": 1,
  10095. "_shadowColor": {
  10096. "__type__": "cc.Color",
  10097. "r": 76,
  10098. "g": 76,
  10099. "b": 76,
  10100. "a": 255
  10101. },
  10102. "_maxReceived": 4,
  10103. "_size": {
  10104. "__type__": "cc.Vec2",
  10105. "x": 512,
  10106. "y": 512
  10107. }
  10108. },
  10109. {
  10110. "__type__": "cc.SkyboxInfo",
  10111. "_envLightingType": 0,
  10112. "_envmapHDR": null,
  10113. "_envmap": null,
  10114. "_envmapLDR": null,
  10115. "_diffuseMapHDR": null,
  10116. "_diffuseMapLDR": null,
  10117. "_enabled": false,
  10118. "_useHDR": true,
  10119. "_editableMaterial": null,
  10120. "_reflectionHDR": null,
  10121. "_reflectionLDR": null,
  10122. "_rotationAngle": 0
  10123. },
  10124. {
  10125. "__type__": "cc.FogInfo",
  10126. "_type": 0,
  10127. "_fogColor": {
  10128. "__type__": "cc.Color",
  10129. "r": 200,
  10130. "g": 200,
  10131. "b": 200,
  10132. "a": 255
  10133. },
  10134. "_enabled": false,
  10135. "_fogDensity": 0.3,
  10136. "_fogStart": 0.5,
  10137. "_fogEnd": 300,
  10138. "_fogAtten": 5,
  10139. "_fogTop": 1.5,
  10140. "_fogRange": 1.2,
  10141. "_accurate": false
  10142. },
  10143. {
  10144. "__type__": "cc.OctreeInfo",
  10145. "_enabled": false,
  10146. "_minPos": {
  10147. "__type__": "cc.Vec3",
  10148. "x": -1024,
  10149. "y": -1024,
  10150. "z": -1024
  10151. },
  10152. "_maxPos": {
  10153. "__type__": "cc.Vec3",
  10154. "x": 1024,
  10155. "y": 1024,
  10156. "z": 1024
  10157. },
  10158. "_depth": 8
  10159. },
  10160. {
  10161. "__type__": "cc.SkinInfo",
  10162. "_enabled": false,
  10163. "_blurRadius": 0.01,
  10164. "_sssIntensity": 3
  10165. },
  10166. {
  10167. "__type__": "cc.LightProbeInfo",
  10168. "_giScale": 1,
  10169. "_giSamples": 1024,
  10170. "_bounces": 2,
  10171. "_reduceRinging": 0,
  10172. "_showProbe": true,
  10173. "_showWireframe": true,
  10174. "_showConvex": false,
  10175. "_data": null,
  10176. "_lightProbeSphereVolume": 1
  10177. },
  10178. {
  10179. "__type__": "cc.PostSettingsInfo",
  10180. "_toneMappingType": 0
  10181. }
  10182. ]