scene.fire 275 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454124551245612457124581245912460124611246212463124641246512466124671246812469124701247112472124731247412475124761247712478124791248012481124821248312484124851248612487124881248912490124911249212493124941249512496124971249812499125001250112502125031250412505125061250712508125091251012511125121251312514125151251612517125181251912520125211252212523125241252512526125271252812529125301253112532125331253412535125361253712538125391254012541125421254312544125451254612547125481254912550125511255212553125541255512556125571255812559125601256112562125631256412565125661256712568125691257012571125721257312574125751257612577125781257912580125811258212583125841258512586125871258812589125901259112592125931259412595125961259712598125991260012601126021260312604126051260612607126081260912610126111261212613126141261512616126171261812619126201262112622126231262412625126261262712628126291263012631126321263312634126351263612637126381263912640126411264212643126441264512646126471264812649126501265112652126531265412655126561265712658126591266012661126621266312664126651266612667126681266912670126711267212673126741267512676126771267812679126801268112682126831268412685126861268712688126891269012691126921269312694126951269612697126981269912700127011270212703127041270512706127071270812709127101271112712127131271412715127161271712718127191272012721127221272312724127251272612727127281272912730127311273212733127341273512736127371273812739127401274112742127431274412745127461274712748127491275012751127521275312754127551275612757127581275912760127611276212763127641276512766127671276812769127701277112772127731277412775127761277712778127791278012781127821278312784127851278612787127881278912790127911279212793127941279512796127971279812799128001280112802128031280412805128061280712808128091281012811128121281312814128151281612817128181281912820128211282212823128241282512826128271282812829128301283112832128331283412835128361283712838128391284012841128421284312844128451284612847128481284912850128511285212853128541285512856128571285812859128601286112862128631286412865128661286712868128691287012871128721287312874128751287612877128781287912880128811288212883128841288512886128871288812889128901289112892128931289412895128961289712898128991290012901129021290312904129051290612907129081290912910129111291212913129141291512916129171291812919129201292112922129231292412925129261292712928129291293012931129321293312934129351293612937129381293912940129411294212943129441294512946129471294812949129501295112952129531295412955129561295712958129591296012961129621296312964129651296612967129681296912970129711297212973129741297512976129771297812979129801298112982129831298412985129861298712988129891299012991129921299312994129951299612997129981299913000130011300213003130041300513006130071300813009130101301113012130131301413015130161301713018130191302013021130221302313024130251302613027130281302913030130311303213033130341303513036130371303813039130401304113042130431304413045130461304713048130491305013051130521305313054130551305613057130581305913060130611306213063130641306513066130671306813069130701307113072130731307413075130761307713078130791308013081130821308313084130851308613087130881308913090130911309213093130941309513096130971309813099131001310113102131031310413105131061310713108131091311013111131121311313114131151311613117131181311913120131211312213123131241312513126131271312813129131301313113132131331313413135131361313713138131391314013141131421314313144131451314613147131481314913150131511315213153131541315513156131571315813159131601316113162131631316413165131661316713168131691317013171131721317313174131751317613177131781317913180131811318213183131841318513186131871318813189131901319113192131931319413195131961319713198131991320013201132021320313204132051320613207132081320913210132111321213213132141321513216132171321813219132201322113222132231322413225132261322713228132291323013231132321323313234132351323613237132381323913240132411324213243132441324513246132471324813249132501325113252132531325413255132561325713258132591326013261132621326313264132651326613267132681326913270132711327213273132741327513276132771327813279132801328113282132831328413285132861328713288132891329013291132921329313294132951329613297132981329913300133011330213303133041330513306133071330813309133101331113312133131331413315133161331713318133191332013321133221332313324133251332613327133281332913330133311333213333133341333513336133371333813339133401334113342133431334413345133461334713348133491335013351133521335313354133551335613357133581335913360133611336213363133641336513366133671336813369133701337113372133731337413375133761337713378133791338013381133821338313384133851338613387133881338913390133911339213393133941339513396133971339813399134001340113402134031340413405134061340713408134091341013411134121341313414134151341613417134181341913420134211342213423134241342513426134271342813429134301343113432134331343413435134361343713438134391344013441134421344313444134451344613447134481344913450134511345213453134541345513456134571345813459134601346113462134631346413465134661346713468134691347013471134721347313474134751347613477134781347913480134811348213483134841348513486134871348813489134901349113492134931349413495134961349713498134991350013501135021350313504135051350613507135081350913510135111351213513135141351513516135171351813519135201352113522135231352413525135261352713528135291353013531135321353313534135351353613537135381353913540135411354213543135441354513546135471354813549135501355113552135531355413555135561355713558135591356013561135621356313564135651356613567135681356913570135711357213573135741357513576135771357813579135801358113582135831358413585135861358713588135891359013591135921359313594135951359613597135981359913600136011360213603136041360513606136071360813609136101361113612136131361413615136161361713618136191362013621136221362313624136251362613627136281362913630136311363213633136341363513636136371363813639136401364113642136431364413645136461364713648136491365013651136521365313654136551365613657136581365913660136611366213663136641366513666136671366813669136701367113672136731367413675136761367713678136791368013681136821368313684136851368613687136881368913690136911369213693136941369513696136971369813699137001370113702137031370413705137061370713708137091371013711137121371313714137151371613717137181371913720137211372213723137241372513726137271372813729137301373113732137331373413735137361373713738137391374013741137421374313744137451374613747137481374913750137511375213753137541375513756137571375813759137601376113762137631376413765137661376713768137691377013771137721377313774137751377613777137781377913780137811378213783137841378513786137871378813789137901379113792137931379413795137961379713798137991380013801138021380313804138051380613807138081380913810138111381213813138141381513816138171381813819138201382113822138231382413825138261382713828138291383013831138321383313834138351383613837138381383913840138411384213843138441384513846138471384813849138501385113852138531385413855138561385713858138591386013861138621386313864138651386613867138681386913870138711387213873138741387513876138771387813879138801388113882138831388413885138861388713888138891389013891138921389313894138951389613897138981389913900139011390213903139041390513906139071390813909139101391113912139131391413915139161391713918139191392013921139221392313924139251392613927139281392913930139311393213933139341393513936139371393813939139401394113942139431394413945139461394713948139491395013951139521395313954139551395613957139581395913960139611396213963139641396513966139671396813969139701397113972139731397413975139761397713978139791398013981139821398313984139851398613987139881398913990139911399213993139941399513996139971399813999140001400114002140031400414005140061400714008140091401014011140121401314014140151401614017140181401914020140211402214023140241402514026140271402814029140301403114032140331403414035140361403714038140391404014041140421404314044140451404614047140481404914050140511405214053140541405514056140571405814059140601406114062140631406414065140661406714068140691407014071140721407314074140751407614077140781407914080140811408214083140841408514086140871408814089140901409114092140931409414095140961409714098140991410014101141021410314104141051410614107141081410914110141111411214113141141411514116141171411814119141201412114122141231412414125141261412714128141291413014131141321413314134141351413614137141381413914140141411414214143141441414514146141471414814149141501415114152141531415414155141561415714158141591416014161141621416314164141651416614167141681416914170141711417214173141741417514176141771417814179141801418114182141831418414185141861418714188141891419014191141921419314194141951419614197141981419914200142011420214203142041420514206142071420814209142101421114212142131421414215142161421714218142191422014221142221422314224142251422614227142281422914230142311423214233142341423514236142371423814239142401424114242142431424414245142461424714248142491425014251142521425314254142551425614257142581425914260142611426214263142641426514266142671426814269142701427114272142731427414275142761427714278142791428014281142821428314284142851428614287142881428914290142911429214293142941429514296142971429814299143001430114302143031430414305143061430714308143091431014311143121431314314143151431614317143181431914320143211432214323143241432514326143271432814329143301433114332143331433414335143361433714338143391434014341143421434314344143451434614347143481434914350143511435214353143541435514356143571435814359143601436114362143631436414365143661436714368143691437014371143721437314374143751437614377143781437914380143811438214383143841438514386143871438814389143901439114392143931439414395143961439714398143991440014401144021440314404144051440614407144081440914410144111441214413144141441514416144171441814419144201442114422144231442414425144261442714428144291443014431144321443314434144351443614437144381443914440144411444214443144441444514446144471444814449144501445114452144531445414455144561445714458144591446014461144621446314464144651446614467144681446914470144711447214473144741447514476144771447814479144801448114482144831448414485144861448714488144891449014491144921449314494144951449614497144981449914500145011450214503145041450514506145071450814509145101451114512145131451414515145161451714518145191452014521145221452314524145251452614527145281452914530145311453214533145341453514536145371453814539145401454114542145431454414545145461454714548145491455014551145521455314554145551455614557145581455914560145611456214563145641456514566145671456814569145701457114572145731457414575145761457714578145791458014581145821458314584145851458614587145881458914590145911459214593145941459514596145971459814599146001460114602146031460414605146061460714608146091461014611146121461314614146151461614617146181461914620146211462214623146241462514626146271462814629146301463114632146331463414635146361463714638146391464014641146421464314644146451464614647146481464914650146511465214653146541465514656146571465814659146601466114662146631466414665146661466714668146691467014671146721467314674146751467614677146781467914680146811468214683146841468514686146871468814689146901469114692146931469414695146961469714698146991470014701147021470314704147051470614707147081470914710147111471214713147141471514716147171471814719147201472114722147231472414725147261472714728147291473014731147321473314734147351473614737147381473914740147411474214743147441474514746147471474814749147501475114752147531475414755147561475714758147591476014761147621476314764147651476614767147681476914770147711477214773147741477514776147771477814779147801478114782147831478414785147861478714788147891479014791147921479314794147951479614797147981479914800148011480214803148041480514806148071480814809148101481114812148131481414815148161481714818148191482014821148221482314824148251482614827148281482914830148311483214833148341483514836148371483814839148401484114842148431484414845148461484714848148491485014851148521485314854148551485614857148581485914860148611486214863148641486514866148671486814869148701487114872148731487414875148761487714878148791488014881148821488314884148851488614887148881488914890148911489214893148941489514896148971489814899149001490114902149031490414905149061490714908149091491014911149121491314914149151491614917149181491914920149211492214923149241492514926149271492814929149301493114932149331493414935149361493714938149391494014941149421494314944149451494614947149481494914950149511495214953149541495514956149571495814959149601496114962149631496414965149661496714968149691497014971149721497314974149751497614977149781497914980149811498214983149841498514986149871498814989149901499114992149931499414995149961499714998149991500015001150021500315004150051500615007150081500915010150111501215013150141501515016150171501815019150201502115022150231502415025150261502715028150291503015031150321503315034150351503615037150381503915040150411504215043150441504515046150471504815049150501505115052150531505415055150561505715058150591506015061150621506315064150651506615067150681506915070150711507215073150741507515076150771507815079150801508115082150831508415085150861508715088150891509015091150921509315094150951509615097150981509915100151011510215103151041510515106151071510815109151101511115112151131511415115151161511715118151191512015121151221512315124151251512615127151281512915130151311513215133151341513515136151371513815139151401514115142151431514415145151461514715148151491515015151151521515315154151551515615157151581515915160151611516215163151641516515166151671516815169151701517115172151731517415175151761517715178151791518015181151821518315184151851518615187151881518915190151911519215193151941519515196151971519815199152001520115202152031520415205152061520715208152091521015211152121521315214152151521615217152181521915220152211522215223152241522515226152271522815229152301523115232152331523415235152361523715238152391524015241152421524315244152451524615247152481524915250152511525215253152541525515256152571525815259152601526115262152631526415265152661526715268152691527015271152721527315274152751527615277152781527915280152811528215283152841528515286152871528815289152901529115292152931529415295152961529715298152991530015301153021530315304153051530615307153081530915310153111531215313153141531515316153171531815319153201532115322153231532415325153261532715328153291533015331153321533315334153351533615337153381533915340153411534215343153441534515346153471534815349153501535115352153531535415355153561535715358153591536015361153621536315364153651536615367153681536915370153711537215373153741537515376153771537815379153801538115382153831538415385153861538715388153891539015391153921539315394153951539615397153981539915400154011540215403154041540515406154071540815409154101541115412154131541415415154161541715418154191542015421154221542315424154251542615427154281542915430154311543215433154341543515436154371543815439154401544115442154431544415445154461544715448154491545015451154521545315454154551545615457154581545915460154611546215463154641546515466154671546815469154701547115472154731547415475154761547715478154791548015481154821548315484154851548615487154881548915490154911549215493154941549515496154971549815499155001550115502155031550415505155061550715508155091551015511155121551315514155151551615517155181551915520155211552215523155241552515526155271552815529155301553115532155331553415535155361553715538155391554015541155421554315544155451554615547155481554915550155511555215553155541555515556155571555815559155601556115562155631556415565155661556715568
  1. [
  2. {
  3. "__type__": "cc.SceneAsset",
  4. "_name": "",
  5. "_objFlags": 0,
  6. "_native": "",
  7. "scene": {
  8. "__id__": 1
  9. }
  10. },
  11. {
  12. "__type__": "cc.Scene",
  13. "_objFlags": 0,
  14. "_parent": null,
  15. "_children": [
  16. {
  17. "__id__": 2
  18. },
  19. {
  20. "__id__": 18
  21. },
  22. {
  23. "__id__": 126
  24. },
  25. {
  26. "__id__": 21
  27. },
  28. {
  29. "__id__": 34
  30. }
  31. ],
  32. "_active": false,
  33. "_components": [],
  34. "_prefab": null,
  35. "_opacity": 255,
  36. "_color": {
  37. "__type__": "cc.Color",
  38. "r": 255,
  39. "g": 255,
  40. "b": 255,
  41. "a": 255
  42. },
  43. "_contentSize": {
  44. "__type__": "cc.Size",
  45. "width": 0,
  46. "height": 0
  47. },
  48. "_anchorPoint": {
  49. "__type__": "cc.Vec2",
  50. "x": 0,
  51. "y": 0
  52. },
  53. "_trs": {
  54. "__type__": "TypedArray",
  55. "ctor": "Float64Array",
  56. "array": [
  57. 0,
  58. 0,
  59. 0,
  60. 0,
  61. 0,
  62. 0,
  63. 1,
  64. 1,
  65. 1,
  66. 1
  67. ]
  68. },
  69. "_is3DNode": true,
  70. "_groupIndex": 0,
  71. "groupIndex": 0,
  72. "autoReleaseAssets": false,
  73. "_id": "34a6e269-c4a1-4b06-b283-a25d10e81155"
  74. },
  75. {
  76. "__type__": "cc.Node",
  77. "_name": "Canvas",
  78. "_objFlags": 0,
  79. "_parent": {
  80. "__id__": 1
  81. },
  82. "_children": [
  83. {
  84. "__id__": 3
  85. },
  86. {
  87. "__id__": 5
  88. },
  89. {
  90. "__id__": 9
  91. },
  92. {
  93. "__id__": 36
  94. },
  95. {
  96. "__id__": 105
  97. },
  98. {
  99. "__id__": 145
  100. },
  101. {
  102. "__id__": 130
  103. }
  104. ],
  105. "_active": true,
  106. "_components": [
  107. {
  108. "__id__": 332
  109. },
  110. {
  111. "__id__": 260
  112. },
  113. {
  114. "__id__": 333
  115. }
  116. ],
  117. "_prefab": null,
  118. "_opacity": 255,
  119. "_color": {
  120. "__type__": "cc.Color",
  121. "r": 255,
  122. "g": 255,
  123. "b": 255,
  124. "a": 255
  125. },
  126. "_contentSize": {
  127. "__type__": "cc.Size",
  128. "width": 750,
  129. "height": 1334
  130. },
  131. "_anchorPoint": {
  132. "__type__": "cc.Vec2",
  133. "x": 0.5,
  134. "y": 0.5
  135. },
  136. "_trs": {
  137. "__type__": "TypedArray",
  138. "ctor": "Float64Array",
  139. "array": [
  140. 375,
  141. 667,
  142. 0,
  143. 0,
  144. 0,
  145. 0,
  146. 1,
  147. 1,
  148. 1,
  149. 1
  150. ]
  151. },
  152. "_eulerAngles": {
  153. "__type__": "cc.Vec3",
  154. "x": 0,
  155. "y": 0,
  156. "z": 0
  157. },
  158. "_skewX": 0,
  159. "_skewY": 0,
  160. "_is3DNode": false,
  161. "_groupIndex": 0,
  162. "groupIndex": 0,
  163. "_id": "01rbOio7xIWq3F38Ot5q0V"
  164. },
  165. {
  166. "__type__": "cc.Node",
  167. "_name": "Main Camera",
  168. "_objFlags": 0,
  169. "_parent": {
  170. "__id__": 2
  171. },
  172. "_children": [],
  173. "_active": true,
  174. "_components": [
  175. {
  176. "__id__": 4
  177. }
  178. ],
  179. "_prefab": null,
  180. "_opacity": 255,
  181. "_color": {
  182. "__type__": "cc.Color",
  183. "r": 255,
  184. "g": 255,
  185. "b": 255,
  186. "a": 255
  187. },
  188. "_contentSize": {
  189. "__type__": "cc.Size",
  190. "width": 0,
  191. "height": 0
  192. },
  193. "_anchorPoint": {
  194. "__type__": "cc.Vec2",
  195. "x": 0.5,
  196. "y": 0.5
  197. },
  198. "_trs": {
  199. "__type__": "TypedArray",
  200. "ctor": "Float64Array",
  201. "array": [
  202. 0,
  203. 0,
  204. 338.61593287971556,
  205. 0,
  206. 0,
  207. 0,
  208. 1,
  209. 1,
  210. 1,
  211. 1
  212. ]
  213. },
  214. "_eulerAngles": {
  215. "__type__": "cc.Vec3",
  216. "x": 0,
  217. "y": 0,
  218. "z": 0
  219. },
  220. "_skewX": 0,
  221. "_skewY": 0,
  222. "_is3DNode": false,
  223. "_groupIndex": 0,
  224. "groupIndex": 0,
  225. "_id": "56oObP3h5LdaSEtBDOfJOh"
  226. },
  227. {
  228. "__type__": "cc.Camera",
  229. "_name": "",
  230. "_objFlags": 0,
  231. "node": {
  232. "__id__": 3
  233. },
  234. "_enabled": true,
  235. "_cullingMask": 4294967295,
  236. "_clearFlags": 6,
  237. "_backgroundColor": {
  238. "__type__": "cc.Color",
  239. "r": 0,
  240. "g": 0,
  241. "b": 0,
  242. "a": 255
  243. },
  244. "_depth": 0,
  245. "_zoomRatio": 1,
  246. "_targetTexture": null,
  247. "_fov": 60,
  248. "_orthoSize": 10,
  249. "_nearClip": 1,
  250. "_farClip": 4096,
  251. "_ortho": true,
  252. "_rect": {
  253. "__type__": "cc.Rect",
  254. "x": 0,
  255. "y": 0,
  256. "width": 1,
  257. "height": 1
  258. },
  259. "_renderStages": 1,
  260. "_alignWithScreen": true,
  261. "_id": "bbi+CQCuVKqpKEIH4N/QZ2"
  262. },
  263. {
  264. "__type__": "cc.Node",
  265. "_name": "backGroud",
  266. "_objFlags": 0,
  267. "_parent": {
  268. "__id__": 2
  269. },
  270. "_children": [
  271. {
  272. "__id__": 6
  273. }
  274. ],
  275. "_active": true,
  276. "_components": [
  277. {
  278. "__id__": 8
  279. }
  280. ],
  281. "_prefab": null,
  282. "_opacity": 255,
  283. "_color": {
  284. "__type__": "cc.Color",
  285. "r": 255,
  286. "g": 255,
  287. "b": 255,
  288. "a": 255
  289. },
  290. "_contentSize": {
  291. "__type__": "cc.Size",
  292. "width": 0,
  293. "height": 0
  294. },
  295. "_anchorPoint": {
  296. "__type__": "cc.Vec2",
  297. "x": 0.5,
  298. "y": 0.5
  299. },
  300. "_trs": {
  301. "__type__": "TypedArray",
  302. "ctor": "Float64Array",
  303. "array": [
  304. 0,
  305. 0,
  306. 0,
  307. 0,
  308. 0,
  309. 0,
  310. 1,
  311. 1,
  312. 1,
  313. 1
  314. ]
  315. },
  316. "_eulerAngles": {
  317. "__type__": "cc.Vec3",
  318. "x": 0,
  319. "y": 0,
  320. "z": 0
  321. },
  322. "_skewX": 0,
  323. "_skewY": 0,
  324. "_is3DNode": false,
  325. "_groupIndex": 0,
  326. "groupIndex": 0,
  327. "_id": "071xVVZQ5DPrTeWtEUx96c"
  328. },
  329. {
  330. "__type__": "cc.Node",
  331. "_name": "background",
  332. "_objFlags": 0,
  333. "_parent": {
  334. "__id__": 5
  335. },
  336. "_children": [],
  337. "_active": true,
  338. "_components": [
  339. {
  340. "__id__": 7
  341. }
  342. ],
  343. "_prefab": null,
  344. "_opacity": 255,
  345. "_color": {
  346. "__type__": "cc.Color",
  347. "r": 255,
  348. "g": 255,
  349. "b": 255,
  350. "a": 255
  351. },
  352. "_contentSize": {
  353. "__type__": "cc.Size",
  354. "width": 750,
  355. "height": 1590
  356. },
  357. "_anchorPoint": {
  358. "__type__": "cc.Vec2",
  359. "x": 0.5,
  360. "y": 0.5
  361. },
  362. "_trs": {
  363. "__type__": "TypedArray",
  364. "ctor": "Float64Array",
  365. "array": [
  366. 0,
  367. 0,
  368. 0,
  369. 0,
  370. 0,
  371. 0,
  372. 1,
  373. 1,
  374. 1,
  375. 1
  376. ]
  377. },
  378. "_eulerAngles": {
  379. "__type__": "cc.Vec3",
  380. "x": 0,
  381. "y": 0,
  382. "z": 0
  383. },
  384. "_skewX": 0,
  385. "_skewY": 0,
  386. "_is3DNode": false,
  387. "_groupIndex": 0,
  388. "groupIndex": 0,
  389. "_id": "8fuV/oZaxFJZb6hglFbUVi"
  390. },
  391. {
  392. "__type__": "cc.Sprite",
  393. "_name": "",
  394. "_objFlags": 0,
  395. "node": {
  396. "__id__": 6
  397. },
  398. "_enabled": true,
  399. "_materials": [
  400. {
  401. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  402. }
  403. ],
  404. "_srcBlendFactor": 770,
  405. "_dstBlendFactor": 771,
  406. "_spriteFrame": {
  407. "__uuid__": "4871f4fb-cb04-4984-a908-b3db7ff63021"
  408. },
  409. "_type": 0,
  410. "_sizeMode": 0,
  411. "_fillType": 0,
  412. "_fillCenter": {
  413. "__type__": "cc.Vec2",
  414. "x": 0,
  415. "y": 0
  416. },
  417. "_fillStart": 0,
  418. "_fillRange": 0,
  419. "_isTrimmedMode": true,
  420. "_atlas": null,
  421. "_id": "2eBX4GsZtK6ZaHXP8jW1mR"
  422. },
  423. {
  424. "__type__": "cc.Widget",
  425. "_name": "",
  426. "_objFlags": 0,
  427. "node": {
  428. "__id__": 5
  429. },
  430. "_enabled": true,
  431. "alignMode": 1,
  432. "_target": {
  433. "__id__": 2
  434. },
  435. "_alignFlags": 18,
  436. "_left": 0,
  437. "_right": 0,
  438. "_top": 0,
  439. "_bottom": 0,
  440. "_verticalCenter": 0,
  441. "_horizontalCenter": 0,
  442. "_isAbsLeft": true,
  443. "_isAbsRight": true,
  444. "_isAbsTop": true,
  445. "_isAbsBottom": true,
  446. "_isAbsHorizontalCenter": true,
  447. "_isAbsVerticalCenter": true,
  448. "_originalWidth": 0,
  449. "_originalHeight": 0,
  450. "_id": "76DqBhqPlM06Iw8/w9EV7i"
  451. },
  452. {
  453. "__type__": "cc.Node",
  454. "_name": "0startPage",
  455. "_objFlags": 0,
  456. "_parent": {
  457. "__id__": 2
  458. },
  459. "_children": [
  460. {
  461. "__id__": 10
  462. },
  463. {
  464. "__id__": 12
  465. },
  466. {
  467. "__id__": 14
  468. },
  469. {
  470. "__id__": 314
  471. },
  472. {
  473. "__id__": 316
  474. },
  475. {
  476. "__id__": 320
  477. },
  478. {
  479. "__id__": 324
  480. },
  481. {
  482. "__id__": 328
  483. },
  484. {
  485. "__id__": 277
  486. },
  487. {
  488. "__id__": 262
  489. },
  490. {
  491. "__id__": 288
  492. }
  493. ],
  494. "_active": true,
  495. "_components": [
  496. {
  497. "__id__": 261
  498. }
  499. ],
  500. "_prefab": null,
  501. "_opacity": 255,
  502. "_color": {
  503. "__type__": "cc.Color",
  504. "r": 255,
  505. "g": 255,
  506. "b": 255,
  507. "a": 255
  508. },
  509. "_contentSize": {
  510. "__type__": "cc.Size",
  511. "width": 0,
  512. "height": 0
  513. },
  514. "_anchorPoint": {
  515. "__type__": "cc.Vec2",
  516. "x": 0.5,
  517. "y": 0.5
  518. },
  519. "_trs": {
  520. "__type__": "TypedArray",
  521. "ctor": "Float64Array",
  522. "array": [
  523. 0,
  524. 0,
  525. 0,
  526. 0,
  527. 0,
  528. 0,
  529. 1,
  530. 1,
  531. 1,
  532. 1
  533. ]
  534. },
  535. "_eulerAngles": {
  536. "__type__": "cc.Vec3",
  537. "x": 0,
  538. "y": 0,
  539. "z": 0
  540. },
  541. "_skewX": 0,
  542. "_skewY": 0,
  543. "_is3DNode": false,
  544. "_groupIndex": 0,
  545. "groupIndex": 0,
  546. "_id": "01gvxb8KxAuq47dA+uzHXH"
  547. },
  548. {
  549. "__type__": "cc.Node",
  550. "_name": "bg",
  551. "_objFlags": 0,
  552. "_parent": {
  553. "__id__": 9
  554. },
  555. "_children": [],
  556. "_active": true,
  557. "_components": [
  558. {
  559. "__id__": 11
  560. }
  561. ],
  562. "_prefab": null,
  563. "_opacity": 0,
  564. "_color": {
  565. "__type__": "cc.Color",
  566. "r": 255,
  567. "g": 255,
  568. "b": 255,
  569. "a": 255
  570. },
  571. "_contentSize": {
  572. "__type__": "cc.Size",
  573. "width": 960,
  574. "height": 1668
  575. },
  576. "_anchorPoint": {
  577. "__type__": "cc.Vec2",
  578. "x": 0.5,
  579. "y": 0.5
  580. },
  581. "_trs": {
  582. "__type__": "TypedArray",
  583. "ctor": "Float64Array",
  584. "array": [
  585. 0,
  586. 0,
  587. 0,
  588. 0,
  589. 0,
  590. 0,
  591. 1,
  592. 1,
  593. 1,
  594. 1
  595. ]
  596. },
  597. "_eulerAngles": {
  598. "__type__": "cc.Vec3",
  599. "x": 0,
  600. "y": 0,
  601. "z": 0
  602. },
  603. "_skewX": 0,
  604. "_skewY": 0,
  605. "_is3DNode": false,
  606. "_groupIndex": 0,
  607. "groupIndex": 0,
  608. "_id": "74H5qFyxxHLKhJJJQRe3KS"
  609. },
  610. {
  611. "__type__": "cc.Sprite",
  612. "_name": "",
  613. "_objFlags": 0,
  614. "node": {
  615. "__id__": 10
  616. },
  617. "_enabled": true,
  618. "_materials": [
  619. {
  620. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  621. }
  622. ],
  623. "_srcBlendFactor": 770,
  624. "_dstBlendFactor": 771,
  625. "_spriteFrame": {
  626. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  627. },
  628. "_type": 0,
  629. "_sizeMode": 0,
  630. "_fillType": 0,
  631. "_fillCenter": {
  632. "__type__": "cc.Vec2",
  633. "x": 0,
  634. "y": 0
  635. },
  636. "_fillStart": 0,
  637. "_fillRange": 0,
  638. "_isTrimmedMode": true,
  639. "_atlas": null,
  640. "_id": "ediBrDVYFHgr7VFV+Pj5FX"
  641. },
  642. {
  643. "__type__": "cc.Node",
  644. "_name": "logo",
  645. "_objFlags": 0,
  646. "_parent": {
  647. "__id__": 9
  648. },
  649. "_children": [],
  650. "_active": false,
  651. "_components": [
  652. {
  653. "__id__": 13
  654. }
  655. ],
  656. "_prefab": null,
  657. "_opacity": 255,
  658. "_color": {
  659. "__type__": "cc.Color",
  660. "r": 255,
  661. "g": 255,
  662. "b": 255,
  663. "a": 255
  664. },
  665. "_contentSize": {
  666. "__type__": "cc.Size",
  667. "width": 477,
  668. "height": 345
  669. },
  670. "_anchorPoint": {
  671. "__type__": "cc.Vec2",
  672. "x": 0.5,
  673. "y": 0.5
  674. },
  675. "_trs": {
  676. "__type__": "TypedArray",
  677. "ctor": "Float64Array",
  678. "array": [
  679. 0,
  680. 427,
  681. 0,
  682. 0,
  683. 0,
  684. 0,
  685. 1,
  686. 1,
  687. 1,
  688. 1
  689. ]
  690. },
  691. "_eulerAngles": {
  692. "__type__": "cc.Vec3",
  693. "x": 0,
  694. "y": 0,
  695. "z": 0
  696. },
  697. "_skewX": 0,
  698. "_skewY": 0,
  699. "_is3DNode": false,
  700. "_groupIndex": 0,
  701. "groupIndex": 0,
  702. "_id": "49PMW6THNNvqT7rlyBwRBb"
  703. },
  704. {
  705. "__type__": "cc.Sprite",
  706. "_name": "",
  707. "_objFlags": 0,
  708. "node": {
  709. "__id__": 12
  710. },
  711. "_enabled": true,
  712. "_materials": [
  713. {
  714. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  715. }
  716. ],
  717. "_srcBlendFactor": 770,
  718. "_dstBlendFactor": 771,
  719. "_spriteFrame": {
  720. "__uuid__": "bd8aa757-893f-45fe-b212-d004c99aad1b"
  721. },
  722. "_type": 0,
  723. "_sizeMode": 1,
  724. "_fillType": 0,
  725. "_fillCenter": {
  726. "__type__": "cc.Vec2",
  727. "x": 0,
  728. "y": 0
  729. },
  730. "_fillStart": 0,
  731. "_fillRange": 0,
  732. "_isTrimmedMode": true,
  733. "_atlas": null,
  734. "_id": "58E+eT3IxM46u6NETAS/Mv"
  735. },
  736. {
  737. "__type__": "cc.Node",
  738. "_name": "New Label",
  739. "_objFlags": 0,
  740. "_parent": {
  741. "__id__": 9
  742. },
  743. "_children": [],
  744. "_active": true,
  745. "_components": [
  746. {
  747. "__id__": 15
  748. },
  749. {
  750. "__id__": 16
  751. }
  752. ],
  753. "_prefab": null,
  754. "_opacity": 255,
  755. "_color": {
  756. "__type__": "cc.Color",
  757. "r": 255,
  758. "g": 255,
  759. "b": 255,
  760. "a": 255
  761. },
  762. "_contentSize": {
  763. "__type__": "cc.Size",
  764. "width": 316,
  765. "height": 105
  766. },
  767. "_anchorPoint": {
  768. "__type__": "cc.Vec2",
  769. "x": 0.5,
  770. "y": 0.5
  771. },
  772. "_trs": {
  773. "__type__": "TypedArray",
  774. "ctor": "Float64Array",
  775. "array": [
  776. 0,
  777. -261,
  778. 0,
  779. 0,
  780. 0,
  781. 0,
  782. 1,
  783. 1,
  784. 1,
  785. 1
  786. ]
  787. },
  788. "_eulerAngles": {
  789. "__type__": "cc.Vec3",
  790. "x": 0,
  791. "y": 0,
  792. "z": 0
  793. },
  794. "_skewX": 0,
  795. "_skewY": 0,
  796. "_is3DNode": false,
  797. "_groupIndex": 0,
  798. "groupIndex": 0,
  799. "_id": "d9LD0rDYpP+qKh1uh7mZW3"
  800. },
  801. {
  802. "__type__": "cc.Sprite",
  803. "_name": "",
  804. "_objFlags": 0,
  805. "node": {
  806. "__id__": 14
  807. },
  808. "_enabled": true,
  809. "_materials": [
  810. {
  811. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  812. }
  813. ],
  814. "_srcBlendFactor": 770,
  815. "_dstBlendFactor": 771,
  816. "_spriteFrame": {
  817. "__uuid__": "f464d4f7-09da-4455-9270-146d9a39359b"
  818. },
  819. "_type": 0,
  820. "_sizeMode": 1,
  821. "_fillType": 0,
  822. "_fillCenter": {
  823. "__type__": "cc.Vec2",
  824. "x": 0,
  825. "y": 0
  826. },
  827. "_fillStart": 0,
  828. "_fillRange": 0,
  829. "_isTrimmedMode": true,
  830. "_atlas": null,
  831. "_id": "c0iJtyEZNI748VueJwpPfj"
  832. },
  833. {
  834. "__type__": "cc.Button",
  835. "_name": "",
  836. "_objFlags": 0,
  837. "node": {
  838. "__id__": 14
  839. },
  840. "_enabled": true,
  841. "_normalMaterial": null,
  842. "_grayMaterial": null,
  843. "duration": 0.1,
  844. "zoomScale": 1.2,
  845. "clickEvents": [
  846. {
  847. "__id__": 17
  848. }
  849. ],
  850. "_N$interactable": true,
  851. "_N$enableAutoGrayEffect": false,
  852. "_N$transition": 0,
  853. "transition": 0,
  854. "_N$normalColor": {
  855. "__type__": "cc.Color",
  856. "r": 214,
  857. "g": 214,
  858. "b": 214,
  859. "a": 255
  860. },
  861. "_N$pressedColor": {
  862. "__type__": "cc.Color",
  863. "r": 211,
  864. "g": 211,
  865. "b": 211,
  866. "a": 255
  867. },
  868. "pressedColor": {
  869. "__type__": "cc.Color",
  870. "r": 211,
  871. "g": 211,
  872. "b": 211,
  873. "a": 255
  874. },
  875. "_N$hoverColor": {
  876. "__type__": "cc.Color",
  877. "r": 255,
  878. "g": 255,
  879. "b": 255,
  880. "a": 255
  881. },
  882. "hoverColor": {
  883. "__type__": "cc.Color",
  884. "r": 255,
  885. "g": 255,
  886. "b": 255,
  887. "a": 255
  888. },
  889. "_N$disabledColor": {
  890. "__type__": "cc.Color",
  891. "r": 124,
  892. "g": 124,
  893. "b": 124,
  894. "a": 255
  895. },
  896. "_N$normalSprite": null,
  897. "_N$pressedSprite": null,
  898. "pressedSprite": null,
  899. "_N$hoverSprite": null,
  900. "hoverSprite": null,
  901. "_N$disabledSprite": null,
  902. "_N$target": null,
  903. "_id": "09nRCaebJH6IrOEYfF/CcC"
  904. },
  905. {
  906. "__type__": "cc.ClickEvent",
  907. "target": {
  908. "__id__": 18
  909. },
  910. "component": "",
  911. "_componentId": "feefcb/VXtFp4L+Zqa6CrBZ",
  912. "handler": "onGameStartButton",
  913. "customEventData": ""
  914. },
  915. {
  916. "__type__": "cc.Node",
  917. "_name": "controller",
  918. "_objFlags": 0,
  919. "_parent": {
  920. "__id__": 1
  921. },
  922. "_children": [],
  923. "_active": true,
  924. "_components": [
  925. {
  926. "__id__": 19
  927. }
  928. ],
  929. "_prefab": null,
  930. "_opacity": 255,
  931. "_color": {
  932. "__type__": "cc.Color",
  933. "r": 255,
  934. "g": 255,
  935. "b": 255,
  936. "a": 255
  937. },
  938. "_contentSize": {
  939. "__type__": "cc.Size",
  940. "width": 0,
  941. "height": 0
  942. },
  943. "_anchorPoint": {
  944. "__type__": "cc.Vec2",
  945. "x": 0.5,
  946. "y": 0.5
  947. },
  948. "_trs": {
  949. "__type__": "TypedArray",
  950. "ctor": "Float64Array",
  951. "array": [
  952. 375,
  953. 667,
  954. 0,
  955. 0,
  956. 0,
  957. 0,
  958. 1,
  959. 1,
  960. 1,
  961. 1
  962. ]
  963. },
  964. "_eulerAngles": {
  965. "__type__": "cc.Vec3",
  966. "x": 0,
  967. "y": 0,
  968. "z": 0
  969. },
  970. "_skewX": 0,
  971. "_skewY": 0,
  972. "_is3DNode": false,
  973. "_groupIndex": 0,
  974. "groupIndex": 0,
  975. "_id": "b9IvuNswhB4oq4bE7H7AhR"
  976. },
  977. {
  978. "__type__": "feefcb/VXtFp4L+Zqa6CrBZ",
  979. "_name": "",
  980. "_objFlags": 0,
  981. "node": {
  982. "__id__": 18
  983. },
  984. "_enabled": true,
  985. "musicManager": {
  986. "__id__": 20
  987. },
  988. "game": {
  989. "__id__": 35
  990. },
  991. "pageManager": {
  992. "__id__": 260
  993. },
  994. "social": {
  995. "__id__": 127
  996. },
  997. "config": {
  998. "__uuid__": "d14522ae-1be0-46da-9d76-00b93a6cd1e4"
  999. },
  1000. "gameData": {
  1001. "__uuid__": "a2471932-06e1-419b-88b7-014c903b15dc"
  1002. },
  1003. "scoreMgr": {
  1004. "__id__": 102
  1005. },
  1006. "totalRank": {
  1007. "__id__": 130
  1008. },
  1009. "groupRank": {
  1010. "__id__": 144
  1011. },
  1012. "startPage": {
  1013. "__id__": 261
  1014. },
  1015. "navNode": {
  1016. "__id__": 180
  1017. },
  1018. "illustrative": {
  1019. "__id__": 262
  1020. },
  1021. "helpPage": {
  1022. "__id__": 288
  1023. },
  1024. "_id": "9dOzfcN0NFO4dsxJcHaaOM"
  1025. },
  1026. {
  1027. "__type__": "0fd3emgDv1Pc6rR7NiVJ4q/",
  1028. "_name": "",
  1029. "_objFlags": 0,
  1030. "node": {
  1031. "__id__": 21
  1032. },
  1033. "_enabled": true,
  1034. "volume": 1,
  1035. "audios": [
  1036. {
  1037. "__id__": 23
  1038. }
  1039. ],
  1040. "audioPrefab": {
  1041. "__uuid__": "78d99cac-140b-4daa-ba40-362ae1e52f07"
  1042. },
  1043. "bgMusic": {
  1044. "__id__": 33
  1045. },
  1046. "winAudio": {
  1047. "__id__": 26
  1048. },
  1049. "doubleAudio": {
  1050. "__id__": 30
  1051. },
  1052. "boomAudio": {
  1053. "__id__": 28
  1054. },
  1055. "magicAudio": {
  1056. "__id__": 32
  1057. },
  1058. "_id": "9a3OmaJQFErJf6BMKepk3I"
  1059. },
  1060. {
  1061. "__type__": "cc.Node",
  1062. "_name": "music",
  1063. "_objFlags": 0,
  1064. "_parent": {
  1065. "__id__": 1
  1066. },
  1067. "_children": [
  1068. {
  1069. "__id__": 22
  1070. },
  1071. {
  1072. "__id__": 25
  1073. },
  1074. {
  1075. "__id__": 27
  1076. },
  1077. {
  1078. "__id__": 29
  1079. },
  1080. {
  1081. "__id__": 31
  1082. }
  1083. ],
  1084. "_active": true,
  1085. "_components": [
  1086. {
  1087. "__id__": 20
  1088. }
  1089. ],
  1090. "_prefab": null,
  1091. "_opacity": 255,
  1092. "_color": {
  1093. "__type__": "cc.Color",
  1094. "r": 255,
  1095. "g": 255,
  1096. "b": 255,
  1097. "a": 255
  1098. },
  1099. "_contentSize": {
  1100. "__type__": "cc.Size",
  1101. "width": 0,
  1102. "height": 0
  1103. },
  1104. "_anchorPoint": {
  1105. "__type__": "cc.Vec2",
  1106. "x": 0.5,
  1107. "y": 0.5
  1108. },
  1109. "_trs": {
  1110. "__type__": "TypedArray",
  1111. "ctor": "Float64Array",
  1112. "array": [
  1113. 375,
  1114. 667,
  1115. 0,
  1116. 0,
  1117. 0,
  1118. 0,
  1119. 1,
  1120. 1,
  1121. 1,
  1122. 1
  1123. ]
  1124. },
  1125. "_eulerAngles": {
  1126. "__type__": "cc.Vec3",
  1127. "x": 0,
  1128. "y": 0,
  1129. "z": 0
  1130. },
  1131. "_skewX": 0,
  1132. "_skewY": 0,
  1133. "_is3DNode": false,
  1134. "_groupIndex": 0,
  1135. "groupIndex": 0,
  1136. "_id": "efgkIGz/5AnpJTMYz+UJAd"
  1137. },
  1138. {
  1139. "__type__": "cc.Node",
  1140. "_name": "pop",
  1141. "_objFlags": 0,
  1142. "_parent": {
  1143. "__id__": 21
  1144. },
  1145. "_children": [],
  1146. "_active": true,
  1147. "_components": [
  1148. {
  1149. "__id__": 23
  1150. }
  1151. ],
  1152. "_prefab": {
  1153. "__id__": 24
  1154. },
  1155. "_opacity": 255,
  1156. "_color": {
  1157. "__type__": "cc.Color",
  1158. "r": 255,
  1159. "g": 255,
  1160. "b": 255,
  1161. "a": 255
  1162. },
  1163. "_contentSize": {
  1164. "__type__": "cc.Size",
  1165. "width": 0,
  1166. "height": 0
  1167. },
  1168. "_anchorPoint": {
  1169. "__type__": "cc.Vec2",
  1170. "x": 0.5,
  1171. "y": 0.5
  1172. },
  1173. "_trs": {
  1174. "__type__": "TypedArray",
  1175. "ctor": "Float64Array",
  1176. "array": [
  1177. 0,
  1178. 0,
  1179. 0,
  1180. 0,
  1181. 0,
  1182. 0,
  1183. 1,
  1184. 1,
  1185. 1,
  1186. 1
  1187. ]
  1188. },
  1189. "_eulerAngles": {
  1190. "__type__": "cc.Vec3",
  1191. "x": 0,
  1192. "y": 0,
  1193. "z": 0
  1194. },
  1195. "_skewX": 0,
  1196. "_skewY": 0,
  1197. "_is3DNode": false,
  1198. "_groupIndex": 0,
  1199. "groupIndex": 0,
  1200. "_id": "fbICKcUUBJxb20J3NrClkN"
  1201. },
  1202. {
  1203. "__type__": "cc.AudioSource",
  1204. "_name": "",
  1205. "_objFlags": 0,
  1206. "node": {
  1207. "__id__": 22
  1208. },
  1209. "_enabled": true,
  1210. "_clip": {
  1211. "__uuid__": "3831b350-17bb-44fc-bf79-e903334afa8c"
  1212. },
  1213. "_volume": 0.8,
  1214. "_mute": false,
  1215. "_loop": false,
  1216. "_firstlyEnabled": true,
  1217. "playOnLoad": false,
  1218. "preload": true,
  1219. "_id": "47pG0bCd5Oea9k6LvoZ66W"
  1220. },
  1221. {
  1222. "__type__": "cc.PrefabInfo",
  1223. "root": {
  1224. "__id__": 22
  1225. },
  1226. "asset": {
  1227. "__uuid__": "78d99cac-140b-4daa-ba40-362ae1e52f07"
  1228. },
  1229. "fileId": "fbICKcUUBJxb20J3NrClkN",
  1230. "sync": false
  1231. },
  1232. {
  1233. "__type__": "cc.Node",
  1234. "_name": "win",
  1235. "_objFlags": 0,
  1236. "_parent": {
  1237. "__id__": 21
  1238. },
  1239. "_children": [],
  1240. "_active": true,
  1241. "_components": [
  1242. {
  1243. "__id__": 26
  1244. }
  1245. ],
  1246. "_prefab": null,
  1247. "_opacity": 255,
  1248. "_color": {
  1249. "__type__": "cc.Color",
  1250. "r": 255,
  1251. "g": 255,
  1252. "b": 255,
  1253. "a": 255
  1254. },
  1255. "_contentSize": {
  1256. "__type__": "cc.Size",
  1257. "width": 0,
  1258. "height": 0
  1259. },
  1260. "_anchorPoint": {
  1261. "__type__": "cc.Vec2",
  1262. "x": 0.5,
  1263. "y": 0.5
  1264. },
  1265. "_trs": {
  1266. "__type__": "TypedArray",
  1267. "ctor": "Float64Array",
  1268. "array": [
  1269. 0,
  1270. 0,
  1271. 0,
  1272. 0,
  1273. 0,
  1274. 0,
  1275. 1,
  1276. 1,
  1277. 1,
  1278. 1
  1279. ]
  1280. },
  1281. "_eulerAngles": {
  1282. "__type__": "cc.Vec3",
  1283. "x": 0,
  1284. "y": 0,
  1285. "z": 0
  1286. },
  1287. "_skewX": 0,
  1288. "_skewY": 0,
  1289. "_is3DNode": false,
  1290. "_groupIndex": 0,
  1291. "groupIndex": 0,
  1292. "_id": "48yDWAJ6pMVLOyq9UnCnpj"
  1293. },
  1294. {
  1295. "__type__": "cc.AudioSource",
  1296. "_name": "",
  1297. "_objFlags": 0,
  1298. "node": {
  1299. "__id__": 25
  1300. },
  1301. "_enabled": true,
  1302. "_clip": {
  1303. "__uuid__": "88ec0387-0b76-408b-9965-34232e6e203b"
  1304. },
  1305. "_volume": 1,
  1306. "_mute": false,
  1307. "_loop": false,
  1308. "_firstlyEnabled": true,
  1309. "playOnLoad": false,
  1310. "preload": false,
  1311. "_id": "b6lRkkckxKep0jOaBgt6P8"
  1312. },
  1313. {
  1314. "__type__": "cc.Node",
  1315. "_name": "boom",
  1316. "_objFlags": 0,
  1317. "_parent": {
  1318. "__id__": 21
  1319. },
  1320. "_children": [],
  1321. "_active": true,
  1322. "_components": [
  1323. {
  1324. "__id__": 28
  1325. }
  1326. ],
  1327. "_prefab": null,
  1328. "_opacity": 255,
  1329. "_color": {
  1330. "__type__": "cc.Color",
  1331. "r": 255,
  1332. "g": 255,
  1333. "b": 255,
  1334. "a": 255
  1335. },
  1336. "_contentSize": {
  1337. "__type__": "cc.Size",
  1338. "width": 0,
  1339. "height": 0
  1340. },
  1341. "_anchorPoint": {
  1342. "__type__": "cc.Vec2",
  1343. "x": 0.5,
  1344. "y": 0.5
  1345. },
  1346. "_trs": {
  1347. "__type__": "TypedArray",
  1348. "ctor": "Float64Array",
  1349. "array": [
  1350. 0,
  1351. 0,
  1352. 0,
  1353. 0,
  1354. 0,
  1355. 0,
  1356. 1,
  1357. 1,
  1358. 1,
  1359. 1
  1360. ]
  1361. },
  1362. "_eulerAngles": {
  1363. "__type__": "cc.Vec3",
  1364. "x": 0,
  1365. "y": 0,
  1366. "z": 0
  1367. },
  1368. "_skewX": 0,
  1369. "_skewY": 0,
  1370. "_is3DNode": false,
  1371. "_groupIndex": 0,
  1372. "groupIndex": 0,
  1373. "_id": "b9ukIjrY1Mvp6NWYWdk75G"
  1374. },
  1375. {
  1376. "__type__": "cc.AudioSource",
  1377. "_name": "",
  1378. "_objFlags": 0,
  1379. "node": {
  1380. "__id__": 27
  1381. },
  1382. "_enabled": true,
  1383. "_clip": {
  1384. "__uuid__": "2a001d46-5521-4e16-9723-68382834620f"
  1385. },
  1386. "_volume": 0.7,
  1387. "_mute": false,
  1388. "_loop": false,
  1389. "_firstlyEnabled": true,
  1390. "playOnLoad": false,
  1391. "preload": false,
  1392. "_id": "d5AfEe6yRMAIMHUgOX3fUX"
  1393. },
  1394. {
  1395. "__type__": "cc.Node",
  1396. "_name": "double",
  1397. "_objFlags": 0,
  1398. "_parent": {
  1399. "__id__": 21
  1400. },
  1401. "_children": [],
  1402. "_active": true,
  1403. "_components": [
  1404. {
  1405. "__id__": 30
  1406. }
  1407. ],
  1408. "_prefab": null,
  1409. "_opacity": 255,
  1410. "_color": {
  1411. "__type__": "cc.Color",
  1412. "r": 255,
  1413. "g": 255,
  1414. "b": 255,
  1415. "a": 255
  1416. },
  1417. "_contentSize": {
  1418. "__type__": "cc.Size",
  1419. "width": 0,
  1420. "height": 0
  1421. },
  1422. "_anchorPoint": {
  1423. "__type__": "cc.Vec2",
  1424. "x": 0.5,
  1425. "y": 0.5
  1426. },
  1427. "_trs": {
  1428. "__type__": "TypedArray",
  1429. "ctor": "Float64Array",
  1430. "array": [
  1431. 0,
  1432. 0,
  1433. 0,
  1434. 0,
  1435. 0,
  1436. 0,
  1437. 1,
  1438. 1,
  1439. 1,
  1440. 1
  1441. ]
  1442. },
  1443. "_eulerAngles": {
  1444. "__type__": "cc.Vec3",
  1445. "x": 0,
  1446. "y": 0,
  1447. "z": 0
  1448. },
  1449. "_skewX": 0,
  1450. "_skewY": 0,
  1451. "_is3DNode": false,
  1452. "_groupIndex": 0,
  1453. "groupIndex": 0,
  1454. "_id": "d920WCXvZMno4GHfhIvERl"
  1455. },
  1456. {
  1457. "__type__": "cc.AudioSource",
  1458. "_name": "",
  1459. "_objFlags": 0,
  1460. "node": {
  1461. "__id__": 29
  1462. },
  1463. "_enabled": true,
  1464. "_clip": {
  1465. "__uuid__": "dc1994f2-d91f-4953-ae10-474e57e78ee6"
  1466. },
  1467. "_volume": 1,
  1468. "_mute": false,
  1469. "_loop": false,
  1470. "_firstlyEnabled": true,
  1471. "playOnLoad": false,
  1472. "preload": false,
  1473. "_id": "77RZCJ1JhLr6OOr4uVKiYl"
  1474. },
  1475. {
  1476. "__type__": "cc.Node",
  1477. "_name": "magic",
  1478. "_objFlags": 0,
  1479. "_parent": {
  1480. "__id__": 21
  1481. },
  1482. "_children": [],
  1483. "_active": true,
  1484. "_components": [
  1485. {
  1486. "__id__": 32
  1487. }
  1488. ],
  1489. "_prefab": null,
  1490. "_opacity": 255,
  1491. "_color": {
  1492. "__type__": "cc.Color",
  1493. "r": 255,
  1494. "g": 255,
  1495. "b": 255,
  1496. "a": 255
  1497. },
  1498. "_contentSize": {
  1499. "__type__": "cc.Size",
  1500. "width": 0,
  1501. "height": 0
  1502. },
  1503. "_anchorPoint": {
  1504. "__type__": "cc.Vec2",
  1505. "x": 0.5,
  1506. "y": 0.5
  1507. },
  1508. "_trs": {
  1509. "__type__": "TypedArray",
  1510. "ctor": "Float64Array",
  1511. "array": [
  1512. 0,
  1513. 0,
  1514. 0,
  1515. 0,
  1516. 0,
  1517. 0,
  1518. 1,
  1519. 1,
  1520. 1,
  1521. 1
  1522. ]
  1523. },
  1524. "_eulerAngles": {
  1525. "__type__": "cc.Vec3",
  1526. "x": 0,
  1527. "y": 0,
  1528. "z": 0
  1529. },
  1530. "_skewX": 0,
  1531. "_skewY": 0,
  1532. "_is3DNode": false,
  1533. "_groupIndex": 0,
  1534. "groupIndex": 0,
  1535. "_id": "194dpoCg9KGJ1dMt5Ez7wK"
  1536. },
  1537. {
  1538. "__type__": "cc.AudioSource",
  1539. "_name": "",
  1540. "_objFlags": 0,
  1541. "node": {
  1542. "__id__": 31
  1543. },
  1544. "_enabled": true,
  1545. "_clip": {
  1546. "__uuid__": "f241176d-10d7-4e9e-95c7-e8b8ce5a39ab"
  1547. },
  1548. "_volume": 1,
  1549. "_mute": false,
  1550. "_loop": false,
  1551. "_firstlyEnabled": true,
  1552. "playOnLoad": false,
  1553. "preload": false,
  1554. "_id": "924K5z+sxJzYkCUwEoLhEw"
  1555. },
  1556. {
  1557. "__type__": "cc.AudioSource",
  1558. "_name": "",
  1559. "_objFlags": 0,
  1560. "node": {
  1561. "__id__": 34
  1562. },
  1563. "_enabled": true,
  1564. "_clip": {
  1565. "__uuid__": "8e845931-9319-48d8-a30a-df24ba23474c"
  1566. },
  1567. "_volume": 1,
  1568. "_mute": false,
  1569. "_loop": true,
  1570. "_firstlyEnabled": true,
  1571. "playOnLoad": true,
  1572. "preload": true,
  1573. "_id": "95rL+CFqpHiqhkUmKeXdOB"
  1574. },
  1575. {
  1576. "__type__": "cc.Node",
  1577. "_name": "bg",
  1578. "_objFlags": 0,
  1579. "_parent": {
  1580. "__id__": 1
  1581. },
  1582. "_children": [],
  1583. "_active": true,
  1584. "_components": [
  1585. {
  1586. "__id__": 33
  1587. }
  1588. ],
  1589. "_prefab": null,
  1590. "_opacity": 255,
  1591. "_color": {
  1592. "__type__": "cc.Color",
  1593. "r": 255,
  1594. "g": 255,
  1595. "b": 255,
  1596. "a": 255
  1597. },
  1598. "_contentSize": {
  1599. "__type__": "cc.Size",
  1600. "width": 0,
  1601. "height": 0
  1602. },
  1603. "_anchorPoint": {
  1604. "__type__": "cc.Vec2",
  1605. "x": 0.5,
  1606. "y": 0.5
  1607. },
  1608. "_trs": {
  1609. "__type__": "TypedArray",
  1610. "ctor": "Float64Array",
  1611. "array": [
  1612. 0,
  1613. 0,
  1614. 0,
  1615. 0,
  1616. 0,
  1617. 0,
  1618. 1,
  1619. 1,
  1620. 1,
  1621. 1
  1622. ]
  1623. },
  1624. "_eulerAngles": {
  1625. "__type__": "cc.Vec3",
  1626. "x": 0,
  1627. "y": 0,
  1628. "z": 0
  1629. },
  1630. "_skewX": 0,
  1631. "_skewY": 0,
  1632. "_is3DNode": false,
  1633. "_groupIndex": 0,
  1634. "groupIndex": 0,
  1635. "_id": "1fcVI/folI2qbKtD7twvTd"
  1636. },
  1637. {
  1638. "__type__": "47c77yOeKpPiJVINXipHohs",
  1639. "_name": "",
  1640. "_objFlags": 0,
  1641. "node": {
  1642. "__id__": 36
  1643. },
  1644. "_enabled": true,
  1645. "_status": 0,
  1646. "blockPrefab": {
  1647. "__uuid__": "12a76c3c-5601-4d9a-bf5b-a5e0fe44875b"
  1648. },
  1649. "blockSprite": [
  1650. {
  1651. "__uuid__": "33d0cfcf-c5a8-430f-8116-858c725da12c"
  1652. },
  1653. {
  1654. "__uuid__": "393ac1a8-7fc3-4127-b4fd-d138ec7d984b"
  1655. },
  1656. {
  1657. "__uuid__": "9f87bfd7-dff9-46d8-9bcb-2fd4dc2b10f5"
  1658. },
  1659. {
  1660. "__uuid__": "45f214e9-3fa0-470e-9521-a13edfd2b7c0"
  1661. }
  1662. ],
  1663. "warningSpriteFrame": [
  1664. {
  1665. "__uuid__": "888fe7aa-212c-4a2b-8a5c-37db222f222e"
  1666. },
  1667. {
  1668. "__uuid__": "09f1f917-2fee-47e9-bdf6-069dc771ec10"
  1669. },
  1670. {
  1671. "__uuid__": "d4c7cd86-9449-4550-b7a1-1acc3bb03188"
  1672. },
  1673. {
  1674. "__uuid__": "52fd3def-a5ed-4c2c-8027-8e70acfb3140"
  1675. }
  1676. ],
  1677. "propSpriteFrame": [
  1678. {
  1679. "__uuid__": "f42026ae-4016-42e1-a9bc-d8b9f705edb1"
  1680. },
  1681. {
  1682. "__uuid__": "6ff4a620-f727-4a6c-84a2-dfe7b324bdf6"
  1683. },
  1684. {
  1685. "__uuid__": "b221d77f-7545-47fe-bad0-1e540b5f82b6"
  1686. },
  1687. {
  1688. "__uuid__": "c76df38f-ac58-4abf-9c01-413b42e7751a"
  1689. },
  1690. {
  1691. "__uuid__": "3e5b7d3e-9995-4088-9237-73ea3e0cb941"
  1692. },
  1693. {
  1694. "__uuid__": "72fd7f95-62f3-4fff-9bfb-df344003d059"
  1695. },
  1696. {
  1697. "__uuid__": "79f59b38-59da-450b-9bfd-2cfae65f529c"
  1698. },
  1699. {
  1700. "__uuid__": "f751ff59-8e3c-404f-acb8-510e0b415b76"
  1701. },
  1702. {
  1703. "__uuid__": "56333ac3-59d7-4a9b-8ccb-d56d9d4fda7e"
  1704. },
  1705. {
  1706. "__uuid__": "92fdef0c-e573-4d6e-a41a-c473b43c510f"
  1707. },
  1708. {
  1709. "__uuid__": "ec80c9fa-e346-4ba0-a300-95abe71c0528"
  1710. },
  1711. {
  1712. "__uuid__": "ee5bf543-5b21-4e5c-bc8b-58f448cce4d1"
  1713. },
  1714. {
  1715. "__uuid__": "03454f35-c355-4a8b-9161-014495b5597b"
  1716. },
  1717. {
  1718. "__uuid__": "12fd0ab8-33f6-44e3-9337-c035b9aa7525"
  1719. },
  1720. {
  1721. "__uuid__": "a5491008-d2e1-4632-ab3a-66a3a4572d2c"
  1722. },
  1723. {
  1724. "__uuid__": "0cb17bd3-4ddf-4731-bda8-c2feb3e4ac4d"
  1725. }
  1726. ],
  1727. "checkMgr": {
  1728. "__id__": 259
  1729. },
  1730. "revivePage": {
  1731. "__id__": 189
  1732. },
  1733. "_id": "bcNnAJlZRNsLcjoIMb8I1T"
  1734. },
  1735. {
  1736. "__type__": "cc.Node",
  1737. "_name": "1gamePage",
  1738. "_objFlags": 0,
  1739. "_parent": {
  1740. "__id__": 2
  1741. },
  1742. "_children": [
  1743. {
  1744. "__id__": 37
  1745. },
  1746. {
  1747. "__id__": 39
  1748. },
  1749. {
  1750. "__id__": 41
  1751. },
  1752. {
  1753. "__id__": 98
  1754. }
  1755. ],
  1756. "_active": true,
  1757. "_components": [
  1758. {
  1759. "__id__": 35
  1760. },
  1761. {
  1762. "__id__": 102
  1763. },
  1764. {
  1765. "__id__": 259
  1766. },
  1767. {
  1768. "__id__": 258
  1769. }
  1770. ],
  1771. "_prefab": null,
  1772. "_opacity": 255,
  1773. "_color": {
  1774. "__type__": "cc.Color",
  1775. "r": 255,
  1776. "g": 255,
  1777. "b": 255,
  1778. "a": 255
  1779. },
  1780. "_contentSize": {
  1781. "__type__": "cc.Size",
  1782. "width": 0,
  1783. "height": 0
  1784. },
  1785. "_anchorPoint": {
  1786. "__type__": "cc.Vec2",
  1787. "x": 0.5,
  1788. "y": 0.5
  1789. },
  1790. "_trs": {
  1791. "__type__": "TypedArray",
  1792. "ctor": "Float64Array",
  1793. "array": [
  1794. 0,
  1795. 0,
  1796. 0,
  1797. 0,
  1798. 0,
  1799. 0,
  1800. 1,
  1801. 1,
  1802. 1,
  1803. 1
  1804. ]
  1805. },
  1806. "_eulerAngles": {
  1807. "__type__": "cc.Vec3",
  1808. "x": 0,
  1809. "y": 0,
  1810. "z": 0
  1811. },
  1812. "_skewX": 0,
  1813. "_skewY": 0,
  1814. "_is3DNode": false,
  1815. "_groupIndex": 0,
  1816. "groupIndex": 0,
  1817. "_id": "75bf2YOnFH/5XcTZmC8dmP"
  1818. },
  1819. {
  1820. "__type__": "cc.Node",
  1821. "_name": "bg",
  1822. "_objFlags": 0,
  1823. "_parent": {
  1824. "__id__": 36
  1825. },
  1826. "_children": [],
  1827. "_active": true,
  1828. "_components": [
  1829. {
  1830. "__id__": 38
  1831. }
  1832. ],
  1833. "_prefab": null,
  1834. "_opacity": 150,
  1835. "_color": {
  1836. "__type__": "cc.Color",
  1837. "r": 5,
  1838. "g": 5,
  1839. "b": 5,
  1840. "a": 255
  1841. },
  1842. "_contentSize": {
  1843. "__type__": "cc.Size",
  1844. "width": 730,
  1845. "height": 730
  1846. },
  1847. "_anchorPoint": {
  1848. "__type__": "cc.Vec2",
  1849. "x": 0.5,
  1850. "y": 0.5
  1851. },
  1852. "_trs": {
  1853. "__type__": "TypedArray",
  1854. "ctor": "Float64Array",
  1855. "array": [
  1856. 0,
  1857. -70,
  1858. 0,
  1859. 0,
  1860. 0,
  1861. 0,
  1862. 1,
  1863. 1,
  1864. 1,
  1865. 1
  1866. ]
  1867. },
  1868. "_eulerAngles": {
  1869. "__type__": "cc.Vec3",
  1870. "x": 0,
  1871. "y": 0,
  1872. "z": 0
  1873. },
  1874. "_skewX": 0,
  1875. "_skewY": 0,
  1876. "_is3DNode": false,
  1877. "_groupIndex": 0,
  1878. "groupIndex": 0,
  1879. "_id": "5eICXup5VPkJidDpKVcr2B"
  1880. },
  1881. {
  1882. "__type__": "cc.Sprite",
  1883. "_name": "",
  1884. "_objFlags": 0,
  1885. "node": {
  1886. "__id__": 37
  1887. },
  1888. "_enabled": true,
  1889. "_materials": [
  1890. {
  1891. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1892. }
  1893. ],
  1894. "_srcBlendFactor": 770,
  1895. "_dstBlendFactor": 771,
  1896. "_spriteFrame": {
  1897. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  1898. },
  1899. "_type": 0,
  1900. "_sizeMode": 0,
  1901. "_fillType": 0,
  1902. "_fillCenter": {
  1903. "__type__": "cc.Vec2",
  1904. "x": 0,
  1905. "y": 0
  1906. },
  1907. "_fillStart": 0,
  1908. "_fillRange": 0,
  1909. "_isTrimmedMode": true,
  1910. "_atlas": null,
  1911. "_id": "81nwV4xDhDwb7E2mYI3UgQ"
  1912. },
  1913. {
  1914. "__type__": "cc.Node",
  1915. "_name": "map",
  1916. "_objFlags": 0,
  1917. "_parent": {
  1918. "__id__": 36
  1919. },
  1920. "_children": [],
  1921. "_active": true,
  1922. "_components": [
  1923. {
  1924. "__id__": 40
  1925. }
  1926. ],
  1927. "_prefab": null,
  1928. "_opacity": 255,
  1929. "_color": {
  1930. "__type__": "cc.Color",
  1931. "r": 255,
  1932. "g": 255,
  1933. "b": 255,
  1934. "a": 255
  1935. },
  1936. "_contentSize": {
  1937. "__type__": "cc.Size",
  1938. "width": 730,
  1939. "height": 730
  1940. },
  1941. "_anchorPoint": {
  1942. "__type__": "cc.Vec2",
  1943. "x": 0.5,
  1944. "y": 0.5
  1945. },
  1946. "_trs": {
  1947. "__type__": "TypedArray",
  1948. "ctor": "Float64Array",
  1949. "array": [
  1950. 0,
  1951. -70,
  1952. 0,
  1953. 0,
  1954. 0,
  1955. 0,
  1956. 1,
  1957. 1,
  1958. 1,
  1959. 1
  1960. ]
  1961. },
  1962. "_eulerAngles": {
  1963. "__type__": "cc.Vec3",
  1964. "x": 0,
  1965. "y": 0,
  1966. "z": 0
  1967. },
  1968. "_skewX": 0,
  1969. "_skewY": 0,
  1970. "_is3DNode": false,
  1971. "_groupIndex": 0,
  1972. "groupIndex": 0,
  1973. "_id": "7f93+zumJFJZD/B1CnX5To"
  1974. },
  1975. {
  1976. "__type__": "cc.Layout",
  1977. "_name": "",
  1978. "_objFlags": 0,
  1979. "node": {
  1980. "__id__": 39
  1981. },
  1982. "_enabled": true,
  1983. "_layoutSize": {
  1984. "__type__": "cc.Size",
  1985. "width": 730,
  1986. "height": 730
  1987. },
  1988. "_resize": 0,
  1989. "_N$layoutType": 0,
  1990. "_N$cellSize": {
  1991. "__type__": "cc.Size",
  1992. "width": 40,
  1993. "height": 40
  1994. },
  1995. "_N$startAxis": 0,
  1996. "_N$paddingLeft": 0,
  1997. "_N$paddingRight": 0,
  1998. "_N$paddingTop": 0,
  1999. "_N$paddingBottom": 0,
  2000. "_N$spacingX": 0,
  2001. "_N$spacingY": 0,
  2002. "_N$verticalDirection": 1,
  2003. "_N$horizontalDirection": 0,
  2004. "_N$affectedByScale": false,
  2005. "_id": "adJyxksFxOXoVZWUhMzFzD"
  2006. },
  2007. {
  2008. "__type__": "cc.Node",
  2009. "_name": "UI",
  2010. "_objFlags": 0,
  2011. "_parent": {
  2012. "__id__": 36
  2013. },
  2014. "_children": [
  2015. {
  2016. "__id__": 42
  2017. },
  2018. {
  2019. "__id__": 50
  2020. },
  2021. {
  2022. "__id__": 78
  2023. },
  2024. {
  2025. "__id__": 82
  2026. },
  2027. {
  2028. "__id__": 83
  2029. },
  2030. {
  2031. "__id__": 89
  2032. },
  2033. {
  2034. "__id__": 91
  2035. },
  2036. {
  2037. "__id__": 93
  2038. }
  2039. ],
  2040. "_active": true,
  2041. "_components": [],
  2042. "_prefab": null,
  2043. "_opacity": 255,
  2044. "_color": {
  2045. "__type__": "cc.Color",
  2046. "r": 255,
  2047. "g": 255,
  2048. "b": 255,
  2049. "a": 255
  2050. },
  2051. "_contentSize": {
  2052. "__type__": "cc.Size",
  2053. "width": 0,
  2054. "height": 0
  2055. },
  2056. "_anchorPoint": {
  2057. "__type__": "cc.Vec2",
  2058. "x": 0.5,
  2059. "y": 0.5
  2060. },
  2061. "_trs": {
  2062. "__type__": "TypedArray",
  2063. "ctor": "Float64Array",
  2064. "array": [
  2065. 0,
  2066. 0,
  2067. 0,
  2068. 0,
  2069. 0,
  2070. 0,
  2071. 1,
  2072. 1,
  2073. 1,
  2074. 1
  2075. ]
  2076. },
  2077. "_eulerAngles": {
  2078. "__type__": "cc.Vec3",
  2079. "x": 0,
  2080. "y": 0,
  2081. "z": 0
  2082. },
  2083. "_skewX": 0,
  2084. "_skewY": 0,
  2085. "_is3DNode": false,
  2086. "_groupIndex": 0,
  2087. "groupIndex": 0,
  2088. "_id": "bcyEw+67FJ+ZfAGOynfP3k"
  2089. },
  2090. {
  2091. "__type__": "cc.Node",
  2092. "_name": "leftStepNode",
  2093. "_objFlags": 0,
  2094. "_parent": {
  2095. "__id__": 41
  2096. },
  2097. "_children": [
  2098. {
  2099. "__id__": 43
  2100. },
  2101. {
  2102. "__id__": 45
  2103. },
  2104. {
  2105. "__id__": 47
  2106. }
  2107. ],
  2108. "_active": true,
  2109. "_components": [
  2110. {
  2111. "__id__": 49
  2112. }
  2113. ],
  2114. "_prefab": null,
  2115. "_opacity": 255,
  2116. "_color": {
  2117. "__type__": "cc.Color",
  2118. "r": 255,
  2119. "g": 255,
  2120. "b": 255,
  2121. "a": 255
  2122. },
  2123. "_contentSize": {
  2124. "__type__": "cc.Size",
  2125. "width": 0,
  2126. "height": 0
  2127. },
  2128. "_anchorPoint": {
  2129. "__type__": "cc.Vec2",
  2130. "x": 0.5,
  2131. "y": 0.5
  2132. },
  2133. "_trs": {
  2134. "__type__": "TypedArray",
  2135. "ctor": "Float64Array",
  2136. "array": [
  2137. -248,
  2138. 404,
  2139. 0,
  2140. 0,
  2141. 0,
  2142. 0,
  2143. 1,
  2144. 1,
  2145. 1,
  2146. 1
  2147. ]
  2148. },
  2149. "_eulerAngles": {
  2150. "__type__": "cc.Vec3",
  2151. "x": 0,
  2152. "y": 0,
  2153. "z": 0
  2154. },
  2155. "_skewX": 0,
  2156. "_skewY": 0,
  2157. "_is3DNode": false,
  2158. "_groupIndex": 0,
  2159. "groupIndex": 0,
  2160. "_id": "cbJH8mDThK0Z5v6XUUbSj3"
  2161. },
  2162. {
  2163. "__type__": "cc.Node",
  2164. "_name": "stepleft",
  2165. "_objFlags": 0,
  2166. "_parent": {
  2167. "__id__": 42
  2168. },
  2169. "_children": [],
  2170. "_active": true,
  2171. "_components": [
  2172. {
  2173. "__id__": 44
  2174. }
  2175. ],
  2176. "_prefab": null,
  2177. "_opacity": 255,
  2178. "_color": {
  2179. "__type__": "cc.Color",
  2180. "r": 255,
  2181. "g": 255,
  2182. "b": 255,
  2183. "a": 255
  2184. },
  2185. "_contentSize": {
  2186. "__type__": "cc.Size",
  2187. "width": 196.6,
  2188. "height": 79
  2189. },
  2190. "_anchorPoint": {
  2191. "__type__": "cc.Vec2",
  2192. "x": 0.5,
  2193. "y": 0.5
  2194. },
  2195. "_trs": {
  2196. "__type__": "TypedArray",
  2197. "ctor": "Float64Array",
  2198. "array": [
  2199. -71.9,
  2200. -55,
  2201. 0,
  2202. 0,
  2203. 0,
  2204. 0,
  2205. 1,
  2206. 1,
  2207. 1,
  2208. 1
  2209. ]
  2210. },
  2211. "_eulerAngles": {
  2212. "__type__": "cc.Vec3",
  2213. "x": 0,
  2214. "y": 0,
  2215. "z": 0
  2216. },
  2217. "_skewX": 0,
  2218. "_skewY": 0,
  2219. "_is3DNode": false,
  2220. "_groupIndex": 0,
  2221. "groupIndex": 0,
  2222. "_id": "45qNHeZ4NDy6MusItigQsR"
  2223. },
  2224. {
  2225. "__type__": "cc.Sprite",
  2226. "_name": "",
  2227. "_objFlags": 0,
  2228. "node": {
  2229. "__id__": 43
  2230. },
  2231. "_enabled": true,
  2232. "_materials": [
  2233. {
  2234. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2235. }
  2236. ],
  2237. "_srcBlendFactor": 770,
  2238. "_dstBlendFactor": 771,
  2239. "_spriteFrame": {
  2240. "__uuid__": "a7a08b18-ddbe-440f-862c-70626961c6c7"
  2241. },
  2242. "_type": 1,
  2243. "_sizeMode": 0,
  2244. "_fillType": 0,
  2245. "_fillCenter": {
  2246. "__type__": "cc.Vec2",
  2247. "x": 0,
  2248. "y": 0
  2249. },
  2250. "_fillStart": 0,
  2251. "_fillRange": 0,
  2252. "_isTrimmedMode": true,
  2253. "_atlas": null,
  2254. "_id": "5438755NtKmLvwVI8iBduN"
  2255. },
  2256. {
  2257. "__type__": "cc.Node",
  2258. "_name": "Label",
  2259. "_objFlags": 0,
  2260. "_parent": {
  2261. "__id__": 42
  2262. },
  2263. "_children": [],
  2264. "_active": true,
  2265. "_components": [
  2266. {
  2267. "__id__": 46
  2268. }
  2269. ],
  2270. "_prefab": null,
  2271. "_opacity": 255,
  2272. "_color": {
  2273. "__type__": "cc.Color",
  2274. "r": 253,
  2275. "g": 255,
  2276. "b": 89,
  2277. "a": 255
  2278. },
  2279. "_contentSize": {
  2280. "__type__": "cc.Size",
  2281. "width": 60,
  2282. "height": 40
  2283. },
  2284. "_anchorPoint": {
  2285. "__type__": "cc.Vec2",
  2286. "x": 0,
  2287. "y": 0.5
  2288. },
  2289. "_trs": {
  2290. "__type__": "TypedArray",
  2291. "ctor": "Float64Array",
  2292. "array": [
  2293. -38.1,
  2294. -55.8,
  2295. 0,
  2296. 0,
  2297. 0,
  2298. 0,
  2299. 1,
  2300. 1,
  2301. 1,
  2302. 1
  2303. ]
  2304. },
  2305. "_eulerAngles": {
  2306. "__type__": "cc.Vec3",
  2307. "x": 0,
  2308. "y": 0,
  2309. "z": 0
  2310. },
  2311. "_skewX": 0,
  2312. "_skewY": 0,
  2313. "_is3DNode": false,
  2314. "_groupIndex": 0,
  2315. "groupIndex": 0,
  2316. "_id": "89yUqne7hPzJr8pi10sLgE"
  2317. },
  2318. {
  2319. "__type__": "cc.Label",
  2320. "_name": "",
  2321. "_objFlags": 0,
  2322. "node": {
  2323. "__id__": 45
  2324. },
  2325. "_enabled": true,
  2326. "_materials": [
  2327. {
  2328. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2329. }
  2330. ],
  2331. "_srcBlendFactor": 770,
  2332. "_dstBlendFactor": 771,
  2333. "_string": "20",
  2334. "_N$string": "20",
  2335. "_fontSize": 35,
  2336. "_lineHeight": 40,
  2337. "_enableWrapText": true,
  2338. "_N$file": null,
  2339. "_isSystemFontUsed": true,
  2340. "_spacingX": 0,
  2341. "_batchAsBitmap": false,
  2342. "_styleFlags": 0,
  2343. "_underlineHeight": 0,
  2344. "_N$horizontalAlign": 1,
  2345. "_N$verticalAlign": 1,
  2346. "_N$fontFamily": "Arial",
  2347. "_N$overflow": 2,
  2348. "_N$cacheMode": 0,
  2349. "_id": "f86mzgw2NIYbC++yQyzr1C"
  2350. },
  2351. {
  2352. "__type__": "cc.Node",
  2353. "_name": "New Label",
  2354. "_objFlags": 0,
  2355. "_parent": {
  2356. "__id__": 42
  2357. },
  2358. "_children": [],
  2359. "_active": true,
  2360. "_components": [
  2361. {
  2362. "__id__": 48
  2363. }
  2364. ],
  2365. "_prefab": null,
  2366. "_opacity": 255,
  2367. "_color": {
  2368. "__type__": "cc.Color",
  2369. "r": 255,
  2370. "g": 255,
  2371. "b": 255,
  2372. "a": 255
  2373. },
  2374. "_contentSize": {
  2375. "__type__": "cc.Size",
  2376. "width": 79.72,
  2377. "height": 50.4
  2378. },
  2379. "_anchorPoint": {
  2380. "__type__": "cc.Vec2",
  2381. "x": 0.5,
  2382. "y": 0.5
  2383. },
  2384. "_trs": {
  2385. "__type__": "TypedArray",
  2386. "ctor": "Float64Array",
  2387. "array": [
  2388. -73.1,
  2389. -54,
  2390. 0,
  2391. 0,
  2392. 0,
  2393. 0,
  2394. 1,
  2395. 1,
  2396. 1,
  2397. 1
  2398. ]
  2399. },
  2400. "_eulerAngles": {
  2401. "__type__": "cc.Vec3",
  2402. "x": 0,
  2403. "y": 0,
  2404. "z": 0
  2405. },
  2406. "_skewX": 0,
  2407. "_skewY": 0,
  2408. "_is3DNode": false,
  2409. "_groupIndex": 0,
  2410. "groupIndex": 0,
  2411. "_id": "5bcgRI8+xGRrskDQM/BAMg"
  2412. },
  2413. {
  2414. "__type__": "cc.Label",
  2415. "_name": "",
  2416. "_objFlags": 0,
  2417. "node": {
  2418. "__id__": 47
  2419. },
  2420. "_enabled": true,
  2421. "_materials": [
  2422. {
  2423. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2424. }
  2425. ],
  2426. "_srcBlendFactor": 770,
  2427. "_dstBlendFactor": 771,
  2428. "_string": "步数:",
  2429. "_N$string": "步数:",
  2430. "_fontSize": 35,
  2431. "_lineHeight": 40,
  2432. "_enableWrapText": true,
  2433. "_N$file": null,
  2434. "_isSystemFontUsed": true,
  2435. "_spacingX": 0,
  2436. "_batchAsBitmap": false,
  2437. "_styleFlags": 0,
  2438. "_underlineHeight": 0,
  2439. "_N$horizontalAlign": 1,
  2440. "_N$verticalAlign": 1,
  2441. "_N$fontFamily": "Arial",
  2442. "_N$overflow": 0,
  2443. "_N$cacheMode": 0,
  2444. "_id": "8f2rjqufxOcJHtAnIhEsJr"
  2445. },
  2446. {
  2447. "__type__": "cc.Widget",
  2448. "_name": "",
  2449. "_objFlags": 0,
  2450. "node": {
  2451. "__id__": 42
  2452. },
  2453. "_enabled": true,
  2454. "alignMode": 1,
  2455. "_target": {
  2456. "__id__": 41
  2457. },
  2458. "_alignFlags": 9,
  2459. "_left": -248,
  2460. "_right": 0,
  2461. "_top": -404,
  2462. "_bottom": 0,
  2463. "_verticalCenter": 0,
  2464. "_horizontalCenter": 0,
  2465. "_isAbsLeft": true,
  2466. "_isAbsRight": true,
  2467. "_isAbsTop": true,
  2468. "_isAbsBottom": true,
  2469. "_isAbsHorizontalCenter": true,
  2470. "_isAbsVerticalCenter": true,
  2471. "_originalWidth": 0,
  2472. "_originalHeight": 0,
  2473. "_id": "f6+XUMVZJDfZyRaVTwAwmS"
  2474. },
  2475. {
  2476. "__type__": "cc.Node",
  2477. "_name": "scoreNode",
  2478. "_objFlags": 0,
  2479. "_parent": {
  2480. "__id__": 41
  2481. },
  2482. "_children": [
  2483. {
  2484. "__id__": 51
  2485. }
  2486. ],
  2487. "_active": true,
  2488. "_components": [],
  2489. "_prefab": null,
  2490. "_opacity": 255,
  2491. "_color": {
  2492. "__type__": "cc.Color",
  2493. "r": 255,
  2494. "g": 255,
  2495. "b": 255,
  2496. "a": 255
  2497. },
  2498. "_contentSize": {
  2499. "__type__": "cc.Size",
  2500. "width": 0,
  2501. "height": 0
  2502. },
  2503. "_anchorPoint": {
  2504. "__type__": "cc.Vec2",
  2505. "x": 0.5,
  2506. "y": 0.5
  2507. },
  2508. "_trs": {
  2509. "__type__": "TypedArray",
  2510. "ctor": "Float64Array",
  2511. "array": [
  2512. 0,
  2513. 374,
  2514. 0,
  2515. 0,
  2516. 0,
  2517. 0,
  2518. 1,
  2519. 1,
  2520. 1,
  2521. 1
  2522. ]
  2523. },
  2524. "_eulerAngles": {
  2525. "__type__": "cc.Vec3",
  2526. "x": 0,
  2527. "y": 0,
  2528. "z": 0
  2529. },
  2530. "_skewX": 0,
  2531. "_skewY": 0,
  2532. "_is3DNode": false,
  2533. "_groupIndex": 0,
  2534. "groupIndex": 0,
  2535. "_id": "2a/rkX2XlPKLfNuRdMqu9n"
  2536. },
  2537. {
  2538. "__type__": "cc.Node",
  2539. "_name": "progressBar",
  2540. "_objFlags": 0,
  2541. "_parent": {
  2542. "__id__": 50
  2543. },
  2544. "_children": [
  2545. {
  2546. "__id__": 52
  2547. },
  2548. {
  2549. "__id__": 54
  2550. },
  2551. {
  2552. "__id__": 56
  2553. },
  2554. {
  2555. "__id__": 58
  2556. },
  2557. {
  2558. "__id__": 60
  2559. },
  2560. {
  2561. "__id__": 62
  2562. },
  2563. {
  2564. "__id__": 69
  2565. }
  2566. ],
  2567. "_active": true,
  2568. "_components": [
  2569. {
  2570. "__id__": 75
  2571. },
  2572. {
  2573. "__id__": 76
  2574. },
  2575. {
  2576. "__id__": 77
  2577. }
  2578. ],
  2579. "_prefab": null,
  2580. "_opacity": 255,
  2581. "_color": {
  2582. "__type__": "cc.Color",
  2583. "r": 255,
  2584. "g": 255,
  2585. "b": 255,
  2586. "a": 255
  2587. },
  2588. "_contentSize": {
  2589. "__type__": "cc.Size",
  2590. "width": 300,
  2591. "height": 30
  2592. },
  2593. "_anchorPoint": {
  2594. "__type__": "cc.Vec2",
  2595. "x": 0.5,
  2596. "y": 0.5
  2597. },
  2598. "_trs": {
  2599. "__type__": "TypedArray",
  2600. "ctor": "Float64Array",
  2601. "array": [
  2602. 0,
  2603. -44,
  2604. 0,
  2605. 0,
  2606. 0,
  2607. 0,
  2608. 1,
  2609. 1,
  2610. 1,
  2611. 1
  2612. ]
  2613. },
  2614. "_eulerAngles": {
  2615. "__type__": "cc.Vec3",
  2616. "x": 0,
  2617. "y": 0,
  2618. "z": 0
  2619. },
  2620. "_skewX": 0,
  2621. "_skewY": 0,
  2622. "_is3DNode": false,
  2623. "_groupIndex": 0,
  2624. "groupIndex": 0,
  2625. "_id": "83ClJvBu9C7KaVpJN4hHzO"
  2626. },
  2627. {
  2628. "__type__": "cc.Node",
  2629. "_name": "bg",
  2630. "_objFlags": 0,
  2631. "_parent": {
  2632. "__id__": 51
  2633. },
  2634. "_children": [],
  2635. "_active": true,
  2636. "_components": [
  2637. {
  2638. "__id__": 53
  2639. }
  2640. ],
  2641. "_prefab": null,
  2642. "_opacity": 255,
  2643. "_color": {
  2644. "__type__": "cc.Color",
  2645. "r": 255,
  2646. "g": 255,
  2647. "b": 255,
  2648. "a": 255
  2649. },
  2650. "_contentSize": {
  2651. "__type__": "cc.Size",
  2652. "width": 290,
  2653. "height": 25
  2654. },
  2655. "_anchorPoint": {
  2656. "__type__": "cc.Vec2",
  2657. "x": 0.5,
  2658. "y": 0.5
  2659. },
  2660. "_trs": {
  2661. "__type__": "TypedArray",
  2662. "ctor": "Float64Array",
  2663. "array": [
  2664. 0,
  2665. 0,
  2666. 0,
  2667. 0,
  2668. 0,
  2669. 0,
  2670. 1,
  2671. 1,
  2672. 1,
  2673. 1
  2674. ]
  2675. },
  2676. "_eulerAngles": {
  2677. "__type__": "cc.Vec3",
  2678. "x": 0,
  2679. "y": 0,
  2680. "z": 0
  2681. },
  2682. "_skewX": 0,
  2683. "_skewY": 0,
  2684. "_is3DNode": false,
  2685. "_groupIndex": 0,
  2686. "groupIndex": 0,
  2687. "_id": "3315zueqtFPoUN3WzeMIRd"
  2688. },
  2689. {
  2690. "__type__": "cc.Sprite",
  2691. "_name": "",
  2692. "_objFlags": 0,
  2693. "node": {
  2694. "__id__": 52
  2695. },
  2696. "_enabled": true,
  2697. "_materials": [
  2698. {
  2699. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2700. }
  2701. ],
  2702. "_srcBlendFactor": 770,
  2703. "_dstBlendFactor": 771,
  2704. "_spriteFrame": {
  2705. "__uuid__": "09b7267e-4d16-4679-ad96-03c02d49ff3d"
  2706. },
  2707. "_type": 0,
  2708. "_sizeMode": 0,
  2709. "_fillType": 0,
  2710. "_fillCenter": {
  2711. "__type__": "cc.Vec2",
  2712. "x": 0,
  2713. "y": 0
  2714. },
  2715. "_fillStart": 0,
  2716. "_fillRange": 0,
  2717. "_isTrimmedMode": true,
  2718. "_atlas": null,
  2719. "_id": "f3mRa3Dv9GtL+yxtR5cCLJ"
  2720. },
  2721. {
  2722. "__type__": "cc.Node",
  2723. "_name": "bar",
  2724. "_objFlags": 0,
  2725. "_parent": {
  2726. "__id__": 51
  2727. },
  2728. "_children": [],
  2729. "_active": true,
  2730. "_components": [
  2731. {
  2732. "__id__": 55
  2733. }
  2734. ],
  2735. "_prefab": null,
  2736. "_opacity": 255,
  2737. "_color": {
  2738. "__type__": "cc.Color",
  2739. "r": 255,
  2740. "g": 255,
  2741. "b": 255,
  2742. "a": 255
  2743. },
  2744. "_contentSize": {
  2745. "__type__": "cc.Size",
  2746. "width": 144.45,
  2747. "height": 22
  2748. },
  2749. "_anchorPoint": {
  2750. "__type__": "cc.Vec2",
  2751. "x": 0,
  2752. "y": 0.5
  2753. },
  2754. "_trs": {
  2755. "__type__": "TypedArray",
  2756. "ctor": "Float64Array",
  2757. "array": [
  2758. -144.4,
  2759. 0.3,
  2760. 0,
  2761. 0,
  2762. 0,
  2763. 0,
  2764. 1,
  2765. 1,
  2766. 1,
  2767. 1
  2768. ]
  2769. },
  2770. "_eulerAngles": {
  2771. "__type__": "cc.Vec3",
  2772. "x": 0,
  2773. "y": 0,
  2774. "z": 0
  2775. },
  2776. "_skewX": -4,
  2777. "_skewY": 0,
  2778. "_is3DNode": false,
  2779. "_groupIndex": 0,
  2780. "groupIndex": 0,
  2781. "_id": "14XDr9cEJPCY7j33ZsNJwk"
  2782. },
  2783. {
  2784. "__type__": "cc.Sprite",
  2785. "_name": "",
  2786. "_objFlags": 0,
  2787. "node": {
  2788. "__id__": 54
  2789. },
  2790. "_enabled": true,
  2791. "_materials": [
  2792. {
  2793. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2794. }
  2795. ],
  2796. "_srcBlendFactor": 770,
  2797. "_dstBlendFactor": 771,
  2798. "_spriteFrame": {
  2799. "__uuid__": "e78b5dde-820f-472c-b035-00f7e0f31012"
  2800. },
  2801. "_type": 1,
  2802. "_sizeMode": 0,
  2803. "_fillType": 0,
  2804. "_fillCenter": {
  2805. "__type__": "cc.Vec2",
  2806. "x": 0,
  2807. "y": 0
  2808. },
  2809. "_fillStart": 0,
  2810. "_fillRange": 0,
  2811. "_isTrimmedMode": true,
  2812. "_atlas": null,
  2813. "_id": "26+0IqmXlB+YzmA2pTFLrP"
  2814. },
  2815. {
  2816. "__type__": "cc.Node",
  2817. "_name": "level-bg",
  2818. "_objFlags": 0,
  2819. "_parent": {
  2820. "__id__": 51
  2821. },
  2822. "_children": [],
  2823. "_active": true,
  2824. "_components": [
  2825. {
  2826. "__id__": 57
  2827. }
  2828. ],
  2829. "_prefab": null,
  2830. "_opacity": 255,
  2831. "_color": {
  2832. "__type__": "cc.Color",
  2833. "r": 255,
  2834. "g": 255,
  2835. "b": 255,
  2836. "a": 255
  2837. },
  2838. "_contentSize": {
  2839. "__type__": "cc.Size",
  2840. "width": 50,
  2841. "height": 91
  2842. },
  2843. "_anchorPoint": {
  2844. "__type__": "cc.Vec2",
  2845. "x": 0.5,
  2846. "y": 0.5
  2847. },
  2848. "_trs": {
  2849. "__type__": "TypedArray",
  2850. "ctor": "Float64Array",
  2851. "array": [
  2852. -108,
  2853. 197,
  2854. 0,
  2855. 0,
  2856. 0,
  2857. 0,
  2858. 1,
  2859. 1,
  2860. 1,
  2861. 1
  2862. ]
  2863. },
  2864. "_eulerAngles": {
  2865. "__type__": "cc.Vec3",
  2866. "x": 0,
  2867. "y": 0,
  2868. "z": 0
  2869. },
  2870. "_skewX": 0,
  2871. "_skewY": 0,
  2872. "_is3DNode": false,
  2873. "_groupIndex": 0,
  2874. "groupIndex": 0,
  2875. "_id": "753DBx/4dJO6etOmE4yt+H"
  2876. },
  2877. {
  2878. "__type__": "cc.Sprite",
  2879. "_name": "",
  2880. "_objFlags": 0,
  2881. "node": {
  2882. "__id__": 56
  2883. },
  2884. "_enabled": true,
  2885. "_materials": [
  2886. {
  2887. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2888. }
  2889. ],
  2890. "_srcBlendFactor": 770,
  2891. "_dstBlendFactor": 771,
  2892. "_spriteFrame": {
  2893. "__uuid__": "28e187c0-7af4-4ca2-baaf-a0443edd890d"
  2894. },
  2895. "_type": 0,
  2896. "_sizeMode": 1,
  2897. "_fillType": 0,
  2898. "_fillCenter": {
  2899. "__type__": "cc.Vec2",
  2900. "x": 0,
  2901. "y": 0
  2902. },
  2903. "_fillStart": 0,
  2904. "_fillRange": 0,
  2905. "_isTrimmedMode": true,
  2906. "_atlas": null,
  2907. "_id": "95AjYfnX9DbZ7I4IyPA7XN"
  2908. },
  2909. {
  2910. "__type__": "cc.Node",
  2911. "_name": "name",
  2912. "_objFlags": 0,
  2913. "_parent": {
  2914. "__id__": 51
  2915. },
  2916. "_children": [],
  2917. "_active": true,
  2918. "_components": [
  2919. {
  2920. "__id__": 59
  2921. }
  2922. ],
  2923. "_prefab": null,
  2924. "_opacity": 255,
  2925. "_color": {
  2926. "__type__": "cc.Color",
  2927. "r": 255,
  2928. "g": 255,
  2929. "b": 255,
  2930. "a": 255
  2931. },
  2932. "_contentSize": {
  2933. "__type__": "cc.Size",
  2934. "width": 25.9,
  2935. "height": 56.4
  2936. },
  2937. "_anchorPoint": {
  2938. "__type__": "cc.Vec2",
  2939. "x": 0.5,
  2940. "y": 0.5
  2941. },
  2942. "_trs": {
  2943. "__type__": "TypedArray",
  2944. "ctor": "Float64Array",
  2945. "array": [
  2946. -106,
  2947. 198,
  2948. 0,
  2949. 0,
  2950. 0,
  2951. 0,
  2952. 1,
  2953. 1,
  2954. 1,
  2955. 1
  2956. ]
  2957. },
  2958. "_eulerAngles": {
  2959. "__type__": "cc.Vec3",
  2960. "x": 0,
  2961. "y": 0,
  2962. "z": 0
  2963. },
  2964. "_skewX": 0,
  2965. "_skewY": 0,
  2966. "_is3DNode": false,
  2967. "_groupIndex": 0,
  2968. "groupIndex": 0,
  2969. "_id": "15TKlqbf5Fr4E+4OwG3oMK"
  2970. },
  2971. {
  2972. "__type__": "cc.Label",
  2973. "_name": "",
  2974. "_objFlags": 0,
  2975. "node": {
  2976. "__id__": 58
  2977. },
  2978. "_enabled": true,
  2979. "_materials": [
  2980. {
  2981. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2982. }
  2983. ],
  2984. "_srcBlendFactor": 770,
  2985. "_dstBlendFactor": 771,
  2986. "_string": "刘刘",
  2987. "_N$string": "刘刘",
  2988. "_fontSize": 30,
  2989. "_lineHeight": 30,
  2990. "_enableWrapText": true,
  2991. "_N$file": null,
  2992. "_isSystemFontUsed": true,
  2993. "_spacingX": 0,
  2994. "_batchAsBitmap": false,
  2995. "_styleFlags": 0,
  2996. "_underlineHeight": 0,
  2997. "_N$horizontalAlign": 1,
  2998. "_N$verticalAlign": 1,
  2999. "_N$fontFamily": "Arial",
  3000. "_N$overflow": 2,
  3001. "_N$cacheMode": 0,
  3002. "_id": "dcMX4UGJFNra7hiN2CkPv2"
  3003. },
  3004. {
  3005. "__type__": "cc.Node",
  3006. "_name": "level",
  3007. "_objFlags": 0,
  3008. "_parent": {
  3009. "__id__": 51
  3010. },
  3011. "_children": [],
  3012. "_active": false,
  3013. "_components": [
  3014. {
  3015. "__id__": 61
  3016. }
  3017. ],
  3018. "_prefab": null,
  3019. "_opacity": 255,
  3020. "_color": {
  3021. "__type__": "cc.Color",
  3022. "r": 253,
  3023. "g": 255,
  3024. "b": 89,
  3025. "a": 255
  3026. },
  3027. "_contentSize": {
  3028. "__type__": "cc.Size",
  3029. "width": 40,
  3030. "height": 40
  3031. },
  3032. "_anchorPoint": {
  3033. "__type__": "cc.Vec2",
  3034. "x": 0.5,
  3035. "y": 0.5
  3036. },
  3037. "_trs": {
  3038. "__type__": "TypedArray",
  3039. "ctor": "Float64Array",
  3040. "array": [
  3041. -94,
  3042. 206,
  3043. 0,
  3044. 0,
  3045. 0,
  3046. 0,
  3047. 1,
  3048. 1,
  3049. 1,
  3050. 1
  3051. ]
  3052. },
  3053. "_eulerAngles": {
  3054. "__type__": "cc.Vec3",
  3055. "x": 0,
  3056. "y": 0,
  3057. "z": 0
  3058. },
  3059. "_skewX": 0,
  3060. "_skewY": 0,
  3061. "_is3DNode": false,
  3062. "_groupIndex": 0,
  3063. "groupIndex": 0,
  3064. "_id": "68bzXPofVKdrKeT9CMW2/B"
  3065. },
  3066. {
  3067. "__type__": "cc.Label",
  3068. "_name": "",
  3069. "_objFlags": 0,
  3070. "node": {
  3071. "__id__": 60
  3072. },
  3073. "_enabled": true,
  3074. "_materials": [],
  3075. "_srcBlendFactor": 770,
  3076. "_dstBlendFactor": 771,
  3077. "_string": "lv1",
  3078. "_N$string": "lv1",
  3079. "_fontSize": 25,
  3080. "_lineHeight": 20,
  3081. "_enableWrapText": true,
  3082. "_N$file": null,
  3083. "_isSystemFontUsed": true,
  3084. "_spacingX": 0,
  3085. "_batchAsBitmap": true,
  3086. "_styleFlags": 0,
  3087. "_underlineHeight": 0,
  3088. "_N$horizontalAlign": 1,
  3089. "_N$verticalAlign": 1,
  3090. "_N$fontFamily": "Arial",
  3091. "_N$overflow": 2,
  3092. "_N$cacheMode": 0,
  3093. "_id": "62fiicvKZHzpQpAp2ff9tM"
  3094. },
  3095. {
  3096. "__type__": "cc.Node",
  3097. "_name": "usual",
  3098. "_objFlags": 0,
  3099. "_parent": {
  3100. "__id__": 51
  3101. },
  3102. "_children": [
  3103. {
  3104. "__id__": 63
  3105. },
  3106. {
  3107. "__id__": 65
  3108. },
  3109. {
  3110. "__id__": 67
  3111. }
  3112. ],
  3113. "_active": true,
  3114. "_components": [],
  3115. "_prefab": null,
  3116. "_opacity": 255,
  3117. "_color": {
  3118. "__type__": "cc.Color",
  3119. "r": 255,
  3120. "g": 255,
  3121. "b": 255,
  3122. "a": 255
  3123. },
  3124. "_contentSize": {
  3125. "__type__": "cc.Size",
  3126. "width": 0,
  3127. "height": 0
  3128. },
  3129. "_anchorPoint": {
  3130. "__type__": "cc.Vec2",
  3131. "x": 0.5,
  3132. "y": 0.5
  3133. },
  3134. "_trs": {
  3135. "__type__": "TypedArray",
  3136. "ctor": "Float64Array",
  3137. "array": [
  3138. 0,
  3139. 0,
  3140. 0,
  3141. 0,
  3142. 0,
  3143. 0,
  3144. 1,
  3145. 1,
  3146. 1,
  3147. 1
  3148. ]
  3149. },
  3150. "_eulerAngles": {
  3151. "__type__": "cc.Vec3",
  3152. "x": 0,
  3153. "y": 0,
  3154. "z": 0
  3155. },
  3156. "_skewX": 0,
  3157. "_skewY": 0,
  3158. "_is3DNode": false,
  3159. "_groupIndex": 0,
  3160. "groupIndex": 0,
  3161. "_id": "0apL9BlzFMK77aKN/F0vBz"
  3162. },
  3163. {
  3164. "__type__": "cc.Node",
  3165. "_name": "Label",
  3166. "_objFlags": 0,
  3167. "_parent": {
  3168. "__id__": 62
  3169. },
  3170. "_children": [],
  3171. "_active": true,
  3172. "_components": [
  3173. {
  3174. "__id__": 64
  3175. }
  3176. ],
  3177. "_prefab": null,
  3178. "_opacity": 255,
  3179. "_color": {
  3180. "__type__": "cc.Color",
  3181. "r": 255,
  3182. "g": 255,
  3183. "b": 255,
  3184. "a": 255
  3185. },
  3186. "_contentSize": {
  3187. "__type__": "cc.Size",
  3188. "width": 128,
  3189. "height": 30
  3190. },
  3191. "_anchorPoint": {
  3192. "__type__": "cc.Vec2",
  3193. "x": 1,
  3194. "y": 0.5
  3195. },
  3196. "_trs": {
  3197. "__type__": "TypedArray",
  3198. "ctor": "Float64Array",
  3199. "array": [
  3200. -11.4,
  3201. 7.7,
  3202. 0,
  3203. 0,
  3204. 0,
  3205. 0,
  3206. 1,
  3207. 1,
  3208. 1,
  3209. 1
  3210. ]
  3211. },
  3212. "_eulerAngles": {
  3213. "__type__": "cc.Vec3",
  3214. "x": 0,
  3215. "y": 0,
  3216. "z": 0
  3217. },
  3218. "_skewX": 0,
  3219. "_skewY": 0,
  3220. "_is3DNode": false,
  3221. "_groupIndex": 0,
  3222. "groupIndex": 0,
  3223. "_id": "1d8cpYX5FNWZddrDK4C03P"
  3224. },
  3225. {
  3226. "__type__": "cc.Label",
  3227. "_name": "",
  3228. "_objFlags": 0,
  3229. "node": {
  3230. "__id__": 63
  3231. },
  3232. "_enabled": true,
  3233. "_materials": [
  3234. {
  3235. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3236. }
  3237. ],
  3238. "_srcBlendFactor": 770,
  3239. "_dstBlendFactor": 771,
  3240. "_string": "111",
  3241. "_N$string": "111",
  3242. "_fontSize": 20,
  3243. "_lineHeight": 40,
  3244. "_enableWrapText": true,
  3245. "_N$file": {
  3246. "__uuid__": "3e4b558e-e436-4e4a-825f-ab27746bab47"
  3247. },
  3248. "_isSystemFontUsed": false,
  3249. "_spacingX": 0,
  3250. "_batchAsBitmap": false,
  3251. "_styleFlags": 0,
  3252. "_underlineHeight": 0,
  3253. "_N$horizontalAlign": 2,
  3254. "_N$verticalAlign": 1,
  3255. "_N$fontFamily": "Arial",
  3256. "_N$overflow": 2,
  3257. "_N$cacheMode": 0,
  3258. "_id": "8flLtWIvdFf5NodE0vyqKI"
  3259. },
  3260. {
  3261. "__type__": "cc.Node",
  3262. "_name": "Label",
  3263. "_objFlags": 0,
  3264. "_parent": {
  3265. "__id__": 62
  3266. },
  3267. "_children": [],
  3268. "_active": true,
  3269. "_components": [
  3270. {
  3271. "__id__": 66
  3272. }
  3273. ],
  3274. "_prefab": null,
  3275. "_opacity": 255,
  3276. "_color": {
  3277. "__type__": "cc.Color",
  3278. "r": 0,
  3279. "g": 64,
  3280. "b": 69,
  3281. "a": 255
  3282. },
  3283. "_contentSize": {
  3284. "__type__": "cc.Size",
  3285. "width": 8.33,
  3286. "height": 63
  3287. },
  3288. "_anchorPoint": {
  3289. "__type__": "cc.Vec2",
  3290. "x": 0.5,
  3291. "y": 0.5
  3292. },
  3293. "_trs": {
  3294. "__type__": "TypedArray",
  3295. "ctor": "Float64Array",
  3296. "array": [
  3297. -6.1,
  3298. -1.3,
  3299. 0,
  3300. 0,
  3301. 0,
  3302. 0,
  3303. 1,
  3304. 1,
  3305. 1.0154266,
  3306. 1
  3307. ]
  3308. },
  3309. "_eulerAngles": {
  3310. "__type__": "cc.Vec3",
  3311. "x": 0,
  3312. "y": 0,
  3313. "z": 0
  3314. },
  3315. "_skewX": 10,
  3316. "_skewY": 0,
  3317. "_is3DNode": false,
  3318. "_groupIndex": 0,
  3319. "groupIndex": 0,
  3320. "_id": "ffHrHmGFJPUJbvYB5bV4iT"
  3321. },
  3322. {
  3323. "__type__": "cc.Label",
  3324. "_name": "",
  3325. "_objFlags": 0,
  3326. "node": {
  3327. "__id__": 65
  3328. },
  3329. "_enabled": true,
  3330. "_materials": [
  3331. {
  3332. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3333. }
  3334. ],
  3335. "_srcBlendFactor": 770,
  3336. "_dstBlendFactor": 771,
  3337. "_string": "/",
  3338. "_N$string": "/",
  3339. "_fontSize": 30,
  3340. "_lineHeight": 50,
  3341. "_enableWrapText": true,
  3342. "_N$file": null,
  3343. "_isSystemFontUsed": true,
  3344. "_spacingX": 0,
  3345. "_batchAsBitmap": false,
  3346. "_styleFlags": 0,
  3347. "_underlineHeight": 0,
  3348. "_N$horizontalAlign": 1,
  3349. "_N$verticalAlign": 1,
  3350. "_N$fontFamily": "Arial",
  3351. "_N$overflow": 0,
  3352. "_N$cacheMode": 0,
  3353. "_id": "bbIMrRNNlHs7v/u/0DgKJ9"
  3354. },
  3355. {
  3356. "__type__": "cc.Node",
  3357. "_name": "Label",
  3358. "_objFlags": 0,
  3359. "_parent": {
  3360. "__id__": 62
  3361. },
  3362. "_children": [],
  3363. "_active": true,
  3364. "_components": [
  3365. {
  3366. "__id__": 68
  3367. }
  3368. ],
  3369. "_prefab": null,
  3370. "_opacity": 255,
  3371. "_color": {
  3372. "__type__": "cc.Color",
  3373. "r": 255,
  3374. "g": 255,
  3375. "b": 255,
  3376. "a": 255
  3377. },
  3378. "_contentSize": {
  3379. "__type__": "cc.Size",
  3380. "width": 128,
  3381. "height": 30
  3382. },
  3383. "_anchorPoint": {
  3384. "__type__": "cc.Vec2",
  3385. "x": 0,
  3386. "y": 0.5
  3387. },
  3388. "_trs": {
  3389. "__type__": "TypedArray",
  3390. "ctor": "Float64Array",
  3391. "array": [
  3392. -0.3,
  3393. 7.2,
  3394. 0,
  3395. 0,
  3396. 0,
  3397. 0,
  3398. 1,
  3399. 1,
  3400. 1,
  3401. 1
  3402. ]
  3403. },
  3404. "_eulerAngles": {
  3405. "__type__": "cc.Vec3",
  3406. "x": 0,
  3407. "y": 0,
  3408. "z": 0
  3409. },
  3410. "_skewX": 0,
  3411. "_skewY": 0,
  3412. "_is3DNode": false,
  3413. "_groupIndex": 0,
  3414. "groupIndex": 0,
  3415. "_id": "59hH4EUOJLgYw898+ywfVS"
  3416. },
  3417. {
  3418. "__type__": "cc.Label",
  3419. "_name": "",
  3420. "_objFlags": 0,
  3421. "node": {
  3422. "__id__": 67
  3423. },
  3424. "_enabled": true,
  3425. "_materials": [
  3426. {
  3427. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3428. }
  3429. ],
  3430. "_srcBlendFactor": 770,
  3431. "_dstBlendFactor": 771,
  3432. "_string": "100",
  3433. "_N$string": "100",
  3434. "_fontSize": 20,
  3435. "_lineHeight": 40,
  3436. "_enableWrapText": true,
  3437. "_N$file": {
  3438. "__uuid__": "3e4b558e-e436-4e4a-825f-ab27746bab47"
  3439. },
  3440. "_isSystemFontUsed": false,
  3441. "_spacingX": 0,
  3442. "_batchAsBitmap": false,
  3443. "_styleFlags": 0,
  3444. "_underlineHeight": 0,
  3445. "_N$horizontalAlign": 0,
  3446. "_N$verticalAlign": 1,
  3447. "_N$fontFamily": "Arial",
  3448. "_N$overflow": 2,
  3449. "_N$cacheMode": 0,
  3450. "_id": "507Qc0Mk1Jp4IjKkqTgPSx"
  3451. },
  3452. {
  3453. "__type__": "cc.Node",
  3454. "_name": "limit",
  3455. "_objFlags": 0,
  3456. "_parent": {
  3457. "__id__": 51
  3458. },
  3459. "_children": [
  3460. {
  3461. "__id__": 70
  3462. },
  3463. {
  3464. "__id__": 73
  3465. }
  3466. ],
  3467. "_active": true,
  3468. "_components": [],
  3469. "_prefab": null,
  3470. "_opacity": 255,
  3471. "_color": {
  3472. "__type__": "cc.Color",
  3473. "r": 255,
  3474. "g": 255,
  3475. "b": 255,
  3476. "a": 255
  3477. },
  3478. "_contentSize": {
  3479. "__type__": "cc.Size",
  3480. "width": 0,
  3481. "height": 0
  3482. },
  3483. "_anchorPoint": {
  3484. "__type__": "cc.Vec2",
  3485. "x": 0.5,
  3486. "y": 0.5
  3487. },
  3488. "_trs": {
  3489. "__type__": "TypedArray",
  3490. "ctor": "Float64Array",
  3491. "array": [
  3492. 0,
  3493. 0,
  3494. 0,
  3495. 0,
  3496. 0,
  3497. 0,
  3498. 1,
  3499. 1,
  3500. 1,
  3501. 1
  3502. ]
  3503. },
  3504. "_eulerAngles": {
  3505. "__type__": "cc.Vec3",
  3506. "x": 0,
  3507. "y": 0,
  3508. "z": 0
  3509. },
  3510. "_skewX": 0,
  3511. "_skewY": 0,
  3512. "_is3DNode": false,
  3513. "_groupIndex": 0,
  3514. "groupIndex": 0,
  3515. "_id": "77ASAmp8lEqpml3klJtDaP"
  3516. },
  3517. {
  3518. "__type__": "cc.Node",
  3519. "_name": "New Label",
  3520. "_objFlags": 0,
  3521. "_parent": {
  3522. "__id__": 69
  3523. },
  3524. "_children": [],
  3525. "_active": true,
  3526. "_components": [
  3527. {
  3528. "__id__": 71
  3529. },
  3530. {
  3531. "__id__": 72
  3532. }
  3533. ],
  3534. "_prefab": null,
  3535. "_opacity": 255,
  3536. "_color": {
  3537. "__type__": "cc.Color",
  3538. "r": 255,
  3539. "g": 225,
  3540. "b": 18,
  3541. "a": 255
  3542. },
  3543. "_contentSize": {
  3544. "__type__": "cc.Size",
  3545. "width": 47.56,
  3546. "height": 52.4
  3547. },
  3548. "_anchorPoint": {
  3549. "__type__": "cc.Vec2",
  3550. "x": 0.5,
  3551. "y": 0.5
  3552. },
  3553. "_trs": {
  3554. "__type__": "TypedArray",
  3555. "ctor": "Float64Array",
  3556. "array": [
  3557. -54,
  3558. 0,
  3559. 0,
  3560. 0,
  3561. 0,
  3562. 0,
  3563. 1,
  3564. 1,
  3565. 1,
  3566. 1
  3567. ]
  3568. },
  3569. "_eulerAngles": {
  3570. "__type__": "cc.Vec3",
  3571. "x": 0,
  3572. "y": 0,
  3573. "z": 0
  3574. },
  3575. "_skewX": 0,
  3576. "_skewY": 0,
  3577. "_is3DNode": false,
  3578. "_groupIndex": 0,
  3579. "groupIndex": 0,
  3580. "_id": "c6lnePgKtNGqVvO1W9es4E"
  3581. },
  3582. {
  3583. "__type__": "cc.Label",
  3584. "_name": "",
  3585. "_objFlags": 0,
  3586. "node": {
  3587. "__id__": 70
  3588. },
  3589. "_enabled": true,
  3590. "_materials": [
  3591. {
  3592. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3593. }
  3594. ],
  3595. "_srcBlendFactor": 770,
  3596. "_dstBlendFactor": 771,
  3597. "_string": "总分:",
  3598. "_N$string": "总分:",
  3599. "_fontSize": 20,
  3600. "_lineHeight": 40,
  3601. "_enableWrapText": true,
  3602. "_N$file": null,
  3603. "_isSystemFontUsed": true,
  3604. "_spacingX": 0,
  3605. "_batchAsBitmap": false,
  3606. "_styleFlags": 0,
  3607. "_underlineHeight": 0,
  3608. "_N$horizontalAlign": 1,
  3609. "_N$verticalAlign": 1,
  3610. "_N$fontFamily": "Arial",
  3611. "_N$overflow": 0,
  3612. "_N$cacheMode": 0,
  3613. "_id": "3aDA6QPYVHQZscj+hy9ICr"
  3614. },
  3615. {
  3616. "__type__": "cc.LabelOutline",
  3617. "_name": "",
  3618. "_objFlags": 0,
  3619. "node": {
  3620. "__id__": 70
  3621. },
  3622. "_enabled": true,
  3623. "_color": {
  3624. "__type__": "cc.Color",
  3625. "r": 117,
  3626. "g": 94,
  3627. "b": 0,
  3628. "a": 255
  3629. },
  3630. "_width": 1,
  3631. "_id": "23oDfihSxPbLww19kobqtL"
  3632. },
  3633. {
  3634. "__type__": "cc.Node",
  3635. "_name": "Label",
  3636. "_objFlags": 0,
  3637. "_parent": {
  3638. "__id__": 69
  3639. },
  3640. "_children": [],
  3641. "_active": true,
  3642. "_components": [
  3643. {
  3644. "__id__": 74
  3645. }
  3646. ],
  3647. "_prefab": null,
  3648. "_opacity": 255,
  3649. "_color": {
  3650. "__type__": "cc.Color",
  3651. "r": 255,
  3652. "g": 255,
  3653. "b": 255,
  3654. "a": 255
  3655. },
  3656. "_contentSize": {
  3657. "__type__": "cc.Size",
  3658. "width": 128,
  3659. "height": 30
  3660. },
  3661. "_anchorPoint": {
  3662. "__type__": "cc.Vec2",
  3663. "x": 0,
  3664. "y": 0.5
  3665. },
  3666. "_trs": {
  3667. "__type__": "TypedArray",
  3668. "ctor": "Float64Array",
  3669. "array": [
  3670. -26.2,
  3671. 7.2,
  3672. 0,
  3673. 0,
  3674. 0,
  3675. 0,
  3676. 1,
  3677. 1,
  3678. 1,
  3679. 1
  3680. ]
  3681. },
  3682. "_eulerAngles": {
  3683. "__type__": "cc.Vec3",
  3684. "x": 0,
  3685. "y": 0,
  3686. "z": 0
  3687. },
  3688. "_skewX": 0,
  3689. "_skewY": 0,
  3690. "_is3DNode": false,
  3691. "_groupIndex": 0,
  3692. "groupIndex": 0,
  3693. "_id": "f6QgmS30JIpL7wWAFbg8BJ"
  3694. },
  3695. {
  3696. "__type__": "cc.Label",
  3697. "_name": "",
  3698. "_objFlags": 0,
  3699. "node": {
  3700. "__id__": 73
  3701. },
  3702. "_enabled": true,
  3703. "_materials": [
  3704. {
  3705. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3706. }
  3707. ],
  3708. "_srcBlendFactor": 770,
  3709. "_dstBlendFactor": 771,
  3710. "_string": "100",
  3711. "_N$string": "100",
  3712. "_fontSize": 20,
  3713. "_lineHeight": 40,
  3714. "_enableWrapText": true,
  3715. "_N$file": {
  3716. "__uuid__": "3e4b558e-e436-4e4a-825f-ab27746bab47"
  3717. },
  3718. "_isSystemFontUsed": false,
  3719. "_spacingX": 0,
  3720. "_batchAsBitmap": false,
  3721. "_styleFlags": 0,
  3722. "_underlineHeight": 0,
  3723. "_N$horizontalAlign": 0,
  3724. "_N$verticalAlign": 1,
  3725. "_N$fontFamily": "Arial",
  3726. "_N$overflow": 2,
  3727. "_N$cacheMode": 0,
  3728. "_id": "45pDPPER9NwKBMmgIZF6+6"
  3729. },
  3730. {
  3731. "__type__": "cc.Sprite",
  3732. "_name": "",
  3733. "_objFlags": 0,
  3734. "node": {
  3735. "__id__": 51
  3736. },
  3737. "_enabled": true,
  3738. "_materials": [
  3739. {
  3740. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3741. }
  3742. ],
  3743. "_srcBlendFactor": 770,
  3744. "_dstBlendFactor": 771,
  3745. "_spriteFrame": null,
  3746. "_type": 1,
  3747. "_sizeMode": 0,
  3748. "_fillType": 0,
  3749. "_fillCenter": {
  3750. "__type__": "cc.Vec2",
  3751. "x": 0,
  3752. "y": 0
  3753. },
  3754. "_fillStart": 0,
  3755. "_fillRange": 0,
  3756. "_isTrimmedMode": true,
  3757. "_atlas": null,
  3758. "_id": "e4dwSUmRlHQLXBixlrESbL"
  3759. },
  3760. {
  3761. "__type__": "cc.ProgressBar",
  3762. "_name": "",
  3763. "_objFlags": 0,
  3764. "node": {
  3765. "__id__": 51
  3766. },
  3767. "_enabled": true,
  3768. "_N$totalLength": 288.9,
  3769. "_N$barSprite": {
  3770. "__id__": 55
  3771. },
  3772. "_N$mode": 0,
  3773. "_N$progress": 0.5,
  3774. "_N$reverse": false,
  3775. "_id": "ed/JENMpxK86kuNI4Oyxe2"
  3776. },
  3777. {
  3778. "__type__": "b6ca61w/99BeLZm6RuqYPHb",
  3779. "_name": "",
  3780. "_objFlags": 0,
  3781. "node": {
  3782. "__id__": 51
  3783. },
  3784. "_enabled": true,
  3785. "usualNode": {
  3786. "__id__": 62
  3787. },
  3788. "currentLabel": {
  3789. "__id__": 64
  3790. },
  3791. "maxLabel": {
  3792. "__id__": 68
  3793. },
  3794. "progress": {
  3795. "__id__": 76
  3796. },
  3797. "nameLabel": {
  3798. "__id__": 59
  3799. },
  3800. "levelLabel": {
  3801. "__id__": 61
  3802. },
  3803. "limitNode": {
  3804. "__id__": 69
  3805. },
  3806. "limitScore": {
  3807. "__id__": 74
  3808. },
  3809. "_id": "05noNdtf9PvLEknbR8DR7h"
  3810. },
  3811. {
  3812. "__type__": "cc.Node",
  3813. "_name": "playerNode",
  3814. "_objFlags": 0,
  3815. "_parent": {
  3816. "__id__": 41
  3817. },
  3818. "_children": [
  3819. {
  3820. "__id__": 79
  3821. }
  3822. ],
  3823. "_active": true,
  3824. "_components": [],
  3825. "_prefab": null,
  3826. "_opacity": 255,
  3827. "_color": {
  3828. "__type__": "cc.Color",
  3829. "r": 255,
  3830. "g": 255,
  3831. "b": 255,
  3832. "a": 255
  3833. },
  3834. "_contentSize": {
  3835. "__type__": "cc.Size",
  3836. "width": 0,
  3837. "height": 0
  3838. },
  3839. "_anchorPoint": {
  3840. "__type__": "cc.Vec2",
  3841. "x": 0.5,
  3842. "y": 0.5
  3843. },
  3844. "_trs": {
  3845. "__type__": "TypedArray",
  3846. "ctor": "Float64Array",
  3847. "array": [
  3848. 0,
  3849. 505,
  3850. 0,
  3851. 0,
  3852. 0,
  3853. 0,
  3854. 1,
  3855. 1,
  3856. 1,
  3857. 1
  3858. ]
  3859. },
  3860. "_eulerAngles": {
  3861. "__type__": "cc.Vec3",
  3862. "x": 0,
  3863. "y": 0,
  3864. "z": 0
  3865. },
  3866. "_skewX": 0,
  3867. "_skewY": 0,
  3868. "_is3DNode": false,
  3869. "_groupIndex": 0,
  3870. "groupIndex": 0,
  3871. "_id": "96qiEzWINAXLlz5QDqEvQI"
  3872. },
  3873. {
  3874. "__type__": "cc.Node",
  3875. "_name": "Sprite",
  3876. "_objFlags": 0,
  3877. "_parent": {
  3878. "__id__": 78
  3879. },
  3880. "_children": [
  3881. {
  3882. "__id__": 80
  3883. }
  3884. ],
  3885. "_active": true,
  3886. "_components": [],
  3887. "_prefab": null,
  3888. "_opacity": 255,
  3889. "_color": {
  3890. "__type__": "cc.Color",
  3891. "r": 255,
  3892. "g": 255,
  3893. "b": 255,
  3894. "a": 255
  3895. },
  3896. "_contentSize": {
  3897. "__type__": "cc.Size",
  3898. "width": 246,
  3899. "height": 266
  3900. },
  3901. "_anchorPoint": {
  3902. "__type__": "cc.Vec2",
  3903. "x": 0.5,
  3904. "y": 0
  3905. },
  3906. "_trs": {
  3907. "__type__": "TypedArray",
  3908. "ctor": "Float64Array",
  3909. "array": [
  3910. 17,
  3911. -153,
  3912. 0,
  3913. 0,
  3914. 0,
  3915. 0,
  3916. 1,
  3917. 1,
  3918. 1,
  3919. 1
  3920. ]
  3921. },
  3922. "_eulerAngles": {
  3923. "__type__": "cc.Vec3",
  3924. "x": 0,
  3925. "y": 0,
  3926. "z": 0
  3927. },
  3928. "_skewX": 0,
  3929. "_skewY": 0,
  3930. "_is3DNode": false,
  3931. "_groupIndex": 0,
  3932. "groupIndex": 0,
  3933. "_id": "fcUuGWsTpG26iOHnoIt1gw"
  3934. },
  3935. {
  3936. "__type__": "cc.PrivateNode",
  3937. "_name": "DEBUG_DRAW_NODE",
  3938. "_objFlags": 1024,
  3939. "_parent": {
  3940. "__id__": 79
  3941. },
  3942. "_children": [],
  3943. "_active": true,
  3944. "_components": [
  3945. {
  3946. "__id__": 81
  3947. }
  3948. ],
  3949. "_prefab": null,
  3950. "_opacity": 255,
  3951. "_color": {
  3952. "__type__": "cc.Color",
  3953. "r": 255,
  3954. "g": 255,
  3955. "b": 255,
  3956. "a": 255
  3957. },
  3958. "_contentSize": {
  3959. "__type__": "cc.Size",
  3960. "width": 0,
  3961. "height": 0
  3962. },
  3963. "_anchorPoint": {
  3964. "__type__": "cc.Vec2",
  3965. "x": 0.5,
  3966. "y": 0.5
  3967. },
  3968. "_trs": {
  3969. "__type__": "TypedArray",
  3970. "ctor": "Float64Array",
  3971. "array": [
  3972. 0,
  3973. 133,
  3974. 0,
  3975. 0,
  3976. 0,
  3977. 0,
  3978. 1,
  3979. 1,
  3980. 1,
  3981. 1
  3982. ]
  3983. },
  3984. "_eulerAngles": {
  3985. "__type__": "cc.Vec3",
  3986. "x": 0,
  3987. "y": 0,
  3988. "z": 0
  3989. },
  3990. "_skewX": 0,
  3991. "_skewY": 0,
  3992. "_is3DNode": false,
  3993. "_groupIndex": 0,
  3994. "groupIndex": 0,
  3995. "showInEditor": false,
  3996. "_id": "e80VrpB9RAgYPXMbPEKJFL"
  3997. },
  3998. {
  3999. "__type__": "cc.Graphics",
  4000. "_name": "",
  4001. "_objFlags": 0,
  4002. "node": {
  4003. "__id__": 80
  4004. },
  4005. "_enabled": true,
  4006. "_materials": [
  4007. {
  4008. "__uuid__": "a153945d-2511-4c14-be7b-05d242f47d57"
  4009. }
  4010. ],
  4011. "_lineWidth": 5,
  4012. "_strokeColor": {
  4013. "__type__": "cc.Color",
  4014. "r": 255,
  4015. "g": 0,
  4016. "b": 0,
  4017. "a": 255
  4018. },
  4019. "_lineJoin": 2,
  4020. "_lineCap": 0,
  4021. "_fillColor": {
  4022. "__type__": "cc.Color",
  4023. "r": 0,
  4024. "g": 255,
  4025. "b": 0,
  4026. "a": 255
  4027. },
  4028. "_miterLimit": 10,
  4029. "_id": "f8nWzbNMNCFLzIJtVKH6Kw"
  4030. },
  4031. {
  4032. "__type__": "cc.Node",
  4033. "_name": "scoreGroup",
  4034. "_objFlags": 0,
  4035. "_parent": {
  4036. "__id__": 41
  4037. },
  4038. "_children": [],
  4039. "_active": true,
  4040. "_components": [],
  4041. "_prefab": null,
  4042. "_opacity": 255,
  4043. "_color": {
  4044. "__type__": "cc.Color",
  4045. "r": 255,
  4046. "g": 255,
  4047. "b": 255,
  4048. "a": 255
  4049. },
  4050. "_contentSize": {
  4051. "__type__": "cc.Size",
  4052. "width": 0,
  4053. "height": 0
  4054. },
  4055. "_anchorPoint": {
  4056. "__type__": "cc.Vec2",
  4057. "x": 0.5,
  4058. "y": 0.5
  4059. },
  4060. "_trs": {
  4061. "__type__": "TypedArray",
  4062. "ctor": "Float64Array",
  4063. "array": [
  4064. 0,
  4065. 0,
  4066. 0,
  4067. 0,
  4068. 0,
  4069. 0,
  4070. 1,
  4071. 1,
  4072. 1,
  4073. 1
  4074. ]
  4075. },
  4076. "_eulerAngles": {
  4077. "__type__": "cc.Vec3",
  4078. "x": 0,
  4079. "y": 0,
  4080. "z": 0
  4081. },
  4082. "_skewX": 0,
  4083. "_skewY": 0,
  4084. "_is3DNode": false,
  4085. "_groupIndex": 0,
  4086. "groupIndex": 0,
  4087. "_id": "1e6wGilA5FYKDy8H7Vmbpj"
  4088. },
  4089. {
  4090. "__type__": "cc.Node",
  4091. "_name": "mainScoreLabel",
  4092. "_objFlags": 0,
  4093. "_parent": {
  4094. "__id__": 41
  4095. },
  4096. "_children": [
  4097. {
  4098. "__id__": 84
  4099. }
  4100. ],
  4101. "_active": true,
  4102. "_components": [
  4103. {
  4104. "__id__": 88
  4105. }
  4106. ],
  4107. "_prefab": null,
  4108. "_opacity": 255,
  4109. "_color": {
  4110. "__type__": "cc.Color",
  4111. "r": 255,
  4112. "g": 255,
  4113. "b": 255,
  4114. "a": 255
  4115. },
  4116. "_contentSize": {
  4117. "__type__": "cc.Size",
  4118. "width": 196.13,
  4119. "height": 40
  4120. },
  4121. "_anchorPoint": {
  4122. "__type__": "cc.Vec2",
  4123. "x": 0.5,
  4124. "y": 0.5
  4125. },
  4126. "_trs": {
  4127. "__type__": "TypedArray",
  4128. "ctor": "Float64Array",
  4129. "array": [
  4130. 0,
  4131. 0,
  4132. 0,
  4133. 0,
  4134. 0,
  4135. 0,
  4136. 1,
  4137. 1,
  4138. 1,
  4139. 1
  4140. ]
  4141. },
  4142. "_eulerAngles": {
  4143. "__type__": "cc.Vec3",
  4144. "x": 0,
  4145. "y": 0,
  4146. "z": 0
  4147. },
  4148. "_skewX": 0,
  4149. "_skewY": 0,
  4150. "_is3DNode": false,
  4151. "_groupIndex": 0,
  4152. "groupIndex": 0,
  4153. "_id": "8aa5Nf5t5LH7PVFG6b3rIa"
  4154. },
  4155. {
  4156. "__type__": "cc.Node",
  4157. "_name": "mult",
  4158. "_objFlags": 0,
  4159. "_parent": {
  4160. "__id__": 83
  4161. },
  4162. "_children": [
  4163. {
  4164. "__id__": 85
  4165. }
  4166. ],
  4167. "_active": true,
  4168. "_components": [
  4169. {
  4170. "__id__": 87
  4171. }
  4172. ],
  4173. "_prefab": null,
  4174. "_opacity": 255,
  4175. "_color": {
  4176. "__type__": "cc.Color",
  4177. "r": 243,
  4178. "g": 241,
  4179. "b": 43,
  4180. "a": 255
  4181. },
  4182. "_contentSize": {
  4183. "__type__": "cc.Size",
  4184. "width": 57.2,
  4185. "height": 80
  4186. },
  4187. "_anchorPoint": {
  4188. "__type__": "cc.Vec2",
  4189. "x": 0.5,
  4190. "y": 0.5
  4191. },
  4192. "_trs": {
  4193. "__type__": "TypedArray",
  4194. "ctor": "Float64Array",
  4195. "array": [
  4196. 187,
  4197. -6,
  4198. 0,
  4199. 0,
  4200. 0,
  4201. 0,
  4202. 1,
  4203. 1,
  4204. 1,
  4205. 1
  4206. ]
  4207. },
  4208. "_eulerAngles": {
  4209. "__type__": "cc.Vec3",
  4210. "x": 0,
  4211. "y": 0,
  4212. "z": 0
  4213. },
  4214. "_skewX": 0,
  4215. "_skewY": 0,
  4216. "_is3DNode": false,
  4217. "_groupIndex": 0,
  4218. "groupIndex": 0,
  4219. "_id": "20Rt8X5KBGtrXY65M29mdQ"
  4220. },
  4221. {
  4222. "__type__": "cc.Node",
  4223. "_name": "New Sprite",
  4224. "_objFlags": 0,
  4225. "_parent": {
  4226. "__id__": 84
  4227. },
  4228. "_children": [],
  4229. "_active": true,
  4230. "_components": [
  4231. {
  4232. "__id__": 86
  4233. }
  4234. ],
  4235. "_prefab": null,
  4236. "_opacity": 255,
  4237. "_color": {
  4238. "__type__": "cc.Color",
  4239. "r": 255,
  4240. "g": 255,
  4241. "b": 255,
  4242. "a": 255
  4243. },
  4244. "_contentSize": {
  4245. "__type__": "cc.Size",
  4246. "width": 82,
  4247. "height": 99
  4248. },
  4249. "_anchorPoint": {
  4250. "__type__": "cc.Vec2",
  4251. "x": 0.5,
  4252. "y": 0.5
  4253. },
  4254. "_trs": {
  4255. "__type__": "TypedArray",
  4256. "ctor": "Float64Array",
  4257. "array": [
  4258. -61,
  4259. -19,
  4260. 0,
  4261. 0,
  4262. 0,
  4263. 0,
  4264. 1,
  4265. 0.6,
  4266. 0.6,
  4267. 1
  4268. ]
  4269. },
  4270. "_eulerAngles": {
  4271. "__type__": "cc.Vec3",
  4272. "x": 0,
  4273. "y": 0,
  4274. "z": 0
  4275. },
  4276. "_skewX": 0,
  4277. "_skewY": 0,
  4278. "_is3DNode": false,
  4279. "_groupIndex": 0,
  4280. "groupIndex": 0,
  4281. "_id": "7czX+DvzJJO7i2cv2deB/a"
  4282. },
  4283. {
  4284. "__type__": "cc.Sprite",
  4285. "_name": "",
  4286. "_objFlags": 0,
  4287. "node": {
  4288. "__id__": 85
  4289. },
  4290. "_enabled": true,
  4291. "_materials": [
  4292. {
  4293. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4294. }
  4295. ],
  4296. "_srcBlendFactor": 770,
  4297. "_dstBlendFactor": 771,
  4298. "_spriteFrame": {
  4299. "__uuid__": "53d4b33b-1f44-4d1f-8cbc-cf4d006388eb"
  4300. },
  4301. "_type": 0,
  4302. "_sizeMode": 1,
  4303. "_fillType": 0,
  4304. "_fillCenter": {
  4305. "__type__": "cc.Vec2",
  4306. "x": 0,
  4307. "y": 0
  4308. },
  4309. "_fillStart": 0,
  4310. "_fillRange": 0,
  4311. "_isTrimmedMode": true,
  4312. "_atlas": null,
  4313. "_id": "94U/WmXdtBkZgHLAeTSTj2"
  4314. },
  4315. {
  4316. "__type__": "cc.Label",
  4317. "_name": "",
  4318. "_objFlags": 0,
  4319. "node": {
  4320. "__id__": 84
  4321. },
  4322. "_enabled": true,
  4323. "_materials": [
  4324. {
  4325. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4326. }
  4327. ],
  4328. "_srcBlendFactor": 770,
  4329. "_dstBlendFactor": 771,
  4330. "_string": "2",
  4331. "_N$string": "2",
  4332. "_fontSize": 70,
  4333. "_lineHeight": 80,
  4334. "_enableWrapText": true,
  4335. "_N$file": {
  4336. "__uuid__": "3e4b558e-e436-4e4a-825f-ab27746bab47"
  4337. },
  4338. "_isSystemFontUsed": false,
  4339. "_spacingX": 0,
  4340. "_batchAsBitmap": false,
  4341. "_styleFlags": 0,
  4342. "_underlineHeight": 0,
  4343. "_N$horizontalAlign": 1,
  4344. "_N$verticalAlign": 1,
  4345. "_N$fontFamily": "Arial",
  4346. "_N$overflow": 0,
  4347. "_N$cacheMode": 0,
  4348. "_id": "e7UUSC1kVPwKMCxpNFdKzT"
  4349. },
  4350. {
  4351. "__type__": "cc.Label",
  4352. "_name": "",
  4353. "_objFlags": 0,
  4354. "node": {
  4355. "__id__": 83
  4356. },
  4357. "_enabled": true,
  4358. "_materials": [
  4359. {
  4360. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4361. }
  4362. ],
  4363. "_srcBlendFactor": 770,
  4364. "_dstBlendFactor": 771,
  4365. "_string": "9999",
  4366. "_N$string": "9999",
  4367. "_fontSize": 60,
  4368. "_lineHeight": 40,
  4369. "_enableWrapText": true,
  4370. "_N$file": {
  4371. "__uuid__": "3e4b558e-e436-4e4a-825f-ab27746bab47"
  4372. },
  4373. "_isSystemFontUsed": false,
  4374. "_spacingX": 0,
  4375. "_batchAsBitmap": false,
  4376. "_styleFlags": 0,
  4377. "_underlineHeight": 0,
  4378. "_N$horizontalAlign": 1,
  4379. "_N$verticalAlign": 1,
  4380. "_N$fontFamily": "Arial",
  4381. "_N$overflow": 0,
  4382. "_N$cacheMode": 0,
  4383. "_id": "ed3wo7SYxAkYFZh7A0I1RL"
  4384. },
  4385. {
  4386. "__type__": "cc.Node",
  4387. "_name": "chainSprite",
  4388. "_objFlags": 0,
  4389. "_parent": {
  4390. "__id__": 41
  4391. },
  4392. "_children": [],
  4393. "_active": true,
  4394. "_components": [
  4395. {
  4396. "__id__": 90
  4397. }
  4398. ],
  4399. "_prefab": null,
  4400. "_opacity": 255,
  4401. "_color": {
  4402. "__type__": "cc.Color",
  4403. "r": 255,
  4404. "g": 255,
  4405. "b": 255,
  4406. "a": 255
  4407. },
  4408. "_contentSize": {
  4409. "__type__": "cc.Size",
  4410. "width": 160,
  4411. "height": 125
  4412. },
  4413. "_anchorPoint": {
  4414. "__type__": "cc.Vec2",
  4415. "x": 0.5,
  4416. "y": 0.5
  4417. },
  4418. "_trs": {
  4419. "__type__": "TypedArray",
  4420. "ctor": "Float64Array",
  4421. "array": [
  4422. 0,
  4423. 128,
  4424. 0,
  4425. 0,
  4426. 0,
  4427. 0,
  4428. 1,
  4429. 1,
  4430. 1,
  4431. 1
  4432. ]
  4433. },
  4434. "_eulerAngles": {
  4435. "__type__": "cc.Vec3",
  4436. "x": 0,
  4437. "y": 0,
  4438. "z": 0
  4439. },
  4440. "_skewX": 0,
  4441. "_skewY": 0,
  4442. "_is3DNode": false,
  4443. "_groupIndex": 0,
  4444. "groupIndex": 0,
  4445. "_id": "d7ga9oQc1NwJOZaZ2v285Y"
  4446. },
  4447. {
  4448. "__type__": "cc.Sprite",
  4449. "_name": "",
  4450. "_objFlags": 0,
  4451. "node": {
  4452. "__id__": 89
  4453. },
  4454. "_enabled": true,
  4455. "_materials": [
  4456. {
  4457. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4458. }
  4459. ],
  4460. "_srcBlendFactor": 770,
  4461. "_dstBlendFactor": 771,
  4462. "_spriteFrame": {
  4463. "__uuid__": "8a8ec7d0-d6d3-449e-adb9-ac58425ff750"
  4464. },
  4465. "_type": 0,
  4466. "_sizeMode": 1,
  4467. "_fillType": 0,
  4468. "_fillCenter": {
  4469. "__type__": "cc.Vec2",
  4470. "x": 0,
  4471. "y": 0
  4472. },
  4473. "_fillStart": 0,
  4474. "_fillRange": 0,
  4475. "_isTrimmedMode": true,
  4476. "_atlas": null,
  4477. "_id": "b1rKNnWVVDs6EixrCgmzg3"
  4478. },
  4479. {
  4480. "__type__": "cc.Node",
  4481. "_name": "leftStepAniNode",
  4482. "_objFlags": 0,
  4483. "_parent": {
  4484. "__id__": 41
  4485. },
  4486. "_children": [],
  4487. "_active": true,
  4488. "_components": [
  4489. {
  4490. "__id__": 92
  4491. }
  4492. ],
  4493. "_prefab": null,
  4494. "_opacity": 255,
  4495. "_color": {
  4496. "__type__": "cc.Color",
  4497. "r": 253,
  4498. "g": 255,
  4499. "b": 89,
  4500. "a": 255
  4501. },
  4502. "_contentSize": {
  4503. "__type__": "cc.Size",
  4504. "width": 45.61,
  4505. "height": 50.4
  4506. },
  4507. "_anchorPoint": {
  4508. "__type__": "cc.Vec2",
  4509. "x": 0.5,
  4510. "y": 0.5
  4511. },
  4512. "_trs": {
  4513. "__type__": "TypedArray",
  4514. "ctor": "Float64Array",
  4515. "array": [
  4516. -263,
  4517. 400,
  4518. 0,
  4519. 0,
  4520. 0,
  4521. 0,
  4522. 1,
  4523. 1,
  4524. 1,
  4525. 1
  4526. ]
  4527. },
  4528. "_eulerAngles": {
  4529. "__type__": "cc.Vec3",
  4530. "x": 0,
  4531. "y": 0,
  4532. "z": 0
  4533. },
  4534. "_skewX": 0,
  4535. "_skewY": 0,
  4536. "_is3DNode": false,
  4537. "_groupIndex": 0,
  4538. "groupIndex": 0,
  4539. "_id": "40Hvs3nWdM9rHsldzoKvZ/"
  4540. },
  4541. {
  4542. "__type__": "cc.Label",
  4543. "_name": "",
  4544. "_objFlags": 0,
  4545. "node": {
  4546. "__id__": 91
  4547. },
  4548. "_enabled": true,
  4549. "_materials": [
  4550. {
  4551. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4552. }
  4553. ],
  4554. "_srcBlendFactor": 770,
  4555. "_dstBlendFactor": 771,
  4556. "_string": "+1",
  4557. "_N$string": "+1",
  4558. "_fontSize": 40,
  4559. "_lineHeight": 40,
  4560. "_enableWrapText": true,
  4561. "_N$file": null,
  4562. "_isSystemFontUsed": true,
  4563. "_spacingX": 0,
  4564. "_batchAsBitmap": false,
  4565. "_styleFlags": 0,
  4566. "_underlineHeight": 0,
  4567. "_N$horizontalAlign": 1,
  4568. "_N$verticalAlign": 1,
  4569. "_N$fontFamily": "Arial",
  4570. "_N$overflow": 0,
  4571. "_N$cacheMode": 0,
  4572. "_id": "5a9nrrRxVOf6B0Kr8KHpEP"
  4573. },
  4574. {
  4575. "__type__": "cc.Node",
  4576. "_name": "tipBox",
  4577. "_objFlags": 0,
  4578. "_parent": {
  4579. "__id__": 41
  4580. },
  4581. "_children": [
  4582. {
  4583. "__id__": 94
  4584. }
  4585. ],
  4586. "_active": true,
  4587. "_components": [
  4588. {
  4589. "__id__": 96
  4590. },
  4591. {
  4592. "__id__": 97
  4593. }
  4594. ],
  4595. "_prefab": null,
  4596. "_opacity": 255,
  4597. "_color": {
  4598. "__type__": "cc.Color",
  4599. "r": 255,
  4600. "g": 255,
  4601. "b": 255,
  4602. "a": 255
  4603. },
  4604. "_contentSize": {
  4605. "__type__": "cc.Size",
  4606. "width": 264,
  4607. "height": 190
  4608. },
  4609. "_anchorPoint": {
  4610. "__type__": "cc.Vec2",
  4611. "x": 0,
  4612. "y": 0
  4613. },
  4614. "_trs": {
  4615. "__type__": "TypedArray",
  4616. "ctor": "Float64Array",
  4617. "array": [
  4618. 19,
  4619. 468,
  4620. 0,
  4621. 0,
  4622. 0,
  4623. 0,
  4624. 1,
  4625. 0.6,
  4626. 0.6,
  4627. 1
  4628. ]
  4629. },
  4630. "_eulerAngles": {
  4631. "__type__": "cc.Vec3",
  4632. "x": 0,
  4633. "y": 0,
  4634. "z": 0
  4635. },
  4636. "_skewX": 0,
  4637. "_skewY": 0,
  4638. "_is3DNode": false,
  4639. "_groupIndex": 0,
  4640. "groupIndex": 0,
  4641. "_id": "74Q/rzGypLTIyGdhx9Zvzd"
  4642. },
  4643. {
  4644. "__type__": "cc.Node",
  4645. "_name": "New Label",
  4646. "_objFlags": 0,
  4647. "_parent": {
  4648. "__id__": 93
  4649. },
  4650. "_children": [],
  4651. "_active": true,
  4652. "_components": [
  4653. {
  4654. "__id__": 95
  4655. }
  4656. ],
  4657. "_prefab": null,
  4658. "_opacity": 255,
  4659. "_color": {
  4660. "__type__": "cc.Color",
  4661. "r": 40,
  4662. "g": 40,
  4663. "b": 40,
  4664. "a": 255
  4665. },
  4666. "_contentSize": {
  4667. "__type__": "cc.Size",
  4668. "width": 192.7,
  4669. "height": 76
  4670. },
  4671. "_anchorPoint": {
  4672. "__type__": "cc.Vec2",
  4673. "x": 0.5,
  4674. "y": 0.5
  4675. },
  4676. "_trs": {
  4677. "__type__": "TypedArray",
  4678. "ctor": "Float64Array",
  4679. "array": [
  4680. 118.1,
  4681. 138.2,
  4682. 0,
  4683. 0,
  4684. 0,
  4685. 0,
  4686. 1,
  4687. 1,
  4688. 1,
  4689. 1
  4690. ]
  4691. },
  4692. "_eulerAngles": {
  4693. "__type__": "cc.Vec3",
  4694. "x": 0,
  4695. "y": 0,
  4696. "z": 0
  4697. },
  4698. "_skewX": 0,
  4699. "_skewY": 0,
  4700. "_is3DNode": false,
  4701. "_groupIndex": 0,
  4702. "groupIndex": 0,
  4703. "_id": "0cho4aMoNBN61iAzYbw3HK"
  4704. },
  4705. {
  4706. "__type__": "cc.Label",
  4707. "_name": "",
  4708. "_objFlags": 0,
  4709. "node": {
  4710. "__id__": 94
  4711. },
  4712. "_enabled": true,
  4713. "_materials": [
  4714. {
  4715. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4716. }
  4717. ],
  4718. "_srcBlendFactor": 770,
  4719. "_dstBlendFactor": 771,
  4720. "_string": "长风破浪会有时,直挂云帆济沧海",
  4721. "_N$string": "长风破浪会有时,直挂云帆济沧海",
  4722. "_fontSize": 30,
  4723. "_lineHeight": 40,
  4724. "_enableWrapText": true,
  4725. "_N$file": null,
  4726. "_isSystemFontUsed": true,
  4727. "_spacingX": 0,
  4728. "_batchAsBitmap": false,
  4729. "_styleFlags": 0,
  4730. "_underlineHeight": 0,
  4731. "_N$horizontalAlign": 0,
  4732. "_N$verticalAlign": 1,
  4733. "_N$fontFamily": "Arial",
  4734. "_N$overflow": 2,
  4735. "_N$cacheMode": 0,
  4736. "_id": "bdvFu8bQFHp7Q7vz69733s"
  4737. },
  4738. {
  4739. "__type__": "cc.Sprite",
  4740. "_name": "",
  4741. "_objFlags": 0,
  4742. "node": {
  4743. "__id__": 93
  4744. },
  4745. "_enabled": true,
  4746. "_materials": [
  4747. {
  4748. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4749. }
  4750. ],
  4751. "_srcBlendFactor": 770,
  4752. "_dstBlendFactor": 771,
  4753. "_spriteFrame": {
  4754. "__uuid__": "46a8fa4a-2c94-47d4-83f3-8d11cf49bd4a"
  4755. },
  4756. "_type": 0,
  4757. "_sizeMode": 1,
  4758. "_fillType": 0,
  4759. "_fillCenter": {
  4760. "__type__": "cc.Vec2",
  4761. "x": 0,
  4762. "y": 0
  4763. },
  4764. "_fillStart": 0,
  4765. "_fillRange": 0,
  4766. "_isTrimmedMode": true,
  4767. "_atlas": null,
  4768. "_id": "cdFv9wHoNBw5JbkgfdxapG"
  4769. },
  4770. {
  4771. "__type__": "25720Je1mZOOb7eOx8qoRZt",
  4772. "_name": "",
  4773. "_objFlags": 0,
  4774. "node": {
  4775. "__id__": 93
  4776. },
  4777. "_enabled": true,
  4778. "label": {
  4779. "__id__": 95
  4780. },
  4781. "_id": "87MFTzRhNO94+4MbX/rtpT"
  4782. },
  4783. {
  4784. "__type__": "cc.Node",
  4785. "_name": "back",
  4786. "_objFlags": 0,
  4787. "_parent": {
  4788. "__id__": 36
  4789. },
  4790. "_children": [],
  4791. "_active": true,
  4792. "_components": [
  4793. {
  4794. "__id__": 99
  4795. },
  4796. {
  4797. "__id__": 101
  4798. }
  4799. ],
  4800. "_prefab": null,
  4801. "_opacity": 255,
  4802. "_color": {
  4803. "__type__": "cc.Color",
  4804. "r": 255,
  4805. "g": 255,
  4806. "b": 255,
  4807. "a": 255
  4808. },
  4809. "_contentSize": {
  4810. "__type__": "cc.Size",
  4811. "width": 54,
  4812. "height": 54
  4813. },
  4814. "_anchorPoint": {
  4815. "__type__": "cc.Vec2",
  4816. "x": 0.5,
  4817. "y": 0.5
  4818. },
  4819. "_trs": {
  4820. "__type__": "TypedArray",
  4821. "ctor": "Float64Array",
  4822. "array": [
  4823. -312,
  4824. 588,
  4825. 0,
  4826. 0,
  4827. 0,
  4828. 0,
  4829. 1,
  4830. 1,
  4831. 1,
  4832. 1
  4833. ]
  4834. },
  4835. "_eulerAngles": {
  4836. "__type__": "cc.Vec3",
  4837. "x": 0,
  4838. "y": 0,
  4839. "z": 0
  4840. },
  4841. "_skewX": 0,
  4842. "_skewY": 0,
  4843. "_is3DNode": false,
  4844. "_groupIndex": 0,
  4845. "groupIndex": 0,
  4846. "_id": "5fpV9TjG9AOY92HCdXUSqf"
  4847. },
  4848. {
  4849. "__type__": "cc.Button",
  4850. "_name": "",
  4851. "_objFlags": 0,
  4852. "node": {
  4853. "__id__": 98
  4854. },
  4855. "_enabled": true,
  4856. "_normalMaterial": null,
  4857. "_grayMaterial": null,
  4858. "duration": 0.1,
  4859. "zoomScale": 1.2,
  4860. "clickEvents": [
  4861. {
  4862. "__id__": 100
  4863. }
  4864. ],
  4865. "_N$interactable": true,
  4866. "_N$enableAutoGrayEffect": false,
  4867. "_N$transition": 0,
  4868. "transition": 0,
  4869. "_N$normalColor": {
  4870. "__type__": "cc.Color",
  4871. "r": 214,
  4872. "g": 214,
  4873. "b": 214,
  4874. "a": 255
  4875. },
  4876. "_N$pressedColor": {
  4877. "__type__": "cc.Color",
  4878. "r": 211,
  4879. "g": 211,
  4880. "b": 211,
  4881. "a": 255
  4882. },
  4883. "pressedColor": {
  4884. "__type__": "cc.Color",
  4885. "r": 211,
  4886. "g": 211,
  4887. "b": 211,
  4888. "a": 255
  4889. },
  4890. "_N$hoverColor": {
  4891. "__type__": "cc.Color",
  4892. "r": 255,
  4893. "g": 255,
  4894. "b": 255,
  4895. "a": 255
  4896. },
  4897. "hoverColor": {
  4898. "__type__": "cc.Color",
  4899. "r": 255,
  4900. "g": 255,
  4901. "b": 255,
  4902. "a": 255
  4903. },
  4904. "_N$disabledColor": {
  4905. "__type__": "cc.Color",
  4906. "r": 124,
  4907. "g": 124,
  4908. "b": 124,
  4909. "a": 255
  4910. },
  4911. "_N$normalSprite": null,
  4912. "_N$pressedSprite": null,
  4913. "pressedSprite": null,
  4914. "_N$hoverSprite": null,
  4915. "hoverSprite": null,
  4916. "_N$disabledSprite": null,
  4917. "_N$target": null,
  4918. "_id": "77+UpX6fZBbpEZUnvWYn3P"
  4919. },
  4920. {
  4921. "__type__": "cc.ClickEvent",
  4922. "target": {
  4923. "__id__": 18
  4924. },
  4925. "component": "",
  4926. "_componentId": "feefcb/VXtFp4L+Zqa6CrBZ",
  4927. "handler": "lateStart",
  4928. "customEventData": ""
  4929. },
  4930. {
  4931. "__type__": "cc.Sprite",
  4932. "_name": "",
  4933. "_objFlags": 0,
  4934. "node": {
  4935. "__id__": 98
  4936. },
  4937. "_enabled": true,
  4938. "_materials": [
  4939. {
  4940. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4941. }
  4942. ],
  4943. "_srcBlendFactor": 770,
  4944. "_dstBlendFactor": 771,
  4945. "_spriteFrame": {
  4946. "__uuid__": "fa4c1170-9b3a-49de-9f3c-a2accdbb6fbe"
  4947. },
  4948. "_type": 0,
  4949. "_sizeMode": 1,
  4950. "_fillType": 0,
  4951. "_fillCenter": {
  4952. "__type__": "cc.Vec2",
  4953. "x": 0,
  4954. "y": 0
  4955. },
  4956. "_fillStart": 0,
  4957. "_fillRange": 0,
  4958. "_isTrimmedMode": true,
  4959. "_atlas": null,
  4960. "_id": "abHkHVM/FGaKR2UMUFw3Df"
  4961. },
  4962. {
  4963. "__type__": "72f7acBwR1I474pejqfLV0j",
  4964. "_name": "",
  4965. "_objFlags": 0,
  4966. "node": {
  4967. "__id__": 36
  4968. },
  4969. "_enabled": true,
  4970. "scorePrefab": {
  4971. "__uuid__": "42e7df52-abef-4981-9ae6-e5ef6de0e785"
  4972. },
  4973. "scoreParticlePrefab": {
  4974. "__uuid__": "7494235a-147e-423e-915a-96aa1d1390e4"
  4975. },
  4976. "mainScoreLabel": {
  4977. "__id__": 88
  4978. },
  4979. "successDialog": {
  4980. "__id__": 103
  4981. },
  4982. "characterMgr": {
  4983. "__id__": 258
  4984. },
  4985. "failDialog": {
  4986. "__id__": 109
  4987. },
  4988. "multPropPrefab": {
  4989. "__uuid__": "be76230a-3791-46c2-8478-f6ef7be24e84"
  4990. },
  4991. "chainSpriteFrameArr": [
  4992. {
  4993. "__uuid__": "8a8ec7d0-d6d3-449e-adb9-ac58425ff750"
  4994. },
  4995. {
  4996. "__uuid__": "511ca3c6-6ead-4877-8d6c-5e83b3900e72"
  4997. },
  4998. {
  4999. "__uuid__": "52d79ee1-2087-4b81-9200-020189158cb7"
  5000. },
  5001. {
  5002. "__uuid__": "cb492436-20b4-4861-8deb-07e075838102"
  5003. }
  5004. ],
  5005. "stepAniLabel": {
  5006. "__id__": 92
  5007. },
  5008. "tipBox": {
  5009. "__id__": 97
  5010. },
  5011. "_id": "c4G/8mhk5NfJaO7Fifmcfl"
  5012. },
  5013. {
  5014. "__type__": "f784aHXFKRDvbVWsOUPoQIK",
  5015. "_name": "",
  5016. "_objFlags": 0,
  5017. "node": {
  5018. "__id__": 104
  5019. },
  5020. "_enabled": true,
  5021. "nameLabelBefore": {
  5022. "__id__": 253
  5023. },
  5024. "nameLabelNow": {
  5025. "__id__": 251
  5026. },
  5027. "stepLabel": {
  5028. "__id__": 239
  5029. },
  5030. "scoreLabel": {
  5031. "__id__": 256
  5032. },
  5033. "_id": "7az7DiTzFOnYMXS/19KjQg"
  5034. },
  5035. {
  5036. "__type__": "cc.Node",
  5037. "_name": "3successDialog",
  5038. "_objFlags": 0,
  5039. "_parent": {
  5040. "__id__": 105
  5041. },
  5042. "_children": [
  5043. {
  5044. "__id__": 223
  5045. },
  5046. {
  5047. "__id__": 225
  5048. },
  5049. {
  5050. "__id__": 227
  5051. },
  5052. {
  5053. "__id__": 229
  5054. },
  5055. {
  5056. "__id__": 231
  5057. },
  5058. {
  5059. "__id__": 233
  5060. },
  5061. {
  5062. "__id__": 237
  5063. },
  5064. {
  5065. "__id__": 244
  5066. },
  5067. {
  5068. "__id__": 246
  5069. },
  5070. {
  5071. "__id__": 248
  5072. },
  5073. {
  5074. "__id__": 250
  5075. },
  5076. {
  5077. "__id__": 252
  5078. },
  5079. {
  5080. "__id__": 254
  5081. }
  5082. ],
  5083. "_active": false,
  5084. "_components": [
  5085. {
  5086. "__id__": 103
  5087. }
  5088. ],
  5089. "_prefab": null,
  5090. "_opacity": 255,
  5091. "_color": {
  5092. "__type__": "cc.Color",
  5093. "r": 255,
  5094. "g": 255,
  5095. "b": 255,
  5096. "a": 255
  5097. },
  5098. "_contentSize": {
  5099. "__type__": "cc.Size",
  5100. "width": 0,
  5101. "height": 40
  5102. },
  5103. "_anchorPoint": {
  5104. "__type__": "cc.Vec2",
  5105. "x": 0.5,
  5106. "y": 0.5
  5107. },
  5108. "_trs": {
  5109. "__type__": "TypedArray",
  5110. "ctor": "Float64Array",
  5111. "array": [
  5112. 0,
  5113. 0,
  5114. 0,
  5115. 0,
  5116. 0,
  5117. 0,
  5118. 1,
  5119. 1,
  5120. 1,
  5121. 1
  5122. ]
  5123. },
  5124. "_eulerAngles": {
  5125. "__type__": "cc.Vec3",
  5126. "x": 0,
  5127. "y": 0,
  5128. "z": 0
  5129. },
  5130. "_skewX": 0,
  5131. "_skewY": 0,
  5132. "_is3DNode": false,
  5133. "_groupIndex": 0,
  5134. "groupIndex": 0,
  5135. "_id": "9e419hHd1GeKO8EOdaUuHD"
  5136. },
  5137. {
  5138. "__type__": "cc.Node",
  5139. "_name": "2Dialog",
  5140. "_objFlags": 0,
  5141. "_parent": {
  5142. "__id__": 2
  5143. },
  5144. "_children": [
  5145. {
  5146. "__id__": 106
  5147. },
  5148. {
  5149. "__id__": 104
  5150. },
  5151. {
  5152. "__id__": 109
  5153. },
  5154. {
  5155. "__id__": 189
  5156. }
  5157. ],
  5158. "_active": true,
  5159. "_components": [],
  5160. "_prefab": null,
  5161. "_opacity": 255,
  5162. "_color": {
  5163. "__type__": "cc.Color",
  5164. "r": 255,
  5165. "g": 255,
  5166. "b": 255,
  5167. "a": 255
  5168. },
  5169. "_contentSize": {
  5170. "__type__": "cc.Size",
  5171. "width": 750,
  5172. "height": 1336
  5173. },
  5174. "_anchorPoint": {
  5175. "__type__": "cc.Vec2",
  5176. "x": 0.5,
  5177. "y": 0.5
  5178. },
  5179. "_trs": {
  5180. "__type__": "TypedArray",
  5181. "ctor": "Float64Array",
  5182. "array": [
  5183. 0,
  5184. 0,
  5185. 0,
  5186. 0,
  5187. 0,
  5188. 0,
  5189. 1,
  5190. 1,
  5191. 1,
  5192. 1
  5193. ]
  5194. },
  5195. "_eulerAngles": {
  5196. "__type__": "cc.Vec3",
  5197. "x": 0,
  5198. "y": 0,
  5199. "z": 0
  5200. },
  5201. "_skewX": 0,
  5202. "_skewY": 0,
  5203. "_is3DNode": false,
  5204. "_groupIndex": 0,
  5205. "groupIndex": 0,
  5206. "_id": "30lHY8g/5L2oSVCNX0aWMx"
  5207. },
  5208. {
  5209. "__type__": "cc.Node",
  5210. "_name": "bg",
  5211. "_objFlags": 0,
  5212. "_parent": {
  5213. "__id__": 105
  5214. },
  5215. "_children": [],
  5216. "_active": true,
  5217. "_components": [
  5218. {
  5219. "__id__": 107
  5220. },
  5221. {
  5222. "__id__": 108
  5223. }
  5224. ],
  5225. "_prefab": null,
  5226. "_opacity": 113.47500000000001,
  5227. "_color": {
  5228. "__type__": "cc.Color",
  5229. "r": 0,
  5230. "g": 0,
  5231. "b": 0,
  5232. "a": 255
  5233. },
  5234. "_contentSize": {
  5235. "__type__": "cc.Size",
  5236. "width": 3000,
  5237. "height": 5000
  5238. },
  5239. "_anchorPoint": {
  5240. "__type__": "cc.Vec2",
  5241. "x": 0.5,
  5242. "y": 0.5
  5243. },
  5244. "_trs": {
  5245. "__type__": "TypedArray",
  5246. "ctor": "Float64Array",
  5247. "array": [
  5248. 0,
  5249. 0,
  5250. 0,
  5251. 0,
  5252. 0,
  5253. 0,
  5254. 1,
  5255. 1,
  5256. 1,
  5257. 1
  5258. ]
  5259. },
  5260. "_eulerAngles": {
  5261. "__type__": "cc.Vec3",
  5262. "x": 0,
  5263. "y": 0,
  5264. "z": 0
  5265. },
  5266. "_skewX": 0,
  5267. "_skewY": 0,
  5268. "_is3DNode": false,
  5269. "_groupIndex": 0,
  5270. "groupIndex": 0,
  5271. "_id": "1eYarEegNHt5waeaQ1p8hI"
  5272. },
  5273. {
  5274. "__type__": "cc.Sprite",
  5275. "_name": "",
  5276. "_objFlags": 0,
  5277. "node": {
  5278. "__id__": 106
  5279. },
  5280. "_enabled": true,
  5281. "_materials": [
  5282. {
  5283. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5284. }
  5285. ],
  5286. "_srcBlendFactor": 770,
  5287. "_dstBlendFactor": 771,
  5288. "_spriteFrame": {
  5289. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  5290. },
  5291. "_type": 0,
  5292. "_sizeMode": 0,
  5293. "_fillType": 0,
  5294. "_fillCenter": {
  5295. "__type__": "cc.Vec2",
  5296. "x": 0,
  5297. "y": 0
  5298. },
  5299. "_fillStart": 0,
  5300. "_fillRange": 0,
  5301. "_isTrimmedMode": true,
  5302. "_atlas": null,
  5303. "_id": "59ybDCxJRNSqrT7ze3co/J"
  5304. },
  5305. {
  5306. "__type__": "cc.BlockInputEvents",
  5307. "_name": "",
  5308. "_objFlags": 0,
  5309. "node": {
  5310. "__id__": 106
  5311. },
  5312. "_enabled": true,
  5313. "_id": "55nCvFczZO5ox0EHp/mnv9"
  5314. },
  5315. {
  5316. "__type__": "cc.Node",
  5317. "_name": "4failDialog",
  5318. "_objFlags": 0,
  5319. "_parent": {
  5320. "__id__": 105
  5321. },
  5322. "_children": [
  5323. {
  5324. "__id__": 110
  5325. },
  5326. {
  5327. "__id__": 112
  5328. },
  5329. {
  5330. "__id__": 114
  5331. },
  5332. {
  5333. "__id__": 120
  5334. },
  5335. {
  5336. "__id__": 161
  5337. },
  5338. {
  5339. "__id__": 165
  5340. },
  5341. {
  5342. "__id__": 180
  5343. },
  5344. {
  5345. "__id__": 185
  5346. }
  5347. ],
  5348. "_active": false,
  5349. "_components": [],
  5350. "_prefab": null,
  5351. "_opacity": 255,
  5352. "_color": {
  5353. "__type__": "cc.Color",
  5354. "r": 255,
  5355. "g": 255,
  5356. "b": 255,
  5357. "a": 255
  5358. },
  5359. "_contentSize": {
  5360. "__type__": "cc.Size",
  5361. "width": 0,
  5362. "height": 0
  5363. },
  5364. "_anchorPoint": {
  5365. "__type__": "cc.Vec2",
  5366. "x": 0.5,
  5367. "y": 0.5
  5368. },
  5369. "_trs": {
  5370. "__type__": "TypedArray",
  5371. "ctor": "Float64Array",
  5372. "array": [
  5373. 0,
  5374. 0,
  5375. 0,
  5376. 0,
  5377. 0,
  5378. 0,
  5379. 1,
  5380. 1,
  5381. 1,
  5382. 1
  5383. ]
  5384. },
  5385. "_eulerAngles": {
  5386. "__type__": "cc.Vec3",
  5387. "x": 0,
  5388. "y": 0,
  5389. "z": 0
  5390. },
  5391. "_skewX": 0,
  5392. "_skewY": 0,
  5393. "_is3DNode": false,
  5394. "_groupIndex": 0,
  5395. "groupIndex": 0,
  5396. "_id": "84siK6o61Kb5dIPqHnvSii"
  5397. },
  5398. {
  5399. "__type__": "cc.Node",
  5400. "_name": "bg",
  5401. "_objFlags": 0,
  5402. "_parent": {
  5403. "__id__": 109
  5404. },
  5405. "_children": [],
  5406. "_active": true,
  5407. "_components": [
  5408. {
  5409. "__id__": 111
  5410. }
  5411. ],
  5412. "_prefab": null,
  5413. "_opacity": 255,
  5414. "_color": {
  5415. "__type__": "cc.Color",
  5416. "r": 255,
  5417. "g": 255,
  5418. "b": 255,
  5419. "a": 255
  5420. },
  5421. "_contentSize": {
  5422. "__type__": "cc.Size",
  5423. "width": 500,
  5424. "height": 596
  5425. },
  5426. "_anchorPoint": {
  5427. "__type__": "cc.Vec2",
  5428. "x": 0.5,
  5429. "y": 0.5
  5430. },
  5431. "_trs": {
  5432. "__type__": "TypedArray",
  5433. "ctor": "Float64Array",
  5434. "array": [
  5435. 0,
  5436. -16,
  5437. 0,
  5438. 0,
  5439. 0,
  5440. 0,
  5441. 1,
  5442. 1,
  5443. 1,
  5444. 1
  5445. ]
  5446. },
  5447. "_eulerAngles": {
  5448. "__type__": "cc.Vec3",
  5449. "x": 0,
  5450. "y": 0,
  5451. "z": 0
  5452. },
  5453. "_skewX": 0,
  5454. "_skewY": 0,
  5455. "_is3DNode": false,
  5456. "_groupIndex": 0,
  5457. "groupIndex": 0,
  5458. "_id": "63mrwXWCZBBZeL49jEtdPN"
  5459. },
  5460. {
  5461. "__type__": "cc.Sprite",
  5462. "_name": "",
  5463. "_objFlags": 0,
  5464. "node": {
  5465. "__id__": 110
  5466. },
  5467. "_enabled": true,
  5468. "_materials": [],
  5469. "_srcBlendFactor": 770,
  5470. "_dstBlendFactor": 771,
  5471. "_spriteFrame": {
  5472. "__uuid__": "c6f13935-51e6-471e-831f-3e9689a493f7"
  5473. },
  5474. "_type": 1,
  5475. "_sizeMode": 0,
  5476. "_fillType": 0,
  5477. "_fillCenter": {
  5478. "__type__": "cc.Vec2",
  5479. "x": 0,
  5480. "y": 0
  5481. },
  5482. "_fillStart": 0,
  5483. "_fillRange": 0,
  5484. "_isTrimmedMode": true,
  5485. "_atlas": null,
  5486. "_id": "3e+/2O28pNu7SDYessWjFZ"
  5487. },
  5488. {
  5489. "__type__": "cc.Node",
  5490. "_name": "title",
  5491. "_objFlags": 0,
  5492. "_parent": {
  5493. "__id__": 109
  5494. },
  5495. "_children": [],
  5496. "_active": true,
  5497. "_components": [
  5498. {
  5499. "__id__": 113
  5500. }
  5501. ],
  5502. "_prefab": null,
  5503. "_opacity": 255,
  5504. "_color": {
  5505. "__type__": "cc.Color",
  5506. "r": 255,
  5507. "g": 255,
  5508. "b": 255,
  5509. "a": 255
  5510. },
  5511. "_contentSize": {
  5512. "__type__": "cc.Size",
  5513. "width": 158,
  5514. "height": 40
  5515. },
  5516. "_anchorPoint": {
  5517. "__type__": "cc.Vec2",
  5518. "x": 0.5,
  5519. "y": 0.5
  5520. },
  5521. "_trs": {
  5522. "__type__": "TypedArray",
  5523. "ctor": "Float64Array",
  5524. "array": [
  5525. 0,
  5526. 234,
  5527. 0,
  5528. 0,
  5529. 0,
  5530. 0,
  5531. 1,
  5532. 1,
  5533. 1,
  5534. 1
  5535. ]
  5536. },
  5537. "_eulerAngles": {
  5538. "__type__": "cc.Vec3",
  5539. "x": 0,
  5540. "y": 0,
  5541. "z": 0
  5542. },
  5543. "_skewX": 0,
  5544. "_skewY": 0,
  5545. "_is3DNode": false,
  5546. "_groupIndex": 0,
  5547. "groupIndex": 0,
  5548. "_id": "3fleWfMalDW6pexMzjrWki"
  5549. },
  5550. {
  5551. "__type__": "cc.Sprite",
  5552. "_name": "",
  5553. "_objFlags": 0,
  5554. "node": {
  5555. "__id__": 112
  5556. },
  5557. "_enabled": true,
  5558. "_materials": [],
  5559. "_srcBlendFactor": 770,
  5560. "_dstBlendFactor": 771,
  5561. "_spriteFrame": {
  5562. "__uuid__": "fdffba35-959b-4e03-8e3e-b9b973282106"
  5563. },
  5564. "_type": 0,
  5565. "_sizeMode": 1,
  5566. "_fillType": 0,
  5567. "_fillCenter": {
  5568. "__type__": "cc.Vec2",
  5569. "x": 0,
  5570. "y": 0
  5571. },
  5572. "_fillStart": 0,
  5573. "_fillRange": 0,
  5574. "_isTrimmedMode": true,
  5575. "_atlas": null,
  5576. "_id": "ebb7DFlphDT6EjRx7MYcHt"
  5577. },
  5578. {
  5579. "__type__": "cc.Node",
  5580. "_name": "New Button",
  5581. "_objFlags": 0,
  5582. "_parent": {
  5583. "__id__": 109
  5584. },
  5585. "_children": [
  5586. {
  5587. "__id__": 115
  5588. }
  5589. ],
  5590. "_active": true,
  5591. "_components": [
  5592. {
  5593. "__id__": 117
  5594. },
  5595. {
  5596. "__id__": 118
  5597. }
  5598. ],
  5599. "_prefab": null,
  5600. "_opacity": 255,
  5601. "_color": {
  5602. "__type__": "cc.Color",
  5603. "r": 255,
  5604. "g": 255,
  5605. "b": 255,
  5606. "a": 255
  5607. },
  5608. "_contentSize": {
  5609. "__type__": "cc.Size",
  5610. "width": 214,
  5611. "height": 76
  5612. },
  5613. "_anchorPoint": {
  5614. "__type__": "cc.Vec2",
  5615. "x": 0.5,
  5616. "y": 0.5
  5617. },
  5618. "_trs": {
  5619. "__type__": "TypedArray",
  5620. "ctor": "Float64Array",
  5621. "array": [
  5622. -120,
  5623. -240,
  5624. 0,
  5625. 0,
  5626. 0,
  5627. 0,
  5628. 1,
  5629. 1,
  5630. 1,
  5631. 1
  5632. ]
  5633. },
  5634. "_eulerAngles": {
  5635. "__type__": "cc.Vec3",
  5636. "x": 0,
  5637. "y": 0,
  5638. "z": 0
  5639. },
  5640. "_skewX": 0,
  5641. "_skewY": 0,
  5642. "_is3DNode": false,
  5643. "_groupIndex": 0,
  5644. "groupIndex": 0,
  5645. "_id": "b1sJ+WishPfKT6SmopXiPE"
  5646. },
  5647. {
  5648. "__type__": "cc.Node",
  5649. "_name": "New Sprite",
  5650. "_objFlags": 0,
  5651. "_parent": {
  5652. "__id__": 114
  5653. },
  5654. "_children": [],
  5655. "_active": true,
  5656. "_components": [
  5657. {
  5658. "__id__": 116
  5659. }
  5660. ],
  5661. "_prefab": null,
  5662. "_opacity": 255,
  5663. "_color": {
  5664. "__type__": "cc.Color",
  5665. "r": 255,
  5666. "g": 255,
  5667. "b": 255,
  5668. "a": 255
  5669. },
  5670. "_contentSize": {
  5671. "__type__": "cc.Size",
  5672. "width": 223,
  5673. "height": 76
  5674. },
  5675. "_anchorPoint": {
  5676. "__type__": "cc.Vec2",
  5677. "x": 0.5,
  5678. "y": 0.5
  5679. },
  5680. "_trs": {
  5681. "__type__": "TypedArray",
  5682. "ctor": "Float64Array",
  5683. "array": [
  5684. 12,
  5685. 0,
  5686. 0,
  5687. 0,
  5688. 0,
  5689. 0,
  5690. 1,
  5691. 0.9,
  5692. 0.9,
  5693. 1
  5694. ]
  5695. },
  5696. "_eulerAngles": {
  5697. "__type__": "cc.Vec3",
  5698. "x": 0,
  5699. "y": 0,
  5700. "z": 0
  5701. },
  5702. "_skewX": 0,
  5703. "_skewY": 0,
  5704. "_is3DNode": false,
  5705. "_groupIndex": 0,
  5706. "groupIndex": 0,
  5707. "_id": "b6bJ6Xu8RBbZfDwVeS64xh"
  5708. },
  5709. {
  5710. "__type__": "cc.Sprite",
  5711. "_name": "",
  5712. "_objFlags": 0,
  5713. "node": {
  5714. "__id__": 115
  5715. },
  5716. "_enabled": true,
  5717. "_materials": [],
  5718. "_srcBlendFactor": 770,
  5719. "_dstBlendFactor": 771,
  5720. "_spriteFrame": {
  5721. "__uuid__": "5ee173e5-cf3d-4282-b2a5-668617ecb8d9"
  5722. },
  5723. "_type": 0,
  5724. "_sizeMode": 1,
  5725. "_fillType": 0,
  5726. "_fillCenter": {
  5727. "__type__": "cc.Vec2",
  5728. "x": 0,
  5729. "y": 0
  5730. },
  5731. "_fillStart": 0,
  5732. "_fillRange": 0,
  5733. "_isTrimmedMode": true,
  5734. "_atlas": null,
  5735. "_id": "87LzGiBQ1HYKqU/xicMIGs"
  5736. },
  5737. {
  5738. "__type__": "cc.Sprite",
  5739. "_name": "",
  5740. "_objFlags": 0,
  5741. "node": {
  5742. "__id__": 114
  5743. },
  5744. "_enabled": true,
  5745. "_materials": [],
  5746. "_srcBlendFactor": 770,
  5747. "_dstBlendFactor": 771,
  5748. "_spriteFrame": null,
  5749. "_type": 1,
  5750. "_sizeMode": 0,
  5751. "_fillType": 0,
  5752. "_fillCenter": {
  5753. "__type__": "cc.Vec2",
  5754. "x": 0,
  5755. "y": 0
  5756. },
  5757. "_fillStart": 0,
  5758. "_fillRange": 0,
  5759. "_isTrimmedMode": true,
  5760. "_atlas": null,
  5761. "_id": "e3RsyO3YFG/bE8LI1suf3Z"
  5762. },
  5763. {
  5764. "__type__": "cc.Button",
  5765. "_name": "",
  5766. "_objFlags": 0,
  5767. "node": {
  5768. "__id__": 114
  5769. },
  5770. "_enabled": true,
  5771. "_normalMaterial": null,
  5772. "_grayMaterial": null,
  5773. "duration": 0.1,
  5774. "zoomScale": 1.2,
  5775. "clickEvents": [
  5776. {
  5777. "__id__": 119
  5778. }
  5779. ],
  5780. "_N$interactable": true,
  5781. "_N$enableAutoGrayEffect": false,
  5782. "_N$transition": 0,
  5783. "transition": 0,
  5784. "_N$normalColor": {
  5785. "__type__": "cc.Color",
  5786. "r": 255,
  5787. "g": 255,
  5788. "b": 255,
  5789. "a": 255
  5790. },
  5791. "_N$pressedColor": {
  5792. "__type__": "cc.Color",
  5793. "r": 255,
  5794. "g": 255,
  5795. "b": 255,
  5796. "a": 255
  5797. },
  5798. "pressedColor": {
  5799. "__type__": "cc.Color",
  5800. "r": 255,
  5801. "g": 255,
  5802. "b": 255,
  5803. "a": 255
  5804. },
  5805. "_N$hoverColor": {
  5806. "__type__": "cc.Color",
  5807. "r": 255,
  5808. "g": 255,
  5809. "b": 255,
  5810. "a": 255
  5811. },
  5812. "hoverColor": {
  5813. "__type__": "cc.Color",
  5814. "r": 255,
  5815. "g": 255,
  5816. "b": 255,
  5817. "a": 255
  5818. },
  5819. "_N$disabledColor": {
  5820. "__type__": "cc.Color",
  5821. "r": 255,
  5822. "g": 255,
  5823. "b": 255,
  5824. "a": 255
  5825. },
  5826. "_N$normalSprite": null,
  5827. "_N$pressedSprite": null,
  5828. "pressedSprite": null,
  5829. "_N$hoverSprite": null,
  5830. "hoverSprite": null,
  5831. "_N$disabledSprite": null,
  5832. "_N$target": null,
  5833. "_id": "87EjlpwtpAY7hZFWmt9Wq7"
  5834. },
  5835. {
  5836. "__type__": "cc.ClickEvent",
  5837. "target": {
  5838. "__id__": 36
  5839. },
  5840. "component": "",
  5841. "_componentId": "47c77yOeKpPiJVINXipHohs",
  5842. "handler": "restart",
  5843. "customEventData": ""
  5844. },
  5845. {
  5846. "__type__": "cc.Node",
  5847. "_name": "New Button",
  5848. "_objFlags": 0,
  5849. "_parent": {
  5850. "__id__": 109
  5851. },
  5852. "_children": [
  5853. {
  5854. "__id__": 121
  5855. }
  5856. ],
  5857. "_active": true,
  5858. "_components": [
  5859. {
  5860. "__id__": 123
  5861. },
  5862. {
  5863. "__id__": 124
  5864. }
  5865. ],
  5866. "_prefab": null,
  5867. "_opacity": 255,
  5868. "_color": {
  5869. "__type__": "cc.Color",
  5870. "r": 255,
  5871. "g": 255,
  5872. "b": 255,
  5873. "a": 255
  5874. },
  5875. "_contentSize": {
  5876. "__type__": "cc.Size",
  5877. "width": 170,
  5878. "height": 76
  5879. },
  5880. "_anchorPoint": {
  5881. "__type__": "cc.Vec2",
  5882. "x": 0.5,
  5883. "y": 0.5
  5884. },
  5885. "_trs": {
  5886. "__type__": "TypedArray",
  5887. "ctor": "Float64Array",
  5888. "array": [
  5889. 114,
  5890. -240,
  5891. 0,
  5892. 0,
  5893. 0,
  5894. 0,
  5895. 1,
  5896. 1,
  5897. 1,
  5898. 1
  5899. ]
  5900. },
  5901. "_eulerAngles": {
  5902. "__type__": "cc.Vec3",
  5903. "x": 0,
  5904. "y": 0,
  5905. "z": 0
  5906. },
  5907. "_skewX": 0,
  5908. "_skewY": 0,
  5909. "_is3DNode": false,
  5910. "_groupIndex": 0,
  5911. "groupIndex": 0,
  5912. "_id": "d7j3lsMuBMmbKDR/WHge4C"
  5913. },
  5914. {
  5915. "__type__": "cc.Node",
  5916. "_name": "New Sprite",
  5917. "_objFlags": 0,
  5918. "_parent": {
  5919. "__id__": 120
  5920. },
  5921. "_children": [],
  5922. "_active": true,
  5923. "_components": [
  5924. {
  5925. "__id__": 122
  5926. }
  5927. ],
  5928. "_prefab": null,
  5929. "_opacity": 255,
  5930. "_color": {
  5931. "__type__": "cc.Color",
  5932. "r": 255,
  5933. "g": 255,
  5934. "b": 255,
  5935. "a": 255
  5936. },
  5937. "_contentSize": {
  5938. "__type__": "cc.Size",
  5939. "width": 223,
  5940. "height": 76
  5941. },
  5942. "_anchorPoint": {
  5943. "__type__": "cc.Vec2",
  5944. "x": 0.5,
  5945. "y": 0.5
  5946. },
  5947. "_trs": {
  5948. "__type__": "TypedArray",
  5949. "ctor": "Float64Array",
  5950. "array": [
  5951. -2,
  5952. 0,
  5953. 0,
  5954. 0,
  5955. 0,
  5956. 0,
  5957. 1,
  5958. 0.9,
  5959. 0.9,
  5960. 1
  5961. ]
  5962. },
  5963. "_eulerAngles": {
  5964. "__type__": "cc.Vec3",
  5965. "x": 0,
  5966. "y": 0,
  5967. "z": 0
  5968. },
  5969. "_skewX": 0,
  5970. "_skewY": 0,
  5971. "_is3DNode": false,
  5972. "_groupIndex": 0,
  5973. "groupIndex": 0,
  5974. "_id": "36lC89P9NKTIpY3NowQ0Uy"
  5975. },
  5976. {
  5977. "__type__": "cc.Sprite",
  5978. "_name": "",
  5979. "_objFlags": 0,
  5980. "node": {
  5981. "__id__": 121
  5982. },
  5983. "_enabled": true,
  5984. "_materials": [],
  5985. "_srcBlendFactor": 770,
  5986. "_dstBlendFactor": 771,
  5987. "_spriteFrame": {
  5988. "__uuid__": "1c6d6256-e22a-47f3-9753-ea8a59ce2583"
  5989. },
  5990. "_type": 0,
  5991. "_sizeMode": 1,
  5992. "_fillType": 0,
  5993. "_fillCenter": {
  5994. "__type__": "cc.Vec2",
  5995. "x": 0,
  5996. "y": 0
  5997. },
  5998. "_fillStart": 0,
  5999. "_fillRange": 0,
  6000. "_isTrimmedMode": true,
  6001. "_atlas": null,
  6002. "_id": "416jSONSBPX6PKgQDN0wGM"
  6003. },
  6004. {
  6005. "__type__": "cc.Sprite",
  6006. "_name": "",
  6007. "_objFlags": 0,
  6008. "node": {
  6009. "__id__": 120
  6010. },
  6011. "_enabled": true,
  6012. "_materials": [],
  6013. "_srcBlendFactor": 770,
  6014. "_dstBlendFactor": 771,
  6015. "_spriteFrame": null,
  6016. "_type": 1,
  6017. "_sizeMode": 0,
  6018. "_fillType": 0,
  6019. "_fillCenter": {
  6020. "__type__": "cc.Vec2",
  6021. "x": 0,
  6022. "y": 0
  6023. },
  6024. "_fillStart": 0,
  6025. "_fillRange": 0,
  6026. "_isTrimmedMode": true,
  6027. "_atlas": null,
  6028. "_id": "3aAxAVZApHoJB10A4qC+J0"
  6029. },
  6030. {
  6031. "__type__": "cc.Button",
  6032. "_name": "",
  6033. "_objFlags": 0,
  6034. "node": {
  6035. "__id__": 120
  6036. },
  6037. "_enabled": true,
  6038. "_normalMaterial": null,
  6039. "_grayMaterial": null,
  6040. "duration": 0.1,
  6041. "zoomScale": 1.2,
  6042. "clickEvents": [
  6043. {
  6044. "__id__": 125
  6045. }
  6046. ],
  6047. "_N$interactable": true,
  6048. "_N$enableAutoGrayEffect": false,
  6049. "_N$transition": 0,
  6050. "transition": 0,
  6051. "_N$normalColor": {
  6052. "__type__": "cc.Color",
  6053. "r": 255,
  6054. "g": 255,
  6055. "b": 255,
  6056. "a": 255
  6057. },
  6058. "_N$pressedColor": {
  6059. "__type__": "cc.Color",
  6060. "r": 255,
  6061. "g": 255,
  6062. "b": 255,
  6063. "a": 255
  6064. },
  6065. "pressedColor": {
  6066. "__type__": "cc.Color",
  6067. "r": 255,
  6068. "g": 255,
  6069. "b": 255,
  6070. "a": 255
  6071. },
  6072. "_N$hoverColor": {
  6073. "__type__": "cc.Color",
  6074. "r": 255,
  6075. "g": 255,
  6076. "b": 255,
  6077. "a": 255
  6078. },
  6079. "hoverColor": {
  6080. "__type__": "cc.Color",
  6081. "r": 255,
  6082. "g": 255,
  6083. "b": 255,
  6084. "a": 255
  6085. },
  6086. "_N$disabledColor": {
  6087. "__type__": "cc.Color",
  6088. "r": 255,
  6089. "g": 255,
  6090. "b": 255,
  6091. "a": 255
  6092. },
  6093. "_N$normalSprite": null,
  6094. "_N$pressedSprite": null,
  6095. "pressedSprite": null,
  6096. "_N$hoverSprite": null,
  6097. "hoverSprite": null,
  6098. "_N$disabledSprite": null,
  6099. "_N$target": null,
  6100. "_id": "34yT2NQjxFLI/MK5FtA4W+"
  6101. },
  6102. {
  6103. "__type__": "cc.ClickEvent",
  6104. "target": {
  6105. "__id__": 126
  6106. },
  6107. "component": "",
  6108. "_componentId": "53b05czD4xGgZ8D0pLpUj9M",
  6109. "handler": "onShareButton",
  6110. "customEventData": ""
  6111. },
  6112. {
  6113. "__type__": "cc.Node",
  6114. "_name": "social",
  6115. "_objFlags": 0,
  6116. "_parent": {
  6117. "__id__": 1
  6118. },
  6119. "_children": [],
  6120. "_active": true,
  6121. "_components": [
  6122. {
  6123. "__id__": 127
  6124. }
  6125. ],
  6126. "_prefab": null,
  6127. "_opacity": 255,
  6128. "_color": {
  6129. "__type__": "cc.Color",
  6130. "r": 255,
  6131. "g": 255,
  6132. "b": 255,
  6133. "a": 255
  6134. },
  6135. "_contentSize": {
  6136. "__type__": "cc.Size",
  6137. "width": 0,
  6138. "height": 0
  6139. },
  6140. "_anchorPoint": {
  6141. "__type__": "cc.Vec2",
  6142. "x": 0.5,
  6143. "y": 0.5
  6144. },
  6145. "_trs": {
  6146. "__type__": "TypedArray",
  6147. "ctor": "Float64Array",
  6148. "array": [
  6149. 375,
  6150. 667,
  6151. 0,
  6152. 0,
  6153. 0,
  6154. 0,
  6155. 1,
  6156. 1,
  6157. 1,
  6158. 1
  6159. ]
  6160. },
  6161. "_eulerAngles": {
  6162. "__type__": "cc.Vec3",
  6163. "x": 0,
  6164. "y": 0,
  6165. "z": 0
  6166. },
  6167. "_skewX": 0,
  6168. "_skewY": 0,
  6169. "_is3DNode": false,
  6170. "_groupIndex": 0,
  6171. "groupIndex": 0,
  6172. "_id": "9fa7LOYWtDlJ+eM+gScL3G"
  6173. },
  6174. {
  6175. "__type__": "53b05czD4xGgZ8D0pLpUj9M",
  6176. "_name": "",
  6177. "_objFlags": 0,
  6178. "node": {
  6179. "__id__": 126
  6180. },
  6181. "_enabled": true,
  6182. "display": {
  6183. "__id__": 128
  6184. },
  6185. "groupDisplay": {
  6186. "__id__": 143
  6187. },
  6188. "_isShow": false,
  6189. "_id": "7ezZLDtfRBgL8IRMK7u6E2"
  6190. },
  6191. {
  6192. "__type__": "cc.Sprite",
  6193. "_name": "",
  6194. "_objFlags": 0,
  6195. "node": {
  6196. "__id__": 129
  6197. },
  6198. "_enabled": true,
  6199. "_materials": [
  6200. {
  6201. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6202. }
  6203. ],
  6204. "_srcBlendFactor": 770,
  6205. "_dstBlendFactor": 771,
  6206. "_spriteFrame": null,
  6207. "_type": 0,
  6208. "_sizeMode": 0,
  6209. "_fillType": 0,
  6210. "_fillCenter": {
  6211. "__type__": "cc.Vec2",
  6212. "x": 0,
  6213. "y": 0
  6214. },
  6215. "_fillStart": 0,
  6216. "_fillRange": 0,
  6217. "_isTrimmedMode": true,
  6218. "_atlas": null,
  6219. "_id": "ef9/7kd2JHf5qEm7zeAX9v"
  6220. },
  6221. {
  6222. "__type__": "cc.Node",
  6223. "_name": "rankContent",
  6224. "_objFlags": 0,
  6225. "_parent": {
  6226. "__id__": 130
  6227. },
  6228. "_children": [],
  6229. "_active": true,
  6230. "_components": [
  6231. {
  6232. "__id__": 128
  6233. },
  6234. {
  6235. "__id__": 142
  6236. }
  6237. ],
  6238. "_prefab": null,
  6239. "_opacity": 255,
  6240. "_color": {
  6241. "__type__": "cc.Color",
  6242. "r": 255,
  6243. "g": 255,
  6244. "b": 255,
  6245. "a": 255
  6246. },
  6247. "_contentSize": {
  6248. "__type__": "cc.Size",
  6249. "width": 573,
  6250. "height": 944
  6251. },
  6252. "_anchorPoint": {
  6253. "__type__": "cc.Vec2",
  6254. "x": 0.5,
  6255. "y": 0.5
  6256. },
  6257. "_trs": {
  6258. "__type__": "TypedArray",
  6259. "ctor": "Float64Array",
  6260. "array": [
  6261. 7,
  6262. 11,
  6263. 0,
  6264. 0,
  6265. 0,
  6266. 0,
  6267. 1,
  6268. 1,
  6269. 1,
  6270. 1
  6271. ]
  6272. },
  6273. "_eulerAngles": {
  6274. "__type__": "cc.Vec3",
  6275. "x": 0,
  6276. "y": 0,
  6277. "z": 0
  6278. },
  6279. "_skewX": 0,
  6280. "_skewY": 0,
  6281. "_is3DNode": false,
  6282. "_groupIndex": 0,
  6283. "groupIndex": 0,
  6284. "_id": "4acPssYdVHLpEG+Ns0bKqT"
  6285. },
  6286. {
  6287. "__type__": "cc.Node",
  6288. "_name": "totalRank",
  6289. "_objFlags": 0,
  6290. "_parent": {
  6291. "__id__": 2
  6292. },
  6293. "_children": [
  6294. {
  6295. "__id__": 131
  6296. },
  6297. {
  6298. "__id__": 135
  6299. },
  6300. {
  6301. "__id__": 137
  6302. },
  6303. {
  6304. "__id__": 129
  6305. }
  6306. ],
  6307. "_active": false,
  6308. "_components": [
  6309. {
  6310. "__id__": 141
  6311. }
  6312. ],
  6313. "_prefab": null,
  6314. "_opacity": 255,
  6315. "_color": {
  6316. "__type__": "cc.Color",
  6317. "r": 255,
  6318. "g": 255,
  6319. "b": 255,
  6320. "a": 255
  6321. },
  6322. "_contentSize": {
  6323. "__type__": "cc.Size",
  6324. "width": 650,
  6325. "height": 1200
  6326. },
  6327. "_anchorPoint": {
  6328. "__type__": "cc.Vec2",
  6329. "x": 0.5,
  6330. "y": 0.5
  6331. },
  6332. "_trs": {
  6333. "__type__": "TypedArray",
  6334. "ctor": "Float64Array",
  6335. "array": [
  6336. 0,
  6337. 0,
  6338. 0,
  6339. 0,
  6340. 0,
  6341. 0,
  6342. 1,
  6343. 1,
  6344. 1,
  6345. 1
  6346. ]
  6347. },
  6348. "_eulerAngles": {
  6349. "__type__": "cc.Vec3",
  6350. "x": 0,
  6351. "y": 0,
  6352. "z": 0
  6353. },
  6354. "_skewX": 0,
  6355. "_skewY": 0,
  6356. "_is3DNode": false,
  6357. "_groupIndex": 0,
  6358. "groupIndex": 0,
  6359. "_id": "5e789XUXhJ5Ia02b1lSLKb"
  6360. },
  6361. {
  6362. "__type__": "cc.Node",
  6363. "_name": "New Button",
  6364. "_objFlags": 0,
  6365. "_parent": {
  6366. "__id__": 130
  6367. },
  6368. "_children": [],
  6369. "_active": true,
  6370. "_components": [
  6371. {
  6372. "__id__": 132
  6373. },
  6374. {
  6375. "__id__": 133
  6376. }
  6377. ],
  6378. "_prefab": null,
  6379. "_opacity": 255,
  6380. "_color": {
  6381. "__type__": "cc.Color",
  6382. "r": 255,
  6383. "g": 255,
  6384. "b": 255,
  6385. "a": 255
  6386. },
  6387. "_contentSize": {
  6388. "__type__": "cc.Size",
  6389. "width": 245,
  6390. "height": 78
  6391. },
  6392. "_anchorPoint": {
  6393. "__type__": "cc.Vec2",
  6394. "x": 0.5,
  6395. "y": 0.5
  6396. },
  6397. "_trs": {
  6398. "__type__": "TypedArray",
  6399. "ctor": "Float64Array",
  6400. "array": [
  6401. 0,
  6402. -524,
  6403. 0,
  6404. 0,
  6405. 0,
  6406. 0,
  6407. 1,
  6408. 1,
  6409. 1,
  6410. 1
  6411. ]
  6412. },
  6413. "_eulerAngles": {
  6414. "__type__": "cc.Vec3",
  6415. "x": 0,
  6416. "y": 0,
  6417. "z": 0
  6418. },
  6419. "_skewX": 0,
  6420. "_skewY": 0,
  6421. "_is3DNode": false,
  6422. "_groupIndex": 0,
  6423. "groupIndex": 0,
  6424. "_id": "badBLpGxJK1IqoKYVUUSAc"
  6425. },
  6426. {
  6427. "__type__": "cc.Sprite",
  6428. "_name": "",
  6429. "_objFlags": 0,
  6430. "node": {
  6431. "__id__": 131
  6432. },
  6433. "_enabled": true,
  6434. "_materials": [
  6435. {
  6436. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6437. }
  6438. ],
  6439. "_srcBlendFactor": 770,
  6440. "_dstBlendFactor": 771,
  6441. "_spriteFrame": {
  6442. "__uuid__": "db948d8a-dcd0-4188-a8ad-b49f90806848"
  6443. },
  6444. "_type": 1,
  6445. "_sizeMode": 0,
  6446. "_fillType": 0,
  6447. "_fillCenter": {
  6448. "__type__": "cc.Vec2",
  6449. "x": 0,
  6450. "y": 0
  6451. },
  6452. "_fillStart": 0,
  6453. "_fillRange": 0,
  6454. "_isTrimmedMode": true,
  6455. "_atlas": null,
  6456. "_id": "1dGUkvZjBJdpoqyIgP17CN"
  6457. },
  6458. {
  6459. "__type__": "cc.Button",
  6460. "_name": "",
  6461. "_objFlags": 0,
  6462. "node": {
  6463. "__id__": 131
  6464. },
  6465. "_enabled": true,
  6466. "_normalMaterial": null,
  6467. "_grayMaterial": null,
  6468. "duration": 0.1,
  6469. "zoomScale": 1.2,
  6470. "clickEvents": [
  6471. {
  6472. "__id__": 134
  6473. }
  6474. ],
  6475. "_N$interactable": true,
  6476. "_N$enableAutoGrayEffect": false,
  6477. "_N$transition": 0,
  6478. "transition": 0,
  6479. "_N$normalColor": {
  6480. "__type__": "cc.Color",
  6481. "r": 214,
  6482. "g": 214,
  6483. "b": 214,
  6484. "a": 255
  6485. },
  6486. "_N$pressedColor": {
  6487. "__type__": "cc.Color",
  6488. "r": 211,
  6489. "g": 211,
  6490. "b": 211,
  6491. "a": 255
  6492. },
  6493. "pressedColor": {
  6494. "__type__": "cc.Color",
  6495. "r": 211,
  6496. "g": 211,
  6497. "b": 211,
  6498. "a": 255
  6499. },
  6500. "_N$hoverColor": {
  6501. "__type__": "cc.Color",
  6502. "r": 255,
  6503. "g": 255,
  6504. "b": 255,
  6505. "a": 255
  6506. },
  6507. "hoverColor": {
  6508. "__type__": "cc.Color",
  6509. "r": 255,
  6510. "g": 255,
  6511. "b": 255,
  6512. "a": 255
  6513. },
  6514. "_N$disabledColor": {
  6515. "__type__": "cc.Color",
  6516. "r": 124,
  6517. "g": 124,
  6518. "b": 124,
  6519. "a": 255
  6520. },
  6521. "_N$normalSprite": null,
  6522. "_N$pressedSprite": null,
  6523. "pressedSprite": null,
  6524. "_N$hoverSprite": null,
  6525. "hoverSprite": null,
  6526. "_N$disabledSprite": null,
  6527. "_N$target": null,
  6528. "_id": "a034KBrsZMuZ0/o100X5Sj"
  6529. },
  6530. {
  6531. "__type__": "cc.ClickEvent",
  6532. "target": {
  6533. "__id__": 126
  6534. },
  6535. "component": "",
  6536. "_componentId": "53b05czD4xGgZ8D0pLpUj9M",
  6537. "handler": "onShareButton",
  6538. "customEventData": ""
  6539. },
  6540. {
  6541. "__type__": "cc.Node",
  6542. "_name": "New Sprite",
  6543. "_objFlags": 0,
  6544. "_parent": {
  6545. "__id__": 130
  6546. },
  6547. "_children": [],
  6548. "_active": true,
  6549. "_components": [
  6550. {
  6551. "__id__": 136
  6552. }
  6553. ],
  6554. "_prefab": null,
  6555. "_opacity": 255,
  6556. "_color": {
  6557. "__type__": "cc.Color",
  6558. "r": 255,
  6559. "g": 255,
  6560. "b": 255,
  6561. "a": 255
  6562. },
  6563. "_contentSize": {
  6564. "__type__": "cc.Size",
  6565. "width": 201,
  6566. "height": 44
  6567. },
  6568. "_anchorPoint": {
  6569. "__type__": "cc.Vec2",
  6570. "x": 0.5,
  6571. "y": 0.5
  6572. },
  6573. "_trs": {
  6574. "__type__": "TypedArray",
  6575. "ctor": "Float64Array",
  6576. "array": [
  6577. 0,
  6578. 557,
  6579. 0,
  6580. 0,
  6581. 0,
  6582. 0,
  6583. 1,
  6584. 1,
  6585. 1,
  6586. 1
  6587. ]
  6588. },
  6589. "_eulerAngles": {
  6590. "__type__": "cc.Vec3",
  6591. "x": 0,
  6592. "y": 0,
  6593. "z": 0
  6594. },
  6595. "_skewX": 0,
  6596. "_skewY": 0,
  6597. "_is3DNode": false,
  6598. "_groupIndex": 0,
  6599. "groupIndex": 0,
  6600. "_id": "d7RRPKxjFClrRMYc7yM/Vd"
  6601. },
  6602. {
  6603. "__type__": "cc.Sprite",
  6604. "_name": "",
  6605. "_objFlags": 0,
  6606. "node": {
  6607. "__id__": 135
  6608. },
  6609. "_enabled": true,
  6610. "_materials": [
  6611. {
  6612. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6613. }
  6614. ],
  6615. "_srcBlendFactor": 770,
  6616. "_dstBlendFactor": 771,
  6617. "_spriteFrame": {
  6618. "__uuid__": "7561eb3e-7728-4a86-85ad-077206b097d1"
  6619. },
  6620. "_type": 0,
  6621. "_sizeMode": 1,
  6622. "_fillType": 0,
  6623. "_fillCenter": {
  6624. "__type__": "cc.Vec2",
  6625. "x": 0,
  6626. "y": 0
  6627. },
  6628. "_fillStart": 0,
  6629. "_fillRange": 0,
  6630. "_isTrimmedMode": true,
  6631. "_atlas": null,
  6632. "_id": "6ctiUqGaNPo7OnjYt4sfJl"
  6633. },
  6634. {
  6635. "__type__": "cc.Node",
  6636. "_name": "close",
  6637. "_objFlags": 0,
  6638. "_parent": {
  6639. "__id__": 130
  6640. },
  6641. "_children": [],
  6642. "_active": true,
  6643. "_components": [
  6644. {
  6645. "__id__": 138
  6646. },
  6647. {
  6648. "__id__": 139
  6649. }
  6650. ],
  6651. "_prefab": null,
  6652. "_opacity": 255,
  6653. "_color": {
  6654. "__type__": "cc.Color",
  6655. "r": 255,
  6656. "g": 255,
  6657. "b": 255,
  6658. "a": 255
  6659. },
  6660. "_contentSize": {
  6661. "__type__": "cc.Size",
  6662. "width": 81,
  6663. "height": 84
  6664. },
  6665. "_anchorPoint": {
  6666. "__type__": "cc.Vec2",
  6667. "x": 0.5,
  6668. "y": 0.5
  6669. },
  6670. "_trs": {
  6671. "__type__": "TypedArray",
  6672. "ctor": "Float64Array",
  6673. "array": [
  6674. 310,
  6675. 586,
  6676. 0,
  6677. 0,
  6678. 0,
  6679. 0,
  6680. 1,
  6681. 1,
  6682. 1,
  6683. 1
  6684. ]
  6685. },
  6686. "_eulerAngles": {
  6687. "__type__": "cc.Vec3",
  6688. "x": 0,
  6689. "y": 0,
  6690. "z": 0
  6691. },
  6692. "_skewX": 0,
  6693. "_skewY": 0,
  6694. "_is3DNode": false,
  6695. "_groupIndex": 0,
  6696. "groupIndex": 0,
  6697. "_id": "03kGOGr39CLboYYYrCFl7Z"
  6698. },
  6699. {
  6700. "__type__": "cc.Sprite",
  6701. "_name": "",
  6702. "_objFlags": 0,
  6703. "node": {
  6704. "__id__": 137
  6705. },
  6706. "_enabled": true,
  6707. "_materials": [
  6708. {
  6709. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6710. }
  6711. ],
  6712. "_srcBlendFactor": 770,
  6713. "_dstBlendFactor": 771,
  6714. "_spriteFrame": {
  6715. "__uuid__": "0706478d-6e33-442e-9056-108d59ca1378"
  6716. },
  6717. "_type": 0,
  6718. "_sizeMode": 1,
  6719. "_fillType": 0,
  6720. "_fillCenter": {
  6721. "__type__": "cc.Vec2",
  6722. "x": 0,
  6723. "y": 0
  6724. },
  6725. "_fillStart": 0,
  6726. "_fillRange": 0,
  6727. "_isTrimmedMode": true,
  6728. "_atlas": null,
  6729. "_id": "d0PXrR/sFE66jtDTrkZnFi"
  6730. },
  6731. {
  6732. "__type__": "cc.Button",
  6733. "_name": "",
  6734. "_objFlags": 0,
  6735. "node": {
  6736. "__id__": 137
  6737. },
  6738. "_enabled": true,
  6739. "_normalMaterial": null,
  6740. "_grayMaterial": null,
  6741. "duration": 0.1,
  6742. "zoomScale": 1.2,
  6743. "clickEvents": [
  6744. {
  6745. "__id__": 140
  6746. }
  6747. ],
  6748. "_N$interactable": true,
  6749. "_N$enableAutoGrayEffect": false,
  6750. "_N$transition": 0,
  6751. "transition": 0,
  6752. "_N$normalColor": {
  6753. "__type__": "cc.Color",
  6754. "r": 214,
  6755. "g": 214,
  6756. "b": 214,
  6757. "a": 255
  6758. },
  6759. "_N$pressedColor": {
  6760. "__type__": "cc.Color",
  6761. "r": 211,
  6762. "g": 211,
  6763. "b": 211,
  6764. "a": 255
  6765. },
  6766. "pressedColor": {
  6767. "__type__": "cc.Color",
  6768. "r": 211,
  6769. "g": 211,
  6770. "b": 211,
  6771. "a": 255
  6772. },
  6773. "_N$hoverColor": {
  6774. "__type__": "cc.Color",
  6775. "r": 255,
  6776. "g": 255,
  6777. "b": 255,
  6778. "a": 255
  6779. },
  6780. "hoverColor": {
  6781. "__type__": "cc.Color",
  6782. "r": 255,
  6783. "g": 255,
  6784. "b": 255,
  6785. "a": 255
  6786. },
  6787. "_N$disabledColor": {
  6788. "__type__": "cc.Color",
  6789. "r": 124,
  6790. "g": 124,
  6791. "b": 124,
  6792. "a": 255
  6793. },
  6794. "_N$normalSprite": null,
  6795. "_N$pressedSprite": null,
  6796. "pressedSprite": null,
  6797. "_N$hoverSprite": null,
  6798. "hoverSprite": null,
  6799. "_N$disabledSprite": null,
  6800. "_N$target": null,
  6801. "_id": "d4lb2XYr5AaLU/lyQBe+TL"
  6802. },
  6803. {
  6804. "__type__": "cc.ClickEvent",
  6805. "target": {
  6806. "__id__": 18
  6807. },
  6808. "component": "",
  6809. "_componentId": "feefcb/VXtFp4L+Zqa6CrBZ",
  6810. "handler": "closeRank",
  6811. "customEventData": ""
  6812. },
  6813. {
  6814. "__type__": "cc.Sprite",
  6815. "_name": "",
  6816. "_objFlags": 0,
  6817. "node": {
  6818. "__id__": 130
  6819. },
  6820. "_enabled": true,
  6821. "_materials": [
  6822. {
  6823. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6824. }
  6825. ],
  6826. "_srcBlendFactor": 770,
  6827. "_dstBlendFactor": 771,
  6828. "_spriteFrame": {
  6829. "__uuid__": "c6f13935-51e6-471e-831f-3e9689a493f7"
  6830. },
  6831. "_type": 1,
  6832. "_sizeMode": 0,
  6833. "_fillType": 0,
  6834. "_fillCenter": {
  6835. "__type__": "cc.Vec2",
  6836. "x": 0,
  6837. "y": 0
  6838. },
  6839. "_fillStart": 0,
  6840. "_fillRange": 0,
  6841. "_isTrimmedMode": true,
  6842. "_atlas": null,
  6843. "_id": "7cxsO93xhOf57hPFxxHFKY"
  6844. },
  6845. {
  6846. "__type__": "cc.SubContextView",
  6847. "_name": "",
  6848. "_objFlags": 0,
  6849. "node": {
  6850. "__id__": 129
  6851. },
  6852. "_enabled": true,
  6853. "_firstlyEnabled": true,
  6854. "_fps": 60,
  6855. "_id": "d6mxLnqf1OAKsHrY+/cWf8"
  6856. },
  6857. {
  6858. "__type__": "cc.Sprite",
  6859. "_name": "",
  6860. "_objFlags": 0,
  6861. "node": {
  6862. "__id__": 144
  6863. },
  6864. "_enabled": true,
  6865. "_materials": [
  6866. {
  6867. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6868. }
  6869. ],
  6870. "_srcBlendFactor": 770,
  6871. "_dstBlendFactor": 771,
  6872. "_spriteFrame": null,
  6873. "_type": 0,
  6874. "_sizeMode": 0,
  6875. "_fillType": 0,
  6876. "_fillCenter": {
  6877. "__type__": "cc.Vec2",
  6878. "x": 0,
  6879. "y": 0
  6880. },
  6881. "_fillStart": 0,
  6882. "_fillRange": 0,
  6883. "_isTrimmedMode": true,
  6884. "_atlas": null,
  6885. "_id": "bbvyUTfrFOWJQ/YkRDmz8L"
  6886. },
  6887. {
  6888. "__type__": "cc.Node",
  6889. "_name": "rankContent",
  6890. "_objFlags": 0,
  6891. "_parent": {
  6892. "__id__": 145
  6893. },
  6894. "_children": [],
  6895. "_active": true,
  6896. "_components": [
  6897. {
  6898. "__id__": 143
  6899. },
  6900. {
  6901. "__id__": 160
  6902. }
  6903. ],
  6904. "_prefab": null,
  6905. "_opacity": 255,
  6906. "_color": {
  6907. "__type__": "cc.Color",
  6908. "r": 255,
  6909. "g": 255,
  6910. "b": 255,
  6911. "a": 255
  6912. },
  6913. "_contentSize": {
  6914. "__type__": "cc.Size",
  6915. "width": 750,
  6916. "height": 1334
  6917. },
  6918. "_anchorPoint": {
  6919. "__type__": "cc.Vec2",
  6920. "x": 0.5,
  6921. "y": 0.5
  6922. },
  6923. "_trs": {
  6924. "__type__": "TypedArray",
  6925. "ctor": "Float64Array",
  6926. "array": [
  6927. 0,
  6928. 0,
  6929. 0,
  6930. 0,
  6931. 0,
  6932. 0,
  6933. 1,
  6934. 1,
  6935. 1,
  6936. 1
  6937. ]
  6938. },
  6939. "_eulerAngles": {
  6940. "__type__": "cc.Vec3",
  6941. "x": 0,
  6942. "y": 0,
  6943. "z": 0
  6944. },
  6945. "_skewX": 0,
  6946. "_skewY": 0,
  6947. "_is3DNode": false,
  6948. "_groupIndex": 0,
  6949. "groupIndex": 0,
  6950. "_id": "676VLGGg5H3r4LlkOtpQwU"
  6951. },
  6952. {
  6953. "__type__": "cc.Node",
  6954. "_name": "6groupRankDialog",
  6955. "_objFlags": 0,
  6956. "_parent": {
  6957. "__id__": 2
  6958. },
  6959. "_children": [
  6960. {
  6961. "__id__": 146
  6962. },
  6963. {
  6964. "__id__": 148
  6965. },
  6966. {
  6967. "__id__": 144
  6968. }
  6969. ],
  6970. "_active": false,
  6971. "_components": [],
  6972. "_prefab": null,
  6973. "_opacity": 255,
  6974. "_color": {
  6975. "__type__": "cc.Color",
  6976. "r": 255,
  6977. "g": 255,
  6978. "b": 255,
  6979. "a": 255
  6980. },
  6981. "_contentSize": {
  6982. "__type__": "cc.Size",
  6983. "width": 0,
  6984. "height": 0
  6985. },
  6986. "_anchorPoint": {
  6987. "__type__": "cc.Vec2",
  6988. "x": 0.5,
  6989. "y": 0.5
  6990. },
  6991. "_trs": {
  6992. "__type__": "TypedArray",
  6993. "ctor": "Float64Array",
  6994. "array": [
  6995. 0,
  6996. 0,
  6997. 0,
  6998. 0,
  6999. 0,
  7000. 0,
  7001. 1,
  7002. 1,
  7003. 1,
  7004. 1
  7005. ]
  7006. },
  7007. "_eulerAngles": {
  7008. "__type__": "cc.Vec3",
  7009. "x": 0,
  7010. "y": 0,
  7011. "z": 0
  7012. },
  7013. "_skewX": 0,
  7014. "_skewY": 0,
  7015. "_is3DNode": false,
  7016. "_groupIndex": 0,
  7017. "groupIndex": 0,
  7018. "_id": "86mtFrNSFMZrGy8JtZS7at"
  7019. },
  7020. {
  7021. "__type__": "cc.Node",
  7022. "_name": "bg",
  7023. "_objFlags": 0,
  7024. "_parent": {
  7025. "__id__": 145
  7026. },
  7027. "_children": [],
  7028. "_active": true,
  7029. "_components": [
  7030. {
  7031. "__id__": 147
  7032. }
  7033. ],
  7034. "_prefab": null,
  7035. "_opacity": 255,
  7036. "_color": {
  7037. "__type__": "cc.Color",
  7038. "r": 255,
  7039. "g": 255,
  7040. "b": 255,
  7041. "a": 255
  7042. },
  7043. "_contentSize": {
  7044. "__type__": "cc.Size",
  7045. "width": 2000,
  7046. "height": 2000
  7047. },
  7048. "_anchorPoint": {
  7049. "__type__": "cc.Vec2",
  7050. "x": 0.5,
  7051. "y": 0.5
  7052. },
  7053. "_trs": {
  7054. "__type__": "TypedArray",
  7055. "ctor": "Float64Array",
  7056. "array": [
  7057. 0,
  7058. 0,
  7059. 0,
  7060. 0,
  7061. 0,
  7062. 0,
  7063. 1,
  7064. 1,
  7065. 1,
  7066. 1
  7067. ]
  7068. },
  7069. "_eulerAngles": {
  7070. "__type__": "cc.Vec3",
  7071. "x": 0,
  7072. "y": 0,
  7073. "z": 0
  7074. },
  7075. "_skewX": 0,
  7076. "_skewY": 0,
  7077. "_is3DNode": false,
  7078. "_groupIndex": 0,
  7079. "groupIndex": 0,
  7080. "_id": "71x7ujPXlFZ774sZitbCH8"
  7081. },
  7082. {
  7083. "__type__": "cc.BlockInputEvents",
  7084. "_name": "",
  7085. "_objFlags": 0,
  7086. "node": {
  7087. "__id__": 146
  7088. },
  7089. "_enabled": true,
  7090. "_id": "71NuL7qfhLwrXa5FmSwlTb"
  7091. },
  7092. {
  7093. "__type__": "cc.Node",
  7094. "_name": "groupRank",
  7095. "_objFlags": 0,
  7096. "_parent": {
  7097. "__id__": 145
  7098. },
  7099. "_children": [
  7100. {
  7101. "__id__": 149
  7102. },
  7103. {
  7104. "__id__": 153
  7105. },
  7106. {
  7107. "__id__": 155
  7108. }
  7109. ],
  7110. "_active": true,
  7111. "_components": [
  7112. {
  7113. "__id__": 159
  7114. }
  7115. ],
  7116. "_prefab": null,
  7117. "_opacity": 255,
  7118. "_color": {
  7119. "__type__": "cc.Color",
  7120. "r": 255,
  7121. "g": 255,
  7122. "b": 255,
  7123. "a": 255
  7124. },
  7125. "_contentSize": {
  7126. "__type__": "cc.Size",
  7127. "width": 650,
  7128. "height": 1200
  7129. },
  7130. "_anchorPoint": {
  7131. "__type__": "cc.Vec2",
  7132. "x": 0.5,
  7133. "y": 0.5
  7134. },
  7135. "_trs": {
  7136. "__type__": "TypedArray",
  7137. "ctor": "Float64Array",
  7138. "array": [
  7139. 0,
  7140. 0,
  7141. 0,
  7142. 0,
  7143. 0,
  7144. 0,
  7145. 1,
  7146. 1,
  7147. 1,
  7148. 1
  7149. ]
  7150. },
  7151. "_eulerAngles": {
  7152. "__type__": "cc.Vec3",
  7153. "x": 0,
  7154. "y": 0,
  7155. "z": 0
  7156. },
  7157. "_skewX": 0,
  7158. "_skewY": 0,
  7159. "_is3DNode": false,
  7160. "_groupIndex": 0,
  7161. "groupIndex": 0,
  7162. "_id": "4bjMyahytCbYw5ToSiuNtg"
  7163. },
  7164. {
  7165. "__type__": "cc.Node",
  7166. "_name": "New Button",
  7167. "_objFlags": 0,
  7168. "_parent": {
  7169. "__id__": 148
  7170. },
  7171. "_children": [],
  7172. "_active": true,
  7173. "_components": [
  7174. {
  7175. "__id__": 150
  7176. },
  7177. {
  7178. "__id__": 151
  7179. }
  7180. ],
  7181. "_prefab": null,
  7182. "_opacity": 255,
  7183. "_color": {
  7184. "__type__": "cc.Color",
  7185. "r": 255,
  7186. "g": 255,
  7187. "b": 255,
  7188. "a": 255
  7189. },
  7190. "_contentSize": {
  7191. "__type__": "cc.Size",
  7192. "width": 245,
  7193. "height": 78
  7194. },
  7195. "_anchorPoint": {
  7196. "__type__": "cc.Vec2",
  7197. "x": 0.5,
  7198. "y": 0.5
  7199. },
  7200. "_trs": {
  7201. "__type__": "TypedArray",
  7202. "ctor": "Float64Array",
  7203. "array": [
  7204. 0,
  7205. -524,
  7206. 0,
  7207. 0,
  7208. 0,
  7209. 0,
  7210. 1,
  7211. 1,
  7212. 1,
  7213. 1
  7214. ]
  7215. },
  7216. "_eulerAngles": {
  7217. "__type__": "cc.Vec3",
  7218. "x": 0,
  7219. "y": 0,
  7220. "z": 0
  7221. },
  7222. "_skewX": 0,
  7223. "_skewY": 0,
  7224. "_is3DNode": false,
  7225. "_groupIndex": 0,
  7226. "groupIndex": 0,
  7227. "_id": "a4x9w7+K5HNKGL1KHl5YPh"
  7228. },
  7229. {
  7230. "__type__": "cc.Sprite",
  7231. "_name": "",
  7232. "_objFlags": 0,
  7233. "node": {
  7234. "__id__": 149
  7235. },
  7236. "_enabled": true,
  7237. "_materials": [
  7238. {
  7239. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  7240. }
  7241. ],
  7242. "_srcBlendFactor": 770,
  7243. "_dstBlendFactor": 771,
  7244. "_spriteFrame": {
  7245. "__uuid__": "be879a55-c98f-4f64-b69b-7ab1cc9c8536"
  7246. },
  7247. "_type": 1,
  7248. "_sizeMode": 0,
  7249. "_fillType": 0,
  7250. "_fillCenter": {
  7251. "__type__": "cc.Vec2",
  7252. "x": 0,
  7253. "y": 0
  7254. },
  7255. "_fillStart": 0,
  7256. "_fillRange": 0,
  7257. "_isTrimmedMode": true,
  7258. "_atlas": null,
  7259. "_id": "b93A6/GOJJk7X4l4CFgB4j"
  7260. },
  7261. {
  7262. "__type__": "cc.Button",
  7263. "_name": "",
  7264. "_objFlags": 0,
  7265. "node": {
  7266. "__id__": 149
  7267. },
  7268. "_enabled": true,
  7269. "_normalMaterial": null,
  7270. "_grayMaterial": null,
  7271. "duration": 0.1,
  7272. "zoomScale": 1.2,
  7273. "clickEvents": [
  7274. {
  7275. "__id__": 152
  7276. }
  7277. ],
  7278. "_N$interactable": true,
  7279. "_N$enableAutoGrayEffect": false,
  7280. "_N$transition": 0,
  7281. "transition": 0,
  7282. "_N$normalColor": {
  7283. "__type__": "cc.Color",
  7284. "r": 214,
  7285. "g": 214,
  7286. "b": 214,
  7287. "a": 255
  7288. },
  7289. "_N$pressedColor": {
  7290. "__type__": "cc.Color",
  7291. "r": 211,
  7292. "g": 211,
  7293. "b": 211,
  7294. "a": 255
  7295. },
  7296. "pressedColor": {
  7297. "__type__": "cc.Color",
  7298. "r": 211,
  7299. "g": 211,
  7300. "b": 211,
  7301. "a": 255
  7302. },
  7303. "_N$hoverColor": {
  7304. "__type__": "cc.Color",
  7305. "r": 255,
  7306. "g": 255,
  7307. "b": 255,
  7308. "a": 255
  7309. },
  7310. "hoverColor": {
  7311. "__type__": "cc.Color",
  7312. "r": 255,
  7313. "g": 255,
  7314. "b": 255,
  7315. "a": 255
  7316. },
  7317. "_N$disabledColor": {
  7318. "__type__": "cc.Color",
  7319. "r": 124,
  7320. "g": 124,
  7321. "b": 124,
  7322. "a": 255
  7323. },
  7324. "_N$normalSprite": null,
  7325. "_N$pressedSprite": null,
  7326. "pressedSprite": null,
  7327. "_N$hoverSprite": null,
  7328. "hoverSprite": null,
  7329. "_N$disabledSprite": null,
  7330. "_N$target": null,
  7331. "_id": "2fz5sNjYBJpph68erGt/W0"
  7332. },
  7333. {
  7334. "__type__": "cc.ClickEvent",
  7335. "target": {
  7336. "__id__": 18
  7337. },
  7338. "component": "",
  7339. "_componentId": "feefcb/VXtFp4L+Zqa6CrBZ",
  7340. "handler": "closeGroupRank",
  7341. "customEventData": ""
  7342. },
  7343. {
  7344. "__type__": "cc.Node",
  7345. "_name": "New Label",
  7346. "_objFlags": 0,
  7347. "_parent": {
  7348. "__id__": 148
  7349. },
  7350. "_children": [],
  7351. "_active": true,
  7352. "_components": [
  7353. {
  7354. "__id__": 154
  7355. }
  7356. ],
  7357. "_prefab": null,
  7358. "_opacity": 255,
  7359. "_color": {
  7360. "__type__": "cc.Color",
  7361. "r": 255,
  7362. "g": 255,
  7363. "b": 255,
  7364. "a": 255
  7365. },
  7366. "_contentSize": {
  7367. "__type__": "cc.Size",
  7368. "width": 120,
  7369. "height": 50.4
  7370. },
  7371. "_anchorPoint": {
  7372. "__type__": "cc.Vec2",
  7373. "x": 0.5,
  7374. "y": 0.5
  7375. },
  7376. "_trs": {
  7377. "__type__": "TypedArray",
  7378. "ctor": "Float64Array",
  7379. "array": [
  7380. 1.395,
  7381. 557,
  7382. 0,
  7383. 0,
  7384. 0,
  7385. 0,
  7386. 1,
  7387. 1,
  7388. 1,
  7389. 1
  7390. ]
  7391. },
  7392. "_eulerAngles": {
  7393. "__type__": "cc.Vec3",
  7394. "x": 0,
  7395. "y": 0,
  7396. "z": 0
  7397. },
  7398. "_skewX": 0,
  7399. "_skewY": 0,
  7400. "_is3DNode": false,
  7401. "_groupIndex": 0,
  7402. "groupIndex": 0,
  7403. "_id": "57vKv2xyZHdIJwfQubcp7X"
  7404. },
  7405. {
  7406. "__type__": "cc.Label",
  7407. "_name": "",
  7408. "_objFlags": 0,
  7409. "node": {
  7410. "__id__": 153
  7411. },
  7412. "_enabled": true,
  7413. "_materials": [
  7414. {
  7415. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  7416. }
  7417. ],
  7418. "_srcBlendFactor": 770,
  7419. "_dstBlendFactor": 771,
  7420. "_string": "排行榜",
  7421. "_N$string": "排行榜",
  7422. "_fontSize": 40,
  7423. "_lineHeight": 40,
  7424. "_enableWrapText": true,
  7425. "_N$file": null,
  7426. "_isSystemFontUsed": true,
  7427. "_spacingX": 0,
  7428. "_batchAsBitmap": false,
  7429. "_styleFlags": 0,
  7430. "_underlineHeight": 0,
  7431. "_N$horizontalAlign": 1,
  7432. "_N$verticalAlign": 1,
  7433. "_N$fontFamily": "Arial",
  7434. "_N$overflow": 0,
  7435. "_N$cacheMode": 0,
  7436. "_id": "82A96At1RLPrRDJ6Jd40Lp"
  7437. },
  7438. {
  7439. "__type__": "cc.Node",
  7440. "_name": "close",
  7441. "_objFlags": 0,
  7442. "_parent": {
  7443. "__id__": 148
  7444. },
  7445. "_children": [],
  7446. "_active": true,
  7447. "_components": [
  7448. {
  7449. "__id__": 156
  7450. },
  7451. {
  7452. "__id__": 157
  7453. }
  7454. ],
  7455. "_prefab": null,
  7456. "_opacity": 255,
  7457. "_color": {
  7458. "__type__": "cc.Color",
  7459. "r": 255,
  7460. "g": 255,
  7461. "b": 255,
  7462. "a": 255
  7463. },
  7464. "_contentSize": {
  7465. "__type__": "cc.Size",
  7466. "width": 81,
  7467. "height": 84
  7468. },
  7469. "_anchorPoint": {
  7470. "__type__": "cc.Vec2",
  7471. "x": 0.5,
  7472. "y": 0.5
  7473. },
  7474. "_trs": {
  7475. "__type__": "TypedArray",
  7476. "ctor": "Float64Array",
  7477. "array": [
  7478. 310,
  7479. 586,
  7480. 0,
  7481. 0,
  7482. 0,
  7483. 0,
  7484. 1,
  7485. 1,
  7486. 1,
  7487. 1
  7488. ]
  7489. },
  7490. "_eulerAngles": {
  7491. "__type__": "cc.Vec3",
  7492. "x": 0,
  7493. "y": 0,
  7494. "z": 0
  7495. },
  7496. "_skewX": 0,
  7497. "_skewY": 0,
  7498. "_is3DNode": false,
  7499. "_groupIndex": 0,
  7500. "groupIndex": 0,
  7501. "_id": "7adN5m9w1HEamxpVe+/oPe"
  7502. },
  7503. {
  7504. "__type__": "cc.Sprite",
  7505. "_name": "",
  7506. "_objFlags": 0,
  7507. "node": {
  7508. "__id__": 155
  7509. },
  7510. "_enabled": true,
  7511. "_materials": [
  7512. {
  7513. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  7514. }
  7515. ],
  7516. "_srcBlendFactor": 770,
  7517. "_dstBlendFactor": 771,
  7518. "_spriteFrame": {
  7519. "__uuid__": "0706478d-6e33-442e-9056-108d59ca1378"
  7520. },
  7521. "_type": 0,
  7522. "_sizeMode": 1,
  7523. "_fillType": 0,
  7524. "_fillCenter": {
  7525. "__type__": "cc.Vec2",
  7526. "x": 0,
  7527. "y": 0
  7528. },
  7529. "_fillStart": 0,
  7530. "_fillRange": 0,
  7531. "_isTrimmedMode": true,
  7532. "_atlas": null,
  7533. "_id": "d4XFXyAahGb4+72p4bPwPY"
  7534. },
  7535. {
  7536. "__type__": "cc.Button",
  7537. "_name": "",
  7538. "_objFlags": 0,
  7539. "node": {
  7540. "__id__": 155
  7541. },
  7542. "_enabled": true,
  7543. "_normalMaterial": null,
  7544. "_grayMaterial": null,
  7545. "duration": 0.1,
  7546. "zoomScale": 1.2,
  7547. "clickEvents": [
  7548. {
  7549. "__id__": 158
  7550. }
  7551. ],
  7552. "_N$interactable": true,
  7553. "_N$enableAutoGrayEffect": false,
  7554. "_N$transition": 0,
  7555. "transition": 0,
  7556. "_N$normalColor": {
  7557. "__type__": "cc.Color",
  7558. "r": 214,
  7559. "g": 214,
  7560. "b": 214,
  7561. "a": 255
  7562. },
  7563. "_N$pressedColor": {
  7564. "__type__": "cc.Color",
  7565. "r": 211,
  7566. "g": 211,
  7567. "b": 211,
  7568. "a": 255
  7569. },
  7570. "pressedColor": {
  7571. "__type__": "cc.Color",
  7572. "r": 211,
  7573. "g": 211,
  7574. "b": 211,
  7575. "a": 255
  7576. },
  7577. "_N$hoverColor": {
  7578. "__type__": "cc.Color",
  7579. "r": 255,
  7580. "g": 255,
  7581. "b": 255,
  7582. "a": 255
  7583. },
  7584. "hoverColor": {
  7585. "__type__": "cc.Color",
  7586. "r": 255,
  7587. "g": 255,
  7588. "b": 255,
  7589. "a": 255
  7590. },
  7591. "_N$disabledColor": {
  7592. "__type__": "cc.Color",
  7593. "r": 124,
  7594. "g": 124,
  7595. "b": 124,
  7596. "a": 255
  7597. },
  7598. "_N$normalSprite": null,
  7599. "_N$pressedSprite": null,
  7600. "pressedSprite": null,
  7601. "_N$hoverSprite": null,
  7602. "hoverSprite": null,
  7603. "_N$disabledSprite": null,
  7604. "_N$target": null,
  7605. "_id": "f6Sx83IAJBPrdpax6DSBe0"
  7606. },
  7607. {
  7608. "__type__": "cc.ClickEvent",
  7609. "target": {
  7610. "__id__": 18
  7611. },
  7612. "component": "",
  7613. "_componentId": "feefcb/VXtFp4L+Zqa6CrBZ",
  7614. "handler": "closeGroupRank",
  7615. "customEventData": ""
  7616. },
  7617. {
  7618. "__type__": "cc.Sprite",
  7619. "_name": "",
  7620. "_objFlags": 0,
  7621. "node": {
  7622. "__id__": 148
  7623. },
  7624. "_enabled": true,
  7625. "_materials": [
  7626. {
  7627. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  7628. }
  7629. ],
  7630. "_srcBlendFactor": 770,
  7631. "_dstBlendFactor": 771,
  7632. "_spriteFrame": {
  7633. "__uuid__": "c6f13935-51e6-471e-831f-3e9689a493f7"
  7634. },
  7635. "_type": 1,
  7636. "_sizeMode": 0,
  7637. "_fillType": 0,
  7638. "_fillCenter": {
  7639. "__type__": "cc.Vec2",
  7640. "x": 0,
  7641. "y": 0
  7642. },
  7643. "_fillStart": 0,
  7644. "_fillRange": 0,
  7645. "_isTrimmedMode": true,
  7646. "_atlas": null,
  7647. "_id": "0c18SiKhtCnpp+FnufRsl2"
  7648. },
  7649. {
  7650. "__type__": "cc.SubContextView",
  7651. "_name": "",
  7652. "_objFlags": 0,
  7653. "node": {
  7654. "__id__": 144
  7655. },
  7656. "_enabled": true,
  7657. "_firstlyEnabled": true,
  7658. "_fps": 60,
  7659. "_id": "1b3Xb7t31EJbEP89v2XN59"
  7660. },
  7661. {
  7662. "__type__": "cc.Node",
  7663. "_name": "New Button",
  7664. "_objFlags": 0,
  7665. "_parent": {
  7666. "__id__": 109
  7667. },
  7668. "_children": [],
  7669. "_active": true,
  7670. "_components": [
  7671. {
  7672. "__id__": 162
  7673. },
  7674. {
  7675. "__id__": 163
  7676. }
  7677. ],
  7678. "_prefab": null,
  7679. "_opacity": 255,
  7680. "_color": {
  7681. "__type__": "cc.Color",
  7682. "r": 255,
  7683. "g": 255,
  7684. "b": 255,
  7685. "a": 255
  7686. },
  7687. "_contentSize": {
  7688. "__type__": "cc.Size",
  7689. "width": 161,
  7690. "height": 30
  7691. },
  7692. "_anchorPoint": {
  7693. "__type__": "cc.Vec2",
  7694. "x": 0.5,
  7695. "y": 0.5
  7696. },
  7697. "_trs": {
  7698. "__type__": "TypedArray",
  7699. "ctor": "Float64Array",
  7700. "array": [
  7701. 119,
  7702. -139,
  7703. 0,
  7704. 0,
  7705. 0,
  7706. 0,
  7707. 1,
  7708. 1,
  7709. 1,
  7710. 1
  7711. ]
  7712. },
  7713. "_eulerAngles": {
  7714. "__type__": "cc.Vec3",
  7715. "x": 0,
  7716. "y": 0,
  7717. "z": 0
  7718. },
  7719. "_skewX": 0,
  7720. "_skewY": 0,
  7721. "_is3DNode": false,
  7722. "_groupIndex": 0,
  7723. "groupIndex": 0,
  7724. "_id": "cax+czvZVMyoIhVZb3BF3j"
  7725. },
  7726. {
  7727. "__type__": "cc.Sprite",
  7728. "_name": "",
  7729. "_objFlags": 0,
  7730. "node": {
  7731. "__id__": 161
  7732. },
  7733. "_enabled": true,
  7734. "_materials": [],
  7735. "_srcBlendFactor": 770,
  7736. "_dstBlendFactor": 771,
  7737. "_spriteFrame": {
  7738. "__uuid__": "0cf70568-8bf3-4d76-9eaa-4494d8a31bfc"
  7739. },
  7740. "_type": 0,
  7741. "_sizeMode": 2,
  7742. "_fillType": 0,
  7743. "_fillCenter": {
  7744. "__type__": "cc.Vec2",
  7745. "x": 0,
  7746. "y": 0
  7747. },
  7748. "_fillStart": 0,
  7749. "_fillRange": 0,
  7750. "_isTrimmedMode": true,
  7751. "_atlas": null,
  7752. "_id": "d5kWygHudKdYOPuCzKLklU"
  7753. },
  7754. {
  7755. "__type__": "cc.Button",
  7756. "_name": "",
  7757. "_objFlags": 0,
  7758. "node": {
  7759. "__id__": 161
  7760. },
  7761. "_enabled": true,
  7762. "_normalMaterial": null,
  7763. "_grayMaterial": null,
  7764. "duration": 0.1,
  7765. "zoomScale": 1.2,
  7766. "clickEvents": [
  7767. {
  7768. "__id__": 164
  7769. }
  7770. ],
  7771. "_N$interactable": true,
  7772. "_N$enableAutoGrayEffect": false,
  7773. "_N$transition": 0,
  7774. "transition": 0,
  7775. "_N$normalColor": {
  7776. "__type__": "cc.Color",
  7777. "r": 255,
  7778. "g": 255,
  7779. "b": 255,
  7780. "a": 255
  7781. },
  7782. "_N$pressedColor": {
  7783. "__type__": "cc.Color",
  7784. "r": 255,
  7785. "g": 255,
  7786. "b": 255,
  7787. "a": 255
  7788. },
  7789. "pressedColor": {
  7790. "__type__": "cc.Color",
  7791. "r": 255,
  7792. "g": 255,
  7793. "b": 255,
  7794. "a": 255
  7795. },
  7796. "_N$hoverColor": {
  7797. "__type__": "cc.Color",
  7798. "r": 255,
  7799. "g": 255,
  7800. "b": 255,
  7801. "a": 255
  7802. },
  7803. "hoverColor": {
  7804. "__type__": "cc.Color",
  7805. "r": 255,
  7806. "g": 255,
  7807. "b": 255,
  7808. "a": 255
  7809. },
  7810. "_N$disabledColor": {
  7811. "__type__": "cc.Color",
  7812. "r": 255,
  7813. "g": 255,
  7814. "b": 255,
  7815. "a": 255
  7816. },
  7817. "_N$normalSprite": {
  7818. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  7819. },
  7820. "_N$pressedSprite": {
  7821. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  7822. },
  7823. "pressedSprite": {
  7824. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  7825. },
  7826. "_N$hoverSprite": {
  7827. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  7828. },
  7829. "hoverSprite": {
  7830. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  7831. },
  7832. "_N$disabledSprite": {
  7833. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  7834. },
  7835. "_N$target": null,
  7836. "_id": "bfKPr3wT5Gh5ZCtsInYhkj"
  7837. },
  7838. {
  7839. "__type__": "cc.ClickEvent",
  7840. "target": {
  7841. "__id__": 18
  7842. },
  7843. "component": "",
  7844. "_componentId": "feefcb/VXtFp4L+Zqa6CrBZ",
  7845. "handler": "openRank",
  7846. "customEventData": ""
  7847. },
  7848. {
  7849. "__type__": "cc.Node",
  7850. "_name": "info",
  7851. "_objFlags": 0,
  7852. "_parent": {
  7853. "__id__": 109
  7854. },
  7855. "_children": [
  7856. {
  7857. "__id__": 166
  7858. },
  7859. {
  7860. "__id__": 168
  7861. },
  7862. {
  7863. "__id__": 170
  7864. },
  7865. {
  7866. "__id__": 172
  7867. },
  7868. {
  7869. "__id__": 174
  7870. },
  7871. {
  7872. "__id__": 176
  7873. },
  7874. {
  7875. "__id__": 178
  7876. }
  7877. ],
  7878. "_active": true,
  7879. "_components": [],
  7880. "_prefab": null,
  7881. "_opacity": 255,
  7882. "_color": {
  7883. "__type__": "cc.Color",
  7884. "r": 255,
  7885. "g": 255,
  7886. "b": 255,
  7887. "a": 255
  7888. },
  7889. "_contentSize": {
  7890. "__type__": "cc.Size",
  7891. "width": 0,
  7892. "height": 0
  7893. },
  7894. "_anchorPoint": {
  7895. "__type__": "cc.Vec2",
  7896. "x": 0.5,
  7897. "y": 0.5
  7898. },
  7899. "_trs": {
  7900. "__type__": "TypedArray",
  7901. "ctor": "Float64Array",
  7902. "array": [
  7903. 91,
  7904. 0,
  7905. 0,
  7906. 0,
  7907. 0,
  7908. 0,
  7909. 1,
  7910. 1,
  7911. 1,
  7912. 1
  7913. ]
  7914. },
  7915. "_eulerAngles": {
  7916. "__type__": "cc.Vec3",
  7917. "x": 0,
  7918. "y": 0,
  7919. "z": 0
  7920. },
  7921. "_skewX": 0,
  7922. "_skewY": 0,
  7923. "_is3DNode": false,
  7924. "_groupIndex": 0,
  7925. "groupIndex": 0,
  7926. "_id": "bc1/BC9yBPv66B/i5g9Qpo"
  7927. },
  7928. {
  7929. "__type__": "cc.Node",
  7930. "_name": "New Label",
  7931. "_objFlags": 0,
  7932. "_parent": {
  7933. "__id__": 165
  7934. },
  7935. "_children": [],
  7936. "_active": false,
  7937. "_components": [
  7938. {
  7939. "__id__": 167
  7940. }
  7941. ],
  7942. "_prefab": null,
  7943. "_opacity": 255,
  7944. "_color": {
  7945. "__type__": "cc.Color",
  7946. "r": 47,
  7947. "g": 94,
  7948. "b": 121,
  7949. "a": 255
  7950. },
  7951. "_contentSize": {
  7952. "__type__": "cc.Size",
  7953. "width": 93.75,
  7954. "height": 37.5
  7955. },
  7956. "_anchorPoint": {
  7957. "__type__": "cc.Vec2",
  7958. "x": 0.5,
  7959. "y": 0.5
  7960. },
  7961. "_trs": {
  7962. "__type__": "TypedArray",
  7963. "ctor": "Float64Array",
  7964. "array": [
  7965. 0,
  7966. 106,
  7967. 0,
  7968. 0,
  7969. 0,
  7970. 0,
  7971. 1,
  7972. 1,
  7973. 1,
  7974. 1
  7975. ]
  7976. },
  7977. "_eulerAngles": {
  7978. "__type__": "cc.Vec3",
  7979. "x": 0,
  7980. "y": 0,
  7981. "z": 0
  7982. },
  7983. "_skewX": 0,
  7984. "_skewY": 0,
  7985. "_is3DNode": false,
  7986. "_groupIndex": 0,
  7987. "groupIndex": 0,
  7988. "_id": "17o7++WhdLBb1mXtm6bQQX"
  7989. },
  7990. {
  7991. "__type__": "cc.Label",
  7992. "_name": "",
  7993. "_objFlags": 0,
  7994. "node": {
  7995. "__id__": 166
  7996. },
  7997. "_enabled": true,
  7998. "_materials": [],
  7999. "_srcBlendFactor": 770,
  8000. "_dstBlendFactor": 771,
  8001. "_string": "本次官衔",
  8002. "_N$string": "本次官衔",
  8003. "_fontSize": 30,
  8004. "_lineHeight": 40,
  8005. "_enableWrapText": true,
  8006. "_N$file": null,
  8007. "_isSystemFontUsed": false,
  8008. "_spacingX": 0,
  8009. "_batchAsBitmap": true,
  8010. "_styleFlags": 0,
  8011. "_underlineHeight": 0,
  8012. "_N$horizontalAlign": 1,
  8013. "_N$verticalAlign": 1,
  8014. "_N$fontFamily": "Arial",
  8015. "_N$overflow": 0,
  8016. "_N$cacheMode": 0,
  8017. "_id": "a5rvpoHBFE84j9iUH4ui2W"
  8018. },
  8019. {
  8020. "__type__": "cc.Node",
  8021. "_name": "namebg",
  8022. "_objFlags": 0,
  8023. "_parent": {
  8024. "__id__": 165
  8025. },
  8026. "_children": [],
  8027. "_active": true,
  8028. "_components": [
  8029. {
  8030. "__id__": 169
  8031. }
  8032. ],
  8033. "_prefab": null,
  8034. "_opacity": 255,
  8035. "_color": {
  8036. "__type__": "cc.Color",
  8037. "r": 255,
  8038. "g": 255,
  8039. "b": 255,
  8040. "a": 255
  8041. },
  8042. "_contentSize": {
  8043. "__type__": "cc.Size",
  8044. "width": 50,
  8045. "height": 91
  8046. },
  8047. "_anchorPoint": {
  8048. "__type__": "cc.Vec2",
  8049. "x": 0.5,
  8050. "y": 0.5
  8051. },
  8052. "_trs": {
  8053. "__type__": "TypedArray",
  8054. "ctor": "Float64Array",
  8055. "array": [
  8056. -180,
  8057. 111,
  8058. 0,
  8059. 0,
  8060. 0,
  8061. 0,
  8062. 1,
  8063. 1,
  8064. 1,
  8065. 1
  8066. ]
  8067. },
  8068. "_eulerAngles": {
  8069. "__type__": "cc.Vec3",
  8070. "x": 0,
  8071. "y": 0,
  8072. "z": 0
  8073. },
  8074. "_skewX": 0,
  8075. "_skewY": 0,
  8076. "_is3DNode": false,
  8077. "_groupIndex": 0,
  8078. "groupIndex": 0,
  8079. "_id": "27Gx6hYTdK5pQSD+do3Ovg"
  8080. },
  8081. {
  8082. "__type__": "cc.Sprite",
  8083. "_name": "",
  8084. "_objFlags": 0,
  8085. "node": {
  8086. "__id__": 168
  8087. },
  8088. "_enabled": true,
  8089. "_materials": [],
  8090. "_srcBlendFactor": 770,
  8091. "_dstBlendFactor": 771,
  8092. "_spriteFrame": {
  8093. "__uuid__": "28e187c0-7af4-4ca2-baaf-a0443edd890d"
  8094. },
  8095. "_type": 0,
  8096. "_sizeMode": 1,
  8097. "_fillType": 0,
  8098. "_fillCenter": {
  8099. "__type__": "cc.Vec2",
  8100. "x": 0,
  8101. "y": 0
  8102. },
  8103. "_fillStart": 0,
  8104. "_fillRange": 0,
  8105. "_isTrimmedMode": true,
  8106. "_atlas": null,
  8107. "_id": "aeenm98ytKBLW0FCQf8Fka"
  8108. },
  8109. {
  8110. "__type__": "cc.Node",
  8111. "_name": "level",
  8112. "_objFlags": 0,
  8113. "_parent": {
  8114. "__id__": 165
  8115. },
  8116. "_children": [],
  8117. "_active": true,
  8118. "_components": [
  8119. {
  8120. "__id__": 171
  8121. }
  8122. ],
  8123. "_prefab": null,
  8124. "_opacity": 255,
  8125. "_color": {
  8126. "__type__": "cc.Color",
  8127. "r": 255,
  8128. "g": 255,
  8129. "b": 255,
  8130. "a": 255
  8131. },
  8132. "_contentSize": {
  8133. "__type__": "cc.Size",
  8134. "width": 40,
  8135. "height": 60
  8136. },
  8137. "_anchorPoint": {
  8138. "__type__": "cc.Vec2",
  8139. "x": 0.5,
  8140. "y": 0.5
  8141. },
  8142. "_trs": {
  8143. "__type__": "TypedArray",
  8144. "ctor": "Float64Array",
  8145. "array": [
  8146. -180,
  8147. 112,
  8148. 0,
  8149. 0,
  8150. 0,
  8151. 0,
  8152. 1,
  8153. 1,
  8154. 1,
  8155. 1
  8156. ]
  8157. },
  8158. "_eulerAngles": {
  8159. "__type__": "cc.Vec3",
  8160. "x": 0,
  8161. "y": 0,
  8162. "z": 0
  8163. },
  8164. "_skewX": 0,
  8165. "_skewY": 0,
  8166. "_is3DNode": false,
  8167. "_groupIndex": 0,
  8168. "groupIndex": 0,
  8169. "_id": "c6Sgxynj5I2Z693EsqVkv7"
  8170. },
  8171. {
  8172. "__type__": "cc.Label",
  8173. "_name": "",
  8174. "_objFlags": 0,
  8175. "node": {
  8176. "__id__": 170
  8177. },
  8178. "_enabled": true,
  8179. "_materials": [],
  8180. "_srcBlendFactor": 770,
  8181. "_dstBlendFactor": 771,
  8182. "_string": "农民",
  8183. "_N$string": "农民",
  8184. "_fontSize": 40,
  8185. "_lineHeight": 40,
  8186. "_enableWrapText": true,
  8187. "_N$file": null,
  8188. "_isSystemFontUsed": true,
  8189. "_spacingX": 0,
  8190. "_batchAsBitmap": false,
  8191. "_styleFlags": 0,
  8192. "_underlineHeight": 0,
  8193. "_N$horizontalAlign": 1,
  8194. "_N$verticalAlign": 1,
  8195. "_N$fontFamily": "Arial",
  8196. "_N$overflow": 2,
  8197. "_N$cacheMode": 0,
  8198. "_id": "58uYet5HVEmqPYrxujdP0R"
  8199. },
  8200. {
  8201. "__type__": "cc.Node",
  8202. "_name": "label",
  8203. "_objFlags": 0,
  8204. "_parent": {
  8205. "__id__": 165
  8206. },
  8207. "_children": [],
  8208. "_active": true,
  8209. "_components": [
  8210. {
  8211. "__id__": 173
  8212. }
  8213. ],
  8214. "_prefab": null,
  8215. "_opacity": 255,
  8216. "_color": {
  8217. "__type__": "cc.Color",
  8218. "r": 47,
  8219. "g": 171,
  8220. "b": 243,
  8221. "a": 255
  8222. },
  8223. "_contentSize": {
  8224. "__type__": "cc.Size",
  8225. "width": 70,
  8226. "height": 40
  8227. },
  8228. "_anchorPoint": {
  8229. "__type__": "cc.Vec2",
  8230. "x": 0.5,
  8231. "y": 0.5
  8232. },
  8233. "_trs": {
  8234. "__type__": "TypedArray",
  8235. "ctor": "Float64Array",
  8236. "array": [
  8237. -156,
  8238. -60,
  8239. 0,
  8240. 0,
  8241. 0,
  8242. 0,
  8243. 1,
  8244. 1,
  8245. 1,
  8246. 1
  8247. ]
  8248. },
  8249. "_eulerAngles": {
  8250. "__type__": "cc.Vec3",
  8251. "x": 0,
  8252. "y": 0,
  8253. "z": 0
  8254. },
  8255. "_skewX": 0,
  8256. "_skewY": 0,
  8257. "_is3DNode": false,
  8258. "_groupIndex": 0,
  8259. "groupIndex": 0,
  8260. "_id": "49Em2VvQZNZ4vzuo1PcaEU"
  8261. },
  8262. {
  8263. "__type__": "cc.Label",
  8264. "_name": "",
  8265. "_objFlags": 0,
  8266. "node": {
  8267. "__id__": 172
  8268. },
  8269. "_enabled": true,
  8270. "_materials": [],
  8271. "_srcBlendFactor": 770,
  8272. "_dstBlendFactor": 771,
  8273. "_string": "得分",
  8274. "_N$string": "得分",
  8275. "_fontSize": 35,
  8276. "_lineHeight": 40,
  8277. "_enableWrapText": true,
  8278. "_N$file": null,
  8279. "_isSystemFontUsed": true,
  8280. "_spacingX": 0,
  8281. "_batchAsBitmap": false,
  8282. "_styleFlags": 0,
  8283. "_underlineHeight": 0,
  8284. "_N$horizontalAlign": 1,
  8285. "_N$verticalAlign": 1,
  8286. "_N$fontFamily": "Arial",
  8287. "_N$overflow": 0,
  8288. "_N$cacheMode": 0,
  8289. "_id": "a9V3K6Pm5HCYzUVGr90V/m"
  8290. },
  8291. {
  8292. "__type__": "cc.Node",
  8293. "_name": "score",
  8294. "_objFlags": 0,
  8295. "_parent": {
  8296. "__id__": 165
  8297. },
  8298. "_children": [],
  8299. "_active": true,
  8300. "_components": [
  8301. {
  8302. "__id__": 175
  8303. }
  8304. ],
  8305. "_prefab": null,
  8306. "_opacity": 255,
  8307. "_color": {
  8308. "__type__": "cc.Color",
  8309. "r": 47,
  8310. "g": 171,
  8311. "b": 243,
  8312. "a": 255
  8313. },
  8314. "_contentSize": {
  8315. "__type__": "cc.Size",
  8316. "width": 116.79,
  8317. "height": 40
  8318. },
  8319. "_anchorPoint": {
  8320. "__type__": "cc.Vec2",
  8321. "x": 0.5,
  8322. "y": 0.5
  8323. },
  8324. "_trs": {
  8325. "__type__": "TypedArray",
  8326. "ctor": "Float64Array",
  8327. "array": [
  8328. -40,
  8329. -61,
  8330. 0,
  8331. 0,
  8332. 0,
  8333. 0,
  8334. 1,
  8335. 1,
  8336. 1,
  8337. 1
  8338. ]
  8339. },
  8340. "_eulerAngles": {
  8341. "__type__": "cc.Vec3",
  8342. "x": 0,
  8343. "y": 0,
  8344. "z": 0
  8345. },
  8346. "_skewX": 0,
  8347. "_skewY": 0,
  8348. "_is3DNode": false,
  8349. "_groupIndex": 0,
  8350. "groupIndex": 0,
  8351. "_id": "edUFY+0tdO1LMbsqcb0R/2"
  8352. },
  8353. {
  8354. "__type__": "cc.Label",
  8355. "_name": "",
  8356. "_objFlags": 0,
  8357. "node": {
  8358. "__id__": 174
  8359. },
  8360. "_enabled": true,
  8361. "_materials": [],
  8362. "_srcBlendFactor": 770,
  8363. "_dstBlendFactor": 771,
  8364. "_string": "999999",
  8365. "_N$string": "999999",
  8366. "_fontSize": 35,
  8367. "_lineHeight": 40,
  8368. "_enableWrapText": true,
  8369. "_N$file": null,
  8370. "_isSystemFontUsed": true,
  8371. "_spacingX": 0,
  8372. "_batchAsBitmap": false,
  8373. "_styleFlags": 0,
  8374. "_underlineHeight": 0,
  8375. "_N$horizontalAlign": 1,
  8376. "_N$verticalAlign": 1,
  8377. "_N$fontFamily": "Arial",
  8378. "_N$overflow": 0,
  8379. "_N$cacheMode": 0,
  8380. "_id": "d8FSdYpcZHLrW3CWvueafq"
  8381. },
  8382. {
  8383. "__type__": "cc.Node",
  8384. "_name": "highScore",
  8385. "_objFlags": 0,
  8386. "_parent": {
  8387. "__id__": 165
  8388. },
  8389. "_children": [],
  8390. "_active": true,
  8391. "_components": [
  8392. {
  8393. "__id__": 177
  8394. }
  8395. ],
  8396. "_prefab": null,
  8397. "_opacity": 255,
  8398. "_color": {
  8399. "__type__": "cc.Color",
  8400. "r": 47,
  8401. "g": 94,
  8402. "b": 121,
  8403. "a": 255
  8404. },
  8405. "_contentSize": {
  8406. "__type__": "cc.Size",
  8407. "width": 196.67,
  8408. "height": 40
  8409. },
  8410. "_anchorPoint": {
  8411. "__type__": "cc.Vec2",
  8412. "x": 0.5,
  8413. "y": 0.5
  8414. },
  8415. "_trs": {
  8416. "__type__": "TypedArray",
  8417. "ctor": "Float64Array",
  8418. "array": [
  8419. -83,
  8420. -101,
  8421. 0,
  8422. 0,
  8423. 0,
  8424. 0,
  8425. 1,
  8426. 1,
  8427. 1,
  8428. 1
  8429. ]
  8430. },
  8431. "_eulerAngles": {
  8432. "__type__": "cc.Vec3",
  8433. "x": 0,
  8434. "y": 0,
  8435. "z": 0
  8436. },
  8437. "_skewX": 0,
  8438. "_skewY": 0,
  8439. "_is3DNode": false,
  8440. "_groupIndex": 0,
  8441. "groupIndex": 0,
  8442. "_id": "61oduxgylGGpB0quVecqqp"
  8443. },
  8444. {
  8445. "__type__": "cc.Label",
  8446. "_name": "",
  8447. "_objFlags": 0,
  8448. "node": {
  8449. "__id__": 176
  8450. },
  8451. "_enabled": true,
  8452. "_materials": [],
  8453. "_srcBlendFactor": 770,
  8454. "_dstBlendFactor": 771,
  8455. "_string": "正在获取您的最高分...",
  8456. "_N$string": "正在获取您的最高分...",
  8457. "_fontSize": 20,
  8458. "_lineHeight": 40,
  8459. "_enableWrapText": true,
  8460. "_N$file": null,
  8461. "_isSystemFontUsed": true,
  8462. "_spacingX": 0,
  8463. "_batchAsBitmap": false,
  8464. "_styleFlags": 0,
  8465. "_underlineHeight": 0,
  8466. "_N$horizontalAlign": 1,
  8467. "_N$verticalAlign": 1,
  8468. "_N$fontFamily": "Arial",
  8469. "_N$overflow": 0,
  8470. "_N$cacheMode": 0,
  8471. "_id": "f4Tz2+HcdNuKIk6OkpsOm5"
  8472. },
  8473. {
  8474. "__type__": "cc.Node",
  8475. "_name": "sprite",
  8476. "_objFlags": 0,
  8477. "_parent": {
  8478. "__id__": 165
  8479. },
  8480. "_children": [],
  8481. "_active": true,
  8482. "_components": [
  8483. {
  8484. "__id__": 179
  8485. }
  8486. ],
  8487. "_prefab": null,
  8488. "_opacity": 255,
  8489. "_color": {
  8490. "__type__": "cc.Color",
  8491. "r": 255,
  8492. "g": 255,
  8493. "b": 255,
  8494. "a": 255
  8495. },
  8496. "_contentSize": {
  8497. "__type__": "cc.Size",
  8498. "width": 243,
  8499. "height": 270
  8500. },
  8501. "_anchorPoint": {
  8502. "__type__": "cc.Vec2",
  8503. "x": 0.5,
  8504. "y": 0
  8505. },
  8506. "_trs": {
  8507. "__type__": "TypedArray",
  8508. "ctor": "Float64Array",
  8509. "array": [
  8510. -85,
  8511. -40,
  8512. 0,
  8513. 0,
  8514. 0,
  8515. 0,
  8516. 1,
  8517. 0.8,
  8518. 0.8,
  8519. 1
  8520. ]
  8521. },
  8522. "_eulerAngles": {
  8523. "__type__": "cc.Vec3",
  8524. "x": 0,
  8525. "y": 0,
  8526. "z": 0
  8527. },
  8528. "_skewX": 0,
  8529. "_skewY": 0,
  8530. "_is3DNode": false,
  8531. "_groupIndex": 0,
  8532. "groupIndex": 0,
  8533. "_id": "52rSoWKj9BRp2MoWmyTgbw"
  8534. },
  8535. {
  8536. "__type__": "dragonBones.ArmatureDisplay",
  8537. "_name": "",
  8538. "_objFlags": 0,
  8539. "node": {
  8540. "__id__": 178
  8541. },
  8542. "_enabled": true,
  8543. "_materials": [],
  8544. "_armatureName": "Armature",
  8545. "_animationName": "",
  8546. "_preCacheMode": 0,
  8547. "_cacheMode": 0,
  8548. "playTimes": -1,
  8549. "premultipliedAlpha": false,
  8550. "_armatureKey": "aa8775e6-9326-4538-aa85-3fb04d31ee53#b08db862-1d6e-4f61-a268-d81f24a1bd9e",
  8551. "_accTime": 0,
  8552. "_playCount": 0,
  8553. "_frameCache": null,
  8554. "_curFrame": null,
  8555. "_playing": false,
  8556. "_armatureCache": null,
  8557. "_N$dragonAsset": null,
  8558. "_N$dragonAtlasAsset": null,
  8559. "_N$_defaultArmatureIndex": 0,
  8560. "_N$_animationIndex": 0,
  8561. "_N$_defaultCacheMode": 0,
  8562. "_N$timeScale": 0.5,
  8563. "_N$debugBones": false,
  8564. "_N$enableBatch": false,
  8565. "_id": "33rjB9XeJDpoTy0XOQmd6Z"
  8566. },
  8567. {
  8568. "__type__": "cc.Node",
  8569. "_name": "otherGame",
  8570. "_objFlags": 0,
  8571. "_parent": {
  8572. "__id__": 109
  8573. },
  8574. "_children": [
  8575. {
  8576. "__id__": 181
  8577. },
  8578. {
  8579. "__id__": 183
  8580. }
  8581. ],
  8582. "_active": true,
  8583. "_components": [],
  8584. "_prefab": null,
  8585. "_opacity": 255,
  8586. "_color": {
  8587. "__type__": "cc.Color",
  8588. "r": 255,
  8589. "g": 255,
  8590. "b": 255,
  8591. "a": 255
  8592. },
  8593. "_contentSize": {
  8594. "__type__": "cc.Size",
  8595. "width": 0,
  8596. "height": 0
  8597. },
  8598. "_anchorPoint": {
  8599. "__type__": "cc.Vec2",
  8600. "x": 0.5,
  8601. "y": 0.5
  8602. },
  8603. "_trs": {
  8604. "__type__": "TypedArray",
  8605. "ctor": "Float64Array",
  8606. "array": [
  8607. 0,
  8608. -582,
  8609. 0,
  8610. 0,
  8611. 0,
  8612. 0,
  8613. 1,
  8614. 1,
  8615. 1,
  8616. 1
  8617. ]
  8618. },
  8619. "_eulerAngles": {
  8620. "__type__": "cc.Vec3",
  8621. "x": 0,
  8622. "y": 0,
  8623. "z": 0
  8624. },
  8625. "_skewX": 0,
  8626. "_skewY": 0,
  8627. "_is3DNode": false,
  8628. "_groupIndex": 0,
  8629. "groupIndex": 0,
  8630. "_id": "bbKK5n/2VFr4DM0uXgdsev"
  8631. },
  8632. {
  8633. "__type__": "cc.Node",
  8634. "_name": "New Label",
  8635. "_objFlags": 0,
  8636. "_parent": {
  8637. "__id__": 180
  8638. },
  8639. "_children": [],
  8640. "_active": true,
  8641. "_components": [
  8642. {
  8643. "__id__": 182
  8644. }
  8645. ],
  8646. "_prefab": null,
  8647. "_opacity": 255,
  8648. "_color": {
  8649. "__type__": "cc.Color",
  8650. "r": 255,
  8651. "g": 255,
  8652. "b": 255,
  8653. "a": 255
  8654. },
  8655. "_contentSize": {
  8656. "__type__": "cc.Size",
  8657. "width": 226.68,
  8658. "height": 40
  8659. },
  8660. "_anchorPoint": {
  8661. "__type__": "cc.Vec2",
  8662. "x": 0.5,
  8663. "y": 0.5
  8664. },
  8665. "_trs": {
  8666. "__type__": "TypedArray",
  8667. "ctor": "Float64Array",
  8668. "array": [
  8669. 0,
  8670. 93,
  8671. 0,
  8672. 0,
  8673. 0,
  8674. 0,
  8675. 1,
  8676. 1,
  8677. 1,
  8678. 1
  8679. ]
  8680. },
  8681. "_eulerAngles": {
  8682. "__type__": "cc.Vec3",
  8683. "x": 0,
  8684. "y": 0,
  8685. "z": 0
  8686. },
  8687. "_skewX": 0,
  8688. "_skewY": 0,
  8689. "_is3DNode": false,
  8690. "_groupIndex": 0,
  8691. "groupIndex": 0,
  8692. "_id": "8eyrznyBlLk61CYguVUcxl"
  8693. },
  8694. {
  8695. "__type__": "cc.Label",
  8696. "_name": "",
  8697. "_objFlags": 0,
  8698. "node": {
  8699. "__id__": 181
  8700. },
  8701. "_enabled": true,
  8702. "_materials": [],
  8703. "_srcBlendFactor": 770,
  8704. "_dstBlendFactor": 771,
  8705. "_string": "试试其他小游戏?",
  8706. "_N$string": "试试其他小游戏?",
  8707. "_fontSize": 30,
  8708. "_lineHeight": 40,
  8709. "_enableWrapText": true,
  8710. "_N$file": null,
  8711. "_isSystemFontUsed": true,
  8712. "_spacingX": 0,
  8713. "_batchAsBitmap": false,
  8714. "_styleFlags": 0,
  8715. "_underlineHeight": 0,
  8716. "_N$horizontalAlign": 1,
  8717. "_N$verticalAlign": 1,
  8718. "_N$fontFamily": "Arial",
  8719. "_N$overflow": 0,
  8720. "_N$cacheMode": 0,
  8721. "_id": "99rwpgXbxHDYoAiHd/VBku"
  8722. },
  8723. {
  8724. "__type__": "cc.Node",
  8725. "_name": "New Node",
  8726. "_objFlags": 0,
  8727. "_parent": {
  8728. "__id__": 180
  8729. },
  8730. "_children": [],
  8731. "_active": true,
  8732. "_components": [
  8733. {
  8734. "__id__": 184
  8735. }
  8736. ],
  8737. "_prefab": null,
  8738. "_opacity": 255,
  8739. "_color": {
  8740. "__type__": "cc.Color",
  8741. "r": 255,
  8742. "g": 255,
  8743. "b": 255,
  8744. "a": 255
  8745. },
  8746. "_contentSize": {
  8747. "__type__": "cc.Size",
  8748. "width": 280,
  8749. "height": 150
  8750. },
  8751. "_anchorPoint": {
  8752. "__type__": "cc.Vec2",
  8753. "x": 0.5,
  8754. "y": 0.5
  8755. },
  8756. "_trs": {
  8757. "__type__": "TypedArray",
  8758. "ctor": "Float64Array",
  8759. "array": [
  8760. 0,
  8761. 0,
  8762. 0,
  8763. 0,
  8764. 0,
  8765. 0,
  8766. 1,
  8767. 1,
  8768. 1,
  8769. 1
  8770. ]
  8771. },
  8772. "_eulerAngles": {
  8773. "__type__": "cc.Vec3",
  8774. "x": 0,
  8775. "y": 0,
  8776. "z": 0
  8777. },
  8778. "_skewX": 0,
  8779. "_skewY": 0,
  8780. "_is3DNode": false,
  8781. "_groupIndex": 0,
  8782. "groupIndex": 0,
  8783. "_id": "45gXHtLEBOkrOdvNgXMowt"
  8784. },
  8785. {
  8786. "__type__": "cc.Layout",
  8787. "_name": "",
  8788. "_objFlags": 0,
  8789. "node": {
  8790. "__id__": 183
  8791. },
  8792. "_enabled": true,
  8793. "_layoutSize": {
  8794. "__type__": "cc.Size",
  8795. "width": 280,
  8796. "height": 150
  8797. },
  8798. "_resize": 1,
  8799. "_N$layoutType": 1,
  8800. "_N$cellSize": {
  8801. "__type__": "cc.Size",
  8802. "width": 40,
  8803. "height": 40
  8804. },
  8805. "_N$startAxis": 0,
  8806. "_N$paddingLeft": 0,
  8807. "_N$paddingRight": 0,
  8808. "_N$paddingTop": 0,
  8809. "_N$paddingBottom": 0,
  8810. "_N$spacingX": 40,
  8811. "_N$spacingY": 0,
  8812. "_N$verticalDirection": 1,
  8813. "_N$horizontalDirection": 0,
  8814. "_N$affectedByScale": false,
  8815. "_id": "65kT8MMzxPfqleMJ33kL5b"
  8816. },
  8817. {
  8818. "__type__": "cc.Node",
  8819. "_name": "back",
  8820. "_objFlags": 0,
  8821. "_parent": {
  8822. "__id__": 109
  8823. },
  8824. "_children": [],
  8825. "_active": true,
  8826. "_components": [
  8827. {
  8828. "__id__": 186
  8829. },
  8830. {
  8831. "__id__": 188
  8832. }
  8833. ],
  8834. "_prefab": null,
  8835. "_opacity": 255,
  8836. "_color": {
  8837. "__type__": "cc.Color",
  8838. "r": 255,
  8839. "g": 255,
  8840. "b": 255,
  8841. "a": 255
  8842. },
  8843. "_contentSize": {
  8844. "__type__": "cc.Size",
  8845. "width": 54,
  8846. "height": 54
  8847. },
  8848. "_anchorPoint": {
  8849. "__type__": "cc.Vec2",
  8850. "x": 0.5,
  8851. "y": 0.5
  8852. },
  8853. "_trs": {
  8854. "__type__": "TypedArray",
  8855. "ctor": "Float64Array",
  8856. "array": [
  8857. -200,
  8858. 240,
  8859. 0,
  8860. 0,
  8861. 0,
  8862. 0,
  8863. 1,
  8864. 1,
  8865. 1,
  8866. 1
  8867. ]
  8868. },
  8869. "_eulerAngles": {
  8870. "__type__": "cc.Vec3",
  8871. "x": 0,
  8872. "y": 0,
  8873. "z": 0
  8874. },
  8875. "_skewX": 0,
  8876. "_skewY": 0,
  8877. "_is3DNode": false,
  8878. "_groupIndex": 0,
  8879. "groupIndex": 0,
  8880. "_id": "ffn/DkCeRPLIxvpt8vPD2J"
  8881. },
  8882. {
  8883. "__type__": "cc.Button",
  8884. "_name": "",
  8885. "_objFlags": 0,
  8886. "node": {
  8887. "__id__": 185
  8888. },
  8889. "_enabled": true,
  8890. "_normalMaterial": null,
  8891. "_grayMaterial": null,
  8892. "duration": 0.1,
  8893. "zoomScale": 1.2,
  8894. "clickEvents": [
  8895. {
  8896. "__id__": 187
  8897. }
  8898. ],
  8899. "_N$interactable": true,
  8900. "_N$enableAutoGrayEffect": false,
  8901. "_N$transition": 0,
  8902. "transition": 0,
  8903. "_N$normalColor": {
  8904. "__type__": "cc.Color",
  8905. "r": 214,
  8906. "g": 214,
  8907. "b": 214,
  8908. "a": 255
  8909. },
  8910. "_N$pressedColor": {
  8911. "__type__": "cc.Color",
  8912. "r": 211,
  8913. "g": 211,
  8914. "b": 211,
  8915. "a": 255
  8916. },
  8917. "pressedColor": {
  8918. "__type__": "cc.Color",
  8919. "r": 211,
  8920. "g": 211,
  8921. "b": 211,
  8922. "a": 255
  8923. },
  8924. "_N$hoverColor": {
  8925. "__type__": "cc.Color",
  8926. "r": 255,
  8927. "g": 255,
  8928. "b": 255,
  8929. "a": 255
  8930. },
  8931. "hoverColor": {
  8932. "__type__": "cc.Color",
  8933. "r": 255,
  8934. "g": 255,
  8935. "b": 255,
  8936. "a": 255
  8937. },
  8938. "_N$disabledColor": {
  8939. "__type__": "cc.Color",
  8940. "r": 124,
  8941. "g": 124,
  8942. "b": 124,
  8943. "a": 255
  8944. },
  8945. "_N$normalSprite": null,
  8946. "_N$pressedSprite": null,
  8947. "pressedSprite": null,
  8948. "_N$hoverSprite": null,
  8949. "hoverSprite": null,
  8950. "_N$disabledSprite": null,
  8951. "_N$target": null,
  8952. "_id": "6bWLl1679KTq6mddv3y0UB"
  8953. },
  8954. {
  8955. "__type__": "cc.ClickEvent",
  8956. "target": {
  8957. "__id__": 18
  8958. },
  8959. "component": "",
  8960. "_componentId": "feefcb/VXtFp4L+Zqa6CrBZ",
  8961. "handler": "lateStart",
  8962. "customEventData": ""
  8963. },
  8964. {
  8965. "__type__": "cc.Sprite",
  8966. "_name": "",
  8967. "_objFlags": 0,
  8968. "node": {
  8969. "__id__": 185
  8970. },
  8971. "_enabled": true,
  8972. "_materials": [],
  8973. "_srcBlendFactor": 770,
  8974. "_dstBlendFactor": 771,
  8975. "_spriteFrame": {
  8976. "__uuid__": "fa4c1170-9b3a-49de-9f3c-a2accdbb6fbe"
  8977. },
  8978. "_type": 0,
  8979. "_sizeMode": 1,
  8980. "_fillType": 0,
  8981. "_fillCenter": {
  8982. "__type__": "cc.Vec2",
  8983. "x": 0,
  8984. "y": 0
  8985. },
  8986. "_fillStart": 0,
  8987. "_fillRange": 0,
  8988. "_isTrimmedMode": true,
  8989. "_atlas": null,
  8990. "_id": "b9/rqfaeFJ9rhyr8fOTMVN"
  8991. },
  8992. {
  8993. "__type__": "cc.Node",
  8994. "_name": "5reliveDialog",
  8995. "_objFlags": 0,
  8996. "_parent": {
  8997. "__id__": 105
  8998. },
  8999. "_children": [
  9000. {
  9001. "__id__": 190
  9002. },
  9003. {
  9004. "__id__": 213
  9005. }
  9006. ],
  9007. "_active": false,
  9008. "_components": [],
  9009. "_prefab": null,
  9010. "_opacity": 255,
  9011. "_color": {
  9012. "__type__": "cc.Color",
  9013. "r": 255,
  9014. "g": 255,
  9015. "b": 255,
  9016. "a": 255
  9017. },
  9018. "_contentSize": {
  9019. "__type__": "cc.Size",
  9020. "width": 0,
  9021. "height": 0
  9022. },
  9023. "_anchorPoint": {
  9024. "__type__": "cc.Vec2",
  9025. "x": 0.5,
  9026. "y": 0.5
  9027. },
  9028. "_trs": {
  9029. "__type__": "TypedArray",
  9030. "ctor": "Float64Array",
  9031. "array": [
  9032. 0,
  9033. 0,
  9034. 0,
  9035. 0,
  9036. 0,
  9037. 0,
  9038. 1,
  9039. 1,
  9040. 1,
  9041. 1
  9042. ]
  9043. },
  9044. "_eulerAngles": {
  9045. "__type__": "cc.Vec3",
  9046. "x": 0,
  9047. "y": 0,
  9048. "z": 0
  9049. },
  9050. "_skewX": 0,
  9051. "_skewY": 0,
  9052. "_is3DNode": false,
  9053. "_groupIndex": 0,
  9054. "groupIndex": 0,
  9055. "_id": "f3ThTJah5I+6hB+EufIxYQ"
  9056. },
  9057. {
  9058. "__type__": "cc.Node",
  9059. "_name": "askRevive",
  9060. "_objFlags": 0,
  9061. "_parent": {
  9062. "__id__": 189
  9063. },
  9064. "_children": [
  9065. {
  9066. "__id__": 191
  9067. },
  9068. {
  9069. "__id__": 193
  9070. },
  9071. {
  9072. "__id__": 202
  9073. },
  9074. {
  9075. "__id__": 207
  9076. }
  9077. ],
  9078. "_active": true,
  9079. "_components": [],
  9080. "_prefab": null,
  9081. "_opacity": 255,
  9082. "_color": {
  9083. "__type__": "cc.Color",
  9084. "r": 255,
  9085. "g": 255,
  9086. "b": 255,
  9087. "a": 255
  9088. },
  9089. "_contentSize": {
  9090. "__type__": "cc.Size",
  9091. "width": 0,
  9092. "height": 0
  9093. },
  9094. "_anchorPoint": {
  9095. "__type__": "cc.Vec2",
  9096. "x": 0.5,
  9097. "y": 0.5
  9098. },
  9099. "_trs": {
  9100. "__type__": "TypedArray",
  9101. "ctor": "Float64Array",
  9102. "array": [
  9103. 0,
  9104. 0,
  9105. 0,
  9106. 0,
  9107. 0,
  9108. 0,
  9109. 1,
  9110. 1,
  9111. 1,
  9112. 1
  9113. ]
  9114. },
  9115. "_eulerAngles": {
  9116. "__type__": "cc.Vec3",
  9117. "x": 0,
  9118. "y": 0,
  9119. "z": 0
  9120. },
  9121. "_skewX": 0,
  9122. "_skewY": 0,
  9123. "_is3DNode": false,
  9124. "_groupIndex": 0,
  9125. "groupIndex": 0,
  9126. "_id": "21mj1ZBbFCuoFo1KvGbVfR"
  9127. },
  9128. {
  9129. "__type__": "cc.Node",
  9130. "_name": "New Label",
  9131. "_objFlags": 0,
  9132. "_parent": {
  9133. "__id__": 190
  9134. },
  9135. "_children": [],
  9136. "_active": true,
  9137. "_components": [
  9138. {
  9139. "__id__": 192
  9140. }
  9141. ],
  9142. "_prefab": null,
  9143. "_opacity": 255,
  9144. "_color": {
  9145. "__type__": "cc.Color",
  9146. "r": 255,
  9147. "g": 255,
  9148. "b": 255,
  9149. "a": 255
  9150. },
  9151. "_contentSize": {
  9152. "__type__": "cc.Size",
  9153. "width": 540,
  9154. "height": 88.2
  9155. },
  9156. "_anchorPoint": {
  9157. "__type__": "cc.Vec2",
  9158. "x": 0.5,
  9159. "y": 0.5
  9160. },
  9161. "_trs": {
  9162. "__type__": "TypedArray",
  9163. "ctor": "Float64Array",
  9164. "array": [
  9165. 0,
  9166. 327,
  9167. 0,
  9168. 0,
  9169. 0,
  9170. 0,
  9171. 1,
  9172. 1,
  9173. 1,
  9174. 1
  9175. ]
  9176. },
  9177. "_eulerAngles": {
  9178. "__type__": "cc.Vec3",
  9179. "x": 0,
  9180. "y": 0,
  9181. "z": 0
  9182. },
  9183. "_skewX": 0,
  9184. "_skewY": 0,
  9185. "_is3DNode": false,
  9186. "_groupIndex": 0,
  9187. "groupIndex": 0,
  9188. "_id": "deMrN00J1Fn5Rc7hvjOZ6v"
  9189. },
  9190. {
  9191. "__type__": "cc.Label",
  9192. "_name": "",
  9193. "_objFlags": 0,
  9194. "node": {
  9195. "__id__": 191
  9196. },
  9197. "_enabled": true,
  9198. "_materials": [
  9199. {
  9200. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  9201. }
  9202. ],
  9203. "_srcBlendFactor": 770,
  9204. "_dstBlendFactor": 771,
  9205. "_string": "步数用尽,仕途到头",
  9206. "_N$string": "步数用尽,仕途到头",
  9207. "_fontSize": 60,
  9208. "_lineHeight": 70,
  9209. "_enableWrapText": true,
  9210. "_N$file": null,
  9211. "_isSystemFontUsed": true,
  9212. "_spacingX": 0,
  9213. "_batchAsBitmap": false,
  9214. "_styleFlags": 0,
  9215. "_underlineHeight": 0,
  9216. "_N$horizontalAlign": 1,
  9217. "_N$verticalAlign": 1,
  9218. "_N$fontFamily": "Arial",
  9219. "_N$overflow": 0,
  9220. "_N$cacheMode": 0,
  9221. "_id": "9eGgzxjWpKj5annVQjuZ6Q"
  9222. },
  9223. {
  9224. "__type__": "cc.Node",
  9225. "_name": "numBg",
  9226. "_objFlags": 0,
  9227. "_parent": {
  9228. "__id__": 190
  9229. },
  9230. "_children": [
  9231. {
  9232. "__id__": 194
  9233. },
  9234. {
  9235. "__id__": 196
  9236. },
  9237. {
  9238. "__id__": 200
  9239. }
  9240. ],
  9241. "_active": true,
  9242. "_components": [],
  9243. "_prefab": null,
  9244. "_opacity": 200,
  9245. "_color": {
  9246. "__type__": "cc.Color",
  9247. "r": 255,
  9248. "g": 255,
  9249. "b": 255,
  9250. "a": 255
  9251. },
  9252. "_contentSize": {
  9253. "__type__": "cc.Size",
  9254. "width": 303,
  9255. "height": 303
  9256. },
  9257. "_anchorPoint": {
  9258. "__type__": "cc.Vec2",
  9259. "x": 0.5,
  9260. "y": 0.5
  9261. },
  9262. "_trs": {
  9263. "__type__": "TypedArray",
  9264. "ctor": "Float64Array",
  9265. "array": [
  9266. 0,
  9267. 93,
  9268. 0,
  9269. 0,
  9270. 0,
  9271. 0,
  9272. 1,
  9273. 1,
  9274. 1,
  9275. 1
  9276. ]
  9277. },
  9278. "_eulerAngles": {
  9279. "__type__": "cc.Vec3",
  9280. "x": 0,
  9281. "y": 0,
  9282. "z": 0
  9283. },
  9284. "_skewX": 0,
  9285. "_skewY": 0,
  9286. "_is3DNode": false,
  9287. "_groupIndex": 0,
  9288. "groupIndex": 0,
  9289. "_id": "16f4m3toRN7JCGbqGUn4/y"
  9290. },
  9291. {
  9292. "__type__": "cc.Node",
  9293. "_name": "sprite",
  9294. "_objFlags": 0,
  9295. "_parent": {
  9296. "__id__": 193
  9297. },
  9298. "_children": [],
  9299. "_active": true,
  9300. "_components": [
  9301. {
  9302. "__id__": 195
  9303. }
  9304. ],
  9305. "_prefab": null,
  9306. "_opacity": 255,
  9307. "_color": {
  9308. "__type__": "cc.Color",
  9309. "r": 255,
  9310. "g": 255,
  9311. "b": 255,
  9312. "a": 255
  9313. },
  9314. "_contentSize": {
  9315. "__type__": "cc.Size",
  9316. "width": 305,
  9317. "height": 305
  9318. },
  9319. "_anchorPoint": {
  9320. "__type__": "cc.Vec2",
  9321. "x": 0.5,
  9322. "y": 0.5
  9323. },
  9324. "_trs": {
  9325. "__type__": "TypedArray",
  9326. "ctor": "Float64Array",
  9327. "array": [
  9328. 0,
  9329. 0,
  9330. 0,
  9331. 0,
  9332. 0,
  9333. 0,
  9334. 1,
  9335. 1,
  9336. 1,
  9337. 1
  9338. ]
  9339. },
  9340. "_eulerAngles": {
  9341. "__type__": "cc.Vec3",
  9342. "x": 0,
  9343. "y": 0,
  9344. "z": 0
  9345. },
  9346. "_skewX": 0,
  9347. "_skewY": 0,
  9348. "_is3DNode": false,
  9349. "_groupIndex": 0,
  9350. "groupIndex": 0,
  9351. "_id": "a1N2vmL8dIGqsRi3+m4KMf"
  9352. },
  9353. {
  9354. "__type__": "cc.Sprite",
  9355. "_name": "",
  9356. "_objFlags": 0,
  9357. "node": {
  9358. "__id__": 194
  9359. },
  9360. "_enabled": true,
  9361. "_materials": [
  9362. {
  9363. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  9364. }
  9365. ],
  9366. "_srcBlendFactor": 770,
  9367. "_dstBlendFactor": 771,
  9368. "_spriteFrame": {
  9369. "__uuid__": "40255fff-6fe6-4ab8-a1ca-abc211657430"
  9370. },
  9371. "_type": 3,
  9372. "_sizeMode": 2,
  9373. "_fillType": 2,
  9374. "_fillCenter": {
  9375. "__type__": "cc.Vec2",
  9376. "x": 0.5,
  9377. "y": 0.5
  9378. },
  9379. "_fillStart": 0.25,
  9380. "_fillRange": 0.8,
  9381. "_isTrimmedMode": true,
  9382. "_atlas": null,
  9383. "_id": "0dyYbQmJ9KC6jLOyq+Ldl8"
  9384. },
  9385. {
  9386. "__type__": "cc.Node",
  9387. "_name": "New Sprite",
  9388. "_objFlags": 0,
  9389. "_parent": {
  9390. "__id__": 193
  9391. },
  9392. "_children": [
  9393. {
  9394. "__id__": 197
  9395. }
  9396. ],
  9397. "_active": true,
  9398. "_components": [
  9399. {
  9400. "__id__": 199
  9401. }
  9402. ],
  9403. "_prefab": null,
  9404. "_opacity": 255,
  9405. "_color": {
  9406. "__type__": "cc.Color",
  9407. "r": 255,
  9408. "g": 255,
  9409. "b": 255,
  9410. "a": 255
  9411. },
  9412. "_contentSize": {
  9413. "__type__": "cc.Size",
  9414. "width": 257,
  9415. "height": 257
  9416. },
  9417. "_anchorPoint": {
  9418. "__type__": "cc.Vec2",
  9419. "x": 0.5,
  9420. "y": 0.5
  9421. },
  9422. "_trs": {
  9423. "__type__": "TypedArray",
  9424. "ctor": "Float64Array",
  9425. "array": [
  9426. 0,
  9427. 0,
  9428. 0,
  9429. 0,
  9430. 0,
  9431. 0,
  9432. 1,
  9433. 1,
  9434. 1,
  9435. 1
  9436. ]
  9437. },
  9438. "_eulerAngles": {
  9439. "__type__": "cc.Vec3",
  9440. "x": 0,
  9441. "y": 0,
  9442. "z": 0
  9443. },
  9444. "_skewX": 0,
  9445. "_skewY": 0,
  9446. "_is3DNode": false,
  9447. "_groupIndex": 0,
  9448. "groupIndex": 0,
  9449. "_id": "e98LuNBDJLPJUQDDNMY50F"
  9450. },
  9451. {
  9452. "__type__": "cc.Node",
  9453. "_name": "New Sprite(Splash)",
  9454. "_objFlags": 0,
  9455. "_parent": {
  9456. "__id__": 196
  9457. },
  9458. "_children": [],
  9459. "_active": true,
  9460. "_components": [
  9461. {
  9462. "__id__": 198
  9463. }
  9464. ],
  9465. "_prefab": null,
  9466. "_opacity": 255,
  9467. "_color": {
  9468. "__type__": "cc.Color",
  9469. "r": 255,
  9470. "g": 255,
  9471. "b": 255,
  9472. "a": 255
  9473. },
  9474. "_contentSize": {
  9475. "__type__": "cc.Size",
  9476. "width": 257,
  9477. "height": 257
  9478. },
  9479. "_anchorPoint": {
  9480. "__type__": "cc.Vec2",
  9481. "x": 0.5,
  9482. "y": 0.5
  9483. },
  9484. "_trs": {
  9485. "__type__": "TypedArray",
  9486. "ctor": "Float64Array",
  9487. "array": [
  9488. 0,
  9489. 0,
  9490. 0,
  9491. 0,
  9492. 0,
  9493. 0,
  9494. 1,
  9495. 1,
  9496. 1,
  9497. 1
  9498. ]
  9499. },
  9500. "_eulerAngles": {
  9501. "__type__": "cc.Vec3",
  9502. "x": 0,
  9503. "y": 0,
  9504. "z": 0
  9505. },
  9506. "_skewX": 0,
  9507. "_skewY": 0,
  9508. "_is3DNode": false,
  9509. "_groupIndex": 0,
  9510. "groupIndex": 0,
  9511. "_id": "8cl08qMZtFGZo39TwaySE2"
  9512. },
  9513. {
  9514. "__type__": "cc.Sprite",
  9515. "_name": "",
  9516. "_objFlags": 0,
  9517. "node": {
  9518. "__id__": 197
  9519. },
  9520. "_enabled": true,
  9521. "_materials": [
  9522. {
  9523. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  9524. }
  9525. ],
  9526. "_srcBlendFactor": 770,
  9527. "_dstBlendFactor": 771,
  9528. "_spriteFrame": {
  9529. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  9530. },
  9531. "_type": 0,
  9532. "_sizeMode": 0,
  9533. "_fillType": 0,
  9534. "_fillCenter": {
  9535. "__type__": "cc.Vec2",
  9536. "x": 0,
  9537. "y": 0
  9538. },
  9539. "_fillStart": 0,
  9540. "_fillRange": 0,
  9541. "_isTrimmedMode": true,
  9542. "_atlas": null,
  9543. "_id": "a7oW8IrvlDCLcxotd7de/W"
  9544. },
  9545. {
  9546. "__type__": "cc.Mask",
  9547. "_name": "",
  9548. "_objFlags": 0,
  9549. "node": {
  9550. "__id__": 196
  9551. },
  9552. "_enabled": true,
  9553. "_materials": [
  9554. {
  9555. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  9556. }
  9557. ],
  9558. "_spriteFrame": null,
  9559. "_type": 1,
  9560. "_segments": 64,
  9561. "_N$alphaThreshold": 0.1,
  9562. "_N$inverted": false,
  9563. "_id": "84Lx2wgrZG05jwaYC/S/DA"
  9564. },
  9565. {
  9566. "__type__": "cc.Node",
  9567. "_name": "num",
  9568. "_objFlags": 0,
  9569. "_parent": {
  9570. "__id__": 193
  9571. },
  9572. "_children": [],
  9573. "_active": true,
  9574. "_components": [
  9575. {
  9576. "__id__": 201
  9577. }
  9578. ],
  9579. "_prefab": null,
  9580. "_opacity": 255,
  9581. "_color": {
  9582. "__type__": "cc.Color",
  9583. "r": 105,
  9584. "g": 172,
  9585. "b": 255,
  9586. "a": 255
  9587. },
  9588. "_contentSize": {
  9589. "__type__": "cc.Size",
  9590. "width": 55.62,
  9591. "height": 126
  9592. },
  9593. "_anchorPoint": {
  9594. "__type__": "cc.Vec2",
  9595. "x": 0.5,
  9596. "y": 0.5
  9597. },
  9598. "_trs": {
  9599. "__type__": "TypedArray",
  9600. "ctor": "Float64Array",
  9601. "array": [
  9602. 0,
  9603. 0,
  9604. 0,
  9605. 0,
  9606. 0,
  9607. 0,
  9608. 1,
  9609. 1,
  9610. 1,
  9611. 1
  9612. ]
  9613. },
  9614. "_eulerAngles": {
  9615. "__type__": "cc.Vec3",
  9616. "x": 0,
  9617. "y": 0,
  9618. "z": 0
  9619. },
  9620. "_skewX": 0,
  9621. "_skewY": 0,
  9622. "_is3DNode": false,
  9623. "_groupIndex": 0,
  9624. "groupIndex": 0,
  9625. "_id": "9eSBYlwCFCs7po89xziFh6"
  9626. },
  9627. {
  9628. "__type__": "cc.Label",
  9629. "_name": "",
  9630. "_objFlags": 0,
  9631. "node": {
  9632. "__id__": 200
  9633. },
  9634. "_enabled": true,
  9635. "_materials": [
  9636. {
  9637. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  9638. }
  9639. ],
  9640. "_srcBlendFactor": 770,
  9641. "_dstBlendFactor": 771,
  9642. "_string": "9",
  9643. "_N$string": "9",
  9644. "_fontSize": 100,
  9645. "_lineHeight": 100,
  9646. "_enableWrapText": true,
  9647. "_N$file": null,
  9648. "_isSystemFontUsed": true,
  9649. "_spacingX": 0,
  9650. "_batchAsBitmap": false,
  9651. "_styleFlags": 0,
  9652. "_underlineHeight": 0,
  9653. "_N$horizontalAlign": 1,
  9654. "_N$verticalAlign": 1,
  9655. "_N$fontFamily": "Arial",
  9656. "_N$overflow": 0,
  9657. "_N$cacheMode": 0,
  9658. "_id": "30WSEs1tdEiaHaQMVGgdYS"
  9659. },
  9660. {
  9661. "__type__": "cc.Node",
  9662. "_name": "按钮",
  9663. "_objFlags": 0,
  9664. "_parent": {
  9665. "__id__": 190
  9666. },
  9667. "_children": [],
  9668. "_active": true,
  9669. "_components": [
  9670. {
  9671. "__id__": 203
  9672. },
  9673. {
  9674. "__id__": 204
  9675. }
  9676. ],
  9677. "_prefab": null,
  9678. "_opacity": 255,
  9679. "_color": {
  9680. "__type__": "cc.Color",
  9681. "r": 255,
  9682. "g": 255,
  9683. "b": 255,
  9684. "a": 255
  9685. },
  9686. "_contentSize": {
  9687. "__type__": "cc.Size",
  9688. "width": 256,
  9689. "height": 86
  9690. },
  9691. "_anchorPoint": {
  9692. "__type__": "cc.Vec2",
  9693. "x": 0.5,
  9694. "y": 0.5
  9695. },
  9696. "_trs": {
  9697. "__type__": "TypedArray",
  9698. "ctor": "Float64Array",
  9699. "array": [
  9700. 0,
  9701. -172,
  9702. 0,
  9703. 0,
  9704. 0,
  9705. 0,
  9706. 1,
  9707. 1,
  9708. 1,
  9709. 1
  9710. ]
  9711. },
  9712. "_eulerAngles": {
  9713. "__type__": "cc.Vec3",
  9714. "x": 0,
  9715. "y": 0,
  9716. "z": 0
  9717. },
  9718. "_skewX": 0,
  9719. "_skewY": 0,
  9720. "_is3DNode": false,
  9721. "_groupIndex": 0,
  9722. "groupIndex": 0,
  9723. "_id": "4c8baDKJBEtZrHRIeyUGFF"
  9724. },
  9725. {
  9726. "__type__": "cc.Sprite",
  9727. "_name": "",
  9728. "_objFlags": 0,
  9729. "node": {
  9730. "__id__": 202
  9731. },
  9732. "_enabled": true,
  9733. "_materials": [
  9734. {
  9735. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  9736. }
  9737. ],
  9738. "_srcBlendFactor": 770,
  9739. "_dstBlendFactor": 771,
  9740. "_spriteFrame": {
  9741. "__uuid__": "07cb5ff6-4cfc-490d-bca2-160ce6f958d9"
  9742. },
  9743. "_type": 0,
  9744. "_sizeMode": 1,
  9745. "_fillType": 0,
  9746. "_fillCenter": {
  9747. "__type__": "cc.Vec2",
  9748. "x": 0,
  9749. "y": 0
  9750. },
  9751. "_fillStart": 0,
  9752. "_fillRange": 0,
  9753. "_isTrimmedMode": true,
  9754. "_atlas": null,
  9755. "_id": "dcaxOzGlxIEJNtwE33/jgD"
  9756. },
  9757. {
  9758. "__type__": "cc.Button",
  9759. "_name": "",
  9760. "_objFlags": 0,
  9761. "node": {
  9762. "__id__": 202
  9763. },
  9764. "_enabled": true,
  9765. "_normalMaterial": null,
  9766. "_grayMaterial": null,
  9767. "duration": 0.1,
  9768. "zoomScale": 1.2,
  9769. "clickEvents": [
  9770. {
  9771. "__id__": 205
  9772. },
  9773. {
  9774. "__id__": 206
  9775. }
  9776. ],
  9777. "_N$interactable": true,
  9778. "_N$enableAutoGrayEffect": false,
  9779. "_N$transition": 0,
  9780. "transition": 0,
  9781. "_N$normalColor": {
  9782. "__type__": "cc.Color",
  9783. "r": 214,
  9784. "g": 214,
  9785. "b": 214,
  9786. "a": 255
  9787. },
  9788. "_N$pressedColor": {
  9789. "__type__": "cc.Color",
  9790. "r": 211,
  9791. "g": 211,
  9792. "b": 211,
  9793. "a": 255
  9794. },
  9795. "pressedColor": {
  9796. "__type__": "cc.Color",
  9797. "r": 211,
  9798. "g": 211,
  9799. "b": 211,
  9800. "a": 255
  9801. },
  9802. "_N$hoverColor": {
  9803. "__type__": "cc.Color",
  9804. "r": 255,
  9805. "g": 255,
  9806. "b": 255,
  9807. "a": 255
  9808. },
  9809. "hoverColor": {
  9810. "__type__": "cc.Color",
  9811. "r": 255,
  9812. "g": 255,
  9813. "b": 255,
  9814. "a": 255
  9815. },
  9816. "_N$disabledColor": {
  9817. "__type__": "cc.Color",
  9818. "r": 124,
  9819. "g": 124,
  9820. "b": 124,
  9821. "a": 255
  9822. },
  9823. "_N$normalSprite": null,
  9824. "_N$pressedSprite": null,
  9825. "pressedSprite": null,
  9826. "_N$hoverSprite": null,
  9827. "hoverSprite": null,
  9828. "_N$disabledSprite": null,
  9829. "_N$target": null,
  9830. "_id": "92JwEwdUdC+qqBGPiJd62M"
  9831. },
  9832. {
  9833. "__type__": "cc.ClickEvent",
  9834. "target": {
  9835. "__id__": 36
  9836. },
  9837. "component": "",
  9838. "_componentId": "47c77yOeKpPiJVINXipHohs",
  9839. "handler": "onReviveButton",
  9840. "customEventData": ""
  9841. },
  9842. {
  9843. "__type__": "cc.ClickEvent",
  9844. "target": null,
  9845. "component": "",
  9846. "_componentId": "47c77yOeKpPiJVINXipHohs",
  9847. "handler": "showReviveSuccess",
  9848. "customEventData": ""
  9849. },
  9850. {
  9851. "__type__": "cc.Node",
  9852. "_name": "New Label",
  9853. "_objFlags": 0,
  9854. "_parent": {
  9855. "__id__": 190
  9856. },
  9857. "_children": [
  9858. {
  9859. "__id__": 208
  9860. }
  9861. ],
  9862. "_active": true,
  9863. "_components": [
  9864. {
  9865. "__id__": 210
  9866. },
  9867. {
  9868. "__id__": 211
  9869. }
  9870. ],
  9871. "_prefab": null,
  9872. "_opacity": 255,
  9873. "_color": {
  9874. "__type__": "cc.Color",
  9875. "r": 255,
  9876. "g": 255,
  9877. "b": 255,
  9878. "a": 255
  9879. },
  9880. "_contentSize": {
  9881. "__type__": "cc.Size",
  9882. "width": 120,
  9883. "height": 50.4
  9884. },
  9885. "_anchorPoint": {
  9886. "__type__": "cc.Vec2",
  9887. "x": 0.5,
  9888. "y": 0.5
  9889. },
  9890. "_trs": {
  9891. "__type__": "TypedArray",
  9892. "ctor": "Float64Array",
  9893. "array": [
  9894. 0,
  9895. -285,
  9896. 0,
  9897. 0,
  9898. 0,
  9899. 0,
  9900. 1,
  9901. 1,
  9902. 1,
  9903. 1
  9904. ]
  9905. },
  9906. "_eulerAngles": {
  9907. "__type__": "cc.Vec3",
  9908. "x": 0,
  9909. "y": 0,
  9910. "z": 0
  9911. },
  9912. "_skewX": 0,
  9913. "_skewY": 0,
  9914. "_is3DNode": false,
  9915. "_groupIndex": 0,
  9916. "groupIndex": 0,
  9917. "_id": "abBKMwJeBA464fwX4Er7Vn"
  9918. },
  9919. {
  9920. "__type__": "cc.Node",
  9921. "_name": "New Sprite(Splash)",
  9922. "_objFlags": 0,
  9923. "_parent": {
  9924. "__id__": 207
  9925. },
  9926. "_children": [],
  9927. "_active": true,
  9928. "_components": [
  9929. {
  9930. "__id__": 209
  9931. }
  9932. ],
  9933. "_prefab": null,
  9934. "_opacity": 255,
  9935. "_color": {
  9936. "__type__": "cc.Color",
  9937. "r": 255,
  9938. "g": 255,
  9939. "b": 255,
  9940. "a": 255
  9941. },
  9942. "_contentSize": {
  9943. "__type__": "cc.Size",
  9944. "width": 120,
  9945. "height": 2
  9946. },
  9947. "_anchorPoint": {
  9948. "__type__": "cc.Vec2",
  9949. "x": 0.5,
  9950. "y": 0.5
  9951. },
  9952. "_trs": {
  9953. "__type__": "TypedArray",
  9954. "ctor": "Float64Array",
  9955. "array": [
  9956. 0,
  9957. -19.5,
  9958. 0,
  9959. 0,
  9960. 0,
  9961. 0,
  9962. 1,
  9963. 1,
  9964. 1,
  9965. 1
  9966. ]
  9967. },
  9968. "_eulerAngles": {
  9969. "__type__": "cc.Vec3",
  9970. "x": 0,
  9971. "y": 0,
  9972. "z": 0
  9973. },
  9974. "_skewX": 0,
  9975. "_skewY": 0,
  9976. "_is3DNode": false,
  9977. "_groupIndex": 0,
  9978. "groupIndex": 0,
  9979. "_id": "0ahP+QJ+9Nup9NawkX5mes"
  9980. },
  9981. {
  9982. "__type__": "cc.Sprite",
  9983. "_name": "",
  9984. "_objFlags": 0,
  9985. "node": {
  9986. "__id__": 208
  9987. },
  9988. "_enabled": true,
  9989. "_materials": [
  9990. {
  9991. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  9992. }
  9993. ],
  9994. "_srcBlendFactor": 770,
  9995. "_dstBlendFactor": 771,
  9996. "_spriteFrame": {
  9997. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  9998. },
  9999. "_type": 0,
  10000. "_sizeMode": 0,
  10001. "_fillType": 0,
  10002. "_fillCenter": {
  10003. "__type__": "cc.Vec2",
  10004. "x": 0,
  10005. "y": 0
  10006. },
  10007. "_fillStart": 0,
  10008. "_fillRange": 0,
  10009. "_isTrimmedMode": true,
  10010. "_atlas": null,
  10011. "_id": "0epGCEvnRFuZ67pUiS46JC"
  10012. },
  10013. {
  10014. "__type__": "cc.Label",
  10015. "_name": "",
  10016. "_objFlags": 0,
  10017. "node": {
  10018. "__id__": 207
  10019. },
  10020. "_enabled": true,
  10021. "_materials": [
  10022. {
  10023. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  10024. }
  10025. ],
  10026. "_srcBlendFactor": 770,
  10027. "_dstBlendFactor": 771,
  10028. "_string": "点击跳过",
  10029. "_N$string": "点击跳过",
  10030. "_fontSize": 30,
  10031. "_lineHeight": 40,
  10032. "_enableWrapText": true,
  10033. "_N$file": null,
  10034. "_isSystemFontUsed": true,
  10035. "_spacingX": 0,
  10036. "_batchAsBitmap": false,
  10037. "_styleFlags": 0,
  10038. "_underlineHeight": 0,
  10039. "_N$horizontalAlign": 1,
  10040. "_N$verticalAlign": 1,
  10041. "_N$fontFamily": "Arial",
  10042. "_N$overflow": 0,
  10043. "_N$cacheMode": 0,
  10044. "_id": "1aHscovF1MG5Ru3g0BqL75"
  10045. },
  10046. {
  10047. "__type__": "cc.Button",
  10048. "_name": "",
  10049. "_objFlags": 0,
  10050. "node": {
  10051. "__id__": 207
  10052. },
  10053. "_enabled": true,
  10054. "_normalMaterial": null,
  10055. "_grayMaterial": null,
  10056. "duration": 0.1,
  10057. "zoomScale": 1.2,
  10058. "clickEvents": [
  10059. {
  10060. "__id__": 212
  10061. }
  10062. ],
  10063. "_N$interactable": true,
  10064. "_N$enableAutoGrayEffect": false,
  10065. "_N$transition": 0,
  10066. "transition": 0,
  10067. "_N$normalColor": {
  10068. "__type__": "cc.Color",
  10069. "r": 214,
  10070. "g": 214,
  10071. "b": 214,
  10072. "a": 255
  10073. },
  10074. "_N$pressedColor": {
  10075. "__type__": "cc.Color",
  10076. "r": 211,
  10077. "g": 211,
  10078. "b": 211,
  10079. "a": 255
  10080. },
  10081. "pressedColor": {
  10082. "__type__": "cc.Color",
  10083. "r": 211,
  10084. "g": 211,
  10085. "b": 211,
  10086. "a": 255
  10087. },
  10088. "_N$hoverColor": {
  10089. "__type__": "cc.Color",
  10090. "r": 255,
  10091. "g": 255,
  10092. "b": 255,
  10093. "a": 255
  10094. },
  10095. "hoverColor": {
  10096. "__type__": "cc.Color",
  10097. "r": 255,
  10098. "g": 255,
  10099. "b": 255,
  10100. "a": 255
  10101. },
  10102. "_N$disabledColor": {
  10103. "__type__": "cc.Color",
  10104. "r": 124,
  10105. "g": 124,
  10106. "b": 124,
  10107. "a": 255
  10108. },
  10109. "_N$normalSprite": null,
  10110. "_N$pressedSprite": null,
  10111. "pressedSprite": null,
  10112. "_N$hoverSprite": null,
  10113. "hoverSprite": null,
  10114. "_N$disabledSprite": null,
  10115. "_N$target": null,
  10116. "_id": "4dRk354vxDvK3Dpba/pB9X"
  10117. },
  10118. {
  10119. "__type__": "cc.ClickEvent",
  10120. "target": {
  10121. "__id__": 36
  10122. },
  10123. "component": "",
  10124. "_componentId": "47c77yOeKpPiJVINXipHohs",
  10125. "handler": "onSkipRevive",
  10126. "customEventData": ""
  10127. },
  10128. {
  10129. "__type__": "cc.Node",
  10130. "_name": "successRevive",
  10131. "_objFlags": 0,
  10132. "_parent": {
  10133. "__id__": 189
  10134. },
  10135. "_children": [
  10136. {
  10137. "__id__": 214
  10138. }
  10139. ],
  10140. "_active": false,
  10141. "_components": [],
  10142. "_prefab": null,
  10143. "_opacity": 255,
  10144. "_color": {
  10145. "__type__": "cc.Color",
  10146. "r": 255,
  10147. "g": 255,
  10148. "b": 255,
  10149. "a": 255
  10150. },
  10151. "_contentSize": {
  10152. "__type__": "cc.Size",
  10153. "width": 0,
  10154. "height": 0
  10155. },
  10156. "_anchorPoint": {
  10157. "__type__": "cc.Vec2",
  10158. "x": 0.5,
  10159. "y": 0.5
  10160. },
  10161. "_trs": {
  10162. "__type__": "TypedArray",
  10163. "ctor": "Float64Array",
  10164. "array": [
  10165. 0,
  10166. 0,
  10167. 0,
  10168. 0,
  10169. 0,
  10170. 0,
  10171. 1,
  10172. 1,
  10173. 1,
  10174. 1
  10175. ]
  10176. },
  10177. "_eulerAngles": {
  10178. "__type__": "cc.Vec3",
  10179. "x": 0,
  10180. "y": 0,
  10181. "z": 0
  10182. },
  10183. "_skewX": 0,
  10184. "_skewY": 0,
  10185. "_is3DNode": false,
  10186. "_groupIndex": 0,
  10187. "groupIndex": 0,
  10188. "_id": "780pK5VlREFqhS+G3NrdNM"
  10189. },
  10190. {
  10191. "__type__": "cc.Node",
  10192. "_name": "New Sprite",
  10193. "_objFlags": 0,
  10194. "_parent": {
  10195. "__id__": 213
  10196. },
  10197. "_children": [
  10198. {
  10199. "__id__": 215
  10200. },
  10201. {
  10202. "__id__": 219
  10203. }
  10204. ],
  10205. "_active": true,
  10206. "_components": [
  10207. {
  10208. "__id__": 221
  10209. },
  10210. {
  10211. "__id__": 222
  10212. }
  10213. ],
  10214. "_prefab": null,
  10215. "_opacity": 255,
  10216. "_color": {
  10217. "__type__": "cc.Color",
  10218. "r": 255,
  10219. "g": 255,
  10220. "b": 255,
  10221. "a": 255
  10222. },
  10223. "_contentSize": {
  10224. "__type__": "cc.Size",
  10225. "width": 506,
  10226. "height": 381
  10227. },
  10228. "_anchorPoint": {
  10229. "__type__": "cc.Vec2",
  10230. "x": 0.5,
  10231. "y": 0.5
  10232. },
  10233. "_trs": {
  10234. "__type__": "TypedArray",
  10235. "ctor": "Float64Array",
  10236. "array": [
  10237. 0,
  10238. -37,
  10239. 0,
  10240. 0,
  10241. 0,
  10242. 0,
  10243. 1,
  10244. 1,
  10245. 1,
  10246. 1
  10247. ]
  10248. },
  10249. "_eulerAngles": {
  10250. "__type__": "cc.Vec3",
  10251. "x": 0,
  10252. "y": 0,
  10253. "z": 0
  10254. },
  10255. "_skewX": 0,
  10256. "_skewY": 0,
  10257. "_is3DNode": false,
  10258. "_groupIndex": 0,
  10259. "groupIndex": 0,
  10260. "_id": "8aCkmd27BBZYJKy6l/JrJA"
  10261. },
  10262. {
  10263. "__type__": "cc.Node",
  10264. "_name": "组 29",
  10265. "_objFlags": 0,
  10266. "_parent": {
  10267. "__id__": 214
  10268. },
  10269. "_children": [],
  10270. "_active": true,
  10271. "_components": [
  10272. {
  10273. "__id__": 216
  10274. },
  10275. {
  10276. "__id__": 217
  10277. }
  10278. ],
  10279. "_prefab": null,
  10280. "_opacity": 255,
  10281. "_color": {
  10282. "__type__": "cc.Color",
  10283. "r": 255,
  10284. "g": 255,
  10285. "b": 255,
  10286. "a": 255
  10287. },
  10288. "_contentSize": {
  10289. "__type__": "cc.Size",
  10290. "width": 223,
  10291. "height": 76
  10292. },
  10293. "_anchorPoint": {
  10294. "__type__": "cc.Vec2",
  10295. "x": 0.5,
  10296. "y": 0.5
  10297. },
  10298. "_trs": {
  10299. "__type__": "TypedArray",
  10300. "ctor": "Float64Array",
  10301. "array": [
  10302. 0,
  10303. -115,
  10304. 0,
  10305. 0,
  10306. 0,
  10307. 0,
  10308. 1,
  10309. 1,
  10310. 1,
  10311. 1
  10312. ]
  10313. },
  10314. "_eulerAngles": {
  10315. "__type__": "cc.Vec3",
  10316. "x": 0,
  10317. "y": 0,
  10318. "z": 0
  10319. },
  10320. "_skewX": 0,
  10321. "_skewY": 0,
  10322. "_is3DNode": false,
  10323. "_groupIndex": 0,
  10324. "groupIndex": 0,
  10325. "_id": "7a3zIygORKGIRaOXx+K7s+"
  10326. },
  10327. {
  10328. "__type__": "cc.Sprite",
  10329. "_name": "",
  10330. "_objFlags": 0,
  10331. "node": {
  10332. "__id__": 215
  10333. },
  10334. "_enabled": true,
  10335. "_materials": [],
  10336. "_srcBlendFactor": 770,
  10337. "_dstBlendFactor": 771,
  10338. "_spriteFrame": {
  10339. "__uuid__": "c369c7ad-cdb0-4cb5-98f2-1c42419251af"
  10340. },
  10341. "_type": 0,
  10342. "_sizeMode": 1,
  10343. "_fillType": 0,
  10344. "_fillCenter": {
  10345. "__type__": "cc.Vec2",
  10346. "x": 0,
  10347. "y": 0
  10348. },
  10349. "_fillStart": 0,
  10350. "_fillRange": 0,
  10351. "_isTrimmedMode": true,
  10352. "_atlas": null,
  10353. "_id": "71df3j2SZOGqHGFMw6u8uZ"
  10354. },
  10355. {
  10356. "__type__": "cc.Button",
  10357. "_name": "",
  10358. "_objFlags": 0,
  10359. "node": {
  10360. "__id__": 215
  10361. },
  10362. "_enabled": true,
  10363. "_normalMaterial": null,
  10364. "_grayMaterial": null,
  10365. "duration": 0.1,
  10366. "zoomScale": 1.2,
  10367. "clickEvents": [
  10368. {
  10369. "__id__": 218
  10370. }
  10371. ],
  10372. "_N$interactable": true,
  10373. "_N$enableAutoGrayEffect": false,
  10374. "_N$transition": 0,
  10375. "transition": 0,
  10376. "_N$normalColor": {
  10377. "__type__": "cc.Color",
  10378. "r": 214,
  10379. "g": 214,
  10380. "b": 214,
  10381. "a": 255
  10382. },
  10383. "_N$pressedColor": {
  10384. "__type__": "cc.Color",
  10385. "r": 211,
  10386. "g": 211,
  10387. "b": 211,
  10388. "a": 255
  10389. },
  10390. "pressedColor": {
  10391. "__type__": "cc.Color",
  10392. "r": 211,
  10393. "g": 211,
  10394. "b": 211,
  10395. "a": 255
  10396. },
  10397. "_N$hoverColor": {
  10398. "__type__": "cc.Color",
  10399. "r": 255,
  10400. "g": 255,
  10401. "b": 255,
  10402. "a": 255
  10403. },
  10404. "hoverColor": {
  10405. "__type__": "cc.Color",
  10406. "r": 255,
  10407. "g": 255,
  10408. "b": 255,
  10409. "a": 255
  10410. },
  10411. "_N$disabledColor": {
  10412. "__type__": "cc.Color",
  10413. "r": 124,
  10414. "g": 124,
  10415. "b": 124,
  10416. "a": 255
  10417. },
  10418. "_N$normalSprite": null,
  10419. "_N$pressedSprite": null,
  10420. "pressedSprite": null,
  10421. "_N$hoverSprite": null,
  10422. "hoverSprite": null,
  10423. "_N$disabledSprite": null,
  10424. "_N$target": null,
  10425. "_id": "8eRGuQP6BAx46N6i+kkbT7"
  10426. },
  10427. {
  10428. "__type__": "cc.ClickEvent",
  10429. "target": {
  10430. "__id__": 36
  10431. },
  10432. "component": "",
  10433. "_componentId": "47c77yOeKpPiJVINXipHohs",
  10434. "handler": "onReviveCertainBtn",
  10435. "customEventData": ""
  10436. },
  10437. {
  10438. "__type__": "cc.Node",
  10439. "_name": "New Label",
  10440. "_objFlags": 0,
  10441. "_parent": {
  10442. "__id__": 214
  10443. },
  10444. "_children": [],
  10445. "_active": true,
  10446. "_components": [
  10447. {
  10448. "__id__": 220
  10449. }
  10450. ],
  10451. "_prefab": null,
  10452. "_opacity": 255,
  10453. "_color": {
  10454. "__type__": "cc.Color",
  10455. "r": 37,
  10456. "g": 64,
  10457. "b": 110,
  10458. "a": 255
  10459. },
  10460. "_contentSize": {
  10461. "__type__": "cc.Size",
  10462. "width": 360,
  10463. "height": 40
  10464. },
  10465. "_anchorPoint": {
  10466. "__type__": "cc.Vec2",
  10467. "x": 0.5,
  10468. "y": 0.5
  10469. },
  10470. "_trs": {
  10471. "__type__": "TypedArray",
  10472. "ctor": "Float64Array",
  10473. "array": [
  10474. 0,
  10475. 25,
  10476. 0,
  10477. 0,
  10478. 0,
  10479. 0,
  10480. 1,
  10481. 1,
  10482. 1,
  10483. 1
  10484. ]
  10485. },
  10486. "_eulerAngles": {
  10487. "__type__": "cc.Vec3",
  10488. "x": 0,
  10489. "y": 0,
  10490. "z": 0
  10491. },
  10492. "_skewX": 0,
  10493. "_skewY": 0,
  10494. "_is3DNode": false,
  10495. "_groupIndex": 0,
  10496. "groupIndex": 0,
  10497. "_id": "daobAvDppF0b6YAlXZ/iK9"
  10498. },
  10499. {
  10500. "__type__": "cc.Label",
  10501. "_name": "",
  10502. "_objFlags": 0,
  10503. "node": {
  10504. "__id__": 219
  10505. },
  10506. "_enabled": true,
  10507. "_materials": [],
  10508. "_srcBlendFactor": 770,
  10509. "_dstBlendFactor": 771,
  10510. "_string": "视频结束,感谢支持",
  10511. "_N$string": "视频结束,感谢支持",
  10512. "_fontSize": 40,
  10513. "_lineHeight": 50,
  10514. "_enableWrapText": true,
  10515. "_N$file": null,
  10516. "_isSystemFontUsed": true,
  10517. "_spacingX": 0,
  10518. "_batchAsBitmap": false,
  10519. "_styleFlags": 0,
  10520. "_underlineHeight": 0,
  10521. "_N$horizontalAlign": 1,
  10522. "_N$verticalAlign": 1,
  10523. "_N$fontFamily": "Arial",
  10524. "_N$overflow": 0,
  10525. "_N$cacheMode": 0,
  10526. "_id": "28cLIaeSZKUbV411TxCm52"
  10527. },
  10528. {
  10529. "__type__": "cc.Sprite",
  10530. "_name": "",
  10531. "_objFlags": 0,
  10532. "node": {
  10533. "__id__": 214
  10534. },
  10535. "_enabled": true,
  10536. "_materials": [],
  10537. "_srcBlendFactor": 770,
  10538. "_dstBlendFactor": 771,
  10539. "_spriteFrame": {
  10540. "__uuid__": "c6f13935-51e6-471e-831f-3e9689a493f7"
  10541. },
  10542. "_type": 1,
  10543. "_sizeMode": 0,
  10544. "_fillType": 0,
  10545. "_fillCenter": {
  10546. "__type__": "cc.Vec2",
  10547. "x": 0,
  10548. "y": 0
  10549. },
  10550. "_fillStart": 0,
  10551. "_fillRange": 0,
  10552. "_isTrimmedMode": true,
  10553. "_atlas": null,
  10554. "_id": "41EyscVkhOOKyqV5xnUKPv"
  10555. },
  10556. {
  10557. "__type__": "cc.BlockInputEvents",
  10558. "_name": "",
  10559. "_objFlags": 0,
  10560. "node": {
  10561. "__id__": 214
  10562. },
  10563. "_enabled": true,
  10564. "_id": "aa04HxwfRFoIhTz9gIDCKC"
  10565. },
  10566. {
  10567. "__type__": "cc.Node",
  10568. "_name": "bg",
  10569. "_objFlags": 0,
  10570. "_parent": {
  10571. "__id__": 104
  10572. },
  10573. "_children": [],
  10574. "_active": true,
  10575. "_components": [
  10576. {
  10577. "__id__": 224
  10578. }
  10579. ],
  10580. "_prefab": null,
  10581. "_opacity": 255,
  10582. "_color": {
  10583. "__type__": "cc.Color",
  10584. "r": 255,
  10585. "g": 255,
  10586. "b": 255,
  10587. "a": 255
  10588. },
  10589. "_contentSize": {
  10590. "__type__": "cc.Size",
  10591. "width": 400,
  10592. "height": 400
  10593. },
  10594. "_anchorPoint": {
  10595. "__type__": "cc.Vec2",
  10596. "x": 0.5,
  10597. "y": 0.5
  10598. },
  10599. "_trs": {
  10600. "__type__": "TypedArray",
  10601. "ctor": "Float64Array",
  10602. "array": [
  10603. 0,
  10604. 68,
  10605. 0,
  10606. 0,
  10607. 0,
  10608. 0,
  10609. 1,
  10610. 1,
  10611. 1,
  10612. 1
  10613. ]
  10614. },
  10615. "_eulerAngles": {
  10616. "__type__": "cc.Vec3",
  10617. "x": 0,
  10618. "y": 0,
  10619. "z": 0
  10620. },
  10621. "_skewX": 0,
  10622. "_skewY": 0,
  10623. "_is3DNode": false,
  10624. "_groupIndex": 0,
  10625. "groupIndex": 0,
  10626. "_id": "52K0iigyJBkryDjbfF2HaA"
  10627. },
  10628. {
  10629. "__type__": "cc.Sprite",
  10630. "_name": "",
  10631. "_objFlags": 0,
  10632. "node": {
  10633. "__id__": 223
  10634. },
  10635. "_enabled": true,
  10636. "_materials": [],
  10637. "_srcBlendFactor": 770,
  10638. "_dstBlendFactor": 771,
  10639. "_spriteFrame": {
  10640. "__uuid__": "fc71736c-1811-4807-8a4e-8667e4453c49"
  10641. },
  10642. "_type": 0,
  10643. "_sizeMode": 0,
  10644. "_fillType": 0,
  10645. "_fillCenter": {
  10646. "__type__": "cc.Vec2",
  10647. "x": 0,
  10648. "y": 0
  10649. },
  10650. "_fillStart": 0,
  10651. "_fillRange": 0,
  10652. "_isTrimmedMode": true,
  10653. "_atlas": null,
  10654. "_id": "1en2DGEz1LM6BaNVoOugCW"
  10655. },
  10656. {
  10657. "__type__": "cc.Node",
  10658. "_name": "New Sprite",
  10659. "_objFlags": 0,
  10660. "_parent": {
  10661. "__id__": 104
  10662. },
  10663. "_children": [],
  10664. "_active": false,
  10665. "_components": [
  10666. {
  10667. "__id__": 226
  10668. }
  10669. ],
  10670. "_prefab": null,
  10671. "_opacity": 255,
  10672. "_color": {
  10673. "__type__": "cc.Color",
  10674. "r": 255,
  10675. "g": 255,
  10676. "b": 255,
  10677. "a": 255
  10678. },
  10679. "_contentSize": {
  10680. "__type__": "cc.Size",
  10681. "width": 243,
  10682. "height": 270
  10683. },
  10684. "_anchorPoint": {
  10685. "__type__": "cc.Vec2",
  10686. "x": 0.5,
  10687. "y": 0
  10688. },
  10689. "_trs": {
  10690. "__type__": "TypedArray",
  10691. "ctor": "Float64Array",
  10692. "array": [
  10693. -96,
  10694. -80,
  10695. 0,
  10696. 0,
  10697. 0,
  10698. 0,
  10699. 1,
  10700. 0.8,
  10701. 0.8,
  10702. 1
  10703. ]
  10704. },
  10705. "_eulerAngles": {
  10706. "__type__": "cc.Vec3",
  10707. "x": 0,
  10708. "y": 0,
  10709. "z": 0
  10710. },
  10711. "_skewX": 0,
  10712. "_skewY": 0,
  10713. "_is3DNode": false,
  10714. "_groupIndex": 0,
  10715. "groupIndex": 0,
  10716. "_id": "1aJyQ8FoZKhJOqGCKg9nng"
  10717. },
  10718. {
  10719. "__type__": "dragonBones.ArmatureDisplay",
  10720. "_name": "",
  10721. "_objFlags": 0,
  10722. "node": {
  10723. "__id__": 225
  10724. },
  10725. "_enabled": true,
  10726. "_materials": [],
  10727. "_armatureName": "Armature",
  10728. "_animationName": "",
  10729. "_preCacheMode": -1,
  10730. "_cacheMode": 0,
  10731. "playTimes": -1,
  10732. "premultipliedAlpha": false,
  10733. "_armatureKey": "",
  10734. "_accTime": 0,
  10735. "_playCount": 0,
  10736. "_frameCache": null,
  10737. "_curFrame": null,
  10738. "_playing": false,
  10739. "_armatureCache": null,
  10740. "_N$dragonAsset": null,
  10741. "_N$dragonAtlasAsset": null,
  10742. "_N$_defaultArmatureIndex": 0,
  10743. "_N$_animationIndex": 0,
  10744. "_N$_defaultCacheMode": 0,
  10745. "_N$timeScale": 0.5,
  10746. "_N$debugBones": false,
  10747. "_N$enableBatch": false,
  10748. "_id": "91B8SSbaZB0YrbdIusv21b"
  10749. },
  10750. {
  10751. "__type__": "cc.Node",
  10752. "_name": "upgrade",
  10753. "_objFlags": 0,
  10754. "_parent": {
  10755. "__id__": 104
  10756. },
  10757. "_children": [],
  10758. "_active": false,
  10759. "_components": [
  10760. {
  10761. "__id__": 228
  10762. }
  10763. ],
  10764. "_prefab": null,
  10765. "_opacity": 255,
  10766. "_color": {
  10767. "__type__": "cc.Color",
  10768. "r": 255,
  10769. "g": 255,
  10770. "b": 255,
  10771. "a": 255
  10772. },
  10773. "_contentSize": {
  10774. "__type__": "cc.Size",
  10775. "width": 91,
  10776. "height": 75
  10777. },
  10778. "_anchorPoint": {
  10779. "__type__": "cc.Vec2",
  10780. "x": 0.5,
  10781. "y": 0.5
  10782. },
  10783. "_trs": {
  10784. "__type__": "TypedArray",
  10785. "ctor": "Float64Array",
  10786. "array": [
  10787. 11,
  10788. -3,
  10789. 0,
  10790. 0,
  10791. 0,
  10792. 0,
  10793. 1,
  10794. 1,
  10795. 1,
  10796. 1
  10797. ]
  10798. },
  10799. "_eulerAngles": {
  10800. "__type__": "cc.Vec3",
  10801. "x": 0,
  10802. "y": 0,
  10803. "z": 0
  10804. },
  10805. "_skewX": 0,
  10806. "_skewY": 0,
  10807. "_is3DNode": false,
  10808. "_groupIndex": 0,
  10809. "groupIndex": 0,
  10810. "_id": "1fBJnkm11DkLt/vXK1Ks54"
  10811. },
  10812. {
  10813. "__type__": "cc.Sprite",
  10814. "_name": "",
  10815. "_objFlags": 0,
  10816. "node": {
  10817. "__id__": 227
  10818. },
  10819. "_enabled": true,
  10820. "_materials": [],
  10821. "_srcBlendFactor": 770,
  10822. "_dstBlendFactor": 771,
  10823. "_spriteFrame": null,
  10824. "_type": 0,
  10825. "_sizeMode": 1,
  10826. "_fillType": 0,
  10827. "_fillCenter": {
  10828. "__type__": "cc.Vec2",
  10829. "x": 0,
  10830. "y": 0
  10831. },
  10832. "_fillStart": 0,
  10833. "_fillRange": 0,
  10834. "_isTrimmedMode": true,
  10835. "_atlas": null,
  10836. "_id": "b56hb0CLJJQ6s6n5guK9gT"
  10837. },
  10838. {
  10839. "__type__": "cc.Node",
  10840. "_name": "New Sprite",
  10841. "_objFlags": 0,
  10842. "_parent": {
  10843. "__id__": 104
  10844. },
  10845. "_children": [],
  10846. "_active": true,
  10847. "_components": [
  10848. {
  10849. "__id__": 230
  10850. }
  10851. ],
  10852. "_prefab": null,
  10853. "_opacity": 255,
  10854. "_color": {
  10855. "__type__": "cc.Color",
  10856. "r": 255,
  10857. "g": 255,
  10858. "b": 255,
  10859. "a": 255
  10860. },
  10861. "_contentSize": {
  10862. "__type__": "cc.Size",
  10863. "width": 166,
  10864. "height": 241
  10865. },
  10866. "_anchorPoint": {
  10867. "__type__": "cc.Vec2",
  10868. "x": 0.5,
  10869. "y": 0
  10870. },
  10871. "_trs": {
  10872. "__type__": "TypedArray",
  10873. "ctor": "Float64Array",
  10874. "array": [
  10875. -1.7,
  10876. -80,
  10877. 0,
  10878. 0,
  10879. 0,
  10880. 0,
  10881. 1,
  10882. 1,
  10883. 1,
  10884. 1
  10885. ]
  10886. },
  10887. "_eulerAngles": {
  10888. "__type__": "cc.Vec3",
  10889. "x": 0,
  10890. "y": 0,
  10891. "z": 0
  10892. },
  10893. "_skewX": 0,
  10894. "_skewY": 0,
  10895. "_is3DNode": false,
  10896. "_groupIndex": 0,
  10897. "groupIndex": 0,
  10898. "_id": "4eSBayBnZL04h/DkhjVFl5"
  10899. },
  10900. {
  10901. "__type__": "dragonBones.ArmatureDisplay",
  10902. "_name": "",
  10903. "_objFlags": 0,
  10904. "node": {
  10905. "__id__": 229
  10906. },
  10907. "_enabled": true,
  10908. "_materials": [],
  10909. "_armatureName": "Armature",
  10910. "_animationName": "",
  10911. "_preCacheMode": 0,
  10912. "_cacheMode": 0,
  10913. "playTimes": -1,
  10914. "premultipliedAlpha": false,
  10915. "_armatureKey": "b4c95ef6-49f8-44ae-8ccb-20e4124a5ee7#dde1501a-4cac-47c4-820d-ea1b54def8cc",
  10916. "_accTime": 0,
  10917. "_playCount": 0,
  10918. "_frameCache": null,
  10919. "_curFrame": null,
  10920. "_playing": false,
  10921. "_armatureCache": null,
  10922. "_N$dragonAsset": null,
  10923. "_N$dragonAtlasAsset": null,
  10924. "_N$_defaultArmatureIndex": 0,
  10925. "_N$_animationIndex": 0,
  10926. "_N$_defaultCacheMode": 0,
  10927. "_N$timeScale": 0.5,
  10928. "_N$debugBones": false,
  10929. "_N$enableBatch": false,
  10930. "_id": "74G15c1l5IbKz0NCW6FvJb"
  10931. },
  10932. {
  10933. "__type__": "cc.Node",
  10934. "_name": "try",
  10935. "_objFlags": 0,
  10936. "_parent": {
  10937. "__id__": 104
  10938. },
  10939. "_children": [],
  10940. "_active": true,
  10941. "_components": [
  10942. {
  10943. "__id__": 232
  10944. }
  10945. ],
  10946. "_prefab": null,
  10947. "_opacity": 255,
  10948. "_color": {
  10949. "__type__": "cc.Color",
  10950. "r": 255,
  10951. "g": 255,
  10952. "b": 255,
  10953. "a": 255
  10954. },
  10955. "_contentSize": {
  10956. "__type__": "cc.Size",
  10957. "width": 0,
  10958. "height": 0
  10959. },
  10960. "_anchorPoint": {
  10961. "__type__": "cc.Vec2",
  10962. "x": 0.5,
  10963. "y": 0.5
  10964. },
  10965. "_trs": {
  10966. "__type__": "TypedArray",
  10967. "ctor": "Float64Array",
  10968. "array": [
  10969. -2,
  10970. 155,
  10971. 0,
  10972. 0,
  10973. 0,
  10974. 0,
  10975. 1,
  10976. 1,
  10977. 1,
  10978. 1
  10979. ]
  10980. },
  10981. "_eulerAngles": {
  10982. "__type__": "cc.Vec3",
  10983. "x": 0,
  10984. "y": 0,
  10985. "z": 0
  10986. },
  10987. "_skewX": 0,
  10988. "_skewY": 0,
  10989. "_is3DNode": false,
  10990. "_groupIndex": 0,
  10991. "groupIndex": 0,
  10992. "_id": "58/GBaYzhCSpNps0OI2cbD"
  10993. },
  10994. {
  10995. "__type__": "cc.ParticleSystem",
  10996. "_name": "",
  10997. "_objFlags": 0,
  10998. "node": {
  10999. "__id__": 231
  11000. },
  11001. "_enabled": true,
  11002. "_materials": [],
  11003. "_srcBlendFactor": 770,
  11004. "_dstBlendFactor": 771,
  11005. "_custom": {
  11006. "custom": false
  11007. },
  11008. "_file": {
  11009. "__uuid__": "99dcded5-143b-4dde-a827-c0476323108b"
  11010. },
  11011. "_spriteFrame": {
  11012. "__uuid__": "3c17fbc7-41f2-42f3-ab5b-fa4f427e62b2"
  11013. },
  11014. "_texture": {
  11015. "__uuid__": "bbc79f84-4f7a-4deb-9ad2-769826078813"
  11016. },
  11017. "_stopped": true,
  11018. "playOnLoad": true,
  11019. "autoRemoveOnFinish": false,
  11020. "totalParticles": 25,
  11021. "duration": -1,
  11022. "emissionRate": 10,
  11023. "life": 2.5,
  11024. "lifeVar": 0,
  11025. "_startColor": {
  11026. "__type__": "cc.Color",
  11027. "r": 255,
  11028. "g": 51,
  11029. "b": 51,
  11030. "a": 255
  11031. },
  11032. "_startColorVar": {
  11033. "__type__": "cc.Color",
  11034. "r": 0,
  11035. "g": 0,
  11036. "b": 0,
  11037. "a": 0
  11038. },
  11039. "_endColor": {
  11040. "__type__": "cc.Color",
  11041. "r": 255,
  11042. "g": 253,
  11043. "b": 0,
  11044. "a": 255
  11045. },
  11046. "_endColorVar": {
  11047. "__type__": "cc.Color",
  11048. "r": 0,
  11049. "g": 112,
  11050. "b": 112,
  11051. "a": 0
  11052. },
  11053. "angle": -90,
  11054. "angleVar": 59,
  11055. "startSize": 29,
  11056. "startSizeVar": 2,
  11057. "endSize": 16,
  11058. "endSizeVar": 0,
  11059. "startSpin": 0,
  11060. "startSpinVar": 500,
  11061. "endSpin": -305,
  11062. "endSpinVar": 0,
  11063. "sourcePos": {
  11064. "__type__": "cc.Vec2",
  11065. "x": 0,
  11066. "y": 0
  11067. },
  11068. "posVar": {
  11069. "__type__": "cc.Vec2",
  11070. "x": 85,
  11071. "y": 20
  11072. },
  11073. "_positionType": 1,
  11074. "positionType": 1,
  11075. "emitterMode": 0,
  11076. "gravity": {
  11077. "__type__": "cc.Vec2",
  11078. "x": 0,
  11079. "y": -123
  11080. },
  11081. "speed": -100,
  11082. "speedVar": 100,
  11083. "tangentialAccel": 0,
  11084. "tangentialAccelVar": 50,
  11085. "radialAccel": 0,
  11086. "radialAccelVar": 50,
  11087. "rotationIsDir": false,
  11088. "startRadius": 0,
  11089. "startRadiusVar": 0,
  11090. "endRadius": 0,
  11091. "endRadiusVar": 0,
  11092. "rotatePerS": 0,
  11093. "rotatePerSVar": 0,
  11094. "_N$preview": true,
  11095. "_id": "a7xygNrRZKXbErqbHdp4at"
  11096. },
  11097. {
  11098. "__type__": "cc.Node",
  11099. "_name": "addStepAdv",
  11100. "_objFlags": 0,
  11101. "_parent": {
  11102. "__id__": 104
  11103. },
  11104. "_children": [],
  11105. "_active": true,
  11106. "_components": [
  11107. {
  11108. "__id__": 234
  11109. },
  11110. {
  11111. "__id__": 235
  11112. }
  11113. ],
  11114. "_prefab": null,
  11115. "_opacity": 255,
  11116. "_color": {
  11117. "__type__": "cc.Color",
  11118. "r": 255,
  11119. "g": 255,
  11120. "b": 255,
  11121. "a": 255
  11122. },
  11123. "_contentSize": {
  11124. "__type__": "cc.Size",
  11125. "width": 223,
  11126. "height": 76
  11127. },
  11128. "_anchorPoint": {
  11129. "__type__": "cc.Vec2",
  11130. "x": 0.5,
  11131. "y": 0.5
  11132. },
  11133. "_trs": {
  11134. "__type__": "TypedArray",
  11135. "ctor": "Float64Array",
  11136. "array": [
  11137. 120,
  11138. -238,
  11139. 0,
  11140. 0,
  11141. 0,
  11142. 0,
  11143. 1,
  11144. 1,
  11145. 1,
  11146. 1
  11147. ]
  11148. },
  11149. "_eulerAngles": {
  11150. "__type__": "cc.Vec3",
  11151. "x": 0,
  11152. "y": 0,
  11153. "z": 0
  11154. },
  11155. "_skewX": 0,
  11156. "_skewY": 0,
  11157. "_is3DNode": false,
  11158. "_groupIndex": 0,
  11159. "groupIndex": 0,
  11160. "_id": "6cVkBfOVZNnb6px5BpeH0F"
  11161. },
  11162. {
  11163. "__type__": "cc.Sprite",
  11164. "_name": "",
  11165. "_objFlags": 0,
  11166. "node": {
  11167. "__id__": 233
  11168. },
  11169. "_enabled": true,
  11170. "_materials": [],
  11171. "_srcBlendFactor": 770,
  11172. "_dstBlendFactor": 771,
  11173. "_spriteFrame": {
  11174. "__uuid__": "38488265-36f4-4d81-a69a-7b6ecf2dfb04"
  11175. },
  11176. "_type": 0,
  11177. "_sizeMode": 1,
  11178. "_fillType": 0,
  11179. "_fillCenter": {
  11180. "__type__": "cc.Vec2",
  11181. "x": 0,
  11182. "y": 0
  11183. },
  11184. "_fillStart": 0,
  11185. "_fillRange": 0,
  11186. "_isTrimmedMode": true,
  11187. "_atlas": null,
  11188. "_id": "42yhFZfS1KK45bHLNgJ1JG"
  11189. },
  11190. {
  11191. "__type__": "cc.Button",
  11192. "_name": "",
  11193. "_objFlags": 0,
  11194. "node": {
  11195. "__id__": 233
  11196. },
  11197. "_enabled": true,
  11198. "_normalMaterial": null,
  11199. "_grayMaterial": null,
  11200. "duration": 0.1,
  11201. "zoomScale": 1.2,
  11202. "clickEvents": [
  11203. {
  11204. "__id__": 236
  11205. }
  11206. ],
  11207. "_N$interactable": true,
  11208. "_N$enableAutoGrayEffect": false,
  11209. "_N$transition": 0,
  11210. "transition": 0,
  11211. "_N$normalColor": {
  11212. "__type__": "cc.Color",
  11213. "r": 214,
  11214. "g": 214,
  11215. "b": 214,
  11216. "a": 255
  11217. },
  11218. "_N$pressedColor": {
  11219. "__type__": "cc.Color",
  11220. "r": 211,
  11221. "g": 211,
  11222. "b": 211,
  11223. "a": 255
  11224. },
  11225. "pressedColor": {
  11226. "__type__": "cc.Color",
  11227. "r": 211,
  11228. "g": 211,
  11229. "b": 211,
  11230. "a": 255
  11231. },
  11232. "_N$hoverColor": {
  11233. "__type__": "cc.Color",
  11234. "r": 255,
  11235. "g": 255,
  11236. "b": 255,
  11237. "a": 255
  11238. },
  11239. "hoverColor": {
  11240. "__type__": "cc.Color",
  11241. "r": 255,
  11242. "g": 255,
  11243. "b": 255,
  11244. "a": 255
  11245. },
  11246. "_N$disabledColor": {
  11247. "__type__": "cc.Color",
  11248. "r": 124,
  11249. "g": 124,
  11250. "b": 124,
  11251. "a": 255
  11252. },
  11253. "_N$normalSprite": null,
  11254. "_N$pressedSprite": null,
  11255. "pressedSprite": null,
  11256. "_N$hoverSprite": null,
  11257. "hoverSprite": null,
  11258. "_N$disabledSprite": null,
  11259. "_N$target": null,
  11260. "_id": "f2LvJx03FOTrwMTsC1sgcM"
  11261. },
  11262. {
  11263. "__type__": "cc.ClickEvent",
  11264. "target": {
  11265. "__id__": 36
  11266. },
  11267. "component": "",
  11268. "_componentId": "72f7acBwR1I474pejqfLV0j",
  11269. "handler": "onDoubleStepBtn",
  11270. "customEventData": ""
  11271. },
  11272. {
  11273. "__type__": "cc.Node",
  11274. "_name": "New Button",
  11275. "_objFlags": 0,
  11276. "_parent": {
  11277. "__id__": 104
  11278. },
  11279. "_children": [
  11280. {
  11281. "__id__": 238
  11282. }
  11283. ],
  11284. "_active": true,
  11285. "_components": [
  11286. {
  11287. "__id__": 241
  11288. },
  11289. {
  11290. "__id__": 242
  11291. }
  11292. ],
  11293. "_prefab": null,
  11294. "_opacity": 255,
  11295. "_color": {
  11296. "__type__": "cc.Color",
  11297. "r": 255,
  11298. "g": 255,
  11299. "b": 255,
  11300. "a": 255
  11301. },
  11302. "_contentSize": {
  11303. "__type__": "cc.Size",
  11304. "width": 223,
  11305. "height": 76
  11306. },
  11307. "_anchorPoint": {
  11308. "__type__": "cc.Vec2",
  11309. "x": 0.5,
  11310. "y": 0.5
  11311. },
  11312. "_trs": {
  11313. "__type__": "TypedArray",
  11314. "ctor": "Float64Array",
  11315. "array": [
  11316. -120,
  11317. -238,
  11318. 0,
  11319. 0,
  11320. 0,
  11321. 0,
  11322. 1,
  11323. 1,
  11324. 1,
  11325. 1
  11326. ]
  11327. },
  11328. "_eulerAngles": {
  11329. "__type__": "cc.Vec3",
  11330. "x": 0,
  11331. "y": 0,
  11332. "z": 0
  11333. },
  11334. "_skewX": 0,
  11335. "_skewY": 0,
  11336. "_is3DNode": false,
  11337. "_groupIndex": 0,
  11338. "groupIndex": 0,
  11339. "_id": "3bz+uGJuBEIZ3o7enJSdmM"
  11340. },
  11341. {
  11342. "__type__": "cc.Node",
  11343. "_name": "New Label",
  11344. "_objFlags": 0,
  11345. "_parent": {
  11346. "__id__": 237
  11347. },
  11348. "_children": [],
  11349. "_active": true,
  11350. "_components": [
  11351. {
  11352. "__id__": 239
  11353. },
  11354. {
  11355. "__id__": 240
  11356. }
  11357. ],
  11358. "_prefab": null,
  11359. "_opacity": 255,
  11360. "_color": {
  11361. "__type__": "cc.Color",
  11362. "r": 255,
  11363. "g": 255,
  11364. "b": 255,
  11365. "a": 255
  11366. },
  11367. "_contentSize": {
  11368. "__type__": "cc.Size",
  11369. "width": 186,
  11370. "height": 50
  11371. },
  11372. "_anchorPoint": {
  11373. "__type__": "cc.Vec2",
  11374. "x": 0.5,
  11375. "y": 0.5
  11376. },
  11377. "_trs": {
  11378. "__type__": "TypedArray",
  11379. "ctor": "Float64Array",
  11380. "array": [
  11381. -2.2737367544323206e-13,
  11382. 0,
  11383. 0,
  11384. 0,
  11385. 0,
  11386. 0,
  11387. 1,
  11388. 1,
  11389. 1,
  11390. 1
  11391. ]
  11392. },
  11393. "_eulerAngles": {
  11394. "__type__": "cc.Vec3",
  11395. "x": 0,
  11396. "y": 0,
  11397. "z": 0
  11398. },
  11399. "_skewX": 0,
  11400. "_skewY": 0,
  11401. "_is3DNode": false,
  11402. "_groupIndex": 0,
  11403. "groupIndex": 0,
  11404. "_id": "64yTCr5P5NPajPYMZjs6rB"
  11405. },
  11406. {
  11407. "__type__": "cc.Label",
  11408. "_name": "",
  11409. "_objFlags": 0,
  11410. "node": {
  11411. "__id__": 238
  11412. },
  11413. "_enabled": true,
  11414. "_materials": [],
  11415. "_srcBlendFactor": 770,
  11416. "_dstBlendFactor": 771,
  11417. "_string": "奖励步数",
  11418. "_N$string": "奖励步数",
  11419. "_fontSize": 45,
  11420. "_lineHeight": 50,
  11421. "_enableWrapText": true,
  11422. "_N$file": null,
  11423. "_isSystemFontUsed": true,
  11424. "_spacingX": 0,
  11425. "_batchAsBitmap": false,
  11426. "_styleFlags": 0,
  11427. "_underlineHeight": 0,
  11428. "_N$horizontalAlign": 1,
  11429. "_N$verticalAlign": 1,
  11430. "_N$fontFamily": "Arial",
  11431. "_N$overflow": 0,
  11432. "_N$cacheMode": 0,
  11433. "_id": "f6XT23xJpNIIwadWFqv21b"
  11434. },
  11435. {
  11436. "__type__": "cc.LabelOutline",
  11437. "_name": "",
  11438. "_objFlags": 0,
  11439. "node": {
  11440. "__id__": 238
  11441. },
  11442. "_enabled": true,
  11443. "_color": {
  11444. "__type__": "cc.Color",
  11445. "r": 136,
  11446. "g": 51,
  11447. "b": 51,
  11448. "a": 255
  11449. },
  11450. "_width": 3,
  11451. "_id": "eczPaV27RL1LsaY3GTGm6q"
  11452. },
  11453. {
  11454. "__type__": "cc.Sprite",
  11455. "_name": "",
  11456. "_objFlags": 0,
  11457. "node": {
  11458. "__id__": 237
  11459. },
  11460. "_enabled": true,
  11461. "_materials": [],
  11462. "_srcBlendFactor": 770,
  11463. "_dstBlendFactor": 771,
  11464. "_spriteFrame": {
  11465. "__uuid__": "953a7bdf-3b76-49d5-9831-c70e95163dd4"
  11466. },
  11467. "_type": 1,
  11468. "_sizeMode": 0,
  11469. "_fillType": 0,
  11470. "_fillCenter": {
  11471. "__type__": "cc.Vec2",
  11472. "x": 0,
  11473. "y": 0
  11474. },
  11475. "_fillStart": 0,
  11476. "_fillRange": 0,
  11477. "_isTrimmedMode": true,
  11478. "_atlas": null,
  11479. "_id": "3dHhbEQb9EfpM7J/N+2aao"
  11480. },
  11481. {
  11482. "__type__": "cc.Button",
  11483. "_name": "",
  11484. "_objFlags": 0,
  11485. "node": {
  11486. "__id__": 237
  11487. },
  11488. "_enabled": true,
  11489. "_normalMaterial": null,
  11490. "_grayMaterial": null,
  11491. "duration": 0.1,
  11492. "zoomScale": 1.2,
  11493. "clickEvents": [
  11494. {
  11495. "__id__": 243
  11496. }
  11497. ],
  11498. "_N$interactable": true,
  11499. "_N$enableAutoGrayEffect": false,
  11500. "_N$transition": 0,
  11501. "transition": 0,
  11502. "_N$normalColor": {
  11503. "__type__": "cc.Color",
  11504. "r": 255,
  11505. "g": 255,
  11506. "b": 255,
  11507. "a": 255
  11508. },
  11509. "_N$pressedColor": {
  11510. "__type__": "cc.Color",
  11511. "r": 255,
  11512. "g": 255,
  11513. "b": 255,
  11514. "a": 255
  11515. },
  11516. "pressedColor": {
  11517. "__type__": "cc.Color",
  11518. "r": 255,
  11519. "g": 255,
  11520. "b": 255,
  11521. "a": 255
  11522. },
  11523. "_N$hoverColor": {
  11524. "__type__": "cc.Color",
  11525. "r": 255,
  11526. "g": 255,
  11527. "b": 255,
  11528. "a": 255
  11529. },
  11530. "hoverColor": {
  11531. "__type__": "cc.Color",
  11532. "r": 255,
  11533. "g": 255,
  11534. "b": 255,
  11535. "a": 255
  11536. },
  11537. "_N$disabledColor": {
  11538. "__type__": "cc.Color",
  11539. "r": 255,
  11540. "g": 255,
  11541. "b": 255,
  11542. "a": 255
  11543. },
  11544. "_N$normalSprite": {
  11545. "__uuid__": "d69e60c9-8596-434a-a465-926cb4c7734a"
  11546. },
  11547. "_N$pressedSprite": {
  11548. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  11549. },
  11550. "pressedSprite": {
  11551. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  11552. },
  11553. "_N$hoverSprite": {
  11554. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  11555. },
  11556. "hoverSprite": {
  11557. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  11558. },
  11559. "_N$disabledSprite": {
  11560. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  11561. },
  11562. "_N$target": null,
  11563. "_id": "93aTdKALJIW7ZZWp/O0BUN"
  11564. },
  11565. {
  11566. "__type__": "cc.ClickEvent",
  11567. "target": {
  11568. "__id__": 36
  11569. },
  11570. "component": "",
  11571. "_componentId": "72f7acBwR1I474pejqfLV0j",
  11572. "handler": "onLevelUpButton",
  11573. "customEventData": "1"
  11574. },
  11575. {
  11576. "__type__": "cc.Node",
  11577. "_name": "New Sprite",
  11578. "_objFlags": 0,
  11579. "_parent": {
  11580. "__id__": 104
  11581. },
  11582. "_children": [],
  11583. "_active": true,
  11584. "_components": [
  11585. {
  11586. "__id__": 245
  11587. }
  11588. ],
  11589. "_prefab": null,
  11590. "_opacity": 255,
  11591. "_color": {
  11592. "__type__": "cc.Color",
  11593. "r": 255,
  11594. "g": 255,
  11595. "b": 255,
  11596. "a": 255
  11597. },
  11598. "_contentSize": {
  11599. "__type__": "cc.Size",
  11600. "width": 461,
  11601. "height": 128
  11602. },
  11603. "_anchorPoint": {
  11604. "__type__": "cc.Vec2",
  11605. "x": 0.5,
  11606. "y": 0.5
  11607. },
  11608. "_trs": {
  11609. "__type__": "TypedArray",
  11610. "ctor": "Float64Array",
  11611. "array": [
  11612. 0,
  11613. 209,
  11614. 0,
  11615. 0,
  11616. 0,
  11617. 0,
  11618. 1,
  11619. 1,
  11620. 1,
  11621. 1
  11622. ]
  11623. },
  11624. "_eulerAngles": {
  11625. "__type__": "cc.Vec3",
  11626. "x": 0,
  11627. "y": 0,
  11628. "z": 0
  11629. },
  11630. "_skewX": 0,
  11631. "_skewY": 0,
  11632. "_is3DNode": false,
  11633. "_groupIndex": 0,
  11634. "groupIndex": 0,
  11635. "_id": "36ciBwZgdKYJX1pUCIjx91"
  11636. },
  11637. {
  11638. "__type__": "cc.Sprite",
  11639. "_name": "",
  11640. "_objFlags": 0,
  11641. "node": {
  11642. "__id__": 244
  11643. },
  11644. "_enabled": true,
  11645. "_materials": [],
  11646. "_srcBlendFactor": 770,
  11647. "_dstBlendFactor": 771,
  11648. "_spriteFrame": {
  11649. "__uuid__": "b12948e6-6025-4efe-865f-df9034a1e459"
  11650. },
  11651. "_type": 0,
  11652. "_sizeMode": 1,
  11653. "_fillType": 0,
  11654. "_fillCenter": {
  11655. "__type__": "cc.Vec2",
  11656. "x": 0,
  11657. "y": 0
  11658. },
  11659. "_fillStart": 0,
  11660. "_fillRange": 0,
  11661. "_isTrimmedMode": true,
  11662. "_atlas": null,
  11663. "_id": "67MCxZ3fBLHI9S9ymiTOXn"
  11664. },
  11665. {
  11666. "__type__": "cc.Node",
  11667. "_name": "namebg",
  11668. "_objFlags": 0,
  11669. "_parent": {
  11670. "__id__": 104
  11671. },
  11672. "_children": [],
  11673. "_active": true,
  11674. "_components": [
  11675. {
  11676. "__id__": 247
  11677. }
  11678. ],
  11679. "_prefab": null,
  11680. "_opacity": 255,
  11681. "_color": {
  11682. "__type__": "cc.Color",
  11683. "r": 255,
  11684. "g": 255,
  11685. "b": 255,
  11686. "a": 255
  11687. },
  11688. "_contentSize": {
  11689. "__type__": "cc.Size",
  11690. "width": 50,
  11691. "height": 91
  11692. },
  11693. "_anchorPoint": {
  11694. "__type__": "cc.Vec2",
  11695. "x": 0.5,
  11696. "y": 0.5
  11697. },
  11698. "_trs": {
  11699. "__type__": "TypedArray",
  11700. "ctor": "Float64Array",
  11701. "array": [
  11702. -105,
  11703. 70,
  11704. 0,
  11705. 0,
  11706. 0,
  11707. 0,
  11708. 1,
  11709. 0.7,
  11710. 0.7,
  11711. 1
  11712. ]
  11713. },
  11714. "_eulerAngles": {
  11715. "__type__": "cc.Vec3",
  11716. "x": 0,
  11717. "y": 0,
  11718. "z": 0
  11719. },
  11720. "_skewX": 0,
  11721. "_skewY": 0,
  11722. "_is3DNode": false,
  11723. "_groupIndex": 0,
  11724. "groupIndex": 0,
  11725. "_id": "dc88Xjn3hIJoRCxnoyvbQT"
  11726. },
  11727. {
  11728. "__type__": "cc.Sprite",
  11729. "_name": "",
  11730. "_objFlags": 0,
  11731. "node": {
  11732. "__id__": 246
  11733. },
  11734. "_enabled": true,
  11735. "_materials": [],
  11736. "_srcBlendFactor": 770,
  11737. "_dstBlendFactor": 771,
  11738. "_spriteFrame": {
  11739. "__uuid__": "28e187c0-7af4-4ca2-baaf-a0443edd890d"
  11740. },
  11741. "_type": 0,
  11742. "_sizeMode": 1,
  11743. "_fillType": 0,
  11744. "_fillCenter": {
  11745. "__type__": "cc.Vec2",
  11746. "x": 0,
  11747. "y": 0
  11748. },
  11749. "_fillStart": 0,
  11750. "_fillRange": 0,
  11751. "_isTrimmedMode": true,
  11752. "_atlas": null,
  11753. "_id": "8fpTOtLxVDBZ0bMh9PbYTC"
  11754. },
  11755. {
  11756. "__type__": "cc.Node",
  11757. "_name": "namebg",
  11758. "_objFlags": 0,
  11759. "_parent": {
  11760. "__id__": 104
  11761. },
  11762. "_children": [],
  11763. "_active": false,
  11764. "_components": [
  11765. {
  11766. "__id__": 249
  11767. }
  11768. ],
  11769. "_prefab": null,
  11770. "_opacity": 255,
  11771. "_color": {
  11772. "__type__": "cc.Color",
  11773. "r": 255,
  11774. "g": 255,
  11775. "b": 255,
  11776. "a": 255
  11777. },
  11778. "_contentSize": {
  11779. "__type__": "cc.Size",
  11780. "width": 50,
  11781. "height": 91
  11782. },
  11783. "_anchorPoint": {
  11784. "__type__": "cc.Vec2",
  11785. "x": 0.5,
  11786. "y": 0.5
  11787. },
  11788. "_trs": {
  11789. "__type__": "TypedArray",
  11790. "ctor": "Float64Array",
  11791. "array": [
  11792. -186,
  11793. 70,
  11794. 0,
  11795. 0,
  11796. 0,
  11797. 0,
  11798. 1,
  11799. 0.7,
  11800. 0.7,
  11801. 1
  11802. ]
  11803. },
  11804. "_eulerAngles": {
  11805. "__type__": "cc.Vec3",
  11806. "x": 0,
  11807. "y": 0,
  11808. "z": 0
  11809. },
  11810. "_skewX": 0,
  11811. "_skewY": 0,
  11812. "_is3DNode": false,
  11813. "_groupIndex": 0,
  11814. "groupIndex": 0,
  11815. "_id": "28NxxmHWJJlKCT7w6Ip4mC"
  11816. },
  11817. {
  11818. "__type__": "cc.Sprite",
  11819. "_name": "",
  11820. "_objFlags": 0,
  11821. "node": {
  11822. "__id__": 248
  11823. },
  11824. "_enabled": true,
  11825. "_materials": [],
  11826. "_srcBlendFactor": 770,
  11827. "_dstBlendFactor": 771,
  11828. "_spriteFrame": {
  11829. "__uuid__": "28e187c0-7af4-4ca2-baaf-a0443edd890d"
  11830. },
  11831. "_type": 0,
  11832. "_sizeMode": 1,
  11833. "_fillType": 0,
  11834. "_fillCenter": {
  11835. "__type__": "cc.Vec2",
  11836. "x": 0,
  11837. "y": 0
  11838. },
  11839. "_fillStart": 0,
  11840. "_fillRange": 0,
  11841. "_isTrimmedMode": true,
  11842. "_atlas": null,
  11843. "_id": "bagCjsor5HzZgxd44yChXd"
  11844. },
  11845. {
  11846. "__type__": "cc.Node",
  11847. "_name": "New Label",
  11848. "_objFlags": 0,
  11849. "_parent": {
  11850. "__id__": 104
  11851. },
  11852. "_children": [],
  11853. "_active": true,
  11854. "_components": [
  11855. {
  11856. "__id__": 251
  11857. }
  11858. ],
  11859. "_prefab": null,
  11860. "_opacity": 255,
  11861. "_color": {
  11862. "__type__": "cc.Color",
  11863. "r": 255,
  11864. "g": 255,
  11865. "b": 255,
  11866. "a": 255
  11867. },
  11868. "_contentSize": {
  11869. "__type__": "cc.Size",
  11870. "width": 20,
  11871. "height": 60
  11872. },
  11873. "_anchorPoint": {
  11874. "__type__": "cc.Vec2",
  11875. "x": 0.5,
  11876. "y": 0.5
  11877. },
  11878. "_trs": {
  11879. "__type__": "TypedArray",
  11880. "ctor": "Float64Array",
  11881. "array": [
  11882. -105,
  11883. 70,
  11884. 0,
  11885. 0,
  11886. 0,
  11887. 0,
  11888. 1,
  11889. 1,
  11890. 1,
  11891. 1
  11892. ]
  11893. },
  11894. "_eulerAngles": {
  11895. "__type__": "cc.Vec3",
  11896. "x": 0,
  11897. "y": 0,
  11898. "z": 0
  11899. },
  11900. "_skewX": 0,
  11901. "_skewY": 0,
  11902. "_is3DNode": false,
  11903. "_groupIndex": 0,
  11904. "groupIndex": 0,
  11905. "_id": "ccHriz1c9Mb4WPqarxzosz"
  11906. },
  11907. {
  11908. "__type__": "cc.Label",
  11909. "_name": "",
  11910. "_objFlags": 0,
  11911. "node": {
  11912. "__id__": 250
  11913. },
  11914. "_enabled": true,
  11915. "_materials": [],
  11916. "_srcBlendFactor": 770,
  11917. "_dstBlendFactor": 771,
  11918. "_string": "农民",
  11919. "_N$string": "农民",
  11920. "_fontSize": 30,
  11921. "_lineHeight": 30,
  11922. "_enableWrapText": true,
  11923. "_N$file": null,
  11924. "_isSystemFontUsed": true,
  11925. "_spacingX": 0,
  11926. "_batchAsBitmap": false,
  11927. "_styleFlags": 0,
  11928. "_underlineHeight": 0,
  11929. "_N$horizontalAlign": 1,
  11930. "_N$verticalAlign": 1,
  11931. "_N$fontFamily": "Arial",
  11932. "_N$overflow": 2,
  11933. "_N$cacheMode": 0,
  11934. "_id": "dbnFC1kF9Hl7+WvaXCisNW"
  11935. },
  11936. {
  11937. "__type__": "cc.Node",
  11938. "_name": "New Label",
  11939. "_objFlags": 0,
  11940. "_parent": {
  11941. "__id__": 104
  11942. },
  11943. "_children": [],
  11944. "_active": false,
  11945. "_components": [
  11946. {
  11947. "__id__": 253
  11948. }
  11949. ],
  11950. "_prefab": null,
  11951. "_opacity": 255,
  11952. "_color": {
  11953. "__type__": "cc.Color",
  11954. "r": 255,
  11955. "g": 255,
  11956. "b": 255,
  11957. "a": 255
  11958. },
  11959. "_contentSize": {
  11960. "__type__": "cc.Size",
  11961. "width": 20,
  11962. "height": 60
  11963. },
  11964. "_anchorPoint": {
  11965. "__type__": "cc.Vec2",
  11966. "x": 0.5,
  11967. "y": 0.5
  11968. },
  11969. "_trs": {
  11970. "__type__": "TypedArray",
  11971. "ctor": "Float64Array",
  11972. "array": [
  11973. -185,
  11974. 69,
  11975. 0,
  11976. 0,
  11977. 0,
  11978. 0,
  11979. 1,
  11980. 1,
  11981. 1,
  11982. 1
  11983. ]
  11984. },
  11985. "_eulerAngles": {
  11986. "__type__": "cc.Vec3",
  11987. "x": 0,
  11988. "y": 0,
  11989. "z": 0
  11990. },
  11991. "_skewX": 0,
  11992. "_skewY": 0,
  11993. "_is3DNode": false,
  11994. "_groupIndex": 0,
  11995. "groupIndex": 0,
  11996. "_id": "3ega4J7cZBVa5wGR9TsPPG"
  11997. },
  11998. {
  11999. "__type__": "cc.Label",
  12000. "_name": "",
  12001. "_objFlags": 0,
  12002. "node": {
  12003. "__id__": 252
  12004. },
  12005. "_enabled": true,
  12006. "_materials": [],
  12007. "_srcBlendFactor": 770,
  12008. "_dstBlendFactor": 771,
  12009. "_string": "农民",
  12010. "_N$string": "农民",
  12011. "_fontSize": 30,
  12012. "_lineHeight": 30,
  12013. "_enableWrapText": true,
  12014. "_N$file": null,
  12015. "_isSystemFontUsed": true,
  12016. "_spacingX": 0,
  12017. "_batchAsBitmap": false,
  12018. "_styleFlags": 0,
  12019. "_underlineHeight": 0,
  12020. "_N$horizontalAlign": 1,
  12021. "_N$verticalAlign": 1,
  12022. "_N$fontFamily": "Arial",
  12023. "_N$overflow": 2,
  12024. "_N$cacheMode": 0,
  12025. "_id": "ea6rLVJfFDCLc7sPyG1UtJ"
  12026. },
  12027. {
  12028. "__type__": "cc.Node",
  12029. "_name": "圆角矩形 512",
  12030. "_objFlags": 0,
  12031. "_parent": {
  12032. "__id__": 104
  12033. },
  12034. "_children": [
  12035. {
  12036. "__id__": 255
  12037. }
  12038. ],
  12039. "_active": true,
  12040. "_components": [
  12041. {
  12042. "__id__": 257
  12043. }
  12044. ],
  12045. "_prefab": null,
  12046. "_opacity": 255,
  12047. "_color": {
  12048. "__type__": "cc.Color",
  12049. "r": 255,
  12050. "g": 255,
  12051. "b": 255,
  12052. "a": 255
  12053. },
  12054. "_contentSize": {
  12055. "__type__": "cc.Size",
  12056. "width": 277,
  12057. "height": 45
  12058. },
  12059. "_anchorPoint": {
  12060. "__type__": "cc.Vec2",
  12061. "x": 0.5,
  12062. "y": 0.5
  12063. },
  12064. "_trs": {
  12065. "__type__": "TypedArray",
  12066. "ctor": "Float64Array",
  12067. "array": [
  12068. 0,
  12069. -123,
  12070. 0,
  12071. 0,
  12072. 0,
  12073. 0,
  12074. 1,
  12075. 1,
  12076. 1,
  12077. 1
  12078. ]
  12079. },
  12080. "_eulerAngles": {
  12081. "__type__": "cc.Vec3",
  12082. "x": 0,
  12083. "y": 0,
  12084. "z": 0
  12085. },
  12086. "_skewX": 0,
  12087. "_skewY": 0,
  12088. "_is3DNode": false,
  12089. "_groupIndex": 0,
  12090. "groupIndex": 0,
  12091. "_id": "848UZAKzpIkoowufdHMc5+"
  12092. },
  12093. {
  12094. "__type__": "cc.Node",
  12095. "_name": "New Label",
  12096. "_objFlags": 0,
  12097. "_parent": {
  12098. "__id__": 254
  12099. },
  12100. "_children": [],
  12101. "_active": true,
  12102. "_components": [
  12103. {
  12104. "__id__": 256
  12105. }
  12106. ],
  12107. "_prefab": null,
  12108. "_opacity": 255,
  12109. "_color": {
  12110. "__type__": "cc.Color",
  12111. "r": 255,
  12112. "g": 198,
  12113. "b": 24,
  12114. "a": 255
  12115. },
  12116. "_contentSize": {
  12117. "__type__": "cc.Size",
  12118. "width": 130.62,
  12119. "height": 25
  12120. },
  12121. "_anchorPoint": {
  12122. "__type__": "cc.Vec2",
  12123. "x": 0.5,
  12124. "y": 0.5
  12125. },
  12126. "_trs": {
  12127. "__type__": "TypedArray",
  12128. "ctor": "Float64Array",
  12129. "array": [
  12130. 0,
  12131. 0,
  12132. 0,
  12133. 0,
  12134. 0,
  12135. 0,
  12136. 1,
  12137. 1,
  12138. 1,
  12139. 1
  12140. ]
  12141. },
  12142. "_eulerAngles": {
  12143. "__type__": "cc.Vec3",
  12144. "x": 0,
  12145. "y": 0,
  12146. "z": 0
  12147. },
  12148. "_skewX": 0,
  12149. "_skewY": 0,
  12150. "_is3DNode": false,
  12151. "_groupIndex": 0,
  12152. "groupIndex": 0,
  12153. "_id": "6eryEd6RVGaZIt+yYpegUe"
  12154. },
  12155. {
  12156. "__type__": "cc.Label",
  12157. "_name": "",
  12158. "_objFlags": 0,
  12159. "node": {
  12160. "__id__": 255
  12161. },
  12162. "_enabled": true,
  12163. "_materials": [],
  12164. "_srcBlendFactor": 770,
  12165. "_dstBlendFactor": 771,
  12166. "_string": "分数:3400",
  12167. "_N$string": "分数:3400",
  12168. "_fontSize": 25,
  12169. "_lineHeight": 25,
  12170. "_enableWrapText": true,
  12171. "_N$file": null,
  12172. "_isSystemFontUsed": true,
  12173. "_spacingX": 0,
  12174. "_batchAsBitmap": false,
  12175. "_styleFlags": 0,
  12176. "_underlineHeight": 0,
  12177. "_N$horizontalAlign": 1,
  12178. "_N$verticalAlign": 1,
  12179. "_N$fontFamily": "Arial",
  12180. "_N$overflow": 0,
  12181. "_N$cacheMode": 0,
  12182. "_id": "38ONVRkXJKj6jEouCf3XCJ"
  12183. },
  12184. {
  12185. "__type__": "cc.Sprite",
  12186. "_name": "",
  12187. "_objFlags": 0,
  12188. "node": {
  12189. "__id__": 254
  12190. },
  12191. "_enabled": true,
  12192. "_materials": [],
  12193. "_srcBlendFactor": 770,
  12194. "_dstBlendFactor": 771,
  12195. "_spriteFrame": {
  12196. "__uuid__": "1dd9358f-0489-494e-9cf5-84371bdd86af"
  12197. },
  12198. "_type": 0,
  12199. "_sizeMode": 1,
  12200. "_fillType": 0,
  12201. "_fillCenter": {
  12202. "__type__": "cc.Vec2",
  12203. "x": 0,
  12204. "y": 0
  12205. },
  12206. "_fillStart": 0,
  12207. "_fillRange": 0,
  12208. "_isTrimmedMode": true,
  12209. "_atlas": null,
  12210. "_id": "0dDlCiGGNHR6c4wYiIqZN6"
  12211. },
  12212. {
  12213. "__type__": "33cd23uZ6JD4pTLpKtgjbbS",
  12214. "_name": "",
  12215. "_objFlags": 0,
  12216. "node": {
  12217. "__id__": 36
  12218. },
  12219. "_enabled": true,
  12220. "levelUp1": {
  12221. "__id__": 225
  12222. },
  12223. "levelUp2": {
  12224. "__id__": 229
  12225. },
  12226. "character": {
  12227. "__id__": 79
  12228. },
  12229. "fail": {
  12230. "__id__": 178
  12231. },
  12232. "_id": "c2bCrs0vxND5hk7nI1Una8"
  12233. },
  12234. {
  12235. "__type__": "a3721/aOY1GFrIWHHBzYGsi",
  12236. "_name": "",
  12237. "_objFlags": 0,
  12238. "node": {
  12239. "__id__": 36
  12240. },
  12241. "_enabled": true,
  12242. "groups": [],
  12243. "map": [],
  12244. "mapLength": 8,
  12245. "_id": "629VEw7jRHUYQWrRcLDozu"
  12246. },
  12247. {
  12248. "__type__": "a1bb7xaDvtHXLTuIo0MRIEu",
  12249. "_name": "",
  12250. "_objFlags": 0,
  12251. "node": {
  12252. "__id__": 2
  12253. },
  12254. "_enabled": true,
  12255. "status": 0,
  12256. "pages": [
  12257. {
  12258. "__id__": 9
  12259. },
  12260. {
  12261. "__id__": 36
  12262. },
  12263. {
  12264. "__id__": 105
  12265. },
  12266. {
  12267. "__id__": 104
  12268. },
  12269. {
  12270. "__id__": 109
  12271. },
  12272. {
  12273. "__id__": 189
  12274. },
  12275. {
  12276. "__id__": 145
  12277. }
  12278. ],
  12279. "_id": "dcdf4/GcRNFoagYJZ9sEJt"
  12280. },
  12281. {
  12282. "__type__": "b55a72WBPhBorvnSW4KT5tu",
  12283. "_name": "",
  12284. "_objFlags": 0,
  12285. "node": {
  12286. "__id__": 9
  12287. },
  12288. "_enabled": true,
  12289. "bannerNode": {
  12290. "__id__": 12
  12291. },
  12292. "labelNode": {
  12293. "__id__": 14
  12294. },
  12295. "_id": "42IIjoor1G5brGPbtJIely"
  12296. },
  12297. {
  12298. "__type__": "cc.Node",
  12299. "_name": "pictorial",
  12300. "_objFlags": 0,
  12301. "_parent": {
  12302. "__id__": 9
  12303. },
  12304. "_children": [
  12305. {
  12306. "__id__": 263
  12307. },
  12308. {
  12309. "__id__": 272
  12310. }
  12311. ],
  12312. "_active": true,
  12313. "_components": [
  12314. {
  12315. "__id__": 276
  12316. }
  12317. ],
  12318. "_prefab": null,
  12319. "_opacity": 255,
  12320. "_color": {
  12321. "__type__": "cc.Color",
  12322. "r": 255,
  12323. "g": 255,
  12324. "b": 255,
  12325. "a": 255
  12326. },
  12327. "_contentSize": {
  12328. "__type__": "cc.Size",
  12329. "width": 0,
  12330. "height": 0
  12331. },
  12332. "_anchorPoint": {
  12333. "__type__": "cc.Vec2",
  12334. "x": 0.5,
  12335. "y": 0.5
  12336. },
  12337. "_trs": {
  12338. "__type__": "TypedArray",
  12339. "ctor": "Float64Array",
  12340. "array": [
  12341. 0,
  12342. 0,
  12343. 0,
  12344. 0,
  12345. 0,
  12346. 0,
  12347. 1,
  12348. 1,
  12349. 1,
  12350. 1
  12351. ]
  12352. },
  12353. "_eulerAngles": {
  12354. "__type__": "cc.Vec3",
  12355. "x": 0,
  12356. "y": 0,
  12357. "z": 0
  12358. },
  12359. "_skewX": 0,
  12360. "_skewY": 0,
  12361. "_is3DNode": false,
  12362. "_groupIndex": 0,
  12363. "groupIndex": 0,
  12364. "_id": "e5OaZa8cxLF7EDBtqHc2sU"
  12365. },
  12366. {
  12367. "__type__": "cc.Node",
  12368. "_name": "scrollview",
  12369. "_objFlags": 0,
  12370. "_parent": {
  12371. "__id__": 262
  12372. },
  12373. "_children": [
  12374. {
  12375. "__id__": 264
  12376. },
  12377. {
  12378. "__id__": 266
  12379. }
  12380. ],
  12381. "_active": true,
  12382. "_components": [
  12383. {
  12384. "__id__": 270
  12385. },
  12386. {
  12387. "__id__": 271
  12388. }
  12389. ],
  12390. "_prefab": null,
  12391. "_opacity": 255,
  12392. "_color": {
  12393. "__type__": "cc.Color",
  12394. "r": 255,
  12395. "g": 255,
  12396. "b": 255,
  12397. "a": 255
  12398. },
  12399. "_contentSize": {
  12400. "__type__": "cc.Size",
  12401. "width": 665,
  12402. "height": 1050
  12403. },
  12404. "_anchorPoint": {
  12405. "__type__": "cc.Vec2",
  12406. "x": 0.5,
  12407. "y": 0.5
  12408. },
  12409. "_trs": {
  12410. "__type__": "TypedArray",
  12411. "ctor": "Float64Array",
  12412. "array": [
  12413. -3,
  12414. 34,
  12415. 0,
  12416. 0,
  12417. 0,
  12418. 0,
  12419. 1,
  12420. 1,
  12421. 1,
  12422. 1
  12423. ]
  12424. },
  12425. "_eulerAngles": {
  12426. "__type__": "cc.Vec3",
  12427. "x": 0,
  12428. "y": 0,
  12429. "z": 0
  12430. },
  12431. "_skewX": 0,
  12432. "_skewY": 0,
  12433. "_is3DNode": false,
  12434. "_groupIndex": 0,
  12435. "groupIndex": 0,
  12436. "_id": "f2doF+6vhPvI6H/N8GczY+"
  12437. },
  12438. {
  12439. "__type__": "cc.Node",
  12440. "_name": "图鉴1",
  12441. "_objFlags": 0,
  12442. "_parent": {
  12443. "__id__": 263
  12444. },
  12445. "_children": [],
  12446. "_active": true,
  12447. "_components": [
  12448. {
  12449. "__id__": 265
  12450. }
  12451. ],
  12452. "_prefab": null,
  12453. "_opacity": 255,
  12454. "_color": {
  12455. "__type__": "cc.Color",
  12456. "r": 255,
  12457. "g": 255,
  12458. "b": 255,
  12459. "a": 255
  12460. },
  12461. "_contentSize": {
  12462. "__type__": "cc.Size",
  12463. "width": 76,
  12464. "height": 39
  12465. },
  12466. "_anchorPoint": {
  12467. "__type__": "cc.Vec2",
  12468. "x": 0.5,
  12469. "y": 0.5
  12470. },
  12471. "_trs": {
  12472. "__type__": "TypedArray",
  12473. "ctor": "Float64Array",
  12474. "array": [
  12475. 0,
  12476. 481,
  12477. 0,
  12478. 0,
  12479. 0,
  12480. 0,
  12481. 1,
  12482. 1,
  12483. 1,
  12484. 1
  12485. ]
  12486. },
  12487. "_eulerAngles": {
  12488. "__type__": "cc.Vec3",
  12489. "x": 0,
  12490. "y": 0,
  12491. "z": 0
  12492. },
  12493. "_skewX": 0,
  12494. "_skewY": 0,
  12495. "_is3DNode": false,
  12496. "_groupIndex": 0,
  12497. "groupIndex": 0,
  12498. "_id": "dedKSqiqlGkpJDiDkHcr+U"
  12499. },
  12500. {
  12501. "__type__": "cc.Sprite",
  12502. "_name": "",
  12503. "_objFlags": 0,
  12504. "node": {
  12505. "__id__": 264
  12506. },
  12507. "_enabled": true,
  12508. "_materials": [
  12509. {
  12510. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  12511. }
  12512. ],
  12513. "_srcBlendFactor": 770,
  12514. "_dstBlendFactor": 771,
  12515. "_spriteFrame": {
  12516. "__uuid__": "d2980aa4-7562-4d24-8551-5d4085036d0b"
  12517. },
  12518. "_type": 0,
  12519. "_sizeMode": 1,
  12520. "_fillType": 0,
  12521. "_fillCenter": {
  12522. "__type__": "cc.Vec2",
  12523. "x": 0,
  12524. "y": 0
  12525. },
  12526. "_fillStart": 0,
  12527. "_fillRange": 0,
  12528. "_isTrimmedMode": true,
  12529. "_atlas": null,
  12530. "_id": "80hSo88fpPT5ATDqe04eph"
  12531. },
  12532. {
  12533. "__type__": "cc.Node",
  12534. "_name": "view",
  12535. "_objFlags": 0,
  12536. "_parent": {
  12537. "__id__": 263
  12538. },
  12539. "_children": [
  12540. {
  12541. "__id__": 267
  12542. }
  12543. ],
  12544. "_active": true,
  12545. "_components": [
  12546. {
  12547. "__id__": 269
  12548. }
  12549. ],
  12550. "_prefab": null,
  12551. "_opacity": 255,
  12552. "_color": {
  12553. "__type__": "cc.Color",
  12554. "r": 255,
  12555. "g": 255,
  12556. "b": 255,
  12557. "a": 255
  12558. },
  12559. "_contentSize": {
  12560. "__type__": "cc.Size",
  12561. "width": 550,
  12562. "height": 750
  12563. },
  12564. "_anchorPoint": {
  12565. "__type__": "cc.Vec2",
  12566. "x": 0.5,
  12567. "y": 0.5
  12568. },
  12569. "_trs": {
  12570. "__type__": "TypedArray",
  12571. "ctor": "Float64Array",
  12572. "array": [
  12573. 0,
  12574. 19,
  12575. 0,
  12576. 0,
  12577. 0,
  12578. 0,
  12579. 1,
  12580. 1,
  12581. 1,
  12582. 1
  12583. ]
  12584. },
  12585. "_eulerAngles": {
  12586. "__type__": "cc.Vec3",
  12587. "x": 0,
  12588. "y": 0,
  12589. "z": 0
  12590. },
  12591. "_skewX": 0,
  12592. "_skewY": 0,
  12593. "_is3DNode": false,
  12594. "_groupIndex": 0,
  12595. "groupIndex": 0,
  12596. "_id": "f8T9yDXm9KOJJviTZdIcZ5"
  12597. },
  12598. {
  12599. "__type__": "cc.Node",
  12600. "_name": "content",
  12601. "_objFlags": 0,
  12602. "_parent": {
  12603. "__id__": 266
  12604. },
  12605. "_children": [],
  12606. "_active": true,
  12607. "_components": [
  12608. {
  12609. "__id__": 268
  12610. }
  12611. ],
  12612. "_prefab": null,
  12613. "_opacity": 255,
  12614. "_color": {
  12615. "__type__": "cc.Color",
  12616. "r": 255,
  12617. "g": 255,
  12618. "b": 255,
  12619. "a": 255
  12620. },
  12621. "_contentSize": {
  12622. "__type__": "cc.Size",
  12623. "width": 550,
  12624. "height": 1200
  12625. },
  12626. "_anchorPoint": {
  12627. "__type__": "cc.Vec2",
  12628. "x": 0.5,
  12629. "y": 1
  12630. },
  12631. "_trs": {
  12632. "__type__": "TypedArray",
  12633. "ctor": "Float64Array",
  12634. "array": [
  12635. 0,
  12636. 353,
  12637. 0,
  12638. 0,
  12639. 0,
  12640. 0,
  12641. 1,
  12642. 1,
  12643. 1,
  12644. 1
  12645. ]
  12646. },
  12647. "_eulerAngles": {
  12648. "__type__": "cc.Vec3",
  12649. "x": 0,
  12650. "y": 0,
  12651. "z": 0
  12652. },
  12653. "_skewX": 0,
  12654. "_skewY": 0,
  12655. "_is3DNode": false,
  12656. "_groupIndex": 0,
  12657. "groupIndex": 0,
  12658. "_id": "acgAxxkSxA+rD1io9zfpeG"
  12659. },
  12660. {
  12661. "__type__": "cc.Layout",
  12662. "_name": "",
  12663. "_objFlags": 0,
  12664. "node": {
  12665. "__id__": 267
  12666. },
  12667. "_enabled": true,
  12668. "_layoutSize": {
  12669. "__type__": "cc.Size",
  12670. "width": 550,
  12671. "height": 1200
  12672. },
  12673. "_resize": 1,
  12674. "_N$layoutType": 3,
  12675. "_N$cellSize": {
  12676. "__type__": "cc.Size",
  12677. "width": 40,
  12678. "height": 40
  12679. },
  12680. "_N$startAxis": 0,
  12681. "_N$paddingLeft": 30,
  12682. "_N$paddingRight": 30,
  12683. "_N$paddingTop": 0,
  12684. "_N$paddingBottom": 150,
  12685. "_N$spacingX": 19,
  12686. "_N$spacingY": 20,
  12687. "_N$verticalDirection": 1,
  12688. "_N$horizontalDirection": 0,
  12689. "_N$affectedByScale": false,
  12690. "_id": "33m/tWfkBFZ5CVyD8P8t0D"
  12691. },
  12692. {
  12693. "__type__": "cc.Mask",
  12694. "_name": "",
  12695. "_objFlags": 0,
  12696. "node": {
  12697. "__id__": 266
  12698. },
  12699. "_enabled": true,
  12700. "_materials": [
  12701. {
  12702. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  12703. }
  12704. ],
  12705. "_spriteFrame": null,
  12706. "_type": 0,
  12707. "_segments": 64,
  12708. "_N$alphaThreshold": 0.1,
  12709. "_N$inverted": false,
  12710. "_id": "c4TNerlkBL9Y9o12e9JHbh"
  12711. },
  12712. {
  12713. "__type__": "cc.Sprite",
  12714. "_name": "",
  12715. "_objFlags": 0,
  12716. "node": {
  12717. "__id__": 263
  12718. },
  12719. "_enabled": true,
  12720. "_materials": [
  12721. {
  12722. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  12723. }
  12724. ],
  12725. "_srcBlendFactor": 770,
  12726. "_dstBlendFactor": 771,
  12727. "_spriteFrame": {
  12728. "__uuid__": "c6f13935-51e6-471e-831f-3e9689a493f7"
  12729. },
  12730. "_type": 1,
  12731. "_sizeMode": 0,
  12732. "_fillType": 0,
  12733. "_fillCenter": {
  12734. "__type__": "cc.Vec2",
  12735. "x": 0,
  12736. "y": 0
  12737. },
  12738. "_fillStart": 0,
  12739. "_fillRange": 0,
  12740. "_isTrimmedMode": true,
  12741. "_atlas": null,
  12742. "_id": "b8NNpxlwJH/5hNu7DzeSiD"
  12743. },
  12744. {
  12745. "__type__": "cc.ScrollView",
  12746. "_name": "",
  12747. "_objFlags": 0,
  12748. "node": {
  12749. "__id__": 263
  12750. },
  12751. "_enabled": true,
  12752. "horizontal": false,
  12753. "vertical": true,
  12754. "inertia": true,
  12755. "brake": 0.75,
  12756. "elastic": true,
  12757. "bounceDuration": 0.23,
  12758. "scrollEvents": [],
  12759. "cancelInnerEvents": true,
  12760. "_N$content": {
  12761. "__id__": 267
  12762. },
  12763. "content": {
  12764. "__id__": 267
  12765. },
  12766. "_N$horizontalScrollBar": null,
  12767. "_N$verticalScrollBar": null,
  12768. "_id": "7c1zU0o3tPNpgT9pRFWATx"
  12769. },
  12770. {
  12771. "__type__": "cc.Node",
  12772. "_name": "close",
  12773. "_objFlags": 0,
  12774. "_parent": {
  12775. "__id__": 262
  12776. },
  12777. "_children": [],
  12778. "_active": true,
  12779. "_components": [
  12780. {
  12781. "__id__": 273
  12782. },
  12783. {
  12784. "__id__": 274
  12785. }
  12786. ],
  12787. "_prefab": null,
  12788. "_opacity": 255,
  12789. "_color": {
  12790. "__type__": "cc.Color",
  12791. "r": 255,
  12792. "g": 255,
  12793. "b": 255,
  12794. "a": 255
  12795. },
  12796. "_contentSize": {
  12797. "__type__": "cc.Size",
  12798. "width": 81,
  12799. "height": 84
  12800. },
  12801. "_anchorPoint": {
  12802. "__type__": "cc.Vec2",
  12803. "x": 0.5,
  12804. "y": 0.5
  12805. },
  12806. "_trs": {
  12807. "__type__": "TypedArray",
  12808. "ctor": "Float64Array",
  12809. "array": [
  12810. 315,
  12811. 543,
  12812. 0,
  12813. 0,
  12814. 0,
  12815. 0,
  12816. 1,
  12817. 1,
  12818. 1,
  12819. 1
  12820. ]
  12821. },
  12822. "_eulerAngles": {
  12823. "__type__": "cc.Vec3",
  12824. "x": 0,
  12825. "y": 0,
  12826. "z": 0
  12827. },
  12828. "_skewX": 0,
  12829. "_skewY": 0,
  12830. "_is3DNode": false,
  12831. "_groupIndex": 0,
  12832. "groupIndex": 0,
  12833. "_id": "b9CByuWV1KHL8rcS/FdGEn"
  12834. },
  12835. {
  12836. "__type__": "cc.Sprite",
  12837. "_name": "",
  12838. "_objFlags": 0,
  12839. "node": {
  12840. "__id__": 272
  12841. },
  12842. "_enabled": true,
  12843. "_materials": [
  12844. {
  12845. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  12846. }
  12847. ],
  12848. "_srcBlendFactor": 770,
  12849. "_dstBlendFactor": 771,
  12850. "_spriteFrame": {
  12851. "__uuid__": "0706478d-6e33-442e-9056-108d59ca1378"
  12852. },
  12853. "_type": 0,
  12854. "_sizeMode": 1,
  12855. "_fillType": 0,
  12856. "_fillCenter": {
  12857. "__type__": "cc.Vec2",
  12858. "x": 0,
  12859. "y": 0
  12860. },
  12861. "_fillStart": 0,
  12862. "_fillRange": 0,
  12863. "_isTrimmedMode": true,
  12864. "_atlas": null,
  12865. "_id": "21W6W8rHVM3oTiw+Tb92Mb"
  12866. },
  12867. {
  12868. "__type__": "cc.Button",
  12869. "_name": "",
  12870. "_objFlags": 0,
  12871. "node": {
  12872. "__id__": 272
  12873. },
  12874. "_enabled": true,
  12875. "_normalMaterial": null,
  12876. "_grayMaterial": null,
  12877. "duration": 0.1,
  12878. "zoomScale": 1.2,
  12879. "clickEvents": [
  12880. {
  12881. "__id__": 275
  12882. }
  12883. ],
  12884. "_N$interactable": true,
  12885. "_N$enableAutoGrayEffect": false,
  12886. "_N$transition": 0,
  12887. "transition": 0,
  12888. "_N$normalColor": {
  12889. "__type__": "cc.Color",
  12890. "r": 214,
  12891. "g": 214,
  12892. "b": 214,
  12893. "a": 255
  12894. },
  12895. "_N$pressedColor": {
  12896. "__type__": "cc.Color",
  12897. "r": 211,
  12898. "g": 211,
  12899. "b": 211,
  12900. "a": 255
  12901. },
  12902. "pressedColor": {
  12903. "__type__": "cc.Color",
  12904. "r": 211,
  12905. "g": 211,
  12906. "b": 211,
  12907. "a": 255
  12908. },
  12909. "_N$hoverColor": {
  12910. "__type__": "cc.Color",
  12911. "r": 255,
  12912. "g": 255,
  12913. "b": 255,
  12914. "a": 255
  12915. },
  12916. "hoverColor": {
  12917. "__type__": "cc.Color",
  12918. "r": 255,
  12919. "g": 255,
  12920. "b": 255,
  12921. "a": 255
  12922. },
  12923. "_N$disabledColor": {
  12924. "__type__": "cc.Color",
  12925. "r": 124,
  12926. "g": 124,
  12927. "b": 124,
  12928. "a": 255
  12929. },
  12930. "_N$normalSprite": null,
  12931. "_N$pressedSprite": null,
  12932. "pressedSprite": null,
  12933. "_N$hoverSprite": null,
  12934. "hoverSprite": null,
  12935. "_N$disabledSprite": null,
  12936. "_N$target": null,
  12937. "_id": "ddjVTHxMpBvr+ppDijjLw0"
  12938. },
  12939. {
  12940. "__type__": "cc.ClickEvent",
  12941. "target": {
  12942. "__id__": 18
  12943. },
  12944. "component": "",
  12945. "_componentId": "feefcb/VXtFp4L+Zqa6CrBZ",
  12946. "handler": "closePictorial",
  12947. "customEventData": ""
  12948. },
  12949. {
  12950. "__type__": "0e40bxKGytLiJwQbi3sCcB6",
  12951. "_name": "",
  12952. "_objFlags": 0,
  12953. "node": {
  12954. "__id__": 262
  12955. },
  12956. "_enabled": true,
  12957. "container": {
  12958. "__id__": 267
  12959. },
  12960. "avatar": {
  12961. "__id__": 277
  12962. },
  12963. "prefab": {
  12964. "__uuid__": "3c9ed32c-2c78-4ed5-9f70-2b34814055e5"
  12965. },
  12966. "_id": "c0DZh+jiFJl4Ryxd5T6v4z"
  12967. },
  12968. {
  12969. "__type__": "cc.Node",
  12970. "_name": "highLevel",
  12971. "_objFlags": 0,
  12972. "_parent": {
  12973. "__id__": 9
  12974. },
  12975. "_children": [
  12976. {
  12977. "__id__": 278
  12978. },
  12979. {
  12980. "__id__": 280
  12981. },
  12982. {
  12983. "__id__": 282
  12984. },
  12985. {
  12986. "__id__": 284
  12987. },
  12988. {
  12989. "__id__": 286
  12990. }
  12991. ],
  12992. "_active": true,
  12993. "_components": [],
  12994. "_prefab": null,
  12995. "_opacity": 255,
  12996. "_color": {
  12997. "__type__": "cc.Color",
  12998. "r": 255,
  12999. "g": 255,
  13000. "b": 255,
  13001. "a": 255
  13002. },
  13003. "_contentSize": {
  13004. "__type__": "cc.Size",
  13005. "width": 0,
  13006. "height": 0
  13007. },
  13008. "_anchorPoint": {
  13009. "__type__": "cc.Vec2",
  13010. "x": 0.5,
  13011. "y": 0.5
  13012. },
  13013. "_trs": {
  13014. "__type__": "TypedArray",
  13015. "ctor": "Float64Array",
  13016. "array": [
  13017. 0,
  13018. -83,
  13019. 0,
  13020. 0,
  13021. 0,
  13022. 0,
  13023. 1,
  13024. 1,
  13025. 1,
  13026. 1
  13027. ]
  13028. },
  13029. "_eulerAngles": {
  13030. "__type__": "cc.Vec3",
  13031. "x": 0,
  13032. "y": 0,
  13033. "z": 0
  13034. },
  13035. "_skewX": 0,
  13036. "_skewY": 0,
  13037. "_is3DNode": false,
  13038. "_groupIndex": 0,
  13039. "groupIndex": 0,
  13040. "_id": "855kSXm5VC3qhzkjLIfiKa"
  13041. },
  13042. {
  13043. "__type__": "cc.Node",
  13044. "_name": "矩形 1",
  13045. "_objFlags": 0,
  13046. "_parent": {
  13047. "__id__": 277
  13048. },
  13049. "_children": [],
  13050. "_active": true,
  13051. "_components": [
  13052. {
  13053. "__id__": 279
  13054. }
  13055. ],
  13056. "_prefab": null,
  13057. "_opacity": 255,
  13058. "_color": {
  13059. "__type__": "cc.Color",
  13060. "r": 255,
  13061. "g": 255,
  13062. "b": 255,
  13063. "a": 255
  13064. },
  13065. "_contentSize": {
  13066. "__type__": "cc.Size",
  13067. "width": 274,
  13068. "height": 83
  13069. },
  13070. "_anchorPoint": {
  13071. "__type__": "cc.Vec2",
  13072. "x": 0.5,
  13073. "y": 0.5
  13074. },
  13075. "_trs": {
  13076. "__type__": "TypedArray",
  13077. "ctor": "Float64Array",
  13078. "array": [
  13079. 0,
  13080. 261.4,
  13081. 0,
  13082. 0,
  13083. 0,
  13084. 0,
  13085. 1,
  13086. 1,
  13087. 1,
  13088. 1
  13089. ]
  13090. },
  13091. "_eulerAngles": {
  13092. "__type__": "cc.Vec3",
  13093. "x": 0,
  13094. "y": 0,
  13095. "z": 0
  13096. },
  13097. "_skewX": 0,
  13098. "_skewY": 0,
  13099. "_is3DNode": false,
  13100. "_groupIndex": 0,
  13101. "groupIndex": 0,
  13102. "_id": "ddW6y2It9JV4DJp4bNs6tQ"
  13103. },
  13104. {
  13105. "__type__": "cc.Sprite",
  13106. "_name": "",
  13107. "_objFlags": 0,
  13108. "node": {
  13109. "__id__": 278
  13110. },
  13111. "_enabled": true,
  13112. "_materials": [
  13113. {
  13114. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  13115. }
  13116. ],
  13117. "_srcBlendFactor": 770,
  13118. "_dstBlendFactor": 771,
  13119. "_spriteFrame": {
  13120. "__uuid__": "4fbf8df3-b863-4c49-ada2-c190e3cf12c2"
  13121. },
  13122. "_type": 0,
  13123. "_sizeMode": 1,
  13124. "_fillType": 0,
  13125. "_fillCenter": {
  13126. "__type__": "cc.Vec2",
  13127. "x": 0,
  13128. "y": 0
  13129. },
  13130. "_fillStart": 0,
  13131. "_fillRange": 0,
  13132. "_isTrimmedMode": true,
  13133. "_atlas": null,
  13134. "_id": "43bcN04atJbaJIn9okaquf"
  13135. },
  13136. {
  13137. "__type__": "cc.Node",
  13138. "_name": "椭圆 1(1)",
  13139. "_objFlags": 0,
  13140. "_parent": {
  13141. "__id__": 277
  13142. },
  13143. "_children": [],
  13144. "_active": true,
  13145. "_components": [
  13146. {
  13147. "__id__": 281
  13148. }
  13149. ],
  13150. "_prefab": null,
  13151. "_opacity": 255,
  13152. "_color": {
  13153. "__type__": "cc.Color",
  13154. "r": 255,
  13155. "g": 255,
  13156. "b": 255,
  13157. "a": 255
  13158. },
  13159. "_contentSize": {
  13160. "__type__": "cc.Size",
  13161. "width": 120,
  13162. "height": 71
  13163. },
  13164. "_anchorPoint": {
  13165. "__type__": "cc.Vec2",
  13166. "x": 0.5,
  13167. "y": 0.5
  13168. },
  13169. "_trs": {
  13170. "__type__": "TypedArray",
  13171. "ctor": "Float64Array",
  13172. "array": [
  13173. 0,
  13174. -95,
  13175. 0,
  13176. 0,
  13177. 0,
  13178. 0,
  13179. 1,
  13180. 1,
  13181. 1,
  13182. 1
  13183. ]
  13184. },
  13185. "_eulerAngles": {
  13186. "__type__": "cc.Vec3",
  13187. "x": 0,
  13188. "y": 0,
  13189. "z": 0
  13190. },
  13191. "_skewX": 0,
  13192. "_skewY": 0,
  13193. "_is3DNode": false,
  13194. "_groupIndex": 0,
  13195. "groupIndex": 0,
  13196. "_id": "77lLOmEl9HpZ8DiPEcLpFT"
  13197. },
  13198. {
  13199. "__type__": "cc.Sprite",
  13200. "_name": "",
  13201. "_objFlags": 0,
  13202. "node": {
  13203. "__id__": 280
  13204. },
  13205. "_enabled": true,
  13206. "_materials": [
  13207. {
  13208. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  13209. }
  13210. ],
  13211. "_srcBlendFactor": 770,
  13212. "_dstBlendFactor": 771,
  13213. "_spriteFrame": {
  13214. "__uuid__": "c67caf16-381f-459d-a30b-81bed846e851"
  13215. },
  13216. "_type": 0,
  13217. "_sizeMode": 1,
  13218. "_fillType": 0,
  13219. "_fillCenter": {
  13220. "__type__": "cc.Vec2",
  13221. "x": 0,
  13222. "y": 0
  13223. },
  13224. "_fillStart": 0,
  13225. "_fillRange": 0,
  13226. "_isTrimmedMode": true,
  13227. "_atlas": null,
  13228. "_id": "97gx6Pup1JIKs7Q9ZZtame"
  13229. },
  13230. {
  13231. "__type__": "cc.Node",
  13232. "_name": "db",
  13233. "_objFlags": 0,
  13234. "_parent": {
  13235. "__id__": 277
  13236. },
  13237. "_children": [],
  13238. "_active": true,
  13239. "_components": [
  13240. {
  13241. "__id__": 283
  13242. }
  13243. ],
  13244. "_prefab": null,
  13245. "_opacity": 255,
  13246. "_color": {
  13247. "__type__": "cc.Color",
  13248. "r": 255,
  13249. "g": 255,
  13250. "b": 255,
  13251. "a": 255
  13252. },
  13253. "_contentSize": {
  13254. "__type__": "cc.Size",
  13255. "width": 243,
  13256. "height": 270
  13257. },
  13258. "_anchorPoint": {
  13259. "__type__": "cc.Vec2",
  13260. "x": 0.5,
  13261. "y": 0
  13262. },
  13263. "_trs": {
  13264. "__type__": "TypedArray",
  13265. "ctor": "Float64Array",
  13266. "array": [
  13267. 5,
  13268. -87,
  13269. 0,
  13270. 0,
  13271. 0,
  13272. 0,
  13273. 1,
  13274. 1,
  13275. 1,
  13276. 1
  13277. ]
  13278. },
  13279. "_eulerAngles": {
  13280. "__type__": "cc.Vec3",
  13281. "x": 0,
  13282. "y": 0,
  13283. "z": 0
  13284. },
  13285. "_skewX": 0,
  13286. "_skewY": 0,
  13287. "_is3DNode": false,
  13288. "_groupIndex": 0,
  13289. "groupIndex": 0,
  13290. "_id": "b0apSIx7dC4L7rXtT2wirN"
  13291. },
  13292. {
  13293. "__type__": "dragonBones.ArmatureDisplay",
  13294. "_name": "",
  13295. "_objFlags": 0,
  13296. "node": {
  13297. "__id__": 282
  13298. },
  13299. "_enabled": true,
  13300. "_materials": [
  13301. {
  13302. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  13303. }
  13304. ],
  13305. "_armatureName": "",
  13306. "_animationName": "",
  13307. "_preCacheMode": 0,
  13308. "_cacheMode": 0,
  13309. "playTimes": -1,
  13310. "premultipliedAlpha": false,
  13311. "_armatureKey": "3d5eed92-34b5-4f2c-82a5-56317e3e593e#b51b9674-2751-4a8a-9f77-fbbcbce285ff",
  13312. "_accTime": 0,
  13313. "_playCount": 0,
  13314. "_frameCache": null,
  13315. "_curFrame": null,
  13316. "_playing": false,
  13317. "_armatureCache": null,
  13318. "_N$dragonAsset": null,
  13319. "_N$dragonAtlasAsset": null,
  13320. "_N$_defaultArmatureIndex": 0,
  13321. "_N$_animationIndex": 0,
  13322. "_N$_defaultCacheMode": 0,
  13323. "_N$timeScale": 0.5,
  13324. "_N$debugBones": false,
  13325. "_N$enableBatch": false,
  13326. "_id": "e8s/0pihBDyawmcItuQP73"
  13327. },
  13328. {
  13329. "__type__": "cc.Node",
  13330. "_name": "name",
  13331. "_objFlags": 0,
  13332. "_parent": {
  13333. "__id__": 277
  13334. },
  13335. "_children": [],
  13336. "_active": true,
  13337. "_components": [
  13338. {
  13339. "__id__": 285
  13340. }
  13341. ],
  13342. "_prefab": null,
  13343. "_opacity": 255,
  13344. "_color": {
  13345. "__type__": "cc.Color",
  13346. "r": 251,
  13347. "g": 235,
  13348. "b": 149,
  13349. "a": 255
  13350. },
  13351. "_contentSize": {
  13352. "__type__": "cc.Size",
  13353. "width": 85.64,
  13354. "height": 50.4
  13355. },
  13356. "_anchorPoint": {
  13357. "__type__": "cc.Vec2",
  13358. "x": 0.5,
  13359. "y": 0.5
  13360. },
  13361. "_trs": {
  13362. "__type__": "TypedArray",
  13363. "ctor": "Float64Array",
  13364. "array": [
  13365. 0,
  13366. 282.3,
  13367. 0,
  13368. 0,
  13369. 0,
  13370. 0,
  13371. 1,
  13372. 1,
  13373. 1,
  13374. 1
  13375. ]
  13376. },
  13377. "_eulerAngles": {
  13378. "__type__": "cc.Vec3",
  13379. "x": 0,
  13380. "y": 0,
  13381. "z": 0
  13382. },
  13383. "_skewX": 0,
  13384. "_skewY": 0,
  13385. "_is3DNode": false,
  13386. "_groupIndex": 0,
  13387. "groupIndex": 0,
  13388. "_id": "104O5LY2JPrqy8UQB3FtOC"
  13389. },
  13390. {
  13391. "__type__": "cc.Label",
  13392. "_name": "",
  13393. "_objFlags": 0,
  13394. "node": {
  13395. "__id__": 284
  13396. },
  13397. "_enabled": true,
  13398. "_materials": [
  13399. {
  13400. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  13401. }
  13402. ],
  13403. "_srcBlendFactor": 770,
  13404. "_dstBlendFactor": 771,
  13405. "_string": "Label",
  13406. "_N$string": "Label",
  13407. "_fontSize": 35,
  13408. "_lineHeight": 40,
  13409. "_enableWrapText": true,
  13410. "_N$file": null,
  13411. "_isSystemFontUsed": true,
  13412. "_spacingX": 0,
  13413. "_batchAsBitmap": false,
  13414. "_styleFlags": 0,
  13415. "_underlineHeight": 0,
  13416. "_N$horizontalAlign": 1,
  13417. "_N$verticalAlign": 1,
  13418. "_N$fontFamily": "Arial",
  13419. "_N$overflow": 0,
  13420. "_N$cacheMode": 0,
  13421. "_id": "49RAWni+NEvJZ7ixUyMc7Y"
  13422. },
  13423. {
  13424. "__type__": "cc.Node",
  13425. "_name": "score",
  13426. "_objFlags": 0,
  13427. "_parent": {
  13428. "__id__": 277
  13429. },
  13430. "_children": [],
  13431. "_active": true,
  13432. "_components": [
  13433. {
  13434. "__id__": 287
  13435. }
  13436. ],
  13437. "_prefab": null,
  13438. "_opacity": 255,
  13439. "_color": {
  13440. "__type__": "cc.Color",
  13441. "r": 255,
  13442. "g": 255,
  13443. "b": 255,
  13444. "a": 255
  13445. },
  13446. "_contentSize": {
  13447. "__type__": "cc.Size",
  13448. "width": 85.64,
  13449. "height": 50.4
  13450. },
  13451. "_anchorPoint": {
  13452. "__type__": "cc.Vec2",
  13453. "x": 0.5,
  13454. "y": 0.5
  13455. },
  13456. "_trs": {
  13457. "__type__": "TypedArray",
  13458. "ctor": "Float64Array",
  13459. "array": [
  13460. 0,
  13461. 236.4,
  13462. 0,
  13463. 0,
  13464. 0,
  13465. 0,
  13466. 1,
  13467. 1,
  13468. 1,
  13469. 1
  13470. ]
  13471. },
  13472. "_eulerAngles": {
  13473. "__type__": "cc.Vec3",
  13474. "x": 0,
  13475. "y": 0,
  13476. "z": 0
  13477. },
  13478. "_skewX": 0,
  13479. "_skewY": 0,
  13480. "_is3DNode": false,
  13481. "_groupIndex": 0,
  13482. "groupIndex": 0,
  13483. "_id": "46NNE8eBRFHK9NfuERotCD"
  13484. },
  13485. {
  13486. "__type__": "cc.Label",
  13487. "_name": "",
  13488. "_objFlags": 0,
  13489. "node": {
  13490. "__id__": 286
  13491. },
  13492. "_enabled": true,
  13493. "_materials": [
  13494. {
  13495. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  13496. }
  13497. ],
  13498. "_srcBlendFactor": 770,
  13499. "_dstBlendFactor": 771,
  13500. "_string": "Label",
  13501. "_N$string": "Label",
  13502. "_fontSize": 35,
  13503. "_lineHeight": 40,
  13504. "_enableWrapText": true,
  13505. "_N$file": null,
  13506. "_isSystemFontUsed": true,
  13507. "_spacingX": 0,
  13508. "_batchAsBitmap": false,
  13509. "_styleFlags": 0,
  13510. "_underlineHeight": 0,
  13511. "_N$horizontalAlign": 1,
  13512. "_N$verticalAlign": 1,
  13513. "_N$fontFamily": "Arial",
  13514. "_N$overflow": 0,
  13515. "_N$cacheMode": 0,
  13516. "_id": "374SVMXuRJqLXvte8ngsti"
  13517. },
  13518. {
  13519. "__type__": "cc.Node",
  13520. "_name": "helpPage",
  13521. "_objFlags": 0,
  13522. "_parent": {
  13523. "__id__": 9
  13524. },
  13525. "_children": [
  13526. {
  13527. "__id__": 289
  13528. }
  13529. ],
  13530. "_active": false,
  13531. "_components": [],
  13532. "_prefab": null,
  13533. "_opacity": 255,
  13534. "_color": {
  13535. "__type__": "cc.Color",
  13536. "r": 255,
  13537. "g": 255,
  13538. "b": 255,
  13539. "a": 255
  13540. },
  13541. "_contentSize": {
  13542. "__type__": "cc.Size",
  13543. "width": 0,
  13544. "height": 0
  13545. },
  13546. "_anchorPoint": {
  13547. "__type__": "cc.Vec2",
  13548. "x": 0.5,
  13549. "y": 0.5
  13550. },
  13551. "_trs": {
  13552. "__type__": "TypedArray",
  13553. "ctor": "Float64Array",
  13554. "array": [
  13555. 0,
  13556. 0,
  13557. 0,
  13558. 0,
  13559. 0,
  13560. 0,
  13561. 1,
  13562. 1,
  13563. 1,
  13564. 1
  13565. ]
  13566. },
  13567. "_eulerAngles": {
  13568. "__type__": "cc.Vec3",
  13569. "x": 0,
  13570. "y": 0,
  13571. "z": 0
  13572. },
  13573. "_skewX": 0,
  13574. "_skewY": 0,
  13575. "_is3DNode": false,
  13576. "_groupIndex": 0,
  13577. "groupIndex": 0,
  13578. "_id": "daMrEhNetEhpY/SzyLQmSY"
  13579. },
  13580. {
  13581. "__type__": "cc.Node",
  13582. "_name": "bg",
  13583. "_objFlags": 0,
  13584. "_parent": {
  13585. "__id__": 288
  13586. },
  13587. "_children": [
  13588. {
  13589. "__id__": 290
  13590. },
  13591. {
  13592. "__id__": 294
  13593. },
  13594. {
  13595. "__id__": 297
  13596. },
  13597. {
  13598. "__id__": 299
  13599. },
  13600. {
  13601. "__id__": 301
  13602. },
  13603. {
  13604. "__id__": 303
  13605. },
  13606. {
  13607. "__id__": 305
  13608. },
  13609. {
  13610. "__id__": 307
  13611. },
  13612. {
  13613. "__id__": 309
  13614. },
  13615. {
  13616. "__id__": 311
  13617. }
  13618. ],
  13619. "_active": true,
  13620. "_components": [
  13621. {
  13622. "__id__": 313
  13623. }
  13624. ],
  13625. "_prefab": null,
  13626. "_opacity": 255,
  13627. "_color": {
  13628. "__type__": "cc.Color",
  13629. "r": 255,
  13630. "g": 255,
  13631. "b": 255,
  13632. "a": 255
  13633. },
  13634. "_contentSize": {
  13635. "__type__": "cc.Size",
  13636. "width": 600,
  13637. "height": 950
  13638. },
  13639. "_anchorPoint": {
  13640. "__type__": "cc.Vec2",
  13641. "x": 0.5,
  13642. "y": 0.5
  13643. },
  13644. "_trs": {
  13645. "__type__": "TypedArray",
  13646. "ctor": "Float64Array",
  13647. "array": [
  13648. 0,
  13649. 0,
  13650. 0,
  13651. 0,
  13652. 0,
  13653. 0,
  13654. 1,
  13655. 1,
  13656. 1,
  13657. 1
  13658. ]
  13659. },
  13660. "_eulerAngles": {
  13661. "__type__": "cc.Vec3",
  13662. "x": 0,
  13663. "y": 0,
  13664. "z": 0
  13665. },
  13666. "_skewX": 0,
  13667. "_skewY": 0,
  13668. "_is3DNode": false,
  13669. "_groupIndex": 0,
  13670. "groupIndex": 0,
  13671. "_id": "36xeN6aA1FZZW8o+fAKOjO"
  13672. },
  13673. {
  13674. "__type__": "cc.Node",
  13675. "_name": "close",
  13676. "_objFlags": 0,
  13677. "_parent": {
  13678. "__id__": 289
  13679. },
  13680. "_children": [],
  13681. "_active": true,
  13682. "_components": [
  13683. {
  13684. "__id__": 291
  13685. },
  13686. {
  13687. "__id__": 292
  13688. }
  13689. ],
  13690. "_prefab": null,
  13691. "_opacity": 255,
  13692. "_color": {
  13693. "__type__": "cc.Color",
  13694. "r": 255,
  13695. "g": 255,
  13696. "b": 255,
  13697. "a": 255
  13698. },
  13699. "_contentSize": {
  13700. "__type__": "cc.Size",
  13701. "width": 81,
  13702. "height": 84
  13703. },
  13704. "_anchorPoint": {
  13705. "__type__": "cc.Vec2",
  13706. "x": 0.5,
  13707. "y": 0.5
  13708. },
  13709. "_trs": {
  13710. "__type__": "TypedArray",
  13711. "ctor": "Float64Array",
  13712. "array": [
  13713. 291,
  13714. 465,
  13715. 0,
  13716. 0,
  13717. 0,
  13718. 0,
  13719. 1,
  13720. 1,
  13721. 1,
  13722. 1
  13723. ]
  13724. },
  13725. "_eulerAngles": {
  13726. "__type__": "cc.Vec3",
  13727. "x": 0,
  13728. "y": 0,
  13729. "z": 0
  13730. },
  13731. "_skewX": 0,
  13732. "_skewY": 0,
  13733. "_is3DNode": false,
  13734. "_groupIndex": 0,
  13735. "groupIndex": 0,
  13736. "_id": "01OgDIXW9CIq7Fw3GEhxRA"
  13737. },
  13738. {
  13739. "__type__": "cc.Sprite",
  13740. "_name": "",
  13741. "_objFlags": 0,
  13742. "node": {
  13743. "__id__": 290
  13744. },
  13745. "_enabled": true,
  13746. "_materials": [],
  13747. "_srcBlendFactor": 770,
  13748. "_dstBlendFactor": 771,
  13749. "_spriteFrame": {
  13750. "__uuid__": "0706478d-6e33-442e-9056-108d59ca1378"
  13751. },
  13752. "_type": 0,
  13753. "_sizeMode": 1,
  13754. "_fillType": 0,
  13755. "_fillCenter": {
  13756. "__type__": "cc.Vec2",
  13757. "x": 0,
  13758. "y": 0
  13759. },
  13760. "_fillStart": 0,
  13761. "_fillRange": 0,
  13762. "_isTrimmedMode": true,
  13763. "_atlas": null,
  13764. "_id": "6a+cNGn6BMgL1tYUCaDvus"
  13765. },
  13766. {
  13767. "__type__": "cc.Button",
  13768. "_name": "",
  13769. "_objFlags": 0,
  13770. "node": {
  13771. "__id__": 290
  13772. },
  13773. "_enabled": true,
  13774. "_normalMaterial": null,
  13775. "_grayMaterial": null,
  13776. "duration": 0.1,
  13777. "zoomScale": 1.2,
  13778. "clickEvents": [
  13779. {
  13780. "__id__": 293
  13781. }
  13782. ],
  13783. "_N$interactable": true,
  13784. "_N$enableAutoGrayEffect": false,
  13785. "_N$transition": 0,
  13786. "transition": 0,
  13787. "_N$normalColor": {
  13788. "__type__": "cc.Color",
  13789. "r": 214,
  13790. "g": 214,
  13791. "b": 214,
  13792. "a": 255
  13793. },
  13794. "_N$pressedColor": {
  13795. "__type__": "cc.Color",
  13796. "r": 211,
  13797. "g": 211,
  13798. "b": 211,
  13799. "a": 255
  13800. },
  13801. "pressedColor": {
  13802. "__type__": "cc.Color",
  13803. "r": 211,
  13804. "g": 211,
  13805. "b": 211,
  13806. "a": 255
  13807. },
  13808. "_N$hoverColor": {
  13809. "__type__": "cc.Color",
  13810. "r": 255,
  13811. "g": 255,
  13812. "b": 255,
  13813. "a": 255
  13814. },
  13815. "hoverColor": {
  13816. "__type__": "cc.Color",
  13817. "r": 255,
  13818. "g": 255,
  13819. "b": 255,
  13820. "a": 255
  13821. },
  13822. "_N$disabledColor": {
  13823. "__type__": "cc.Color",
  13824. "r": 124,
  13825. "g": 124,
  13826. "b": 124,
  13827. "a": 255
  13828. },
  13829. "_N$normalSprite": null,
  13830. "_N$pressedSprite": null,
  13831. "pressedSprite": null,
  13832. "_N$hoverSprite": null,
  13833. "hoverSprite": null,
  13834. "_N$disabledSprite": null,
  13835. "_N$target": null,
  13836. "_id": "3aX0j7KL1N8o2ZlTxZijnR"
  13837. },
  13838. {
  13839. "__type__": "cc.ClickEvent",
  13840. "target": {
  13841. "__id__": 18
  13842. },
  13843. "component": "",
  13844. "_componentId": "feefcb/VXtFp4L+Zqa6CrBZ",
  13845. "handler": "closeHelpPage",
  13846. "customEventData": ""
  13847. },
  13848. {
  13849. "__type__": "cc.Node",
  13850. "_name": "New Label",
  13851. "_objFlags": 0,
  13852. "_parent": {
  13853. "__id__": 289
  13854. },
  13855. "_children": [],
  13856. "_active": true,
  13857. "_components": [
  13858. {
  13859. "__id__": 295
  13860. },
  13861. {
  13862. "__id__": 296
  13863. }
  13864. ],
  13865. "_prefab": null,
  13866. "_opacity": 255,
  13867. "_color": {
  13868. "__type__": "cc.Color",
  13869. "r": 255,
  13870. "g": 255,
  13871. "b": 255,
  13872. "a": 255
  13873. },
  13874. "_contentSize": {
  13875. "__type__": "cc.Size",
  13876. "width": 142,
  13877. "height": 40
  13878. },
  13879. "_anchorPoint": {
  13880. "__type__": "cc.Vec2",
  13881. "x": 0.5,
  13882. "y": 0.5
  13883. },
  13884. "_trs": {
  13885. "__type__": "TypedArray",
  13886. "ctor": "Float64Array",
  13887. "array": [
  13888. 0,
  13889. 429,
  13890. 0,
  13891. 0,
  13892. 0,
  13893. 0,
  13894. 1,
  13895. 1,
  13896. 1,
  13897. 1
  13898. ]
  13899. },
  13900. "_eulerAngles": {
  13901. "__type__": "cc.Vec3",
  13902. "x": 0,
  13903. "y": 0,
  13904. "z": 0
  13905. },
  13906. "_skewX": 0,
  13907. "_skewY": 0,
  13908. "_is3DNode": false,
  13909. "_groupIndex": 0,
  13910. "groupIndex": 0,
  13911. "_id": "45n4ngSttDjK2pZMXU38G7"
  13912. },
  13913. {
  13914. "__type__": "cc.Label",
  13915. "_name": "",
  13916. "_objFlags": 0,
  13917. "node": {
  13918. "__id__": 294
  13919. },
  13920. "_enabled": true,
  13921. "_materials": [],
  13922. "_srcBlendFactor": 770,
  13923. "_dstBlendFactor": 771,
  13924. "_string": "游戏帮助",
  13925. "_N$string": "游戏帮助",
  13926. "_fontSize": 35,
  13927. "_lineHeight": 40,
  13928. "_enableWrapText": true,
  13929. "_N$file": null,
  13930. "_isSystemFontUsed": true,
  13931. "_spacingX": 0,
  13932. "_batchAsBitmap": false,
  13933. "_styleFlags": 0,
  13934. "_underlineHeight": 0,
  13935. "_N$horizontalAlign": 1,
  13936. "_N$verticalAlign": 1,
  13937. "_N$fontFamily": "微软雅黑",
  13938. "_N$overflow": 0,
  13939. "_N$cacheMode": 0,
  13940. "_id": "f8QSnSarxJLbxnLVrLuo42"
  13941. },
  13942. {
  13943. "__type__": "cc.LabelOutline",
  13944. "_name": "",
  13945. "_objFlags": 0,
  13946. "node": {
  13947. "__id__": 294
  13948. },
  13949. "_enabled": true,
  13950. "_color": {
  13951. "__type__": "cc.Color",
  13952. "r": 38,
  13953. "g": 53,
  13954. "b": 80,
  13955. "a": 255
  13956. },
  13957. "_width": 1,
  13958. "_id": "c3OP4fndRJmYudf8Tv2YMm"
  13959. },
  13960. {
  13961. "__type__": "cc.Node",
  13962. "_name": "X2红",
  13963. "_objFlags": 0,
  13964. "_parent": {
  13965. "__id__": 289
  13966. },
  13967. "_children": [],
  13968. "_active": true,
  13969. "_components": [
  13970. {
  13971. "__id__": 298
  13972. }
  13973. ],
  13974. "_prefab": null,
  13975. "_opacity": 255,
  13976. "_color": {
  13977. "__type__": "cc.Color",
  13978. "r": 255,
  13979. "g": 255,
  13980. "b": 255,
  13981. "a": 255
  13982. },
  13983. "_contentSize": {
  13984. "__type__": "cc.Size",
  13985. "width": 94,
  13986. "height": 94
  13987. },
  13988. "_anchorPoint": {
  13989. "__type__": "cc.Vec2",
  13990. "x": 0.5,
  13991. "y": 0.5
  13992. },
  13993. "_trs": {
  13994. "__type__": "TypedArray",
  13995. "ctor": "Float64Array",
  13996. "array": [
  13997. -153,
  13998. 222,
  13999. 0,
  14000. 0,
  14001. 0,
  14002. 0,
  14003. 1,
  14004. 1,
  14005. 1,
  14006. 1
  14007. ]
  14008. },
  14009. "_eulerAngles": {
  14010. "__type__": "cc.Vec3",
  14011. "x": 0,
  14012. "y": 0,
  14013. "z": 0
  14014. },
  14015. "_skewX": 0,
  14016. "_skewY": 0,
  14017. "_is3DNode": false,
  14018. "_groupIndex": 0,
  14019. "groupIndex": 0,
  14020. "_id": "86RmsHFg1EPaRLCZF1vKPo"
  14021. },
  14022. {
  14023. "__type__": "cc.Sprite",
  14024. "_name": "",
  14025. "_objFlags": 0,
  14026. "node": {
  14027. "__id__": 297
  14028. },
  14029. "_enabled": true,
  14030. "_materials": [],
  14031. "_srcBlendFactor": 770,
  14032. "_dstBlendFactor": 771,
  14033. "_spriteFrame": {
  14034. "__uuid__": "f42026ae-4016-42e1-a9bc-d8b9f705edb1"
  14035. },
  14036. "_type": 0,
  14037. "_sizeMode": 1,
  14038. "_fillType": 0,
  14039. "_fillCenter": {
  14040. "__type__": "cc.Vec2",
  14041. "x": 0,
  14042. "y": 0
  14043. },
  14044. "_fillStart": 0,
  14045. "_fillRange": 0,
  14046. "_isTrimmedMode": true,
  14047. "_atlas": null,
  14048. "_id": "57PgVy59pPU71A7RMrahHQ"
  14049. },
  14050. {
  14051. "__type__": "cc.Node",
  14052. "_name": "炸弹-拷贝-5",
  14053. "_objFlags": 0,
  14054. "_parent": {
  14055. "__id__": 289
  14056. },
  14057. "_children": [],
  14058. "_active": true,
  14059. "_components": [
  14060. {
  14061. "__id__": 300
  14062. }
  14063. ],
  14064. "_prefab": null,
  14065. "_opacity": 255,
  14066. "_color": {
  14067. "__type__": "cc.Color",
  14068. "r": 255,
  14069. "g": 255,
  14070. "b": 255,
  14071. "a": 255
  14072. },
  14073. "_contentSize": {
  14074. "__type__": "cc.Size",
  14075. "width": 94,
  14076. "height": 94
  14077. },
  14078. "_anchorPoint": {
  14079. "__type__": "cc.Vec2",
  14080. "x": 0.5,
  14081. "y": 0.5
  14082. },
  14083. "_trs": {
  14084. "__type__": "TypedArray",
  14085. "ctor": "Float64Array",
  14086. "array": [
  14087. -153,
  14088. 22,
  14089. 0,
  14090. 0,
  14091. 0,
  14092. 0,
  14093. 1,
  14094. 1,
  14095. 1,
  14096. 1
  14097. ]
  14098. },
  14099. "_eulerAngles": {
  14100. "__type__": "cc.Vec3",
  14101. "x": 0,
  14102. "y": 0,
  14103. "z": 0
  14104. },
  14105. "_skewX": 0,
  14106. "_skewY": 0,
  14107. "_is3DNode": false,
  14108. "_groupIndex": 0,
  14109. "groupIndex": 0,
  14110. "_id": "a9wVlYZCRDCpPYQ0nvmkNX"
  14111. },
  14112. {
  14113. "__type__": "cc.Sprite",
  14114. "_name": "",
  14115. "_objFlags": 0,
  14116. "node": {
  14117. "__id__": 299
  14118. },
  14119. "_enabled": true,
  14120. "_materials": [],
  14121. "_srcBlendFactor": 770,
  14122. "_dstBlendFactor": 771,
  14123. "_spriteFrame": {
  14124. "__uuid__": "3e5b7d3e-9995-4088-9237-73ea3e0cb941"
  14125. },
  14126. "_type": 0,
  14127. "_sizeMode": 1,
  14128. "_fillType": 0,
  14129. "_fillCenter": {
  14130. "__type__": "cc.Vec2",
  14131. "x": 0,
  14132. "y": 0
  14133. },
  14134. "_fillStart": 0,
  14135. "_fillRange": 0,
  14136. "_isTrimmedMode": true,
  14137. "_atlas": null,
  14138. "_id": "efx2XGrgNAX6B/08sYcvRK"
  14139. },
  14140. {
  14141. "__type__": "cc.Node",
  14142. "_name": "组 40",
  14143. "_objFlags": 0,
  14144. "_parent": {
  14145. "__id__": 289
  14146. },
  14147. "_children": [],
  14148. "_active": true,
  14149. "_components": [
  14150. {
  14151. "__id__": 302
  14152. }
  14153. ],
  14154. "_prefab": null,
  14155. "_opacity": 255,
  14156. "_color": {
  14157. "__type__": "cc.Color",
  14158. "r": 255,
  14159. "g": 255,
  14160. "b": 255,
  14161. "a": 255
  14162. },
  14163. "_contentSize": {
  14164. "__type__": "cc.Size",
  14165. "width": 94,
  14166. "height": 94
  14167. },
  14168. "_anchorPoint": {
  14169. "__type__": "cc.Vec2",
  14170. "x": 0.5,
  14171. "y": 0.5
  14172. },
  14173. "_trs": {
  14174. "__type__": "TypedArray",
  14175. "ctor": "Float64Array",
  14176. "array": [
  14177. -153,
  14178. 122,
  14179. 0,
  14180. 0,
  14181. 0,
  14182. 0,
  14183. 1,
  14184. 1,
  14185. 1,
  14186. 1
  14187. ]
  14188. },
  14189. "_eulerAngles": {
  14190. "__type__": "cc.Vec3",
  14191. "x": 0,
  14192. "y": 0,
  14193. "z": 0
  14194. },
  14195. "_skewX": 0,
  14196. "_skewY": 0,
  14197. "_is3DNode": false,
  14198. "_groupIndex": 0,
  14199. "groupIndex": 0,
  14200. "_id": "d0X4sKradPIpLjmDkhZuQz"
  14201. },
  14202. {
  14203. "__type__": "cc.Sprite",
  14204. "_name": "",
  14205. "_objFlags": 0,
  14206. "node": {
  14207. "__id__": 301
  14208. },
  14209. "_enabled": true,
  14210. "_materials": [],
  14211. "_srcBlendFactor": 770,
  14212. "_dstBlendFactor": 771,
  14213. "_spriteFrame": {
  14214. "__uuid__": "03454f35-c355-4a8b-9161-014495b5597b"
  14215. },
  14216. "_type": 0,
  14217. "_sizeMode": 1,
  14218. "_fillType": 0,
  14219. "_fillCenter": {
  14220. "__type__": "cc.Vec2",
  14221. "x": 0,
  14222. "y": 0
  14223. },
  14224. "_fillStart": 0,
  14225. "_fillRange": 0,
  14226. "_isTrimmedMode": true,
  14227. "_atlas": null,
  14228. "_id": "64qXcJlrFBZ6U1+qN1+0E7"
  14229. },
  14230. {
  14231. "__type__": "cc.Node",
  14232. "_name": "New Label",
  14233. "_objFlags": 0,
  14234. "_parent": {
  14235. "__id__": 289
  14236. },
  14237. "_children": [],
  14238. "_active": true,
  14239. "_components": [
  14240. {
  14241. "__id__": 304
  14242. }
  14243. ],
  14244. "_prefab": null,
  14245. "_opacity": 255,
  14246. "_color": {
  14247. "__type__": "cc.Color",
  14248. "r": 14,
  14249. "g": 70,
  14250. "b": 86,
  14251. "a": 255
  14252. },
  14253. "_contentSize": {
  14254. "__type__": "cc.Size",
  14255. "width": 191.15,
  14256. "height": 75
  14257. },
  14258. "_anchorPoint": {
  14259. "__type__": "cc.Vec2",
  14260. "x": 0.5,
  14261. "y": 0.5
  14262. },
  14263. "_trs": {
  14264. "__type__": "TypedArray",
  14265. "ctor": "Float64Array",
  14266. "array": [
  14267. 63,
  14268. 223,
  14269. 0,
  14270. 0,
  14271. 0,
  14272. 0,
  14273. 1,
  14274. 1,
  14275. 1,
  14276. 1
  14277. ]
  14278. },
  14279. "_eulerAngles": {
  14280. "__type__": "cc.Vec3",
  14281. "x": 0,
  14282. "y": 0,
  14283. "z": 0
  14284. },
  14285. "_skewX": 0,
  14286. "_skewY": 0,
  14287. "_is3DNode": false,
  14288. "_groupIndex": 0,
  14289. "groupIndex": 0,
  14290. "_id": "f7QbH0cuVO9Jtzi73SjcoZ"
  14291. },
  14292. {
  14293. "__type__": "cc.Label",
  14294. "_name": "",
  14295. "_objFlags": 0,
  14296. "node": {
  14297. "__id__": 303
  14298. },
  14299. "_enabled": true,
  14300. "_materials": [],
  14301. "_srcBlendFactor": 770,
  14302. "_dstBlendFactor": 771,
  14303. "_string": "加倍棋子:\n消除10-12个棋子获得\n可以加倍本次得分",
  14304. "_N$string": "加倍棋子:\n消除10-12个棋子获得\n可以加倍本次得分",
  14305. "_fontSize": 20,
  14306. "_lineHeight": 25,
  14307. "_enableWrapText": true,
  14308. "_N$file": null,
  14309. "_isSystemFontUsed": true,
  14310. "_spacingX": 0,
  14311. "_batchAsBitmap": false,
  14312. "_styleFlags": 0,
  14313. "_underlineHeight": 0,
  14314. "_N$horizontalAlign": 0,
  14315. "_N$verticalAlign": 1,
  14316. "_N$fontFamily": "Arial",
  14317. "_N$overflow": 0,
  14318. "_N$cacheMode": 0,
  14319. "_id": "48hHEl4l1EooABHPVzJHGT"
  14320. },
  14321. {
  14322. "__type__": "cc.Node",
  14323. "_name": "New Label",
  14324. "_objFlags": 0,
  14325. "_parent": {
  14326. "__id__": 289
  14327. },
  14328. "_children": [],
  14329. "_active": true,
  14330. "_components": [
  14331. {
  14332. "__id__": 306
  14333. }
  14334. ],
  14335. "_prefab": null,
  14336. "_opacity": 255,
  14337. "_color": {
  14338. "__type__": "cc.Color",
  14339. "r": 14,
  14340. "g": 70,
  14341. "b": 86,
  14342. "a": 255
  14343. },
  14344. "_contentSize": {
  14345. "__type__": "cc.Size",
  14346. "width": 191.15,
  14347. "height": 75
  14348. },
  14349. "_anchorPoint": {
  14350. "__type__": "cc.Vec2",
  14351. "x": 0.5,
  14352. "y": 0.5
  14353. },
  14354. "_trs": {
  14355. "__type__": "TypedArray",
  14356. "ctor": "Float64Array",
  14357. "array": [
  14358. 67,
  14359. 123,
  14360. 0,
  14361. 0,
  14362. 0,
  14363. 0,
  14364. 1,
  14365. 1,
  14366. 1,
  14367. 1
  14368. ]
  14369. },
  14370. "_eulerAngles": {
  14371. "__type__": "cc.Vec3",
  14372. "x": 0,
  14373. "y": 0,
  14374. "z": 0
  14375. },
  14376. "_skewX": 0,
  14377. "_skewY": 0,
  14378. "_is3DNode": false,
  14379. "_groupIndex": 0,
  14380. "groupIndex": 0,
  14381. "_id": "3dhBEqKqRAroAQF+r6TtLj"
  14382. },
  14383. {
  14384. "__type__": "cc.Label",
  14385. "_name": "",
  14386. "_objFlags": 0,
  14387. "node": {
  14388. "__id__": 305
  14389. },
  14390. "_enabled": true,
  14391. "_materials": [],
  14392. "_srcBlendFactor": 770,
  14393. "_dstBlendFactor": 771,
  14394. "_string": "魔法棒棋子:\n消除13-15个棋子获得\n可以消除落单的棋子",
  14395. "_N$string": "魔法棒棋子:\n消除13-15个棋子获得\n可以消除落单的棋子",
  14396. "_fontSize": 20,
  14397. "_lineHeight": 25,
  14398. "_enableWrapText": true,
  14399. "_N$file": null,
  14400. "_isSystemFontUsed": true,
  14401. "_spacingX": 0,
  14402. "_batchAsBitmap": false,
  14403. "_styleFlags": 0,
  14404. "_underlineHeight": 0,
  14405. "_N$horizontalAlign": 0,
  14406. "_N$verticalAlign": 1,
  14407. "_N$fontFamily": "Arial",
  14408. "_N$overflow": 0,
  14409. "_N$cacheMode": 0,
  14410. "_id": "53EpZAFVBFTaxLx7oiWFeM"
  14411. },
  14412. {
  14413. "__type__": "cc.Node",
  14414. "_name": "New Label",
  14415. "_objFlags": 0,
  14416. "_parent": {
  14417. "__id__": 289
  14418. },
  14419. "_children": [],
  14420. "_active": true,
  14421. "_components": [
  14422. {
  14423. "__id__": 308
  14424. }
  14425. ],
  14426. "_prefab": null,
  14427. "_opacity": 255,
  14428. "_color": {
  14429. "__type__": "cc.Color",
  14430. "r": 14,
  14431. "g": 70,
  14432. "b": 86,
  14433. "a": 255
  14434. },
  14435. "_contentSize": {
  14436. "__type__": "cc.Size",
  14437. "width": 180,
  14438. "height": 75
  14439. },
  14440. "_anchorPoint": {
  14441. "__type__": "cc.Vec2",
  14442. "x": 0.5,
  14443. "y": 0.5
  14444. },
  14445. "_trs": {
  14446. "__type__": "TypedArray",
  14447. "ctor": "Float64Array",
  14448. "array": [
  14449. 59,
  14450. 25,
  14451. 0,
  14452. 0,
  14453. 0,
  14454. 0,
  14455. 1,
  14456. 1,
  14457. 1,
  14458. 1
  14459. ]
  14460. },
  14461. "_eulerAngles": {
  14462. "__type__": "cc.Vec3",
  14463. "x": 0,
  14464. "y": 0,
  14465. "z": 0
  14466. },
  14467. "_skewX": 0,
  14468. "_skewY": 0,
  14469. "_is3DNode": false,
  14470. "_groupIndex": 0,
  14471. "groupIndex": 0,
  14472. "_id": "db1//fXVpAYbDbOqTt0buN"
  14473. },
  14474. {
  14475. "__type__": "cc.Label",
  14476. "_name": "",
  14477. "_objFlags": 0,
  14478. "node": {
  14479. "__id__": 307
  14480. },
  14481. "_enabled": true,
  14482. "_materials": [],
  14483. "_srcBlendFactor": 770,
  14484. "_dstBlendFactor": 771,
  14485. "_string": "炸弹棋子:\n消除16+棋子获得\n消除全部同色的棋子",
  14486. "_N$string": "炸弹棋子:\n消除16+棋子获得\n消除全部同色的棋子",
  14487. "_fontSize": 20,
  14488. "_lineHeight": 25,
  14489. "_enableWrapText": true,
  14490. "_N$file": null,
  14491. "_isSystemFontUsed": true,
  14492. "_spacingX": 0,
  14493. "_batchAsBitmap": false,
  14494. "_styleFlags": 0,
  14495. "_underlineHeight": 0,
  14496. "_N$horizontalAlign": 0,
  14497. "_N$verticalAlign": 1,
  14498. "_N$fontFamily": "Arial",
  14499. "_N$overflow": 0,
  14500. "_N$cacheMode": 0,
  14501. "_id": "ac7up8N2BAmKP/Wz0jlg3h"
  14502. },
  14503. {
  14504. "__type__": "cc.Node",
  14505. "_name": "New Label",
  14506. "_objFlags": 0,
  14507. "_parent": {
  14508. "__id__": 289
  14509. },
  14510. "_children": [],
  14511. "_active": true,
  14512. "_components": [
  14513. {
  14514. "__id__": 310
  14515. }
  14516. ],
  14517. "_prefab": null,
  14518. "_opacity": 255,
  14519. "_color": {
  14520. "__type__": "cc.Color",
  14521. "r": 14,
  14522. "g": 70,
  14523. "b": 86,
  14524. "a": 255
  14525. },
  14526. "_contentSize": {
  14527. "__type__": "cc.Size",
  14528. "width": 450,
  14529. "height": 240
  14530. },
  14531. "_anchorPoint": {
  14532. "__type__": "cc.Vec2",
  14533. "x": 0.5,
  14534. "y": 0.5
  14535. },
  14536. "_trs": {
  14537. "__type__": "TypedArray",
  14538. "ctor": "Float64Array",
  14539. "array": [
  14540. 4,
  14541. -157,
  14542. 0,
  14543. 0,
  14544. 0,
  14545. 0,
  14546. 1,
  14547. 1,
  14548. 1,
  14549. 1
  14550. ]
  14551. },
  14552. "_eulerAngles": {
  14553. "__type__": "cc.Vec3",
  14554. "x": 0,
  14555. "y": 0,
  14556. "z": 0
  14557. },
  14558. "_skewX": 0,
  14559. "_skewY": 0,
  14560. "_is3DNode": false,
  14561. "_groupIndex": 0,
  14562. "groupIndex": 0,
  14563. "_id": "b26mSbk5tGkYX0zI2GbzWl"
  14564. },
  14565. {
  14566. "__type__": "cc.Label",
  14567. "_name": "",
  14568. "_objFlags": 0,
  14569. "node": {
  14570. "__id__": 309
  14571. },
  14572. "_enabled": true,
  14573. "_materials": [],
  14574. "_srcBlendFactor": 770,
  14575. "_dstBlendFactor": 771,
  14576. "_string": "游戏攻略:\n1.积攒炸弹棋子,快速清理棋盘\n2.加倍棋子可以叠加,最高可以获得八倍效果\n3.加倍、魔法棒、炸弹棋子可以互相叠加\n4.看视频可以获得双倍步数,等级越高步数越多\n5.等级越高,难度越大",
  14577. "_N$string": "游戏攻略:\n1.积攒炸弹棋子,快速清理棋盘\n2.加倍棋子可以叠加,最高可以获得八倍效果\n3.加倍、魔法棒、炸弹棋子可以互相叠加\n4.看视频可以获得双倍步数,等级越高步数越多\n5.等级越高,难度越大",
  14578. "_fontSize": 25,
  14579. "_lineHeight": 30,
  14580. "_enableWrapText": true,
  14581. "_N$file": null,
  14582. "_isSystemFontUsed": true,
  14583. "_spacingX": 0,
  14584. "_batchAsBitmap": false,
  14585. "_styleFlags": 0,
  14586. "_underlineHeight": 0,
  14587. "_N$horizontalAlign": 0,
  14588. "_N$verticalAlign": 1,
  14589. "_N$fontFamily": "Arial",
  14590. "_N$overflow": 3,
  14591. "_N$cacheMode": 0,
  14592. "_id": "eaOSpgs0ZJE5FCYY8eg3JP"
  14593. },
  14594. {
  14595. "__type__": "cc.Node",
  14596. "_name": "New Label",
  14597. "_objFlags": 0,
  14598. "_parent": {
  14599. "__id__": 289
  14600. },
  14601. "_children": [],
  14602. "_active": true,
  14603. "_components": [
  14604. {
  14605. "__id__": 312
  14606. }
  14607. ],
  14608. "_prefab": null,
  14609. "_opacity": 255,
  14610. "_color": {
  14611. "__type__": "cc.Color",
  14612. "r": 14,
  14613. "g": 70,
  14614. "b": 86,
  14615. "a": 255
  14616. },
  14617. "_contentSize": {
  14618. "__type__": "cc.Size",
  14619. "width": 500,
  14620. "height": 60
  14621. },
  14622. "_anchorPoint": {
  14623. "__type__": "cc.Vec2",
  14624. "x": 0.5,
  14625. "y": 0.5
  14626. },
  14627. "_trs": {
  14628. "__type__": "TypedArray",
  14629. "ctor": "Float64Array",
  14630. "array": [
  14631. 6,
  14632. 316,
  14633. 0,
  14634. 0,
  14635. 0,
  14636. 0,
  14637. 1,
  14638. 1,
  14639. 1,
  14640. 1
  14641. ]
  14642. },
  14643. "_eulerAngles": {
  14644. "__type__": "cc.Vec3",
  14645. "x": 0,
  14646. "y": 0,
  14647. "z": 0
  14648. },
  14649. "_skewX": 0,
  14650. "_skewY": 0,
  14651. "_is3DNode": false,
  14652. "_groupIndex": 0,
  14653. "groupIndex": 0,
  14654. "_id": "7d4LSoRplAV6O5uONJ06V5"
  14655. },
  14656. {
  14657. "__type__": "cc.Label",
  14658. "_name": "",
  14659. "_objFlags": 0,
  14660. "node": {
  14661. "__id__": 311
  14662. },
  14663. "_enabled": true,
  14664. "_materials": [],
  14665. "_srcBlendFactor": 770,
  14666. "_dstBlendFactor": 771,
  14667. "_string": "点击相连的棋子,即可消除\n相连的棋子达到数量要求,还能形成特殊棋子",
  14668. "_N$string": "点击相连的棋子,即可消除\n相连的棋子达到数量要求,还能形成特殊棋子",
  14669. "_fontSize": 25,
  14670. "_lineHeight": 30,
  14671. "_enableWrapText": true,
  14672. "_N$file": null,
  14673. "_isSystemFontUsed": true,
  14674. "_spacingX": 0,
  14675. "_batchAsBitmap": false,
  14676. "_styleFlags": 0,
  14677. "_underlineHeight": 0,
  14678. "_N$horizontalAlign": 0,
  14679. "_N$verticalAlign": 1,
  14680. "_N$fontFamily": "Arial",
  14681. "_N$overflow": 0,
  14682. "_N$cacheMode": 0,
  14683. "_id": "2cHyGdDEdO77nYAtcw/mLq"
  14684. },
  14685. {
  14686. "__type__": "cc.Sprite",
  14687. "_name": "",
  14688. "_objFlags": 0,
  14689. "node": {
  14690. "__id__": 289
  14691. },
  14692. "_enabled": true,
  14693. "_materials": [],
  14694. "_srcBlendFactor": 770,
  14695. "_dstBlendFactor": 771,
  14696. "_spriteFrame": {
  14697. "__uuid__": "c6f13935-51e6-471e-831f-3e9689a493f7"
  14698. },
  14699. "_type": 1,
  14700. "_sizeMode": 0,
  14701. "_fillType": 0,
  14702. "_fillCenter": {
  14703. "__type__": "cc.Vec2",
  14704. "x": 0,
  14705. "y": 0
  14706. },
  14707. "_fillStart": 0,
  14708. "_fillRange": 0,
  14709. "_isTrimmedMode": true,
  14710. "_atlas": null,
  14711. "_id": "d4AMl2Jy9OHZ8UEwzvhyQC"
  14712. },
  14713. {
  14714. "__type__": "cc.Node",
  14715. "_name": "New Label",
  14716. "_objFlags": 0,
  14717. "_parent": {
  14718. "__id__": 9
  14719. },
  14720. "_children": [],
  14721. "_active": true,
  14722. "_components": [
  14723. {
  14724. "__id__": 315
  14725. }
  14726. ],
  14727. "_prefab": null,
  14728. "_opacity": 255,
  14729. "_color": {
  14730. "__type__": "cc.Color",
  14731. "r": 255,
  14732. "g": 255,
  14733. "b": 255,
  14734. "a": 255
  14735. },
  14736. "_contentSize": {
  14737. "__type__": "cc.Size",
  14738. "width": 560,
  14739. "height": 79.1
  14740. },
  14741. "_anchorPoint": {
  14742. "__type__": "cc.Vec2",
  14743. "x": 0.5,
  14744. "y": 0.5
  14745. },
  14746. "_trs": {
  14747. "__type__": "TypedArray",
  14748. "ctor": "Float64Array",
  14749. "array": [
  14750. 0,
  14751. -591,
  14752. 0,
  14753. 0,
  14754. 0,
  14755. 0,
  14756. 1,
  14757. 1,
  14758. 1,
  14759. 1
  14760. ]
  14761. },
  14762. "_eulerAngles": {
  14763. "__type__": "cc.Vec3",
  14764. "x": 0,
  14765. "y": 0,
  14766. "z": 0
  14767. },
  14768. "_skewX": 0,
  14769. "_skewY": 0,
  14770. "_is3DNode": false,
  14771. "_groupIndex": 0,
  14772. "groupIndex": 0,
  14773. "_id": "832IZ3s49CX6pbIjzmvMQV"
  14774. },
  14775. {
  14776. "__type__": "cc.Label",
  14777. "_name": "",
  14778. "_objFlags": 0,
  14779. "node": {
  14780. "__id__": 314
  14781. },
  14782. "_enabled": true,
  14783. "_materials": [
  14784. {
  14785. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  14786. }
  14787. ],
  14788. "_srcBlendFactor": 770,
  14789. "_dstBlendFactor": 771,
  14790. "_string": "抵制不良游戏,拒绝盗版游戏。注意自我保护,谨防受骗上当。适度游戏益脑,沉迷游戏伤身。合理安排时间,享受健康生活。 ",
  14791. "_N$string": "抵制不良游戏,拒绝盗版游戏。注意自我保护,谨防受骗上当。适度游戏益脑,沉迷游戏伤身。合理安排时间,享受健康生活。 ",
  14792. "_fontSize": 20,
  14793. "_lineHeight": 35,
  14794. "_enableWrapText": true,
  14795. "_N$file": null,
  14796. "_isSystemFontUsed": true,
  14797. "_spacingX": 0,
  14798. "_batchAsBitmap": false,
  14799. "_styleFlags": 0,
  14800. "_underlineHeight": 0,
  14801. "_N$horizontalAlign": 1,
  14802. "_N$verticalAlign": 1,
  14803. "_N$fontFamily": "Arial",
  14804. "_N$overflow": 3,
  14805. "_N$cacheMode": 0,
  14806. "_id": "f9roTNYulGCZAmRQBzyLNU"
  14807. },
  14808. {
  14809. "__type__": "cc.Node",
  14810. "_name": "组 4 拷贝 2",
  14811. "_objFlags": 0,
  14812. "_parent": {
  14813. "__id__": 9
  14814. },
  14815. "_children": [],
  14816. "_active": false,
  14817. "_components": [
  14818. {
  14819. "__id__": 317
  14820. },
  14821. {
  14822. "__id__": 318
  14823. }
  14824. ],
  14825. "_prefab": null,
  14826. "_opacity": 255,
  14827. "_color": {
  14828. "__type__": "cc.Color",
  14829. "r": 255,
  14830. "g": 255,
  14831. "b": 255,
  14832. "a": 255
  14833. },
  14834. "_contentSize": {
  14835. "__type__": "cc.Size",
  14836. "width": 90,
  14837. "height": 122
  14838. },
  14839. "_anchorPoint": {
  14840. "__type__": "cc.Vec2",
  14841. "x": 0.5,
  14842. "y": 0.5
  14843. },
  14844. "_trs": {
  14845. "__type__": "TypedArray",
  14846. "ctor": "Float64Array",
  14847. "array": [
  14848. 78,
  14849. -427,
  14850. 0,
  14851. 0,
  14852. 0,
  14853. 0,
  14854. 1,
  14855. 1,
  14856. 1,
  14857. 1
  14858. ]
  14859. },
  14860. "_eulerAngles": {
  14861. "__type__": "cc.Vec3",
  14862. "x": 0,
  14863. "y": 0,
  14864. "z": 0
  14865. },
  14866. "_skewX": 0,
  14867. "_skewY": 0,
  14868. "_is3DNode": false,
  14869. "_groupIndex": 0,
  14870. "groupIndex": 0,
  14871. "_id": "994PJVdCpGoLcBDiNMQcuX"
  14872. },
  14873. {
  14874. "__type__": "cc.Sprite",
  14875. "_name": "",
  14876. "_objFlags": 0,
  14877. "node": {
  14878. "__id__": 316
  14879. },
  14880. "_enabled": true,
  14881. "_materials": [
  14882. {
  14883. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  14884. }
  14885. ],
  14886. "_srcBlendFactor": 770,
  14887. "_dstBlendFactor": 771,
  14888. "_spriteFrame": {
  14889. "__uuid__": "657d750c-cd1c-4d4c-9a94-a1d2df11a6cf"
  14890. },
  14891. "_type": 0,
  14892. "_sizeMode": 1,
  14893. "_fillType": 0,
  14894. "_fillCenter": {
  14895. "__type__": "cc.Vec2",
  14896. "x": 0,
  14897. "y": 0
  14898. },
  14899. "_fillStart": 0,
  14900. "_fillRange": 0,
  14901. "_isTrimmedMode": true,
  14902. "_atlas": null,
  14903. "_id": "2chefB+ttLLIrbsxmlDSGc"
  14904. },
  14905. {
  14906. "__type__": "cc.Button",
  14907. "_name": "",
  14908. "_objFlags": 0,
  14909. "node": {
  14910. "__id__": 316
  14911. },
  14912. "_enabled": true,
  14913. "_normalMaterial": null,
  14914. "_grayMaterial": null,
  14915. "duration": 0.1,
  14916. "zoomScale": 1.2,
  14917. "clickEvents": [
  14918. {
  14919. "__id__": 319
  14920. }
  14921. ],
  14922. "_N$interactable": true,
  14923. "_N$enableAutoGrayEffect": false,
  14924. "_N$transition": 0,
  14925. "transition": 0,
  14926. "_N$normalColor": {
  14927. "__type__": "cc.Color",
  14928. "r": 214,
  14929. "g": 214,
  14930. "b": 214,
  14931. "a": 255
  14932. },
  14933. "_N$pressedColor": {
  14934. "__type__": "cc.Color",
  14935. "r": 211,
  14936. "g": 211,
  14937. "b": 211,
  14938. "a": 255
  14939. },
  14940. "pressedColor": {
  14941. "__type__": "cc.Color",
  14942. "r": 211,
  14943. "g": 211,
  14944. "b": 211,
  14945. "a": 255
  14946. },
  14947. "_N$hoverColor": {
  14948. "__type__": "cc.Color",
  14949. "r": 255,
  14950. "g": 255,
  14951. "b": 255,
  14952. "a": 255
  14953. },
  14954. "hoverColor": {
  14955. "__type__": "cc.Color",
  14956. "r": 255,
  14957. "g": 255,
  14958. "b": 255,
  14959. "a": 255
  14960. },
  14961. "_N$disabledColor": {
  14962. "__type__": "cc.Color",
  14963. "r": 124,
  14964. "g": 124,
  14965. "b": 124,
  14966. "a": 255
  14967. },
  14968. "_N$normalSprite": null,
  14969. "_N$pressedSprite": null,
  14970. "pressedSprite": null,
  14971. "_N$hoverSprite": null,
  14972. "hoverSprite": null,
  14973. "_N$disabledSprite": null,
  14974. "_N$target": null,
  14975. "_id": "32DOGXHvlHToJryr0HiEXM"
  14976. },
  14977. {
  14978. "__type__": "cc.ClickEvent",
  14979. "target": {
  14980. "__id__": 18
  14981. },
  14982. "component": "",
  14983. "_componentId": "feefcb/VXtFp4L+Zqa6CrBZ",
  14984. "handler": "openRank",
  14985. "customEventData": ""
  14986. },
  14987. {
  14988. "__type__": "cc.Node",
  14989. "_name": "图鉴",
  14990. "_objFlags": 0,
  14991. "_parent": {
  14992. "__id__": 9
  14993. },
  14994. "_children": [],
  14995. "_active": true,
  14996. "_components": [
  14997. {
  14998. "__id__": 321
  14999. },
  15000. {
  15001. "__id__": 322
  15002. }
  15003. ],
  15004. "_prefab": null,
  15005. "_opacity": 255,
  15006. "_color": {
  15007. "__type__": "cc.Color",
  15008. "r": 255,
  15009. "g": 255,
  15010. "b": 255,
  15011. "a": 255
  15012. },
  15013. "_contentSize": {
  15014. "__type__": "cc.Size",
  15015. "width": 90,
  15016. "height": 122
  15017. },
  15018. "_anchorPoint": {
  15019. "__type__": "cc.Vec2",
  15020. "x": 0.5,
  15021. "y": 0.5
  15022. },
  15023. "_trs": {
  15024. "__type__": "TypedArray",
  15025. "ctor": "Float64Array",
  15026. "array": [
  15027. -72,
  15028. -427,
  15029. 0,
  15030. 0,
  15031. 0,
  15032. 0,
  15033. 1,
  15034. 1,
  15035. 1,
  15036. 1
  15037. ]
  15038. },
  15039. "_eulerAngles": {
  15040. "__type__": "cc.Vec3",
  15041. "x": 0,
  15042. "y": 0,
  15043. "z": 0
  15044. },
  15045. "_skewX": 0,
  15046. "_skewY": 0,
  15047. "_is3DNode": false,
  15048. "_groupIndex": 0,
  15049. "groupIndex": 0,
  15050. "_id": "afS92QWptAraJ6w6WOCXWl"
  15051. },
  15052. {
  15053. "__type__": "cc.Sprite",
  15054. "_name": "",
  15055. "_objFlags": 0,
  15056. "node": {
  15057. "__id__": 320
  15058. },
  15059. "_enabled": true,
  15060. "_materials": [
  15061. {
  15062. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  15063. }
  15064. ],
  15065. "_srcBlendFactor": 770,
  15066. "_dstBlendFactor": 771,
  15067. "_spriteFrame": {
  15068. "__uuid__": "0681e35d-19c2-43f9-9536-7606795e4de7"
  15069. },
  15070. "_type": 0,
  15071. "_sizeMode": 1,
  15072. "_fillType": 0,
  15073. "_fillCenter": {
  15074. "__type__": "cc.Vec2",
  15075. "x": 0,
  15076. "y": 0
  15077. },
  15078. "_fillStart": 0,
  15079. "_fillRange": 0,
  15080. "_isTrimmedMode": true,
  15081. "_atlas": null,
  15082. "_id": "42VD9xVQdOpa04E/nSBqBD"
  15083. },
  15084. {
  15085. "__type__": "cc.Button",
  15086. "_name": "",
  15087. "_objFlags": 0,
  15088. "node": {
  15089. "__id__": 320
  15090. },
  15091. "_enabled": true,
  15092. "_normalMaterial": null,
  15093. "_grayMaterial": null,
  15094. "duration": 0.1,
  15095. "zoomScale": 1.2,
  15096. "clickEvents": [
  15097. {
  15098. "__id__": 323
  15099. }
  15100. ],
  15101. "_N$interactable": true,
  15102. "_N$enableAutoGrayEffect": false,
  15103. "_N$transition": 0,
  15104. "transition": 0,
  15105. "_N$normalColor": {
  15106. "__type__": "cc.Color",
  15107. "r": 214,
  15108. "g": 214,
  15109. "b": 214,
  15110. "a": 255
  15111. },
  15112. "_N$pressedColor": {
  15113. "__type__": "cc.Color",
  15114. "r": 211,
  15115. "g": 211,
  15116. "b": 211,
  15117. "a": 255
  15118. },
  15119. "pressedColor": {
  15120. "__type__": "cc.Color",
  15121. "r": 211,
  15122. "g": 211,
  15123. "b": 211,
  15124. "a": 255
  15125. },
  15126. "_N$hoverColor": {
  15127. "__type__": "cc.Color",
  15128. "r": 255,
  15129. "g": 255,
  15130. "b": 255,
  15131. "a": 255
  15132. },
  15133. "hoverColor": {
  15134. "__type__": "cc.Color",
  15135. "r": 255,
  15136. "g": 255,
  15137. "b": 255,
  15138. "a": 255
  15139. },
  15140. "_N$disabledColor": {
  15141. "__type__": "cc.Color",
  15142. "r": 124,
  15143. "g": 124,
  15144. "b": 124,
  15145. "a": 255
  15146. },
  15147. "_N$normalSprite": null,
  15148. "_N$pressedSprite": null,
  15149. "pressedSprite": null,
  15150. "_N$hoverSprite": null,
  15151. "hoverSprite": null,
  15152. "_N$disabledSprite": null,
  15153. "_N$target": null,
  15154. "_id": "c0FFlI0RlImpxhzY0xvVKw"
  15155. },
  15156. {
  15157. "__type__": "cc.ClickEvent",
  15158. "target": {
  15159. "__id__": 18
  15160. },
  15161. "component": "",
  15162. "_componentId": "feefcb/VXtFp4L+Zqa6CrBZ",
  15163. "handler": "openPictorial",
  15164. "customEventData": ""
  15165. },
  15166. {
  15167. "__type__": "cc.Node",
  15168. "_name": "share",
  15169. "_objFlags": 0,
  15170. "_parent": {
  15171. "__id__": 9
  15172. },
  15173. "_children": [],
  15174. "_active": false,
  15175. "_components": [
  15176. {
  15177. "__id__": 325
  15178. },
  15179. {
  15180. "__id__": 326
  15181. }
  15182. ],
  15183. "_prefab": null,
  15184. "_opacity": 255,
  15185. "_color": {
  15186. "__type__": "cc.Color",
  15187. "r": 255,
  15188. "g": 255,
  15189. "b": 255,
  15190. "a": 255
  15191. },
  15192. "_contentSize": {
  15193. "__type__": "cc.Size",
  15194. "width": 90,
  15195. "height": 122
  15196. },
  15197. "_anchorPoint": {
  15198. "__type__": "cc.Vec2",
  15199. "x": 0.5,
  15200. "y": 0.5
  15201. },
  15202. "_trs": {
  15203. "__type__": "TypedArray",
  15204. "ctor": "Float64Array",
  15205. "array": [
  15206. 228,
  15207. -427,
  15208. 0,
  15209. 0,
  15210. 0,
  15211. 0,
  15212. 1,
  15213. 1,
  15214. 1,
  15215. 1
  15216. ]
  15217. },
  15218. "_eulerAngles": {
  15219. "__type__": "cc.Vec3",
  15220. "x": 0,
  15221. "y": 0,
  15222. "z": 0
  15223. },
  15224. "_skewX": 0,
  15225. "_skewY": 0,
  15226. "_is3DNode": false,
  15227. "_groupIndex": 0,
  15228. "groupIndex": 0,
  15229. "_id": "8eUvaXpVlIgK5cKxjGjlsG"
  15230. },
  15231. {
  15232. "__type__": "cc.Sprite",
  15233. "_name": "",
  15234. "_objFlags": 0,
  15235. "node": {
  15236. "__id__": 324
  15237. },
  15238. "_enabled": true,
  15239. "_materials": [
  15240. {
  15241. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  15242. }
  15243. ],
  15244. "_srcBlendFactor": 770,
  15245. "_dstBlendFactor": 771,
  15246. "_spriteFrame": {
  15247. "__uuid__": "7a44b744-30a1-4035-a0df-7ff73ac0e587"
  15248. },
  15249. "_type": 0,
  15250. "_sizeMode": 1,
  15251. "_fillType": 0,
  15252. "_fillCenter": {
  15253. "__type__": "cc.Vec2",
  15254. "x": 0,
  15255. "y": 0
  15256. },
  15257. "_fillStart": 0,
  15258. "_fillRange": 0,
  15259. "_isTrimmedMode": true,
  15260. "_atlas": null,
  15261. "_id": "f1NF0URZ1GipMfW0tsGGyd"
  15262. },
  15263. {
  15264. "__type__": "cc.Button",
  15265. "_name": "",
  15266. "_objFlags": 0,
  15267. "node": {
  15268. "__id__": 324
  15269. },
  15270. "_enabled": true,
  15271. "_normalMaterial": null,
  15272. "_grayMaterial": null,
  15273. "duration": 0.1,
  15274. "zoomScale": 1.2,
  15275. "clickEvents": [
  15276. {
  15277. "__id__": 327
  15278. }
  15279. ],
  15280. "_N$interactable": true,
  15281. "_N$enableAutoGrayEffect": false,
  15282. "_N$transition": 0,
  15283. "transition": 0,
  15284. "_N$normalColor": {
  15285. "__type__": "cc.Color",
  15286. "r": 214,
  15287. "g": 214,
  15288. "b": 214,
  15289. "a": 255
  15290. },
  15291. "_N$pressedColor": {
  15292. "__type__": "cc.Color",
  15293. "r": 211,
  15294. "g": 211,
  15295. "b": 211,
  15296. "a": 255
  15297. },
  15298. "pressedColor": {
  15299. "__type__": "cc.Color",
  15300. "r": 211,
  15301. "g": 211,
  15302. "b": 211,
  15303. "a": 255
  15304. },
  15305. "_N$hoverColor": {
  15306. "__type__": "cc.Color",
  15307. "r": 255,
  15308. "g": 255,
  15309. "b": 255,
  15310. "a": 255
  15311. },
  15312. "hoverColor": {
  15313. "__type__": "cc.Color",
  15314. "r": 255,
  15315. "g": 255,
  15316. "b": 255,
  15317. "a": 255
  15318. },
  15319. "_N$disabledColor": {
  15320. "__type__": "cc.Color",
  15321. "r": 124,
  15322. "g": 124,
  15323. "b": 124,
  15324. "a": 255
  15325. },
  15326. "_N$normalSprite": null,
  15327. "_N$pressedSprite": null,
  15328. "pressedSprite": null,
  15329. "_N$hoverSprite": null,
  15330. "hoverSprite": null,
  15331. "_N$disabledSprite": null,
  15332. "_N$target": null,
  15333. "_id": "99m++N/n5CdpwQDjMn1RaA"
  15334. },
  15335. {
  15336. "__type__": "cc.ClickEvent",
  15337. "target": {
  15338. "__id__": 126
  15339. },
  15340. "component": "",
  15341. "_componentId": "53b05czD4xGgZ8D0pLpUj9M",
  15342. "handler": "onUsualShareButton",
  15343. "customEventData": ""
  15344. },
  15345. {
  15346. "__type__": "cc.Node",
  15347. "_name": "组 4 拷贝 3",
  15348. "_objFlags": 0,
  15349. "_parent": {
  15350. "__id__": 9
  15351. },
  15352. "_children": [],
  15353. "_active": true,
  15354. "_components": [
  15355. {
  15356. "__id__": 329
  15357. },
  15358. {
  15359. "__id__": 330
  15360. }
  15361. ],
  15362. "_prefab": null,
  15363. "_opacity": 255,
  15364. "_color": {
  15365. "__type__": "cc.Color",
  15366. "r": 255,
  15367. "g": 255,
  15368. "b": 255,
  15369. "a": 255
  15370. },
  15371. "_contentSize": {
  15372. "__type__": "cc.Size",
  15373. "width": 90,
  15374. "height": 122
  15375. },
  15376. "_anchorPoint": {
  15377. "__type__": "cc.Vec2",
  15378. "x": 0.5,
  15379. "y": 0.5
  15380. },
  15381. "_trs": {
  15382. "__type__": "TypedArray",
  15383. "ctor": "Float64Array",
  15384. "array": [
  15385. -222,
  15386. -427,
  15387. 0,
  15388. 0,
  15389. 0,
  15390. 0,
  15391. 1,
  15392. 1,
  15393. 1,
  15394. 1
  15395. ]
  15396. },
  15397. "_eulerAngles": {
  15398. "__type__": "cc.Vec3",
  15399. "x": 0,
  15400. "y": 0,
  15401. "z": 0
  15402. },
  15403. "_skewX": 0,
  15404. "_skewY": 0,
  15405. "_is3DNode": false,
  15406. "_groupIndex": 0,
  15407. "groupIndex": 0,
  15408. "_id": "bb/yZD7ntAC6jZH4qgALyx"
  15409. },
  15410. {
  15411. "__type__": "cc.Sprite",
  15412. "_name": "",
  15413. "_objFlags": 0,
  15414. "node": {
  15415. "__id__": 328
  15416. },
  15417. "_enabled": true,
  15418. "_materials": [
  15419. {
  15420. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  15421. }
  15422. ],
  15423. "_srcBlendFactor": 770,
  15424. "_dstBlendFactor": 771,
  15425. "_spriteFrame": {
  15426. "__uuid__": "f519d00d-2c4a-4ec6-ad11-abe7a501409d"
  15427. },
  15428. "_type": 0,
  15429. "_sizeMode": 1,
  15430. "_fillType": 0,
  15431. "_fillCenter": {
  15432. "__type__": "cc.Vec2",
  15433. "x": 0,
  15434. "y": 0
  15435. },
  15436. "_fillStart": 0,
  15437. "_fillRange": 0,
  15438. "_isTrimmedMode": true,
  15439. "_atlas": null,
  15440. "_id": "6e+cyeaMpLyqosTxj23o+E"
  15441. },
  15442. {
  15443. "__type__": "cc.Button",
  15444. "_name": "",
  15445. "_objFlags": 0,
  15446. "node": {
  15447. "__id__": 328
  15448. },
  15449. "_enabled": true,
  15450. "_normalMaterial": null,
  15451. "_grayMaterial": null,
  15452. "duration": 0.1,
  15453. "zoomScale": 1.2,
  15454. "clickEvents": [
  15455. {
  15456. "__id__": 331
  15457. }
  15458. ],
  15459. "_N$interactable": true,
  15460. "_N$enableAutoGrayEffect": false,
  15461. "_N$transition": 0,
  15462. "transition": 0,
  15463. "_N$normalColor": {
  15464. "__type__": "cc.Color",
  15465. "r": 214,
  15466. "g": 214,
  15467. "b": 214,
  15468. "a": 255
  15469. },
  15470. "_N$pressedColor": {
  15471. "__type__": "cc.Color",
  15472. "r": 211,
  15473. "g": 211,
  15474. "b": 211,
  15475. "a": 255
  15476. },
  15477. "pressedColor": {
  15478. "__type__": "cc.Color",
  15479. "r": 211,
  15480. "g": 211,
  15481. "b": 211,
  15482. "a": 255
  15483. },
  15484. "_N$hoverColor": {
  15485. "__type__": "cc.Color",
  15486. "r": 255,
  15487. "g": 255,
  15488. "b": 255,
  15489. "a": 255
  15490. },
  15491. "hoverColor": {
  15492. "__type__": "cc.Color",
  15493. "r": 255,
  15494. "g": 255,
  15495. "b": 255,
  15496. "a": 255
  15497. },
  15498. "_N$disabledColor": {
  15499. "__type__": "cc.Color",
  15500. "r": 124,
  15501. "g": 124,
  15502. "b": 124,
  15503. "a": 255
  15504. },
  15505. "_N$normalSprite": null,
  15506. "_N$pressedSprite": null,
  15507. "pressedSprite": null,
  15508. "_N$hoverSprite": null,
  15509. "hoverSprite": null,
  15510. "_N$disabledSprite": null,
  15511. "_N$target": null,
  15512. "_id": "03tLXqATVCcYI6Mu8k3wal"
  15513. },
  15514. {
  15515. "__type__": "cc.ClickEvent",
  15516. "target": {
  15517. "__id__": 18
  15518. },
  15519. "component": "",
  15520. "_componentId": "feefcb/VXtFp4L+Zqa6CrBZ",
  15521. "handler": "openHelpPage",
  15522. "customEventData": ""
  15523. },
  15524. {
  15525. "__type__": "cc.Canvas",
  15526. "_name": "",
  15527. "_objFlags": 0,
  15528. "node": {
  15529. "__id__": 2
  15530. },
  15531. "_enabled": true,
  15532. "_designResolution": {
  15533. "__type__": "cc.Size",
  15534. "width": 750,
  15535. "height": 1334
  15536. },
  15537. "_fitWidth": false,
  15538. "_fitHeight": true,
  15539. "_id": "99fMOGjbtDEZ7nYdmT1wix"
  15540. },
  15541. {
  15542. "__type__": "cc.Widget",
  15543. "_name": "",
  15544. "_objFlags": 0,
  15545. "node": {
  15546. "__id__": 2
  15547. },
  15548. "_enabled": true,
  15549. "alignMode": 1,
  15550. "_target": null,
  15551. "_alignFlags": 45,
  15552. "_left": 0,
  15553. "_right": 0,
  15554. "_top": 0,
  15555. "_bottom": 0,
  15556. "_verticalCenter": 0,
  15557. "_horizontalCenter": 0,
  15558. "_isAbsLeft": true,
  15559. "_isAbsRight": true,
  15560. "_isAbsTop": true,
  15561. "_isAbsBottom": true,
  15562. "_isAbsHorizontalCenter": true,
  15563. "_isAbsVerticalCenter": true,
  15564. "_originalWidth": 0,
  15565. "_originalHeight": 0,
  15566. "_id": "094QAyb/tP16wwlZEAdtSY"
  15567. }
  15568. ]