StartScene.scene 277 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480124811248212483124841248512486124871248812489124901249112492124931249412495124961249712498124991250012501125021250312504125051250612507125081250912510125111251212513125141251512516125171251812519125201252112522125231252412525125261252712528125291253012531125321253312534125351253612537125381253912540125411254212543125441254512546125471254812549125501255112552125531255412555125561255712558125591256012561125621256312564125651256612567125681256912570125711257212573125741257512576125771257812579125801258112582125831258412585125861258712588125891259012591125921259312594125951259612597125981259912600126011260212603126041260512606126071260812609126101261112612126131261412615126161261712618126191262012621126221262312624126251262612627126281262912630126311263212633126341263512636126371263812639126401264112642126431264412645126461264712648126491265012651126521265312654126551265612657126581265912660126611266212663126641266512666126671266812669126701267112672126731267412675126761267712678126791268012681126821268312684126851268612687126881268912690126911269212693126941269512696126971269812699127001270112702127031270412705127061270712708127091271012711127121271312714127151271612717127181271912720127211272212723127241272512726127271272812729127301273112732127331273412735127361273712738127391274012741127421274312744127451274612747127481274912750127511275212753127541275512756127571275812759127601276112762127631276412765127661276712768127691277012771127721277312774127751277612777127781277912780127811278212783127841278512786127871278812789127901279112792127931279412795127961279712798127991280012801128021280312804128051280612807128081280912810128111281212813128141281512816128171281812819128201282112822128231282412825128261282712828128291283012831128321283312834128351283612837128381283912840128411284212843128441284512846128471284812849128501285112852128531285412855128561285712858128591286012861128621286312864128651286612867128681286912870128711287212873128741287512876128771287812879128801288112882128831288412885128861288712888128891289012891128921289312894128951289612897128981289912900129011290212903129041290512906129071290812909129101291112912129131291412915129161291712918129191292012921129221292312924129251292612927129281292912930129311293212933129341293512936129371293812939129401294112942129431294412945129461294712948129491295012951129521295312954129551295612957129581295912960129611296212963129641296512966129671296812969129701297112972129731297412975129761297712978129791298012981129821298312984129851298612987129881298912990129911299212993129941299512996129971299812999130001300113002130031300413005130061300713008130091301013011130121301313014130151301613017130181301913020130211302213023130241302513026130271302813029130301303113032130331303413035130361303713038130391304013041130421304313044130451304613047130481304913050130511305213053130541305513056130571305813059130601306113062130631306413065130661306713068130691307013071130721307313074130751307613077130781307913080130811308213083130841308513086130871308813089130901309113092130931309413095130961309713098130991310013101131021310313104131051310613107131081310913110131111311213113131141311513116131171311813119131201312113122131231312413125131261312713128131291313013131131321313313134131351313613137131381313913140131411314213143131441314513146131471314813149131501315113152131531315413155131561315713158131591316013161131621316313164131651316613167131681316913170131711317213173131741317513176131771317813179131801318113182131831318413185131861318713188131891319013191131921319313194131951319613197131981319913200132011320213203132041320513206132071320813209132101321113212132131321413215132161321713218132191322013221132221322313224132251322613227132281322913230132311323213233132341323513236132371323813239132401324113242132431324413245132461324713248132491325013251132521325313254132551325613257132581325913260132611326213263132641326513266132671326813269132701327113272132731327413275132761327713278132791328013281132821328313284132851328613287132881328913290132911329213293132941329513296132971329813299133001330113302133031330413305133061330713308133091331013311133121331313314133151331613317133181331913320133211332213323133241332513326133271332813329133301333113332133331333413335133361333713338133391334013341133421334313344133451334613347133481334913350133511335213353133541335513356133571335813359133601336113362133631336413365133661336713368133691337013371133721337313374133751337613377133781337913380133811338213383133841338513386133871338813389133901339113392133931339413395133961339713398133991340013401134021340313404134051340613407134081340913410134111341213413134141341513416134171341813419134201342113422134231342413425134261342713428134291343013431134321343313434134351343613437134381343913440134411344213443134441344513446134471344813449134501345113452134531345413455134561345713458134591346013461134621346313464134651346613467134681346913470134711347213473134741347513476134771347813479134801348113482134831348413485134861348713488134891349013491134921349313494134951349613497134981349913500135011350213503135041350513506135071350813509135101351113512135131351413515135161351713518135191352013521135221352313524135251352613527135281352913530135311353213533135341353513536135371353813539135401354113542135431354413545135461354713548135491355013551135521355313554135551355613557135581355913560135611356213563135641356513566135671356813569135701357113572135731357413575135761357713578135791358013581135821358313584135851358613587135881358913590135911359213593135941359513596135971359813599136001360113602136031360413605136061360713608136091361013611136121361313614136151361613617136181361913620136211362213623136241362513626136271362813629136301363113632136331363413635136361363713638136391364013641136421364313644136451364613647136481364913650136511365213653136541365513656136571365813659136601366113662136631366413665136661366713668136691367013671136721367313674136751367613677136781367913680136811368213683136841368513686136871368813689136901369113692136931369413695136961369713698136991370013701137021370313704137051370613707137081370913710137111371213713137141371513716137171371813719137201372113722137231372413725137261372713728137291373013731137321373313734137351373613737137381373913740137411374213743137441374513746137471374813749137501375113752137531375413755137561375713758137591376013761137621376313764137651376613767137681376913770137711377213773137741377513776137771377813779137801378113782137831378413785137861378713788137891379013791137921379313794137951379613797137981379913800138011380213803138041380513806138071380813809138101381113812138131381413815138161381713818138191382013821138221382313824138251382613827138281382913830138311383213833138341383513836138371383813839138401384113842138431384413845138461384713848138491385013851138521385313854138551385613857138581385913860138611386213863138641386513866138671386813869138701387113872138731387413875138761387713878138791388013881138821388313884138851388613887138881388913890138911389213893138941389513896138971389813899139001390113902139031390413905139061390713908139091391013911139121391313914139151391613917139181391913920139211392213923139241392513926139271392813929139301393113932139331393413935139361393713938139391394013941139421394313944139451394613947139481394913950139511395213953139541395513956139571395813959139601396113962139631396413965139661396713968139691397013971139721397313974139751397613977139781397913980139811398213983139841398513986139871398813989139901399113992139931399413995139961399713998139991400014001140021400314004140051400614007140081400914010140111401214013140141401514016140171401814019140201402114022140231402414025140261402714028140291403014031140321403314034140351403614037140381403914040140411404214043140441404514046140471404814049140501405114052140531405414055140561405714058140591406014061140621406314064140651406614067140681406914070140711407214073140741407514076140771407814079140801408114082140831408414085140861408714088140891409014091140921409314094140951409614097140981409914100141011410214103141041410514106141071410814109141101411114112141131411414115141161411714118141191412014121141221412314124141251412614127141281412914130141311413214133141341413514136141371413814139141401414114142141431414414145141461414714148141491415014151141521415314154141551415614157141581415914160141611416214163141641416514166141671416814169141701417114172141731417414175141761417714178141791418014181141821418314184141851418614187141881418914190141911419214193141941419514196141971419814199142001420114202142031420414205142061420714208142091421014211142121421314214142151421614217142181421914220142211422214223142241422514226142271422814229142301423114232142331423414235142361423714238142391424014241142421424314244142451424614247142481424914250142511425214253142541425514256142571425814259142601426114262142631426414265142661426714268142691427014271142721427314274142751427614277142781427914280142811428214283142841428514286142871428814289142901429114292142931429414295142961429714298142991430014301143021430314304143051430614307143081430914310143111431214313143141431514316143171431814319143201432114322143231432414325143261432714328143291433014331143321433314334143351433614337143381433914340143411434214343143441434514346143471434814349143501435114352143531435414355143561435714358143591436014361143621436314364143651436614367143681436914370143711437214373143741437514376143771437814379143801438114382143831438414385143861438714388143891439014391143921439314394143951439614397143981439914400144011440214403144041440514406144071440814409144101441114412144131441414415144161441714418144191442014421144221442314424144251442614427144281442914430144311443214433144341443514436144371443814439144401444114442144431444414445144461444714448144491445014451144521445314454144551445614457144581445914460144611446214463144641446514466144671446814469144701447114472144731447414475144761447714478144791448014481144821448314484144851448614487144881448914490144911449214493144941449514496144971449814499145001450114502145031450414505145061450714508145091451014511145121451314514145151451614517145181451914520145211452214523145241452514526145271452814529145301453114532145331453414535145361453714538145391454014541145421454314544145451454614547145481454914550145511455214553145541455514556145571455814559145601456114562145631456414565145661456714568145691457014571145721457314574145751457614577145781457914580145811458214583145841458514586145871458814589145901459114592145931459414595145961459714598145991460014601146021460314604146051460614607146081460914610146111461214613146141461514616146171461814619146201462114622146231462414625146261462714628146291463014631146321463314634146351463614637146381463914640146411464214643146441464514646146471464814649146501465114652146531465414655146561465714658146591466014661146621466314664146651466614667146681466914670146711467214673146741467514676146771467814679146801468114682146831468414685146861468714688146891469014691146921469314694146951469614697146981469914700147011470214703147041470514706147071470814709147101471114712147131471414715147161471714718147191472014721147221472314724147251472614727147281472914730147311473214733147341473514736147371473814739147401474114742147431474414745147461474714748147491475014751147521475314754147551475614757147581475914760147611476214763147641476514766147671476814769147701477114772147731477414775147761477714778147791478014781147821478314784147851478614787147881478914790147911479214793147941479514796147971479814799148001480114802148031480414805148061480714808148091481014811148121481314814148151481614817148181481914820148211482214823148241482514826148271482814829148301483114832148331483414835148361483714838148391484014841148421484314844148451484614847148481484914850148511485214853148541485514856148571485814859148601486114862148631486414865148661486714868148691487014871148721487314874148751487614877148781487914880148811488214883148841488514886148871488814889148901489114892148931489414895148961489714898148991490014901149021490314904149051490614907149081490914910149111491214913149141491514916149171491814919149201492114922149231492414925149261492714928149291493014931149321493314934149351493614937149381493914940149411494214943149441494514946149471494814949149501495114952149531495414955149561495714958149591496014961149621496314964149651496614967149681496914970149711497214973149741497514976149771497814979149801498114982149831498414985149861498714988149891499014991149921499314994149951499614997149981499915000150011500215003150041500515006150071500815009150101501115012150131501415015150161501715018150191502015021150221502315024150251502615027150281502915030150311503215033150341503515036150371503815039150401504115042150431504415045150461504715048150491505015051150521505315054150551505615057150581505915060150611506215063150641506515066150671506815069150701507115072150731507415075150761507715078150791508015081150821508315084150851508615087150881508915090150911509215093150941509515096150971509815099151001510115102151031510415105151061510715108151091511015111
  1. [
  2. {
  3. "__type__": "cc.SceneAsset",
  4. "_name": "StartScene",
  5. "_objFlags": 0,
  6. "__editorExtras__": {},
  7. "_native": "",
  8. "scene": {
  9. "__id__": 1
  10. }
  11. },
  12. {
  13. "__type__": "cc.Scene",
  14. "_name": "StartScene",
  15. "_objFlags": 0,
  16. "__editorExtras__": {},
  17. "_parent": null,
  18. "_children": [
  19. {
  20. "__id__": 2
  21. }
  22. ],
  23. "_active": true,
  24. "_components": [],
  25. "_prefab": {
  26. "__id__": 395
  27. },
  28. "_lpos": {
  29. "__type__": "cc.Vec3",
  30. "x": 0,
  31. "y": 0,
  32. "z": 0
  33. },
  34. "_lrot": {
  35. "__type__": "cc.Quat",
  36. "x": 0,
  37. "y": 0,
  38. "z": 0,
  39. "w": 1
  40. },
  41. "_lscale": {
  42. "__type__": "cc.Vec3",
  43. "x": 1,
  44. "y": 1,
  45. "z": 1
  46. },
  47. "_mobility": 0,
  48. "_layer": 1073741824,
  49. "_euler": {
  50. "__type__": "cc.Vec3",
  51. "x": 0,
  52. "y": 0,
  53. "z": 0
  54. },
  55. "autoReleaseAssets": false,
  56. "_globals": {
  57. "__id__": 414
  58. },
  59. "_id": "099ece80-6a52-4fc1-8f49-dcd0345183d0"
  60. },
  61. {
  62. "__type__": "cc.Node",
  63. "_name": "Canvas",
  64. "_objFlags": 0,
  65. "__editorExtras__": {},
  66. "_parent": {
  67. "__id__": 1
  68. },
  69. "_children": [
  70. {
  71. "__id__": 3
  72. },
  73. {
  74. "__id__": 5
  75. },
  76. {
  77. "__id__": 333
  78. },
  79. {
  80. "__id__": 345
  81. },
  82. {
  83. "__id__": 371
  84. }
  85. ],
  86. "_active": true,
  87. "_components": [
  88. {
  89. "__id__": 391
  90. },
  91. {
  92. "__id__": 392
  93. },
  94. {
  95. "__id__": 393
  96. },
  97. {
  98. "__id__": 394
  99. }
  100. ],
  101. "_prefab": null,
  102. "_lpos": {
  103. "__type__": "cc.Vec3",
  104. "x": 639.9999999999999,
  105. "y": 360.00000000000006,
  106. "z": 0
  107. },
  108. "_lrot": {
  109. "__type__": "cc.Quat",
  110. "x": 0,
  111. "y": 0,
  112. "z": 0,
  113. "w": 1
  114. },
  115. "_lscale": {
  116. "__type__": "cc.Vec3",
  117. "x": 1,
  118. "y": 1,
  119. "z": 1
  120. },
  121. "_mobility": 0,
  122. "_layer": 33554432,
  123. "_euler": {
  124. "__type__": "cc.Vec3",
  125. "x": 0,
  126. "y": 0,
  127. "z": 0
  128. },
  129. "_id": "beI88Z2HpFELqR4T5EMHpg"
  130. },
  131. {
  132. "__type__": "cc.Node",
  133. "_name": "Camera",
  134. "_objFlags": 0,
  135. "__editorExtras__": {},
  136. "_parent": {
  137. "__id__": 2
  138. },
  139. "_children": [],
  140. "_active": true,
  141. "_components": [
  142. {
  143. "__id__": 4
  144. }
  145. ],
  146. "_prefab": null,
  147. "_lpos": {
  148. "__type__": "cc.Vec3",
  149. "x": 0,
  150. "y": 0,
  151. "z": 1000
  152. },
  153. "_lrot": {
  154. "__type__": "cc.Quat",
  155. "x": 0,
  156. "y": 0,
  157. "z": 0,
  158. "w": 1
  159. },
  160. "_lscale": {
  161. "__type__": "cc.Vec3",
  162. "x": 1,
  163. "y": 1,
  164. "z": 1
  165. },
  166. "_mobility": 0,
  167. "_layer": 1073741824,
  168. "_euler": {
  169. "__type__": "cc.Vec3",
  170. "x": 0,
  171. "y": 0,
  172. "z": 0
  173. },
  174. "_id": "ebFwiq8gBFaYpqYbdoDODe"
  175. },
  176. {
  177. "__type__": "cc.Camera",
  178. "_name": "",
  179. "_objFlags": 0,
  180. "__editorExtras__": {},
  181. "node": {
  182. "__id__": 3
  183. },
  184. "_enabled": true,
  185. "__prefab": null,
  186. "_projection": 0,
  187. "_priority": 0,
  188. "_fov": 45,
  189. "_fovAxis": 0,
  190. "_orthoHeight": 360,
  191. "_near": 0,
  192. "_far": 1000,
  193. "_color": {
  194. "__type__": "cc.Color",
  195. "r": 0,
  196. "g": 0,
  197. "b": 0,
  198. "a": 255
  199. },
  200. "_depth": 1,
  201. "_stencil": 0,
  202. "_clearFlags": 7,
  203. "_rect": {
  204. "__type__": "cc.Rect",
  205. "x": 0,
  206. "y": 0,
  207. "width": 1,
  208. "height": 1
  209. },
  210. "_aperture": 19,
  211. "_shutter": 7,
  212. "_iso": 0,
  213. "_screenScale": 1,
  214. "_visibility": 1108344832,
  215. "_targetTexture": null,
  216. "_postProcess": null,
  217. "_usePostProcess": false,
  218. "_cameraType": -1,
  219. "_trackingType": 0,
  220. "_id": "63WIch3o5BEYRlXzTT0oWc"
  221. },
  222. {
  223. "__type__": "cc.Node",
  224. "_name": "GameRoot",
  225. "_objFlags": 0,
  226. "__editorExtras__": {},
  227. "_parent": {
  228. "__id__": 2
  229. },
  230. "_children": [
  231. {
  232. "__id__": 6
  233. },
  234. {
  235. "__id__": 18
  236. },
  237. {
  238. "__id__": 51
  239. },
  240. {
  241. "__id__": 97
  242. },
  243. {
  244. "__id__": 292
  245. }
  246. ],
  247. "_active": true,
  248. "_components": [
  249. {
  250. "__id__": 330
  251. },
  252. {
  253. "__id__": 331
  254. },
  255. {
  256. "__id__": 332
  257. }
  258. ],
  259. "_prefab": null,
  260. "_lpos": {
  261. "__type__": "cc.Vec3",
  262. "x": 1.1368683772161603e-13,
  263. "y": 0,
  264. "z": 0
  265. },
  266. "_lrot": {
  267. "__type__": "cc.Quat",
  268. "x": 0,
  269. "y": 0,
  270. "z": 0,
  271. "w": 1
  272. },
  273. "_lscale": {
  274. "__type__": "cc.Vec3",
  275. "x": 1,
  276. "y": 1,
  277. "z": 1
  278. },
  279. "_mobility": 0,
  280. "_layer": 33554432,
  281. "_euler": {
  282. "__type__": "cc.Vec3",
  283. "x": 0,
  284. "y": 0,
  285. "z": 0
  286. },
  287. "_id": "bcoCLCheBKu548MJo42ADu"
  288. },
  289. {
  290. "__type__": "cc.Node",
  291. "_name": "Bg",
  292. "_objFlags": 0,
  293. "__editorExtras__": {},
  294. "_parent": {
  295. "__id__": 5
  296. },
  297. "_children": [
  298. {
  299. "__id__": 7
  300. },
  301. {
  302. "__id__": 11
  303. }
  304. ],
  305. "_active": true,
  306. "_components": [
  307. {
  308. "__id__": 15
  309. },
  310. {
  311. "__id__": 16
  312. },
  313. {
  314. "__id__": 17
  315. }
  316. ],
  317. "_prefab": null,
  318. "_lpos": {
  319. "__type__": "cc.Vec3",
  320. "x": 0,
  321. "y": 0,
  322. "z": 0
  323. },
  324. "_lrot": {
  325. "__type__": "cc.Quat",
  326. "x": 0,
  327. "y": 0,
  328. "z": 0,
  329. "w": 1
  330. },
  331. "_lscale": {
  332. "__type__": "cc.Vec3",
  333. "x": 1,
  334. "y": 1,
  335. "z": 1
  336. },
  337. "_mobility": 0,
  338. "_layer": 33554432,
  339. "_euler": {
  340. "__type__": "cc.Vec3",
  341. "x": 0,
  342. "y": 0,
  343. "z": 0
  344. },
  345. "_id": "862BxgkgFPZJlc3P6YTT4D"
  346. },
  347. {
  348. "__type__": "cc.Node",
  349. "_name": "CornerLeft",
  350. "_objFlags": 0,
  351. "__editorExtras__": {},
  352. "_parent": {
  353. "__id__": 6
  354. },
  355. "_children": [],
  356. "_active": true,
  357. "_components": [
  358. {
  359. "__id__": 8
  360. },
  361. {
  362. "__id__": 9
  363. },
  364. {
  365. "__id__": 10
  366. }
  367. ],
  368. "_prefab": null,
  369. "_lpos": {
  370. "__type__": "cc.Vec3",
  371. "x": -571,
  372. "y": -303.75,
  373. "z": 0
  374. },
  375. "_lrot": {
  376. "__type__": "cc.Quat",
  377. "x": 0,
  378. "y": 0,
  379. "z": 0,
  380. "w": 1
  381. },
  382. "_lscale": {
  383. "__type__": "cc.Vec3",
  384. "x": 1,
  385. "y": 1,
  386. "z": 1
  387. },
  388. "_mobility": 0,
  389. "_layer": 33554432,
  390. "_euler": {
  391. "__type__": "cc.Vec3",
  392. "x": 0,
  393. "y": 0,
  394. "z": 0
  395. },
  396. "_id": "0c3yzXbDdMB62HQhoZxC1G"
  397. },
  398. {
  399. "__type__": "cc.UITransform",
  400. "_name": "",
  401. "_objFlags": 0,
  402. "__editorExtras__": {},
  403. "node": {
  404. "__id__": 7
  405. },
  406. "_enabled": true,
  407. "__prefab": null,
  408. "_contentSize": {
  409. "__type__": "cc.Size",
  410. "width": 138,
  411. "height": 112.5
  412. },
  413. "_anchorPoint": {
  414. "__type__": "cc.Vec2",
  415. "x": 0.5,
  416. "y": 0.5
  417. },
  418. "_id": "c2vPUApitOpaWWNe6uyyxQ"
  419. },
  420. {
  421. "__type__": "cc.Sprite",
  422. "_name": "",
  423. "_objFlags": 0,
  424. "__editorExtras__": {},
  425. "node": {
  426. "__id__": 7
  427. },
  428. "_enabled": true,
  429. "__prefab": null,
  430. "_customMaterial": null,
  431. "_srcBlendFactor": 2,
  432. "_dstBlendFactor": 4,
  433. "_color": {
  434. "__type__": "cc.Color",
  435. "r": 255,
  436. "g": 255,
  437. "b": 255,
  438. "a": 255
  439. },
  440. "_spriteFrame": {
  441. "__uuid__": "1440ddfa-68c4-4328-bf37-600cd18f4812@3f6c7",
  442. "__expectedType__": "cc.SpriteFrame"
  443. },
  444. "_type": 0,
  445. "_fillType": 0,
  446. "_sizeMode": 0,
  447. "_fillCenter": {
  448. "__type__": "cc.Vec2",
  449. "x": 0,
  450. "y": 0
  451. },
  452. "_fillStart": 0,
  453. "_fillRange": 0,
  454. "_isTrimmedMode": true,
  455. "_useGrayscale": false,
  456. "_atlas": null,
  457. "_id": "22RN+0uUlB+5WrDNA6UBLW"
  458. },
  459. {
  460. "__type__": "cc.Widget",
  461. "_name": "",
  462. "_objFlags": 0,
  463. "__editorExtras__": {},
  464. "node": {
  465. "__id__": 7
  466. },
  467. "_enabled": true,
  468. "__prefab": null,
  469. "_alignFlags": 12,
  470. "_target": null,
  471. "_left": 0,
  472. "_right": 0,
  473. "_top": 0,
  474. "_bottom": 0,
  475. "_horizontalCenter": 0,
  476. "_verticalCenter": 0,
  477. "_isAbsLeft": true,
  478. "_isAbsRight": true,
  479. "_isAbsTop": true,
  480. "_isAbsBottom": true,
  481. "_isAbsHorizontalCenter": true,
  482. "_isAbsVerticalCenter": true,
  483. "_originalWidth": 0,
  484. "_originalHeight": 0,
  485. "_alignMode": 2,
  486. "_lockFlags": 0,
  487. "_id": "f09I2znjBPm5RDKXZaKRU9"
  488. },
  489. {
  490. "__type__": "cc.Node",
  491. "_name": "CornerRight",
  492. "_objFlags": 0,
  493. "__editorExtras__": {},
  494. "_parent": {
  495. "__id__": 6
  496. },
  497. "_children": [],
  498. "_active": true,
  499. "_components": [
  500. {
  501. "__id__": 12
  502. },
  503. {
  504. "__id__": 13
  505. },
  506. {
  507. "__id__": 14
  508. }
  509. ],
  510. "_prefab": null,
  511. "_lpos": {
  512. "__type__": "cc.Vec3",
  513. "x": 570.75,
  514. "y": -303.75,
  515. "z": 0
  516. },
  517. "_lrot": {
  518. "__type__": "cc.Quat",
  519. "x": 0,
  520. "y": 0,
  521. "z": 0,
  522. "w": 1
  523. },
  524. "_lscale": {
  525. "__type__": "cc.Vec3",
  526. "x": 1,
  527. "y": 1,
  528. "z": 1
  529. },
  530. "_mobility": 0,
  531. "_layer": 33554432,
  532. "_euler": {
  533. "__type__": "cc.Vec3",
  534. "x": 0,
  535. "y": 0,
  536. "z": 0
  537. },
  538. "_id": "231UMB4vNMJLaZypg4do2i"
  539. },
  540. {
  541. "__type__": "cc.UITransform",
  542. "_name": "",
  543. "_objFlags": 0,
  544. "__editorExtras__": {},
  545. "node": {
  546. "__id__": 11
  547. },
  548. "_enabled": true,
  549. "__prefab": null,
  550. "_contentSize": {
  551. "__type__": "cc.Size",
  552. "width": 138.5,
  553. "height": 112.5
  554. },
  555. "_anchorPoint": {
  556. "__type__": "cc.Vec2",
  557. "x": 0.5,
  558. "y": 0.5
  559. },
  560. "_id": "07793NNLVHarrdK0KxvrJp"
  561. },
  562. {
  563. "__type__": "cc.Sprite",
  564. "_name": "",
  565. "_objFlags": 0,
  566. "__editorExtras__": {},
  567. "node": {
  568. "__id__": 11
  569. },
  570. "_enabled": true,
  571. "__prefab": null,
  572. "_customMaterial": null,
  573. "_srcBlendFactor": 2,
  574. "_dstBlendFactor": 4,
  575. "_color": {
  576. "__type__": "cc.Color",
  577. "r": 255,
  578. "g": 255,
  579. "b": 255,
  580. "a": 255
  581. },
  582. "_spriteFrame": {
  583. "__uuid__": "1440ddfa-68c4-4328-bf37-600cd18f4812@dbd97",
  584. "__expectedType__": "cc.SpriteFrame"
  585. },
  586. "_type": 0,
  587. "_fillType": 0,
  588. "_sizeMode": 0,
  589. "_fillCenter": {
  590. "__type__": "cc.Vec2",
  591. "x": 0,
  592. "y": 0
  593. },
  594. "_fillStart": 0,
  595. "_fillRange": 0,
  596. "_isTrimmedMode": true,
  597. "_useGrayscale": false,
  598. "_atlas": null,
  599. "_id": "85TTK3tfRNSJ9/s6nRkAoF"
  600. },
  601. {
  602. "__type__": "cc.Widget",
  603. "_name": "",
  604. "_objFlags": 0,
  605. "__editorExtras__": {},
  606. "node": {
  607. "__id__": 11
  608. },
  609. "_enabled": true,
  610. "__prefab": null,
  611. "_alignFlags": 36,
  612. "_target": null,
  613. "_left": 0,
  614. "_right": 0,
  615. "_top": 0,
  616. "_bottom": 0,
  617. "_horizontalCenter": 0,
  618. "_verticalCenter": 0,
  619. "_isAbsLeft": true,
  620. "_isAbsRight": true,
  621. "_isAbsTop": true,
  622. "_isAbsBottom": true,
  623. "_isAbsHorizontalCenter": true,
  624. "_isAbsVerticalCenter": true,
  625. "_originalWidth": 0,
  626. "_originalHeight": 0,
  627. "_alignMode": 2,
  628. "_lockFlags": 0,
  629. "_id": "bev6foNWBJForK/JeZX9E6"
  630. },
  631. {
  632. "__type__": "cc.UITransform",
  633. "_name": "",
  634. "_objFlags": 0,
  635. "__editorExtras__": {},
  636. "node": {
  637. "__id__": 6
  638. },
  639. "_enabled": true,
  640. "__prefab": null,
  641. "_contentSize": {
  642. "__type__": "cc.Size",
  643. "width": 1280,
  644. "height": 720
  645. },
  646. "_anchorPoint": {
  647. "__type__": "cc.Vec2",
  648. "x": 0.5,
  649. "y": 0.5
  650. },
  651. "_id": "20NU/hwPlCgLHSAp3+2HCb"
  652. },
  653. {
  654. "__type__": "cc.Sprite",
  655. "_name": "",
  656. "_objFlags": 0,
  657. "__editorExtras__": {},
  658. "node": {
  659. "__id__": 6
  660. },
  661. "_enabled": true,
  662. "__prefab": null,
  663. "_customMaterial": null,
  664. "_srcBlendFactor": 2,
  665. "_dstBlendFactor": 4,
  666. "_color": {
  667. "__type__": "cc.Color",
  668. "r": 244,
  669. "g": 253,
  670. "b": 233,
  671. "a": 255
  672. },
  673. "_spriteFrame": {
  674. "__uuid__": "aec9314b-0100-429b-9d8d-a9962c65d6ff@f9941",
  675. "__expectedType__": "cc.SpriteFrame"
  676. },
  677. "_type": 0,
  678. "_fillType": 0,
  679. "_sizeMode": 0,
  680. "_fillCenter": {
  681. "__type__": "cc.Vec2",
  682. "x": 0,
  683. "y": 0
  684. },
  685. "_fillStart": 0,
  686. "_fillRange": 0,
  687. "_isTrimmedMode": true,
  688. "_useGrayscale": false,
  689. "_atlas": null,
  690. "_id": "dbgHgbwmpFmLvlDKAMxayI"
  691. },
  692. {
  693. "__type__": "cc.Widget",
  694. "_name": "",
  695. "_objFlags": 0,
  696. "__editorExtras__": {},
  697. "node": {
  698. "__id__": 6
  699. },
  700. "_enabled": true,
  701. "__prefab": null,
  702. "_alignFlags": 45,
  703. "_target": {
  704. "__id__": 5
  705. },
  706. "_left": 0,
  707. "_right": 0,
  708. "_top": 0,
  709. "_bottom": 0,
  710. "_horizontalCenter": 0,
  711. "_verticalCenter": 0,
  712. "_isAbsLeft": true,
  713. "_isAbsRight": true,
  714. "_isAbsTop": true,
  715. "_isAbsBottom": true,
  716. "_isAbsHorizontalCenter": true,
  717. "_isAbsVerticalCenter": true,
  718. "_originalWidth": 100,
  719. "_originalHeight": 100,
  720. "_alignMode": 2,
  721. "_lockFlags": 0,
  722. "_id": "17IAUK6Q1JQr8ECahf0nxT"
  723. },
  724. {
  725. "__type__": "cc.Node",
  726. "_name": "BattleScene_Left",
  727. "_objFlags": 0,
  728. "__editorExtras__": {},
  729. "_parent": {
  730. "__id__": 5
  731. },
  732. "_children": [
  733. {
  734. "__id__": 19
  735. },
  736. {
  737. "__id__": 24
  738. },
  739. {
  740. "__id__": 32
  741. }
  742. ],
  743. "_active": true,
  744. "_components": [
  745. {
  746. "__id__": 47
  747. },
  748. {
  749. "__id__": 48
  750. },
  751. {
  752. "__id__": 49
  753. },
  754. {
  755. "__id__": 50
  756. }
  757. ],
  758. "_prefab": null,
  759. "_lpos": {
  760. "__type__": "cc.Vec3",
  761. "x": -240,
  762. "y": -110,
  763. "z": 0
  764. },
  765. "_lrot": {
  766. "__type__": "cc.Quat",
  767. "x": 0,
  768. "y": 0,
  769. "z": 0,
  770. "w": 1
  771. },
  772. "_lscale": {
  773. "__type__": "cc.Vec3",
  774. "x": 1,
  775. "y": 1,
  776. "z": 1
  777. },
  778. "_mobility": 0,
  779. "_layer": 33554432,
  780. "_euler": {
  781. "__type__": "cc.Vec3",
  782. "x": 0,
  783. "y": 0,
  784. "z": 0
  785. },
  786. "_id": "00GvPOXDlA5Ihr6laCL4Oe"
  787. },
  788. {
  789. "__type__": "cc.Node",
  790. "_name": "_btnLevel",
  791. "_objFlags": 0,
  792. "__editorExtras__": {},
  793. "_parent": {
  794. "__id__": 18
  795. },
  796. "_children": [],
  797. "_active": true,
  798. "_components": [
  799. {
  800. "__id__": 20
  801. },
  802. {
  803. "__id__": 21
  804. },
  805. {
  806. "__id__": 22
  807. },
  808. {
  809. "__id__": 23
  810. }
  811. ],
  812. "_prefab": null,
  813. "_lpos": {
  814. "__type__": "cc.Vec3",
  815. "x": 0,
  816. "y": -120,
  817. "z": 0
  818. },
  819. "_lrot": {
  820. "__type__": "cc.Quat",
  821. "x": 0,
  822. "y": 0,
  823. "z": 0,
  824. "w": 1
  825. },
  826. "_lscale": {
  827. "__type__": "cc.Vec3",
  828. "x": 1,
  829. "y": 1,
  830. "z": 1
  831. },
  832. "_mobility": 0,
  833. "_layer": 33554432,
  834. "_euler": {
  835. "__type__": "cc.Vec3",
  836. "x": 0,
  837. "y": 0,
  838. "z": 0
  839. },
  840. "_id": "41tKKuY4BBAYftS/rY+X1k"
  841. },
  842. {
  843. "__type__": "cc.UITransform",
  844. "_name": "",
  845. "_objFlags": 0,
  846. "__editorExtras__": {},
  847. "node": {
  848. "__id__": 19
  849. },
  850. "_enabled": true,
  851. "__prefab": null,
  852. "_contentSize": {
  853. "__type__": "cc.Size",
  854. "width": 150,
  855. "height": 50.5
  856. },
  857. "_anchorPoint": {
  858. "__type__": "cc.Vec2",
  859. "x": 0.5,
  860. "y": 0.5
  861. },
  862. "_id": "58NJ4QiatOboCPzrwcQRh+"
  863. },
  864. {
  865. "__type__": "cc.Sprite",
  866. "_name": "",
  867. "_objFlags": 0,
  868. "__editorExtras__": {},
  869. "node": {
  870. "__id__": 19
  871. },
  872. "_enabled": true,
  873. "__prefab": null,
  874. "_customMaterial": null,
  875. "_srcBlendFactor": 2,
  876. "_dstBlendFactor": 4,
  877. "_color": {
  878. "__type__": "cc.Color",
  879. "r": 255,
  880. "g": 255,
  881. "b": 255,
  882. "a": 255
  883. },
  884. "_spriteFrame": {
  885. "__uuid__": "c00b279f-801e-4e6d-a02e-0a9604678070@356ff",
  886. "__expectedType__": "cc.SpriteFrame"
  887. },
  888. "_type": 1,
  889. "_fillType": 0,
  890. "_sizeMode": 0,
  891. "_fillCenter": {
  892. "__type__": "cc.Vec2",
  893. "x": 0,
  894. "y": 0
  895. },
  896. "_fillStart": 0,
  897. "_fillRange": 0,
  898. "_isTrimmedMode": true,
  899. "_useGrayscale": false,
  900. "_atlas": null,
  901. "_id": "fe63PXo6NKia0TTL11Skff"
  902. },
  903. {
  904. "__type__": "cc.Button",
  905. "_name": "",
  906. "_objFlags": 0,
  907. "__editorExtras__": {},
  908. "node": {
  909. "__id__": 19
  910. },
  911. "_enabled": true,
  912. "__prefab": null,
  913. "clickEvents": [],
  914. "_interactable": true,
  915. "_transition": 3,
  916. "_normalColor": {
  917. "__type__": "cc.Color",
  918. "r": 214,
  919. "g": 214,
  920. "b": 214,
  921. "a": 255
  922. },
  923. "_hoverColor": {
  924. "__type__": "cc.Color",
  925. "r": 211,
  926. "g": 211,
  927. "b": 211,
  928. "a": 255
  929. },
  930. "_pressedColor": {
  931. "__type__": "cc.Color",
  932. "r": 255,
  933. "g": 255,
  934. "b": 255,
  935. "a": 255
  936. },
  937. "_disabledColor": {
  938. "__type__": "cc.Color",
  939. "r": 124,
  940. "g": 124,
  941. "b": 124,
  942. "a": 255
  943. },
  944. "_normalSprite": {
  945. "__uuid__": "c00b279f-801e-4e6d-a02e-0a9604678070@356ff",
  946. "__expectedType__": "cc.SpriteFrame"
  947. },
  948. "_hoverSprite": null,
  949. "_pressedSprite": null,
  950. "_disabledSprite": null,
  951. "_duration": 0.1,
  952. "_zoomScale": 1.2,
  953. "_target": {
  954. "__id__": 19
  955. },
  956. "_id": "6fuZ2CdClOgpMCYgKedrXk"
  957. },
  958. {
  959. "__type__": "cc.Widget",
  960. "_name": "",
  961. "_objFlags": 0,
  962. "__editorExtras__": {},
  963. "node": {
  964. "__id__": 19
  965. },
  966. "_enabled": true,
  967. "__prefab": null,
  968. "_alignFlags": 44,
  969. "_target": null,
  970. "_left": 125,
  971. "_right": 125,
  972. "_top": 0,
  973. "_bottom": 54.75,
  974. "_horizontalCenter": 0,
  975. "_verticalCenter": 0,
  976. "_isAbsLeft": true,
  977. "_isAbsRight": true,
  978. "_isAbsTop": true,
  979. "_isAbsBottom": true,
  980. "_isAbsHorizontalCenter": true,
  981. "_isAbsVerticalCenter": true,
  982. "_originalWidth": 100,
  983. "_originalHeight": 0,
  984. "_alignMode": 2,
  985. "_lockFlags": 0,
  986. "_id": "59Wpgws7hHdLmnkpwqcmSF"
  987. },
  988. {
  989. "__type__": "cc.Node",
  990. "_name": "Level",
  991. "_objFlags": 0,
  992. "__editorExtras__": {},
  993. "_parent": {
  994. "__id__": 18
  995. },
  996. "_children": [
  997. {
  998. "__id__": 25
  999. }
  1000. ],
  1001. "_active": true,
  1002. "_components": [
  1003. {
  1004. "__id__": 29
  1005. },
  1006. {
  1007. "__id__": 30
  1008. },
  1009. {
  1010. "__id__": 31
  1011. }
  1012. ],
  1013. "_prefab": null,
  1014. "_lpos": {
  1015. "__type__": "cc.Vec3",
  1016. "x": -95,
  1017. "y": 35.624,
  1018. "z": 0
  1019. },
  1020. "_lrot": {
  1021. "__type__": "cc.Quat",
  1022. "x": 0,
  1023. "y": 0,
  1024. "z": 0,
  1025. "w": 1
  1026. },
  1027. "_lscale": {
  1028. "__type__": "cc.Vec3",
  1029. "x": 1,
  1030. "y": 1,
  1031. "z": 1
  1032. },
  1033. "_mobility": 0,
  1034. "_layer": 33554432,
  1035. "_euler": {
  1036. "__type__": "cc.Vec3",
  1037. "x": 0,
  1038. "y": 0,
  1039. "z": 0
  1040. },
  1041. "_id": "c4plNMkVVGqqFLZ9Yyj+ul"
  1042. },
  1043. {
  1044. "__type__": "cc.Node",
  1045. "_name": "_curLv",
  1046. "_objFlags": 0,
  1047. "__editorExtras__": {},
  1048. "_parent": {
  1049. "__id__": 24
  1050. },
  1051. "_children": [],
  1052. "_active": true,
  1053. "_components": [
  1054. {
  1055. "__id__": 26
  1056. },
  1057. {
  1058. "__id__": 27
  1059. },
  1060. {
  1061. "__id__": 28
  1062. }
  1063. ],
  1064. "_prefab": null,
  1065. "_lpos": {
  1066. "__type__": "cc.Vec3",
  1067. "x": 60,
  1068. "y": 0,
  1069. "z": 0
  1070. },
  1071. "_lrot": {
  1072. "__type__": "cc.Quat",
  1073. "x": 0,
  1074. "y": 0,
  1075. "z": 0,
  1076. "w": 1
  1077. },
  1078. "_lscale": {
  1079. "__type__": "cc.Vec3",
  1080. "x": 1,
  1081. "y": 1,
  1082. "z": 1
  1083. },
  1084. "_mobility": 0,
  1085. "_layer": 33554432,
  1086. "_euler": {
  1087. "__type__": "cc.Vec3",
  1088. "x": 0,
  1089. "y": 0,
  1090. "z": 0
  1091. },
  1092. "_id": "e7oM7j3xVJg7uOBo4lZiyk"
  1093. },
  1094. {
  1095. "__type__": "cc.UITransform",
  1096. "_name": "",
  1097. "_objFlags": 0,
  1098. "__editorExtras__": {},
  1099. "node": {
  1100. "__id__": 25
  1101. },
  1102. "_enabled": true,
  1103. "__prefab": null,
  1104. "_contentSize": {
  1105. "__type__": "cc.Size",
  1106. "width": 22.24609375,
  1107. "height": 50.4
  1108. },
  1109. "_anchorPoint": {
  1110. "__type__": "cc.Vec2",
  1111. "x": 0,
  1112. "y": 0.5
  1113. },
  1114. "_id": "6aNXmk4VhKZod76qdbQ32O"
  1115. },
  1116. {
  1117. "__type__": "cc.Widget",
  1118. "_name": "",
  1119. "_objFlags": 0,
  1120. "__editorExtras__": {},
  1121. "node": {
  1122. "__id__": 25
  1123. },
  1124. "_enabled": true,
  1125. "__prefab": null,
  1126. "_alignFlags": 13,
  1127. "_target": null,
  1128. "_left": 120,
  1129. "_right": 0,
  1130. "_top": 0,
  1131. "_bottom": 0,
  1132. "_horizontalCenter": 0,
  1133. "_verticalCenter": 0,
  1134. "_isAbsLeft": true,
  1135. "_isAbsRight": true,
  1136. "_isAbsTop": true,
  1137. "_isAbsBottom": true,
  1138. "_isAbsHorizontalCenter": true,
  1139. "_isAbsVerticalCenter": true,
  1140. "_originalWidth": 0,
  1141. "_originalHeight": 36,
  1142. "_alignMode": 2,
  1143. "_lockFlags": 0,
  1144. "_id": "64BC3fjPRJr7nxkuf4q/Jd"
  1145. },
  1146. {
  1147. "__type__": "cc.Label",
  1148. "_name": "",
  1149. "_objFlags": 0,
  1150. "__editorExtras__": {},
  1151. "node": {
  1152. "__id__": 25
  1153. },
  1154. "_enabled": true,
  1155. "__prefab": null,
  1156. "_customMaterial": null,
  1157. "_srcBlendFactor": 2,
  1158. "_dstBlendFactor": 4,
  1159. "_color": {
  1160. "__type__": "cc.Color",
  1161. "r": 255,
  1162. "g": 20,
  1163. "b": 180,
  1164. "a": 255
  1165. },
  1166. "_string": "1",
  1167. "_horizontalAlign": 1,
  1168. "_verticalAlign": 1,
  1169. "_actualFontSize": 40,
  1170. "_fontSize": 40,
  1171. "_fontFamily": "Arial",
  1172. "_lineHeight": 40,
  1173. "_overflow": 0,
  1174. "_enableWrapText": true,
  1175. "_font": null,
  1176. "_isSystemFontUsed": true,
  1177. "_spacingX": 0,
  1178. "_isItalic": false,
  1179. "_isBold": false,
  1180. "_isUnderline": false,
  1181. "_underlineHeight": 2,
  1182. "_cacheMode": 0,
  1183. "_enableOutline": false,
  1184. "_outlineColor": {
  1185. "__type__": "cc.Color",
  1186. "r": 0,
  1187. "g": 0,
  1188. "b": 0,
  1189. "a": 255
  1190. },
  1191. "_outlineWidth": 2,
  1192. "_enableShadow": false,
  1193. "_shadowColor": {
  1194. "__type__": "cc.Color",
  1195. "r": 0,
  1196. "g": 0,
  1197. "b": 0,
  1198. "a": 255
  1199. },
  1200. "_shadowOffset": {
  1201. "__type__": "cc.Vec2",
  1202. "x": 2,
  1203. "y": 2
  1204. },
  1205. "_shadowBlur": 2,
  1206. "_id": "09gCHJTipPvZZFT+x/iWsD"
  1207. },
  1208. {
  1209. "__type__": "cc.UITransform",
  1210. "_name": "",
  1211. "_objFlags": 0,
  1212. "__editorExtras__": {},
  1213. "node": {
  1214. "__id__": 24
  1215. },
  1216. "_enabled": true,
  1217. "__prefab": null,
  1218. "_contentSize": {
  1219. "__type__": "cc.Size",
  1220. "width": 120,
  1221. "height": 50.4
  1222. },
  1223. "_anchorPoint": {
  1224. "__type__": "cc.Vec2",
  1225. "x": 0.5,
  1226. "y": 0.5
  1227. },
  1228. "_id": "8azJ0dP9NN/pPDX4dGyqdS"
  1229. },
  1230. {
  1231. "__type__": "cc.Label",
  1232. "_name": "",
  1233. "_objFlags": 0,
  1234. "__editorExtras__": {},
  1235. "node": {
  1236. "__id__": 24
  1237. },
  1238. "_enabled": true,
  1239. "__prefab": null,
  1240. "_customMaterial": null,
  1241. "_srcBlendFactor": 2,
  1242. "_dstBlendFactor": 4,
  1243. "_color": {
  1244. "__type__": "cc.Color",
  1245. "r": 70,
  1246. "g": 160,
  1247. "b": 243,
  1248. "a": 255
  1249. },
  1250. "_string": "关卡:",
  1251. "_horizontalAlign": 1,
  1252. "_verticalAlign": 1,
  1253. "_actualFontSize": 40,
  1254. "_fontSize": 40,
  1255. "_fontFamily": "Arial",
  1256. "_lineHeight": 40,
  1257. "_overflow": 0,
  1258. "_enableWrapText": true,
  1259. "_font": null,
  1260. "_isSystemFontUsed": true,
  1261. "_spacingX": 0,
  1262. "_isItalic": false,
  1263. "_isBold": false,
  1264. "_isUnderline": false,
  1265. "_underlineHeight": 2,
  1266. "_cacheMode": 0,
  1267. "_enableOutline": false,
  1268. "_outlineColor": {
  1269. "__type__": "cc.Color",
  1270. "r": 0,
  1271. "g": 0,
  1272. "b": 0,
  1273. "a": 255
  1274. },
  1275. "_outlineWidth": 2,
  1276. "_enableShadow": false,
  1277. "_shadowColor": {
  1278. "__type__": "cc.Color",
  1279. "r": 0,
  1280. "g": 0,
  1281. "b": 0,
  1282. "a": 255
  1283. },
  1284. "_shadowOffset": {
  1285. "__type__": "cc.Vec2",
  1286. "x": 2,
  1287. "y": 2
  1288. },
  1289. "_shadowBlur": 2,
  1290. "_id": "f4rp1+cCtAm7u9Av66G9iO"
  1291. },
  1292. {
  1293. "__type__": "cc.Widget",
  1294. "_name": "",
  1295. "_objFlags": 0,
  1296. "__editorExtras__": {},
  1297. "node": {
  1298. "__id__": 24
  1299. },
  1300. "_enabled": true,
  1301. "__prefab": null,
  1302. "_alignFlags": 8,
  1303. "_target": null,
  1304. "_left": 45,
  1305. "_right": 0,
  1306. "_top": 0,
  1307. "_bottom": 0,
  1308. "_horizontalCenter": 0,
  1309. "_verticalCenter": 0,
  1310. "_isAbsLeft": true,
  1311. "_isAbsRight": true,
  1312. "_isAbsTop": true,
  1313. "_isAbsBottom": true,
  1314. "_isAbsHorizontalCenter": true,
  1315. "_isAbsVerticalCenter": true,
  1316. "_originalWidth": 0,
  1317. "_originalHeight": 0,
  1318. "_alignMode": 2,
  1319. "_lockFlags": 0,
  1320. "_id": "3dn/AoqChGg6xeIugvI0WQ"
  1321. },
  1322. {
  1323. "__type__": "cc.Node",
  1324. "_name": "EditBox",
  1325. "_objFlags": 0,
  1326. "__editorExtras__": {},
  1327. "_parent": {
  1328. "__id__": 18
  1329. },
  1330. "_children": [
  1331. {
  1332. "__id__": 33
  1333. },
  1334. {
  1335. "__id__": 36
  1336. },
  1337. {
  1338. "__id__": 39
  1339. }
  1340. ],
  1341. "_active": true,
  1342. "_components": [
  1343. {
  1344. "__id__": 43
  1345. },
  1346. {
  1347. "__id__": 44
  1348. },
  1349. {
  1350. "__id__": 45
  1351. },
  1352. {
  1353. "__id__": 46
  1354. }
  1355. ],
  1356. "_prefab": null,
  1357. "_lpos": {
  1358. "__type__": "cc.Vec3",
  1359. "x": -110,
  1360. "y": 230,
  1361. "z": 0
  1362. },
  1363. "_lrot": {
  1364. "__type__": "cc.Quat",
  1365. "x": 0,
  1366. "y": 0,
  1367. "z": 0,
  1368. "w": 1
  1369. },
  1370. "_lscale": {
  1371. "__type__": "cc.Vec3",
  1372. "x": 1,
  1373. "y": 1,
  1374. "z": 1
  1375. },
  1376. "_mobility": 0,
  1377. "_layer": 33554432,
  1378. "_euler": {
  1379. "__type__": "cc.Vec3",
  1380. "x": 0,
  1381. "y": 0,
  1382. "z": 0
  1383. },
  1384. "_id": "9aRdl77wVJu7ZcHJoqerbK"
  1385. },
  1386. {
  1387. "__type__": "cc.Node",
  1388. "_name": "TEXT_LABEL",
  1389. "_objFlags": 0,
  1390. "__editorExtras__": {},
  1391. "_parent": {
  1392. "__id__": 32
  1393. },
  1394. "_children": [],
  1395. "_active": false,
  1396. "_components": [
  1397. {
  1398. "__id__": 34
  1399. },
  1400. {
  1401. "__id__": 35
  1402. }
  1403. ],
  1404. "_prefab": null,
  1405. "_lpos": {
  1406. "__type__": "cc.Vec3",
  1407. "x": -78,
  1408. "y": 20,
  1409. "z": 0
  1410. },
  1411. "_lrot": {
  1412. "__type__": "cc.Quat",
  1413. "x": 0,
  1414. "y": 0,
  1415. "z": 0,
  1416. "w": 1
  1417. },
  1418. "_lscale": {
  1419. "__type__": "cc.Vec3",
  1420. "x": 1,
  1421. "y": 1,
  1422. "z": 1
  1423. },
  1424. "_mobility": 0,
  1425. "_layer": 33554432,
  1426. "_euler": {
  1427. "__type__": "cc.Vec3",
  1428. "x": 0,
  1429. "y": 0,
  1430. "z": 0
  1431. },
  1432. "_id": "98oUgxotRMdYjzfFRqLIbn"
  1433. },
  1434. {
  1435. "__type__": "cc.UITransform",
  1436. "_name": "",
  1437. "_objFlags": 0,
  1438. "__editorExtras__": {},
  1439. "node": {
  1440. "__id__": 33
  1441. },
  1442. "_enabled": true,
  1443. "__prefab": null,
  1444. "_contentSize": {
  1445. "__type__": "cc.Size",
  1446. "width": 158,
  1447. "height": 40
  1448. },
  1449. "_anchorPoint": {
  1450. "__type__": "cc.Vec2",
  1451. "x": 0,
  1452. "y": 1
  1453. },
  1454. "_id": "64X5AuFxRDgLclhDwZAXOq"
  1455. },
  1456. {
  1457. "__type__": "cc.Label",
  1458. "_name": "",
  1459. "_objFlags": 0,
  1460. "__editorExtras__": {},
  1461. "node": {
  1462. "__id__": 33
  1463. },
  1464. "_enabled": true,
  1465. "__prefab": null,
  1466. "_customMaterial": null,
  1467. "_srcBlendFactor": 2,
  1468. "_dstBlendFactor": 4,
  1469. "_color": {
  1470. "__type__": "cc.Color",
  1471. "r": 104,
  1472. "g": 104,
  1473. "b": 104,
  1474. "a": 255
  1475. },
  1476. "_string": "",
  1477. "_horizontalAlign": 0,
  1478. "_verticalAlign": 1,
  1479. "_actualFontSize": 20,
  1480. "_fontSize": 20,
  1481. "_fontFamily": "Arial",
  1482. "_lineHeight": 40,
  1483. "_overflow": 1,
  1484. "_enableWrapText": false,
  1485. "_font": null,
  1486. "_isSystemFontUsed": true,
  1487. "_spacingX": 0,
  1488. "_isItalic": false,
  1489. "_isBold": false,
  1490. "_isUnderline": false,
  1491. "_underlineHeight": 2,
  1492. "_cacheMode": 0,
  1493. "_enableOutline": false,
  1494. "_outlineColor": {
  1495. "__type__": "cc.Color",
  1496. "r": 0,
  1497. "g": 0,
  1498. "b": 0,
  1499. "a": 255
  1500. },
  1501. "_outlineWidth": 2,
  1502. "_enableShadow": false,
  1503. "_shadowColor": {
  1504. "__type__": "cc.Color",
  1505. "r": 0,
  1506. "g": 0,
  1507. "b": 0,
  1508. "a": 255
  1509. },
  1510. "_shadowOffset": {
  1511. "__type__": "cc.Vec2",
  1512. "x": 2,
  1513. "y": 2
  1514. },
  1515. "_shadowBlur": 2,
  1516. "_id": "e90CHLMfZDN5U6Jjb/xMyd"
  1517. },
  1518. {
  1519. "__type__": "cc.Node",
  1520. "_name": "PLACEHOLDER_LABEL",
  1521. "_objFlags": 0,
  1522. "__editorExtras__": {},
  1523. "_parent": {
  1524. "__id__": 32
  1525. },
  1526. "_children": [],
  1527. "_active": true,
  1528. "_components": [
  1529. {
  1530. "__id__": 37
  1531. },
  1532. {
  1533. "__id__": 38
  1534. }
  1535. ],
  1536. "_prefab": null,
  1537. "_lpos": {
  1538. "__type__": "cc.Vec3",
  1539. "x": -78,
  1540. "y": 20,
  1541. "z": 0
  1542. },
  1543. "_lrot": {
  1544. "__type__": "cc.Quat",
  1545. "x": 0,
  1546. "y": 0,
  1547. "z": 0,
  1548. "w": 1
  1549. },
  1550. "_lscale": {
  1551. "__type__": "cc.Vec3",
  1552. "x": 1,
  1553. "y": 1,
  1554. "z": 1
  1555. },
  1556. "_mobility": 0,
  1557. "_layer": 33554432,
  1558. "_euler": {
  1559. "__type__": "cc.Vec3",
  1560. "x": 0,
  1561. "y": 0,
  1562. "z": 0
  1563. },
  1564. "_id": "feMULMz7hLSJLxclLGxnrP"
  1565. },
  1566. {
  1567. "__type__": "cc.UITransform",
  1568. "_name": "",
  1569. "_objFlags": 0,
  1570. "__editorExtras__": {},
  1571. "node": {
  1572. "__id__": 36
  1573. },
  1574. "_enabled": true,
  1575. "__prefab": null,
  1576. "_contentSize": {
  1577. "__type__": "cc.Size",
  1578. "width": 158,
  1579. "height": 40
  1580. },
  1581. "_anchorPoint": {
  1582. "__type__": "cc.Vec2",
  1583. "x": 0,
  1584. "y": 1
  1585. },
  1586. "_id": "640J2x0tVC0YkB3DwEeWJc"
  1587. },
  1588. {
  1589. "__type__": "cc.Label",
  1590. "_name": "",
  1591. "_objFlags": 0,
  1592. "__editorExtras__": {},
  1593. "node": {
  1594. "__id__": 36
  1595. },
  1596. "_enabled": true,
  1597. "__prefab": null,
  1598. "_customMaterial": null,
  1599. "_srcBlendFactor": 2,
  1600. "_dstBlendFactor": 4,
  1601. "_color": {
  1602. "__type__": "cc.Color",
  1603. "r": 104,
  1604. "g": 104,
  1605. "b": 104,
  1606. "a": 255
  1607. },
  1608. "_string": "Enter text here...",
  1609. "_horizontalAlign": 0,
  1610. "_verticalAlign": 1,
  1611. "_actualFontSize": 20,
  1612. "_fontSize": 20,
  1613. "_fontFamily": "Arial",
  1614. "_lineHeight": 40,
  1615. "_overflow": 1,
  1616. "_enableWrapText": false,
  1617. "_font": null,
  1618. "_isSystemFontUsed": true,
  1619. "_spacingX": 0,
  1620. "_isItalic": false,
  1621. "_isBold": false,
  1622. "_isUnderline": false,
  1623. "_underlineHeight": 2,
  1624. "_cacheMode": 0,
  1625. "_enableOutline": false,
  1626. "_outlineColor": {
  1627. "__type__": "cc.Color",
  1628. "r": 0,
  1629. "g": 0,
  1630. "b": 0,
  1631. "a": 255
  1632. },
  1633. "_outlineWidth": 2,
  1634. "_enableShadow": false,
  1635. "_shadowColor": {
  1636. "__type__": "cc.Color",
  1637. "r": 0,
  1638. "g": 0,
  1639. "b": 0,
  1640. "a": 255
  1641. },
  1642. "_shadowOffset": {
  1643. "__type__": "cc.Vec2",
  1644. "x": 2,
  1645. "y": 2
  1646. },
  1647. "_shadowBlur": 2,
  1648. "_id": "f5FgUpnKNP8biljxiKU82A"
  1649. },
  1650. {
  1651. "__type__": "cc.Node",
  1652. "_name": "Label",
  1653. "_objFlags": 0,
  1654. "__editorExtras__": {},
  1655. "_parent": {
  1656. "__id__": 32
  1657. },
  1658. "_children": [],
  1659. "_active": true,
  1660. "_components": [
  1661. {
  1662. "__id__": 40
  1663. },
  1664. {
  1665. "__id__": 41
  1666. },
  1667. {
  1668. "__id__": 42
  1669. }
  1670. ],
  1671. "_prefab": null,
  1672. "_lpos": {
  1673. "__type__": "cc.Vec3",
  1674. "x": -40,
  1675. "y": 34.8,
  1676. "z": 0
  1677. },
  1678. "_lrot": {
  1679. "__type__": "cc.Quat",
  1680. "x": 0,
  1681. "y": 0,
  1682. "z": 0,
  1683. "w": 1
  1684. },
  1685. "_lscale": {
  1686. "__type__": "cc.Vec3",
  1687. "x": 1,
  1688. "y": 1,
  1689. "z": 1
  1690. },
  1691. "_mobility": 0,
  1692. "_layer": 33554432,
  1693. "_euler": {
  1694. "__type__": "cc.Vec3",
  1695. "x": 0,
  1696. "y": 0,
  1697. "z": 0
  1698. },
  1699. "_id": "fao4Mz0HdLHLIuLuW0/dh0"
  1700. },
  1701. {
  1702. "__type__": "cc.UITransform",
  1703. "_name": "",
  1704. "_objFlags": 0,
  1705. "__editorExtras__": {},
  1706. "node": {
  1707. "__id__": 39
  1708. },
  1709. "_enabled": true,
  1710. "__prefab": null,
  1711. "_contentSize": {
  1712. "__type__": "cc.Size",
  1713. "width": 80,
  1714. "height": 50.4
  1715. },
  1716. "_anchorPoint": {
  1717. "__type__": "cc.Vec2",
  1718. "x": 0.5,
  1719. "y": 0.5
  1720. },
  1721. "_id": "7dllkNq1FH6rmm+Pko67S2"
  1722. },
  1723. {
  1724. "__type__": "cc.Label",
  1725. "_name": "",
  1726. "_objFlags": 0,
  1727. "__editorExtras__": {},
  1728. "node": {
  1729. "__id__": 39
  1730. },
  1731. "_enabled": true,
  1732. "__prefab": null,
  1733. "_customMaterial": null,
  1734. "_srcBlendFactor": 2,
  1735. "_dstBlendFactor": 4,
  1736. "_color": {
  1737. "__type__": "cc.Color",
  1738. "r": 255,
  1739. "g": 255,
  1740. "b": 255,
  1741. "a": 255
  1742. },
  1743. "_string": "欢迎回来",
  1744. "_horizontalAlign": 1,
  1745. "_verticalAlign": 1,
  1746. "_actualFontSize": 20,
  1747. "_fontSize": 20,
  1748. "_fontFamily": "Arial",
  1749. "_lineHeight": 40,
  1750. "_overflow": 0,
  1751. "_enableWrapText": true,
  1752. "_font": null,
  1753. "_isSystemFontUsed": true,
  1754. "_spacingX": 0,
  1755. "_isItalic": false,
  1756. "_isBold": false,
  1757. "_isUnderline": false,
  1758. "_underlineHeight": 2,
  1759. "_cacheMode": 0,
  1760. "_enableOutline": false,
  1761. "_outlineColor": {
  1762. "__type__": "cc.Color",
  1763. "r": 0,
  1764. "g": 0,
  1765. "b": 0,
  1766. "a": 255
  1767. },
  1768. "_outlineWidth": 2,
  1769. "_enableShadow": false,
  1770. "_shadowColor": {
  1771. "__type__": "cc.Color",
  1772. "r": 0,
  1773. "g": 0,
  1774. "b": 0,
  1775. "a": 255
  1776. },
  1777. "_shadowOffset": {
  1778. "__type__": "cc.Vec2",
  1779. "x": 2,
  1780. "y": 2
  1781. },
  1782. "_shadowBlur": 2,
  1783. "_id": "86Xw+fvQJPOKhL1GPNAlde"
  1784. },
  1785. {
  1786. "__type__": "cc.Widget",
  1787. "_name": "",
  1788. "_objFlags": 0,
  1789. "__editorExtras__": {},
  1790. "node": {
  1791. "__id__": 39
  1792. },
  1793. "_enabled": true,
  1794. "__prefab": null,
  1795. "_alignFlags": 9,
  1796. "_target": {
  1797. "__id__": 32
  1798. },
  1799. "_left": 0,
  1800. "_right": 0,
  1801. "_top": -40,
  1802. "_bottom": 0,
  1803. "_horizontalCenter": 0,
  1804. "_verticalCenter": 0,
  1805. "_isAbsLeft": true,
  1806. "_isAbsRight": true,
  1807. "_isAbsTop": true,
  1808. "_isAbsBottom": true,
  1809. "_isAbsHorizontalCenter": true,
  1810. "_isAbsVerticalCenter": true,
  1811. "_originalWidth": 0,
  1812. "_originalHeight": 0,
  1813. "_alignMode": 2,
  1814. "_lockFlags": 0,
  1815. "_id": "26XmVrvF1JDoixS/mbn57L"
  1816. },
  1817. {
  1818. "__type__": "cc.UITransform",
  1819. "_name": "",
  1820. "_objFlags": 0,
  1821. "__editorExtras__": {},
  1822. "node": {
  1823. "__id__": 32
  1824. },
  1825. "_enabled": true,
  1826. "__prefab": null,
  1827. "_contentSize": {
  1828. "__type__": "cc.Size",
  1829. "width": 160,
  1830. "height": 40
  1831. },
  1832. "_anchorPoint": {
  1833. "__type__": "cc.Vec2",
  1834. "x": 0.5,
  1835. "y": 0.5
  1836. },
  1837. "_id": "ccMFgdFylMQb71ZMHqMqIW"
  1838. },
  1839. {
  1840. "__type__": "cc.Sprite",
  1841. "_name": "",
  1842. "_objFlags": 0,
  1843. "__editorExtras__": {},
  1844. "node": {
  1845. "__id__": 32
  1846. },
  1847. "_enabled": true,
  1848. "__prefab": null,
  1849. "_customMaterial": null,
  1850. "_srcBlendFactor": 2,
  1851. "_dstBlendFactor": 4,
  1852. "_color": {
  1853. "__type__": "cc.Color",
  1854. "r": 255,
  1855. "g": 255,
  1856. "b": 255,
  1857. "a": 255
  1858. },
  1859. "_spriteFrame": {
  1860. "__uuid__": "1440ddfa-68c4-4328-bf37-600cd18f4812@975ac",
  1861. "__expectedType__": "cc.SpriteFrame"
  1862. },
  1863. "_type": 1,
  1864. "_fillType": 0,
  1865. "_sizeMode": 0,
  1866. "_fillCenter": {
  1867. "__type__": "cc.Vec2",
  1868. "x": 0,
  1869. "y": 0
  1870. },
  1871. "_fillStart": 0,
  1872. "_fillRange": 0,
  1873. "_isTrimmedMode": true,
  1874. "_useGrayscale": false,
  1875. "_atlas": null,
  1876. "_id": "d2xZlFQ1lFQKWkqX/UiTu8"
  1877. },
  1878. {
  1879. "__type__": "cc.EditBox",
  1880. "_name": "",
  1881. "_objFlags": 0,
  1882. "__editorExtras__": {},
  1883. "node": {
  1884. "__id__": 32
  1885. },
  1886. "_enabled": true,
  1887. "__prefab": null,
  1888. "editingDidBegan": [],
  1889. "textChanged": [],
  1890. "editingDidEnded": [],
  1891. "editingReturn": [],
  1892. "_textLabel": {
  1893. "__id__": 35
  1894. },
  1895. "_placeholderLabel": {
  1896. "__id__": 38
  1897. },
  1898. "_returnType": 0,
  1899. "_string": "",
  1900. "_tabIndex": 0,
  1901. "_backgroundImage": {
  1902. "__uuid__": "1440ddfa-68c4-4328-bf37-600cd18f4812@975ac",
  1903. "__expectedType__": "cc.SpriteFrame"
  1904. },
  1905. "_inputFlag": 5,
  1906. "_inputMode": 6,
  1907. "_maxLength": 8,
  1908. "_id": "67iolD5n9MD6+HRGMgLBpE"
  1909. },
  1910. {
  1911. "__type__": "cc.Widget",
  1912. "_name": "",
  1913. "_objFlags": 0,
  1914. "__editorExtras__": {},
  1915. "node": {
  1916. "__id__": 32
  1917. },
  1918. "_enabled": true,
  1919. "__prefab": null,
  1920. "_alignFlags": 9,
  1921. "_target": {
  1922. "__id__": 18
  1923. },
  1924. "_left": 10,
  1925. "_right": 0,
  1926. "_top": -50,
  1927. "_bottom": 0,
  1928. "_horizontalCenter": 0,
  1929. "_verticalCenter": 0,
  1930. "_isAbsLeft": true,
  1931. "_isAbsRight": true,
  1932. "_isAbsTop": true,
  1933. "_isAbsBottom": true,
  1934. "_isAbsHorizontalCenter": true,
  1935. "_isAbsVerticalCenter": true,
  1936. "_originalWidth": 0,
  1937. "_originalHeight": 0,
  1938. "_alignMode": 2,
  1939. "_lockFlags": 0,
  1940. "_id": "f3Xd8GurxBl7mF4PX/NiMQ"
  1941. },
  1942. {
  1943. "__type__": "cc.UITransform",
  1944. "_name": "",
  1945. "_objFlags": 0,
  1946. "__editorExtras__": {},
  1947. "node": {
  1948. "__id__": 18
  1949. },
  1950. "_enabled": true,
  1951. "__prefab": null,
  1952. "_contentSize": {
  1953. "__type__": "cc.Size",
  1954. "width": 400,
  1955. "height": 400
  1956. },
  1957. "_anchorPoint": {
  1958. "__type__": "cc.Vec2",
  1959. "x": 0.5,
  1960. "y": 0.5
  1961. },
  1962. "_id": "62g/EMc11KCaIduKTKYy1z"
  1963. },
  1964. {
  1965. "__type__": "cc.Sprite",
  1966. "_name": "",
  1967. "_objFlags": 0,
  1968. "__editorExtras__": {},
  1969. "node": {
  1970. "__id__": 18
  1971. },
  1972. "_enabled": true,
  1973. "__prefab": null,
  1974. "_customMaterial": null,
  1975. "_srcBlendFactor": 2,
  1976. "_dstBlendFactor": 4,
  1977. "_color": {
  1978. "__type__": "cc.Color",
  1979. "r": 255,
  1980. "g": 255,
  1981. "b": 255,
  1982. "a": 255
  1983. },
  1984. "_spriteFrame": {
  1985. "__uuid__": "bb4aa6a1-96c4-46a7-ab7a-0c1265a52733@f9941",
  1986. "__expectedType__": "cc.SpriteFrame"
  1987. },
  1988. "_type": 0,
  1989. "_fillType": 0,
  1990. "_sizeMode": 0,
  1991. "_fillCenter": {
  1992. "__type__": "cc.Vec2",
  1993. "x": 0,
  1994. "y": 0
  1995. },
  1996. "_fillStart": 0,
  1997. "_fillRange": 0,
  1998. "_isTrimmedMode": true,
  1999. "_useGrayscale": false,
  2000. "_atlas": null,
  2001. "_id": "40yozhS0RNHq4nn3gUScRQ"
  2002. },
  2003. {
  2004. "__type__": "cc.Widget",
  2005. "_name": "",
  2006. "_objFlags": 0,
  2007. "__editorExtras__": {},
  2008. "node": {
  2009. "__id__": 18
  2010. },
  2011. "_enabled": true,
  2012. "__prefab": null,
  2013. "_alignFlags": 12,
  2014. "_target": {
  2015. "__id__": 5
  2016. },
  2017. "_left": 200,
  2018. "_right": 0,
  2019. "_top": 160,
  2020. "_bottom": 50,
  2021. "_horizontalCenter": 0,
  2022. "_verticalCenter": 0,
  2023. "_isAbsLeft": true,
  2024. "_isAbsRight": true,
  2025. "_isAbsTop": true,
  2026. "_isAbsBottom": true,
  2027. "_isAbsHorizontalCenter": true,
  2028. "_isAbsVerticalCenter": true,
  2029. "_originalWidth": 0,
  2030. "_originalHeight": 400,
  2031. "_alignMode": 2,
  2032. "_lockFlags": 0,
  2033. "_id": "0a7XdvG1xLGaB8/f3b8+Iz"
  2034. },
  2035. {
  2036. "__type__": "1599fPNn1pOl5EHk5pkIuTS",
  2037. "_name": "",
  2038. "_objFlags": 0,
  2039. "__editorExtras__": {},
  2040. "node": {
  2041. "__id__": 18
  2042. },
  2043. "_enabled": true,
  2044. "__prefab": null,
  2045. "_id": "8cl5Do4oVOuL0tfmF1aEaU"
  2046. },
  2047. {
  2048. "__type__": "cc.Node",
  2049. "_name": "BattleScene_Right",
  2050. "_objFlags": 0,
  2051. "__editorExtras__": {},
  2052. "_parent": {
  2053. "__id__": 5
  2054. },
  2055. "_children": [
  2056. {
  2057. "__id__": 52
  2058. },
  2059. {
  2060. "__id__": 57
  2061. },
  2062. {
  2063. "__id__": 77
  2064. },
  2065. {
  2066. "__id__": 85
  2067. }
  2068. ],
  2069. "_active": true,
  2070. "_components": [
  2071. {
  2072. "__id__": 93
  2073. },
  2074. {
  2075. "__id__": 94
  2076. },
  2077. {
  2078. "__id__": 95
  2079. },
  2080. {
  2081. "__id__": 96
  2082. }
  2083. ],
  2084. "_prefab": null,
  2085. "_lpos": {
  2086. "__type__": "cc.Vec3",
  2087. "x": 240,
  2088. "y": -110,
  2089. "z": 0
  2090. },
  2091. "_lrot": {
  2092. "__type__": "cc.Quat",
  2093. "x": 0,
  2094. "y": 0,
  2095. "z": 0,
  2096. "w": 1
  2097. },
  2098. "_lscale": {
  2099. "__type__": "cc.Vec3",
  2100. "x": 1,
  2101. "y": 1,
  2102. "z": 1
  2103. },
  2104. "_mobility": 0,
  2105. "_layer": 33554432,
  2106. "_euler": {
  2107. "__type__": "cc.Vec3",
  2108. "x": 0,
  2109. "y": 0,
  2110. "z": 0
  2111. },
  2112. "_id": "1cM1q6kzhNeZyO0cVxOOJS"
  2113. },
  2114. {
  2115. "__type__": "cc.Node",
  2116. "_name": "_btnArena",
  2117. "_objFlags": 0,
  2118. "__editorExtras__": {},
  2119. "_parent": {
  2120. "__id__": 51
  2121. },
  2122. "_children": [],
  2123. "_active": true,
  2124. "_components": [
  2125. {
  2126. "__id__": 53
  2127. },
  2128. {
  2129. "__id__": 54
  2130. },
  2131. {
  2132. "__id__": 55
  2133. },
  2134. {
  2135. "__id__": 56
  2136. }
  2137. ],
  2138. "_prefab": null,
  2139. "_lpos": {
  2140. "__type__": "cc.Vec3",
  2141. "x": 0,
  2142. "y": -119.99999999999999,
  2143. "z": 0
  2144. },
  2145. "_lrot": {
  2146. "__type__": "cc.Quat",
  2147. "x": 0,
  2148. "y": 0,
  2149. "z": 0,
  2150. "w": 1
  2151. },
  2152. "_lscale": {
  2153. "__type__": "cc.Vec3",
  2154. "x": 1,
  2155. "y": 1,
  2156. "z": 1
  2157. },
  2158. "_mobility": 0,
  2159. "_layer": 33554432,
  2160. "_euler": {
  2161. "__type__": "cc.Vec3",
  2162. "x": 0,
  2163. "y": 0,
  2164. "z": 0
  2165. },
  2166. "_id": "5ceSL/m1JE85ZzwK2O+xEF"
  2167. },
  2168. {
  2169. "__type__": "cc.UITransform",
  2170. "_name": "",
  2171. "_objFlags": 0,
  2172. "__editorExtras__": {},
  2173. "node": {
  2174. "__id__": 52
  2175. },
  2176. "_enabled": true,
  2177. "__prefab": null,
  2178. "_contentSize": {
  2179. "__type__": "cc.Size",
  2180. "width": 150,
  2181. "height": 50.4
  2182. },
  2183. "_anchorPoint": {
  2184. "__type__": "cc.Vec2",
  2185. "x": 0.5,
  2186. "y": 0.5
  2187. },
  2188. "_id": "f6dBhJETlB+5wTr8U7u1O0"
  2189. },
  2190. {
  2191. "__type__": "cc.Sprite",
  2192. "_name": "",
  2193. "_objFlags": 0,
  2194. "__editorExtras__": {},
  2195. "node": {
  2196. "__id__": 52
  2197. },
  2198. "_enabled": true,
  2199. "__prefab": null,
  2200. "_customMaterial": null,
  2201. "_srcBlendFactor": 2,
  2202. "_dstBlendFactor": 4,
  2203. "_color": {
  2204. "__type__": "cc.Color",
  2205. "r": 255,
  2206. "g": 255,
  2207. "b": 255,
  2208. "a": 255
  2209. },
  2210. "_spriteFrame": {
  2211. "__uuid__": "c00b279f-801e-4e6d-a02e-0a9604678070@b3156",
  2212. "__expectedType__": "cc.SpriteFrame"
  2213. },
  2214. "_type": 1,
  2215. "_fillType": 0,
  2216. "_sizeMode": 0,
  2217. "_fillCenter": {
  2218. "__type__": "cc.Vec2",
  2219. "x": 0,
  2220. "y": 0
  2221. },
  2222. "_fillStart": 0,
  2223. "_fillRange": 0,
  2224. "_isTrimmedMode": true,
  2225. "_useGrayscale": false,
  2226. "_atlas": null,
  2227. "_id": "71eHlRTMlGyZLD6W54FVbZ"
  2228. },
  2229. {
  2230. "__type__": "cc.Button",
  2231. "_name": "",
  2232. "_objFlags": 0,
  2233. "__editorExtras__": {},
  2234. "node": {
  2235. "__id__": 52
  2236. },
  2237. "_enabled": true,
  2238. "__prefab": null,
  2239. "clickEvents": [],
  2240. "_interactable": true,
  2241. "_transition": 3,
  2242. "_normalColor": {
  2243. "__type__": "cc.Color",
  2244. "r": 214,
  2245. "g": 214,
  2246. "b": 214,
  2247. "a": 255
  2248. },
  2249. "_hoverColor": {
  2250. "__type__": "cc.Color",
  2251. "r": 211,
  2252. "g": 211,
  2253. "b": 211,
  2254. "a": 255
  2255. },
  2256. "_pressedColor": {
  2257. "__type__": "cc.Color",
  2258. "r": 255,
  2259. "g": 255,
  2260. "b": 255,
  2261. "a": 255
  2262. },
  2263. "_disabledColor": {
  2264. "__type__": "cc.Color",
  2265. "r": 124,
  2266. "g": 124,
  2267. "b": 124,
  2268. "a": 255
  2269. },
  2270. "_normalSprite": null,
  2271. "_hoverSprite": null,
  2272. "_pressedSprite": null,
  2273. "_disabledSprite": null,
  2274. "_duration": 0.1,
  2275. "_zoomScale": 1.2,
  2276. "_target": {
  2277. "__id__": 52
  2278. },
  2279. "_id": "28L8rRbitHZI5R47m5zDo7"
  2280. },
  2281. {
  2282. "__type__": "cc.Widget",
  2283. "_name": "",
  2284. "_objFlags": 0,
  2285. "__editorExtras__": {},
  2286. "node": {
  2287. "__id__": 52
  2288. },
  2289. "_enabled": true,
  2290. "__prefab": null,
  2291. "_alignFlags": 44,
  2292. "_target": null,
  2293. "_left": 125,
  2294. "_right": 125,
  2295. "_top": 0,
  2296. "_bottom": 54.8,
  2297. "_horizontalCenter": 0,
  2298. "_verticalCenter": 0,
  2299. "_isAbsLeft": true,
  2300. "_isAbsRight": true,
  2301. "_isAbsTop": true,
  2302. "_isAbsBottom": true,
  2303. "_isAbsHorizontalCenter": true,
  2304. "_isAbsVerticalCenter": true,
  2305. "_originalWidth": 100,
  2306. "_originalHeight": 0,
  2307. "_alignMode": 2,
  2308. "_lockFlags": 0,
  2309. "_id": "1aQuc52fxKg4nD0V+PHga8"
  2310. },
  2311. {
  2312. "__type__": "cc.Node",
  2313. "_name": "_ProgressBar",
  2314. "_objFlags": 0,
  2315. "__editorExtras__": {},
  2316. "_parent": {
  2317. "__id__": 51
  2318. },
  2319. "_children": [
  2320. {
  2321. "__id__": 58
  2322. },
  2323. {
  2324. "__id__": 61
  2325. }
  2326. ],
  2327. "_active": true,
  2328. "_components": [
  2329. {
  2330. "__id__": 73
  2331. },
  2332. {
  2333. "__id__": 74
  2334. },
  2335. {
  2336. "__id__": 75
  2337. },
  2338. {
  2339. "__id__": 76
  2340. }
  2341. ],
  2342. "_prefab": null,
  2343. "_lpos": {
  2344. "__type__": "cc.Vec3",
  2345. "x": -45,
  2346. "y": 222.5,
  2347. "z": 0
  2348. },
  2349. "_lrot": {
  2350. "__type__": "cc.Quat",
  2351. "x": 0,
  2352. "y": 0,
  2353. "z": 0,
  2354. "w": 1
  2355. },
  2356. "_lscale": {
  2357. "__type__": "cc.Vec3",
  2358. "x": 1,
  2359. "y": 1,
  2360. "z": 1
  2361. },
  2362. "_mobility": 0,
  2363. "_layer": 33554432,
  2364. "_euler": {
  2365. "__type__": "cc.Vec3",
  2366. "x": 0,
  2367. "y": 0,
  2368. "z": 0
  2369. },
  2370. "_id": "8fcONC2VtJ/YJEqmX1Ptah"
  2371. },
  2372. {
  2373. "__type__": "cc.Node",
  2374. "_name": "Bar",
  2375. "_objFlags": 0,
  2376. "__editorExtras__": {},
  2377. "_parent": {
  2378. "__id__": 57
  2379. },
  2380. "_children": [],
  2381. "_active": true,
  2382. "_components": [
  2383. {
  2384. "__id__": 59
  2385. },
  2386. {
  2387. "__id__": 60
  2388. }
  2389. ],
  2390. "_prefab": null,
  2391. "_lpos": {
  2392. "__type__": "cc.Vec3",
  2393. "x": -150,
  2394. "y": 0,
  2395. "z": 0
  2396. },
  2397. "_lrot": {
  2398. "__type__": "cc.Quat",
  2399. "x": 0,
  2400. "y": 0,
  2401. "z": 0,
  2402. "w": 1
  2403. },
  2404. "_lscale": {
  2405. "__type__": "cc.Vec3",
  2406. "x": 1,
  2407. "y": 1,
  2408. "z": 1
  2409. },
  2410. "_mobility": 0,
  2411. "_layer": 33554432,
  2412. "_euler": {
  2413. "__type__": "cc.Vec3",
  2414. "x": 0,
  2415. "y": 0,
  2416. "z": 0
  2417. },
  2418. "_id": "5dF0WxRq9AHp221hu4LB8j"
  2419. },
  2420. {
  2421. "__type__": "cc.UITransform",
  2422. "_name": "",
  2423. "_objFlags": 0,
  2424. "__editorExtras__": {},
  2425. "node": {
  2426. "__id__": 58
  2427. },
  2428. "_enabled": true,
  2429. "__prefab": null,
  2430. "_contentSize": {
  2431. "__type__": "cc.Size",
  2432. "width": 0,
  2433. "height": 15
  2434. },
  2435. "_anchorPoint": {
  2436. "__type__": "cc.Vec2",
  2437. "x": 0,
  2438. "y": 0.5
  2439. },
  2440. "_id": "2bZmbTX7hB4bWeGcS5iX39"
  2441. },
  2442. {
  2443. "__type__": "cc.Sprite",
  2444. "_name": "",
  2445. "_objFlags": 0,
  2446. "__editorExtras__": {},
  2447. "node": {
  2448. "__id__": 58
  2449. },
  2450. "_enabled": true,
  2451. "__prefab": null,
  2452. "_customMaterial": null,
  2453. "_srcBlendFactor": 2,
  2454. "_dstBlendFactor": 4,
  2455. "_color": {
  2456. "__type__": "cc.Color",
  2457. "r": 111,
  2458. "g": 241,
  2459. "b": 24,
  2460. "a": 255
  2461. },
  2462. "_spriteFrame": {
  2463. "__uuid__": "24a704da-2867-446d-8d1a-5e920c75e09d@f9941",
  2464. "__expectedType__": "cc.SpriteFrame"
  2465. },
  2466. "_type": 1,
  2467. "_fillType": 0,
  2468. "_sizeMode": 0,
  2469. "_fillCenter": {
  2470. "__type__": "cc.Vec2",
  2471. "x": 0,
  2472. "y": 0
  2473. },
  2474. "_fillStart": 0,
  2475. "_fillRange": 0,
  2476. "_isTrimmedMode": true,
  2477. "_useGrayscale": false,
  2478. "_atlas": null,
  2479. "_id": "d4uJLTbAVFALkp8n6kQsbV"
  2480. },
  2481. {
  2482. "__type__": "cc.Node",
  2483. "_name": "Grade",
  2484. "_objFlags": 0,
  2485. "__editorExtras__": {},
  2486. "_parent": {
  2487. "__id__": 57
  2488. },
  2489. "_children": [
  2490. {
  2491. "__id__": 62
  2492. },
  2493. {
  2494. "__id__": 66
  2495. }
  2496. ],
  2497. "_active": true,
  2498. "_components": [
  2499. {
  2500. "__id__": 70
  2501. },
  2502. {
  2503. "__id__": 71
  2504. },
  2505. {
  2506. "__id__": 72
  2507. }
  2508. ],
  2509. "_prefab": null,
  2510. "_lpos": {
  2511. "__type__": "cc.Vec3",
  2512. "x": -105,
  2513. "y": 32.3,
  2514. "z": 0
  2515. },
  2516. "_lrot": {
  2517. "__type__": "cc.Quat",
  2518. "x": 0,
  2519. "y": 0,
  2520. "z": 0,
  2521. "w": 1
  2522. },
  2523. "_lscale": {
  2524. "__type__": "cc.Vec3",
  2525. "x": 1,
  2526. "y": 1,
  2527. "z": 1
  2528. },
  2529. "_mobility": 0,
  2530. "_layer": 33554432,
  2531. "_euler": {
  2532. "__type__": "cc.Vec3",
  2533. "x": 0,
  2534. "y": 0,
  2535. "z": 0
  2536. },
  2537. "_id": "abCURcj+RHVJwAJfbNcbmV"
  2538. },
  2539. {
  2540. "__type__": "cc.Node",
  2541. "_name": "_grade",
  2542. "_objFlags": 0,
  2543. "__editorExtras__": {},
  2544. "_parent": {
  2545. "__id__": 61
  2546. },
  2547. "_children": [],
  2548. "_active": true,
  2549. "_components": [
  2550. {
  2551. "__id__": 63
  2552. },
  2553. {
  2554. "__id__": 64
  2555. },
  2556. {
  2557. "__id__": 65
  2558. }
  2559. ],
  2560. "_prefab": null,
  2561. "_lpos": {
  2562. "__type__": "cc.Vec3",
  2563. "x": 50.65228515625,
  2564. "y": 0,
  2565. "z": 0
  2566. },
  2567. "_lrot": {
  2568. "__type__": "cc.Quat",
  2569. "x": 0,
  2570. "y": 0,
  2571. "z": 0,
  2572. "w": 1
  2573. },
  2574. "_lscale": {
  2575. "__type__": "cc.Vec3",
  2576. "x": 1,
  2577. "y": 1,
  2578. "z": 1
  2579. },
  2580. "_mobility": 0,
  2581. "_layer": 33554432,
  2582. "_euler": {
  2583. "__type__": "cc.Vec3",
  2584. "x": 0,
  2585. "y": 0,
  2586. "z": 0
  2587. },
  2588. "_id": "81ScVg4vhOVZZ1VcBvH4Nn"
  2589. },
  2590. {
  2591. "__type__": "cc.UITransform",
  2592. "_name": "",
  2593. "_objFlags": 0,
  2594. "__editorExtras__": {},
  2595. "node": {
  2596. "__id__": 62
  2597. },
  2598. "_enabled": true,
  2599. "__prefab": null,
  2600. "_contentSize": {
  2601. "__type__": "cc.Size",
  2602. "width": 25.38,
  2603. "height": 40
  2604. },
  2605. "_anchorPoint": {
  2606. "__type__": "cc.Vec2",
  2607. "x": 0,
  2608. "y": 0.5
  2609. },
  2610. "_id": "25k9HEfQdOJZB/SyG69WMb"
  2611. },
  2612. {
  2613. "__type__": "cc.Label",
  2614. "_name": "",
  2615. "_objFlags": 0,
  2616. "__editorExtras__": {},
  2617. "node": {
  2618. "__id__": 62
  2619. },
  2620. "_enabled": true,
  2621. "__prefab": null,
  2622. "_customMaterial": null,
  2623. "_srcBlendFactor": 2,
  2624. "_dstBlendFactor": 4,
  2625. "_color": {
  2626. "__type__": "cc.Color",
  2627. "r": 255,
  2628. "g": 255,
  2629. "b": 255,
  2630. "a": 255
  2631. },
  2632. "_string": "1",
  2633. "_horizontalAlign": 1,
  2634. "_verticalAlign": 1,
  2635. "_actualFontSize": 30,
  2636. "_fontSize": 30,
  2637. "_fontFamily": "Arial",
  2638. "_lineHeight": 40,
  2639. "_overflow": 0,
  2640. "_enableWrapText": true,
  2641. "_font": {
  2642. "__uuid__": "d280166a-1c85-4319-ab27-e44e796b09a1",
  2643. "__expectedType__": "cc.LabelAtlas"
  2644. },
  2645. "_isSystemFontUsed": false,
  2646. "_spacingX": 0,
  2647. "_isItalic": false,
  2648. "_isBold": false,
  2649. "_isUnderline": false,
  2650. "_underlineHeight": 2,
  2651. "_cacheMode": 0,
  2652. "_enableOutline": false,
  2653. "_outlineColor": {
  2654. "__type__": "cc.Color",
  2655. "r": 0,
  2656. "g": 0,
  2657. "b": 0,
  2658. "a": 255
  2659. },
  2660. "_outlineWidth": 2,
  2661. "_enableShadow": false,
  2662. "_shadowColor": {
  2663. "__type__": "cc.Color",
  2664. "r": 0,
  2665. "g": 0,
  2666. "b": 0,
  2667. "a": 255
  2668. },
  2669. "_shadowOffset": {
  2670. "__type__": "cc.Vec2",
  2671. "x": 2,
  2672. "y": 2
  2673. },
  2674. "_shadowBlur": 2,
  2675. "_id": "8dLoG0mj5LhacU1mIzKxb6"
  2676. },
  2677. {
  2678. "__type__": "cc.Widget",
  2679. "_name": "",
  2680. "_objFlags": 0,
  2681. "__editorExtras__": {},
  2682. "node": {
  2683. "__id__": 62
  2684. },
  2685. "_enabled": true,
  2686. "__prefab": null,
  2687. "_alignFlags": 13,
  2688. "_target": {
  2689. "__id__": 61
  2690. },
  2691. "_left": 95.65228515625,
  2692. "_right": 0,
  2693. "_top": 5.199999999999999,
  2694. "_bottom": 5.199999999999999,
  2695. "_horizontalCenter": 0,
  2696. "_verticalCenter": 0,
  2697. "_isAbsLeft": true,
  2698. "_isAbsRight": true,
  2699. "_isAbsTop": true,
  2700. "_isAbsBottom": true,
  2701. "_isAbsHorizontalCenter": true,
  2702. "_isAbsVerticalCenter": true,
  2703. "_originalWidth": 0,
  2704. "_originalHeight": 50.4,
  2705. "_alignMode": 2,
  2706. "_lockFlags": 0,
  2707. "_id": "31WMGA30RADJ1xHFjfCCsU"
  2708. },
  2709. {
  2710. "__type__": "cc.Node",
  2711. "_name": "_exp",
  2712. "_objFlags": 0,
  2713. "__editorExtras__": {},
  2714. "_parent": {
  2715. "__id__": 61
  2716. },
  2717. "_children": [],
  2718. "_active": true,
  2719. "_components": [
  2720. {
  2721. "__id__": 67
  2722. },
  2723. {
  2724. "__id__": 68
  2725. },
  2726. {
  2727. "__id__": 69
  2728. }
  2729. ],
  2730. "_prefab": null,
  2731. "_lpos": {
  2732. "__type__": "cc.Vec3",
  2733. "x": 180,
  2734. "y": 0,
  2735. "z": 0
  2736. },
  2737. "_lrot": {
  2738. "__type__": "cc.Quat",
  2739. "x": 0,
  2740. "y": 0,
  2741. "z": 0,
  2742. "w": 1
  2743. },
  2744. "_lscale": {
  2745. "__type__": "cc.Vec3",
  2746. "x": 1,
  2747. "y": 1,
  2748. "z": 1
  2749. },
  2750. "_mobility": 0,
  2751. "_layer": 33554432,
  2752. "_euler": {
  2753. "__type__": "cc.Vec3",
  2754. "x": 0,
  2755. "y": 0,
  2756. "z": 0
  2757. },
  2758. "_id": "5eTLt2fLhJPq+KGgXWKYOj"
  2759. },
  2760. {
  2761. "__type__": "cc.UITransform",
  2762. "_name": "",
  2763. "_objFlags": 0,
  2764. "__editorExtras__": {},
  2765. "node": {
  2766. "__id__": 66
  2767. },
  2768. "_enabled": true,
  2769. "__prefab": null,
  2770. "_contentSize": {
  2771. "__type__": "cc.Size",
  2772. "width": 11.123046875,
  2773. "height": 50.4
  2774. },
  2775. "_anchorPoint": {
  2776. "__type__": "cc.Vec2",
  2777. "x": 0,
  2778. "y": 0.5
  2779. },
  2780. "_id": "588biSztNIuJhMuBrHXC8c"
  2781. },
  2782. {
  2783. "__type__": "cc.Label",
  2784. "_name": "",
  2785. "_objFlags": 0,
  2786. "__editorExtras__": {},
  2787. "node": {
  2788. "__id__": 66
  2789. },
  2790. "_enabled": true,
  2791. "__prefab": null,
  2792. "_customMaterial": null,
  2793. "_srcBlendFactor": 2,
  2794. "_dstBlendFactor": 4,
  2795. "_color": {
  2796. "__type__": "cc.Color",
  2797. "r": 119,
  2798. "g": 248,
  2799. "b": 0,
  2800. "a": 255
  2801. },
  2802. "_string": "0",
  2803. "_horizontalAlign": 1,
  2804. "_verticalAlign": 1,
  2805. "_actualFontSize": 20,
  2806. "_fontSize": 20,
  2807. "_fontFamily": "Arial",
  2808. "_lineHeight": 40,
  2809. "_overflow": 0,
  2810. "_enableWrapText": true,
  2811. "_font": null,
  2812. "_isSystemFontUsed": true,
  2813. "_spacingX": 0,
  2814. "_isItalic": false,
  2815. "_isBold": false,
  2816. "_isUnderline": false,
  2817. "_underlineHeight": 2,
  2818. "_cacheMode": 0,
  2819. "_enableOutline": false,
  2820. "_outlineColor": {
  2821. "__type__": "cc.Color",
  2822. "r": 0,
  2823. "g": 0,
  2824. "b": 0,
  2825. "a": 255
  2826. },
  2827. "_outlineWidth": 2,
  2828. "_enableShadow": false,
  2829. "_shadowColor": {
  2830. "__type__": "cc.Color",
  2831. "r": 0,
  2832. "g": 0,
  2833. "b": 0,
  2834. "a": 255
  2835. },
  2836. "_shadowOffset": {
  2837. "__type__": "cc.Vec2",
  2838. "x": 2,
  2839. "y": 2
  2840. },
  2841. "_shadowBlur": 2,
  2842. "_id": "18bOsGybBJO6sCupeUos0H"
  2843. },
  2844. {
  2845. "__type__": "cc.Widget",
  2846. "_name": "",
  2847. "_objFlags": 0,
  2848. "__editorExtras__": {},
  2849. "node": {
  2850. "__id__": 66
  2851. },
  2852. "_enabled": true,
  2853. "__prefab": null,
  2854. "_alignFlags": 13,
  2855. "_target": null,
  2856. "_left": 225,
  2857. "_right": 0,
  2858. "_top": 0,
  2859. "_bottom": 0,
  2860. "_horizontalCenter": 0,
  2861. "_verticalCenter": 0,
  2862. "_isAbsLeft": true,
  2863. "_isAbsRight": true,
  2864. "_isAbsTop": true,
  2865. "_isAbsBottom": true,
  2866. "_isAbsHorizontalCenter": true,
  2867. "_isAbsVerticalCenter": true,
  2868. "_originalWidth": 0,
  2869. "_originalHeight": 50.4,
  2870. "_alignMode": 2,
  2871. "_lockFlags": 0,
  2872. "_id": "a1spkGmKRMrbt/SysK3eHP"
  2873. },
  2874. {
  2875. "__type__": "cc.UITransform",
  2876. "_name": "",
  2877. "_objFlags": 0,
  2878. "__editorExtras__": {},
  2879. "node": {
  2880. "__id__": 61
  2881. },
  2882. "_enabled": true,
  2883. "__prefab": null,
  2884. "_contentSize": {
  2885. "__type__": "cc.Size",
  2886. "width": 90,
  2887. "height": 50.4
  2888. },
  2889. "_anchorPoint": {
  2890. "__type__": "cc.Vec2",
  2891. "x": 0.5,
  2892. "y": 0.5
  2893. },
  2894. "_id": "f04eA2tXZNFakN1jIp2Mt7"
  2895. },
  2896. {
  2897. "__type__": "cc.Label",
  2898. "_name": "",
  2899. "_objFlags": 0,
  2900. "__editorExtras__": {},
  2901. "node": {
  2902. "__id__": 61
  2903. },
  2904. "_enabled": true,
  2905. "__prefab": null,
  2906. "_customMaterial": null,
  2907. "_srcBlendFactor": 2,
  2908. "_dstBlendFactor": 4,
  2909. "_color": {
  2910. "__type__": "cc.Color",
  2911. "r": 255,
  2912. "g": 255,
  2913. "b": 255,
  2914. "a": 255
  2915. },
  2916. "_string": "等级:",
  2917. "_horizontalAlign": 1,
  2918. "_verticalAlign": 1,
  2919. "_actualFontSize": 30,
  2920. "_fontSize": 30,
  2921. "_fontFamily": "Arial",
  2922. "_lineHeight": 40,
  2923. "_overflow": 0,
  2924. "_enableWrapText": true,
  2925. "_font": null,
  2926. "_isSystemFontUsed": true,
  2927. "_spacingX": 0,
  2928. "_isItalic": false,
  2929. "_isBold": false,
  2930. "_isUnderline": false,
  2931. "_underlineHeight": 2,
  2932. "_cacheMode": 0,
  2933. "_enableOutline": false,
  2934. "_outlineColor": {
  2935. "__type__": "cc.Color",
  2936. "r": 255,
  2937. "g": 255,
  2938. "b": 255,
  2939. "a": 255
  2940. },
  2941. "_outlineWidth": 0.1,
  2942. "_enableShadow": false,
  2943. "_shadowColor": {
  2944. "__type__": "cc.Color",
  2945. "r": 0,
  2946. "g": 0,
  2947. "b": 0,
  2948. "a": 255
  2949. },
  2950. "_shadowOffset": {
  2951. "__type__": "cc.Vec2",
  2952. "x": 2,
  2953. "y": 2
  2954. },
  2955. "_shadowBlur": 2,
  2956. "_id": "e8iIKQ7SlCxYvms4vPzrbY"
  2957. },
  2958. {
  2959. "__type__": "cc.Widget",
  2960. "_name": "",
  2961. "_objFlags": 0,
  2962. "__editorExtras__": {},
  2963. "node": {
  2964. "__id__": 61
  2965. },
  2966. "_enabled": true,
  2967. "__prefab": null,
  2968. "_alignFlags": 9,
  2969. "_target": {
  2970. "__id__": 57
  2971. },
  2972. "_left": 0,
  2973. "_right": 0,
  2974. "_top": -50,
  2975. "_bottom": 0,
  2976. "_horizontalCenter": 0,
  2977. "_verticalCenter": 0,
  2978. "_isAbsLeft": true,
  2979. "_isAbsRight": true,
  2980. "_isAbsTop": true,
  2981. "_isAbsBottom": true,
  2982. "_isAbsHorizontalCenter": true,
  2983. "_isAbsVerticalCenter": true,
  2984. "_originalWidth": 0,
  2985. "_originalHeight": 0,
  2986. "_alignMode": 2,
  2987. "_lockFlags": 0,
  2988. "_id": "35BrbhCCtCFbNv/KFe8oUJ"
  2989. },
  2990. {
  2991. "__type__": "cc.UITransform",
  2992. "_name": "",
  2993. "_objFlags": 0,
  2994. "__editorExtras__": {},
  2995. "node": {
  2996. "__id__": 57
  2997. },
  2998. "_enabled": true,
  2999. "__prefab": null,
  3000. "_contentSize": {
  3001. "__type__": "cc.Size",
  3002. "width": 300,
  3003. "height": 15
  3004. },
  3005. "_anchorPoint": {
  3006. "__type__": "cc.Vec2",
  3007. "x": 0.5,
  3008. "y": 0.5
  3009. },
  3010. "_id": "22rKhfiHJAjrR4zAByDaTn"
  3011. },
  3012. {
  3013. "__type__": "cc.Sprite",
  3014. "_name": "",
  3015. "_objFlags": 0,
  3016. "__editorExtras__": {},
  3017. "node": {
  3018. "__id__": 57
  3019. },
  3020. "_enabled": true,
  3021. "__prefab": null,
  3022. "_customMaterial": null,
  3023. "_srcBlendFactor": 2,
  3024. "_dstBlendFactor": 4,
  3025. "_color": {
  3026. "__type__": "cc.Color",
  3027. "r": 62,
  3028. "g": 207,
  3029. "b": 14,
  3030. "a": 255
  3031. },
  3032. "_spriteFrame": {
  3033. "__uuid__": "9fd900dd-221b-4f89-8f2c-fba34243c835@f9941",
  3034. "__expectedType__": "cc.SpriteFrame"
  3035. },
  3036. "_type": 1,
  3037. "_fillType": 0,
  3038. "_sizeMode": 0,
  3039. "_fillCenter": {
  3040. "__type__": "cc.Vec2",
  3041. "x": 0,
  3042. "y": 0
  3043. },
  3044. "_fillStart": 0,
  3045. "_fillRange": 0,
  3046. "_isTrimmedMode": true,
  3047. "_useGrayscale": false,
  3048. "_atlas": null,
  3049. "_id": "a3ZH0mdl5Kpr0RzHmFRv00"
  3050. },
  3051. {
  3052. "__type__": "cc.ProgressBar",
  3053. "_name": "",
  3054. "_objFlags": 0,
  3055. "__editorExtras__": {},
  3056. "node": {
  3057. "__id__": 57
  3058. },
  3059. "_enabled": true,
  3060. "__prefab": null,
  3061. "_barSprite": {
  3062. "__id__": 60
  3063. },
  3064. "_mode": 0,
  3065. "_totalLength": 300,
  3066. "_progress": 0,
  3067. "_reverse": false,
  3068. "_id": "59Bip/gnFJZZFeMKxk0y99"
  3069. },
  3070. {
  3071. "__type__": "cc.Widget",
  3072. "_name": "",
  3073. "_objFlags": 0,
  3074. "__editorExtras__": {},
  3075. "node": {
  3076. "__id__": 57
  3077. },
  3078. "_enabled": true,
  3079. "__prefab": null,
  3080. "_alignFlags": 9,
  3081. "_target": {
  3082. "__id__": 51
  3083. },
  3084. "_left": 5,
  3085. "_right": 83.19300000000001,
  3086. "_top": -30,
  3087. "_bottom": 0,
  3088. "_horizontalCenter": 0,
  3089. "_verticalCenter": 0,
  3090. "_isAbsLeft": true,
  3091. "_isAbsRight": true,
  3092. "_isAbsTop": true,
  3093. "_isAbsBottom": true,
  3094. "_isAbsHorizontalCenter": true,
  3095. "_isAbsVerticalCenter": true,
  3096. "_originalWidth": 300,
  3097. "_originalHeight": 0,
  3098. "_alignMode": 2,
  3099. "_lockFlags": 0,
  3100. "_id": "fbDWOr7OJN7ocB/GNUq9vG"
  3101. },
  3102. {
  3103. "__type__": "cc.Node",
  3104. "_name": "Win",
  3105. "_objFlags": 0,
  3106. "__editorExtras__": {},
  3107. "_parent": {
  3108. "__id__": 51
  3109. },
  3110. "_children": [
  3111. {
  3112. "__id__": 78
  3113. }
  3114. ],
  3115. "_active": true,
  3116. "_components": [
  3117. {
  3118. "__id__": 82
  3119. },
  3120. {
  3121. "__id__": 83
  3122. },
  3123. {
  3124. "__id__": 84
  3125. }
  3126. ],
  3127. "_prefab": null,
  3128. "_lpos": {
  3129. "__type__": "cc.Vec3",
  3130. "x": -95,
  3131. "y": 35.624,
  3132. "z": 0
  3133. },
  3134. "_lrot": {
  3135. "__type__": "cc.Quat",
  3136. "x": 0,
  3137. "y": 0,
  3138. "z": 0,
  3139. "w": 1
  3140. },
  3141. "_lscale": {
  3142. "__type__": "cc.Vec3",
  3143. "x": 1,
  3144. "y": 1,
  3145. "z": 1
  3146. },
  3147. "_mobility": 0,
  3148. "_layer": 33554432,
  3149. "_euler": {
  3150. "__type__": "cc.Vec3",
  3151. "x": 0,
  3152. "y": 0,
  3153. "z": 0
  3154. },
  3155. "_id": "cd9aTfx/VFe5he/SZ2YquB"
  3156. },
  3157. {
  3158. "__type__": "cc.Node",
  3159. "_name": "_win",
  3160. "_objFlags": 0,
  3161. "__editorExtras__": {},
  3162. "_parent": {
  3163. "__id__": 77
  3164. },
  3165. "_children": [],
  3166. "_active": true,
  3167. "_components": [
  3168. {
  3169. "__id__": 79
  3170. },
  3171. {
  3172. "__id__": 80
  3173. },
  3174. {
  3175. "__id__": 81
  3176. }
  3177. ],
  3178. "_prefab": null,
  3179. "_lpos": {
  3180. "__type__": "cc.Vec3",
  3181. "x": 60,
  3182. "y": 0,
  3183. "z": 0
  3184. },
  3185. "_lrot": {
  3186. "__type__": "cc.Quat",
  3187. "x": 0,
  3188. "y": 0,
  3189. "z": 0,
  3190. "w": 1
  3191. },
  3192. "_lscale": {
  3193. "__type__": "cc.Vec3",
  3194. "x": 1,
  3195. "y": 1,
  3196. "z": 1
  3197. },
  3198. "_mobility": 0,
  3199. "_layer": 33554432,
  3200. "_euler": {
  3201. "__type__": "cc.Vec3",
  3202. "x": 0,
  3203. "y": 0,
  3204. "z": 0
  3205. },
  3206. "_id": "469APWXP5JCYArM5oSo4Jf"
  3207. },
  3208. {
  3209. "__type__": "cc.UITransform",
  3210. "_name": "",
  3211. "_objFlags": 0,
  3212. "__editorExtras__": {},
  3213. "node": {
  3214. "__id__": 78
  3215. },
  3216. "_enabled": true,
  3217. "__prefab": null,
  3218. "_contentSize": {
  3219. "__type__": "cc.Size",
  3220. "width": 22.24609375,
  3221. "height": 50.4
  3222. },
  3223. "_anchorPoint": {
  3224. "__type__": "cc.Vec2",
  3225. "x": 0,
  3226. "y": 0.5
  3227. },
  3228. "_id": "49CGdrBTVGIbOW2sV6hU8b"
  3229. },
  3230. {
  3231. "__type__": "cc.Widget",
  3232. "_name": "",
  3233. "_objFlags": 0,
  3234. "__editorExtras__": {},
  3235. "node": {
  3236. "__id__": 78
  3237. },
  3238. "_enabled": true,
  3239. "__prefab": null,
  3240. "_alignFlags": 13,
  3241. "_target": {
  3242. "__id__": 77
  3243. },
  3244. "_left": 120,
  3245. "_right": 45,
  3246. "_top": 0,
  3247. "_bottom": 0,
  3248. "_horizontalCenter": 0,
  3249. "_verticalCenter": 0,
  3250. "_isAbsLeft": true,
  3251. "_isAbsRight": true,
  3252. "_isAbsTop": true,
  3253. "_isAbsBottom": true,
  3254. "_isAbsHorizontalCenter": true,
  3255. "_isAbsVerticalCenter": true,
  3256. "_originalWidth": 30,
  3257. "_originalHeight": 50.4,
  3258. "_alignMode": 2,
  3259. "_lockFlags": 0,
  3260. "_id": "a1NtwOsmxGJK02ZbL/RPft"
  3261. },
  3262. {
  3263. "__type__": "cc.Label",
  3264. "_name": "",
  3265. "_objFlags": 0,
  3266. "__editorExtras__": {},
  3267. "node": {
  3268. "__id__": 78
  3269. },
  3270. "_enabled": true,
  3271. "__prefab": null,
  3272. "_customMaterial": null,
  3273. "_srcBlendFactor": 2,
  3274. "_dstBlendFactor": 4,
  3275. "_color": {
  3276. "__type__": "cc.Color",
  3277. "r": 255,
  3278. "g": 0,
  3279. "b": 174,
  3280. "a": 255
  3281. },
  3282. "_string": "0",
  3283. "_horizontalAlign": 1,
  3284. "_verticalAlign": 1,
  3285. "_actualFontSize": 40,
  3286. "_fontSize": 40,
  3287. "_fontFamily": "Arial",
  3288. "_lineHeight": 40,
  3289. "_overflow": 0,
  3290. "_enableWrapText": true,
  3291. "_font": null,
  3292. "_isSystemFontUsed": true,
  3293. "_spacingX": 0,
  3294. "_isItalic": false,
  3295. "_isBold": false,
  3296. "_isUnderline": false,
  3297. "_underlineHeight": 2,
  3298. "_cacheMode": 0,
  3299. "_enableOutline": false,
  3300. "_outlineColor": {
  3301. "__type__": "cc.Color",
  3302. "r": 0,
  3303. "g": 0,
  3304. "b": 0,
  3305. "a": 255
  3306. },
  3307. "_outlineWidth": 2,
  3308. "_enableShadow": false,
  3309. "_shadowColor": {
  3310. "__type__": "cc.Color",
  3311. "r": 0,
  3312. "g": 0,
  3313. "b": 0,
  3314. "a": 255
  3315. },
  3316. "_shadowOffset": {
  3317. "__type__": "cc.Vec2",
  3318. "x": 2,
  3319. "y": 2
  3320. },
  3321. "_shadowBlur": 2,
  3322. "_id": "ecxhjHAKlJWJbAFf8iKpf7"
  3323. },
  3324. {
  3325. "__type__": "cc.UITransform",
  3326. "_name": "",
  3327. "_objFlags": 0,
  3328. "__editorExtras__": {},
  3329. "node": {
  3330. "__id__": 77
  3331. },
  3332. "_enabled": true,
  3333. "__prefab": null,
  3334. "_contentSize": {
  3335. "__type__": "cc.Size",
  3336. "width": 120,
  3337. "height": 50.4
  3338. },
  3339. "_anchorPoint": {
  3340. "__type__": "cc.Vec2",
  3341. "x": 0.5,
  3342. "y": 0.5
  3343. },
  3344. "_id": "4d1q1RpjBKL7ICD1JLtj0Q"
  3345. },
  3346. {
  3347. "__type__": "cc.Label",
  3348. "_name": "",
  3349. "_objFlags": 0,
  3350. "__editorExtras__": {},
  3351. "node": {
  3352. "__id__": 77
  3353. },
  3354. "_enabled": true,
  3355. "__prefab": null,
  3356. "_customMaterial": null,
  3357. "_srcBlendFactor": 2,
  3358. "_dstBlendFactor": 4,
  3359. "_color": {
  3360. "__type__": "cc.Color",
  3361. "r": 70,
  3362. "g": 160,
  3363. "b": 243,
  3364. "a": 255
  3365. },
  3366. "_string": "获胜:",
  3367. "_horizontalAlign": 1,
  3368. "_verticalAlign": 1,
  3369. "_actualFontSize": 40,
  3370. "_fontSize": 40,
  3371. "_fontFamily": "Arial",
  3372. "_lineHeight": 40,
  3373. "_overflow": 0,
  3374. "_enableWrapText": true,
  3375. "_font": null,
  3376. "_isSystemFontUsed": true,
  3377. "_spacingX": 0,
  3378. "_isItalic": false,
  3379. "_isBold": false,
  3380. "_isUnderline": false,
  3381. "_underlineHeight": 2,
  3382. "_cacheMode": 0,
  3383. "_enableOutline": false,
  3384. "_outlineColor": {
  3385. "__type__": "cc.Color",
  3386. "r": 0,
  3387. "g": 0,
  3388. "b": 0,
  3389. "a": 255
  3390. },
  3391. "_outlineWidth": 2,
  3392. "_enableShadow": false,
  3393. "_shadowColor": {
  3394. "__type__": "cc.Color",
  3395. "r": 0,
  3396. "g": 0,
  3397. "b": 0,
  3398. "a": 255
  3399. },
  3400. "_shadowOffset": {
  3401. "__type__": "cc.Vec2",
  3402. "x": 2,
  3403. "y": 2
  3404. },
  3405. "_shadowBlur": 2,
  3406. "_id": "86sa459BpHWYD8GepmpDCb"
  3407. },
  3408. {
  3409. "__type__": "cc.Widget",
  3410. "_name": "",
  3411. "_objFlags": 0,
  3412. "__editorExtras__": {},
  3413. "node": {
  3414. "__id__": 77
  3415. },
  3416. "_enabled": true,
  3417. "__prefab": null,
  3418. "_alignFlags": 8,
  3419. "_target": null,
  3420. "_left": 45,
  3421. "_right": 0,
  3422. "_top": 0,
  3423. "_bottom": 0,
  3424. "_horizontalCenter": 0,
  3425. "_verticalCenter": 0,
  3426. "_isAbsLeft": true,
  3427. "_isAbsRight": true,
  3428. "_isAbsTop": true,
  3429. "_isAbsBottom": true,
  3430. "_isAbsHorizontalCenter": true,
  3431. "_isAbsVerticalCenter": true,
  3432. "_originalWidth": 0,
  3433. "_originalHeight": 0,
  3434. "_alignMode": 2,
  3435. "_lockFlags": 0,
  3436. "_id": "28+rXOkHpOn7wBsvESaCte"
  3437. },
  3438. {
  3439. "__type__": "cc.Node",
  3440. "_name": "Fail",
  3441. "_objFlags": 0,
  3442. "__editorExtras__": {},
  3443. "_parent": {
  3444. "__id__": 51
  3445. },
  3446. "_children": [
  3447. {
  3448. "__id__": 86
  3449. }
  3450. ],
  3451. "_active": true,
  3452. "_components": [
  3453. {
  3454. "__id__": 90
  3455. },
  3456. {
  3457. "__id__": 91
  3458. },
  3459. {
  3460. "__id__": 92
  3461. }
  3462. ],
  3463. "_prefab": null,
  3464. "_lpos": {
  3465. "__type__": "cc.Vec3",
  3466. "x": -95,
  3467. "y": -25.2,
  3468. "z": 0
  3469. },
  3470. "_lrot": {
  3471. "__type__": "cc.Quat",
  3472. "x": 0,
  3473. "y": 0,
  3474. "z": 0,
  3475. "w": 1
  3476. },
  3477. "_lscale": {
  3478. "__type__": "cc.Vec3",
  3479. "x": 1,
  3480. "y": 1,
  3481. "z": 1
  3482. },
  3483. "_mobility": 0,
  3484. "_layer": 33554432,
  3485. "_euler": {
  3486. "__type__": "cc.Vec3",
  3487. "x": 0,
  3488. "y": 0,
  3489. "z": 0
  3490. },
  3491. "_id": "0d37J7uexERLlldaRhX2tj"
  3492. },
  3493. {
  3494. "__type__": "cc.Node",
  3495. "_name": "_fail",
  3496. "_objFlags": 0,
  3497. "__editorExtras__": {},
  3498. "_parent": {
  3499. "__id__": 85
  3500. },
  3501. "_children": [],
  3502. "_active": true,
  3503. "_components": [
  3504. {
  3505. "__id__": 87
  3506. },
  3507. {
  3508. "__id__": 88
  3509. },
  3510. {
  3511. "__id__": 89
  3512. }
  3513. ],
  3514. "_prefab": null,
  3515. "_lpos": {
  3516. "__type__": "cc.Vec3",
  3517. "x": 60,
  3518. "y": 0,
  3519. "z": 0
  3520. },
  3521. "_lrot": {
  3522. "__type__": "cc.Quat",
  3523. "x": 0,
  3524. "y": 0,
  3525. "z": 0,
  3526. "w": 1
  3527. },
  3528. "_lscale": {
  3529. "__type__": "cc.Vec3",
  3530. "x": 1,
  3531. "y": 1,
  3532. "z": 1
  3533. },
  3534. "_mobility": 0,
  3535. "_layer": 33554432,
  3536. "_euler": {
  3537. "__type__": "cc.Vec3",
  3538. "x": 0,
  3539. "y": 0,
  3540. "z": 0
  3541. },
  3542. "_id": "6a+FKdv05I9rsw6RY/1Q+5"
  3543. },
  3544. {
  3545. "__type__": "cc.UITransform",
  3546. "_name": "",
  3547. "_objFlags": 0,
  3548. "__editorExtras__": {},
  3549. "node": {
  3550. "__id__": 86
  3551. },
  3552. "_enabled": true,
  3553. "__prefab": null,
  3554. "_contentSize": {
  3555. "__type__": "cc.Size",
  3556. "width": 22.24609375,
  3557. "height": 50.4
  3558. },
  3559. "_anchorPoint": {
  3560. "__type__": "cc.Vec2",
  3561. "x": 0,
  3562. "y": 0.5
  3563. },
  3564. "_id": "95mx1IyNNPw7AooCRSIT9m"
  3565. },
  3566. {
  3567. "__type__": "cc.Widget",
  3568. "_name": "",
  3569. "_objFlags": 0,
  3570. "__editorExtras__": {},
  3571. "node": {
  3572. "__id__": 86
  3573. },
  3574. "_enabled": true,
  3575. "__prefab": null,
  3576. "_alignFlags": 13,
  3577. "_target": {
  3578. "__id__": 85
  3579. },
  3580. "_left": 120,
  3581. "_right": 266.807,
  3582. "_top": 0,
  3583. "_bottom": 0,
  3584. "_horizontalCenter": 0,
  3585. "_verticalCenter": 0,
  3586. "_isAbsLeft": true,
  3587. "_isAbsRight": true,
  3588. "_isAbsTop": true,
  3589. "_isAbsBottom": true,
  3590. "_isAbsHorizontalCenter": true,
  3591. "_isAbsVerticalCenter": true,
  3592. "_originalWidth": 30,
  3593. "_originalHeight": 30,
  3594. "_alignMode": 2,
  3595. "_lockFlags": 0,
  3596. "_id": "cd3BfYGAJPUqRGiGzx+r6X"
  3597. },
  3598. {
  3599. "__type__": "cc.Label",
  3600. "_name": "",
  3601. "_objFlags": 0,
  3602. "__editorExtras__": {},
  3603. "node": {
  3604. "__id__": 86
  3605. },
  3606. "_enabled": true,
  3607. "__prefab": null,
  3608. "_customMaterial": null,
  3609. "_srcBlendFactor": 2,
  3610. "_dstBlendFactor": 4,
  3611. "_color": {
  3612. "__type__": "cc.Color",
  3613. "r": 255,
  3614. "g": 0,
  3615. "b": 174,
  3616. "a": 255
  3617. },
  3618. "_string": "0",
  3619. "_horizontalAlign": 1,
  3620. "_verticalAlign": 1,
  3621. "_actualFontSize": 40,
  3622. "_fontSize": 40,
  3623. "_fontFamily": "Arial",
  3624. "_lineHeight": 40,
  3625. "_overflow": 0,
  3626. "_enableWrapText": true,
  3627. "_font": null,
  3628. "_isSystemFontUsed": true,
  3629. "_spacingX": 0,
  3630. "_isItalic": false,
  3631. "_isBold": false,
  3632. "_isUnderline": false,
  3633. "_underlineHeight": 2,
  3634. "_cacheMode": 0,
  3635. "_enableOutline": false,
  3636. "_outlineColor": {
  3637. "__type__": "cc.Color",
  3638. "r": 0,
  3639. "g": 0,
  3640. "b": 0,
  3641. "a": 255
  3642. },
  3643. "_outlineWidth": 2,
  3644. "_enableShadow": false,
  3645. "_shadowColor": {
  3646. "__type__": "cc.Color",
  3647. "r": 0,
  3648. "g": 0,
  3649. "b": 0,
  3650. "a": 255
  3651. },
  3652. "_shadowOffset": {
  3653. "__type__": "cc.Vec2",
  3654. "x": 2,
  3655. "y": 2
  3656. },
  3657. "_shadowBlur": 2,
  3658. "_id": "deD7aLmetGwpMUfrJD/Wau"
  3659. },
  3660. {
  3661. "__type__": "cc.UITransform",
  3662. "_name": "",
  3663. "_objFlags": 0,
  3664. "__editorExtras__": {},
  3665. "node": {
  3666. "__id__": 85
  3667. },
  3668. "_enabled": true,
  3669. "__prefab": null,
  3670. "_contentSize": {
  3671. "__type__": "cc.Size",
  3672. "width": 120,
  3673. "height": 50.4
  3674. },
  3675. "_anchorPoint": {
  3676. "__type__": "cc.Vec2",
  3677. "x": 0.5,
  3678. "y": 0.5
  3679. },
  3680. "_id": "f3SOAOYxhKHZLvoIjwHYVV"
  3681. },
  3682. {
  3683. "__type__": "cc.Label",
  3684. "_name": "",
  3685. "_objFlags": 0,
  3686. "__editorExtras__": {},
  3687. "node": {
  3688. "__id__": 85
  3689. },
  3690. "_enabled": true,
  3691. "__prefab": null,
  3692. "_customMaterial": null,
  3693. "_srcBlendFactor": 2,
  3694. "_dstBlendFactor": 4,
  3695. "_color": {
  3696. "__type__": "cc.Color",
  3697. "r": 70,
  3698. "g": 160,
  3699. "b": 243,
  3700. "a": 255
  3701. },
  3702. "_string": "失败:",
  3703. "_horizontalAlign": 1,
  3704. "_verticalAlign": 1,
  3705. "_actualFontSize": 40,
  3706. "_fontSize": 40,
  3707. "_fontFamily": "Arial",
  3708. "_lineHeight": 40,
  3709. "_overflow": 0,
  3710. "_enableWrapText": true,
  3711. "_font": null,
  3712. "_isSystemFontUsed": true,
  3713. "_spacingX": 0,
  3714. "_isItalic": false,
  3715. "_isBold": false,
  3716. "_isUnderline": false,
  3717. "_underlineHeight": 2,
  3718. "_cacheMode": 0,
  3719. "_enableOutline": false,
  3720. "_outlineColor": {
  3721. "__type__": "cc.Color",
  3722. "r": 0,
  3723. "g": 0,
  3724. "b": 0,
  3725. "a": 255
  3726. },
  3727. "_outlineWidth": 2,
  3728. "_enableShadow": false,
  3729. "_shadowColor": {
  3730. "__type__": "cc.Color",
  3731. "r": 0,
  3732. "g": 0,
  3733. "b": 0,
  3734. "a": 255
  3735. },
  3736. "_shadowOffset": {
  3737. "__type__": "cc.Vec2",
  3738. "x": 2,
  3739. "y": 2
  3740. },
  3741. "_shadowBlur": 2,
  3742. "_id": "05+cSo+bhBbIwwJx8GrIvr"
  3743. },
  3744. {
  3745. "__type__": "cc.Widget",
  3746. "_name": "",
  3747. "_objFlags": 0,
  3748. "__editorExtras__": {},
  3749. "node": {
  3750. "__id__": 85
  3751. },
  3752. "_enabled": true,
  3753. "__prefab": null,
  3754. "_alignFlags": 9,
  3755. "_target": null,
  3756. "_left": 45,
  3757. "_right": 0,
  3758. "_top": 200,
  3759. "_bottom": 0,
  3760. "_horizontalCenter": 0,
  3761. "_verticalCenter": 0,
  3762. "_isAbsLeft": true,
  3763. "_isAbsRight": true,
  3764. "_isAbsTop": true,
  3765. "_isAbsBottom": true,
  3766. "_isAbsHorizontalCenter": true,
  3767. "_isAbsVerticalCenter": true,
  3768. "_originalWidth": 0,
  3769. "_originalHeight": 0,
  3770. "_alignMode": 2,
  3771. "_lockFlags": 0,
  3772. "_id": "23TPpA03NCDr2M1m1WQWwW"
  3773. },
  3774. {
  3775. "__type__": "cc.UITransform",
  3776. "_name": "",
  3777. "_objFlags": 0,
  3778. "__editorExtras__": {},
  3779. "node": {
  3780. "__id__": 51
  3781. },
  3782. "_enabled": true,
  3783. "__prefab": null,
  3784. "_contentSize": {
  3785. "__type__": "cc.Size",
  3786. "width": 400,
  3787. "height": 400
  3788. },
  3789. "_anchorPoint": {
  3790. "__type__": "cc.Vec2",
  3791. "x": 0.5,
  3792. "y": 0.5
  3793. },
  3794. "_id": "6eIjX5TR5ORLucWzllbhUa"
  3795. },
  3796. {
  3797. "__type__": "cc.Sprite",
  3798. "_name": "",
  3799. "_objFlags": 0,
  3800. "__editorExtras__": {},
  3801. "node": {
  3802. "__id__": 51
  3803. },
  3804. "_enabled": true,
  3805. "__prefab": null,
  3806. "_customMaterial": null,
  3807. "_srcBlendFactor": 2,
  3808. "_dstBlendFactor": 4,
  3809. "_color": {
  3810. "__type__": "cc.Color",
  3811. "r": 255,
  3812. "g": 255,
  3813. "b": 255,
  3814. "a": 255
  3815. },
  3816. "_spriteFrame": {
  3817. "__uuid__": "bb4aa6a1-96c4-46a7-ab7a-0c1265a52733@f9941",
  3818. "__expectedType__": "cc.SpriteFrame"
  3819. },
  3820. "_type": 0,
  3821. "_fillType": 0,
  3822. "_sizeMode": 0,
  3823. "_fillCenter": {
  3824. "__type__": "cc.Vec2",
  3825. "x": 0,
  3826. "y": 0
  3827. },
  3828. "_fillStart": 0,
  3829. "_fillRange": 0,
  3830. "_isTrimmedMode": true,
  3831. "_useGrayscale": false,
  3832. "_atlas": null,
  3833. "_id": "49ilGtQLdHL7zb5ddjGIJW"
  3834. },
  3835. {
  3836. "__type__": "cc.Widget",
  3837. "_name": "",
  3838. "_objFlags": 0,
  3839. "__editorExtras__": {},
  3840. "node": {
  3841. "__id__": 51
  3842. },
  3843. "_enabled": true,
  3844. "__prefab": null,
  3845. "_alignFlags": 36,
  3846. "_target": {
  3847. "__id__": 5
  3848. },
  3849. "_left": 664.697,
  3850. "_right": 200,
  3851. "_top": 160,
  3852. "_bottom": 50,
  3853. "_horizontalCenter": 0,
  3854. "_verticalCenter": 0,
  3855. "_isAbsLeft": true,
  3856. "_isAbsRight": true,
  3857. "_isAbsTop": true,
  3858. "_isAbsBottom": true,
  3859. "_isAbsHorizontalCenter": true,
  3860. "_isAbsVerticalCenter": true,
  3861. "_originalWidth": 0,
  3862. "_originalHeight": 400,
  3863. "_alignMode": 2,
  3864. "_lockFlags": 0,
  3865. "_id": "f48BIlp+dPirkXSMg0en9C"
  3866. },
  3867. {
  3868. "__type__": "e0cabX/iidPFJF5PWpyU+l3",
  3869. "_name": "",
  3870. "_objFlags": 0,
  3871. "__editorExtras__": {},
  3872. "node": {
  3873. "__id__": 51
  3874. },
  3875. "_enabled": true,
  3876. "__prefab": null,
  3877. "_id": "784G2YQ+5Ko7aeiRT7K69x"
  3878. },
  3879. {
  3880. "__type__": "cc.Node",
  3881. "_name": "SelectTroops",
  3882. "_objFlags": 0,
  3883. "__editorExtras__": {},
  3884. "_parent": {
  3885. "__id__": 5
  3886. },
  3887. "_children": [
  3888. {
  3889. "__id__": 98
  3890. },
  3891. {
  3892. "__id__": 115
  3893. },
  3894. {
  3895. "__id__": 150
  3896. }
  3897. ],
  3898. "_active": false,
  3899. "_components": [
  3900. {
  3901. "__id__": 288
  3902. },
  3903. {
  3904. "__id__": 289
  3905. },
  3906. {
  3907. "__id__": 290
  3908. },
  3909. {
  3910. "__id__": 291
  3911. }
  3912. ],
  3913. "_prefab": null,
  3914. "_lpos": {
  3915. "__type__": "cc.Vec3",
  3916. "x": 0,
  3917. "y": 0,
  3918. "z": 0
  3919. },
  3920. "_lrot": {
  3921. "__type__": "cc.Quat",
  3922. "x": 0,
  3923. "y": 0,
  3924. "z": 0,
  3925. "w": 1
  3926. },
  3927. "_lscale": {
  3928. "__type__": "cc.Vec3",
  3929. "x": 1,
  3930. "y": 1,
  3931. "z": 1
  3932. },
  3933. "_mobility": 0,
  3934. "_layer": 33554432,
  3935. "_euler": {
  3936. "__type__": "cc.Vec3",
  3937. "x": 0,
  3938. "y": 0,
  3939. "z": 0
  3940. },
  3941. "_id": "86TFgYjKtOOolSuaNyPzRV"
  3942. },
  3943. {
  3944. "__type__": "cc.Node",
  3945. "_name": "RoleList",
  3946. "_objFlags": 0,
  3947. "__editorExtras__": {},
  3948. "_parent": {
  3949. "__id__": 97
  3950. },
  3951. "_children": [
  3952. {
  3953. "__id__": 99
  3954. },
  3955. {
  3956. "__id__": 106
  3957. }
  3958. ],
  3959. "_active": true,
  3960. "_components": [
  3961. {
  3962. "__id__": 110
  3963. },
  3964. {
  3965. "__id__": 111
  3966. },
  3967. {
  3968. "__id__": 112
  3969. },
  3970. {
  3971. "__id__": 113
  3972. },
  3973. {
  3974. "__id__": 114
  3975. }
  3976. ],
  3977. "_prefab": null,
  3978. "_lpos": {
  3979. "__type__": "cc.Vec3",
  3980. "x": -240,
  3981. "y": 45,
  3982. "z": 0
  3983. },
  3984. "_lrot": {
  3985. "__type__": "cc.Quat",
  3986. "x": 0,
  3987. "y": 0,
  3988. "z": 0,
  3989. "w": 1
  3990. },
  3991. "_lscale": {
  3992. "__type__": "cc.Vec3",
  3993. "x": 1,
  3994. "y": 1,
  3995. "z": 1
  3996. },
  3997. "_mobility": 0,
  3998. "_layer": 33554432,
  3999. "_euler": {
  4000. "__type__": "cc.Vec3",
  4001. "x": 0,
  4002. "y": 0,
  4003. "z": 0
  4004. },
  4005. "_id": "7aG1ARN4xHUZmAUc00iXzE"
  4006. },
  4007. {
  4008. "__type__": "cc.Node",
  4009. "_name": "view",
  4010. "_objFlags": 0,
  4011. "__editorExtras__": {},
  4012. "_parent": {
  4013. "__id__": 98
  4014. },
  4015. "_children": [
  4016. {
  4017. "__id__": 100
  4018. }
  4019. ],
  4020. "_active": true,
  4021. "_components": [
  4022. {
  4023. "__id__": 103
  4024. },
  4025. {
  4026. "__id__": 104
  4027. },
  4028. {
  4029. "__id__": 105
  4030. }
  4031. ],
  4032. "_prefab": null,
  4033. "_lpos": {
  4034. "__type__": "cc.Vec3",
  4035. "x": 0,
  4036. "y": 0,
  4037. "z": 0
  4038. },
  4039. "_lrot": {
  4040. "__type__": "cc.Quat",
  4041. "x": 0,
  4042. "y": 0,
  4043. "z": 0,
  4044. "w": 1
  4045. },
  4046. "_lscale": {
  4047. "__type__": "cc.Vec3",
  4048. "x": 1,
  4049. "y": 1,
  4050. "z": 1
  4051. },
  4052. "_mobility": 0,
  4053. "_layer": 33554432,
  4054. "_euler": {
  4055. "__type__": "cc.Vec3",
  4056. "x": 0,
  4057. "y": 0,
  4058. "z": 0
  4059. },
  4060. "_id": "52mIGkUbhK36QWYynOIgOI"
  4061. },
  4062. {
  4063. "__type__": "cc.Node",
  4064. "_name": "content",
  4065. "_objFlags": 0,
  4066. "__editorExtras__": {},
  4067. "_parent": {
  4068. "__id__": 99
  4069. },
  4070. "_children": [],
  4071. "_active": true,
  4072. "_components": [
  4073. {
  4074. "__id__": 101
  4075. },
  4076. {
  4077. "__id__": 102
  4078. }
  4079. ],
  4080. "_prefab": null,
  4081. "_lpos": {
  4082. "__type__": "cc.Vec3",
  4083. "x": 0,
  4084. "y": 125,
  4085. "z": 0
  4086. },
  4087. "_lrot": {
  4088. "__type__": "cc.Quat",
  4089. "x": 0,
  4090. "y": 0,
  4091. "z": 0,
  4092. "w": 1
  4093. },
  4094. "_lscale": {
  4095. "__type__": "cc.Vec3",
  4096. "x": 1,
  4097. "y": 1,
  4098. "z": 1
  4099. },
  4100. "_mobility": 0,
  4101. "_layer": 33554432,
  4102. "_euler": {
  4103. "__type__": "cc.Vec3",
  4104. "x": 0,
  4105. "y": 0,
  4106. "z": 0
  4107. },
  4108. "_id": "0ezTfqcAdKd4GI1MVJjH9C"
  4109. },
  4110. {
  4111. "__type__": "cc.UITransform",
  4112. "_name": "",
  4113. "_objFlags": 0,
  4114. "__editorExtras__": {},
  4115. "node": {
  4116. "__id__": 100
  4117. },
  4118. "_enabled": true,
  4119. "__prefab": null,
  4120. "_contentSize": {
  4121. "__type__": "cc.Size",
  4122. "width": 600,
  4123. "height": 40
  4124. },
  4125. "_anchorPoint": {
  4126. "__type__": "cc.Vec2",
  4127. "x": 0.5,
  4128. "y": 1
  4129. },
  4130. "_id": "5aJx+SCRBDY54dH1BI1sfh"
  4131. },
  4132. {
  4133. "__type__": "cc.Layout",
  4134. "_name": "",
  4135. "_objFlags": 0,
  4136. "__editorExtras__": {},
  4137. "node": {
  4138. "__id__": 100
  4139. },
  4140. "_enabled": true,
  4141. "__prefab": null,
  4142. "_resizeMode": 1,
  4143. "_layoutType": 3,
  4144. "_cellSize": {
  4145. "__type__": "cc.Size",
  4146. "width": 40,
  4147. "height": 40
  4148. },
  4149. "_startAxis": 0,
  4150. "_paddingLeft": 20,
  4151. "_paddingRight": 20,
  4152. "_paddingTop": 20,
  4153. "_paddingBottom": 20,
  4154. "_spacingX": 20,
  4155. "_spacingY": 20,
  4156. "_verticalDirection": 1,
  4157. "_horizontalDirection": 0,
  4158. "_constraint": 2,
  4159. "_constraintNum": 4,
  4160. "_affectedByScale": false,
  4161. "_isAlign": true,
  4162. "_id": "faVChaPYlFOqWGr4AS3586"
  4163. },
  4164. {
  4165. "__type__": "cc.UITransform",
  4166. "_name": "",
  4167. "_objFlags": 0,
  4168. "__editorExtras__": {},
  4169. "node": {
  4170. "__id__": 99
  4171. },
  4172. "_enabled": true,
  4173. "__prefab": null,
  4174. "_contentSize": {
  4175. "__type__": "cc.Size",
  4176. "width": 600,
  4177. "height": 350
  4178. },
  4179. "_anchorPoint": {
  4180. "__type__": "cc.Vec2",
  4181. "x": 0.5,
  4182. "y": 0.5
  4183. },
  4184. "_id": "eedCZXAnZLn4KuouUOrW6X"
  4185. },
  4186. {
  4187. "__type__": "cc.Mask",
  4188. "_name": "",
  4189. "_objFlags": 0,
  4190. "__editorExtras__": {},
  4191. "node": {
  4192. "__id__": 99
  4193. },
  4194. "_enabled": true,
  4195. "__prefab": null,
  4196. "_type": 0,
  4197. "_inverted": false,
  4198. "_segments": 64,
  4199. "_alphaThreshold": 0.1,
  4200. "_id": "72ydh4419Ha74L7gyDwuQt"
  4201. },
  4202. {
  4203. "__type__": "cc.Graphics",
  4204. "_name": "",
  4205. "_objFlags": 0,
  4206. "__editorExtras__": {},
  4207. "node": {
  4208. "__id__": 99
  4209. },
  4210. "_enabled": true,
  4211. "__prefab": null,
  4212. "_customMaterial": null,
  4213. "_srcBlendFactor": 2,
  4214. "_dstBlendFactor": 4,
  4215. "_color": {
  4216. "__type__": "cc.Color",
  4217. "r": 255,
  4218. "g": 255,
  4219. "b": 255,
  4220. "a": 255
  4221. },
  4222. "_lineWidth": 1,
  4223. "_strokeColor": {
  4224. "__type__": "cc.Color",
  4225. "r": 0,
  4226. "g": 0,
  4227. "b": 0,
  4228. "a": 255
  4229. },
  4230. "_lineJoin": 2,
  4231. "_lineCap": 0,
  4232. "_fillColor": {
  4233. "__type__": "cc.Color",
  4234. "r": 255,
  4235. "g": 255,
  4236. "b": 255,
  4237. "a": 0
  4238. },
  4239. "_miterLimit": 10,
  4240. "_id": "95Y2J0xkBMU47FDr/FkeZJ"
  4241. },
  4242. {
  4243. "__type__": "cc.Node",
  4244. "_name": "TouchMgr",
  4245. "_objFlags": 0,
  4246. "__editorExtras__": {},
  4247. "_parent": {
  4248. "__id__": 98
  4249. },
  4250. "_children": [],
  4251. "_active": true,
  4252. "_components": [
  4253. {
  4254. "__id__": 107
  4255. },
  4256. {
  4257. "__id__": 108
  4258. },
  4259. {
  4260. "__id__": 109
  4261. }
  4262. ],
  4263. "_prefab": null,
  4264. "_lpos": {
  4265. "__type__": "cc.Vec3",
  4266. "x": 5.684341886080802e-14,
  4267. "y": 0,
  4268. "z": 0
  4269. },
  4270. "_lrot": {
  4271. "__type__": "cc.Quat",
  4272. "x": 0,
  4273. "y": 0,
  4274. "z": 0,
  4275. "w": 1
  4276. },
  4277. "_lscale": {
  4278. "__type__": "cc.Vec3",
  4279. "x": 1,
  4280. "y": 1,
  4281. "z": 1
  4282. },
  4283. "_mobility": 0,
  4284. "_layer": 33554432,
  4285. "_euler": {
  4286. "__type__": "cc.Vec3",
  4287. "x": 0,
  4288. "y": 0,
  4289. "z": 0
  4290. },
  4291. "_id": "8duKbnYslMx51IZeyEPHQ0"
  4292. },
  4293. {
  4294. "__type__": "cc.UITransform",
  4295. "_name": "",
  4296. "_objFlags": 0,
  4297. "__editorExtras__": {},
  4298. "node": {
  4299. "__id__": 106
  4300. },
  4301. "_enabled": true,
  4302. "__prefab": null,
  4303. "_contentSize": {
  4304. "__type__": "cc.Size",
  4305. "width": 600,
  4306. "height": 350
  4307. },
  4308. "_anchorPoint": {
  4309. "__type__": "cc.Vec2",
  4310. "x": 0.5,
  4311. "y": 0.5
  4312. },
  4313. "_id": "adDYgmtv1GVrpzm6z/qta0"
  4314. },
  4315. {
  4316. "__type__": "cc.Widget",
  4317. "_name": "",
  4318. "_objFlags": 0,
  4319. "__editorExtras__": {},
  4320. "node": {
  4321. "__id__": 106
  4322. },
  4323. "_enabled": true,
  4324. "__prefab": null,
  4325. "_alignFlags": 12,
  4326. "_target": null,
  4327. "_left": 3.019806626980426e-14,
  4328. "_right": 1180,
  4329. "_top": 620,
  4330. "_bottom": 0,
  4331. "_horizontalCenter": 0,
  4332. "_verticalCenter": 0,
  4333. "_isAbsLeft": true,
  4334. "_isAbsRight": true,
  4335. "_isAbsTop": true,
  4336. "_isAbsBottom": true,
  4337. "_isAbsHorizontalCenter": true,
  4338. "_isAbsVerticalCenter": true,
  4339. "_originalWidth": 100,
  4340. "_originalHeight": 100,
  4341. "_alignMode": 2,
  4342. "_lockFlags": 0,
  4343. "_id": "daC76n4vhHtbcr+MKr218O"
  4344. },
  4345. {
  4346. "__type__": "2c63cooW81Gtpti/cIy4AtH",
  4347. "_name": "",
  4348. "_objFlags": 0,
  4349. "__editorExtras__": {},
  4350. "node": {
  4351. "__id__": 106
  4352. },
  4353. "_enabled": true,
  4354. "__prefab": null,
  4355. "_id": "897ZnsvZlP1buFqHudd85B"
  4356. },
  4357. {
  4358. "__type__": "cc.UITransform",
  4359. "_name": "",
  4360. "_objFlags": 0,
  4361. "__editorExtras__": {},
  4362. "node": {
  4363. "__id__": 98
  4364. },
  4365. "_enabled": true,
  4366. "__prefab": null,
  4367. "_contentSize": {
  4368. "__type__": "cc.Size",
  4369. "width": 600,
  4370. "height": 350
  4371. },
  4372. "_anchorPoint": {
  4373. "__type__": "cc.Vec2",
  4374. "x": 0.5,
  4375. "y": 0.5
  4376. },
  4377. "_id": "95maUUwWxH+7UefdoWJhrD"
  4378. },
  4379. {
  4380. "__type__": "cc.Sprite",
  4381. "_name": "",
  4382. "_objFlags": 0,
  4383. "__editorExtras__": {},
  4384. "node": {
  4385. "__id__": 98
  4386. },
  4387. "_enabled": true,
  4388. "__prefab": null,
  4389. "_customMaterial": null,
  4390. "_srcBlendFactor": 2,
  4391. "_dstBlendFactor": 4,
  4392. "_color": {
  4393. "__type__": "cc.Color",
  4394. "r": 255,
  4395. "g": 255,
  4396. "b": 255,
  4397. "a": 255
  4398. },
  4399. "_spriteFrame": {
  4400. "__uuid__": "1ec19ffb-822e-46c7-814a-dc668a04afe9@f0787",
  4401. "__expectedType__": "cc.SpriteFrame"
  4402. },
  4403. "_type": 1,
  4404. "_fillType": 0,
  4405. "_sizeMode": 0,
  4406. "_fillCenter": {
  4407. "__type__": "cc.Vec2",
  4408. "x": 0,
  4409. "y": 0
  4410. },
  4411. "_fillStart": 0,
  4412. "_fillRange": 0,
  4413. "_isTrimmedMode": true,
  4414. "_useGrayscale": false,
  4415. "_atlas": null,
  4416. "_id": "eeQ5F/oEBNko+SXB3xeYPG"
  4417. },
  4418. {
  4419. "__type__": "cc.ScrollView",
  4420. "_name": "",
  4421. "_objFlags": 0,
  4422. "__editorExtras__": {},
  4423. "node": {
  4424. "__id__": 98
  4425. },
  4426. "_enabled": true,
  4427. "__prefab": null,
  4428. "bounceDuration": 0.23,
  4429. "brake": 0.75,
  4430. "elastic": true,
  4431. "inertia": true,
  4432. "horizontal": false,
  4433. "vertical": true,
  4434. "cancelInnerEvents": true,
  4435. "scrollEvents": [],
  4436. "_content": {
  4437. "__id__": 100
  4438. },
  4439. "_horizontalScrollBar": null,
  4440. "_verticalScrollBar": null,
  4441. "_id": "51BJL7/wVF4qe1Hrq3vOLB"
  4442. },
  4443. {
  4444. "__type__": "cc.Widget",
  4445. "_name": "",
  4446. "_objFlags": 0,
  4447. "__editorExtras__": {},
  4448. "node": {
  4449. "__id__": 98
  4450. },
  4451. "_enabled": true,
  4452. "__prefab": null,
  4453. "_alignFlags": 9,
  4454. "_target": null,
  4455. "_left": 100,
  4456. "_right": 0,
  4457. "_top": 140,
  4458. "_bottom": 0,
  4459. "_horizontalCenter": 0,
  4460. "_verticalCenter": 0,
  4461. "_isAbsLeft": true,
  4462. "_isAbsRight": true,
  4463. "_isAbsTop": true,
  4464. "_isAbsBottom": true,
  4465. "_isAbsHorizontalCenter": true,
  4466. "_isAbsVerticalCenter": true,
  4467. "_originalWidth": 0,
  4468. "_originalHeight": 0,
  4469. "_alignMode": 2,
  4470. "_lockFlags": 0,
  4471. "_id": "f0qwd00KxFnpZlvY6htRan"
  4472. },
  4473. {
  4474. "__type__": "f23c3WBxVtCIIISP/245dfp",
  4475. "_name": "",
  4476. "_objFlags": 0,
  4477. "__editorExtras__": {},
  4478. "node": {
  4479. "__id__": 98
  4480. },
  4481. "_enabled": true,
  4482. "__prefab": null,
  4483. "_id": "60uhV1iEZEdon6f1bPkM+X"
  4484. },
  4485. {
  4486. "__type__": "cc.Node",
  4487. "_name": "FunctionalZone",
  4488. "_objFlags": 0,
  4489. "__editorExtras__": {},
  4490. "_parent": {
  4491. "__id__": 97
  4492. },
  4493. "_children": [
  4494. {
  4495. "__id__": 116
  4496. },
  4497. {
  4498. "__id__": 125
  4499. },
  4500. {
  4501. "__id__": 134
  4502. },
  4503. {
  4504. "__id__": 143
  4505. }
  4506. ],
  4507. "_active": true,
  4508. "_components": [
  4509. {
  4510. "__id__": 148
  4511. },
  4512. {
  4513. "__id__": 149
  4514. }
  4515. ],
  4516. "_prefab": null,
  4517. "_lpos": {
  4518. "__type__": "cc.Vec3",
  4519. "x": 327.5,
  4520. "y": 45,
  4521. "z": 0
  4522. },
  4523. "_lrot": {
  4524. "__type__": "cc.Quat",
  4525. "x": 0,
  4526. "y": 0,
  4527. "z": 0,
  4528. "w": 1
  4529. },
  4530. "_lscale": {
  4531. "__type__": "cc.Vec3",
  4532. "x": 1,
  4533. "y": 1,
  4534. "z": 1
  4535. },
  4536. "_mobility": 0,
  4537. "_layer": 33554432,
  4538. "_euler": {
  4539. "__type__": "cc.Vec3",
  4540. "x": 0,
  4541. "y": 0,
  4542. "z": 0
  4543. },
  4544. "_id": "f6nAbmBstIXIqq2hR6duYu"
  4545. },
  4546. {
  4547. "__type__": "cc.Node",
  4548. "_name": "_btnMarket",
  4549. "_objFlags": 0,
  4550. "__editorExtras__": {},
  4551. "_parent": {
  4552. "__id__": 115
  4553. },
  4554. "_children": [
  4555. {
  4556. "__id__": 117
  4557. }
  4558. ],
  4559. "_active": true,
  4560. "_components": [
  4561. {
  4562. "__id__": 121
  4563. },
  4564. {
  4565. "__id__": 122
  4566. },
  4567. {
  4568. "__id__": 123
  4569. },
  4570. {
  4571. "__id__": 124
  4572. }
  4573. ],
  4574. "_prefab": null,
  4575. "_lpos": {
  4576. "__type__": "cc.Vec3",
  4577. "x": 0,
  4578. "y": 95,
  4579. "z": 0
  4580. },
  4581. "_lrot": {
  4582. "__type__": "cc.Quat",
  4583. "x": 0,
  4584. "y": 0,
  4585. "z": 0,
  4586. "w": 1
  4587. },
  4588. "_lscale": {
  4589. "__type__": "cc.Vec3",
  4590. "x": 1,
  4591. "y": 1,
  4592. "z": 1
  4593. },
  4594. "_mobility": 0,
  4595. "_layer": 33554432,
  4596. "_euler": {
  4597. "__type__": "cc.Vec3",
  4598. "x": 0,
  4599. "y": 0,
  4600. "z": 0
  4601. },
  4602. "_id": "b0qF6KoKhFy6mVAFFlpykP"
  4603. },
  4604. {
  4605. "__type__": "cc.Node",
  4606. "_name": "Label",
  4607. "_objFlags": 0,
  4608. "__editorExtras__": {},
  4609. "_parent": {
  4610. "__id__": 116
  4611. },
  4612. "_children": [],
  4613. "_active": true,
  4614. "_components": [
  4615. {
  4616. "__id__": 118
  4617. },
  4618. {
  4619. "__id__": 119
  4620. },
  4621. {
  4622. "__id__": 120
  4623. }
  4624. ],
  4625. "_prefab": null,
  4626. "_lpos": {
  4627. "__type__": "cc.Vec3",
  4628. "x": 0,
  4629. "y": 74.8,
  4630. "z": 0
  4631. },
  4632. "_lrot": {
  4633. "__type__": "cc.Quat",
  4634. "x": 0,
  4635. "y": 0,
  4636. "z": 0,
  4637. "w": 1
  4638. },
  4639. "_lscale": {
  4640. "__type__": "cc.Vec3",
  4641. "x": 1,
  4642. "y": 1,
  4643. "z": 1
  4644. },
  4645. "_mobility": 0,
  4646. "_layer": 33554432,
  4647. "_euler": {
  4648. "__type__": "cc.Vec3",
  4649. "x": 0,
  4650. "y": 0,
  4651. "z": 0
  4652. },
  4653. "_id": "64auNhS0lG1r1GllaiabZ3"
  4654. },
  4655. {
  4656. "__type__": "cc.UITransform",
  4657. "_name": "",
  4658. "_objFlags": 0,
  4659. "__editorExtras__": {},
  4660. "node": {
  4661. "__id__": 117
  4662. },
  4663. "_enabled": true,
  4664. "__prefab": null,
  4665. "_contentSize": {
  4666. "__type__": "cc.Size",
  4667. "width": 68.3349609375,
  4668. "height": 50.4
  4669. },
  4670. "_anchorPoint": {
  4671. "__type__": "cc.Vec2",
  4672. "x": 0.5,
  4673. "y": 0.5
  4674. },
  4675. "_id": "f0zVLF/g1DR5yH5wf9g/N5"
  4676. },
  4677. {
  4678. "__type__": "cc.Label",
  4679. "_name": "",
  4680. "_objFlags": 0,
  4681. "__editorExtras__": {},
  4682. "node": {
  4683. "__id__": 117
  4684. },
  4685. "_enabled": true,
  4686. "__prefab": null,
  4687. "_customMaterial": null,
  4688. "_srcBlendFactor": 2,
  4689. "_dstBlendFactor": 4,
  4690. "_color": {
  4691. "__type__": "cc.Color",
  4692. "r": 255,
  4693. "g": 0,
  4694. "b": 0,
  4695. "a": 255
  4696. },
  4697. "_string": "市 场",
  4698. "_horizontalAlign": 1,
  4699. "_verticalAlign": 1,
  4700. "_actualFontSize": 30,
  4701. "_fontSize": 30,
  4702. "_fontFamily": "Arial",
  4703. "_lineHeight": 40,
  4704. "_overflow": 0,
  4705. "_enableWrapText": true,
  4706. "_font": null,
  4707. "_isSystemFontUsed": true,
  4708. "_spacingX": 0,
  4709. "_isItalic": false,
  4710. "_isBold": true,
  4711. "_isUnderline": false,
  4712. "_underlineHeight": 2,
  4713. "_cacheMode": 0,
  4714. "_enableOutline": false,
  4715. "_outlineColor": {
  4716. "__type__": "cc.Color",
  4717. "r": 0,
  4718. "g": 0,
  4719. "b": 0,
  4720. "a": 255
  4721. },
  4722. "_outlineWidth": 2,
  4723. "_enableShadow": false,
  4724. "_shadowColor": {
  4725. "__type__": "cc.Color",
  4726. "r": 0,
  4727. "g": 0,
  4728. "b": 0,
  4729. "a": 255
  4730. },
  4731. "_shadowOffset": {
  4732. "__type__": "cc.Vec2",
  4733. "x": 2,
  4734. "y": 2
  4735. },
  4736. "_shadowBlur": 2,
  4737. "_id": "57WXumqCxKAp0JuzFBdVaH"
  4738. },
  4739. {
  4740. "__type__": "cc.Widget",
  4741. "_name": "",
  4742. "_objFlags": 0,
  4743. "__editorExtras__": {},
  4744. "node": {
  4745. "__id__": 117
  4746. },
  4747. "_enabled": true,
  4748. "__prefab": null,
  4749. "_alignFlags": 41,
  4750. "_target": null,
  4751. "_left": 15.83251953125,
  4752. "_right": 15.83251953125,
  4753. "_top": -50,
  4754. "_bottom": 0,
  4755. "_horizontalCenter": 0,
  4756. "_verticalCenter": 0,
  4757. "_isAbsLeft": true,
  4758. "_isAbsRight": true,
  4759. "_isAbsTop": true,
  4760. "_isAbsBottom": true,
  4761. "_isAbsHorizontalCenter": true,
  4762. "_isAbsVerticalCenter": true,
  4763. "_originalWidth": 80,
  4764. "_originalHeight": 0,
  4765. "_alignMode": 2,
  4766. "_lockFlags": 0,
  4767. "_id": "e84kGpNgpLarb1tZdz0q2W"
  4768. },
  4769. {
  4770. "__type__": "cc.UITransform",
  4771. "_name": "",
  4772. "_objFlags": 0,
  4773. "__editorExtras__": {},
  4774. "node": {
  4775. "__id__": 116
  4776. },
  4777. "_enabled": true,
  4778. "__prefab": null,
  4779. "_contentSize": {
  4780. "__type__": "cc.Size",
  4781. "width": 100,
  4782. "height": 100
  4783. },
  4784. "_anchorPoint": {
  4785. "__type__": "cc.Vec2",
  4786. "x": 0.5,
  4787. "y": 0.5
  4788. },
  4789. "_id": "9fqLcTb1RFT6NM+4KoT1FN"
  4790. },
  4791. {
  4792. "__type__": "cc.Sprite",
  4793. "_name": "",
  4794. "_objFlags": 0,
  4795. "__editorExtras__": {},
  4796. "node": {
  4797. "__id__": 116
  4798. },
  4799. "_enabled": true,
  4800. "__prefab": null,
  4801. "_customMaterial": null,
  4802. "_srcBlendFactor": 2,
  4803. "_dstBlendFactor": 4,
  4804. "_color": {
  4805. "__type__": "cc.Color",
  4806. "r": 255,
  4807. "g": 255,
  4808. "b": 255,
  4809. "a": 255
  4810. },
  4811. "_spriteFrame": {
  4812. "__uuid__": "1440ddfa-68c4-4328-bf37-600cd18f4812@f80f2",
  4813. "__expectedType__": "cc.SpriteFrame"
  4814. },
  4815. "_type": 1,
  4816. "_fillType": 0,
  4817. "_sizeMode": 0,
  4818. "_fillCenter": {
  4819. "__type__": "cc.Vec2",
  4820. "x": 0,
  4821. "y": 0
  4822. },
  4823. "_fillStart": 0,
  4824. "_fillRange": 0,
  4825. "_isTrimmedMode": true,
  4826. "_useGrayscale": false,
  4827. "_atlas": null,
  4828. "_id": "d5gVG97TRDT4koAezY+GqS"
  4829. },
  4830. {
  4831. "__type__": "cc.Button",
  4832. "_name": "",
  4833. "_objFlags": 0,
  4834. "__editorExtras__": {},
  4835. "node": {
  4836. "__id__": 116
  4837. },
  4838. "_enabled": true,
  4839. "__prefab": null,
  4840. "clickEvents": [],
  4841. "_interactable": true,
  4842. "_transition": 3,
  4843. "_normalColor": {
  4844. "__type__": "cc.Color",
  4845. "r": 214,
  4846. "g": 214,
  4847. "b": 214,
  4848. "a": 255
  4849. },
  4850. "_hoverColor": {
  4851. "__type__": "cc.Color",
  4852. "r": 211,
  4853. "g": 211,
  4854. "b": 211,
  4855. "a": 255
  4856. },
  4857. "_pressedColor": {
  4858. "__type__": "cc.Color",
  4859. "r": 255,
  4860. "g": 255,
  4861. "b": 255,
  4862. "a": 255
  4863. },
  4864. "_disabledColor": {
  4865. "__type__": "cc.Color",
  4866. "r": 124,
  4867. "g": 124,
  4868. "b": 124,
  4869. "a": 255
  4870. },
  4871. "_normalSprite": null,
  4872. "_hoverSprite": null,
  4873. "_pressedSprite": null,
  4874. "_disabledSprite": null,
  4875. "_duration": 0.1,
  4876. "_zoomScale": 1.2,
  4877. "_target": {
  4878. "__id__": 116
  4879. },
  4880. "_id": "07ez56HbNJjZ3WE7BFrNNX"
  4881. },
  4882. {
  4883. "__type__": "cc.Widget",
  4884. "_name": "",
  4885. "_objFlags": 0,
  4886. "__editorExtras__": {},
  4887. "node": {
  4888. "__id__": 116
  4889. },
  4890. "_enabled": true,
  4891. "__prefab": null,
  4892. "_alignFlags": 41,
  4893. "_target": null,
  4894. "_left": 162.5,
  4895. "_right": 162.5,
  4896. "_top": 30,
  4897. "_bottom": 245.894,
  4898. "_horizontalCenter": 0,
  4899. "_verticalCenter": 0,
  4900. "_isAbsLeft": true,
  4901. "_isAbsRight": true,
  4902. "_isAbsTop": true,
  4903. "_isAbsBottom": true,
  4904. "_isAbsHorizontalCenter": true,
  4905. "_isAbsVerticalCenter": true,
  4906. "_originalWidth": 100,
  4907. "_originalHeight": 40,
  4908. "_alignMode": 2,
  4909. "_lockFlags": 0,
  4910. "_id": "46n2ST7XtHs7vTleM08N2t"
  4911. },
  4912. {
  4913. "__type__": "cc.Node",
  4914. "_name": "_btnCompound",
  4915. "_objFlags": 0,
  4916. "__editorExtras__": {},
  4917. "_parent": {
  4918. "__id__": 115
  4919. },
  4920. "_children": [
  4921. {
  4922. "__id__": 126
  4923. }
  4924. ],
  4925. "_active": true,
  4926. "_components": [
  4927. {
  4928. "__id__": 130
  4929. },
  4930. {
  4931. "__id__": 131
  4932. },
  4933. {
  4934. "__id__": 132
  4935. },
  4936. {
  4937. "__id__": 133
  4938. }
  4939. ],
  4940. "_prefab": null,
  4941. "_lpos": {
  4942. "__type__": "cc.Vec3",
  4943. "x": -112.5,
  4944. "y": -79.352,
  4945. "z": 0
  4946. },
  4947. "_lrot": {
  4948. "__type__": "cc.Quat",
  4949. "x": 0,
  4950. "y": 0,
  4951. "z": 0,
  4952. "w": 1
  4953. },
  4954. "_lscale": {
  4955. "__type__": "cc.Vec3",
  4956. "x": 1,
  4957. "y": 1,
  4958. "z": 1
  4959. },
  4960. "_mobility": 0,
  4961. "_layer": 33554432,
  4962. "_euler": {
  4963. "__type__": "cc.Vec3",
  4964. "x": 0,
  4965. "y": 0,
  4966. "z": 0
  4967. },
  4968. "_id": "00YAy6MANOlKDTHiSmYSDg"
  4969. },
  4970. {
  4971. "__type__": "cc.Node",
  4972. "_name": "Label",
  4973. "_objFlags": 0,
  4974. "__editorExtras__": {},
  4975. "_parent": {
  4976. "__id__": 125
  4977. },
  4978. "_children": [],
  4979. "_active": true,
  4980. "_components": [
  4981. {
  4982. "__id__": 127
  4983. },
  4984. {
  4985. "__id__": 128
  4986. },
  4987. {
  4988. "__id__": 129
  4989. }
  4990. ],
  4991. "_prefab": null,
  4992. "_lpos": {
  4993. "__type__": "cc.Vec3",
  4994. "x": 0,
  4995. "y": -74.8,
  4996. "z": 0
  4997. },
  4998. "_lrot": {
  4999. "__type__": "cc.Quat",
  5000. "x": 0,
  5001. "y": 0,
  5002. "z": 0,
  5003. "w": 1
  5004. },
  5005. "_lscale": {
  5006. "__type__": "cc.Vec3",
  5007. "x": 1,
  5008. "y": 1,
  5009. "z": 1
  5010. },
  5011. "_mobility": 0,
  5012. "_layer": 33554432,
  5013. "_euler": {
  5014. "__type__": "cc.Vec3",
  5015. "x": 0,
  5016. "y": 0,
  5017. "z": 0
  5018. },
  5019. "_id": "2f3LVCYIRLMI365B0rcL+J"
  5020. },
  5021. {
  5022. "__type__": "cc.UITransform",
  5023. "_name": "",
  5024. "_objFlags": 0,
  5025. "__editorExtras__": {},
  5026. "node": {
  5027. "__id__": 126
  5028. },
  5029. "_enabled": true,
  5030. "__prefab": null,
  5031. "_contentSize": {
  5032. "__type__": "cc.Size",
  5033. "width": 68.3349609375,
  5034. "height": 50.4
  5035. },
  5036. "_anchorPoint": {
  5037. "__type__": "cc.Vec2",
  5038. "x": 0.5,
  5039. "y": 0.5
  5040. },
  5041. "_id": "ebA0hRsbpA+YYqHPkIsuAf"
  5042. },
  5043. {
  5044. "__type__": "cc.Label",
  5045. "_name": "",
  5046. "_objFlags": 0,
  5047. "__editorExtras__": {},
  5048. "node": {
  5049. "__id__": 126
  5050. },
  5051. "_enabled": true,
  5052. "__prefab": null,
  5053. "_customMaterial": null,
  5054. "_srcBlendFactor": 2,
  5055. "_dstBlendFactor": 4,
  5056. "_color": {
  5057. "__type__": "cc.Color",
  5058. "r": 255,
  5059. "g": 0,
  5060. "b": 0,
  5061. "a": 255
  5062. },
  5063. "_string": "合 成",
  5064. "_horizontalAlign": 1,
  5065. "_verticalAlign": 1,
  5066. "_actualFontSize": 30,
  5067. "_fontSize": 30,
  5068. "_fontFamily": "Arial",
  5069. "_lineHeight": 40,
  5070. "_overflow": 0,
  5071. "_enableWrapText": true,
  5072. "_font": null,
  5073. "_isSystemFontUsed": true,
  5074. "_spacingX": 0,
  5075. "_isItalic": false,
  5076. "_isBold": true,
  5077. "_isUnderline": false,
  5078. "_underlineHeight": 2,
  5079. "_cacheMode": 0,
  5080. "_enableOutline": false,
  5081. "_outlineColor": {
  5082. "__type__": "cc.Color",
  5083. "r": 0,
  5084. "g": 0,
  5085. "b": 0,
  5086. "a": 255
  5087. },
  5088. "_outlineWidth": 2,
  5089. "_enableShadow": false,
  5090. "_shadowColor": {
  5091. "__type__": "cc.Color",
  5092. "r": 0,
  5093. "g": 0,
  5094. "b": 0,
  5095. "a": 255
  5096. },
  5097. "_shadowOffset": {
  5098. "__type__": "cc.Vec2",
  5099. "x": 2,
  5100. "y": 2
  5101. },
  5102. "_shadowBlur": 2,
  5103. "_id": "daahoUqqBBMYlRob0OI9eM"
  5104. },
  5105. {
  5106. "__type__": "cc.Widget",
  5107. "_name": "",
  5108. "_objFlags": 0,
  5109. "__editorExtras__": {},
  5110. "node": {
  5111. "__id__": 126
  5112. },
  5113. "_enabled": true,
  5114. "__prefab": null,
  5115. "_alignFlags": 44,
  5116. "_target": null,
  5117. "_left": 15.83251953125,
  5118. "_right": 15.83251953125,
  5119. "_top": -50,
  5120. "_bottom": -50,
  5121. "_horizontalCenter": 0,
  5122. "_verticalCenter": 0,
  5123. "_isAbsLeft": true,
  5124. "_isAbsRight": true,
  5125. "_isAbsTop": true,
  5126. "_isAbsBottom": true,
  5127. "_isAbsHorizontalCenter": true,
  5128. "_isAbsVerticalCenter": true,
  5129. "_originalWidth": 80,
  5130. "_originalHeight": 0,
  5131. "_alignMode": 2,
  5132. "_lockFlags": 0,
  5133. "_id": "0aApY1b/lLHpRrUj8DE8nP"
  5134. },
  5135. {
  5136. "__type__": "cc.UITransform",
  5137. "_name": "",
  5138. "_objFlags": 0,
  5139. "__editorExtras__": {},
  5140. "node": {
  5141. "__id__": 125
  5142. },
  5143. "_enabled": true,
  5144. "__prefab": null,
  5145. "_contentSize": {
  5146. "__type__": "cc.Size",
  5147. "width": 100,
  5148. "height": 100
  5149. },
  5150. "_anchorPoint": {
  5151. "__type__": "cc.Vec2",
  5152. "x": 0.5,
  5153. "y": 0.5
  5154. },
  5155. "_id": "debHp+r4RLKIJV9HaL66lj"
  5156. },
  5157. {
  5158. "__type__": "cc.Sprite",
  5159. "_name": "",
  5160. "_objFlags": 0,
  5161. "__editorExtras__": {},
  5162. "node": {
  5163. "__id__": 125
  5164. },
  5165. "_enabled": true,
  5166. "__prefab": null,
  5167. "_customMaterial": null,
  5168. "_srcBlendFactor": 2,
  5169. "_dstBlendFactor": 4,
  5170. "_color": {
  5171. "__type__": "cc.Color",
  5172. "r": 255,
  5173. "g": 255,
  5174. "b": 255,
  5175. "a": 255
  5176. },
  5177. "_spriteFrame": {
  5178. "__uuid__": "1440ddfa-68c4-4328-bf37-600cd18f4812@2a05f",
  5179. "__expectedType__": "cc.SpriteFrame"
  5180. },
  5181. "_type": 1,
  5182. "_fillType": 0,
  5183. "_sizeMode": 0,
  5184. "_fillCenter": {
  5185. "__type__": "cc.Vec2",
  5186. "x": 0,
  5187. "y": 0
  5188. },
  5189. "_fillStart": 0,
  5190. "_fillRange": 0,
  5191. "_isTrimmedMode": true,
  5192. "_useGrayscale": false,
  5193. "_atlas": null,
  5194. "_id": "aa4u+6Dr1J2oYBS89NsdXE"
  5195. },
  5196. {
  5197. "__type__": "cc.Button",
  5198. "_name": "",
  5199. "_objFlags": 0,
  5200. "__editorExtras__": {},
  5201. "node": {
  5202. "__id__": 125
  5203. },
  5204. "_enabled": true,
  5205. "__prefab": null,
  5206. "clickEvents": [],
  5207. "_interactable": true,
  5208. "_transition": 3,
  5209. "_normalColor": {
  5210. "__type__": "cc.Color",
  5211. "r": 214,
  5212. "g": 214,
  5213. "b": 214,
  5214. "a": 255
  5215. },
  5216. "_hoverColor": {
  5217. "__type__": "cc.Color",
  5218. "r": 211,
  5219. "g": 211,
  5220. "b": 211,
  5221. "a": 255
  5222. },
  5223. "_pressedColor": {
  5224. "__type__": "cc.Color",
  5225. "r": 255,
  5226. "g": 255,
  5227. "b": 255,
  5228. "a": 255
  5229. },
  5230. "_disabledColor": {
  5231. "__type__": "cc.Color",
  5232. "r": 124,
  5233. "g": 124,
  5234. "b": 124,
  5235. "a": 255
  5236. },
  5237. "_normalSprite": null,
  5238. "_hoverSprite": null,
  5239. "_pressedSprite": null,
  5240. "_disabledSprite": null,
  5241. "_duration": 0.1,
  5242. "_zoomScale": 1.2,
  5243. "_target": null,
  5244. "_id": "e0MBJoVSZFzouMDmDiSyne"
  5245. },
  5246. {
  5247. "__type__": "cc.Widget",
  5248. "_name": "",
  5249. "_objFlags": 0,
  5250. "__editorExtras__": {},
  5251. "node": {
  5252. "__id__": 125
  5253. },
  5254. "_enabled": true,
  5255. "__prefab": null,
  5256. "_alignFlags": 13,
  5257. "_target": null,
  5258. "_left": 50,
  5259. "_right": 0,
  5260. "_top": 204.352,
  5261. "_bottom": 45.647999999999996,
  5262. "_horizontalCenter": 0,
  5263. "_verticalCenter": 0,
  5264. "_isAbsLeft": true,
  5265. "_isAbsRight": true,
  5266. "_isAbsTop": true,
  5267. "_isAbsBottom": true,
  5268. "_isAbsHorizontalCenter": true,
  5269. "_isAbsVerticalCenter": true,
  5270. "_originalWidth": 0,
  5271. "_originalHeight": 40,
  5272. "_alignMode": 2,
  5273. "_lockFlags": 0,
  5274. "_id": "86pLZP8lBNQ6iWvjvS5LQw"
  5275. },
  5276. {
  5277. "__type__": "cc.Node",
  5278. "_name": "_btnUpGrade",
  5279. "_objFlags": 0,
  5280. "__editorExtras__": {},
  5281. "_parent": {
  5282. "__id__": 115
  5283. },
  5284. "_children": [
  5285. {
  5286. "__id__": 135
  5287. }
  5288. ],
  5289. "_active": true,
  5290. "_components": [
  5291. {
  5292. "__id__": 139
  5293. },
  5294. {
  5295. "__id__": 140
  5296. },
  5297. {
  5298. "__id__": 141
  5299. },
  5300. {
  5301. "__id__": 142
  5302. }
  5303. ],
  5304. "_prefab": null,
  5305. "_lpos": {
  5306. "__type__": "cc.Vec3",
  5307. "x": 112.5,
  5308. "y": -81.51600000000002,
  5309. "z": 0
  5310. },
  5311. "_lrot": {
  5312. "__type__": "cc.Quat",
  5313. "x": 0,
  5314. "y": 0,
  5315. "z": 0,
  5316. "w": 1
  5317. },
  5318. "_lscale": {
  5319. "__type__": "cc.Vec3",
  5320. "x": 1,
  5321. "y": 1,
  5322. "z": 1
  5323. },
  5324. "_mobility": 0,
  5325. "_layer": 33554432,
  5326. "_euler": {
  5327. "__type__": "cc.Vec3",
  5328. "x": 0,
  5329. "y": 0,
  5330. "z": 0
  5331. },
  5332. "_id": "cfO7iDnEVHUq0MWKCnZtSG"
  5333. },
  5334. {
  5335. "__type__": "cc.Node",
  5336. "_name": "Label",
  5337. "_objFlags": 0,
  5338. "__editorExtras__": {},
  5339. "_parent": {
  5340. "__id__": 134
  5341. },
  5342. "_children": [],
  5343. "_active": true,
  5344. "_components": [
  5345. {
  5346. "__id__": 136
  5347. },
  5348. {
  5349. "__id__": 137
  5350. },
  5351. {
  5352. "__id__": 138
  5353. }
  5354. ],
  5355. "_prefab": null,
  5356. "_lpos": {
  5357. "__type__": "cc.Vec3",
  5358. "x": 0,
  5359. "y": -74.8,
  5360. "z": 0
  5361. },
  5362. "_lrot": {
  5363. "__type__": "cc.Quat",
  5364. "x": 0,
  5365. "y": 0,
  5366. "z": 0,
  5367. "w": 1
  5368. },
  5369. "_lscale": {
  5370. "__type__": "cc.Vec3",
  5371. "x": 1,
  5372. "y": 1,
  5373. "z": 1
  5374. },
  5375. "_mobility": 0,
  5376. "_layer": 33554432,
  5377. "_euler": {
  5378. "__type__": "cc.Vec3",
  5379. "x": 0,
  5380. "y": 0,
  5381. "z": 0
  5382. },
  5383. "_id": "e5M2HdvspC9qv3rmR8YXoG"
  5384. },
  5385. {
  5386. "__type__": "cc.UITransform",
  5387. "_name": "",
  5388. "_objFlags": 0,
  5389. "__editorExtras__": {},
  5390. "node": {
  5391. "__id__": 135
  5392. },
  5393. "_enabled": true,
  5394. "__prefab": null,
  5395. "_contentSize": {
  5396. "__type__": "cc.Size",
  5397. "width": 68.3349609375,
  5398. "height": 50.4
  5399. },
  5400. "_anchorPoint": {
  5401. "__type__": "cc.Vec2",
  5402. "x": 0.5,
  5403. "y": 0.5
  5404. },
  5405. "_id": "b7jPT7vu1GTK5pXUFf75ID"
  5406. },
  5407. {
  5408. "__type__": "cc.Label",
  5409. "_name": "",
  5410. "_objFlags": 0,
  5411. "__editorExtras__": {},
  5412. "node": {
  5413. "__id__": 135
  5414. },
  5415. "_enabled": true,
  5416. "__prefab": null,
  5417. "_customMaterial": null,
  5418. "_srcBlendFactor": 2,
  5419. "_dstBlendFactor": 4,
  5420. "_color": {
  5421. "__type__": "cc.Color",
  5422. "r": 255,
  5423. "g": 0,
  5424. "b": 0,
  5425. "a": 255
  5426. },
  5427. "_string": "升 级",
  5428. "_horizontalAlign": 1,
  5429. "_verticalAlign": 1,
  5430. "_actualFontSize": 30,
  5431. "_fontSize": 30,
  5432. "_fontFamily": "Arial",
  5433. "_lineHeight": 40,
  5434. "_overflow": 0,
  5435. "_enableWrapText": true,
  5436. "_font": null,
  5437. "_isSystemFontUsed": true,
  5438. "_spacingX": 0,
  5439. "_isItalic": false,
  5440. "_isBold": true,
  5441. "_isUnderline": false,
  5442. "_underlineHeight": 2,
  5443. "_cacheMode": 0,
  5444. "_enableOutline": false,
  5445. "_outlineColor": {
  5446. "__type__": "cc.Color",
  5447. "r": 0,
  5448. "g": 0,
  5449. "b": 0,
  5450. "a": 255
  5451. },
  5452. "_outlineWidth": 2,
  5453. "_enableShadow": false,
  5454. "_shadowColor": {
  5455. "__type__": "cc.Color",
  5456. "r": 0,
  5457. "g": 0,
  5458. "b": 0,
  5459. "a": 255
  5460. },
  5461. "_shadowOffset": {
  5462. "__type__": "cc.Vec2",
  5463. "x": 2,
  5464. "y": 2
  5465. },
  5466. "_shadowBlur": 2,
  5467. "_id": "653CrkYT1E16ie2cpZgEPa"
  5468. },
  5469. {
  5470. "__type__": "cc.Widget",
  5471. "_name": "",
  5472. "_objFlags": 0,
  5473. "__editorExtras__": {},
  5474. "node": {
  5475. "__id__": 135
  5476. },
  5477. "_enabled": true,
  5478. "__prefab": null,
  5479. "_alignFlags": 44,
  5480. "_target": null,
  5481. "_left": 15.83251953125,
  5482. "_right": 15.83251953125,
  5483. "_top": -50,
  5484. "_bottom": -50,
  5485. "_horizontalCenter": 0,
  5486. "_verticalCenter": 0,
  5487. "_isAbsLeft": true,
  5488. "_isAbsRight": true,
  5489. "_isAbsTop": true,
  5490. "_isAbsBottom": true,
  5491. "_isAbsHorizontalCenter": true,
  5492. "_isAbsVerticalCenter": true,
  5493. "_originalWidth": 80,
  5494. "_originalHeight": 0,
  5495. "_alignMode": 2,
  5496. "_lockFlags": 0,
  5497. "_id": "a15sZgp6JN2Ypsf+tT+TFg"
  5498. },
  5499. {
  5500. "__type__": "cc.UITransform",
  5501. "_name": "",
  5502. "_objFlags": 0,
  5503. "__editorExtras__": {},
  5504. "node": {
  5505. "__id__": 134
  5506. },
  5507. "_enabled": true,
  5508. "__prefab": null,
  5509. "_contentSize": {
  5510. "__type__": "cc.Size",
  5511. "width": 100,
  5512. "height": 100
  5513. },
  5514. "_anchorPoint": {
  5515. "__type__": "cc.Vec2",
  5516. "x": 0.5,
  5517. "y": 0.5
  5518. },
  5519. "_id": "3fxLzRT0JOCrgPscEKLJie"
  5520. },
  5521. {
  5522. "__type__": "cc.Sprite",
  5523. "_name": "",
  5524. "_objFlags": 0,
  5525. "__editorExtras__": {},
  5526. "node": {
  5527. "__id__": 134
  5528. },
  5529. "_enabled": true,
  5530. "__prefab": null,
  5531. "_customMaterial": null,
  5532. "_srcBlendFactor": 2,
  5533. "_dstBlendFactor": 4,
  5534. "_color": {
  5535. "__type__": "cc.Color",
  5536. "r": 255,
  5537. "g": 255,
  5538. "b": 255,
  5539. "a": 255
  5540. },
  5541. "_spriteFrame": {
  5542. "__uuid__": "1440ddfa-68c4-4328-bf37-600cd18f4812@f194f",
  5543. "__expectedType__": "cc.SpriteFrame"
  5544. },
  5545. "_type": 1,
  5546. "_fillType": 0,
  5547. "_sizeMode": 0,
  5548. "_fillCenter": {
  5549. "__type__": "cc.Vec2",
  5550. "x": 0,
  5551. "y": 0
  5552. },
  5553. "_fillStart": 0,
  5554. "_fillRange": 0,
  5555. "_isTrimmedMode": true,
  5556. "_useGrayscale": false,
  5557. "_atlas": null,
  5558. "_id": "20SrRrIBZFw5UGYuZ1S224"
  5559. },
  5560. {
  5561. "__type__": "cc.Button",
  5562. "_name": "",
  5563. "_objFlags": 0,
  5564. "__editorExtras__": {},
  5565. "node": {
  5566. "__id__": 134
  5567. },
  5568. "_enabled": true,
  5569. "__prefab": null,
  5570. "clickEvents": [],
  5571. "_interactable": true,
  5572. "_transition": 3,
  5573. "_normalColor": {
  5574. "__type__": "cc.Color",
  5575. "r": 214,
  5576. "g": 214,
  5577. "b": 214,
  5578. "a": 255
  5579. },
  5580. "_hoverColor": {
  5581. "__type__": "cc.Color",
  5582. "r": 211,
  5583. "g": 211,
  5584. "b": 211,
  5585. "a": 255
  5586. },
  5587. "_pressedColor": {
  5588. "__type__": "cc.Color",
  5589. "r": 255,
  5590. "g": 255,
  5591. "b": 255,
  5592. "a": 255
  5593. },
  5594. "_disabledColor": {
  5595. "__type__": "cc.Color",
  5596. "r": 124,
  5597. "g": 124,
  5598. "b": 124,
  5599. "a": 255
  5600. },
  5601. "_normalSprite": null,
  5602. "_hoverSprite": null,
  5603. "_pressedSprite": null,
  5604. "_disabledSprite": null,
  5605. "_duration": 0.1,
  5606. "_zoomScale": 1.2,
  5607. "_target": {
  5608. "__id__": 134
  5609. },
  5610. "_id": "e5uYyZ0JBFNpE5SSgWn4g8"
  5611. },
  5612. {
  5613. "__type__": "cc.Widget",
  5614. "_name": "",
  5615. "_objFlags": 0,
  5616. "__editorExtras__": {},
  5617. "node": {
  5618. "__id__": 134
  5619. },
  5620. "_enabled": true,
  5621. "__prefab": null,
  5622. "_alignFlags": 37,
  5623. "_target": null,
  5624. "_left": 0,
  5625. "_right": 50,
  5626. "_top": 206.51600000000002,
  5627. "_bottom": 43.48399999999998,
  5628. "_horizontalCenter": 0,
  5629. "_verticalCenter": 0,
  5630. "_isAbsLeft": true,
  5631. "_isAbsRight": true,
  5632. "_isAbsTop": true,
  5633. "_isAbsBottom": true,
  5634. "_isAbsHorizontalCenter": true,
  5635. "_isAbsVerticalCenter": true,
  5636. "_originalWidth": 0,
  5637. "_originalHeight": 40,
  5638. "_alignMode": 2,
  5639. "_lockFlags": 0,
  5640. "_id": "d2IAOrSMVNzqlKPN2rvCum"
  5641. },
  5642. {
  5643. "__type__": "cc.Node",
  5644. "_name": "FreeGold",
  5645. "_objFlags": 0,
  5646. "__editorExtras__": {},
  5647. "_parent": {
  5648. "__id__": 115
  5649. },
  5650. "_children": [],
  5651. "_active": true,
  5652. "_components": [
  5653. {
  5654. "__id__": 144
  5655. },
  5656. {
  5657. "__id__": 145
  5658. },
  5659. {
  5660. "__id__": 146
  5661. },
  5662. {
  5663. "__id__": 147
  5664. }
  5665. ],
  5666. "_prefab": null,
  5667. "_lpos": {
  5668. "__type__": "cc.Vec3",
  5669. "x": -132.5,
  5670. "y": 95,
  5671. "z": 0
  5672. },
  5673. "_lrot": {
  5674. "__type__": "cc.Quat",
  5675. "x": 0,
  5676. "y": 0,
  5677. "z": 0,
  5678. "w": 1
  5679. },
  5680. "_lscale": {
  5681. "__type__": "cc.Vec3",
  5682. "x": 1,
  5683. "y": 1,
  5684. "z": 1
  5685. },
  5686. "_mobility": 0,
  5687. "_layer": 33554432,
  5688. "_euler": {
  5689. "__type__": "cc.Vec3",
  5690. "x": 0,
  5691. "y": 0,
  5692. "z": 0
  5693. },
  5694. "_id": "838+1PWSJNboJCjb8gl9ff"
  5695. },
  5696. {
  5697. "__type__": "cc.UITransform",
  5698. "_name": "",
  5699. "_objFlags": 0,
  5700. "__editorExtras__": {},
  5701. "node": {
  5702. "__id__": 143
  5703. },
  5704. "_enabled": true,
  5705. "__prefab": null,
  5706. "_contentSize": {
  5707. "__type__": "cc.Size",
  5708. "width": 90,
  5709. "height": 90
  5710. },
  5711. "_anchorPoint": {
  5712. "__type__": "cc.Vec2",
  5713. "x": 0.5,
  5714. "y": 0.5
  5715. },
  5716. "_id": "fd8xMCUd5NHYRbZDSeRKt3"
  5717. },
  5718. {
  5719. "__type__": "cc.Sprite",
  5720. "_name": "",
  5721. "_objFlags": 0,
  5722. "__editorExtras__": {},
  5723. "node": {
  5724. "__id__": 143
  5725. },
  5726. "_enabled": true,
  5727. "__prefab": null,
  5728. "_customMaterial": null,
  5729. "_srcBlendFactor": 2,
  5730. "_dstBlendFactor": 4,
  5731. "_color": {
  5732. "__type__": "cc.Color",
  5733. "r": 255,
  5734. "g": 255,
  5735. "b": 255,
  5736. "a": 255
  5737. },
  5738. "_spriteFrame": {
  5739. "__uuid__": "1440ddfa-68c4-4328-bf37-600cd18f4812@20d46",
  5740. "__expectedType__": "cc.SpriteFrame"
  5741. },
  5742. "_type": 1,
  5743. "_fillType": 0,
  5744. "_sizeMode": 0,
  5745. "_fillCenter": {
  5746. "__type__": "cc.Vec2",
  5747. "x": 0,
  5748. "y": 0
  5749. },
  5750. "_fillStart": 0,
  5751. "_fillRange": 0,
  5752. "_isTrimmedMode": true,
  5753. "_useGrayscale": false,
  5754. "_atlas": null,
  5755. "_id": "72DHmQlW1GUIjOFqD4f3JD"
  5756. },
  5757. {
  5758. "__type__": "cc.Button",
  5759. "_name": "",
  5760. "_objFlags": 0,
  5761. "__editorExtras__": {},
  5762. "node": {
  5763. "__id__": 143
  5764. },
  5765. "_enabled": true,
  5766. "__prefab": null,
  5767. "clickEvents": [],
  5768. "_interactable": true,
  5769. "_transition": 3,
  5770. "_normalColor": {
  5771. "__type__": "cc.Color",
  5772. "r": 214,
  5773. "g": 214,
  5774. "b": 214,
  5775. "a": 255
  5776. },
  5777. "_hoverColor": {
  5778. "__type__": "cc.Color",
  5779. "r": 211,
  5780. "g": 211,
  5781. "b": 211,
  5782. "a": 255
  5783. },
  5784. "_pressedColor": {
  5785. "__type__": "cc.Color",
  5786. "r": 255,
  5787. "g": 255,
  5788. "b": 255,
  5789. "a": 255
  5790. },
  5791. "_disabledColor": {
  5792. "__type__": "cc.Color",
  5793. "r": 124,
  5794. "g": 124,
  5795. "b": 124,
  5796. "a": 255
  5797. },
  5798. "_normalSprite": null,
  5799. "_hoverSprite": null,
  5800. "_pressedSprite": null,
  5801. "_disabledSprite": null,
  5802. "_duration": 0.1,
  5803. "_zoomScale": 1.2,
  5804. "_target": {
  5805. "__id__": 143
  5806. },
  5807. "_id": "27J/cl5V5BcZkZhHB3sXmB"
  5808. },
  5809. {
  5810. "__type__": "cc.Widget",
  5811. "_name": "",
  5812. "_objFlags": 0,
  5813. "__editorExtras__": {},
  5814. "node": {
  5815. "__id__": 143
  5816. },
  5817. "_enabled": true,
  5818. "__prefab": null,
  5819. "_alignFlags": 9,
  5820. "_target": null,
  5821. "_left": 35,
  5822. "_right": 0,
  5823. "_top": 35,
  5824. "_bottom": 0,
  5825. "_horizontalCenter": 0,
  5826. "_verticalCenter": 0,
  5827. "_isAbsLeft": true,
  5828. "_isAbsRight": true,
  5829. "_isAbsTop": true,
  5830. "_isAbsBottom": true,
  5831. "_isAbsHorizontalCenter": true,
  5832. "_isAbsVerticalCenter": true,
  5833. "_originalWidth": 0,
  5834. "_originalHeight": 0,
  5835. "_alignMode": 2,
  5836. "_lockFlags": 0,
  5837. "_id": "0eMrghtEtGlq8SbrxjxsGS"
  5838. },
  5839. {
  5840. "__type__": "cc.UITransform",
  5841. "_name": "",
  5842. "_objFlags": 0,
  5843. "__editorExtras__": {},
  5844. "node": {
  5845. "__id__": 115
  5846. },
  5847. "_enabled": true,
  5848. "__prefab": null,
  5849. "_contentSize": {
  5850. "__type__": "cc.Size",
  5851. "width": 425,
  5852. "height": 350
  5853. },
  5854. "_anchorPoint": {
  5855. "__type__": "cc.Vec2",
  5856. "x": 0.5,
  5857. "y": 0.5
  5858. },
  5859. "_id": "62hDhHuMxNRq6yLvpfJLkV"
  5860. },
  5861. {
  5862. "__type__": "cc.Widget",
  5863. "_name": "",
  5864. "_objFlags": 0,
  5865. "__editorExtras__": {},
  5866. "node": {
  5867. "__id__": 115
  5868. },
  5869. "_enabled": true,
  5870. "__prefab": null,
  5871. "_alignFlags": 33,
  5872. "_target": null,
  5873. "_left": 0,
  5874. "_right": 100,
  5875. "_top": 140,
  5876. "_bottom": 0,
  5877. "_horizontalCenter": 0,
  5878. "_verticalCenter": 0,
  5879. "_isAbsLeft": true,
  5880. "_isAbsRight": true,
  5881. "_isAbsTop": true,
  5882. "_isAbsBottom": true,
  5883. "_isAbsHorizontalCenter": true,
  5884. "_isAbsVerticalCenter": true,
  5885. "_originalWidth": 0,
  5886. "_originalHeight": 0,
  5887. "_alignMode": 2,
  5888. "_lockFlags": 0,
  5889. "_id": "f4ApeUDi1OaZuw7G4DDs1B"
  5890. },
  5891. {
  5892. "__type__": "cc.Node",
  5893. "_name": "SelectTroops_Bottom",
  5894. "_objFlags": 0,
  5895. "__editorExtras__": {},
  5896. "_parent": {
  5897. "__id__": 97
  5898. },
  5899. "_children": [
  5900. {
  5901. "__id__": 151
  5902. },
  5903. {
  5904. "__id__": 159
  5905. },
  5906. {
  5907. "__id__": 179
  5908. },
  5909. {
  5910. "__id__": 275
  5911. },
  5912. {
  5913. "__id__": 280
  5914. }
  5915. ],
  5916. "_active": true,
  5917. "_components": [
  5918. {
  5919. "__id__": 284
  5920. },
  5921. {
  5922. "__id__": 285
  5923. },
  5924. {
  5925. "__id__": 286
  5926. },
  5927. {
  5928. "__id__": 287
  5929. }
  5930. ],
  5931. "_prefab": null,
  5932. "_lpos": {
  5933. "__type__": "cc.Vec3",
  5934. "x": 0,
  5935. "y": -270,
  5936. "z": 0
  5937. },
  5938. "_lrot": {
  5939. "__type__": "cc.Quat",
  5940. "x": 0,
  5941. "y": 0,
  5942. "z": 0,
  5943. "w": 1
  5944. },
  5945. "_lscale": {
  5946. "__type__": "cc.Vec3",
  5947. "x": 1,
  5948. "y": 1,
  5949. "z": 1
  5950. },
  5951. "_mobility": 0,
  5952. "_layer": 33554432,
  5953. "_euler": {
  5954. "__type__": "cc.Vec3",
  5955. "x": 0,
  5956. "y": 0,
  5957. "z": 0
  5958. },
  5959. "_id": "ffI++aqpRAhZJczX4YiFQe"
  5960. },
  5961. {
  5962. "__type__": "cc.Node",
  5963. "_name": "labelLevel",
  5964. "_objFlags": 0,
  5965. "__editorExtras__": {},
  5966. "_parent": {
  5967. "__id__": 150
  5968. },
  5969. "_children": [
  5970. {
  5971. "__id__": 152
  5972. }
  5973. ],
  5974. "_active": true,
  5975. "_components": [
  5976. {
  5977. "__id__": 156
  5978. },
  5979. {
  5980. "__id__": 157
  5981. },
  5982. {
  5983. "__id__": 158
  5984. }
  5985. ],
  5986. "_prefab": null,
  5987. "_lpos": {
  5988. "__type__": "cc.Vec3",
  5989. "x": -557.33203125,
  5990. "y": 42.8,
  5991. "z": 0
  5992. },
  5993. "_lrot": {
  5994. "__type__": "cc.Quat",
  5995. "x": 0,
  5996. "y": 0,
  5997. "z": 0,
  5998. "w": 1
  5999. },
  6000. "_lscale": {
  6001. "__type__": "cc.Vec3",
  6002. "x": 1,
  6003. "y": 1,
  6004. "z": 1
  6005. },
  6006. "_mobility": 0,
  6007. "_layer": 33554432,
  6008. "_euler": {
  6009. "__type__": "cc.Vec3",
  6010. "x": 0,
  6011. "y": 0,
  6012. "z": 0
  6013. },
  6014. "_id": "8aCTin7WNIe40eXNs2IZSb"
  6015. },
  6016. {
  6017. "__type__": "cc.Node",
  6018. "_name": "_lvNumber",
  6019. "_objFlags": 0,
  6020. "__editorExtras__": {},
  6021. "_parent": {
  6022. "__id__": 151
  6023. },
  6024. "_children": [],
  6025. "_active": true,
  6026. "_components": [
  6027. {
  6028. "__id__": 153
  6029. },
  6030. {
  6031. "__id__": 154
  6032. },
  6033. {
  6034. "__id__": 155
  6035. }
  6036. ],
  6037. "_prefab": null,
  6038. "_lpos": {
  6039. "__type__": "cc.Vec3",
  6040. "x": -3.386405656250002,
  6041. "y": -60,
  6042. "z": 0
  6043. },
  6044. "_lrot": {
  6045. "__type__": "cc.Quat",
  6046. "x": 0,
  6047. "y": 0,
  6048. "z": 0,
  6049. "w": 1
  6050. },
  6051. "_lscale": {
  6052. "__type__": "cc.Vec3",
  6053. "x": 1,
  6054. "y": 1,
  6055. "z": 1
  6056. },
  6057. "_mobility": 0,
  6058. "_layer": 33554432,
  6059. "_euler": {
  6060. "__type__": "cc.Vec3",
  6061. "x": 0,
  6062. "y": 0,
  6063. "z": 0
  6064. },
  6065. "_id": "93adk6BfRNB7EhP7gdkvol"
  6066. },
  6067. {
  6068. "__type__": "cc.UITransform",
  6069. "_name": "",
  6070. "_objFlags": 0,
  6071. "__editorExtras__": {},
  6072. "node": {
  6073. "__id__": 152
  6074. },
  6075. "_enabled": true,
  6076. "__prefab": null,
  6077. "_contentSize": {
  6078. "__type__": "cc.Size",
  6079. "width": 26.2460941875,
  6080. "height": 54.4
  6081. },
  6082. "_anchorPoint": {
  6083. "__type__": "cc.Vec2",
  6084. "x": 0.5,
  6085. "y": 0.5
  6086. },
  6087. "_id": "b1HKiL5vBCk5NlXsq9J5UB"
  6088. },
  6089. {
  6090. "__type__": "cc.Label",
  6091. "_name": "",
  6092. "_objFlags": 0,
  6093. "__editorExtras__": {},
  6094. "node": {
  6095. "__id__": 152
  6096. },
  6097. "_enabled": true,
  6098. "__prefab": null,
  6099. "_customMaterial": null,
  6100. "_srcBlendFactor": 2,
  6101. "_dstBlendFactor": 4,
  6102. "_color": {
  6103. "__type__": "cc.Color",
  6104. "r": 255,
  6105. "g": 255,
  6106. "b": 255,
  6107. "a": 255
  6108. },
  6109. "_string": "1",
  6110. "_horizontalAlign": 1,
  6111. "_verticalAlign": 1,
  6112. "_actualFontSize": 40,
  6113. "_fontSize": 40,
  6114. "_fontFamily": "Arial",
  6115. "_lineHeight": 40,
  6116. "_overflow": 0,
  6117. "_enableWrapText": true,
  6118. "_font": null,
  6119. "_isSystemFontUsed": true,
  6120. "_spacingX": 0,
  6121. "_isItalic": false,
  6122. "_isBold": false,
  6123. "_isUnderline": false,
  6124. "_underlineHeight": 2,
  6125. "_cacheMode": 0,
  6126. "_enableOutline": true,
  6127. "_outlineColor": {
  6128. "__type__": "cc.Color",
  6129. "r": 240,
  6130. "g": 91,
  6131. "b": 91,
  6132. "a": 255
  6133. },
  6134. "_outlineWidth": 2,
  6135. "_enableShadow": false,
  6136. "_shadowColor": {
  6137. "__type__": "cc.Color",
  6138. "r": 0,
  6139. "g": 0,
  6140. "b": 0,
  6141. "a": 255
  6142. },
  6143. "_shadowOffset": {
  6144. "__type__": "cc.Vec2",
  6145. "x": 2,
  6146. "y": 2
  6147. },
  6148. "_shadowBlur": 2,
  6149. "_id": "72lhTlMQdNfLLgK/UBWC51"
  6150. },
  6151. {
  6152. "__type__": "cc.Widget",
  6153. "_name": "",
  6154. "_objFlags": 0,
  6155. "__editorExtras__": {},
  6156. "node": {
  6157. "__id__": 152
  6158. },
  6159. "_enabled": true,
  6160. "__prefab": null,
  6161. "_alignFlags": 41,
  6162. "_target": null,
  6163. "_left": 16.158516,
  6164. "_right": 22.931327312500002,
  6165. "_top": 60,
  6166. "_bottom": -43.717,
  6167. "_horizontalCenter": 0,
  6168. "_verticalCenter": 0,
  6169. "_isAbsLeft": true,
  6170. "_isAbsRight": true,
  6171. "_isAbsTop": true,
  6172. "_isAbsBottom": true,
  6173. "_isAbsHorizontalCenter": true,
  6174. "_isAbsVerticalCenter": true,
  6175. "_originalWidth": 26.24609375,
  6176. "_originalHeight": 54.4,
  6177. "_alignMode": 2,
  6178. "_lockFlags": 0,
  6179. "_id": "04ZOsmTLxAqIvfUHPGWWeW"
  6180. },
  6181. {
  6182. "__type__": "cc.UITransform",
  6183. "_name": "",
  6184. "_objFlags": 0,
  6185. "__editorExtras__": {},
  6186. "node": {
  6187. "__id__": 151
  6188. },
  6189. "_enabled": true,
  6190. "__prefab": null,
  6191. "_contentSize": {
  6192. "__type__": "cc.Size",
  6193. "width": 65.3359375,
  6194. "height": 54.4
  6195. },
  6196. "_anchorPoint": {
  6197. "__type__": "cc.Vec2",
  6198. "x": 0.5,
  6199. "y": 0.5
  6200. },
  6201. "_id": "1bR5pHVglBZ5gXM1ydl3+Q"
  6202. },
  6203. {
  6204. "__type__": "cc.Label",
  6205. "_name": "",
  6206. "_objFlags": 0,
  6207. "__editorExtras__": {},
  6208. "node": {
  6209. "__id__": 151
  6210. },
  6211. "_enabled": true,
  6212. "__prefab": null,
  6213. "_customMaterial": null,
  6214. "_srcBlendFactor": 2,
  6215. "_dstBlendFactor": 4,
  6216. "_color": {
  6217. "__type__": "cc.Color",
  6218. "r": 255,
  6219. "g": 255,
  6220. "b": 255,
  6221. "a": 255
  6222. },
  6223. "_string": "关 卡",
  6224. "_horizontalAlign": 1,
  6225. "_verticalAlign": 1,
  6226. "_actualFontSize": 24,
  6227. "_fontSize": 24,
  6228. "_fontFamily": "Arial",
  6229. "_lineHeight": 40,
  6230. "_overflow": 0,
  6231. "_enableWrapText": true,
  6232. "_font": null,
  6233. "_isSystemFontUsed": true,
  6234. "_spacingX": 0,
  6235. "_isItalic": false,
  6236. "_isBold": false,
  6237. "_isUnderline": false,
  6238. "_underlineHeight": 2,
  6239. "_cacheMode": 0,
  6240. "_enableOutline": true,
  6241. "_outlineColor": {
  6242. "__type__": "cc.Color",
  6243. "r": 240,
  6244. "g": 91,
  6245. "b": 91,
  6246. "a": 255
  6247. },
  6248. "_outlineWidth": 2,
  6249. "_enableShadow": false,
  6250. "_shadowColor": {
  6251. "__type__": "cc.Color",
  6252. "r": 0,
  6253. "g": 0,
  6254. "b": 0,
  6255. "a": 255
  6256. },
  6257. "_shadowOffset": {
  6258. "__type__": "cc.Vec2",
  6259. "x": 2,
  6260. "y": 2
  6261. },
  6262. "_shadowBlur": 2,
  6263. "_id": "2e9geFbUdF4ZMmjb5cyPd6"
  6264. },
  6265. {
  6266. "__type__": "cc.Widget",
  6267. "_name": "",
  6268. "_objFlags": 0,
  6269. "__editorExtras__": {},
  6270. "node": {
  6271. "__id__": 151
  6272. },
  6273. "_enabled": true,
  6274. "__prefab": null,
  6275. "_alignFlags": 9,
  6276. "_target": null,
  6277. "_left": 50,
  6278. "_right": 0,
  6279. "_top": 20,
  6280. "_bottom": 0,
  6281. "_horizontalCenter": 0,
  6282. "_verticalCenter": 0,
  6283. "_isAbsLeft": true,
  6284. "_isAbsRight": true,
  6285. "_isAbsTop": true,
  6286. "_isAbsBottom": true,
  6287. "_isAbsHorizontalCenter": true,
  6288. "_isAbsVerticalCenter": true,
  6289. "_originalWidth": 0,
  6290. "_originalHeight": 0,
  6291. "_alignMode": 2,
  6292. "_lockFlags": 0,
  6293. "_id": "edE9uv01FDKLk0ok/73yzr"
  6294. },
  6295. {
  6296. "__type__": "cc.Node",
  6297. "_name": "OreSpeed",
  6298. "_objFlags": 0,
  6299. "__editorExtras__": {},
  6300. "_parent": {
  6301. "__id__": 150
  6302. },
  6303. "_children": [
  6304. {
  6305. "__id__": 160
  6306. },
  6307. {
  6308. "__id__": 164
  6309. },
  6310. {
  6311. "__id__": 168
  6312. },
  6313. {
  6314. "__id__": 172
  6315. }
  6316. ],
  6317. "_active": true,
  6318. "_components": [
  6319. {
  6320. "__id__": 176
  6321. },
  6322. {
  6323. "__id__": 177
  6324. },
  6325. {
  6326. "__id__": 178
  6327. }
  6328. ],
  6329. "_prefab": null,
  6330. "_lpos": {
  6331. "__type__": "cc.Vec3",
  6332. "x": -365,
  6333. "y": 0,
  6334. "z": 0
  6335. },
  6336. "_lrot": {
  6337. "__type__": "cc.Quat",
  6338. "x": 0,
  6339. "y": 0,
  6340. "z": 0,
  6341. "w": 1
  6342. },
  6343. "_lscale": {
  6344. "__type__": "cc.Vec3",
  6345. "x": 1,
  6346. "y": 1,
  6347. "z": 1
  6348. },
  6349. "_mobility": 0,
  6350. "_layer": 33554432,
  6351. "_euler": {
  6352. "__type__": "cc.Vec3",
  6353. "x": 0,
  6354. "y": 0,
  6355. "z": 0
  6356. },
  6357. "_id": "d9pq/NhLNNm4BbuMZ0VxB9"
  6358. },
  6359. {
  6360. "__type__": "cc.Node",
  6361. "_name": "Ore_Big",
  6362. "_objFlags": 0,
  6363. "__editorExtras__": {},
  6364. "_parent": {
  6365. "__id__": 159
  6366. },
  6367. "_children": [],
  6368. "_active": true,
  6369. "_components": [
  6370. {
  6371. "__id__": 161
  6372. },
  6373. {
  6374. "__id__": 162
  6375. },
  6376. {
  6377. "__id__": 163
  6378. }
  6379. ],
  6380. "_prefab": null,
  6381. "_lpos": {
  6382. "__type__": "cc.Vec3",
  6383. "x": -75,
  6384. "y": 0,
  6385. "z": 0
  6386. },
  6387. "_lrot": {
  6388. "__type__": "cc.Quat",
  6389. "x": 0,
  6390. "y": 0,
  6391. "z": 0,
  6392. "w": 1
  6393. },
  6394. "_lscale": {
  6395. "__type__": "cc.Vec3",
  6396. "x": 1,
  6397. "y": 1,
  6398. "z": 1
  6399. },
  6400. "_mobility": 0,
  6401. "_layer": 33554432,
  6402. "_euler": {
  6403. "__type__": "cc.Vec3",
  6404. "x": 0,
  6405. "y": 0,
  6406. "z": 0
  6407. },
  6408. "_id": "c7iAl6GZ5B8bynaBJOLim/"
  6409. },
  6410. {
  6411. "__type__": "cc.UITransform",
  6412. "_name": "",
  6413. "_objFlags": 0,
  6414. "__editorExtras__": {},
  6415. "node": {
  6416. "__id__": 160
  6417. },
  6418. "_enabled": true,
  6419. "__prefab": null,
  6420. "_contentSize": {
  6421. "__type__": "cc.Size",
  6422. "width": 80,
  6423. "height": 72
  6424. },
  6425. "_anchorPoint": {
  6426. "__type__": "cc.Vec2",
  6427. "x": 0.5,
  6428. "y": 0.5
  6429. },
  6430. "_id": "89WIdEXyJBdqMeFJg/TCh6"
  6431. },
  6432. {
  6433. "__type__": "cc.Sprite",
  6434. "_name": "",
  6435. "_objFlags": 0,
  6436. "__editorExtras__": {},
  6437. "node": {
  6438. "__id__": 160
  6439. },
  6440. "_enabled": true,
  6441. "__prefab": null,
  6442. "_customMaterial": null,
  6443. "_srcBlendFactor": 2,
  6444. "_dstBlendFactor": 4,
  6445. "_color": {
  6446. "__type__": "cc.Color",
  6447. "r": 255,
  6448. "g": 255,
  6449. "b": 255,
  6450. "a": 255
  6451. },
  6452. "_spriteFrame": {
  6453. "__uuid__": "c00b279f-801e-4e6d-a02e-0a9604678070@c5d0d",
  6454. "__expectedType__": "cc.SpriteFrame"
  6455. },
  6456. "_type": 0,
  6457. "_fillType": 0,
  6458. "_sizeMode": 0,
  6459. "_fillCenter": {
  6460. "__type__": "cc.Vec2",
  6461. "x": 0,
  6462. "y": 0
  6463. },
  6464. "_fillStart": 0,
  6465. "_fillRange": 0,
  6466. "_isTrimmedMode": true,
  6467. "_useGrayscale": false,
  6468. "_atlas": null,
  6469. "_id": "242rnU3rBK94dWIS/mHwVV"
  6470. },
  6471. {
  6472. "__type__": "cc.Widget",
  6473. "_name": "",
  6474. "_objFlags": 0,
  6475. "__editorExtras__": {},
  6476. "node": {
  6477. "__id__": 160
  6478. },
  6479. "_enabled": true,
  6480. "__prefab": null,
  6481. "_alignFlags": 13,
  6482. "_target": null,
  6483. "_left": 10,
  6484. "_right": 0,
  6485. "_top": 39,
  6486. "_bottom": 39,
  6487. "_horizontalCenter": 0,
  6488. "_verticalCenter": 0,
  6489. "_isAbsLeft": true,
  6490. "_isAbsRight": true,
  6491. "_isAbsTop": true,
  6492. "_isAbsBottom": true,
  6493. "_isAbsHorizontalCenter": true,
  6494. "_isAbsVerticalCenter": true,
  6495. "_originalWidth": 0,
  6496. "_originalHeight": 72,
  6497. "_alignMode": 2,
  6498. "_lockFlags": 0,
  6499. "_id": "8cFhe9KjlGwKvsBu69Oy7Q"
  6500. },
  6501. {
  6502. "__type__": "cc.Node",
  6503. "_name": "Ore_Small",
  6504. "_objFlags": 0,
  6505. "__editorExtras__": {},
  6506. "_parent": {
  6507. "__id__": 159
  6508. },
  6509. "_children": [],
  6510. "_active": true,
  6511. "_components": [
  6512. {
  6513. "__id__": 165
  6514. },
  6515. {
  6516. "__id__": 166
  6517. },
  6518. {
  6519. "__id__": 167
  6520. }
  6521. ],
  6522. "_prefab": null,
  6523. "_lpos": {
  6524. "__type__": "cc.Vec3",
  6525. "x": 55,
  6526. "y": -47,
  6527. "z": 0
  6528. },
  6529. "_lrot": {
  6530. "__type__": "cc.Quat",
  6531. "x": 0,
  6532. "y": 0,
  6533. "z": 0,
  6534. "w": 1
  6535. },
  6536. "_lscale": {
  6537. "__type__": "cc.Vec3",
  6538. "x": 1,
  6539. "y": 1,
  6540. "z": 1
  6541. },
  6542. "_mobility": 0,
  6543. "_layer": 33554432,
  6544. "_euler": {
  6545. "__type__": "cc.Vec3",
  6546. "x": 0,
  6547. "y": 0,
  6548. "z": 0
  6549. },
  6550. "_id": "c6OgfzUYlMB4g/2XDhBpSy"
  6551. },
  6552. {
  6553. "__type__": "cc.UITransform",
  6554. "_name": "",
  6555. "_objFlags": 0,
  6556. "__editorExtras__": {},
  6557. "node": {
  6558. "__id__": 164
  6559. },
  6560. "_enabled": true,
  6561. "__prefab": null,
  6562. "_contentSize": {
  6563. "__type__": "cc.Size",
  6564. "width": 40,
  6565. "height": 36
  6566. },
  6567. "_anchorPoint": {
  6568. "__type__": "cc.Vec2",
  6569. "x": 0.5,
  6570. "y": 0.5
  6571. },
  6572. "_id": "e2vBFnQAxNWoTP0vNckyzT"
  6573. },
  6574. {
  6575. "__type__": "cc.Sprite",
  6576. "_name": "",
  6577. "_objFlags": 0,
  6578. "__editorExtras__": {},
  6579. "node": {
  6580. "__id__": 164
  6581. },
  6582. "_enabled": true,
  6583. "__prefab": null,
  6584. "_customMaterial": null,
  6585. "_srcBlendFactor": 2,
  6586. "_dstBlendFactor": 4,
  6587. "_color": {
  6588. "__type__": "cc.Color",
  6589. "r": 255,
  6590. "g": 255,
  6591. "b": 255,
  6592. "a": 255
  6593. },
  6594. "_spriteFrame": {
  6595. "__uuid__": "c00b279f-801e-4e6d-a02e-0a9604678070@0c37c",
  6596. "__expectedType__": "cc.SpriteFrame"
  6597. },
  6598. "_type": 0,
  6599. "_fillType": 0,
  6600. "_sizeMode": 0,
  6601. "_fillCenter": {
  6602. "__type__": "cc.Vec2",
  6603. "x": 0,
  6604. "y": 0
  6605. },
  6606. "_fillStart": 0,
  6607. "_fillRange": 0,
  6608. "_isTrimmedMode": true,
  6609. "_useGrayscale": false,
  6610. "_atlas": null,
  6611. "_id": "3a66TrKzhKNL/62U8jLVjZ"
  6612. },
  6613. {
  6614. "__type__": "cc.Widget",
  6615. "_name": "",
  6616. "_objFlags": 0,
  6617. "__editorExtras__": {},
  6618. "node": {
  6619. "__id__": 164
  6620. },
  6621. "_enabled": true,
  6622. "__prefab": null,
  6623. "_alignFlags": 36,
  6624. "_target": null,
  6625. "_left": 0,
  6626. "_right": 50,
  6627. "_top": 0,
  6628. "_bottom": 10,
  6629. "_horizontalCenter": 0,
  6630. "_verticalCenter": 0,
  6631. "_isAbsLeft": true,
  6632. "_isAbsRight": true,
  6633. "_isAbsTop": true,
  6634. "_isAbsBottom": true,
  6635. "_isAbsHorizontalCenter": true,
  6636. "_isAbsVerticalCenter": true,
  6637. "_originalWidth": 0,
  6638. "_originalHeight": 0,
  6639. "_alignMode": 2,
  6640. "_lockFlags": 0,
  6641. "_id": "ceRBIwkVBO65x0w7tTwwg7"
  6642. },
  6643. {
  6644. "__type__": "cc.Node",
  6645. "_name": "_oreGrade",
  6646. "_objFlags": 0,
  6647. "__editorExtras__": {},
  6648. "_parent": {
  6649. "__id__": 159
  6650. },
  6651. "_children": [],
  6652. "_active": true,
  6653. "_components": [
  6654. {
  6655. "__id__": 169
  6656. },
  6657. {
  6658. "__id__": 170
  6659. },
  6660. {
  6661. "__id__": 171
  6662. }
  6663. ],
  6664. "_prefab": null,
  6665. "_lpos": {
  6666. "__type__": "cc.Vec3",
  6667. "x": 57.490234375,
  6668. "y": 39.8,
  6669. "z": 0
  6670. },
  6671. "_lrot": {
  6672. "__type__": "cc.Quat",
  6673. "x": 0,
  6674. "y": 0,
  6675. "z": 0,
  6676. "w": 1
  6677. },
  6678. "_lscale": {
  6679. "__type__": "cc.Vec3",
  6680. "x": 1,
  6681. "y": 1,
  6682. "z": 1
  6683. },
  6684. "_mobility": 0,
  6685. "_layer": 33554432,
  6686. "_euler": {
  6687. "__type__": "cc.Vec3",
  6688. "x": 0,
  6689. "y": 0,
  6690. "z": 0
  6691. },
  6692. "_id": "72KOxa+IZIc7MYaBN3fuPW"
  6693. },
  6694. {
  6695. "__type__": "cc.UITransform",
  6696. "_name": "",
  6697. "_objFlags": 0,
  6698. "__editorExtras__": {},
  6699. "node": {
  6700. "__id__": 168
  6701. },
  6702. "_enabled": true,
  6703. "__prefab": null,
  6704. "_contentSize": {
  6705. "__type__": "cc.Size",
  6706. "width": 85.01953125,
  6707. "height": 50.4
  6708. },
  6709. "_anchorPoint": {
  6710. "__type__": "cc.Vec2",
  6711. "x": 0.5,
  6712. "y": 0.5
  6713. },
  6714. "_id": "e6ZWHw5gZMYJn/mv6OFmOa"
  6715. },
  6716. {
  6717. "__type__": "cc.Label",
  6718. "_name": "",
  6719. "_objFlags": 0,
  6720. "__editorExtras__": {},
  6721. "node": {
  6722. "__id__": 168
  6723. },
  6724. "_enabled": true,
  6725. "__prefab": null,
  6726. "_customMaterial": null,
  6727. "_srcBlendFactor": 2,
  6728. "_dstBlendFactor": 4,
  6729. "_color": {
  6730. "__type__": "cc.Color",
  6731. "r": 40,
  6732. "g": 241,
  6733. "b": 217,
  6734. "a": 255
  6735. },
  6736. "_string": "等级.1",
  6737. "_horizontalAlign": 1,
  6738. "_verticalAlign": 1,
  6739. "_actualFontSize": 30,
  6740. "_fontSize": 30,
  6741. "_fontFamily": "Arial",
  6742. "_lineHeight": 40,
  6743. "_overflow": 0,
  6744. "_enableWrapText": true,
  6745. "_font": null,
  6746. "_isSystemFontUsed": true,
  6747. "_spacingX": 0,
  6748. "_isItalic": false,
  6749. "_isBold": false,
  6750. "_isUnderline": false,
  6751. "_underlineHeight": 2,
  6752. "_cacheMode": 0,
  6753. "_enableOutline": false,
  6754. "_outlineColor": {
  6755. "__type__": "cc.Color",
  6756. "r": 0,
  6757. "g": 0,
  6758. "b": 0,
  6759. "a": 255
  6760. },
  6761. "_outlineWidth": 2,
  6762. "_enableShadow": false,
  6763. "_shadowColor": {
  6764. "__type__": "cc.Color",
  6765. "r": 0,
  6766. "g": 0,
  6767. "b": 0,
  6768. "a": 255
  6769. },
  6770. "_shadowOffset": {
  6771. "__type__": "cc.Vec2",
  6772. "x": 2,
  6773. "y": 2
  6774. },
  6775. "_shadowBlur": 2,
  6776. "_id": "29Hv8T6CxFeLw16bG1Pulh"
  6777. },
  6778. {
  6779. "__type__": "cc.Widget",
  6780. "_name": "",
  6781. "_objFlags": 0,
  6782. "__editorExtras__": {},
  6783. "node": {
  6784. "__id__": 168
  6785. },
  6786. "_enabled": true,
  6787. "__prefab": null,
  6788. "_alignFlags": 33,
  6789. "_target": null,
  6790. "_left": 0,
  6791. "_right": 25,
  6792. "_top": 10,
  6793. "_bottom": 0,
  6794. "_horizontalCenter": 0,
  6795. "_verticalCenter": 0,
  6796. "_isAbsLeft": true,
  6797. "_isAbsRight": true,
  6798. "_isAbsTop": true,
  6799. "_isAbsBottom": true,
  6800. "_isAbsHorizontalCenter": true,
  6801. "_isAbsVerticalCenter": true,
  6802. "_originalWidth": 0,
  6803. "_originalHeight": 0,
  6804. "_alignMode": 2,
  6805. "_lockFlags": 0,
  6806. "_id": "faz2mXzi9CVLtBpuBW4y2C"
  6807. },
  6808. {
  6809. "__type__": "cc.Node",
  6810. "_name": "_oreSpeed",
  6811. "_objFlags": 0,
  6812. "__editorExtras__": {},
  6813. "_parent": {
  6814. "__id__": 159
  6815. },
  6816. "_children": [],
  6817. "_active": true,
  6818. "_components": [
  6819. {
  6820. "__id__": 173
  6821. },
  6822. {
  6823. "__id__": 174
  6824. },
  6825. {
  6826. "__id__": 175
  6827. }
  6828. ],
  6829. "_prefab": null,
  6830. "_lpos": {
  6831. "__type__": "cc.Vec3",
  6832. "x": 53.8720703125,
  6833. "y": 0,
  6834. "z": 0
  6835. },
  6836. "_lrot": {
  6837. "__type__": "cc.Quat",
  6838. "x": 0,
  6839. "y": 0,
  6840. "z": 0,
  6841. "w": 1
  6842. },
  6843. "_lscale": {
  6844. "__type__": "cc.Vec3",
  6845. "x": 1,
  6846. "y": 1,
  6847. "z": 1
  6848. },
  6849. "_mobility": 0,
  6850. "_layer": 33554432,
  6851. "_euler": {
  6852. "__type__": "cc.Vec3",
  6853. "x": 0,
  6854. "y": 0,
  6855. "z": 0
  6856. },
  6857. "_id": "08uUUs3ghJiaq63vJlT9Ay"
  6858. },
  6859. {
  6860. "__type__": "cc.UITransform",
  6861. "_name": "",
  6862. "_objFlags": 0,
  6863. "__editorExtras__": {},
  6864. "node": {
  6865. "__id__": 172
  6866. },
  6867. "_enabled": true,
  6868. "__prefab": null,
  6869. "_contentSize": {
  6870. "__type__": "cc.Size",
  6871. "width": 94.923828125,
  6872. "height": 50.400000000000006
  6873. },
  6874. "_anchorPoint": {
  6875. "__type__": "cc.Vec2",
  6876. "x": 0.5,
  6877. "y": 0.5
  6878. },
  6879. "_id": "48SHCqEZpJ3KFxqk1dN642"
  6880. },
  6881. {
  6882. "__type__": "cc.Label",
  6883. "_name": "",
  6884. "_objFlags": 0,
  6885. "__editorExtras__": {},
  6886. "node": {
  6887. "__id__": 172
  6888. },
  6889. "_enabled": true,
  6890. "__prefab": null,
  6891. "_customMaterial": null,
  6892. "_srcBlendFactor": 2,
  6893. "_dstBlendFactor": 4,
  6894. "_color": {
  6895. "__type__": "cc.Color",
  6896. "r": 40,
  6897. "g": 241,
  6898. "b": 217,
  6899. "a": 255
  6900. },
  6901. "_string": "60/分钟",
  6902. "_horizontalAlign": 1,
  6903. "_verticalAlign": 1,
  6904. "_actualFontSize": 28,
  6905. "_fontSize": 28,
  6906. "_fontFamily": "Arial",
  6907. "_lineHeight": 40,
  6908. "_overflow": 0,
  6909. "_enableWrapText": true,
  6910. "_font": null,
  6911. "_isSystemFontUsed": true,
  6912. "_spacingX": 0,
  6913. "_isItalic": false,
  6914. "_isBold": false,
  6915. "_isUnderline": false,
  6916. "_underlineHeight": 2,
  6917. "_cacheMode": 0,
  6918. "_enableOutline": false,
  6919. "_outlineColor": {
  6920. "__type__": "cc.Color",
  6921. "r": 0,
  6922. "g": 0,
  6923. "b": 0,
  6924. "a": 255
  6925. },
  6926. "_outlineWidth": 2,
  6927. "_enableShadow": false,
  6928. "_shadowColor": {
  6929. "__type__": "cc.Color",
  6930. "r": 0,
  6931. "g": 0,
  6932. "b": 0,
  6933. "a": 255
  6934. },
  6935. "_shadowOffset": {
  6936. "__type__": "cc.Vec2",
  6937. "x": 2,
  6938. "y": 2
  6939. },
  6940. "_shadowBlur": 2,
  6941. "_id": "1fdALzMetDDqDoEunF33u4"
  6942. },
  6943. {
  6944. "__type__": "cc.Widget",
  6945. "_name": "",
  6946. "_objFlags": 0,
  6947. "__editorExtras__": {},
  6948. "node": {
  6949. "__id__": 172
  6950. },
  6951. "_enabled": true,
  6952. "__prefab": null,
  6953. "_alignFlags": 37,
  6954. "_target": null,
  6955. "_left": 0,
  6956. "_right": 23.666015625,
  6957. "_top": 49.8,
  6958. "_bottom": 49.8,
  6959. "_horizontalCenter": 0,
  6960. "_verticalCenter": 0,
  6961. "_isAbsLeft": true,
  6962. "_isAbsRight": true,
  6963. "_isAbsTop": true,
  6964. "_isAbsBottom": true,
  6965. "_isAbsHorizontalCenter": true,
  6966. "_isAbsVerticalCenter": true,
  6967. "_originalWidth": 0,
  6968. "_originalHeight": 50.4,
  6969. "_alignMode": 2,
  6970. "_lockFlags": 0,
  6971. "_id": "93rkniABZEv7/399JaauNJ"
  6972. },
  6973. {
  6974. "__type__": "cc.UITransform",
  6975. "_name": "",
  6976. "_objFlags": 0,
  6977. "__editorExtras__": {},
  6978. "node": {
  6979. "__id__": 159
  6980. },
  6981. "_enabled": true,
  6982. "__prefab": null,
  6983. "_contentSize": {
  6984. "__type__": "cc.Size",
  6985. "width": 250,
  6986. "height": 150
  6987. },
  6988. "_anchorPoint": {
  6989. "__type__": "cc.Vec2",
  6990. "x": 0.5,
  6991. "y": 0.5
  6992. },
  6993. "_id": "3f4TVo35RIWpo7Bzwa3e3h"
  6994. },
  6995. {
  6996. "__type__": "cc.Widget",
  6997. "_name": "",
  6998. "_objFlags": 0,
  6999. "__editorExtras__": {},
  7000. "node": {
  7001. "__id__": 159
  7002. },
  7003. "_enabled": true,
  7004. "__prefab": null,
  7005. "_alignFlags": 13,
  7006. "_target": null,
  7007. "_left": 150,
  7008. "_right": 0,
  7009. "_top": 15,
  7010. "_bottom": 15,
  7011. "_horizontalCenter": 0,
  7012. "_verticalCenter": 0,
  7013. "_isAbsLeft": true,
  7014. "_isAbsRight": true,
  7015. "_isAbsTop": true,
  7016. "_isAbsBottom": true,
  7017. "_isAbsHorizontalCenter": true,
  7018. "_isAbsVerticalCenter": true,
  7019. "_originalWidth": 0,
  7020. "_originalHeight": 100,
  7021. "_alignMode": 2,
  7022. "_lockFlags": 0,
  7023. "_id": "5f4/lddShKL7y5MjEQLitB"
  7024. },
  7025. {
  7026. "__type__": "cc.Sprite",
  7027. "_name": "",
  7028. "_objFlags": 0,
  7029. "__editorExtras__": {},
  7030. "node": {
  7031. "__id__": 159
  7032. },
  7033. "_enabled": true,
  7034. "__prefab": null,
  7035. "_customMaterial": null,
  7036. "_srcBlendFactor": 2,
  7037. "_dstBlendFactor": 4,
  7038. "_color": {
  7039. "__type__": "cc.Color",
  7040. "r": 255,
  7041. "g": 255,
  7042. "b": 255,
  7043. "a": 255
  7044. },
  7045. "_spriteFrame": {
  7046. "__uuid__": "1ec19ffb-822e-46c7-814a-dc668a04afe9@58e92",
  7047. "__expectedType__": "cc.SpriteFrame"
  7048. },
  7049. "_type": 0,
  7050. "_fillType": 0,
  7051. "_sizeMode": 0,
  7052. "_fillCenter": {
  7053. "__type__": "cc.Vec2",
  7054. "x": 0,
  7055. "y": 0
  7056. },
  7057. "_fillStart": 0,
  7058. "_fillRange": 0,
  7059. "_isTrimmedMode": true,
  7060. "_useGrayscale": false,
  7061. "_atlas": null,
  7062. "_id": "3egU2rEWNKJrACPQ7r/Js5"
  7063. },
  7064. {
  7065. "__type__": "cc.Node",
  7066. "_name": "CharacterSlot",
  7067. "_objFlags": 0,
  7068. "__editorExtras__": {},
  7069. "_parent": {
  7070. "__id__": 150
  7071. },
  7072. "_children": [
  7073. {
  7074. "__id__": 180
  7075. },
  7076. {
  7077. "__id__": 195
  7078. },
  7079. {
  7080. "__id__": 210
  7081. },
  7082. {
  7083. "__id__": 225
  7084. },
  7085. {
  7086. "__id__": 240
  7087. },
  7088. {
  7089. "__id__": 255
  7090. }
  7091. ],
  7092. "_active": true,
  7093. "_components": [
  7094. {
  7095. "__id__": 270
  7096. },
  7097. {
  7098. "__id__": 271
  7099. },
  7100. {
  7101. "__id__": 272
  7102. },
  7103. {
  7104. "__id__": 273
  7105. },
  7106. {
  7107. "__id__": 274
  7108. }
  7109. ],
  7110. "_prefab": null,
  7111. "_lpos": {
  7112. "__type__": "cc.Vec3",
  7113. "x": 125,
  7114. "y": 0,
  7115. "z": 0
  7116. },
  7117. "_lrot": {
  7118. "__type__": "cc.Quat",
  7119. "x": 0,
  7120. "y": 0,
  7121. "z": 0,
  7122. "w": 1
  7123. },
  7124. "_lscale": {
  7125. "__type__": "cc.Vec3",
  7126. "x": 1,
  7127. "y": 1,
  7128. "z": 1
  7129. },
  7130. "_mobility": 0,
  7131. "_layer": 33554432,
  7132. "_euler": {
  7133. "__type__": "cc.Vec3",
  7134. "x": 0,
  7135. "y": 0,
  7136. "z": 0
  7137. },
  7138. "_id": "7cMoppP2JHUKA4KbBeMUqU"
  7139. },
  7140. {
  7141. "__type__": "cc.Node",
  7142. "_name": "Card-000",
  7143. "_objFlags": 0,
  7144. "__editorExtras__": {},
  7145. "_parent": {
  7146. "__id__": 179
  7147. },
  7148. "_children": [
  7149. {
  7150. "__id__": 181
  7151. },
  7152. {
  7153. "__id__": 185
  7154. },
  7155. {
  7156. "__id__": 189
  7157. }
  7158. ],
  7159. "_active": true,
  7160. "_components": [
  7161. {
  7162. "__id__": 192
  7163. },
  7164. {
  7165. "__id__": 193
  7166. },
  7167. {
  7168. "__id__": 194
  7169. }
  7170. ],
  7171. "_prefab": null,
  7172. "_lpos": {
  7173. "__type__": "cc.Vec3",
  7174. "x": -287.5,
  7175. "y": 0,
  7176. "z": 0
  7177. },
  7178. "_lrot": {
  7179. "__type__": "cc.Quat",
  7180. "x": 0,
  7181. "y": 0,
  7182. "z": 0,
  7183. "w": 1
  7184. },
  7185. "_lscale": {
  7186. "__type__": "cc.Vec3",
  7187. "x": 1,
  7188. "y": 1,
  7189. "z": 1
  7190. },
  7191. "_mobility": 0,
  7192. "_layer": 33554432,
  7193. "_euler": {
  7194. "__type__": "cc.Vec3",
  7195. "x": 0,
  7196. "y": 0,
  7197. "z": 0
  7198. },
  7199. "_id": "9ag9QQj7pOBpMVZyRYHnJd"
  7200. },
  7201. {
  7202. "__type__": "cc.Node",
  7203. "_name": "Lock",
  7204. "_objFlags": 0,
  7205. "__editorExtras__": {},
  7206. "_parent": {
  7207. "__id__": 180
  7208. },
  7209. "_children": [],
  7210. "_active": false,
  7211. "_components": [
  7212. {
  7213. "__id__": 182
  7214. },
  7215. {
  7216. "__id__": 183
  7217. },
  7218. {
  7219. "__id__": 184
  7220. }
  7221. ],
  7222. "_prefab": null,
  7223. "_lpos": {
  7224. "__type__": "cc.Vec3",
  7225. "x": 0,
  7226. "y": 0,
  7227. "z": 0
  7228. },
  7229. "_lrot": {
  7230. "__type__": "cc.Quat",
  7231. "x": 0,
  7232. "y": 0,
  7233. "z": 0,
  7234. "w": 1
  7235. },
  7236. "_lscale": {
  7237. "__type__": "cc.Vec3",
  7238. "x": 1,
  7239. "y": 1,
  7240. "z": 1
  7241. },
  7242. "_mobility": 0,
  7243. "_layer": 33554432,
  7244. "_euler": {
  7245. "__type__": "cc.Vec3",
  7246. "x": 0,
  7247. "y": 0,
  7248. "z": 0
  7249. },
  7250. "_id": "aaZiaYnQVIa7+g17ciSUto"
  7251. },
  7252. {
  7253. "__type__": "cc.UITransform",
  7254. "_name": "",
  7255. "_objFlags": 0,
  7256. "__editorExtras__": {},
  7257. "node": {
  7258. "__id__": 181
  7259. },
  7260. "_enabled": true,
  7261. "__prefab": null,
  7262. "_contentSize": {
  7263. "__type__": "cc.Size",
  7264. "width": 80,
  7265. "height": 72
  7266. },
  7267. "_anchorPoint": {
  7268. "__type__": "cc.Vec2",
  7269. "x": 0.5,
  7270. "y": 0.5
  7271. },
  7272. "_id": "22pGkmATZBV583RdzCCYMV"
  7273. },
  7274. {
  7275. "__type__": "cc.Sprite",
  7276. "_name": "",
  7277. "_objFlags": 0,
  7278. "__editorExtras__": {},
  7279. "node": {
  7280. "__id__": 181
  7281. },
  7282. "_enabled": true,
  7283. "__prefab": null,
  7284. "_customMaterial": null,
  7285. "_srcBlendFactor": 2,
  7286. "_dstBlendFactor": 4,
  7287. "_color": {
  7288. "__type__": "cc.Color",
  7289. "r": 255,
  7290. "g": 255,
  7291. "b": 255,
  7292. "a": 255
  7293. },
  7294. "_spriteFrame": {
  7295. "__uuid__": "57520716-48c8-4a19-8acf-41c9f8777fb0@f9941",
  7296. "__expectedType__": "cc.SpriteFrame"
  7297. },
  7298. "_type": 0,
  7299. "_fillType": 0,
  7300. "_sizeMode": 0,
  7301. "_fillCenter": {
  7302. "__type__": "cc.Vec2",
  7303. "x": 0,
  7304. "y": 0
  7305. },
  7306. "_fillStart": 0,
  7307. "_fillRange": 0,
  7308. "_isTrimmedMode": true,
  7309. "_useGrayscale": false,
  7310. "_atlas": null,
  7311. "_id": "53VAC1br9EgKn9QeBJyqr8"
  7312. },
  7313. {
  7314. "__type__": "cc.Widget",
  7315. "_name": "",
  7316. "_objFlags": 0,
  7317. "__editorExtras__": {},
  7318. "node": {
  7319. "__id__": 181
  7320. },
  7321. "_enabled": true,
  7322. "__prefab": null,
  7323. "_alignFlags": 45,
  7324. "_target": null,
  7325. "_left": 12.5,
  7326. "_right": 12.5,
  7327. "_top": 24,
  7328. "_bottom": 24,
  7329. "_horizontalCenter": 0,
  7330. "_verticalCenter": 0,
  7331. "_isAbsLeft": true,
  7332. "_isAbsRight": true,
  7333. "_isAbsTop": true,
  7334. "_isAbsBottom": true,
  7335. "_isAbsHorizontalCenter": true,
  7336. "_isAbsVerticalCenter": true,
  7337. "_originalWidth": 80,
  7338. "_originalHeight": 72,
  7339. "_alignMode": 2,
  7340. "_lockFlags": 0,
  7341. "_id": "abdCJiLTlO2qU7V2m/CGv3"
  7342. },
  7343. {
  7344. "__type__": "cc.Node",
  7345. "_name": "Label",
  7346. "_objFlags": 0,
  7347. "__editorExtras__": {},
  7348. "_parent": {
  7349. "__id__": 180
  7350. },
  7351. "_children": [],
  7352. "_active": false,
  7353. "_components": [
  7354. {
  7355. "__id__": 186
  7356. },
  7357. {
  7358. "__id__": 187
  7359. },
  7360. {
  7361. "__id__": 188
  7362. }
  7363. ],
  7364. "_prefab": null,
  7365. "_lpos": {
  7366. "__type__": "cc.Vec3",
  7367. "x": 0,
  7368. "y": -45.357000000000006,
  7369. "z": 0
  7370. },
  7371. "_lrot": {
  7372. "__type__": "cc.Quat",
  7373. "x": 0,
  7374. "y": 0,
  7375. "z": 0,
  7376. "w": 1
  7377. },
  7378. "_lscale": {
  7379. "__type__": "cc.Vec3",
  7380. "x": 1,
  7381. "y": 1,
  7382. "z": 1
  7383. },
  7384. "_mobility": 0,
  7385. "_layer": 33554432,
  7386. "_euler": {
  7387. "__type__": "cc.Vec3",
  7388. "x": 0,
  7389. "y": 0,
  7390. "z": 0
  7391. },
  7392. "_id": "581xXw9ylGIqcEBP+aZqNJ"
  7393. },
  7394. {
  7395. "__type__": "cc.UITransform",
  7396. "_name": "",
  7397. "_objFlags": 0,
  7398. "__editorExtras__": {},
  7399. "node": {
  7400. "__id__": 185
  7401. },
  7402. "_enabled": true,
  7403. "__prefab": null,
  7404. "_contentSize": {
  7405. "__type__": "cc.Size",
  7406. "width": 96,
  7407. "height": 37.8
  7408. },
  7409. "_anchorPoint": {
  7410. "__type__": "cc.Vec2",
  7411. "x": 0.5,
  7412. "y": 0.5
  7413. },
  7414. "_id": "64BuJWpw5BmLxR8IWuepRd"
  7415. },
  7416. {
  7417. "__type__": "cc.Label",
  7418. "_name": "",
  7419. "_objFlags": 0,
  7420. "__editorExtras__": {},
  7421. "node": {
  7422. "__id__": 185
  7423. },
  7424. "_enabled": true,
  7425. "__prefab": null,
  7426. "_customMaterial": null,
  7427. "_srcBlendFactor": 2,
  7428. "_dstBlendFactor": 4,
  7429. "_color": {
  7430. "__type__": "cc.Color",
  7431. "r": 119,
  7432. "g": 255,
  7433. "b": 179,
  7434. "a": 255
  7435. },
  7436. "_string": "解锁卡槽",
  7437. "_horizontalAlign": 1,
  7438. "_verticalAlign": 1,
  7439. "_actualFontSize": 24,
  7440. "_fontSize": 24,
  7441. "_fontFamily": "Arial",
  7442. "_lineHeight": 30,
  7443. "_overflow": 0,
  7444. "_enableWrapText": true,
  7445. "_font": null,
  7446. "_isSystemFontUsed": true,
  7447. "_spacingX": 0,
  7448. "_isItalic": false,
  7449. "_isBold": false,
  7450. "_isUnderline": false,
  7451. "_underlineHeight": 2,
  7452. "_cacheMode": 0,
  7453. "_enableOutline": false,
  7454. "_outlineColor": {
  7455. "__type__": "cc.Color",
  7456. "r": 0,
  7457. "g": 0,
  7458. "b": 0,
  7459. "a": 255
  7460. },
  7461. "_outlineWidth": 2,
  7462. "_enableShadow": false,
  7463. "_shadowColor": {
  7464. "__type__": "cc.Color",
  7465. "r": 0,
  7466. "g": 0,
  7467. "b": 0,
  7468. "a": 255
  7469. },
  7470. "_shadowOffset": {
  7471. "__type__": "cc.Vec2",
  7472. "x": 2,
  7473. "y": 2
  7474. },
  7475. "_shadowBlur": 2,
  7476. "_id": "0dwVCWFmhK2KauZfjHjudd"
  7477. },
  7478. {
  7479. "__type__": "cc.Widget",
  7480. "_name": "",
  7481. "_objFlags": 0,
  7482. "__editorExtras__": {},
  7483. "node": {
  7484. "__id__": 185
  7485. },
  7486. "_enabled": true,
  7487. "__prefab": null,
  7488. "_alignFlags": 4,
  7489. "_target": null,
  7490. "_left": 0,
  7491. "_right": 0,
  7492. "_top": 34.8,
  7493. "_bottom": -4.257,
  7494. "_horizontalCenter": 0,
  7495. "_verticalCenter": 0,
  7496. "_isAbsLeft": true,
  7497. "_isAbsRight": true,
  7498. "_isAbsTop": true,
  7499. "_isAbsBottom": true,
  7500. "_isAbsHorizontalCenter": true,
  7501. "_isAbsVerticalCenter": true,
  7502. "_originalWidth": 0,
  7503. "_originalHeight": 0,
  7504. "_alignMode": 2,
  7505. "_lockFlags": 0,
  7506. "_id": "d9+gEUE45JcavYqGuTrZV6"
  7507. },
  7508. {
  7509. "__type__": "cc.Node",
  7510. "_name": "Sprite",
  7511. "_objFlags": 0,
  7512. "__editorExtras__": {},
  7513. "_parent": {
  7514. "__id__": 180
  7515. },
  7516. "_children": [],
  7517. "_active": true,
  7518. "_components": [
  7519. {
  7520. "__id__": 190
  7521. },
  7522. {
  7523. "__id__": 191
  7524. }
  7525. ],
  7526. "_prefab": null,
  7527. "_lpos": {
  7528. "__type__": "cc.Vec3",
  7529. "x": 0,
  7530. "y": 0,
  7531. "z": 0
  7532. },
  7533. "_lrot": {
  7534. "__type__": "cc.Quat",
  7535. "x": 0,
  7536. "y": 0,
  7537. "z": 0,
  7538. "w": 1
  7539. },
  7540. "_lscale": {
  7541. "__type__": "cc.Vec3",
  7542. "x": 1,
  7543. "y": 1,
  7544. "z": 1
  7545. },
  7546. "_mobility": 0,
  7547. "_layer": 33554432,
  7548. "_euler": {
  7549. "__type__": "cc.Vec3",
  7550. "x": 0,
  7551. "y": 0,
  7552. "z": 0
  7553. },
  7554. "_id": "92WFiaWrdLg4gbpnsiiOWP"
  7555. },
  7556. {
  7557. "__type__": "cc.UITransform",
  7558. "_name": "",
  7559. "_objFlags": 0,
  7560. "__editorExtras__": {},
  7561. "node": {
  7562. "__id__": 189
  7563. },
  7564. "_enabled": true,
  7565. "__prefab": null,
  7566. "_contentSize": {
  7567. "__type__": "cc.Size",
  7568. "width": 105,
  7569. "height": 120
  7570. },
  7571. "_anchorPoint": {
  7572. "__type__": "cc.Vec2",
  7573. "x": 0.5,
  7574. "y": 0.5
  7575. },
  7576. "_id": "edAj8qyzJDB46W8UtAJu6Y"
  7577. },
  7578. {
  7579. "__type__": "cc.Sprite",
  7580. "_name": "",
  7581. "_objFlags": 0,
  7582. "__editorExtras__": {},
  7583. "node": {
  7584. "__id__": 189
  7585. },
  7586. "_enabled": true,
  7587. "__prefab": null,
  7588. "_customMaterial": null,
  7589. "_srcBlendFactor": 2,
  7590. "_dstBlendFactor": 4,
  7591. "_color": {
  7592. "__type__": "cc.Color",
  7593. "r": 255,
  7594. "g": 255,
  7595. "b": 255,
  7596. "a": 255
  7597. },
  7598. "_spriteFrame": null,
  7599. "_type": 0,
  7600. "_fillType": 0,
  7601. "_sizeMode": 0,
  7602. "_fillCenter": {
  7603. "__type__": "cc.Vec2",
  7604. "x": 0,
  7605. "y": 0
  7606. },
  7607. "_fillStart": 0,
  7608. "_fillRange": 0,
  7609. "_isTrimmedMode": true,
  7610. "_useGrayscale": false,
  7611. "_atlas": null,
  7612. "_id": "d8dCaEbOVH2IMfaVrOstYK"
  7613. },
  7614. {
  7615. "__type__": "cc.UITransform",
  7616. "_name": "",
  7617. "_objFlags": 0,
  7618. "__editorExtras__": {},
  7619. "node": {
  7620. "__id__": 180
  7621. },
  7622. "_enabled": true,
  7623. "__prefab": null,
  7624. "_contentSize": {
  7625. "__type__": "cc.Size",
  7626. "width": 105,
  7627. "height": 120
  7628. },
  7629. "_anchorPoint": {
  7630. "__type__": "cc.Vec2",
  7631. "x": 0.5,
  7632. "y": 0.5
  7633. },
  7634. "_id": "3aRmoEqstBebt65lYlFWg6"
  7635. },
  7636. {
  7637. "__type__": "cc.Sprite",
  7638. "_name": "",
  7639. "_objFlags": 0,
  7640. "__editorExtras__": {},
  7641. "node": {
  7642. "__id__": 180
  7643. },
  7644. "_enabled": true,
  7645. "__prefab": null,
  7646. "_customMaterial": null,
  7647. "_srcBlendFactor": 2,
  7648. "_dstBlendFactor": 4,
  7649. "_color": {
  7650. "__type__": "cc.Color",
  7651. "r": 255,
  7652. "g": 255,
  7653. "b": 255,
  7654. "a": 255
  7655. },
  7656. "_spriteFrame": {
  7657. "__uuid__": "1ec19ffb-822e-46c7-814a-dc668a04afe9@19380",
  7658. "__expectedType__": "cc.SpriteFrame"
  7659. },
  7660. "_type": 0,
  7661. "_fillType": 0,
  7662. "_sizeMode": 0,
  7663. "_fillCenter": {
  7664. "__type__": "cc.Vec2",
  7665. "x": 0,
  7666. "y": 0
  7667. },
  7668. "_fillStart": 0,
  7669. "_fillRange": 0,
  7670. "_isTrimmedMode": true,
  7671. "_useGrayscale": false,
  7672. "_atlas": null,
  7673. "_id": "c8/H9Bb5xGIbyDW+Aar0kD"
  7674. },
  7675. {
  7676. "__type__": "b20fcvOq2tLbLkioCsV/mHt",
  7677. "_name": "",
  7678. "_objFlags": 0,
  7679. "__editorExtras__": {},
  7680. "node": {
  7681. "__id__": 180
  7682. },
  7683. "_enabled": true,
  7684. "__prefab": null,
  7685. "_id": "a4q+b7VO1PtIzMpdKBtpHo"
  7686. },
  7687. {
  7688. "__type__": "cc.Node",
  7689. "_name": "Card-001",
  7690. "_objFlags": 0,
  7691. "__editorExtras__": {},
  7692. "_parent": {
  7693. "__id__": 179
  7694. },
  7695. "_children": [
  7696. {
  7697. "__id__": 196
  7698. },
  7699. {
  7700. "__id__": 200
  7701. },
  7702. {
  7703. "__id__": 204
  7704. }
  7705. ],
  7706. "_active": true,
  7707. "_components": [
  7708. {
  7709. "__id__": 207
  7710. },
  7711. {
  7712. "__id__": 208
  7713. },
  7714. {
  7715. "__id__": 209
  7716. }
  7717. ],
  7718. "_prefab": null,
  7719. "_lpos": {
  7720. "__type__": "cc.Vec3",
  7721. "x": -172.5,
  7722. "y": 0,
  7723. "z": 0
  7724. },
  7725. "_lrot": {
  7726. "__type__": "cc.Quat",
  7727. "x": 0,
  7728. "y": 0,
  7729. "z": 0,
  7730. "w": 1
  7731. },
  7732. "_lscale": {
  7733. "__type__": "cc.Vec3",
  7734. "x": 1,
  7735. "y": 1,
  7736. "z": 1
  7737. },
  7738. "_mobility": 0,
  7739. "_layer": 33554432,
  7740. "_euler": {
  7741. "__type__": "cc.Vec3",
  7742. "x": 0,
  7743. "y": 0,
  7744. "z": 0
  7745. },
  7746. "_id": "9aXaKkoctGDq1VGU+2QuMY"
  7747. },
  7748. {
  7749. "__type__": "cc.Node",
  7750. "_name": "Lock",
  7751. "_objFlags": 0,
  7752. "__editorExtras__": {},
  7753. "_parent": {
  7754. "__id__": 195
  7755. },
  7756. "_children": [],
  7757. "_active": false,
  7758. "_components": [
  7759. {
  7760. "__id__": 197
  7761. },
  7762. {
  7763. "__id__": 198
  7764. },
  7765. {
  7766. "__id__": 199
  7767. }
  7768. ],
  7769. "_prefab": null,
  7770. "_lpos": {
  7771. "__type__": "cc.Vec3",
  7772. "x": 0,
  7773. "y": 0,
  7774. "z": 0
  7775. },
  7776. "_lrot": {
  7777. "__type__": "cc.Quat",
  7778. "x": 0,
  7779. "y": 0,
  7780. "z": 0,
  7781. "w": 1
  7782. },
  7783. "_lscale": {
  7784. "__type__": "cc.Vec3",
  7785. "x": 1,
  7786. "y": 1,
  7787. "z": 1
  7788. },
  7789. "_mobility": 0,
  7790. "_layer": 33554432,
  7791. "_euler": {
  7792. "__type__": "cc.Vec3",
  7793. "x": 0,
  7794. "y": 0,
  7795. "z": 0
  7796. },
  7797. "_id": "73bcRKe3RLNKbZr/oaxjN3"
  7798. },
  7799. {
  7800. "__type__": "cc.UITransform",
  7801. "_name": "",
  7802. "_objFlags": 0,
  7803. "__editorExtras__": {},
  7804. "node": {
  7805. "__id__": 196
  7806. },
  7807. "_enabled": true,
  7808. "__prefab": null,
  7809. "_contentSize": {
  7810. "__type__": "cc.Size",
  7811. "width": 80,
  7812. "height": 72
  7813. },
  7814. "_anchorPoint": {
  7815. "__type__": "cc.Vec2",
  7816. "x": 0.5,
  7817. "y": 0.5
  7818. },
  7819. "_id": "874wDDYLFDYLbzPmS3LeeL"
  7820. },
  7821. {
  7822. "__type__": "cc.Sprite",
  7823. "_name": "",
  7824. "_objFlags": 0,
  7825. "__editorExtras__": {},
  7826. "node": {
  7827. "__id__": 196
  7828. },
  7829. "_enabled": true,
  7830. "__prefab": null,
  7831. "_customMaterial": null,
  7832. "_srcBlendFactor": 2,
  7833. "_dstBlendFactor": 4,
  7834. "_color": {
  7835. "__type__": "cc.Color",
  7836. "r": 255,
  7837. "g": 255,
  7838. "b": 255,
  7839. "a": 255
  7840. },
  7841. "_spriteFrame": {
  7842. "__uuid__": "57520716-48c8-4a19-8acf-41c9f8777fb0@f9941",
  7843. "__expectedType__": "cc.SpriteFrame"
  7844. },
  7845. "_type": 0,
  7846. "_fillType": 0,
  7847. "_sizeMode": 0,
  7848. "_fillCenter": {
  7849. "__type__": "cc.Vec2",
  7850. "x": 0,
  7851. "y": 0
  7852. },
  7853. "_fillStart": 0,
  7854. "_fillRange": 0,
  7855. "_isTrimmedMode": true,
  7856. "_useGrayscale": false,
  7857. "_atlas": null,
  7858. "_id": "c4Mg4aCgtCe6MiWxnDF8ap"
  7859. },
  7860. {
  7861. "__type__": "cc.Widget",
  7862. "_name": "",
  7863. "_objFlags": 0,
  7864. "__editorExtras__": {},
  7865. "node": {
  7866. "__id__": 196
  7867. },
  7868. "_enabled": true,
  7869. "__prefab": null,
  7870. "_alignFlags": 45,
  7871. "_target": null,
  7872. "_left": 12.5,
  7873. "_right": 12.5,
  7874. "_top": 24,
  7875. "_bottom": 24,
  7876. "_horizontalCenter": 0,
  7877. "_verticalCenter": 0,
  7878. "_isAbsLeft": true,
  7879. "_isAbsRight": true,
  7880. "_isAbsTop": true,
  7881. "_isAbsBottom": true,
  7882. "_isAbsHorizontalCenter": true,
  7883. "_isAbsVerticalCenter": true,
  7884. "_originalWidth": 80,
  7885. "_originalHeight": 72,
  7886. "_alignMode": 2,
  7887. "_lockFlags": 0,
  7888. "_id": "23yIjtKBxDpJr43L86BxXe"
  7889. },
  7890. {
  7891. "__type__": "cc.Node",
  7892. "_name": "Label",
  7893. "_objFlags": 0,
  7894. "__editorExtras__": {},
  7895. "_parent": {
  7896. "__id__": 195
  7897. },
  7898. "_children": [],
  7899. "_active": false,
  7900. "_components": [
  7901. {
  7902. "__id__": 201
  7903. },
  7904. {
  7905. "__id__": 202
  7906. },
  7907. {
  7908. "__id__": 203
  7909. }
  7910. ],
  7911. "_prefab": null,
  7912. "_lpos": {
  7913. "__type__": "cc.Vec3",
  7914. "x": 0,
  7915. "y": -45.357000000000006,
  7916. "z": 0
  7917. },
  7918. "_lrot": {
  7919. "__type__": "cc.Quat",
  7920. "x": 0,
  7921. "y": 0,
  7922. "z": 0,
  7923. "w": 1
  7924. },
  7925. "_lscale": {
  7926. "__type__": "cc.Vec3",
  7927. "x": 1,
  7928. "y": 1,
  7929. "z": 1
  7930. },
  7931. "_mobility": 0,
  7932. "_layer": 33554432,
  7933. "_euler": {
  7934. "__type__": "cc.Vec3",
  7935. "x": 0,
  7936. "y": 0,
  7937. "z": 0
  7938. },
  7939. "_id": "d2Muf3fsxCsqQZiok2m7CN"
  7940. },
  7941. {
  7942. "__type__": "cc.UITransform",
  7943. "_name": "",
  7944. "_objFlags": 0,
  7945. "__editorExtras__": {},
  7946. "node": {
  7947. "__id__": 200
  7948. },
  7949. "_enabled": true,
  7950. "__prefab": null,
  7951. "_contentSize": {
  7952. "__type__": "cc.Size",
  7953. "width": 96,
  7954. "height": 37.8
  7955. },
  7956. "_anchorPoint": {
  7957. "__type__": "cc.Vec2",
  7958. "x": 0.5,
  7959. "y": 0.5
  7960. },
  7961. "_id": "6ac3h6QdJA2r3R7eyvKyXa"
  7962. },
  7963. {
  7964. "__type__": "cc.Label",
  7965. "_name": "",
  7966. "_objFlags": 0,
  7967. "__editorExtras__": {},
  7968. "node": {
  7969. "__id__": 200
  7970. },
  7971. "_enabled": true,
  7972. "__prefab": null,
  7973. "_customMaterial": null,
  7974. "_srcBlendFactor": 2,
  7975. "_dstBlendFactor": 4,
  7976. "_color": {
  7977. "__type__": "cc.Color",
  7978. "r": 119,
  7979. "g": 255,
  7980. "b": 179,
  7981. "a": 255
  7982. },
  7983. "_string": "解锁卡槽",
  7984. "_horizontalAlign": 1,
  7985. "_verticalAlign": 1,
  7986. "_actualFontSize": 24,
  7987. "_fontSize": 24,
  7988. "_fontFamily": "Arial",
  7989. "_lineHeight": 30,
  7990. "_overflow": 0,
  7991. "_enableWrapText": true,
  7992. "_font": null,
  7993. "_isSystemFontUsed": true,
  7994. "_spacingX": 0,
  7995. "_isItalic": false,
  7996. "_isBold": false,
  7997. "_isUnderline": false,
  7998. "_underlineHeight": 2,
  7999. "_cacheMode": 0,
  8000. "_enableOutline": false,
  8001. "_outlineColor": {
  8002. "__type__": "cc.Color",
  8003. "r": 0,
  8004. "g": 0,
  8005. "b": 0,
  8006. "a": 255
  8007. },
  8008. "_outlineWidth": 2,
  8009. "_enableShadow": false,
  8010. "_shadowColor": {
  8011. "__type__": "cc.Color",
  8012. "r": 0,
  8013. "g": 0,
  8014. "b": 0,
  8015. "a": 255
  8016. },
  8017. "_shadowOffset": {
  8018. "__type__": "cc.Vec2",
  8019. "x": 2,
  8020. "y": 2
  8021. },
  8022. "_shadowBlur": 2,
  8023. "_id": "2eBfPUrKlAOZC3bjgvANXD"
  8024. },
  8025. {
  8026. "__type__": "cc.Widget",
  8027. "_name": "",
  8028. "_objFlags": 0,
  8029. "__editorExtras__": {},
  8030. "node": {
  8031. "__id__": 200
  8032. },
  8033. "_enabled": true,
  8034. "__prefab": null,
  8035. "_alignFlags": 4,
  8036. "_target": null,
  8037. "_left": 0,
  8038. "_right": 0,
  8039. "_top": 34.8,
  8040. "_bottom": -4.257,
  8041. "_horizontalCenter": 0,
  8042. "_verticalCenter": 0,
  8043. "_isAbsLeft": true,
  8044. "_isAbsRight": true,
  8045. "_isAbsTop": true,
  8046. "_isAbsBottom": true,
  8047. "_isAbsHorizontalCenter": true,
  8048. "_isAbsVerticalCenter": true,
  8049. "_originalWidth": 0,
  8050. "_originalHeight": 0,
  8051. "_alignMode": 2,
  8052. "_lockFlags": 0,
  8053. "_id": "98vTuuw5tGsZLWLh0HLNTf"
  8054. },
  8055. {
  8056. "__type__": "cc.Node",
  8057. "_name": "Sprite",
  8058. "_objFlags": 0,
  8059. "__editorExtras__": {},
  8060. "_parent": {
  8061. "__id__": 195
  8062. },
  8063. "_children": [],
  8064. "_active": true,
  8065. "_components": [
  8066. {
  8067. "__id__": 205
  8068. },
  8069. {
  8070. "__id__": 206
  8071. }
  8072. ],
  8073. "_prefab": null,
  8074. "_lpos": {
  8075. "__type__": "cc.Vec3",
  8076. "x": 0,
  8077. "y": 0,
  8078. "z": 0
  8079. },
  8080. "_lrot": {
  8081. "__type__": "cc.Quat",
  8082. "x": 0,
  8083. "y": 0,
  8084. "z": 0,
  8085. "w": 1
  8086. },
  8087. "_lscale": {
  8088. "__type__": "cc.Vec3",
  8089. "x": 1,
  8090. "y": 1,
  8091. "z": 1
  8092. },
  8093. "_mobility": 0,
  8094. "_layer": 33554432,
  8095. "_euler": {
  8096. "__type__": "cc.Vec3",
  8097. "x": 0,
  8098. "y": 0,
  8099. "z": 0
  8100. },
  8101. "_id": "8eb0AIEo1PmJ4VzO+HrvYK"
  8102. },
  8103. {
  8104. "__type__": "cc.UITransform",
  8105. "_name": "",
  8106. "_objFlags": 0,
  8107. "__editorExtras__": {},
  8108. "node": {
  8109. "__id__": 204
  8110. },
  8111. "_enabled": true,
  8112. "__prefab": null,
  8113. "_contentSize": {
  8114. "__type__": "cc.Size",
  8115. "width": 105,
  8116. "height": 120
  8117. },
  8118. "_anchorPoint": {
  8119. "__type__": "cc.Vec2",
  8120. "x": 0.5,
  8121. "y": 0.5
  8122. },
  8123. "_id": "72ZIdRl3tNr51CBAQCkA4a"
  8124. },
  8125. {
  8126. "__type__": "cc.Sprite",
  8127. "_name": "",
  8128. "_objFlags": 0,
  8129. "__editorExtras__": {},
  8130. "node": {
  8131. "__id__": 204
  8132. },
  8133. "_enabled": true,
  8134. "__prefab": null,
  8135. "_customMaterial": null,
  8136. "_srcBlendFactor": 2,
  8137. "_dstBlendFactor": 4,
  8138. "_color": {
  8139. "__type__": "cc.Color",
  8140. "r": 255,
  8141. "g": 255,
  8142. "b": 255,
  8143. "a": 255
  8144. },
  8145. "_spriteFrame": null,
  8146. "_type": 0,
  8147. "_fillType": 0,
  8148. "_sizeMode": 0,
  8149. "_fillCenter": {
  8150. "__type__": "cc.Vec2",
  8151. "x": 0,
  8152. "y": 0
  8153. },
  8154. "_fillStart": 0,
  8155. "_fillRange": 0,
  8156. "_isTrimmedMode": true,
  8157. "_useGrayscale": false,
  8158. "_atlas": null,
  8159. "_id": "18e50Lb2lKM64XEXRgzWxl"
  8160. },
  8161. {
  8162. "__type__": "cc.UITransform",
  8163. "_name": "",
  8164. "_objFlags": 0,
  8165. "__editorExtras__": {},
  8166. "node": {
  8167. "__id__": 195
  8168. },
  8169. "_enabled": true,
  8170. "__prefab": null,
  8171. "_contentSize": {
  8172. "__type__": "cc.Size",
  8173. "width": 105,
  8174. "height": 120
  8175. },
  8176. "_anchorPoint": {
  8177. "__type__": "cc.Vec2",
  8178. "x": 0.5,
  8179. "y": 0.5
  8180. },
  8181. "_id": "c0kdpw+IpBVr8C/WY0kmC9"
  8182. },
  8183. {
  8184. "__type__": "cc.Sprite",
  8185. "_name": "",
  8186. "_objFlags": 0,
  8187. "__editorExtras__": {},
  8188. "node": {
  8189. "__id__": 195
  8190. },
  8191. "_enabled": true,
  8192. "__prefab": null,
  8193. "_customMaterial": null,
  8194. "_srcBlendFactor": 2,
  8195. "_dstBlendFactor": 4,
  8196. "_color": {
  8197. "__type__": "cc.Color",
  8198. "r": 255,
  8199. "g": 255,
  8200. "b": 255,
  8201. "a": 255
  8202. },
  8203. "_spriteFrame": {
  8204. "__uuid__": "1ec19ffb-822e-46c7-814a-dc668a04afe9@19380",
  8205. "__expectedType__": "cc.SpriteFrame"
  8206. },
  8207. "_type": 0,
  8208. "_fillType": 0,
  8209. "_sizeMode": 0,
  8210. "_fillCenter": {
  8211. "__type__": "cc.Vec2",
  8212. "x": 0,
  8213. "y": 0
  8214. },
  8215. "_fillStart": 0,
  8216. "_fillRange": 0,
  8217. "_isTrimmedMode": true,
  8218. "_useGrayscale": false,
  8219. "_atlas": null,
  8220. "_id": "b3MlKHIFhDOIMzO7bddoQ2"
  8221. },
  8222. {
  8223. "__type__": "b20fcvOq2tLbLkioCsV/mHt",
  8224. "_name": "",
  8225. "_objFlags": 0,
  8226. "__editorExtras__": {},
  8227. "node": {
  8228. "__id__": 195
  8229. },
  8230. "_enabled": true,
  8231. "__prefab": null,
  8232. "_id": "faCLlvP4dKQqosHv1Bzqu7"
  8233. },
  8234. {
  8235. "__type__": "cc.Node",
  8236. "_name": "Card-002",
  8237. "_objFlags": 0,
  8238. "__editorExtras__": {},
  8239. "_parent": {
  8240. "__id__": 179
  8241. },
  8242. "_children": [
  8243. {
  8244. "__id__": 211
  8245. },
  8246. {
  8247. "__id__": 215
  8248. },
  8249. {
  8250. "__id__": 219
  8251. }
  8252. ],
  8253. "_active": true,
  8254. "_components": [
  8255. {
  8256. "__id__": 222
  8257. },
  8258. {
  8259. "__id__": 223
  8260. },
  8261. {
  8262. "__id__": 224
  8263. }
  8264. ],
  8265. "_prefab": null,
  8266. "_lpos": {
  8267. "__type__": "cc.Vec3",
  8268. "x": -57.5,
  8269. "y": 0,
  8270. "z": 0
  8271. },
  8272. "_lrot": {
  8273. "__type__": "cc.Quat",
  8274. "x": 0,
  8275. "y": 0,
  8276. "z": 0,
  8277. "w": 1
  8278. },
  8279. "_lscale": {
  8280. "__type__": "cc.Vec3",
  8281. "x": 1,
  8282. "y": 1,
  8283. "z": 1
  8284. },
  8285. "_mobility": 0,
  8286. "_layer": 33554432,
  8287. "_euler": {
  8288. "__type__": "cc.Vec3",
  8289. "x": 0,
  8290. "y": 0,
  8291. "z": 0
  8292. },
  8293. "_id": "f9noROSg1IDInHXrxhgiBZ"
  8294. },
  8295. {
  8296. "__type__": "cc.Node",
  8297. "_name": "Lock",
  8298. "_objFlags": 0,
  8299. "__editorExtras__": {},
  8300. "_parent": {
  8301. "__id__": 210
  8302. },
  8303. "_children": [],
  8304. "_active": false,
  8305. "_components": [
  8306. {
  8307. "__id__": 212
  8308. },
  8309. {
  8310. "__id__": 213
  8311. },
  8312. {
  8313. "__id__": 214
  8314. }
  8315. ],
  8316. "_prefab": null,
  8317. "_lpos": {
  8318. "__type__": "cc.Vec3",
  8319. "x": 0,
  8320. "y": 0,
  8321. "z": 0
  8322. },
  8323. "_lrot": {
  8324. "__type__": "cc.Quat",
  8325. "x": 0,
  8326. "y": 0,
  8327. "z": 0,
  8328. "w": 1
  8329. },
  8330. "_lscale": {
  8331. "__type__": "cc.Vec3",
  8332. "x": 1,
  8333. "y": 1,
  8334. "z": 1
  8335. },
  8336. "_mobility": 0,
  8337. "_layer": 33554432,
  8338. "_euler": {
  8339. "__type__": "cc.Vec3",
  8340. "x": 0,
  8341. "y": 0,
  8342. "z": 0
  8343. },
  8344. "_id": "89Rwi2R/FCqrmi3CB//1B8"
  8345. },
  8346. {
  8347. "__type__": "cc.UITransform",
  8348. "_name": "",
  8349. "_objFlags": 0,
  8350. "__editorExtras__": {},
  8351. "node": {
  8352. "__id__": 211
  8353. },
  8354. "_enabled": true,
  8355. "__prefab": null,
  8356. "_contentSize": {
  8357. "__type__": "cc.Size",
  8358. "width": 80,
  8359. "height": 72
  8360. },
  8361. "_anchorPoint": {
  8362. "__type__": "cc.Vec2",
  8363. "x": 0.5,
  8364. "y": 0.5
  8365. },
  8366. "_id": "c08FuCE1FE9Zk/+j8kwFcy"
  8367. },
  8368. {
  8369. "__type__": "cc.Sprite",
  8370. "_name": "",
  8371. "_objFlags": 0,
  8372. "__editorExtras__": {},
  8373. "node": {
  8374. "__id__": 211
  8375. },
  8376. "_enabled": true,
  8377. "__prefab": null,
  8378. "_customMaterial": null,
  8379. "_srcBlendFactor": 2,
  8380. "_dstBlendFactor": 4,
  8381. "_color": {
  8382. "__type__": "cc.Color",
  8383. "r": 255,
  8384. "g": 255,
  8385. "b": 255,
  8386. "a": 255
  8387. },
  8388. "_spriteFrame": {
  8389. "__uuid__": "57520716-48c8-4a19-8acf-41c9f8777fb0@f9941",
  8390. "__expectedType__": "cc.SpriteFrame"
  8391. },
  8392. "_type": 0,
  8393. "_fillType": 0,
  8394. "_sizeMode": 0,
  8395. "_fillCenter": {
  8396. "__type__": "cc.Vec2",
  8397. "x": 0,
  8398. "y": 0
  8399. },
  8400. "_fillStart": 0,
  8401. "_fillRange": 0,
  8402. "_isTrimmedMode": true,
  8403. "_useGrayscale": false,
  8404. "_atlas": null,
  8405. "_id": "0baAVE3fpKOoyLJpyuebwU"
  8406. },
  8407. {
  8408. "__type__": "cc.Widget",
  8409. "_name": "",
  8410. "_objFlags": 0,
  8411. "__editorExtras__": {},
  8412. "node": {
  8413. "__id__": 211
  8414. },
  8415. "_enabled": true,
  8416. "__prefab": null,
  8417. "_alignFlags": 45,
  8418. "_target": null,
  8419. "_left": 12.5,
  8420. "_right": 12.5,
  8421. "_top": 24,
  8422. "_bottom": 24,
  8423. "_horizontalCenter": 0,
  8424. "_verticalCenter": 0,
  8425. "_isAbsLeft": true,
  8426. "_isAbsRight": true,
  8427. "_isAbsTop": true,
  8428. "_isAbsBottom": true,
  8429. "_isAbsHorizontalCenter": true,
  8430. "_isAbsVerticalCenter": true,
  8431. "_originalWidth": 80,
  8432. "_originalHeight": 72,
  8433. "_alignMode": 2,
  8434. "_lockFlags": 0,
  8435. "_id": "adAPVcbTVMaLySgxDL8wvm"
  8436. },
  8437. {
  8438. "__type__": "cc.Node",
  8439. "_name": "Label",
  8440. "_objFlags": 0,
  8441. "__editorExtras__": {},
  8442. "_parent": {
  8443. "__id__": 210
  8444. },
  8445. "_children": [],
  8446. "_active": false,
  8447. "_components": [
  8448. {
  8449. "__id__": 216
  8450. },
  8451. {
  8452. "__id__": 217
  8453. },
  8454. {
  8455. "__id__": 218
  8456. }
  8457. ],
  8458. "_prefab": null,
  8459. "_lpos": {
  8460. "__type__": "cc.Vec3",
  8461. "x": 0,
  8462. "y": -45.357000000000006,
  8463. "z": 0
  8464. },
  8465. "_lrot": {
  8466. "__type__": "cc.Quat",
  8467. "x": 0,
  8468. "y": 0,
  8469. "z": 0,
  8470. "w": 1
  8471. },
  8472. "_lscale": {
  8473. "__type__": "cc.Vec3",
  8474. "x": 1,
  8475. "y": 1,
  8476. "z": 1
  8477. },
  8478. "_mobility": 0,
  8479. "_layer": 33554432,
  8480. "_euler": {
  8481. "__type__": "cc.Vec3",
  8482. "x": 0,
  8483. "y": 0,
  8484. "z": 0
  8485. },
  8486. "_id": "542Wb4jndPyq/SmCDPG5ZX"
  8487. },
  8488. {
  8489. "__type__": "cc.UITransform",
  8490. "_name": "",
  8491. "_objFlags": 0,
  8492. "__editorExtras__": {},
  8493. "node": {
  8494. "__id__": 215
  8495. },
  8496. "_enabled": true,
  8497. "__prefab": null,
  8498. "_contentSize": {
  8499. "__type__": "cc.Size",
  8500. "width": 96,
  8501. "height": 37.8
  8502. },
  8503. "_anchorPoint": {
  8504. "__type__": "cc.Vec2",
  8505. "x": 0.5,
  8506. "y": 0.5
  8507. },
  8508. "_id": "43EPivoh5EU7kcDu7Kq5/D"
  8509. },
  8510. {
  8511. "__type__": "cc.Label",
  8512. "_name": "",
  8513. "_objFlags": 0,
  8514. "__editorExtras__": {},
  8515. "node": {
  8516. "__id__": 215
  8517. },
  8518. "_enabled": true,
  8519. "__prefab": null,
  8520. "_customMaterial": null,
  8521. "_srcBlendFactor": 2,
  8522. "_dstBlendFactor": 4,
  8523. "_color": {
  8524. "__type__": "cc.Color",
  8525. "r": 119,
  8526. "g": 255,
  8527. "b": 179,
  8528. "a": 255
  8529. },
  8530. "_string": "解锁卡槽",
  8531. "_horizontalAlign": 1,
  8532. "_verticalAlign": 1,
  8533. "_actualFontSize": 24,
  8534. "_fontSize": 24,
  8535. "_fontFamily": "Arial",
  8536. "_lineHeight": 30,
  8537. "_overflow": 0,
  8538. "_enableWrapText": true,
  8539. "_font": null,
  8540. "_isSystemFontUsed": true,
  8541. "_spacingX": 0,
  8542. "_isItalic": false,
  8543. "_isBold": false,
  8544. "_isUnderline": false,
  8545. "_underlineHeight": 2,
  8546. "_cacheMode": 0,
  8547. "_enableOutline": false,
  8548. "_outlineColor": {
  8549. "__type__": "cc.Color",
  8550. "r": 0,
  8551. "g": 0,
  8552. "b": 0,
  8553. "a": 255
  8554. },
  8555. "_outlineWidth": 2,
  8556. "_enableShadow": false,
  8557. "_shadowColor": {
  8558. "__type__": "cc.Color",
  8559. "r": 0,
  8560. "g": 0,
  8561. "b": 0,
  8562. "a": 255
  8563. },
  8564. "_shadowOffset": {
  8565. "__type__": "cc.Vec2",
  8566. "x": 2,
  8567. "y": 2
  8568. },
  8569. "_shadowBlur": 2,
  8570. "_id": "e1uUR0Z4tJp6iw2Z8ItKqi"
  8571. },
  8572. {
  8573. "__type__": "cc.Widget",
  8574. "_name": "",
  8575. "_objFlags": 0,
  8576. "__editorExtras__": {},
  8577. "node": {
  8578. "__id__": 215
  8579. },
  8580. "_enabled": true,
  8581. "__prefab": null,
  8582. "_alignFlags": 4,
  8583. "_target": null,
  8584. "_left": 0,
  8585. "_right": 0,
  8586. "_top": 34.8,
  8587. "_bottom": -4.257,
  8588. "_horizontalCenter": 0,
  8589. "_verticalCenter": 0,
  8590. "_isAbsLeft": true,
  8591. "_isAbsRight": true,
  8592. "_isAbsTop": true,
  8593. "_isAbsBottom": true,
  8594. "_isAbsHorizontalCenter": true,
  8595. "_isAbsVerticalCenter": true,
  8596. "_originalWidth": 0,
  8597. "_originalHeight": 0,
  8598. "_alignMode": 2,
  8599. "_lockFlags": 0,
  8600. "_id": "daF0e7XhVKtaeGa+Jcp7ft"
  8601. },
  8602. {
  8603. "__type__": "cc.Node",
  8604. "_name": "Sprite",
  8605. "_objFlags": 0,
  8606. "__editorExtras__": {},
  8607. "_parent": {
  8608. "__id__": 210
  8609. },
  8610. "_children": [],
  8611. "_active": true,
  8612. "_components": [
  8613. {
  8614. "__id__": 220
  8615. },
  8616. {
  8617. "__id__": 221
  8618. }
  8619. ],
  8620. "_prefab": null,
  8621. "_lpos": {
  8622. "__type__": "cc.Vec3",
  8623. "x": 0,
  8624. "y": 0,
  8625. "z": 0
  8626. },
  8627. "_lrot": {
  8628. "__type__": "cc.Quat",
  8629. "x": 0,
  8630. "y": 0,
  8631. "z": 0,
  8632. "w": 1
  8633. },
  8634. "_lscale": {
  8635. "__type__": "cc.Vec3",
  8636. "x": 1,
  8637. "y": 1,
  8638. "z": 1
  8639. },
  8640. "_mobility": 0,
  8641. "_layer": 33554432,
  8642. "_euler": {
  8643. "__type__": "cc.Vec3",
  8644. "x": 0,
  8645. "y": 0,
  8646. "z": 0
  8647. },
  8648. "_id": "f8YvGal/tHAo5JVjXd0PiD"
  8649. },
  8650. {
  8651. "__type__": "cc.UITransform",
  8652. "_name": "",
  8653. "_objFlags": 0,
  8654. "__editorExtras__": {},
  8655. "node": {
  8656. "__id__": 219
  8657. },
  8658. "_enabled": true,
  8659. "__prefab": null,
  8660. "_contentSize": {
  8661. "__type__": "cc.Size",
  8662. "width": 105,
  8663. "height": 120
  8664. },
  8665. "_anchorPoint": {
  8666. "__type__": "cc.Vec2",
  8667. "x": 0.5,
  8668. "y": 0.5
  8669. },
  8670. "_id": "e0jIpos6ZEjareXHtILmO5"
  8671. },
  8672. {
  8673. "__type__": "cc.Sprite",
  8674. "_name": "",
  8675. "_objFlags": 0,
  8676. "__editorExtras__": {},
  8677. "node": {
  8678. "__id__": 219
  8679. },
  8680. "_enabled": true,
  8681. "__prefab": null,
  8682. "_customMaterial": null,
  8683. "_srcBlendFactor": 2,
  8684. "_dstBlendFactor": 4,
  8685. "_color": {
  8686. "__type__": "cc.Color",
  8687. "r": 255,
  8688. "g": 255,
  8689. "b": 255,
  8690. "a": 255
  8691. },
  8692. "_spriteFrame": null,
  8693. "_type": 0,
  8694. "_fillType": 0,
  8695. "_sizeMode": 0,
  8696. "_fillCenter": {
  8697. "__type__": "cc.Vec2",
  8698. "x": 0,
  8699. "y": 0
  8700. },
  8701. "_fillStart": 0,
  8702. "_fillRange": 0,
  8703. "_isTrimmedMode": true,
  8704. "_useGrayscale": false,
  8705. "_atlas": null,
  8706. "_id": "cdqC0s8YhKwojOtKLWRRLY"
  8707. },
  8708. {
  8709. "__type__": "cc.UITransform",
  8710. "_name": "",
  8711. "_objFlags": 0,
  8712. "__editorExtras__": {},
  8713. "node": {
  8714. "__id__": 210
  8715. },
  8716. "_enabled": true,
  8717. "__prefab": null,
  8718. "_contentSize": {
  8719. "__type__": "cc.Size",
  8720. "width": 105,
  8721. "height": 120
  8722. },
  8723. "_anchorPoint": {
  8724. "__type__": "cc.Vec2",
  8725. "x": 0.5,
  8726. "y": 0.5
  8727. },
  8728. "_id": "6cB/OQsrBBEqRBnFARr00V"
  8729. },
  8730. {
  8731. "__type__": "cc.Sprite",
  8732. "_name": "",
  8733. "_objFlags": 0,
  8734. "__editorExtras__": {},
  8735. "node": {
  8736. "__id__": 210
  8737. },
  8738. "_enabled": true,
  8739. "__prefab": null,
  8740. "_customMaterial": null,
  8741. "_srcBlendFactor": 2,
  8742. "_dstBlendFactor": 4,
  8743. "_color": {
  8744. "__type__": "cc.Color",
  8745. "r": 255,
  8746. "g": 255,
  8747. "b": 255,
  8748. "a": 255
  8749. },
  8750. "_spriteFrame": {
  8751. "__uuid__": "1ec19ffb-822e-46c7-814a-dc668a04afe9@19380",
  8752. "__expectedType__": "cc.SpriteFrame"
  8753. },
  8754. "_type": 0,
  8755. "_fillType": 0,
  8756. "_sizeMode": 0,
  8757. "_fillCenter": {
  8758. "__type__": "cc.Vec2",
  8759. "x": 0,
  8760. "y": 0
  8761. },
  8762. "_fillStart": 0,
  8763. "_fillRange": 0,
  8764. "_isTrimmedMode": true,
  8765. "_useGrayscale": false,
  8766. "_atlas": null,
  8767. "_id": "05TmdnzFJAOrZEkn4BR0Zf"
  8768. },
  8769. {
  8770. "__type__": "b20fcvOq2tLbLkioCsV/mHt",
  8771. "_name": "",
  8772. "_objFlags": 0,
  8773. "__editorExtras__": {},
  8774. "node": {
  8775. "__id__": 210
  8776. },
  8777. "_enabled": true,
  8778. "__prefab": null,
  8779. "_id": "16EnQK7iBJAqlqVeNTzuZT"
  8780. },
  8781. {
  8782. "__type__": "cc.Node",
  8783. "_name": "Card-003",
  8784. "_objFlags": 0,
  8785. "__editorExtras__": {},
  8786. "_parent": {
  8787. "__id__": 179
  8788. },
  8789. "_children": [
  8790. {
  8791. "__id__": 226
  8792. },
  8793. {
  8794. "__id__": 230
  8795. },
  8796. {
  8797. "__id__": 234
  8798. }
  8799. ],
  8800. "_active": true,
  8801. "_components": [
  8802. {
  8803. "__id__": 237
  8804. },
  8805. {
  8806. "__id__": 238
  8807. },
  8808. {
  8809. "__id__": 239
  8810. }
  8811. ],
  8812. "_prefab": null,
  8813. "_lpos": {
  8814. "__type__": "cc.Vec3",
  8815. "x": 57.5,
  8816. "y": 0,
  8817. "z": 0
  8818. },
  8819. "_lrot": {
  8820. "__type__": "cc.Quat",
  8821. "x": 0,
  8822. "y": 0,
  8823. "z": 0,
  8824. "w": 1
  8825. },
  8826. "_lscale": {
  8827. "__type__": "cc.Vec3",
  8828. "x": 1,
  8829. "y": 1,
  8830. "z": 1
  8831. },
  8832. "_mobility": 0,
  8833. "_layer": 33554432,
  8834. "_euler": {
  8835. "__type__": "cc.Vec3",
  8836. "x": 0,
  8837. "y": 0,
  8838. "z": 0
  8839. },
  8840. "_id": "bcJSOlaUZLYrRkcOKgNuyB"
  8841. },
  8842. {
  8843. "__type__": "cc.Node",
  8844. "_name": "Lock",
  8845. "_objFlags": 0,
  8846. "__editorExtras__": {},
  8847. "_parent": {
  8848. "__id__": 225
  8849. },
  8850. "_children": [],
  8851. "_active": true,
  8852. "_components": [
  8853. {
  8854. "__id__": 227
  8855. },
  8856. {
  8857. "__id__": 228
  8858. },
  8859. {
  8860. "__id__": 229
  8861. }
  8862. ],
  8863. "_prefab": null,
  8864. "_lpos": {
  8865. "__type__": "cc.Vec3",
  8866. "x": 0,
  8867. "y": 0,
  8868. "z": 0
  8869. },
  8870. "_lrot": {
  8871. "__type__": "cc.Quat",
  8872. "x": 0,
  8873. "y": 0,
  8874. "z": 0,
  8875. "w": 1
  8876. },
  8877. "_lscale": {
  8878. "__type__": "cc.Vec3",
  8879. "x": 1,
  8880. "y": 1,
  8881. "z": 1
  8882. },
  8883. "_mobility": 0,
  8884. "_layer": 33554432,
  8885. "_euler": {
  8886. "__type__": "cc.Vec3",
  8887. "x": 0,
  8888. "y": 0,
  8889. "z": 0
  8890. },
  8891. "_id": "67HE2GDUlMF709HeECWEfY"
  8892. },
  8893. {
  8894. "__type__": "cc.UITransform",
  8895. "_name": "",
  8896. "_objFlags": 0,
  8897. "__editorExtras__": {},
  8898. "node": {
  8899. "__id__": 226
  8900. },
  8901. "_enabled": true,
  8902. "__prefab": null,
  8903. "_contentSize": {
  8904. "__type__": "cc.Size",
  8905. "width": 68.8,
  8906. "height": 69.6
  8907. },
  8908. "_anchorPoint": {
  8909. "__type__": "cc.Vec2",
  8910. "x": 0.5,
  8911. "y": 0.5
  8912. },
  8913. "_id": "69utNaGBdJkKnnv+i1HN0n"
  8914. },
  8915. {
  8916. "__type__": "cc.Sprite",
  8917. "_name": "",
  8918. "_objFlags": 0,
  8919. "__editorExtras__": {},
  8920. "node": {
  8921. "__id__": 226
  8922. },
  8923. "_enabled": true,
  8924. "__prefab": null,
  8925. "_customMaterial": null,
  8926. "_srcBlendFactor": 2,
  8927. "_dstBlendFactor": 4,
  8928. "_color": {
  8929. "__type__": "cc.Color",
  8930. "r": 255,
  8931. "g": 255,
  8932. "b": 255,
  8933. "a": 255
  8934. },
  8935. "_spriteFrame": {
  8936. "__uuid__": "c00b279f-801e-4e6d-a02e-0a9604678070@b7709",
  8937. "__expectedType__": "cc.SpriteFrame"
  8938. },
  8939. "_type": 0,
  8940. "_fillType": 0,
  8941. "_sizeMode": 0,
  8942. "_fillCenter": {
  8943. "__type__": "cc.Vec2",
  8944. "x": 0,
  8945. "y": 0
  8946. },
  8947. "_fillStart": 0,
  8948. "_fillRange": 0,
  8949. "_isTrimmedMode": true,
  8950. "_useGrayscale": false,
  8951. "_atlas": null,
  8952. "_id": "0a0u1XavhPQIWd1eBUth+h"
  8953. },
  8954. {
  8955. "__type__": "cc.Widget",
  8956. "_name": "",
  8957. "_objFlags": 0,
  8958. "__editorExtras__": {},
  8959. "node": {
  8960. "__id__": 226
  8961. },
  8962. "_enabled": true,
  8963. "__prefab": null,
  8964. "_alignFlags": 45,
  8965. "_target": null,
  8966. "_left": 18.1,
  8967. "_right": 18.1,
  8968. "_top": 25.200000000000003,
  8969. "_bottom": 25.200000000000003,
  8970. "_horizontalCenter": 0,
  8971. "_verticalCenter": 0,
  8972. "_isAbsLeft": true,
  8973. "_isAbsRight": true,
  8974. "_isAbsTop": true,
  8975. "_isAbsBottom": true,
  8976. "_isAbsHorizontalCenter": true,
  8977. "_isAbsVerticalCenter": true,
  8978. "_originalWidth": 80,
  8979. "_originalHeight": 72,
  8980. "_alignMode": 2,
  8981. "_lockFlags": 0,
  8982. "_id": "c5f4NMOolPxK51HEuu3ZSS"
  8983. },
  8984. {
  8985. "__type__": "cc.Node",
  8986. "_name": "Label",
  8987. "_objFlags": 0,
  8988. "__editorExtras__": {},
  8989. "_parent": {
  8990. "__id__": 225
  8991. },
  8992. "_children": [],
  8993. "_active": true,
  8994. "_components": [
  8995. {
  8996. "__id__": 231
  8997. },
  8998. {
  8999. "__id__": 232
  9000. },
  9001. {
  9002. "__id__": 233
  9003. }
  9004. ],
  9005. "_prefab": null,
  9006. "_lpos": {
  9007. "__type__": "cc.Vec3",
  9008. "x": 0,
  9009. "y": -45.357000000000006,
  9010. "z": 0
  9011. },
  9012. "_lrot": {
  9013. "__type__": "cc.Quat",
  9014. "x": 0,
  9015. "y": 0,
  9016. "z": 0,
  9017. "w": 1
  9018. },
  9019. "_lscale": {
  9020. "__type__": "cc.Vec3",
  9021. "x": 1,
  9022. "y": 1,
  9023. "z": 1
  9024. },
  9025. "_mobility": 0,
  9026. "_layer": 33554432,
  9027. "_euler": {
  9028. "__type__": "cc.Vec3",
  9029. "x": 0,
  9030. "y": 0,
  9031. "z": 0
  9032. },
  9033. "_id": "403p3m4RFOBIz/O2Fs9onw"
  9034. },
  9035. {
  9036. "__type__": "cc.UITransform",
  9037. "_name": "",
  9038. "_objFlags": 0,
  9039. "__editorExtras__": {},
  9040. "node": {
  9041. "__id__": 230
  9042. },
  9043. "_enabled": true,
  9044. "__prefab": null,
  9045. "_contentSize": {
  9046. "__type__": "cc.Size",
  9047. "width": 96,
  9048. "height": 37.8
  9049. },
  9050. "_anchorPoint": {
  9051. "__type__": "cc.Vec2",
  9052. "x": 0.5,
  9053. "y": 0.5
  9054. },
  9055. "_id": "b1QpHPXVpAJZTHEHt3CLkz"
  9056. },
  9057. {
  9058. "__type__": "cc.Label",
  9059. "_name": "",
  9060. "_objFlags": 0,
  9061. "__editorExtras__": {},
  9062. "node": {
  9063. "__id__": 230
  9064. },
  9065. "_enabled": true,
  9066. "__prefab": null,
  9067. "_customMaterial": null,
  9068. "_srcBlendFactor": 2,
  9069. "_dstBlendFactor": 4,
  9070. "_color": {
  9071. "__type__": "cc.Color",
  9072. "r": 119,
  9073. "g": 255,
  9074. "b": 179,
  9075. "a": 255
  9076. },
  9077. "_string": "解锁卡槽",
  9078. "_horizontalAlign": 1,
  9079. "_verticalAlign": 1,
  9080. "_actualFontSize": 24,
  9081. "_fontSize": 24,
  9082. "_fontFamily": "Arial",
  9083. "_lineHeight": 30,
  9084. "_overflow": 0,
  9085. "_enableWrapText": true,
  9086. "_font": null,
  9087. "_isSystemFontUsed": true,
  9088. "_spacingX": 0,
  9089. "_isItalic": false,
  9090. "_isBold": false,
  9091. "_isUnderline": false,
  9092. "_underlineHeight": 2,
  9093. "_cacheMode": 0,
  9094. "_enableOutline": false,
  9095. "_outlineColor": {
  9096. "__type__": "cc.Color",
  9097. "r": 0,
  9098. "g": 0,
  9099. "b": 0,
  9100. "a": 255
  9101. },
  9102. "_outlineWidth": 2,
  9103. "_enableShadow": false,
  9104. "_shadowColor": {
  9105. "__type__": "cc.Color",
  9106. "r": 0,
  9107. "g": 0,
  9108. "b": 0,
  9109. "a": 255
  9110. },
  9111. "_shadowOffset": {
  9112. "__type__": "cc.Vec2",
  9113. "x": 2,
  9114. "y": 2
  9115. },
  9116. "_shadowBlur": 2,
  9117. "_id": "37jpB7/VpJKb51LukYvMCy"
  9118. },
  9119. {
  9120. "__type__": "cc.Widget",
  9121. "_name": "",
  9122. "_objFlags": 0,
  9123. "__editorExtras__": {},
  9124. "node": {
  9125. "__id__": 230
  9126. },
  9127. "_enabled": true,
  9128. "__prefab": null,
  9129. "_alignFlags": 4,
  9130. "_target": null,
  9131. "_left": 0,
  9132. "_right": 0,
  9133. "_top": 34.8,
  9134. "_bottom": -4.257,
  9135. "_horizontalCenter": 0,
  9136. "_verticalCenter": 0,
  9137. "_isAbsLeft": true,
  9138. "_isAbsRight": true,
  9139. "_isAbsTop": true,
  9140. "_isAbsBottom": true,
  9141. "_isAbsHorizontalCenter": true,
  9142. "_isAbsVerticalCenter": true,
  9143. "_originalWidth": 0,
  9144. "_originalHeight": 0,
  9145. "_alignMode": 2,
  9146. "_lockFlags": 0,
  9147. "_id": "37oIFvO+NDQIEJOjmXinZJ"
  9148. },
  9149. {
  9150. "__type__": "cc.Node",
  9151. "_name": "Sprite",
  9152. "_objFlags": 0,
  9153. "__editorExtras__": {},
  9154. "_parent": {
  9155. "__id__": 225
  9156. },
  9157. "_children": [],
  9158. "_active": true,
  9159. "_components": [
  9160. {
  9161. "__id__": 235
  9162. },
  9163. {
  9164. "__id__": 236
  9165. }
  9166. ],
  9167. "_prefab": null,
  9168. "_lpos": {
  9169. "__type__": "cc.Vec3",
  9170. "x": 0,
  9171. "y": 0,
  9172. "z": 0
  9173. },
  9174. "_lrot": {
  9175. "__type__": "cc.Quat",
  9176. "x": 0,
  9177. "y": 0,
  9178. "z": 0,
  9179. "w": 1
  9180. },
  9181. "_lscale": {
  9182. "__type__": "cc.Vec3",
  9183. "x": 1,
  9184. "y": 1,
  9185. "z": 1
  9186. },
  9187. "_mobility": 0,
  9188. "_layer": 33554432,
  9189. "_euler": {
  9190. "__type__": "cc.Vec3",
  9191. "x": 0,
  9192. "y": 0,
  9193. "z": 0
  9194. },
  9195. "_id": "4bEgjTUIhG3IFReeyYGM/e"
  9196. },
  9197. {
  9198. "__type__": "cc.UITransform",
  9199. "_name": "",
  9200. "_objFlags": 0,
  9201. "__editorExtras__": {},
  9202. "node": {
  9203. "__id__": 234
  9204. },
  9205. "_enabled": true,
  9206. "__prefab": null,
  9207. "_contentSize": {
  9208. "__type__": "cc.Size",
  9209. "width": 105,
  9210. "height": 120
  9211. },
  9212. "_anchorPoint": {
  9213. "__type__": "cc.Vec2",
  9214. "x": 0.5,
  9215. "y": 0.5
  9216. },
  9217. "_id": "abpxWPLZ1ESqB+z/dnrUDI"
  9218. },
  9219. {
  9220. "__type__": "cc.Sprite",
  9221. "_name": "",
  9222. "_objFlags": 0,
  9223. "__editorExtras__": {},
  9224. "node": {
  9225. "__id__": 234
  9226. },
  9227. "_enabled": true,
  9228. "__prefab": null,
  9229. "_customMaterial": null,
  9230. "_srcBlendFactor": 2,
  9231. "_dstBlendFactor": 4,
  9232. "_color": {
  9233. "__type__": "cc.Color",
  9234. "r": 255,
  9235. "g": 255,
  9236. "b": 255,
  9237. "a": 255
  9238. },
  9239. "_spriteFrame": null,
  9240. "_type": 0,
  9241. "_fillType": 0,
  9242. "_sizeMode": 0,
  9243. "_fillCenter": {
  9244. "__type__": "cc.Vec2",
  9245. "x": 0,
  9246. "y": 0
  9247. },
  9248. "_fillStart": 0,
  9249. "_fillRange": 0,
  9250. "_isTrimmedMode": true,
  9251. "_useGrayscale": false,
  9252. "_atlas": null,
  9253. "_id": "e8OxeHPhpMWrjgzGasO0pZ"
  9254. },
  9255. {
  9256. "__type__": "cc.UITransform",
  9257. "_name": "",
  9258. "_objFlags": 0,
  9259. "__editorExtras__": {},
  9260. "node": {
  9261. "__id__": 225
  9262. },
  9263. "_enabled": true,
  9264. "__prefab": null,
  9265. "_contentSize": {
  9266. "__type__": "cc.Size",
  9267. "width": 105,
  9268. "height": 120
  9269. },
  9270. "_anchorPoint": {
  9271. "__type__": "cc.Vec2",
  9272. "x": 0.5,
  9273. "y": 0.5
  9274. },
  9275. "_id": "3bDiNcb2pHP5pYsTbbxJPa"
  9276. },
  9277. {
  9278. "__type__": "cc.Sprite",
  9279. "_name": "",
  9280. "_objFlags": 0,
  9281. "__editorExtras__": {},
  9282. "node": {
  9283. "__id__": 225
  9284. },
  9285. "_enabled": true,
  9286. "__prefab": null,
  9287. "_customMaterial": null,
  9288. "_srcBlendFactor": 2,
  9289. "_dstBlendFactor": 4,
  9290. "_color": {
  9291. "__type__": "cc.Color",
  9292. "r": 255,
  9293. "g": 255,
  9294. "b": 255,
  9295. "a": 255
  9296. },
  9297. "_spriteFrame": {
  9298. "__uuid__": "1ec19ffb-822e-46c7-814a-dc668a04afe9@19380",
  9299. "__expectedType__": "cc.SpriteFrame"
  9300. },
  9301. "_type": 0,
  9302. "_fillType": 0,
  9303. "_sizeMode": 0,
  9304. "_fillCenter": {
  9305. "__type__": "cc.Vec2",
  9306. "x": 0,
  9307. "y": 0
  9308. },
  9309. "_fillStart": 0,
  9310. "_fillRange": 0,
  9311. "_isTrimmedMode": true,
  9312. "_useGrayscale": false,
  9313. "_atlas": null,
  9314. "_id": "003Ud64xxEsoaCdLGr1ZH5"
  9315. },
  9316. {
  9317. "__type__": "b20fcvOq2tLbLkioCsV/mHt",
  9318. "_name": "",
  9319. "_objFlags": 0,
  9320. "__editorExtras__": {},
  9321. "node": {
  9322. "__id__": 225
  9323. },
  9324. "_enabled": true,
  9325. "__prefab": null,
  9326. "_id": "4at7hpifhJr4CsZ+2h2UAz"
  9327. },
  9328. {
  9329. "__type__": "cc.Node",
  9330. "_name": "Card-004",
  9331. "_objFlags": 0,
  9332. "__editorExtras__": {},
  9333. "_parent": {
  9334. "__id__": 179
  9335. },
  9336. "_children": [
  9337. {
  9338. "__id__": 241
  9339. },
  9340. {
  9341. "__id__": 245
  9342. },
  9343. {
  9344. "__id__": 249
  9345. }
  9346. ],
  9347. "_active": true,
  9348. "_components": [
  9349. {
  9350. "__id__": 252
  9351. },
  9352. {
  9353. "__id__": 253
  9354. },
  9355. {
  9356. "__id__": 254
  9357. }
  9358. ],
  9359. "_prefab": null,
  9360. "_lpos": {
  9361. "__type__": "cc.Vec3",
  9362. "x": 172.5,
  9363. "y": 0,
  9364. "z": 0
  9365. },
  9366. "_lrot": {
  9367. "__type__": "cc.Quat",
  9368. "x": 0,
  9369. "y": 0,
  9370. "z": 0,
  9371. "w": 1
  9372. },
  9373. "_lscale": {
  9374. "__type__": "cc.Vec3",
  9375. "x": 1,
  9376. "y": 1,
  9377. "z": 1
  9378. },
  9379. "_mobility": 0,
  9380. "_layer": 33554432,
  9381. "_euler": {
  9382. "__type__": "cc.Vec3",
  9383. "x": 0,
  9384. "y": 0,
  9385. "z": 0
  9386. },
  9387. "_id": "4a6qdNUKtCdJ0CSwP9Fby3"
  9388. },
  9389. {
  9390. "__type__": "cc.Node",
  9391. "_name": "Lock",
  9392. "_objFlags": 0,
  9393. "__editorExtras__": {},
  9394. "_parent": {
  9395. "__id__": 240
  9396. },
  9397. "_children": [],
  9398. "_active": true,
  9399. "_components": [
  9400. {
  9401. "__id__": 242
  9402. },
  9403. {
  9404. "__id__": 243
  9405. },
  9406. {
  9407. "__id__": 244
  9408. }
  9409. ],
  9410. "_prefab": null,
  9411. "_lpos": {
  9412. "__type__": "cc.Vec3",
  9413. "x": 0,
  9414. "y": 0,
  9415. "z": 0
  9416. },
  9417. "_lrot": {
  9418. "__type__": "cc.Quat",
  9419. "x": 0,
  9420. "y": 0,
  9421. "z": 0,
  9422. "w": 1
  9423. },
  9424. "_lscale": {
  9425. "__type__": "cc.Vec3",
  9426. "x": 1,
  9427. "y": 1,
  9428. "z": 1
  9429. },
  9430. "_mobility": 0,
  9431. "_layer": 33554432,
  9432. "_euler": {
  9433. "__type__": "cc.Vec3",
  9434. "x": 0,
  9435. "y": 0,
  9436. "z": 0
  9437. },
  9438. "_id": "e8LErBEPxGQLZ0DgPYqt5x"
  9439. },
  9440. {
  9441. "__type__": "cc.UITransform",
  9442. "_name": "",
  9443. "_objFlags": 0,
  9444. "__editorExtras__": {},
  9445. "node": {
  9446. "__id__": 241
  9447. },
  9448. "_enabled": true,
  9449. "__prefab": null,
  9450. "_contentSize": {
  9451. "__type__": "cc.Size",
  9452. "width": 68.8,
  9453. "height": 69.6
  9454. },
  9455. "_anchorPoint": {
  9456. "__type__": "cc.Vec2",
  9457. "x": 0.5,
  9458. "y": 0.5
  9459. },
  9460. "_id": "c5efVV98NHgIDrvarjYSZY"
  9461. },
  9462. {
  9463. "__type__": "cc.Sprite",
  9464. "_name": "",
  9465. "_objFlags": 0,
  9466. "__editorExtras__": {},
  9467. "node": {
  9468. "__id__": 241
  9469. },
  9470. "_enabled": true,
  9471. "__prefab": null,
  9472. "_customMaterial": null,
  9473. "_srcBlendFactor": 2,
  9474. "_dstBlendFactor": 4,
  9475. "_color": {
  9476. "__type__": "cc.Color",
  9477. "r": 255,
  9478. "g": 255,
  9479. "b": 255,
  9480. "a": 255
  9481. },
  9482. "_spriteFrame": {
  9483. "__uuid__": "c00b279f-801e-4e6d-a02e-0a9604678070@b7709",
  9484. "__expectedType__": "cc.SpriteFrame"
  9485. },
  9486. "_type": 0,
  9487. "_fillType": 0,
  9488. "_sizeMode": 0,
  9489. "_fillCenter": {
  9490. "__type__": "cc.Vec2",
  9491. "x": 0,
  9492. "y": 0
  9493. },
  9494. "_fillStart": 0,
  9495. "_fillRange": 0,
  9496. "_isTrimmedMode": true,
  9497. "_useGrayscale": false,
  9498. "_atlas": null,
  9499. "_id": "121K0NsAxIG6Xz5WA0bu9l"
  9500. },
  9501. {
  9502. "__type__": "cc.Widget",
  9503. "_name": "",
  9504. "_objFlags": 0,
  9505. "__editorExtras__": {},
  9506. "node": {
  9507. "__id__": 241
  9508. },
  9509. "_enabled": true,
  9510. "__prefab": null,
  9511. "_alignFlags": 45,
  9512. "_target": null,
  9513. "_left": 18.1,
  9514. "_right": 18.1,
  9515. "_top": 25.200000000000003,
  9516. "_bottom": 25.200000000000003,
  9517. "_horizontalCenter": 0,
  9518. "_verticalCenter": 0,
  9519. "_isAbsLeft": true,
  9520. "_isAbsRight": true,
  9521. "_isAbsTop": true,
  9522. "_isAbsBottom": true,
  9523. "_isAbsHorizontalCenter": true,
  9524. "_isAbsVerticalCenter": true,
  9525. "_originalWidth": 80,
  9526. "_originalHeight": 72,
  9527. "_alignMode": 2,
  9528. "_lockFlags": 0,
  9529. "_id": "76C4oe1gtPkJF5CtvxfxmR"
  9530. },
  9531. {
  9532. "__type__": "cc.Node",
  9533. "_name": "Label",
  9534. "_objFlags": 0,
  9535. "__editorExtras__": {},
  9536. "_parent": {
  9537. "__id__": 240
  9538. },
  9539. "_children": [],
  9540. "_active": false,
  9541. "_components": [
  9542. {
  9543. "__id__": 246
  9544. },
  9545. {
  9546. "__id__": 247
  9547. },
  9548. {
  9549. "__id__": 248
  9550. }
  9551. ],
  9552. "_prefab": null,
  9553. "_lpos": {
  9554. "__type__": "cc.Vec3",
  9555. "x": 0,
  9556. "y": -45.357000000000006,
  9557. "z": 0
  9558. },
  9559. "_lrot": {
  9560. "__type__": "cc.Quat",
  9561. "x": 0,
  9562. "y": 0,
  9563. "z": 0,
  9564. "w": 1
  9565. },
  9566. "_lscale": {
  9567. "__type__": "cc.Vec3",
  9568. "x": 1,
  9569. "y": 1,
  9570. "z": 1
  9571. },
  9572. "_mobility": 0,
  9573. "_layer": 33554432,
  9574. "_euler": {
  9575. "__type__": "cc.Vec3",
  9576. "x": 0,
  9577. "y": 0,
  9578. "z": 0
  9579. },
  9580. "_id": "00mHNqmIBGlrl49Vz5zZKV"
  9581. },
  9582. {
  9583. "__type__": "cc.UITransform",
  9584. "_name": "",
  9585. "_objFlags": 0,
  9586. "__editorExtras__": {},
  9587. "node": {
  9588. "__id__": 245
  9589. },
  9590. "_enabled": true,
  9591. "__prefab": null,
  9592. "_contentSize": {
  9593. "__type__": "cc.Size",
  9594. "width": 96,
  9595. "height": 37.8
  9596. },
  9597. "_anchorPoint": {
  9598. "__type__": "cc.Vec2",
  9599. "x": 0.5,
  9600. "y": 0.5
  9601. },
  9602. "_id": "a6TDRhAwJOFpKGBm1Jkjwo"
  9603. },
  9604. {
  9605. "__type__": "cc.Label",
  9606. "_name": "",
  9607. "_objFlags": 0,
  9608. "__editorExtras__": {},
  9609. "node": {
  9610. "__id__": 245
  9611. },
  9612. "_enabled": true,
  9613. "__prefab": null,
  9614. "_customMaterial": null,
  9615. "_srcBlendFactor": 2,
  9616. "_dstBlendFactor": 4,
  9617. "_color": {
  9618. "__type__": "cc.Color",
  9619. "r": 119,
  9620. "g": 255,
  9621. "b": 179,
  9622. "a": 255
  9623. },
  9624. "_string": "解锁卡槽",
  9625. "_horizontalAlign": 1,
  9626. "_verticalAlign": 1,
  9627. "_actualFontSize": 24,
  9628. "_fontSize": 24,
  9629. "_fontFamily": "Arial",
  9630. "_lineHeight": 30,
  9631. "_overflow": 0,
  9632. "_enableWrapText": true,
  9633. "_font": null,
  9634. "_isSystemFontUsed": true,
  9635. "_spacingX": 0,
  9636. "_isItalic": false,
  9637. "_isBold": false,
  9638. "_isUnderline": false,
  9639. "_underlineHeight": 2,
  9640. "_cacheMode": 0,
  9641. "_enableOutline": false,
  9642. "_outlineColor": {
  9643. "__type__": "cc.Color",
  9644. "r": 0,
  9645. "g": 0,
  9646. "b": 0,
  9647. "a": 255
  9648. },
  9649. "_outlineWidth": 2,
  9650. "_enableShadow": false,
  9651. "_shadowColor": {
  9652. "__type__": "cc.Color",
  9653. "r": 0,
  9654. "g": 0,
  9655. "b": 0,
  9656. "a": 255
  9657. },
  9658. "_shadowOffset": {
  9659. "__type__": "cc.Vec2",
  9660. "x": 2,
  9661. "y": 2
  9662. },
  9663. "_shadowBlur": 2,
  9664. "_id": "a5XO5jVTdEzLi8IvCSgGzw"
  9665. },
  9666. {
  9667. "__type__": "cc.Widget",
  9668. "_name": "",
  9669. "_objFlags": 0,
  9670. "__editorExtras__": {},
  9671. "node": {
  9672. "__id__": 245
  9673. },
  9674. "_enabled": true,
  9675. "__prefab": null,
  9676. "_alignFlags": 4,
  9677. "_target": null,
  9678. "_left": 0,
  9679. "_right": 0,
  9680. "_top": 34.8,
  9681. "_bottom": -4.257,
  9682. "_horizontalCenter": 0,
  9683. "_verticalCenter": 0,
  9684. "_isAbsLeft": true,
  9685. "_isAbsRight": true,
  9686. "_isAbsTop": true,
  9687. "_isAbsBottom": true,
  9688. "_isAbsHorizontalCenter": true,
  9689. "_isAbsVerticalCenter": true,
  9690. "_originalWidth": 0,
  9691. "_originalHeight": 0,
  9692. "_alignMode": 2,
  9693. "_lockFlags": 0,
  9694. "_id": "04Iy5squNErbLkG/vkbv5A"
  9695. },
  9696. {
  9697. "__type__": "cc.Node",
  9698. "_name": "Sprite",
  9699. "_objFlags": 0,
  9700. "__editorExtras__": {},
  9701. "_parent": {
  9702. "__id__": 240
  9703. },
  9704. "_children": [],
  9705. "_active": true,
  9706. "_components": [
  9707. {
  9708. "__id__": 250
  9709. },
  9710. {
  9711. "__id__": 251
  9712. }
  9713. ],
  9714. "_prefab": null,
  9715. "_lpos": {
  9716. "__type__": "cc.Vec3",
  9717. "x": 0,
  9718. "y": 0,
  9719. "z": 0
  9720. },
  9721. "_lrot": {
  9722. "__type__": "cc.Quat",
  9723. "x": 0,
  9724. "y": 0,
  9725. "z": 0,
  9726. "w": 1
  9727. },
  9728. "_lscale": {
  9729. "__type__": "cc.Vec3",
  9730. "x": 1,
  9731. "y": 1,
  9732. "z": 1
  9733. },
  9734. "_mobility": 0,
  9735. "_layer": 33554432,
  9736. "_euler": {
  9737. "__type__": "cc.Vec3",
  9738. "x": 0,
  9739. "y": 0,
  9740. "z": 0
  9741. },
  9742. "_id": "45QppLB21IfZa/zW0/Zn6+"
  9743. },
  9744. {
  9745. "__type__": "cc.UITransform",
  9746. "_name": "",
  9747. "_objFlags": 0,
  9748. "__editorExtras__": {},
  9749. "node": {
  9750. "__id__": 249
  9751. },
  9752. "_enabled": true,
  9753. "__prefab": null,
  9754. "_contentSize": {
  9755. "__type__": "cc.Size",
  9756. "width": 105,
  9757. "height": 120
  9758. },
  9759. "_anchorPoint": {
  9760. "__type__": "cc.Vec2",
  9761. "x": 0.5,
  9762. "y": 0.5
  9763. },
  9764. "_id": "d5MAezdyZI+4Wrnxj9jWB3"
  9765. },
  9766. {
  9767. "__type__": "cc.Sprite",
  9768. "_name": "",
  9769. "_objFlags": 0,
  9770. "__editorExtras__": {},
  9771. "node": {
  9772. "__id__": 249
  9773. },
  9774. "_enabled": true,
  9775. "__prefab": null,
  9776. "_customMaterial": null,
  9777. "_srcBlendFactor": 2,
  9778. "_dstBlendFactor": 4,
  9779. "_color": {
  9780. "__type__": "cc.Color",
  9781. "r": 255,
  9782. "g": 255,
  9783. "b": 255,
  9784. "a": 255
  9785. },
  9786. "_spriteFrame": null,
  9787. "_type": 0,
  9788. "_fillType": 0,
  9789. "_sizeMode": 0,
  9790. "_fillCenter": {
  9791. "__type__": "cc.Vec2",
  9792. "x": 0,
  9793. "y": 0
  9794. },
  9795. "_fillStart": 0,
  9796. "_fillRange": 0,
  9797. "_isTrimmedMode": true,
  9798. "_useGrayscale": false,
  9799. "_atlas": null,
  9800. "_id": "e1QmXyjNNORqKCtA7iQIX4"
  9801. },
  9802. {
  9803. "__type__": "cc.UITransform",
  9804. "_name": "",
  9805. "_objFlags": 0,
  9806. "__editorExtras__": {},
  9807. "node": {
  9808. "__id__": 240
  9809. },
  9810. "_enabled": true,
  9811. "__prefab": null,
  9812. "_contentSize": {
  9813. "__type__": "cc.Size",
  9814. "width": 105,
  9815. "height": 120
  9816. },
  9817. "_anchorPoint": {
  9818. "__type__": "cc.Vec2",
  9819. "x": 0.5,
  9820. "y": 0.5
  9821. },
  9822. "_id": "abf6iL7lVBl7zisRX6Sar5"
  9823. },
  9824. {
  9825. "__type__": "cc.Sprite",
  9826. "_name": "",
  9827. "_objFlags": 0,
  9828. "__editorExtras__": {},
  9829. "node": {
  9830. "__id__": 240
  9831. },
  9832. "_enabled": true,
  9833. "__prefab": null,
  9834. "_customMaterial": null,
  9835. "_srcBlendFactor": 2,
  9836. "_dstBlendFactor": 4,
  9837. "_color": {
  9838. "__type__": "cc.Color",
  9839. "r": 255,
  9840. "g": 255,
  9841. "b": 255,
  9842. "a": 255
  9843. },
  9844. "_spriteFrame": {
  9845. "__uuid__": "1ec19ffb-822e-46c7-814a-dc668a04afe9@19380",
  9846. "__expectedType__": "cc.SpriteFrame"
  9847. },
  9848. "_type": 0,
  9849. "_fillType": 0,
  9850. "_sizeMode": 0,
  9851. "_fillCenter": {
  9852. "__type__": "cc.Vec2",
  9853. "x": 0,
  9854. "y": 0
  9855. },
  9856. "_fillStart": 0,
  9857. "_fillRange": 0,
  9858. "_isTrimmedMode": true,
  9859. "_useGrayscale": false,
  9860. "_atlas": null,
  9861. "_id": "96gpqx3hBFP6WyBGErOL7J"
  9862. },
  9863. {
  9864. "__type__": "b20fcvOq2tLbLkioCsV/mHt",
  9865. "_name": "",
  9866. "_objFlags": 0,
  9867. "__editorExtras__": {},
  9868. "node": {
  9869. "__id__": 240
  9870. },
  9871. "_enabled": true,
  9872. "__prefab": null,
  9873. "_id": "09L3nLzlBGKZEJPYlod9n7"
  9874. },
  9875. {
  9876. "__type__": "cc.Node",
  9877. "_name": "Card-005",
  9878. "_objFlags": 0,
  9879. "__editorExtras__": {},
  9880. "_parent": {
  9881. "__id__": 179
  9882. },
  9883. "_children": [
  9884. {
  9885. "__id__": 256
  9886. },
  9887. {
  9888. "__id__": 260
  9889. },
  9890. {
  9891. "__id__": 264
  9892. }
  9893. ],
  9894. "_active": true,
  9895. "_components": [
  9896. {
  9897. "__id__": 267
  9898. },
  9899. {
  9900. "__id__": 268
  9901. },
  9902. {
  9903. "__id__": 269
  9904. }
  9905. ],
  9906. "_prefab": null,
  9907. "_lpos": {
  9908. "__type__": "cc.Vec3",
  9909. "x": 287.5,
  9910. "y": 0,
  9911. "z": 0
  9912. },
  9913. "_lrot": {
  9914. "__type__": "cc.Quat",
  9915. "x": 0,
  9916. "y": 0,
  9917. "z": 0,
  9918. "w": 1
  9919. },
  9920. "_lscale": {
  9921. "__type__": "cc.Vec3",
  9922. "x": 1,
  9923. "y": 1,
  9924. "z": 1
  9925. },
  9926. "_mobility": 0,
  9927. "_layer": 33554432,
  9928. "_euler": {
  9929. "__type__": "cc.Vec3",
  9930. "x": 0,
  9931. "y": 0,
  9932. "z": 0
  9933. },
  9934. "_id": "b0VF6QqphFWo1N/u1+PXtI"
  9935. },
  9936. {
  9937. "__type__": "cc.Node",
  9938. "_name": "Lock",
  9939. "_objFlags": 0,
  9940. "__editorExtras__": {},
  9941. "_parent": {
  9942. "__id__": 255
  9943. },
  9944. "_children": [],
  9945. "_active": true,
  9946. "_components": [
  9947. {
  9948. "__id__": 257
  9949. },
  9950. {
  9951. "__id__": 258
  9952. },
  9953. {
  9954. "__id__": 259
  9955. }
  9956. ],
  9957. "_prefab": null,
  9958. "_lpos": {
  9959. "__type__": "cc.Vec3",
  9960. "x": 0,
  9961. "y": 0,
  9962. "z": 0
  9963. },
  9964. "_lrot": {
  9965. "__type__": "cc.Quat",
  9966. "x": 0,
  9967. "y": 0,
  9968. "z": 0,
  9969. "w": 1
  9970. },
  9971. "_lscale": {
  9972. "__type__": "cc.Vec3",
  9973. "x": 1,
  9974. "y": 1,
  9975. "z": 1
  9976. },
  9977. "_mobility": 0,
  9978. "_layer": 33554432,
  9979. "_euler": {
  9980. "__type__": "cc.Vec3",
  9981. "x": 0,
  9982. "y": 0,
  9983. "z": 0
  9984. },
  9985. "_id": "9duQZA8lVBbKRVl/JrsQfn"
  9986. },
  9987. {
  9988. "__type__": "cc.UITransform",
  9989. "_name": "",
  9990. "_objFlags": 0,
  9991. "__editorExtras__": {},
  9992. "node": {
  9993. "__id__": 256
  9994. },
  9995. "_enabled": true,
  9996. "__prefab": null,
  9997. "_contentSize": {
  9998. "__type__": "cc.Size",
  9999. "width": 68.8,
  10000. "height": 69.6
  10001. },
  10002. "_anchorPoint": {
  10003. "__type__": "cc.Vec2",
  10004. "x": 0.5,
  10005. "y": 0.5
  10006. },
  10007. "_id": "17/Y9VX9BNz7RmoxWzfB8a"
  10008. },
  10009. {
  10010. "__type__": "cc.Sprite",
  10011. "_name": "",
  10012. "_objFlags": 0,
  10013. "__editorExtras__": {},
  10014. "node": {
  10015. "__id__": 256
  10016. },
  10017. "_enabled": true,
  10018. "__prefab": null,
  10019. "_customMaterial": null,
  10020. "_srcBlendFactor": 2,
  10021. "_dstBlendFactor": 4,
  10022. "_color": {
  10023. "__type__": "cc.Color",
  10024. "r": 255,
  10025. "g": 255,
  10026. "b": 255,
  10027. "a": 255
  10028. },
  10029. "_spriteFrame": {
  10030. "__uuid__": "c00b279f-801e-4e6d-a02e-0a9604678070@b7709",
  10031. "__expectedType__": "cc.SpriteFrame"
  10032. },
  10033. "_type": 0,
  10034. "_fillType": 0,
  10035. "_sizeMode": 0,
  10036. "_fillCenter": {
  10037. "__type__": "cc.Vec2",
  10038. "x": 0,
  10039. "y": 0
  10040. },
  10041. "_fillStart": 0,
  10042. "_fillRange": 0,
  10043. "_isTrimmedMode": true,
  10044. "_useGrayscale": false,
  10045. "_atlas": null,
  10046. "_id": "6ay/AS5VdJ4IC/m6wijcnc"
  10047. },
  10048. {
  10049. "__type__": "cc.Widget",
  10050. "_name": "",
  10051. "_objFlags": 0,
  10052. "__editorExtras__": {},
  10053. "node": {
  10054. "__id__": 256
  10055. },
  10056. "_enabled": true,
  10057. "__prefab": null,
  10058. "_alignFlags": 45,
  10059. "_target": null,
  10060. "_left": 18.1,
  10061. "_right": 18.1,
  10062. "_top": 25.200000000000003,
  10063. "_bottom": 25.200000000000003,
  10064. "_horizontalCenter": 0,
  10065. "_verticalCenter": 0,
  10066. "_isAbsLeft": true,
  10067. "_isAbsRight": true,
  10068. "_isAbsTop": true,
  10069. "_isAbsBottom": true,
  10070. "_isAbsHorizontalCenter": true,
  10071. "_isAbsVerticalCenter": true,
  10072. "_originalWidth": 80,
  10073. "_originalHeight": 72,
  10074. "_alignMode": 2,
  10075. "_lockFlags": 0,
  10076. "_id": "afqYJgCklNi4LSYYgM9DN8"
  10077. },
  10078. {
  10079. "__type__": "cc.Node",
  10080. "_name": "Label",
  10081. "_objFlags": 0,
  10082. "__editorExtras__": {},
  10083. "_parent": {
  10084. "__id__": 255
  10085. },
  10086. "_children": [],
  10087. "_active": false,
  10088. "_components": [
  10089. {
  10090. "__id__": 261
  10091. },
  10092. {
  10093. "__id__": 262
  10094. },
  10095. {
  10096. "__id__": 263
  10097. }
  10098. ],
  10099. "_prefab": null,
  10100. "_lpos": {
  10101. "__type__": "cc.Vec3",
  10102. "x": 0,
  10103. "y": -45.357000000000006,
  10104. "z": 0
  10105. },
  10106. "_lrot": {
  10107. "__type__": "cc.Quat",
  10108. "x": 0,
  10109. "y": 0,
  10110. "z": 0,
  10111. "w": 1
  10112. },
  10113. "_lscale": {
  10114. "__type__": "cc.Vec3",
  10115. "x": 1,
  10116. "y": 1,
  10117. "z": 1
  10118. },
  10119. "_mobility": 0,
  10120. "_layer": 33554432,
  10121. "_euler": {
  10122. "__type__": "cc.Vec3",
  10123. "x": 0,
  10124. "y": 0,
  10125. "z": 0
  10126. },
  10127. "_id": "7eFkdItltBo7rQzFtIJ5D1"
  10128. },
  10129. {
  10130. "__type__": "cc.UITransform",
  10131. "_name": "",
  10132. "_objFlags": 0,
  10133. "__editorExtras__": {},
  10134. "node": {
  10135. "__id__": 260
  10136. },
  10137. "_enabled": true,
  10138. "__prefab": null,
  10139. "_contentSize": {
  10140. "__type__": "cc.Size",
  10141. "width": 96,
  10142. "height": 37.8
  10143. },
  10144. "_anchorPoint": {
  10145. "__type__": "cc.Vec2",
  10146. "x": 0.5,
  10147. "y": 0.5
  10148. },
  10149. "_id": "21BGL3dH9ORaQms5+LpA9c"
  10150. },
  10151. {
  10152. "__type__": "cc.Label",
  10153. "_name": "",
  10154. "_objFlags": 0,
  10155. "__editorExtras__": {},
  10156. "node": {
  10157. "__id__": 260
  10158. },
  10159. "_enabled": true,
  10160. "__prefab": null,
  10161. "_customMaterial": null,
  10162. "_srcBlendFactor": 2,
  10163. "_dstBlendFactor": 4,
  10164. "_color": {
  10165. "__type__": "cc.Color",
  10166. "r": 119,
  10167. "g": 255,
  10168. "b": 179,
  10169. "a": 255
  10170. },
  10171. "_string": "解锁卡槽",
  10172. "_horizontalAlign": 1,
  10173. "_verticalAlign": 1,
  10174. "_actualFontSize": 24,
  10175. "_fontSize": 24,
  10176. "_fontFamily": "Arial",
  10177. "_lineHeight": 30,
  10178. "_overflow": 0,
  10179. "_enableWrapText": true,
  10180. "_font": null,
  10181. "_isSystemFontUsed": true,
  10182. "_spacingX": 0,
  10183. "_isItalic": false,
  10184. "_isBold": false,
  10185. "_isUnderline": false,
  10186. "_underlineHeight": 2,
  10187. "_cacheMode": 0,
  10188. "_enableOutline": false,
  10189. "_outlineColor": {
  10190. "__type__": "cc.Color",
  10191. "r": 0,
  10192. "g": 0,
  10193. "b": 0,
  10194. "a": 255
  10195. },
  10196. "_outlineWidth": 2,
  10197. "_enableShadow": false,
  10198. "_shadowColor": {
  10199. "__type__": "cc.Color",
  10200. "r": 0,
  10201. "g": 0,
  10202. "b": 0,
  10203. "a": 255
  10204. },
  10205. "_shadowOffset": {
  10206. "__type__": "cc.Vec2",
  10207. "x": 2,
  10208. "y": 2
  10209. },
  10210. "_shadowBlur": 2,
  10211. "_id": "27ZtIbgGJB05Qrhi64gEKw"
  10212. },
  10213. {
  10214. "__type__": "cc.Widget",
  10215. "_name": "",
  10216. "_objFlags": 0,
  10217. "__editorExtras__": {},
  10218. "node": {
  10219. "__id__": 260
  10220. },
  10221. "_enabled": true,
  10222. "__prefab": null,
  10223. "_alignFlags": 4,
  10224. "_target": null,
  10225. "_left": 0,
  10226. "_right": 0,
  10227. "_top": 34.8,
  10228. "_bottom": -4.257,
  10229. "_horizontalCenter": 0,
  10230. "_verticalCenter": 0,
  10231. "_isAbsLeft": true,
  10232. "_isAbsRight": true,
  10233. "_isAbsTop": true,
  10234. "_isAbsBottom": true,
  10235. "_isAbsHorizontalCenter": true,
  10236. "_isAbsVerticalCenter": true,
  10237. "_originalWidth": 0,
  10238. "_originalHeight": 0,
  10239. "_alignMode": 2,
  10240. "_lockFlags": 0,
  10241. "_id": "01F3D/3+1L+7Qbn84CCc/T"
  10242. },
  10243. {
  10244. "__type__": "cc.Node",
  10245. "_name": "Sprite",
  10246. "_objFlags": 0,
  10247. "__editorExtras__": {},
  10248. "_parent": {
  10249. "__id__": 255
  10250. },
  10251. "_children": [],
  10252. "_active": true,
  10253. "_components": [
  10254. {
  10255. "__id__": 265
  10256. },
  10257. {
  10258. "__id__": 266
  10259. }
  10260. ],
  10261. "_prefab": null,
  10262. "_lpos": {
  10263. "__type__": "cc.Vec3",
  10264. "x": 0,
  10265. "y": 0,
  10266. "z": 0
  10267. },
  10268. "_lrot": {
  10269. "__type__": "cc.Quat",
  10270. "x": 0,
  10271. "y": 0,
  10272. "z": 0,
  10273. "w": 1
  10274. },
  10275. "_lscale": {
  10276. "__type__": "cc.Vec3",
  10277. "x": 1,
  10278. "y": 1,
  10279. "z": 1
  10280. },
  10281. "_mobility": 0,
  10282. "_layer": 33554432,
  10283. "_euler": {
  10284. "__type__": "cc.Vec3",
  10285. "x": 0,
  10286. "y": 0,
  10287. "z": 0
  10288. },
  10289. "_id": "21oMJd2JVO84DFY1LkjVRx"
  10290. },
  10291. {
  10292. "__type__": "cc.UITransform",
  10293. "_name": "",
  10294. "_objFlags": 0,
  10295. "__editorExtras__": {},
  10296. "node": {
  10297. "__id__": 264
  10298. },
  10299. "_enabled": true,
  10300. "__prefab": null,
  10301. "_contentSize": {
  10302. "__type__": "cc.Size",
  10303. "width": 105,
  10304. "height": 120
  10305. },
  10306. "_anchorPoint": {
  10307. "__type__": "cc.Vec2",
  10308. "x": 0.5,
  10309. "y": 0.5
  10310. },
  10311. "_id": "9c09KmPBVLNJUYUiqS7+SA"
  10312. },
  10313. {
  10314. "__type__": "cc.Sprite",
  10315. "_name": "",
  10316. "_objFlags": 0,
  10317. "__editorExtras__": {},
  10318. "node": {
  10319. "__id__": 264
  10320. },
  10321. "_enabled": true,
  10322. "__prefab": null,
  10323. "_customMaterial": null,
  10324. "_srcBlendFactor": 2,
  10325. "_dstBlendFactor": 4,
  10326. "_color": {
  10327. "__type__": "cc.Color",
  10328. "r": 255,
  10329. "g": 255,
  10330. "b": 255,
  10331. "a": 255
  10332. },
  10333. "_spriteFrame": null,
  10334. "_type": 0,
  10335. "_fillType": 0,
  10336. "_sizeMode": 0,
  10337. "_fillCenter": {
  10338. "__type__": "cc.Vec2",
  10339. "x": 0,
  10340. "y": 0
  10341. },
  10342. "_fillStart": 0,
  10343. "_fillRange": 0,
  10344. "_isTrimmedMode": true,
  10345. "_useGrayscale": false,
  10346. "_atlas": null,
  10347. "_id": "d4yNkVqr9CYJIhJHSVk1UI"
  10348. },
  10349. {
  10350. "__type__": "cc.UITransform",
  10351. "_name": "",
  10352. "_objFlags": 0,
  10353. "__editorExtras__": {},
  10354. "node": {
  10355. "__id__": 255
  10356. },
  10357. "_enabled": true,
  10358. "__prefab": null,
  10359. "_contentSize": {
  10360. "__type__": "cc.Size",
  10361. "width": 105,
  10362. "height": 120
  10363. },
  10364. "_anchorPoint": {
  10365. "__type__": "cc.Vec2",
  10366. "x": 0.5,
  10367. "y": 0.5
  10368. },
  10369. "_id": "abBbMCUUVOUawoNL5V3J4c"
  10370. },
  10371. {
  10372. "__type__": "cc.Sprite",
  10373. "_name": "",
  10374. "_objFlags": 0,
  10375. "__editorExtras__": {},
  10376. "node": {
  10377. "__id__": 255
  10378. },
  10379. "_enabled": true,
  10380. "__prefab": null,
  10381. "_customMaterial": null,
  10382. "_srcBlendFactor": 2,
  10383. "_dstBlendFactor": 4,
  10384. "_color": {
  10385. "__type__": "cc.Color",
  10386. "r": 255,
  10387. "g": 255,
  10388. "b": 255,
  10389. "a": 255
  10390. },
  10391. "_spriteFrame": {
  10392. "__uuid__": "1ec19ffb-822e-46c7-814a-dc668a04afe9@19380",
  10393. "__expectedType__": "cc.SpriteFrame"
  10394. },
  10395. "_type": 0,
  10396. "_fillType": 0,
  10397. "_sizeMode": 0,
  10398. "_fillCenter": {
  10399. "__type__": "cc.Vec2",
  10400. "x": 0,
  10401. "y": 0
  10402. },
  10403. "_fillStart": 0,
  10404. "_fillRange": 0,
  10405. "_isTrimmedMode": true,
  10406. "_useGrayscale": false,
  10407. "_atlas": null,
  10408. "_id": "0dwEaR8/ZJNZ7KhGFDH/Xn"
  10409. },
  10410. {
  10411. "__type__": "b20fcvOq2tLbLkioCsV/mHt",
  10412. "_name": "",
  10413. "_objFlags": 0,
  10414. "__editorExtras__": {},
  10415. "node": {
  10416. "__id__": 255
  10417. },
  10418. "_enabled": true,
  10419. "__prefab": null,
  10420. "_id": "ecaDz8cYFJM6KgYsKtt+WW"
  10421. },
  10422. {
  10423. "__type__": "cc.UITransform",
  10424. "_name": "",
  10425. "_objFlags": 0,
  10426. "__editorExtras__": {},
  10427. "node": {
  10428. "__id__": 179
  10429. },
  10430. "_enabled": true,
  10431. "__prefab": null,
  10432. "_contentSize": {
  10433. "__type__": "cc.Size",
  10434. "width": 700,
  10435. "height": 150
  10436. },
  10437. "_anchorPoint": {
  10438. "__type__": "cc.Vec2",
  10439. "x": 0.5,
  10440. "y": 0.5
  10441. },
  10442. "_id": "ddkqt/0q9AVryxuVdwlTsZ"
  10443. },
  10444. {
  10445. "__type__": "cc.Sprite",
  10446. "_name": "",
  10447. "_objFlags": 0,
  10448. "__editorExtras__": {},
  10449. "node": {
  10450. "__id__": 179
  10451. },
  10452. "_enabled": true,
  10453. "__prefab": null,
  10454. "_customMaterial": null,
  10455. "_srcBlendFactor": 2,
  10456. "_dstBlendFactor": 4,
  10457. "_color": {
  10458. "__type__": "cc.Color",
  10459. "r": 255,
  10460. "g": 255,
  10461. "b": 255,
  10462. "a": 255
  10463. },
  10464. "_spriteFrame": {
  10465. "__uuid__": "1ec19ffb-822e-46c7-814a-dc668a04afe9@19380",
  10466. "__expectedType__": "cc.SpriteFrame"
  10467. },
  10468. "_type": 0,
  10469. "_fillType": 0,
  10470. "_sizeMode": 0,
  10471. "_fillCenter": {
  10472. "__type__": "cc.Vec2",
  10473. "x": 0,
  10474. "y": 0
  10475. },
  10476. "_fillStart": 0,
  10477. "_fillRange": 0,
  10478. "_isTrimmedMode": true,
  10479. "_useGrayscale": false,
  10480. "_atlas": null,
  10481. "_id": "47FHRhWBFGnqQl7CoDxNcR"
  10482. },
  10483. {
  10484. "__type__": "cc.Widget",
  10485. "_name": "",
  10486. "_objFlags": 0,
  10487. "__editorExtras__": {},
  10488. "node": {
  10489. "__id__": 179
  10490. },
  10491. "_enabled": true,
  10492. "__prefab": null,
  10493. "_alignFlags": 37,
  10494. "_target": null,
  10495. "_left": 290,
  10496. "_right": 165,
  10497. "_top": 15,
  10498. "_bottom": 15,
  10499. "_horizontalCenter": 0,
  10500. "_verticalCenter": 0,
  10501. "_isAbsLeft": true,
  10502. "_isAbsRight": true,
  10503. "_isAbsTop": true,
  10504. "_isAbsBottom": true,
  10505. "_isAbsHorizontalCenter": true,
  10506. "_isAbsVerticalCenter": true,
  10507. "_originalWidth": 0,
  10508. "_originalHeight": 150,
  10509. "_alignMode": 2,
  10510. "_lockFlags": 0,
  10511. "_id": "7fE2499LhE2oURZqe3ITG0"
  10512. },
  10513. {
  10514. "__type__": "cc.Layout",
  10515. "_name": "",
  10516. "_objFlags": 0,
  10517. "__editorExtras__": {},
  10518. "node": {
  10519. "__id__": 179
  10520. },
  10521. "_enabled": true,
  10522. "__prefab": null,
  10523. "_resizeMode": 0,
  10524. "_layoutType": 1,
  10525. "_cellSize": {
  10526. "__type__": "cc.Size",
  10527. "width": 40,
  10528. "height": 40
  10529. },
  10530. "_startAxis": 0,
  10531. "_paddingLeft": 10,
  10532. "_paddingRight": 10,
  10533. "_paddingTop": 0,
  10534. "_paddingBottom": 0,
  10535. "_spacingX": 10,
  10536. "_spacingY": 0,
  10537. "_verticalDirection": 1,
  10538. "_horizontalDirection": 0,
  10539. "_constraint": 2,
  10540. "_constraintNum": 6,
  10541. "_affectedByScale": false,
  10542. "_isAlign": false,
  10543. "_id": "d0+3H07XlHoIA4TKNaSwHM"
  10544. },
  10545. {
  10546. "__type__": "0630eRYV9FMoIYWAIIeKBU+",
  10547. "_name": "",
  10548. "_objFlags": 0,
  10549. "__editorExtras__": {},
  10550. "node": {
  10551. "__id__": 179
  10552. },
  10553. "_enabled": true,
  10554. "__prefab": null,
  10555. "_id": "31/ppe5HVHp6b1OGppa9b8"
  10556. },
  10557. {
  10558. "__type__": "cc.Node",
  10559. "_name": "BtnNext",
  10560. "_objFlags": 0,
  10561. "__editorExtras__": {},
  10562. "_parent": {
  10563. "__id__": 150
  10564. },
  10565. "_children": [],
  10566. "_active": true,
  10567. "_components": [
  10568. {
  10569. "__id__": 276
  10570. },
  10571. {
  10572. "__id__": 277
  10573. },
  10574. {
  10575. "__id__": 278
  10576. },
  10577. {
  10578. "__id__": 279
  10579. }
  10580. ],
  10581. "_prefab": null,
  10582. "_lpos": {
  10583. "__type__": "cc.Vec3",
  10584. "x": 552,
  10585. "y": 0,
  10586. "z": 0
  10587. },
  10588. "_lrot": {
  10589. "__type__": "cc.Quat",
  10590. "x": 0,
  10591. "y": 0,
  10592. "z": 0,
  10593. "w": 1
  10594. },
  10595. "_lscale": {
  10596. "__type__": "cc.Vec3",
  10597. "x": 1,
  10598. "y": 1,
  10599. "z": 1
  10600. },
  10601. "_mobility": 0,
  10602. "_layer": 33554432,
  10603. "_euler": {
  10604. "__type__": "cc.Vec3",
  10605. "x": 0,
  10606. "y": 0,
  10607. "z": 0
  10608. },
  10609. "_id": "c5P9Y2KEVNCan3c/jbmP14"
  10610. },
  10611. {
  10612. "__type__": "cc.UITransform",
  10613. "_name": "",
  10614. "_objFlags": 0,
  10615. "__editorExtras__": {},
  10616. "node": {
  10617. "__id__": 275
  10618. },
  10619. "_enabled": true,
  10620. "__prefab": null,
  10621. "_contentSize": {
  10622. "__type__": "cc.Size",
  10623. "width": 120,
  10624. "height": 40.5
  10625. },
  10626. "_anchorPoint": {
  10627. "__type__": "cc.Vec2",
  10628. "x": 0.5,
  10629. "y": 0.5
  10630. },
  10631. "_id": "daQiZ0M+lDdYHSlNzMFltL"
  10632. },
  10633. {
  10634. "__type__": "cc.Sprite",
  10635. "_name": "",
  10636. "_objFlags": 0,
  10637. "__editorExtras__": {},
  10638. "node": {
  10639. "__id__": 275
  10640. },
  10641. "_enabled": true,
  10642. "__prefab": null,
  10643. "_customMaterial": null,
  10644. "_srcBlendFactor": 2,
  10645. "_dstBlendFactor": 4,
  10646. "_color": {
  10647. "__type__": "cc.Color",
  10648. "r": 255,
  10649. "g": 255,
  10650. "b": 255,
  10651. "a": 255
  10652. },
  10653. "_spriteFrame": {
  10654. "__uuid__": "c00b279f-801e-4e6d-a02e-0a9604678070@796e1",
  10655. "__expectedType__": "cc.SpriteFrame"
  10656. },
  10657. "_type": 1,
  10658. "_fillType": 0,
  10659. "_sizeMode": 0,
  10660. "_fillCenter": {
  10661. "__type__": "cc.Vec2",
  10662. "x": 0,
  10663. "y": 0
  10664. },
  10665. "_fillStart": 0,
  10666. "_fillRange": 0,
  10667. "_isTrimmedMode": true,
  10668. "_useGrayscale": false,
  10669. "_atlas": null,
  10670. "_id": "4eAbfsHQdNuKEVYZ4JPDtl"
  10671. },
  10672. {
  10673. "__type__": "cc.Button",
  10674. "_name": "",
  10675. "_objFlags": 0,
  10676. "__editorExtras__": {},
  10677. "node": {
  10678. "__id__": 275
  10679. },
  10680. "_enabled": true,
  10681. "__prefab": null,
  10682. "clickEvents": [],
  10683. "_interactable": true,
  10684. "_transition": 3,
  10685. "_normalColor": {
  10686. "__type__": "cc.Color",
  10687. "r": 214,
  10688. "g": 214,
  10689. "b": 214,
  10690. "a": 255
  10691. },
  10692. "_hoverColor": {
  10693. "__type__": "cc.Color",
  10694. "r": 211,
  10695. "g": 211,
  10696. "b": 211,
  10697. "a": 255
  10698. },
  10699. "_pressedColor": {
  10700. "__type__": "cc.Color",
  10701. "r": 255,
  10702. "g": 255,
  10703. "b": 255,
  10704. "a": 255
  10705. },
  10706. "_disabledColor": {
  10707. "__type__": "cc.Color",
  10708. "r": 124,
  10709. "g": 124,
  10710. "b": 124,
  10711. "a": 255
  10712. },
  10713. "_normalSprite": null,
  10714. "_hoverSprite": null,
  10715. "_pressedSprite": null,
  10716. "_disabledSprite": null,
  10717. "_duration": 0.1,
  10718. "_zoomScale": 1.2,
  10719. "_target": {
  10720. "__id__": 275
  10721. },
  10722. "_id": "c99OFaHFpCH7WZUZDF/L+8"
  10723. },
  10724. {
  10725. "__type__": "cc.Widget",
  10726. "_name": "",
  10727. "_objFlags": 0,
  10728. "__editorExtras__": {},
  10729. "node": {
  10730. "__id__": 275
  10731. },
  10732. "_enabled": true,
  10733. "__prefab": null,
  10734. "_alignFlags": 32,
  10735. "_target": null,
  10736. "_left": 0,
  10737. "_right": 28,
  10738. "_top": 0,
  10739. "_bottom": 0,
  10740. "_horizontalCenter": 0,
  10741. "_verticalCenter": 0,
  10742. "_isAbsLeft": true,
  10743. "_isAbsRight": true,
  10744. "_isAbsTop": true,
  10745. "_isAbsBottom": true,
  10746. "_isAbsHorizontalCenter": true,
  10747. "_isAbsVerticalCenter": true,
  10748. "_originalWidth": 0,
  10749. "_originalHeight": 0,
  10750. "_alignMode": 2,
  10751. "_lockFlags": 0,
  10752. "_id": "f93d7P51ZKr40rQdxks0UK"
  10753. },
  10754. {
  10755. "__type__": "cc.Node",
  10756. "_name": "TouchMgr",
  10757. "_objFlags": 0,
  10758. "__editorExtras__": {},
  10759. "_parent": {
  10760. "__id__": 150
  10761. },
  10762. "_children": [],
  10763. "_active": true,
  10764. "_components": [
  10765. {
  10766. "__id__": 281
  10767. },
  10768. {
  10769. "__id__": 282
  10770. },
  10771. {
  10772. "__id__": 283
  10773. }
  10774. ],
  10775. "_prefab": null,
  10776. "_lpos": {
  10777. "__type__": "cc.Vec3",
  10778. "x": 125,
  10779. "y": 0,
  10780. "z": 0
  10781. },
  10782. "_lrot": {
  10783. "__type__": "cc.Quat",
  10784. "x": 0,
  10785. "y": 0,
  10786. "z": 0,
  10787. "w": 1
  10788. },
  10789. "_lscale": {
  10790. "__type__": "cc.Vec3",
  10791. "x": 1,
  10792. "y": 1,
  10793. "z": 1
  10794. },
  10795. "_mobility": 0,
  10796. "_layer": 33554432,
  10797. "_euler": {
  10798. "__type__": "cc.Vec3",
  10799. "x": 0,
  10800. "y": 0,
  10801. "z": 0
  10802. },
  10803. "_id": "06tJTECNBKtbg+j/X7fvzQ"
  10804. },
  10805. {
  10806. "__type__": "cc.UITransform",
  10807. "_name": "",
  10808. "_objFlags": 0,
  10809. "__editorExtras__": {},
  10810. "node": {
  10811. "__id__": 280
  10812. },
  10813. "_enabled": true,
  10814. "__prefab": null,
  10815. "_contentSize": {
  10816. "__type__": "cc.Size",
  10817. "width": 700,
  10818. "height": 180
  10819. },
  10820. "_anchorPoint": {
  10821. "__type__": "cc.Vec2",
  10822. "x": 0.5,
  10823. "y": 0.5
  10824. },
  10825. "_id": "daqcOwNYVP27U1wf+jSdg6"
  10826. },
  10827. {
  10828. "__type__": "cc.Widget",
  10829. "_name": "",
  10830. "_objFlags": 0,
  10831. "__editorExtras__": {},
  10832. "node": {
  10833. "__id__": 280
  10834. },
  10835. "_enabled": true,
  10836. "__prefab": null,
  10837. "_alignFlags": 13,
  10838. "_target": null,
  10839. "_left": 415,
  10840. "_right": 1180,
  10841. "_top": 0,
  10842. "_bottom": 0,
  10843. "_horizontalCenter": 0,
  10844. "_verticalCenter": 0,
  10845. "_isAbsLeft": true,
  10846. "_isAbsRight": true,
  10847. "_isAbsTop": true,
  10848. "_isAbsBottom": true,
  10849. "_isAbsHorizontalCenter": true,
  10850. "_isAbsVerticalCenter": true,
  10851. "_originalWidth": 100,
  10852. "_originalHeight": 177.017,
  10853. "_alignMode": 2,
  10854. "_lockFlags": 0,
  10855. "_id": "d1BAEm6GJMpKHI8Ho5Mrse"
  10856. },
  10857. {
  10858. "__type__": "d593cnOtxlN2onPzNIwsDkH",
  10859. "_name": "",
  10860. "_objFlags": 0,
  10861. "__editorExtras__": {},
  10862. "node": {
  10863. "__id__": 280
  10864. },
  10865. "_enabled": true,
  10866. "__prefab": null,
  10867. "_id": "0all4d7eNBRJ2BuLsLDoSk"
  10868. },
  10869. {
  10870. "__type__": "cc.UITransform",
  10871. "_name": "",
  10872. "_objFlags": 0,
  10873. "__editorExtras__": {},
  10874. "node": {
  10875. "__id__": 150
  10876. },
  10877. "_enabled": true,
  10878. "__prefab": null,
  10879. "_contentSize": {
  10880. "__type__": "cc.Size",
  10881. "width": 1280,
  10882. "height": 180
  10883. },
  10884. "_anchorPoint": {
  10885. "__type__": "cc.Vec2",
  10886. "x": 0.5,
  10887. "y": 0.5
  10888. },
  10889. "_id": "e18OD+gaVG4ZNqCtnvJh1A"
  10890. },
  10891. {
  10892. "__type__": "cc.Sprite",
  10893. "_name": "",
  10894. "_objFlags": 0,
  10895. "__editorExtras__": {},
  10896. "node": {
  10897. "__id__": 150
  10898. },
  10899. "_enabled": true,
  10900. "__prefab": null,
  10901. "_customMaterial": null,
  10902. "_srcBlendFactor": 2,
  10903. "_dstBlendFactor": 4,
  10904. "_color": {
  10905. "__type__": "cc.Color",
  10906. "r": 117,
  10907. "g": 113,
  10908. "b": 113,
  10909. "a": 255
  10910. },
  10911. "_spriteFrame": {
  10912. "__uuid__": "1ec19ffb-822e-46c7-814a-dc668a04afe9@cd29a",
  10913. "__expectedType__": "cc.SpriteFrame"
  10914. },
  10915. "_type": 0,
  10916. "_fillType": 0,
  10917. "_sizeMode": 0,
  10918. "_fillCenter": {
  10919. "__type__": "cc.Vec2",
  10920. "x": 0,
  10921. "y": 0
  10922. },
  10923. "_fillStart": 0,
  10924. "_fillRange": 0,
  10925. "_isTrimmedMode": true,
  10926. "_useGrayscale": false,
  10927. "_atlas": null,
  10928. "_id": "e1X6TvE79AzIE6pIe6/ts7"
  10929. },
  10930. {
  10931. "__type__": "cc.Widget",
  10932. "_name": "",
  10933. "_objFlags": 0,
  10934. "__editorExtras__": {},
  10935. "node": {
  10936. "__id__": 150
  10937. },
  10938. "_enabled": true,
  10939. "__prefab": null,
  10940. "_alignFlags": 44,
  10941. "_target": null,
  10942. "_left": 0,
  10943. "_right": 0,
  10944. "_top": 0,
  10945. "_bottom": 0,
  10946. "_horizontalCenter": 0,
  10947. "_verticalCenter": 0,
  10948. "_isAbsLeft": true,
  10949. "_isAbsRight": true,
  10950. "_isAbsTop": true,
  10951. "_isAbsBottom": true,
  10952. "_isAbsHorizontalCenter": true,
  10953. "_isAbsVerticalCenter": true,
  10954. "_originalWidth": 1280,
  10955. "_originalHeight": 0,
  10956. "_alignMode": 2,
  10957. "_lockFlags": 0,
  10958. "_id": "69NATXW4BNL7nH+tSj1J1b"
  10959. },
  10960. {
  10961. "__type__": "c86457na9BNjrXQQUzGxgj1",
  10962. "_name": "",
  10963. "_objFlags": 0,
  10964. "__editorExtras__": {},
  10965. "node": {
  10966. "__id__": 150
  10967. },
  10968. "_enabled": true,
  10969. "__prefab": null,
  10970. "_id": "a3BIOfJ61Pn4Y1bRR3UKSZ"
  10971. },
  10972. {
  10973. "__type__": "cc.UITransform",
  10974. "_name": "",
  10975. "_objFlags": 0,
  10976. "__editorExtras__": {},
  10977. "node": {
  10978. "__id__": 97
  10979. },
  10980. "_enabled": true,
  10981. "__prefab": null,
  10982. "_contentSize": {
  10983. "__type__": "cc.Size",
  10984. "width": 1280,
  10985. "height": 720
  10986. },
  10987. "_anchorPoint": {
  10988. "__type__": "cc.Vec2",
  10989. "x": 0.5,
  10990. "y": 0.5
  10991. },
  10992. "_id": "4e6WhYSHNJVK8IQ3P77UUn"
  10993. },
  10994. {
  10995. "__type__": "cc.Widget",
  10996. "_name": "",
  10997. "_objFlags": 0,
  10998. "__editorExtras__": {},
  10999. "node": {
  11000. "__id__": 97
  11001. },
  11002. "_enabled": true,
  11003. "__prefab": null,
  11004. "_alignFlags": 45,
  11005. "_target": {
  11006. "__id__": 5
  11007. },
  11008. "_left": 0,
  11009. "_right": 0,
  11010. "_top": 0,
  11011. "_bottom": 0,
  11012. "_horizontalCenter": 0,
  11013. "_verticalCenter": 0,
  11014. "_isAbsLeft": true,
  11015. "_isAbsRight": true,
  11016. "_isAbsTop": true,
  11017. "_isAbsBottom": true,
  11018. "_isAbsHorizontalCenter": true,
  11019. "_isAbsVerticalCenter": true,
  11020. "_originalWidth": 100,
  11021. "_originalHeight": 100,
  11022. "_alignMode": 2,
  11023. "_lockFlags": 0,
  11024. "_id": "4cKqP5zRZMQIH1jaBeGYgE"
  11025. },
  11026. {
  11027. "__type__": "396408yA2VB1JTd4KlZ/lws",
  11028. "_name": "",
  11029. "_objFlags": 0,
  11030. "__editorExtras__": {},
  11031. "node": {
  11032. "__id__": 97
  11033. },
  11034. "_enabled": true,
  11035. "__prefab": null,
  11036. "_id": "cauJW4fFxMYbvm/ojqb8qy"
  11037. },
  11038. {
  11039. "__type__": "cc.Sprite",
  11040. "_name": "",
  11041. "_objFlags": 0,
  11042. "__editorExtras__": {},
  11043. "node": {
  11044. "__id__": 97
  11045. },
  11046. "_enabled": true,
  11047. "__prefab": null,
  11048. "_customMaterial": null,
  11049. "_srcBlendFactor": 2,
  11050. "_dstBlendFactor": 4,
  11051. "_color": {
  11052. "__type__": "cc.Color",
  11053. "r": 255,
  11054. "g": 255,
  11055. "b": 255,
  11056. "a": 255
  11057. },
  11058. "_spriteFrame": {
  11059. "__uuid__": "1ec19ffb-822e-46c7-814a-dc668a04afe9@79756",
  11060. "__expectedType__": "cc.SpriteFrame"
  11061. },
  11062. "_type": 0,
  11063. "_fillType": 0,
  11064. "_sizeMode": 0,
  11065. "_fillCenter": {
  11066. "__type__": "cc.Vec2",
  11067. "x": 0,
  11068. "y": 0
  11069. },
  11070. "_fillStart": 0,
  11071. "_fillRange": 0,
  11072. "_isTrimmedMode": true,
  11073. "_useGrayscale": false,
  11074. "_atlas": null,
  11075. "_id": "c1LTjCAtpMlZuTF/mJKncq"
  11076. },
  11077. {
  11078. "__type__": "cc.Node",
  11079. "_name": "BattleScene_Top",
  11080. "_objFlags": 0,
  11081. "__editorExtras__": {},
  11082. "_parent": {
  11083. "__id__": 5
  11084. },
  11085. "_children": [
  11086. {
  11087. "__id__": 293
  11088. },
  11089. {
  11090. "__id__": 298
  11091. },
  11092. {
  11093. "__id__": 310
  11094. },
  11095. {
  11096. "__id__": 322
  11097. }
  11098. ],
  11099. "_active": true,
  11100. "_components": [
  11101. {
  11102. "__id__": 326
  11103. },
  11104. {
  11105. "__id__": 327
  11106. },
  11107. {
  11108. "__id__": 328
  11109. },
  11110. {
  11111. "__id__": 329
  11112. }
  11113. ],
  11114. "_prefab": null,
  11115. "_lpos": {
  11116. "__type__": "cc.Vec3",
  11117. "x": 0,
  11118. "y": 300,
  11119. "z": 0
  11120. },
  11121. "_lrot": {
  11122. "__type__": "cc.Quat",
  11123. "x": 0,
  11124. "y": 0,
  11125. "z": 0,
  11126. "w": 1
  11127. },
  11128. "_lscale": {
  11129. "__type__": "cc.Vec3",
  11130. "x": 1,
  11131. "y": 1,
  11132. "z": 1
  11133. },
  11134. "_mobility": 0,
  11135. "_layer": 33554432,
  11136. "_euler": {
  11137. "__type__": "cc.Vec3",
  11138. "x": 0,
  11139. "y": 0,
  11140. "z": 0
  11141. },
  11142. "_id": "98RbnCkPlCn4dXP1A5UIcO"
  11143. },
  11144. {
  11145. "__type__": "cc.Node",
  11146. "_name": "_btnReturn",
  11147. "_objFlags": 0,
  11148. "__editorExtras__": {},
  11149. "_parent": {
  11150. "__id__": 292
  11151. },
  11152. "_children": [],
  11153. "_active": true,
  11154. "_components": [
  11155. {
  11156. "__id__": 294
  11157. },
  11158. {
  11159. "__id__": 295
  11160. },
  11161. {
  11162. "__id__": 296
  11163. },
  11164. {
  11165. "__id__": 297
  11166. }
  11167. ],
  11168. "_prefab": null,
  11169. "_lpos": {
  11170. "__type__": "cc.Vec3",
  11171. "x": 540,
  11172. "y": 0,
  11173. "z": 0
  11174. },
  11175. "_lrot": {
  11176. "__type__": "cc.Quat",
  11177. "x": 0,
  11178. "y": 0,
  11179. "z": 0,
  11180. "w": 1
  11181. },
  11182. "_lscale": {
  11183. "__type__": "cc.Vec3",
  11184. "x": 1,
  11185. "y": 1,
  11186. "z": 1
  11187. },
  11188. "_mobility": 0,
  11189. "_layer": 33554432,
  11190. "_euler": {
  11191. "__type__": "cc.Vec3",
  11192. "x": 0,
  11193. "y": 0,
  11194. "z": 0
  11195. },
  11196. "_id": "293EMRs9VF7olt2j1KzxyF"
  11197. },
  11198. {
  11199. "__type__": "cc.UITransform",
  11200. "_name": "",
  11201. "_objFlags": 0,
  11202. "__editorExtras__": {},
  11203. "node": {
  11204. "__id__": 293
  11205. },
  11206. "_enabled": true,
  11207. "__prefab": null,
  11208. "_contentSize": {
  11209. "__type__": "cc.Size",
  11210. "width": 60,
  11211. "height": 60
  11212. },
  11213. "_anchorPoint": {
  11214. "__type__": "cc.Vec2",
  11215. "x": 0.5,
  11216. "y": 0.5
  11217. },
  11218. "_id": "85+6RLdoZIq7VKoxSVK59s"
  11219. },
  11220. {
  11221. "__type__": "cc.Sprite",
  11222. "_name": "",
  11223. "_objFlags": 0,
  11224. "__editorExtras__": {},
  11225. "node": {
  11226. "__id__": 293
  11227. },
  11228. "_enabled": true,
  11229. "__prefab": null,
  11230. "_customMaterial": null,
  11231. "_srcBlendFactor": 2,
  11232. "_dstBlendFactor": 4,
  11233. "_color": {
  11234. "__type__": "cc.Color",
  11235. "r": 255,
  11236. "g": 255,
  11237. "b": 255,
  11238. "a": 255
  11239. },
  11240. "_spriteFrame": {
  11241. "__uuid__": "c00b279f-801e-4e6d-a02e-0a9604678070@09c2b",
  11242. "__expectedType__": "cc.SpriteFrame"
  11243. },
  11244. "_type": 1,
  11245. "_fillType": 0,
  11246. "_sizeMode": 0,
  11247. "_fillCenter": {
  11248. "__type__": "cc.Vec2",
  11249. "x": 0,
  11250. "y": 0
  11251. },
  11252. "_fillStart": 0,
  11253. "_fillRange": 0,
  11254. "_isTrimmedMode": true,
  11255. "_useGrayscale": false,
  11256. "_atlas": null,
  11257. "_id": "89JNg7JWpFnau/GheErNFN"
  11258. },
  11259. {
  11260. "__type__": "cc.Button",
  11261. "_name": "",
  11262. "_objFlags": 0,
  11263. "__editorExtras__": {},
  11264. "node": {
  11265. "__id__": 293
  11266. },
  11267. "_enabled": true,
  11268. "__prefab": null,
  11269. "clickEvents": [],
  11270. "_interactable": true,
  11271. "_transition": 2,
  11272. "_normalColor": {
  11273. "__type__": "cc.Color",
  11274. "r": 214,
  11275. "g": 214,
  11276. "b": 214,
  11277. "a": 255
  11278. },
  11279. "_hoverColor": {
  11280. "__type__": "cc.Color",
  11281. "r": 211,
  11282. "g": 211,
  11283. "b": 211,
  11284. "a": 255
  11285. },
  11286. "_pressedColor": {
  11287. "__type__": "cc.Color",
  11288. "r": 255,
  11289. "g": 255,
  11290. "b": 255,
  11291. "a": 255
  11292. },
  11293. "_disabledColor": {
  11294. "__type__": "cc.Color",
  11295. "r": 124,
  11296. "g": 124,
  11297. "b": 124,
  11298. "a": 255
  11299. },
  11300. "_normalSprite": {
  11301. "__uuid__": "c00b279f-801e-4e6d-a02e-0a9604678070@09c2b",
  11302. "__expectedType__": "cc.SpriteFrame"
  11303. },
  11304. "_hoverSprite": null,
  11305. "_pressedSprite": {
  11306. "__uuid__": "c00b279f-801e-4e6d-a02e-0a9604678070@f4bf7",
  11307. "__expectedType__": "cc.SpriteFrame"
  11308. },
  11309. "_disabledSprite": null,
  11310. "_duration": 0.1,
  11311. "_zoomScale": 1.2,
  11312. "_target": {
  11313. "__id__": 293
  11314. },
  11315. "_id": "b58Mqv/khPI5WKIjtSMudF"
  11316. },
  11317. {
  11318. "__type__": "cc.Widget",
  11319. "_name": "",
  11320. "_objFlags": 0,
  11321. "__editorExtras__": {},
  11322. "node": {
  11323. "__id__": 293
  11324. },
  11325. "_enabled": true,
  11326. "__prefab": null,
  11327. "_alignFlags": 32,
  11328. "_target": null,
  11329. "_left": 0,
  11330. "_right": 70,
  11331. "_top": 0,
  11332. "_bottom": 0,
  11333. "_horizontalCenter": 0,
  11334. "_verticalCenter": 0,
  11335. "_isAbsLeft": true,
  11336. "_isAbsRight": true,
  11337. "_isAbsTop": true,
  11338. "_isAbsBottom": true,
  11339. "_isAbsHorizontalCenter": true,
  11340. "_isAbsVerticalCenter": true,
  11341. "_originalWidth": 0,
  11342. "_originalHeight": 0,
  11343. "_alignMode": 2,
  11344. "_lockFlags": 0,
  11345. "_id": "87U3xyoE1BlKjcU4JFeohC"
  11346. },
  11347. {
  11348. "__type__": "cc.Node",
  11349. "_name": "Gold",
  11350. "_objFlags": 0,
  11351. "__editorExtras__": {},
  11352. "_parent": {
  11353. "__id__": 292
  11354. },
  11355. "_children": [
  11356. {
  11357. "__id__": 299
  11358. },
  11359. {
  11360. "__id__": 303
  11361. }
  11362. ],
  11363. "_active": true,
  11364. "_components": [
  11365. {
  11366. "__id__": 307
  11367. },
  11368. {
  11369. "__id__": 308
  11370. },
  11371. {
  11372. "__id__": 309
  11373. }
  11374. ],
  11375. "_prefab": null,
  11376. "_lpos": {
  11377. "__type__": "cc.Vec3",
  11378. "x": 40,
  11379. "y": 0,
  11380. "z": 0
  11381. },
  11382. "_lrot": {
  11383. "__type__": "cc.Quat",
  11384. "x": 0,
  11385. "y": 0,
  11386. "z": 0,
  11387. "w": 1
  11388. },
  11389. "_lscale": {
  11390. "__type__": "cc.Vec3",
  11391. "x": 1,
  11392. "y": 1,
  11393. "z": 1
  11394. },
  11395. "_mobility": 0,
  11396. "_layer": 33554432,
  11397. "_euler": {
  11398. "__type__": "cc.Vec3",
  11399. "x": 0,
  11400. "y": 0,
  11401. "z": 0
  11402. },
  11403. "_id": "ac4HjOZ+dJFq/ytifE3rAo"
  11404. },
  11405. {
  11406. "__type__": "cc.Node",
  11407. "_name": "_gold",
  11408. "_objFlags": 0,
  11409. "__editorExtras__": {},
  11410. "_parent": {
  11411. "__id__": 298
  11412. },
  11413. "_children": [],
  11414. "_active": true,
  11415. "_components": [
  11416. {
  11417. "__id__": 300
  11418. },
  11419. {
  11420. "__id__": 301
  11421. },
  11422. {
  11423. "__id__": 302
  11424. }
  11425. ],
  11426. "_prefab": null,
  11427. "_lpos": {
  11428. "__type__": "cc.Vec3",
  11429. "x": 2.24609375,
  11430. "y": 0,
  11431. "z": 0
  11432. },
  11433. "_lrot": {
  11434. "__type__": "cc.Quat",
  11435. "x": 0,
  11436. "y": 0,
  11437. "z": 0,
  11438. "w": 1
  11439. },
  11440. "_lscale": {
  11441. "__type__": "cc.Vec3",
  11442. "x": 1,
  11443. "y": 1,
  11444. "z": 1
  11445. },
  11446. "_mobility": 0,
  11447. "_layer": 33554432,
  11448. "_euler": {
  11449. "__type__": "cc.Vec3",
  11450. "x": 0,
  11451. "y": 0,
  11452. "z": 0
  11453. },
  11454. "_id": "1end2mh39BhZv9CUdGm8jg"
  11455. },
  11456. {
  11457. "__type__": "cc.UITransform",
  11458. "_name": "",
  11459. "_objFlags": 0,
  11460. "__editorExtras__": {},
  11461. "node": {
  11462. "__id__": 299
  11463. },
  11464. "_enabled": true,
  11465. "__prefab": null,
  11466. "_contentSize": {
  11467. "__type__": "cc.Size",
  11468. "width": 44.4921875,
  11469. "height": 50.4
  11470. },
  11471. "_anchorPoint": {
  11472. "__type__": "cc.Vec2",
  11473. "x": 0.5,
  11474. "y": 0.5
  11475. },
  11476. "_id": "69NZ0VtGRGK7/MKzDch25P"
  11477. },
  11478. {
  11479. "__type__": "cc.Label",
  11480. "_name": "",
  11481. "_objFlags": 0,
  11482. "__editorExtras__": {},
  11483. "node": {
  11484. "__id__": 299
  11485. },
  11486. "_enabled": true,
  11487. "__prefab": null,
  11488. "_customMaterial": null,
  11489. "_srcBlendFactor": 2,
  11490. "_dstBlendFactor": 4,
  11491. "_color": {
  11492. "__type__": "cc.Color",
  11493. "r": 255,
  11494. "g": 255,
  11495. "b": 255,
  11496. "a": 255
  11497. },
  11498. "_string": "1000",
  11499. "_horizontalAlign": 1,
  11500. "_verticalAlign": 1,
  11501. "_actualFontSize": 20,
  11502. "_fontSize": 20,
  11503. "_fontFamily": "Arial",
  11504. "_lineHeight": 40,
  11505. "_overflow": 0,
  11506. "_enableWrapText": true,
  11507. "_font": null,
  11508. "_isSystemFontUsed": true,
  11509. "_spacingX": 0,
  11510. "_isItalic": false,
  11511. "_isBold": false,
  11512. "_isUnderline": false,
  11513. "_underlineHeight": 2,
  11514. "_cacheMode": 0,
  11515. "_enableOutline": false,
  11516. "_outlineColor": {
  11517. "__type__": "cc.Color",
  11518. "r": 0,
  11519. "g": 0,
  11520. "b": 0,
  11521. "a": 255
  11522. },
  11523. "_outlineWidth": 2,
  11524. "_enableShadow": false,
  11525. "_shadowColor": {
  11526. "__type__": "cc.Color",
  11527. "r": 0,
  11528. "g": 0,
  11529. "b": 0,
  11530. "a": 255
  11531. },
  11532. "_shadowOffset": {
  11533. "__type__": "cc.Vec2",
  11534. "x": 2,
  11535. "y": 2
  11536. },
  11537. "_shadowBlur": 2,
  11538. "_id": "8c/UI1bLVBK5ZrWCMrp+YR"
  11539. },
  11540. {
  11541. "__type__": "cc.Widget",
  11542. "_name": "",
  11543. "_objFlags": 0,
  11544. "__editorExtras__": {},
  11545. "node": {
  11546. "__id__": 299
  11547. },
  11548. "_enabled": true,
  11549. "__prefab": null,
  11550. "_alignFlags": 8,
  11551. "_target": null,
  11552. "_left": 80,
  11553. "_right": 0,
  11554. "_top": 0,
  11555. "_bottom": 0,
  11556. "_horizontalCenter": 0,
  11557. "_verticalCenter": 0,
  11558. "_isAbsLeft": true,
  11559. "_isAbsRight": true,
  11560. "_isAbsTop": true,
  11561. "_isAbsBottom": true,
  11562. "_isAbsHorizontalCenter": true,
  11563. "_isAbsVerticalCenter": true,
  11564. "_originalWidth": 0,
  11565. "_originalHeight": 0,
  11566. "_alignMode": 2,
  11567. "_lockFlags": 0,
  11568. "_id": "06Q9sqXg1MFLbvPt7IETbW"
  11569. },
  11570. {
  11571. "__type__": "cc.Node",
  11572. "_name": "Gold",
  11573. "_objFlags": 0,
  11574. "__editorExtras__": {},
  11575. "_parent": {
  11576. "__id__": 298
  11577. },
  11578. "_children": [],
  11579. "_active": true,
  11580. "_components": [
  11581. {
  11582. "__id__": 304
  11583. },
  11584. {
  11585. "__id__": 305
  11586. },
  11587. {
  11588. "__id__": 306
  11589. }
  11590. ],
  11591. "_prefab": null,
  11592. "_lpos": {
  11593. "__type__": "cc.Vec3",
  11594. "x": -84.5,
  11595. "y": 0,
  11596. "z": 0
  11597. },
  11598. "_lrot": {
  11599. "__type__": "cc.Quat",
  11600. "x": 0,
  11601. "y": 0,
  11602. "z": 0,
  11603. "w": 1
  11604. },
  11605. "_lscale": {
  11606. "__type__": "cc.Vec3",
  11607. "x": 1,
  11608. "y": 1,
  11609. "z": 1
  11610. },
  11611. "_mobility": 0,
  11612. "_layer": 33554432,
  11613. "_euler": {
  11614. "__type__": "cc.Vec3",
  11615. "x": 0,
  11616. "y": 0,
  11617. "z": 0
  11618. },
  11619. "_id": "36HDQ7HFlK8oTpTL8cpCqc"
  11620. },
  11621. {
  11622. "__type__": "cc.UITransform",
  11623. "_name": "",
  11624. "_objFlags": 0,
  11625. "__editorExtras__": {},
  11626. "node": {
  11627. "__id__": 303
  11628. },
  11629. "_enabled": true,
  11630. "__prefab": null,
  11631. "_contentSize": {
  11632. "__type__": "cc.Size",
  11633. "width": 63,
  11634. "height": 63
  11635. },
  11636. "_anchorPoint": {
  11637. "__type__": "cc.Vec2",
  11638. "x": 0.5,
  11639. "y": 0.5
  11640. },
  11641. "_id": "e38Y8Kgp5EZaeCufrGtPdM"
  11642. },
  11643. {
  11644. "__type__": "cc.Sprite",
  11645. "_name": "",
  11646. "_objFlags": 0,
  11647. "__editorExtras__": {},
  11648. "node": {
  11649. "__id__": 303
  11650. },
  11651. "_enabled": true,
  11652. "__prefab": null,
  11653. "_customMaterial": null,
  11654. "_srcBlendFactor": 2,
  11655. "_dstBlendFactor": 4,
  11656. "_color": {
  11657. "__type__": "cc.Color",
  11658. "r": 255,
  11659. "g": 255,
  11660. "b": 255,
  11661. "a": 255
  11662. },
  11663. "_spriteFrame": {
  11664. "__uuid__": "1440ddfa-68c4-4328-bf37-600cd18f4812@9bb7d",
  11665. "__expectedType__": "cc.SpriteFrame"
  11666. },
  11667. "_type": 0,
  11668. "_fillType": 0,
  11669. "_sizeMode": 1,
  11670. "_fillCenter": {
  11671. "__type__": "cc.Vec2",
  11672. "x": 0,
  11673. "y": 0
  11674. },
  11675. "_fillStart": 0,
  11676. "_fillRange": 0,
  11677. "_isTrimmedMode": true,
  11678. "_useGrayscale": false,
  11679. "_atlas": null,
  11680. "_id": "a6JXqgFZFCTpSuVox7V34o"
  11681. },
  11682. {
  11683. "__type__": "cc.Widget",
  11684. "_name": "",
  11685. "_objFlags": 0,
  11686. "__editorExtras__": {},
  11687. "node": {
  11688. "__id__": 303
  11689. },
  11690. "_enabled": true,
  11691. "__prefab": null,
  11692. "_alignFlags": 8,
  11693. "_target": null,
  11694. "_left": -16,
  11695. "_right": 0,
  11696. "_top": 0,
  11697. "_bottom": 0,
  11698. "_horizontalCenter": 0,
  11699. "_verticalCenter": 0,
  11700. "_isAbsLeft": true,
  11701. "_isAbsRight": true,
  11702. "_isAbsTop": true,
  11703. "_isAbsBottom": true,
  11704. "_isAbsHorizontalCenter": true,
  11705. "_isAbsVerticalCenter": true,
  11706. "_originalWidth": 0,
  11707. "_originalHeight": 0,
  11708. "_alignMode": 2,
  11709. "_lockFlags": 0,
  11710. "_id": "5fWaeMvxdFS5VWlKtE8p1h"
  11711. },
  11712. {
  11713. "__type__": "cc.UITransform",
  11714. "_name": "",
  11715. "_objFlags": 0,
  11716. "__editorExtras__": {},
  11717. "node": {
  11718. "__id__": 298
  11719. },
  11720. "_enabled": true,
  11721. "__prefab": null,
  11722. "_contentSize": {
  11723. "__type__": "cc.Size",
  11724. "width": 200,
  11725. "height": 52
  11726. },
  11727. "_anchorPoint": {
  11728. "__type__": "cc.Vec2",
  11729. "x": 0.5,
  11730. "y": 0.5
  11731. },
  11732. "_id": "a75cFwafVIy68ja7DW0Ne1"
  11733. },
  11734. {
  11735. "__type__": "cc.Sprite",
  11736. "_name": "",
  11737. "_objFlags": 0,
  11738. "__editorExtras__": {},
  11739. "node": {
  11740. "__id__": 298
  11741. },
  11742. "_enabled": true,
  11743. "__prefab": null,
  11744. "_customMaterial": null,
  11745. "_srcBlendFactor": 2,
  11746. "_dstBlendFactor": 4,
  11747. "_color": {
  11748. "__type__": "cc.Color",
  11749. "r": 255,
  11750. "g": 255,
  11751. "b": 255,
  11752. "a": 255
  11753. },
  11754. "_spriteFrame": {
  11755. "__uuid__": "9dd292b2-f288-4de4-9392-fa4784e3ddff@f9941",
  11756. "__expectedType__": "cc.SpriteFrame"
  11757. },
  11758. "_type": 0,
  11759. "_fillType": 0,
  11760. "_sizeMode": 0,
  11761. "_fillCenter": {
  11762. "__type__": "cc.Vec2",
  11763. "x": 0,
  11764. "y": 0
  11765. },
  11766. "_fillStart": 0,
  11767. "_fillRange": 0,
  11768. "_isTrimmedMode": true,
  11769. "_useGrayscale": false,
  11770. "_atlas": null,
  11771. "_id": "f3uWlFRsFC/pCIFkCrIoPH"
  11772. },
  11773. {
  11774. "__type__": "cc.Widget",
  11775. "_name": "",
  11776. "_objFlags": 0,
  11777. "__editorExtras__": {},
  11778. "node": {
  11779. "__id__": 298
  11780. },
  11781. "_enabled": true,
  11782. "__prefab": null,
  11783. "_alignFlags": 37,
  11784. "_target": null,
  11785. "_left": 620,
  11786. "_right": 500,
  11787. "_top": 34,
  11788. "_bottom": 34,
  11789. "_horizontalCenter": 0,
  11790. "_verticalCenter": 0,
  11791. "_isAbsLeft": true,
  11792. "_isAbsRight": true,
  11793. "_isAbsTop": true,
  11794. "_isAbsBottom": true,
  11795. "_isAbsHorizontalCenter": true,
  11796. "_isAbsVerticalCenter": true,
  11797. "_originalWidth": 40,
  11798. "_originalHeight": 36,
  11799. "_alignMode": 2,
  11800. "_lockFlags": 0,
  11801. "_id": "b5E9YwKflGG42AnO3DUzqN"
  11802. },
  11803. {
  11804. "__type__": "cc.Node",
  11805. "_name": "Diamond",
  11806. "_objFlags": 0,
  11807. "__editorExtras__": {},
  11808. "_parent": {
  11809. "__id__": 292
  11810. },
  11811. "_children": [
  11812. {
  11813. "__id__": 311
  11814. },
  11815. {
  11816. "__id__": 315
  11817. }
  11818. ],
  11819. "_active": true,
  11820. "_components": [
  11821. {
  11822. "__id__": 319
  11823. },
  11824. {
  11825. "__id__": 320
  11826. },
  11827. {
  11828. "__id__": 321
  11829. }
  11830. ],
  11831. "_prefab": null,
  11832. "_lpos": {
  11833. "__type__": "cc.Vec3",
  11834. "x": 277.459,
  11835. "y": 0,
  11836. "z": 0
  11837. },
  11838. "_lrot": {
  11839. "__type__": "cc.Quat",
  11840. "x": 0,
  11841. "y": 0,
  11842. "z": 0,
  11843. "w": 1
  11844. },
  11845. "_lscale": {
  11846. "__type__": "cc.Vec3",
  11847. "x": 1,
  11848. "y": 1,
  11849. "z": 1
  11850. },
  11851. "_mobility": 0,
  11852. "_layer": 33554432,
  11853. "_euler": {
  11854. "__type__": "cc.Vec3",
  11855. "x": 0,
  11856. "y": 0,
  11857. "z": 0
  11858. },
  11859. "_id": "a0YOT6gSlJMITNjB60/CYw"
  11860. },
  11861. {
  11862. "__type__": "cc.Node",
  11863. "_name": "_diamond",
  11864. "_objFlags": 0,
  11865. "__editorExtras__": {},
  11866. "_parent": {
  11867. "__id__": 310
  11868. },
  11869. "_children": [],
  11870. "_active": true,
  11871. "_components": [
  11872. {
  11873. "__id__": 312
  11874. },
  11875. {
  11876. "__id__": 313
  11877. },
  11878. {
  11879. "__id__": 314
  11880. }
  11881. ],
  11882. "_prefab": null,
  11883. "_lpos": {
  11884. "__type__": "cc.Vec3",
  11885. "x": -13.3154296875,
  11886. "y": 0,
  11887. "z": 0
  11888. },
  11889. "_lrot": {
  11890. "__type__": "cc.Quat",
  11891. "x": 0,
  11892. "y": 0,
  11893. "z": 0,
  11894. "w": 1
  11895. },
  11896. "_lscale": {
  11897. "__type__": "cc.Vec3",
  11898. "x": 1,
  11899. "y": 1,
  11900. "z": 1
  11901. },
  11902. "_mobility": 0,
  11903. "_layer": 33554432,
  11904. "_euler": {
  11905. "__type__": "cc.Vec3",
  11906. "x": 0,
  11907. "y": 0,
  11908. "z": 0
  11909. },
  11910. "_id": "9fwZPQvBhLrJT6rJwZovjV"
  11911. },
  11912. {
  11913. "__type__": "cc.UITransform",
  11914. "_name": "",
  11915. "_objFlags": 0,
  11916. "__editorExtras__": {},
  11917. "node": {
  11918. "__id__": 311
  11919. },
  11920. "_enabled": true,
  11921. "__prefab": null,
  11922. "_contentSize": {
  11923. "__type__": "cc.Size",
  11924. "width": 33.369140625,
  11925. "height": 50.4
  11926. },
  11927. "_anchorPoint": {
  11928. "__type__": "cc.Vec2",
  11929. "x": 0.5,
  11930. "y": 0.5
  11931. },
  11932. "_id": "44gNLqUsRAAagdN/2qVp+O"
  11933. },
  11934. {
  11935. "__type__": "cc.Label",
  11936. "_name": "",
  11937. "_objFlags": 0,
  11938. "__editorExtras__": {},
  11939. "node": {
  11940. "__id__": 311
  11941. },
  11942. "_enabled": true,
  11943. "__prefab": null,
  11944. "_customMaterial": null,
  11945. "_srcBlendFactor": 2,
  11946. "_dstBlendFactor": 4,
  11947. "_color": {
  11948. "__type__": "cc.Color",
  11949. "r": 255,
  11950. "g": 255,
  11951. "b": 255,
  11952. "a": 255
  11953. },
  11954. "_string": "200",
  11955. "_horizontalAlign": 1,
  11956. "_verticalAlign": 1,
  11957. "_actualFontSize": 20,
  11958. "_fontSize": 20,
  11959. "_fontFamily": "Arial",
  11960. "_lineHeight": 40,
  11961. "_overflow": 0,
  11962. "_enableWrapText": true,
  11963. "_font": null,
  11964. "_isSystemFontUsed": true,
  11965. "_spacingX": 0,
  11966. "_isItalic": false,
  11967. "_isBold": false,
  11968. "_isUnderline": false,
  11969. "_underlineHeight": 2,
  11970. "_cacheMode": 0,
  11971. "_enableOutline": false,
  11972. "_outlineColor": {
  11973. "__type__": "cc.Color",
  11974. "r": 0,
  11975. "g": 0,
  11976. "b": 0,
  11977. "a": 255
  11978. },
  11979. "_outlineWidth": 2,
  11980. "_enableShadow": false,
  11981. "_shadowColor": {
  11982. "__type__": "cc.Color",
  11983. "r": 0,
  11984. "g": 0,
  11985. "b": 0,
  11986. "a": 255
  11987. },
  11988. "_shadowOffset": {
  11989. "__type__": "cc.Vec2",
  11990. "x": 2,
  11991. "y": 2
  11992. },
  11993. "_shadowBlur": 2,
  11994. "_id": "4f8C1K+atOkpO5jWArOr5g"
  11995. },
  11996. {
  11997. "__type__": "cc.Widget",
  11998. "_name": "",
  11999. "_objFlags": 0,
  12000. "__editorExtras__": {},
  12001. "node": {
  12002. "__id__": 311
  12003. },
  12004. "_enabled": true,
  12005. "__prefab": null,
  12006. "_alignFlags": 8,
  12007. "_target": null,
  12008. "_left": 70,
  12009. "_right": 0,
  12010. "_top": 0,
  12011. "_bottom": 0,
  12012. "_horizontalCenter": 0,
  12013. "_verticalCenter": 0,
  12014. "_isAbsLeft": true,
  12015. "_isAbsRight": true,
  12016. "_isAbsTop": true,
  12017. "_isAbsBottom": true,
  12018. "_isAbsHorizontalCenter": true,
  12019. "_isAbsVerticalCenter": true,
  12020. "_originalWidth": 0,
  12021. "_originalHeight": 0,
  12022. "_alignMode": 2,
  12023. "_lockFlags": 0,
  12024. "_id": "dbOxRuDWJFRq4IBikTMV8g"
  12025. },
  12026. {
  12027. "__type__": "cc.Node",
  12028. "_name": "Diamond",
  12029. "_objFlags": 0,
  12030. "__editorExtras__": {},
  12031. "_parent": {
  12032. "__id__": 310
  12033. },
  12034. "_children": [],
  12035. "_active": true,
  12036. "_components": [
  12037. {
  12038. "__id__": 316
  12039. },
  12040. {
  12041. "__id__": 317
  12042. },
  12043. {
  12044. "__id__": 318
  12045. }
  12046. ],
  12047. "_prefab": null,
  12048. "_lpos": {
  12049. "__type__": "cc.Vec3",
  12050. "x": -85,
  12051. "y": 0,
  12052. "z": 0
  12053. },
  12054. "_lrot": {
  12055. "__type__": "cc.Quat",
  12056. "x": 0,
  12057. "y": 0,
  12058. "z": 0,
  12059. "w": 1
  12060. },
  12061. "_lscale": {
  12062. "__type__": "cc.Vec3",
  12063. "x": 1,
  12064. "y": 1,
  12065. "z": 1
  12066. },
  12067. "_mobility": 0,
  12068. "_layer": 33554432,
  12069. "_euler": {
  12070. "__type__": "cc.Vec3",
  12071. "x": 0,
  12072. "y": 0,
  12073. "z": 0
  12074. },
  12075. "_id": "a8uZW/k+xEBq4+zVwa0uOL"
  12076. },
  12077. {
  12078. "__type__": "cc.UITransform",
  12079. "_name": "",
  12080. "_objFlags": 0,
  12081. "__editorExtras__": {},
  12082. "node": {
  12083. "__id__": 315
  12084. },
  12085. "_enabled": true,
  12086. "__prefab": null,
  12087. "_contentSize": {
  12088. "__type__": "cc.Size",
  12089. "width": 62,
  12090. "height": 85
  12091. },
  12092. "_anchorPoint": {
  12093. "__type__": "cc.Vec2",
  12094. "x": 0.5,
  12095. "y": 0.5
  12096. },
  12097. "_id": "640VPIgzROYa98srvj9kVM"
  12098. },
  12099. {
  12100. "__type__": "cc.Sprite",
  12101. "_name": "",
  12102. "_objFlags": 0,
  12103. "__editorExtras__": {},
  12104. "node": {
  12105. "__id__": 315
  12106. },
  12107. "_enabled": true,
  12108. "__prefab": null,
  12109. "_customMaterial": null,
  12110. "_srcBlendFactor": 2,
  12111. "_dstBlendFactor": 4,
  12112. "_color": {
  12113. "__type__": "cc.Color",
  12114. "r": 255,
  12115. "g": 255,
  12116. "b": 255,
  12117. "a": 255
  12118. },
  12119. "_spriteFrame": {
  12120. "__uuid__": "1440ddfa-68c4-4328-bf37-600cd18f4812@81a79",
  12121. "__expectedType__": "cc.SpriteFrame"
  12122. },
  12123. "_type": 0,
  12124. "_fillType": 0,
  12125. "_sizeMode": 1,
  12126. "_fillCenter": {
  12127. "__type__": "cc.Vec2",
  12128. "x": 0,
  12129. "y": 0
  12130. },
  12131. "_fillStart": 0,
  12132. "_fillRange": 0,
  12133. "_isTrimmedMode": true,
  12134. "_useGrayscale": false,
  12135. "_atlas": null,
  12136. "_id": "a9amap96lPfayRRNZ57jD3"
  12137. },
  12138. {
  12139. "__type__": "cc.Widget",
  12140. "_name": "",
  12141. "_objFlags": 0,
  12142. "__editorExtras__": {},
  12143. "node": {
  12144. "__id__": 315
  12145. },
  12146. "_enabled": true,
  12147. "__prefab": null,
  12148. "_alignFlags": 8,
  12149. "_target": null,
  12150. "_left": -16,
  12151. "_right": 0,
  12152. "_top": 0,
  12153. "_bottom": 0,
  12154. "_horizontalCenter": 0,
  12155. "_verticalCenter": 0,
  12156. "_isAbsLeft": true,
  12157. "_isAbsRight": true,
  12158. "_isAbsTop": true,
  12159. "_isAbsBottom": true,
  12160. "_isAbsHorizontalCenter": true,
  12161. "_isAbsVerticalCenter": true,
  12162. "_originalWidth": 0,
  12163. "_originalHeight": 0,
  12164. "_alignMode": 2,
  12165. "_lockFlags": 0,
  12166. "_id": "dcIYm5RZxD+aSuBxGiAZq7"
  12167. },
  12168. {
  12169. "__type__": "cc.UITransform",
  12170. "_name": "",
  12171. "_objFlags": 0,
  12172. "__editorExtras__": {},
  12173. "node": {
  12174. "__id__": 310
  12175. },
  12176. "_enabled": true,
  12177. "__prefab": null,
  12178. "_contentSize": {
  12179. "__type__": "cc.Size",
  12180. "width": 200,
  12181. "height": 52
  12182. },
  12183. "_anchorPoint": {
  12184. "__type__": "cc.Vec2",
  12185. "x": 0.5,
  12186. "y": 0.5
  12187. },
  12188. "_id": "01ODoPlLRBU4OIsS9fp62o"
  12189. },
  12190. {
  12191. "__type__": "cc.Sprite",
  12192. "_name": "",
  12193. "_objFlags": 0,
  12194. "__editorExtras__": {},
  12195. "node": {
  12196. "__id__": 310
  12197. },
  12198. "_enabled": true,
  12199. "__prefab": null,
  12200. "_customMaterial": null,
  12201. "_srcBlendFactor": 2,
  12202. "_dstBlendFactor": 4,
  12203. "_color": {
  12204. "__type__": "cc.Color",
  12205. "r": 255,
  12206. "g": 255,
  12207. "b": 255,
  12208. "a": 255
  12209. },
  12210. "_spriteFrame": {
  12211. "__uuid__": "9dd292b2-f288-4de4-9392-fa4784e3ddff@f9941",
  12212. "__expectedType__": "cc.SpriteFrame"
  12213. },
  12214. "_type": 0,
  12215. "_fillType": 0,
  12216. "_sizeMode": 0,
  12217. "_fillCenter": {
  12218. "__type__": "cc.Vec2",
  12219. "x": 0,
  12220. "y": 0
  12221. },
  12222. "_fillStart": 0,
  12223. "_fillRange": 0,
  12224. "_isTrimmedMode": true,
  12225. "_useGrayscale": false,
  12226. "_atlas": null,
  12227. "_id": "64uwq+qkRCC49Pqg2ayDtm"
  12228. },
  12229. {
  12230. "__type__": "cc.Widget",
  12231. "_name": "",
  12232. "_objFlags": 0,
  12233. "__editorExtras__": {},
  12234. "node": {
  12235. "__id__": 310
  12236. },
  12237. "_enabled": true,
  12238. "__prefab": null,
  12239. "_alignFlags": 37,
  12240. "_target": null,
  12241. "_left": 620,
  12242. "_right": 262.541,
  12243. "_top": 34,
  12244. "_bottom": 34,
  12245. "_horizontalCenter": 0,
  12246. "_verticalCenter": 0,
  12247. "_isAbsLeft": true,
  12248. "_isAbsRight": true,
  12249. "_isAbsTop": true,
  12250. "_isAbsBottom": true,
  12251. "_isAbsHorizontalCenter": true,
  12252. "_isAbsVerticalCenter": true,
  12253. "_originalWidth": 40,
  12254. "_originalHeight": 36,
  12255. "_alignMode": 2,
  12256. "_lockFlags": 0,
  12257. "_id": "77o1VArflF5adNoCjwDw6V"
  12258. },
  12259. {
  12260. "__type__": "cc.Node",
  12261. "_name": "_battleMode",
  12262. "_objFlags": 0,
  12263. "__editorExtras__": {},
  12264. "_parent": {
  12265. "__id__": 292
  12266. },
  12267. "_children": [],
  12268. "_active": true,
  12269. "_components": [
  12270. {
  12271. "__id__": 323
  12272. },
  12273. {
  12274. "__id__": 324
  12275. },
  12276. {
  12277. "__id__": 325
  12278. }
  12279. ],
  12280. "_prefab": null,
  12281. "_lpos": {
  12282. "__type__": "cc.Vec3",
  12283. "x": -360,
  12284. "y": 0,
  12285. "z": 0
  12286. },
  12287. "_lrot": {
  12288. "__type__": "cc.Quat",
  12289. "x": 0,
  12290. "y": 0,
  12291. "z": 0,
  12292. "w": 1
  12293. },
  12294. "_lscale": {
  12295. "__type__": "cc.Vec3",
  12296. "x": 1,
  12297. "y": 1,
  12298. "z": 1
  12299. },
  12300. "_mobility": 0,
  12301. "_layer": 33554432,
  12302. "_euler": {
  12303. "__type__": "cc.Vec3",
  12304. "x": 0,
  12305. "y": 0,
  12306. "z": 0
  12307. },
  12308. "_id": "d14qjt3ztNmbd/x27qtoJp"
  12309. },
  12310. {
  12311. "__type__": "cc.UITransform",
  12312. "_name": "",
  12313. "_objFlags": 0,
  12314. "__editorExtras__": {},
  12315. "node": {
  12316. "__id__": 322
  12317. },
  12318. "_enabled": true,
  12319. "__prefab": null,
  12320. "_contentSize": {
  12321. "__type__": "cc.Size",
  12322. "width": 202,
  12323. "height": 65
  12324. },
  12325. "_anchorPoint": {
  12326. "__type__": "cc.Vec2",
  12327. "x": 0.5,
  12328. "y": 0.5
  12329. },
  12330. "_id": "f0aB2hf9xNA7g/PA+9jrWW"
  12331. },
  12332. {
  12333. "__type__": "cc.Label",
  12334. "_name": "",
  12335. "_objFlags": 0,
  12336. "__editorExtras__": {},
  12337. "node": {
  12338. "__id__": 322
  12339. },
  12340. "_enabled": true,
  12341. "__prefab": null,
  12342. "_customMaterial": null,
  12343. "_srcBlendFactor": 2,
  12344. "_dstBlendFactor": 4,
  12345. "_color": {
  12346. "__type__": "cc.Color",
  12347. "r": 236,
  12348. "g": 58,
  12349. "b": 58,
  12350. "a": 255
  12351. },
  12352. "_string": "战斗模式",
  12353. "_horizontalAlign": 1,
  12354. "_verticalAlign": 1,
  12355. "_actualFontSize": 50,
  12356. "_fontSize": 50,
  12357. "_fontFamily": "Arial",
  12358. "_lineHeight": 50,
  12359. "_overflow": 0,
  12360. "_enableWrapText": true,
  12361. "_font": null,
  12362. "_isSystemFontUsed": true,
  12363. "_spacingX": 0,
  12364. "_isItalic": false,
  12365. "_isBold": false,
  12366. "_isUnderline": false,
  12367. "_underlineHeight": 2,
  12368. "_cacheMode": 0,
  12369. "_enableOutline": true,
  12370. "_outlineColor": {
  12371. "__type__": "cc.Color",
  12372. "r": 247,
  12373. "g": 140,
  12374. "b": 140,
  12375. "a": 255
  12376. },
  12377. "_outlineWidth": 1,
  12378. "_enableShadow": false,
  12379. "_shadowColor": {
  12380. "__type__": "cc.Color",
  12381. "r": 0,
  12382. "g": 0,
  12383. "b": 0,
  12384. "a": 255
  12385. },
  12386. "_shadowOffset": {
  12387. "__type__": "cc.Vec2",
  12388. "x": 2,
  12389. "y": 2
  12390. },
  12391. "_shadowBlur": 2,
  12392. "_id": "e3Rh/5GLFPRJb1I0TQ52g3"
  12393. },
  12394. {
  12395. "__type__": "cc.Widget",
  12396. "_name": "",
  12397. "_objFlags": 0,
  12398. "__editorExtras__": {},
  12399. "node": {
  12400. "__id__": 322
  12401. },
  12402. "_enabled": true,
  12403. "__prefab": null,
  12404. "_alignFlags": 8,
  12405. "_target": null,
  12406. "_left": 179,
  12407. "_right": 0,
  12408. "_top": 0,
  12409. "_bottom": 0,
  12410. "_horizontalCenter": 0,
  12411. "_verticalCenter": 0,
  12412. "_isAbsLeft": true,
  12413. "_isAbsRight": true,
  12414. "_isAbsTop": true,
  12415. "_isAbsBottom": true,
  12416. "_isAbsHorizontalCenter": true,
  12417. "_isAbsVerticalCenter": true,
  12418. "_originalWidth": 0,
  12419. "_originalHeight": 0,
  12420. "_alignMode": 2,
  12421. "_lockFlags": 0,
  12422. "_id": "d0pJVtRCdKpZpeG2Wp3tJd"
  12423. },
  12424. {
  12425. "__type__": "cc.UITransform",
  12426. "_name": "",
  12427. "_objFlags": 0,
  12428. "__editorExtras__": {},
  12429. "node": {
  12430. "__id__": 292
  12431. },
  12432. "_enabled": true,
  12433. "__prefab": null,
  12434. "_contentSize": {
  12435. "__type__": "cc.Size",
  12436. "width": 1280,
  12437. "height": 120
  12438. },
  12439. "_anchorPoint": {
  12440. "__type__": "cc.Vec2",
  12441. "x": 0.5,
  12442. "y": 0.5
  12443. },
  12444. "_id": "e8XVfzC5dH5IV21dMIBg/U"
  12445. },
  12446. {
  12447. "__type__": "cc.Sprite",
  12448. "_name": "",
  12449. "_objFlags": 0,
  12450. "__editorExtras__": {},
  12451. "node": {
  12452. "__id__": 292
  12453. },
  12454. "_enabled": true,
  12455. "__prefab": null,
  12456. "_customMaterial": null,
  12457. "_srcBlendFactor": 2,
  12458. "_dstBlendFactor": 4,
  12459. "_color": {
  12460. "__type__": "cc.Color",
  12461. "r": 117,
  12462. "g": 113,
  12463. "b": 113,
  12464. "a": 255
  12465. },
  12466. "_spriteFrame": {
  12467. "__uuid__": "1ec19ffb-822e-46c7-814a-dc668a04afe9@cd29a",
  12468. "__expectedType__": "cc.SpriteFrame"
  12469. },
  12470. "_type": 0,
  12471. "_fillType": 0,
  12472. "_sizeMode": 0,
  12473. "_fillCenter": {
  12474. "__type__": "cc.Vec2",
  12475. "x": 0,
  12476. "y": 0
  12477. },
  12478. "_fillStart": 0,
  12479. "_fillRange": 0,
  12480. "_isTrimmedMode": true,
  12481. "_useGrayscale": false,
  12482. "_atlas": null,
  12483. "_id": "69YTqMsdVP1qtI0XnjVuRy"
  12484. },
  12485. {
  12486. "__type__": "282f67D5HpMKJznvZ8CCmiD",
  12487. "_name": "",
  12488. "_objFlags": 0,
  12489. "__editorExtras__": {},
  12490. "node": {
  12491. "__id__": 292
  12492. },
  12493. "_enabled": true,
  12494. "__prefab": null,
  12495. "_id": "23PpNzOFlFDKiYMO/IR0i2"
  12496. },
  12497. {
  12498. "__type__": "cc.Widget",
  12499. "_name": "",
  12500. "_objFlags": 0,
  12501. "__editorExtras__": {},
  12502. "node": {
  12503. "__id__": 292
  12504. },
  12505. "_enabled": true,
  12506. "__prefab": null,
  12507. "_alignFlags": 41,
  12508. "_target": {
  12509. "__id__": 5
  12510. },
  12511. "_left": 0,
  12512. "_right": 0,
  12513. "_top": 0,
  12514. "_bottom": 600,
  12515. "_horizontalCenter": 0,
  12516. "_verticalCenter": 0,
  12517. "_isAbsLeft": true,
  12518. "_isAbsRight": true,
  12519. "_isAbsTop": true,
  12520. "_isAbsBottom": true,
  12521. "_isAbsHorizontalCenter": true,
  12522. "_isAbsVerticalCenter": true,
  12523. "_originalWidth": 1280,
  12524. "_originalHeight": 120,
  12525. "_alignMode": 2,
  12526. "_lockFlags": 0,
  12527. "_id": "c6kfKT9kRNcqL4e/lIbTVB"
  12528. },
  12529. {
  12530. "__type__": "cc.UITransform",
  12531. "_name": "",
  12532. "_objFlags": 0,
  12533. "__editorExtras__": {},
  12534. "node": {
  12535. "__id__": 5
  12536. },
  12537. "_enabled": true,
  12538. "__prefab": null,
  12539. "_contentSize": {
  12540. "__type__": "cc.Size",
  12541. "width": 1280,
  12542. "height": 720
  12543. },
  12544. "_anchorPoint": {
  12545. "__type__": "cc.Vec2",
  12546. "x": 0.5,
  12547. "y": 0.5
  12548. },
  12549. "_id": "23UXDiTnZI0pJsgr2r7LI7"
  12550. },
  12551. {
  12552. "__type__": "cc.Widget",
  12553. "_name": "",
  12554. "_objFlags": 0,
  12555. "__editorExtras__": {},
  12556. "node": {
  12557. "__id__": 5
  12558. },
  12559. "_enabled": true,
  12560. "__prefab": null,
  12561. "_alignFlags": 12,
  12562. "_target": {
  12563. "__id__": 2
  12564. },
  12565. "_left": 0,
  12566. "_right": 590,
  12567. "_top": 310,
  12568. "_bottom": 0,
  12569. "_horizontalCenter": 0,
  12570. "_verticalCenter": 0,
  12571. "_isAbsLeft": true,
  12572. "_isAbsRight": true,
  12573. "_isAbsTop": true,
  12574. "_isAbsBottom": true,
  12575. "_isAbsHorizontalCenter": true,
  12576. "_isAbsVerticalCenter": true,
  12577. "_originalWidth": 100,
  12578. "_originalHeight": 100,
  12579. "_alignMode": 2,
  12580. "_lockFlags": 0,
  12581. "_id": "e4KthIZu5HCrsF3x8F8bbV"
  12582. },
  12583. {
  12584. "__type__": "85935JrKhdBO5p/ZG5uEy7O",
  12585. "_name": "",
  12586. "_objFlags": 0,
  12587. "__editorExtras__": {},
  12588. "node": {
  12589. "__id__": 5
  12590. },
  12591. "_enabled": true,
  12592. "__prefab": null,
  12593. "_id": "1dcpWBeKNITJiLr2F3sil6"
  12594. },
  12595. {
  12596. "__type__": "cc.Node",
  12597. "_name": "UIRoot",
  12598. "_objFlags": 0,
  12599. "__editorExtras__": {},
  12600. "_parent": {
  12601. "__id__": 2
  12602. },
  12603. "_children": [
  12604. {
  12605. "__id__": 334
  12606. },
  12607. {
  12608. "__id__": 337
  12609. },
  12610. {
  12611. "__id__": 340
  12612. }
  12613. ],
  12614. "_active": true,
  12615. "_components": [
  12616. {
  12617. "__id__": 343
  12618. },
  12619. {
  12620. "__id__": 344
  12621. }
  12622. ],
  12623. "_prefab": null,
  12624. "_lpos": {
  12625. "__type__": "cc.Vec3",
  12626. "x": 0,
  12627. "y": 0,
  12628. "z": 0
  12629. },
  12630. "_lrot": {
  12631. "__type__": "cc.Quat",
  12632. "x": 0,
  12633. "y": 0,
  12634. "z": 0,
  12635. "w": 1
  12636. },
  12637. "_lscale": {
  12638. "__type__": "cc.Vec3",
  12639. "x": 1,
  12640. "y": 1,
  12641. "z": 1
  12642. },
  12643. "_mobility": 0,
  12644. "_layer": 33554432,
  12645. "_euler": {
  12646. "__type__": "cc.Vec3",
  12647. "x": 0,
  12648. "y": 0,
  12649. "z": 0
  12650. },
  12651. "_id": "7d6oNX3xVO0rXs1kWSThv7"
  12652. },
  12653. {
  12654. "__type__": "cc.Node",
  12655. "_name": "Page",
  12656. "_objFlags": 0,
  12657. "__editorExtras__": {},
  12658. "_parent": {
  12659. "__id__": 333
  12660. },
  12661. "_children": [],
  12662. "_active": true,
  12663. "_components": [
  12664. {
  12665. "__id__": 335
  12666. },
  12667. {
  12668. "__id__": 336
  12669. }
  12670. ],
  12671. "_prefab": null,
  12672. "_lpos": {
  12673. "__type__": "cc.Vec3",
  12674. "x": 0,
  12675. "y": 0,
  12676. "z": 0
  12677. },
  12678. "_lrot": {
  12679. "__type__": "cc.Quat",
  12680. "x": 0,
  12681. "y": 0,
  12682. "z": 0,
  12683. "w": 1
  12684. },
  12685. "_lscale": {
  12686. "__type__": "cc.Vec3",
  12687. "x": 1,
  12688. "y": 1,
  12689. "z": 1
  12690. },
  12691. "_mobility": 0,
  12692. "_layer": 33554432,
  12693. "_euler": {
  12694. "__type__": "cc.Vec3",
  12695. "x": 0,
  12696. "y": 0,
  12697. "z": 0
  12698. },
  12699. "_id": "8dAabxAdtISbQZSXf3e/U4"
  12700. },
  12701. {
  12702. "__type__": "cc.UITransform",
  12703. "_name": "",
  12704. "_objFlags": 0,
  12705. "__editorExtras__": {},
  12706. "node": {
  12707. "__id__": 334
  12708. },
  12709. "_enabled": true,
  12710. "__prefab": null,
  12711. "_contentSize": {
  12712. "__type__": "cc.Size",
  12713. "width": 1279.9999999999998,
  12714. "height": 720
  12715. },
  12716. "_anchorPoint": {
  12717. "__type__": "cc.Vec2",
  12718. "x": 0.5,
  12719. "y": 0.5
  12720. },
  12721. "_id": "dbhq6HWe1KzZ+rO1G224V2"
  12722. },
  12723. {
  12724. "__type__": "cc.Widget",
  12725. "_name": "",
  12726. "_objFlags": 0,
  12727. "__editorExtras__": {},
  12728. "node": {
  12729. "__id__": 334
  12730. },
  12731. "_enabled": true,
  12732. "__prefab": null,
  12733. "_alignFlags": 45,
  12734. "_target": null,
  12735. "_left": 0,
  12736. "_right": 0,
  12737. "_top": 0,
  12738. "_bottom": 0,
  12739. "_horizontalCenter": 0,
  12740. "_verticalCenter": 0,
  12741. "_isAbsLeft": true,
  12742. "_isAbsRight": true,
  12743. "_isAbsTop": true,
  12744. "_isAbsBottom": true,
  12745. "_isAbsHorizontalCenter": true,
  12746. "_isAbsVerticalCenter": true,
  12747. "_originalWidth": 100,
  12748. "_originalHeight": 100,
  12749. "_alignMode": 2,
  12750. "_lockFlags": 0,
  12751. "_id": "67KDXdMFxCb50JUjMuwktU"
  12752. },
  12753. {
  12754. "__type__": "cc.Node",
  12755. "_name": "Widget",
  12756. "_objFlags": 0,
  12757. "__editorExtras__": {},
  12758. "_parent": {
  12759. "__id__": 333
  12760. },
  12761. "_children": [],
  12762. "_active": true,
  12763. "_components": [
  12764. {
  12765. "__id__": 338
  12766. },
  12767. {
  12768. "__id__": 339
  12769. }
  12770. ],
  12771. "_prefab": null,
  12772. "_lpos": {
  12773. "__type__": "cc.Vec3",
  12774. "x": 0,
  12775. "y": 0,
  12776. "z": 0
  12777. },
  12778. "_lrot": {
  12779. "__type__": "cc.Quat",
  12780. "x": 0,
  12781. "y": 0,
  12782. "z": 0,
  12783. "w": 1
  12784. },
  12785. "_lscale": {
  12786. "__type__": "cc.Vec3",
  12787. "x": 1,
  12788. "y": 1,
  12789. "z": 1
  12790. },
  12791. "_mobility": 0,
  12792. "_layer": 33554432,
  12793. "_euler": {
  12794. "__type__": "cc.Vec3",
  12795. "x": 0,
  12796. "y": 0,
  12797. "z": 0
  12798. },
  12799. "_id": "a4U78aFLJEYp5fiRjYGLHY"
  12800. },
  12801. {
  12802. "__type__": "cc.UITransform",
  12803. "_name": "",
  12804. "_objFlags": 0,
  12805. "__editorExtras__": {},
  12806. "node": {
  12807. "__id__": 337
  12808. },
  12809. "_enabled": true,
  12810. "__prefab": null,
  12811. "_contentSize": {
  12812. "__type__": "cc.Size",
  12813. "width": 1279.9999999999998,
  12814. "height": 720
  12815. },
  12816. "_anchorPoint": {
  12817. "__type__": "cc.Vec2",
  12818. "x": 0.5,
  12819. "y": 0.5
  12820. },
  12821. "_id": "40NR6Rli1E0KBvKXf52fSF"
  12822. },
  12823. {
  12824. "__type__": "cc.Widget",
  12825. "_name": "",
  12826. "_objFlags": 0,
  12827. "__editorExtras__": {},
  12828. "node": {
  12829. "__id__": 337
  12830. },
  12831. "_enabled": true,
  12832. "__prefab": null,
  12833. "_alignFlags": 45,
  12834. "_target": null,
  12835. "_left": 0,
  12836. "_right": 0,
  12837. "_top": 0,
  12838. "_bottom": 0,
  12839. "_horizontalCenter": 0,
  12840. "_verticalCenter": 0,
  12841. "_isAbsLeft": true,
  12842. "_isAbsRight": true,
  12843. "_isAbsTop": true,
  12844. "_isAbsBottom": true,
  12845. "_isAbsHorizontalCenter": true,
  12846. "_isAbsVerticalCenter": true,
  12847. "_originalWidth": 100,
  12848. "_originalHeight": 100,
  12849. "_alignMode": 2,
  12850. "_lockFlags": 0,
  12851. "_id": "91DsLENFJNwK19mae6qN0j"
  12852. },
  12853. {
  12854. "__type__": "cc.Node",
  12855. "_name": "PopWin",
  12856. "_objFlags": 0,
  12857. "__editorExtras__": {},
  12858. "_parent": {
  12859. "__id__": 333
  12860. },
  12861. "_children": [],
  12862. "_active": true,
  12863. "_components": [
  12864. {
  12865. "__id__": 341
  12866. },
  12867. {
  12868. "__id__": 342
  12869. }
  12870. ],
  12871. "_prefab": null,
  12872. "_lpos": {
  12873. "__type__": "cc.Vec3",
  12874. "x": -2.8880000000000337,
  12875. "y": 0,
  12876. "z": 0
  12877. },
  12878. "_lrot": {
  12879. "__type__": "cc.Quat",
  12880. "x": 0,
  12881. "y": 0,
  12882. "z": 0,
  12883. "w": 1
  12884. },
  12885. "_lscale": {
  12886. "__type__": "cc.Vec3",
  12887. "x": 1,
  12888. "y": 1,
  12889. "z": 1
  12890. },
  12891. "_mobility": 0,
  12892. "_layer": 33554432,
  12893. "_euler": {
  12894. "__type__": "cc.Vec3",
  12895. "x": 0,
  12896. "y": 0,
  12897. "z": 0
  12898. },
  12899. "_id": "181d2UWcNMIYlJkAJG8ZeL"
  12900. },
  12901. {
  12902. "__type__": "cc.UITransform",
  12903. "_name": "",
  12904. "_objFlags": 0,
  12905. "__editorExtras__": {},
  12906. "node": {
  12907. "__id__": 340
  12908. },
  12909. "_enabled": true,
  12910. "__prefab": null,
  12911. "_contentSize": {
  12912. "__type__": "cc.Size",
  12913. "width": 1279.9999999999998,
  12914. "height": 720
  12915. },
  12916. "_anchorPoint": {
  12917. "__type__": "cc.Vec2",
  12918. "x": 0.5,
  12919. "y": 0.5
  12920. },
  12921. "_id": "ccGiow+ChNa7YMuumXgNzY"
  12922. },
  12923. {
  12924. "__type__": "cc.Widget",
  12925. "_name": "",
  12926. "_objFlags": 0,
  12927. "__editorExtras__": {},
  12928. "node": {
  12929. "__id__": 340
  12930. },
  12931. "_enabled": true,
  12932. "__prefab": null,
  12933. "_alignFlags": 45,
  12934. "_target": null,
  12935. "_left": -2.888,
  12936. "_right": 2.888,
  12937. "_top": 0,
  12938. "_bottom": 0,
  12939. "_horizontalCenter": 0,
  12940. "_verticalCenter": 0,
  12941. "_isAbsLeft": true,
  12942. "_isAbsRight": true,
  12943. "_isAbsTop": true,
  12944. "_isAbsBottom": true,
  12945. "_isAbsHorizontalCenter": true,
  12946. "_isAbsVerticalCenter": true,
  12947. "_originalWidth": 100,
  12948. "_originalHeight": 100,
  12949. "_alignMode": 2,
  12950. "_lockFlags": 0,
  12951. "_id": "4bLPp6sxNNyLtdE5fcWt+d"
  12952. },
  12953. {
  12954. "__type__": "cc.UITransform",
  12955. "_name": "",
  12956. "_objFlags": 0,
  12957. "__editorExtras__": {},
  12958. "node": {
  12959. "__id__": 333
  12960. },
  12961. "_enabled": true,
  12962. "__prefab": null,
  12963. "_contentSize": {
  12964. "__type__": "cc.Size",
  12965. "width": 1279.9999999999998,
  12966. "height": 720
  12967. },
  12968. "_anchorPoint": {
  12969. "__type__": "cc.Vec2",
  12970. "x": 0.5,
  12971. "y": 0.5
  12972. },
  12973. "_id": "d5ilyx1hFKIL+knOleWonu"
  12974. },
  12975. {
  12976. "__type__": "cc.Widget",
  12977. "_name": "",
  12978. "_objFlags": 0,
  12979. "__editorExtras__": {},
  12980. "node": {
  12981. "__id__": 333
  12982. },
  12983. "_enabled": true,
  12984. "__prefab": null,
  12985. "_alignFlags": 45,
  12986. "_target": {
  12987. "__id__": 2
  12988. },
  12989. "_left": 0,
  12990. "_right": 0,
  12991. "_top": 0,
  12992. "_bottom": 0,
  12993. "_horizontalCenter": 0,
  12994. "_verticalCenter": 0,
  12995. "_isAbsLeft": true,
  12996. "_isAbsRight": true,
  12997. "_isAbsTop": true,
  12998. "_isAbsBottom": true,
  12999. "_isAbsHorizontalCenter": true,
  13000. "_isAbsVerticalCenter": true,
  13001. "_originalWidth": 100,
  13002. "_originalHeight": 100,
  13003. "_alignMode": 2,
  13004. "_lockFlags": 0,
  13005. "_id": "d47nc2dq1KcqImyMR2FvbP"
  13006. },
  13007. {
  13008. "__type__": "cc.Node",
  13009. "_name": "LoadingUI",
  13010. "_objFlags": 0,
  13011. "__editorExtras__": {},
  13012. "_parent": {
  13013. "__id__": 2
  13014. },
  13015. "_children": [
  13016. {
  13017. "__id__": 346
  13018. },
  13019. {
  13020. "__id__": 354
  13021. },
  13022. {
  13023. "__id__": 358
  13024. },
  13025. {
  13026. "__id__": 363
  13027. }
  13028. ],
  13029. "_active": false,
  13030. "_components": [
  13031. {
  13032. "__id__": 367
  13033. },
  13034. {
  13035. "__id__": 368
  13036. },
  13037. {
  13038. "__id__": 369
  13039. },
  13040. {
  13041. "__id__": 370
  13042. }
  13043. ],
  13044. "_prefab": null,
  13045. "_lpos": {
  13046. "__type__": "cc.Vec3",
  13047. "x": 0,
  13048. "y": 0,
  13049. "z": 0
  13050. },
  13051. "_lrot": {
  13052. "__type__": "cc.Quat",
  13053. "x": 0,
  13054. "y": 0,
  13055. "z": 0,
  13056. "w": 1
  13057. },
  13058. "_lscale": {
  13059. "__type__": "cc.Vec3",
  13060. "x": 1,
  13061. "y": 1,
  13062. "z": 1
  13063. },
  13064. "_mobility": 0,
  13065. "_layer": 33554432,
  13066. "_euler": {
  13067. "__type__": "cc.Vec3",
  13068. "x": 0,
  13069. "y": 0,
  13070. "z": 0
  13071. },
  13072. "_id": "a4BQWHs4pJ0r1SrM9OZ8eZ"
  13073. },
  13074. {
  13075. "__type__": "cc.Node",
  13076. "_name": "ProgressBar",
  13077. "_objFlags": 0,
  13078. "__editorExtras__": {},
  13079. "_parent": {
  13080. "__id__": 345
  13081. },
  13082. "_children": [
  13083. {
  13084. "__id__": 347
  13085. }
  13086. ],
  13087. "_active": true,
  13088. "_components": [
  13089. {
  13090. "__id__": 350
  13091. },
  13092. {
  13093. "__id__": 351
  13094. },
  13095. {
  13096. "__id__": 352
  13097. },
  13098. {
  13099. "__id__": 353
  13100. }
  13101. ],
  13102. "_prefab": null,
  13103. "_lpos": {
  13104. "__type__": "cc.Vec3",
  13105. "x": 0,
  13106. "y": -150.08492569002124,
  13107. "z": 0
  13108. },
  13109. "_lrot": {
  13110. "__type__": "cc.Quat",
  13111. "x": 0,
  13112. "y": 0,
  13113. "z": 0,
  13114. "w": 1
  13115. },
  13116. "_lscale": {
  13117. "__type__": "cc.Vec3",
  13118. "x": 1,
  13119. "y": 1,
  13120. "z": 1
  13121. },
  13122. "_mobility": 0,
  13123. "_layer": 33554432,
  13124. "_euler": {
  13125. "__type__": "cc.Vec3",
  13126. "x": 0,
  13127. "y": 0,
  13128. "z": 0
  13129. },
  13130. "_id": "1ca6P5maRFaoXBu4JDmAbK"
  13131. },
  13132. {
  13133. "__type__": "cc.Node",
  13134. "_name": "Bar",
  13135. "_objFlags": 0,
  13136. "__editorExtras__": {},
  13137. "_parent": {
  13138. "__id__": 346
  13139. },
  13140. "_children": [],
  13141. "_active": true,
  13142. "_components": [
  13143. {
  13144. "__id__": 348
  13145. },
  13146. {
  13147. "__id__": 349
  13148. }
  13149. ],
  13150. "_prefab": null,
  13151. "_lpos": {
  13152. "__type__": "cc.Vec3",
  13153. "x": -250,
  13154. "y": 0,
  13155. "z": 0
  13156. },
  13157. "_lrot": {
  13158. "__type__": "cc.Quat",
  13159. "x": 0,
  13160. "y": 0,
  13161. "z": 0,
  13162. "w": 1
  13163. },
  13164. "_lscale": {
  13165. "__type__": "cc.Vec3",
  13166. "x": 1,
  13167. "y": 1,
  13168. "z": 1
  13169. },
  13170. "_mobility": 0,
  13171. "_layer": 33554432,
  13172. "_euler": {
  13173. "__type__": "cc.Vec3",
  13174. "x": 0,
  13175. "y": 0,
  13176. "z": 0
  13177. },
  13178. "_id": "bf5asW/J9IdpzxFFT+D88n"
  13179. },
  13180. {
  13181. "__type__": "cc.UITransform",
  13182. "_name": "",
  13183. "_objFlags": 0,
  13184. "__editorExtras__": {},
  13185. "node": {
  13186. "__id__": 347
  13187. },
  13188. "_enabled": true,
  13189. "__prefab": null,
  13190. "_contentSize": {
  13191. "__type__": "cc.Size",
  13192. "width": 0,
  13193. "height": 20
  13194. },
  13195. "_anchorPoint": {
  13196. "__type__": "cc.Vec2",
  13197. "x": 0,
  13198. "y": 0.5
  13199. },
  13200. "_id": "f2FzLAn+BFtKVF9nInIJIJ"
  13201. },
  13202. {
  13203. "__type__": "cc.Sprite",
  13204. "_name": "",
  13205. "_objFlags": 0,
  13206. "__editorExtras__": {},
  13207. "node": {
  13208. "__id__": 347
  13209. },
  13210. "_enabled": true,
  13211. "__prefab": null,
  13212. "_customMaterial": null,
  13213. "_srcBlendFactor": 2,
  13214. "_dstBlendFactor": 4,
  13215. "_color": {
  13216. "__type__": "cc.Color",
  13217. "r": 255,
  13218. "g": 255,
  13219. "b": 255,
  13220. "a": 255
  13221. },
  13222. "_spriteFrame": {
  13223. "__uuid__": "1440ddfa-68c4-4328-bf37-600cd18f4812@a1de9",
  13224. "__expectedType__": "cc.SpriteFrame"
  13225. },
  13226. "_type": 1,
  13227. "_fillType": 0,
  13228. "_sizeMode": 0,
  13229. "_fillCenter": {
  13230. "__type__": "cc.Vec2",
  13231. "x": 0,
  13232. "y": 0
  13233. },
  13234. "_fillStart": 0,
  13235. "_fillRange": 0,
  13236. "_isTrimmedMode": true,
  13237. "_useGrayscale": false,
  13238. "_atlas": null,
  13239. "_id": "51M/pbck5J1ZKycpA5cLbX"
  13240. },
  13241. {
  13242. "__type__": "cc.UITransform",
  13243. "_name": "",
  13244. "_objFlags": 0,
  13245. "__editorExtras__": {},
  13246. "node": {
  13247. "__id__": 346
  13248. },
  13249. "_enabled": true,
  13250. "__prefab": null,
  13251. "_contentSize": {
  13252. "__type__": "cc.Size",
  13253. "width": 500,
  13254. "height": 20
  13255. },
  13256. "_anchorPoint": {
  13257. "__type__": "cc.Vec2",
  13258. "x": 0.5,
  13259. "y": 0.5
  13260. },
  13261. "_id": "578qDg1nlEiZMCisYpmL3+"
  13262. },
  13263. {
  13264. "__type__": "cc.Sprite",
  13265. "_name": "",
  13266. "_objFlags": 0,
  13267. "__editorExtras__": {},
  13268. "node": {
  13269. "__id__": 346
  13270. },
  13271. "_enabled": true,
  13272. "__prefab": null,
  13273. "_customMaterial": null,
  13274. "_srcBlendFactor": 2,
  13275. "_dstBlendFactor": 4,
  13276. "_color": {
  13277. "__type__": "cc.Color",
  13278. "r": 255,
  13279. "g": 255,
  13280. "b": 255,
  13281. "a": 255
  13282. },
  13283. "_spriteFrame": {
  13284. "__uuid__": "1440ddfa-68c4-4328-bf37-600cd18f4812@9f969",
  13285. "__expectedType__": "cc.SpriteFrame"
  13286. },
  13287. "_type": 1,
  13288. "_fillType": 0,
  13289. "_sizeMode": 0,
  13290. "_fillCenter": {
  13291. "__type__": "cc.Vec2",
  13292. "x": 0,
  13293. "y": 0
  13294. },
  13295. "_fillStart": 0,
  13296. "_fillRange": 0,
  13297. "_isTrimmedMode": true,
  13298. "_useGrayscale": false,
  13299. "_atlas": null,
  13300. "_id": "02v+ESULhMkY7PsRD/llm8"
  13301. },
  13302. {
  13303. "__type__": "cc.ProgressBar",
  13304. "_name": "",
  13305. "_objFlags": 0,
  13306. "__editorExtras__": {},
  13307. "node": {
  13308. "__id__": 346
  13309. },
  13310. "_enabled": true,
  13311. "__prefab": null,
  13312. "_barSprite": {
  13313. "__id__": 349
  13314. },
  13315. "_mode": 0,
  13316. "_totalLength": 500,
  13317. "_progress": 0,
  13318. "_reverse": false,
  13319. "_id": "0flQihPAxGVqB2uIAnJPz5"
  13320. },
  13321. {
  13322. "__type__": "cc.Widget",
  13323. "_name": "",
  13324. "_objFlags": 0,
  13325. "__editorExtras__": {},
  13326. "node": {
  13327. "__id__": 346
  13328. },
  13329. "_enabled": true,
  13330. "__prefab": null,
  13331. "_alignFlags": 44,
  13332. "_target": null,
  13333. "_left": 390,
  13334. "_right": 390,
  13335. "_top": 0,
  13336. "_bottom": 200,
  13337. "_horizontalCenter": 0,
  13338. "_verticalCenter": 0,
  13339. "_isAbsLeft": true,
  13340. "_isAbsRight": true,
  13341. "_isAbsTop": true,
  13342. "_isAbsBottom": true,
  13343. "_isAbsHorizontalCenter": true,
  13344. "_isAbsVerticalCenter": true,
  13345. "_originalWidth": 400,
  13346. "_originalHeight": 0,
  13347. "_alignMode": 2,
  13348. "_lockFlags": 0,
  13349. "_id": "5fx/D0sHFLcYqauT00RUWs"
  13350. },
  13351. {
  13352. "__type__": "cc.Node",
  13353. "_name": "Label",
  13354. "_objFlags": 0,
  13355. "__editorExtras__": {},
  13356. "_parent": {
  13357. "__id__": 345
  13358. },
  13359. "_children": [],
  13360. "_active": true,
  13361. "_components": [
  13362. {
  13363. "__id__": 355
  13364. },
  13365. {
  13366. "__id__": 356
  13367. },
  13368. {
  13369. "__id__": 357
  13370. }
  13371. ],
  13372. "_prefab": null,
  13373. "_lpos": {
  13374. "__type__": "cc.Vec3",
  13375. "x": 274.427734375,
  13376. "y": -150.08492569002124,
  13377. "z": 0
  13378. },
  13379. "_lrot": {
  13380. "__type__": "cc.Quat",
  13381. "x": 0,
  13382. "y": 0,
  13383. "z": 0,
  13384. "w": 1
  13385. },
  13386. "_lscale": {
  13387. "__type__": "cc.Vec3",
  13388. "x": 1,
  13389. "y": 1,
  13390. "z": 1
  13391. },
  13392. "_mobility": 0,
  13393. "_layer": 33554432,
  13394. "_euler": {
  13395. "__type__": "cc.Vec3",
  13396. "x": 0,
  13397. "y": 0,
  13398. "z": 0
  13399. },
  13400. "_id": "f4N/PtNxNOMqFNOGtKFL32"
  13401. },
  13402. {
  13403. "__type__": "cc.UITransform",
  13404. "_name": "",
  13405. "_objFlags": 0,
  13406. "__editorExtras__": {},
  13407. "node": {
  13408. "__id__": 354
  13409. },
  13410. "_enabled": true,
  13411. "__prefab": null,
  13412. "_contentSize": {
  13413. "__type__": "cc.Size",
  13414. "width": 0,
  13415. "height": 50.4
  13416. },
  13417. "_anchorPoint": {
  13418. "__type__": "cc.Vec2",
  13419. "x": 0,
  13420. "y": 0.5
  13421. },
  13422. "_id": "71zZRlEV1D77dGL/isXtD+"
  13423. },
  13424. {
  13425. "__type__": "cc.Label",
  13426. "_name": "",
  13427. "_objFlags": 0,
  13428. "__editorExtras__": {},
  13429. "node": {
  13430. "__id__": 354
  13431. },
  13432. "_enabled": true,
  13433. "__prefab": null,
  13434. "_customMaterial": null,
  13435. "_srcBlendFactor": 2,
  13436. "_dstBlendFactor": 4,
  13437. "_color": {
  13438. "__type__": "cc.Color",
  13439. "r": 255,
  13440. "g": 255,
  13441. "b": 255,
  13442. "a": 255
  13443. },
  13444. "_string": "",
  13445. "_horizontalAlign": 1,
  13446. "_verticalAlign": 1,
  13447. "_actualFontSize": 28,
  13448. "_fontSize": 28,
  13449. "_fontFamily": "Arial",
  13450. "_lineHeight": 40,
  13451. "_overflow": 0,
  13452. "_enableWrapText": true,
  13453. "_font": null,
  13454. "_isSystemFontUsed": true,
  13455. "_spacingX": 0,
  13456. "_isItalic": false,
  13457. "_isBold": false,
  13458. "_isUnderline": false,
  13459. "_underlineHeight": 2,
  13460. "_cacheMode": 0,
  13461. "_enableOutline": false,
  13462. "_outlineColor": {
  13463. "__type__": "cc.Color",
  13464. "r": 0,
  13465. "g": 0,
  13466. "b": 0,
  13467. "a": 255
  13468. },
  13469. "_outlineWidth": 2,
  13470. "_enableShadow": false,
  13471. "_shadowColor": {
  13472. "__type__": "cc.Color",
  13473. "r": 0,
  13474. "g": 0,
  13475. "b": 0,
  13476. "a": 255
  13477. },
  13478. "_shadowOffset": {
  13479. "__type__": "cc.Vec2",
  13480. "x": 2,
  13481. "y": 2
  13482. },
  13483. "_shadowBlur": 2,
  13484. "_id": "8a+1i5T8xJc6dwh+pZ/Rs9"
  13485. },
  13486. {
  13487. "__type__": "cc.Widget",
  13488. "_name": "",
  13489. "_objFlags": 0,
  13490. "__editorExtras__": {},
  13491. "node": {
  13492. "__id__": 354
  13493. },
  13494. "_enabled": true,
  13495. "__prefab": null,
  13496. "_alignFlags": 36,
  13497. "_target": null,
  13498. "_left": 618.8720703125,
  13499. "_right": 365.572265625,
  13500. "_top": 0,
  13501. "_bottom": 184.8,
  13502. "_horizontalCenter": 0,
  13503. "_verticalCenter": 0,
  13504. "_isAbsLeft": true,
  13505. "_isAbsRight": true,
  13506. "_isAbsTop": true,
  13507. "_isAbsBottom": true,
  13508. "_isAbsHorizontalCenter": true,
  13509. "_isAbsVerticalCenter": true,
  13510. "_originalWidth": 42.255859375,
  13511. "_originalHeight": 0,
  13512. "_alignMode": 2,
  13513. "_lockFlags": 0,
  13514. "_id": "51un30p0VBsZxbS7AhHaUU"
  13515. },
  13516. {
  13517. "__type__": "cc.Node",
  13518. "_name": "Loading-1",
  13519. "_objFlags": 0,
  13520. "__editorExtras__": {},
  13521. "_parent": {
  13522. "__id__": 345
  13523. },
  13524. "_children": [],
  13525. "_active": true,
  13526. "_components": [
  13527. {
  13528. "__id__": 359
  13529. },
  13530. {
  13531. "__id__": 360
  13532. },
  13533. {
  13534. "__id__": 361
  13535. },
  13536. {
  13537. "__id__": 362
  13538. }
  13539. ],
  13540. "_prefab": null,
  13541. "_lpos": {
  13542. "__type__": "cc.Vec3",
  13543. "x": 0,
  13544. "y": -70.08492569002124,
  13545. "z": 0
  13546. },
  13547. "_lrot": {
  13548. "__type__": "cc.Quat",
  13549. "x": 0,
  13550. "y": 0,
  13551. "z": 0,
  13552. "w": 1
  13553. },
  13554. "_lscale": {
  13555. "__type__": "cc.Vec3",
  13556. "x": 1,
  13557. "y": 1,
  13558. "z": 1
  13559. },
  13560. "_mobility": 0,
  13561. "_layer": 33554432,
  13562. "_euler": {
  13563. "__type__": "cc.Vec3",
  13564. "x": 0,
  13565. "y": 0,
  13566. "z": 0
  13567. },
  13568. "_id": "4aecazeOhNW4kTscvVL7Xf"
  13569. },
  13570. {
  13571. "__type__": "cc.UITransform",
  13572. "_name": "",
  13573. "_objFlags": 0,
  13574. "__editorExtras__": {},
  13575. "node": {
  13576. "__id__": 358
  13577. },
  13578. "_enabled": true,
  13579. "__prefab": null,
  13580. "_contentSize": {
  13581. "__type__": "cc.Size",
  13582. "width": 151,
  13583. "height": 120
  13584. },
  13585. "_anchorPoint": {
  13586. "__type__": "cc.Vec2",
  13587. "x": 0.5,
  13588. "y": 0.5
  13589. },
  13590. "_id": "11vkCZuo1E3YhiX+1I4sv2"
  13591. },
  13592. {
  13593. "__type__": "cc.Sprite",
  13594. "_name": "",
  13595. "_objFlags": 0,
  13596. "__editorExtras__": {},
  13597. "node": {
  13598. "__id__": 358
  13599. },
  13600. "_enabled": true,
  13601. "__prefab": null,
  13602. "_customMaterial": null,
  13603. "_srcBlendFactor": 2,
  13604. "_dstBlendFactor": 4,
  13605. "_color": {
  13606. "__type__": "cc.Color",
  13607. "r": 255,
  13608. "g": 255,
  13609. "b": 255,
  13610. "a": 255
  13611. },
  13612. "_spriteFrame": {
  13613. "__uuid__": "6f67f6a5-27d2-402c-aaa0-7f34ed9a5e20@fa609",
  13614. "__expectedType__": "cc.SpriteFrame"
  13615. },
  13616. "_type": 0,
  13617. "_fillType": 0,
  13618. "_sizeMode": 1,
  13619. "_fillCenter": {
  13620. "__type__": "cc.Vec2",
  13621. "x": 0,
  13622. "y": 0
  13623. },
  13624. "_fillStart": 0,
  13625. "_fillRange": 0,
  13626. "_isTrimmedMode": true,
  13627. "_useGrayscale": false,
  13628. "_atlas": null,
  13629. "_id": "18AjkPkCFJArip0b540Ptu"
  13630. },
  13631. {
  13632. "__type__": "cc.Animation",
  13633. "_name": "",
  13634. "_objFlags": 0,
  13635. "__editorExtras__": {},
  13636. "node": {
  13637. "__id__": 358
  13638. },
  13639. "_enabled": true,
  13640. "__prefab": null,
  13641. "playOnLoad": true,
  13642. "_clips": [
  13643. {
  13644. "__uuid__": "1b3e4b0f-b677-4158-8753-e255891a403b",
  13645. "__expectedType__": "cc.AnimationClip"
  13646. }
  13647. ],
  13648. "_defaultClip": {
  13649. "__uuid__": "1b3e4b0f-b677-4158-8753-e255891a403b",
  13650. "__expectedType__": "cc.AnimationClip"
  13651. },
  13652. "_id": "aeWn3YIDdP1rU4yKSmtKR+"
  13653. },
  13654. {
  13655. "__type__": "cc.Widget",
  13656. "_name": "",
  13657. "_objFlags": 0,
  13658. "__editorExtras__": {},
  13659. "node": {
  13660. "__id__": 358
  13661. },
  13662. "_enabled": true,
  13663. "__prefab": null,
  13664. "_alignFlags": 44,
  13665. "_target": null,
  13666. "_left": 564.5,
  13667. "_right": 564.5,
  13668. "_top": 0,
  13669. "_bottom": 230,
  13670. "_horizontalCenter": 0,
  13671. "_verticalCenter": 0,
  13672. "_isAbsLeft": true,
  13673. "_isAbsRight": true,
  13674. "_isAbsTop": true,
  13675. "_isAbsBottom": true,
  13676. "_isAbsHorizontalCenter": true,
  13677. "_isAbsVerticalCenter": true,
  13678. "_originalWidth": 151,
  13679. "_originalHeight": 0,
  13680. "_alignMode": 2,
  13681. "_lockFlags": 0,
  13682. "_id": "b9EY5pMv9EG7Hz3hV80Sat"
  13683. },
  13684. {
  13685. "__type__": "cc.Node",
  13686. "_name": "_which",
  13687. "_objFlags": 0,
  13688. "__editorExtras__": {},
  13689. "_parent": {
  13690. "__id__": 345
  13691. },
  13692. "_children": [],
  13693. "_active": true,
  13694. "_components": [
  13695. {
  13696. "__id__": 364
  13697. },
  13698. {
  13699. "__id__": 365
  13700. },
  13701. {
  13702. "__id__": 366
  13703. }
  13704. ],
  13705. "_prefab": null,
  13706. "_lpos": {
  13707. "__type__": "cc.Vec3",
  13708. "x": 0,
  13709. "y": -184.88492569002125,
  13710. "z": 0
  13711. },
  13712. "_lrot": {
  13713. "__type__": "cc.Quat",
  13714. "x": 0,
  13715. "y": 0,
  13716. "z": 0,
  13717. "w": 1
  13718. },
  13719. "_lscale": {
  13720. "__type__": "cc.Vec3",
  13721. "x": 1,
  13722. "y": 1,
  13723. "z": 1
  13724. },
  13725. "_mobility": 0,
  13726. "_layer": 33554432,
  13727. "_euler": {
  13728. "__type__": "cc.Vec3",
  13729. "x": 0,
  13730. "y": 0,
  13731. "z": 0
  13732. },
  13733. "_id": "7aAPoju+JN0rLfUsecmElP"
  13734. },
  13735. {
  13736. "__type__": "cc.UITransform",
  13737. "_name": "",
  13738. "_objFlags": 0,
  13739. "__editorExtras__": {},
  13740. "node": {
  13741. "__id__": 363
  13742. },
  13743. "_enabled": true,
  13744. "__prefab": null,
  13745. "_contentSize": {
  13746. "__type__": "cc.Size",
  13747. "width": 0,
  13748. "height": 50.4
  13749. },
  13750. "_anchorPoint": {
  13751. "__type__": "cc.Vec2",
  13752. "x": 0.5,
  13753. "y": 0.5
  13754. },
  13755. "_id": "9eB/hXdSdJv6DmoVBqUn/p"
  13756. },
  13757. {
  13758. "__type__": "cc.Label",
  13759. "_name": "",
  13760. "_objFlags": 0,
  13761. "__editorExtras__": {},
  13762. "node": {
  13763. "__id__": 363
  13764. },
  13765. "_enabled": true,
  13766. "__prefab": null,
  13767. "_customMaterial": null,
  13768. "_srcBlendFactor": 2,
  13769. "_dstBlendFactor": 4,
  13770. "_color": {
  13771. "__type__": "cc.Color",
  13772. "r": 255,
  13773. "g": 255,
  13774. "b": 255,
  13775. "a": 255
  13776. },
  13777. "_string": "",
  13778. "_horizontalAlign": 1,
  13779. "_verticalAlign": 1,
  13780. "_actualFontSize": 24,
  13781. "_fontSize": 24,
  13782. "_fontFamily": "Arial",
  13783. "_lineHeight": 40,
  13784. "_overflow": 0,
  13785. "_enableWrapText": true,
  13786. "_font": null,
  13787. "_isSystemFontUsed": true,
  13788. "_spacingX": 0,
  13789. "_isItalic": false,
  13790. "_isBold": false,
  13791. "_isUnderline": false,
  13792. "_underlineHeight": 2,
  13793. "_cacheMode": 0,
  13794. "_enableOutline": false,
  13795. "_outlineColor": {
  13796. "__type__": "cc.Color",
  13797. "r": 0,
  13798. "g": 0,
  13799. "b": 0,
  13800. "a": 255
  13801. },
  13802. "_outlineWidth": 2,
  13803. "_enableShadow": false,
  13804. "_shadowColor": {
  13805. "__type__": "cc.Color",
  13806. "r": 0,
  13807. "g": 0,
  13808. "b": 0,
  13809. "a": 255
  13810. },
  13811. "_shadowOffset": {
  13812. "__type__": "cc.Vec2",
  13813. "x": 2,
  13814. "y": 2
  13815. },
  13816. "_shadowBlur": 2,
  13817. "_id": "2cbEyQ97hFea3UKO4dHj57"
  13818. },
  13819. {
  13820. "__type__": "cc.Widget",
  13821. "_name": "",
  13822. "_objFlags": 0,
  13823. "__editorExtras__": {},
  13824. "node": {
  13825. "__id__": 363
  13826. },
  13827. "_enabled": true,
  13828. "__prefab": null,
  13829. "_alignFlags": 44,
  13830. "_target": null,
  13831. "_left": 640,
  13832. "_right": 640,
  13833. "_top": 0,
  13834. "_bottom": 150,
  13835. "_horizontalCenter": 0,
  13836. "_verticalCenter": 0,
  13837. "_isAbsLeft": true,
  13838. "_isAbsRight": true,
  13839. "_isAbsTop": true,
  13840. "_isAbsBottom": true,
  13841. "_isAbsHorizontalCenter": true,
  13842. "_isAbsVerticalCenter": true,
  13843. "_originalWidth": 42.255859375,
  13844. "_originalHeight": 0,
  13845. "_alignMode": 2,
  13846. "_lockFlags": 0,
  13847. "_id": "9c458B4vpP26XksIBE0L0A"
  13848. },
  13849. {
  13850. "__type__": "cc.UITransform",
  13851. "_name": "",
  13852. "_objFlags": 0,
  13853. "__editorExtras__": {},
  13854. "node": {
  13855. "__id__": 345
  13856. },
  13857. "_enabled": true,
  13858. "__prefab": null,
  13859. "_contentSize": {
  13860. "__type__": "cc.Size",
  13861. "width": 1280,
  13862. "height": 720.1698513800425
  13863. },
  13864. "_anchorPoint": {
  13865. "__type__": "cc.Vec2",
  13866. "x": 0.5,
  13867. "y": 0.5
  13868. },
  13869. "_id": "97t96HJS9GkaImG0xgSRce"
  13870. },
  13871. {
  13872. "__type__": "cc.Widget",
  13873. "_name": "",
  13874. "_objFlags": 0,
  13875. "__editorExtras__": {},
  13876. "node": {
  13877. "__id__": 345
  13878. },
  13879. "_enabled": true,
  13880. "__prefab": null,
  13881. "_alignFlags": 45,
  13882. "_target": {
  13883. "__id__": 2
  13884. },
  13885. "_left": 0,
  13886. "_right": 0,
  13887. "_top": 0,
  13888. "_bottom": 0,
  13889. "_horizontalCenter": 0,
  13890. "_verticalCenter": 0,
  13891. "_isAbsLeft": true,
  13892. "_isAbsRight": true,
  13893. "_isAbsTop": true,
  13894. "_isAbsBottom": true,
  13895. "_isAbsHorizontalCenter": true,
  13896. "_isAbsVerticalCenter": true,
  13897. "_originalWidth": 100,
  13898. "_originalHeight": 100,
  13899. "_alignMode": 2,
  13900. "_lockFlags": 0,
  13901. "_id": "4csNOVuWNEqbVYNhHrX0TR"
  13902. },
  13903. {
  13904. "__type__": "cc.Sprite",
  13905. "_name": "",
  13906. "_objFlags": 0,
  13907. "__editorExtras__": {},
  13908. "node": {
  13909. "__id__": 345
  13910. },
  13911. "_enabled": true,
  13912. "__prefab": null,
  13913. "_customMaterial": null,
  13914. "_srcBlendFactor": 2,
  13915. "_dstBlendFactor": 4,
  13916. "_color": {
  13917. "__type__": "cc.Color",
  13918. "r": 255,
  13919. "g": 255,
  13920. "b": 255,
  13921. "a": 255
  13922. },
  13923. "_spriteFrame": {
  13924. "__uuid__": "aa5af9aa-997a-47e7-9a20-80c938bfeaa4@f9941",
  13925. "__expectedType__": "cc.SpriteFrame"
  13926. },
  13927. "_type": 0,
  13928. "_fillType": 0,
  13929. "_sizeMode": 0,
  13930. "_fillCenter": {
  13931. "__type__": "cc.Vec2",
  13932. "x": 0,
  13933. "y": 0
  13934. },
  13935. "_fillStart": 0,
  13936. "_fillRange": 0,
  13937. "_isTrimmedMode": true,
  13938. "_useGrayscale": false,
  13939. "_atlas": null,
  13940. "_id": "17PW2hpnBDc5c24/+1KbL8"
  13941. },
  13942. {
  13943. "__type__": "ff6c39yyflKjIs1t6onLa5c",
  13944. "_name": "",
  13945. "_objFlags": 0,
  13946. "__editorExtras__": {},
  13947. "node": {
  13948. "__id__": 345
  13949. },
  13950. "_enabled": true,
  13951. "__prefab": null,
  13952. "_id": "4fVQj1PfVCdYpgc5yFXwQK"
  13953. },
  13954. {
  13955. "__type__": "cc.Node",
  13956. "_name": "LoadScene",
  13957. "_objFlags": 0,
  13958. "__editorExtras__": {},
  13959. "_parent": {
  13960. "__id__": 2
  13961. },
  13962. "_children": [
  13963. {
  13964. "__id__": 372
  13965. },
  13966. {
  13967. "__id__": 377
  13968. },
  13969. {
  13970. "__id__": 384
  13971. }
  13972. ],
  13973. "_active": false,
  13974. "_components": [
  13975. {
  13976. "__id__": 388
  13977. },
  13978. {
  13979. "__id__": 389
  13980. },
  13981. {
  13982. "__id__": 390
  13983. }
  13984. ],
  13985. "_prefab": null,
  13986. "_lpos": {
  13987. "__type__": "cc.Vec3",
  13988. "x": 0,
  13989. "y": 0,
  13990. "z": 0
  13991. },
  13992. "_lrot": {
  13993. "__type__": "cc.Quat",
  13994. "x": 0,
  13995. "y": 0,
  13996. "z": 0,
  13997. "w": 1
  13998. },
  13999. "_lscale": {
  14000. "__type__": "cc.Vec3",
  14001. "x": 1,
  14002. "y": 1,
  14003. "z": 1
  14004. },
  14005. "_mobility": 0,
  14006. "_layer": 33554432,
  14007. "_euler": {
  14008. "__type__": "cc.Vec3",
  14009. "x": 0,
  14010. "y": 0,
  14011. "z": 0
  14012. },
  14013. "_id": "27UxTAjsRBnKk2ayQsrXKB"
  14014. },
  14015. {
  14016. "__type__": "cc.Node",
  14017. "_name": "LoadSceneBg",
  14018. "_objFlags": 0,
  14019. "__editorExtras__": {},
  14020. "_parent": {
  14021. "__id__": 371
  14022. },
  14023. "_children": [],
  14024. "_active": true,
  14025. "_components": [
  14026. {
  14027. "__id__": 373
  14028. },
  14029. {
  14030. "__id__": 374
  14031. },
  14032. {
  14033. "__id__": 375
  14034. },
  14035. {
  14036. "__id__": 376
  14037. }
  14038. ],
  14039. "_prefab": null,
  14040. "_lpos": {
  14041. "__type__": "cc.Vec3",
  14042. "x": 0,
  14043. "y": 0,
  14044. "z": 0
  14045. },
  14046. "_lrot": {
  14047. "__type__": "cc.Quat",
  14048. "x": 0,
  14049. "y": 0,
  14050. "z": 0,
  14051. "w": 1
  14052. },
  14053. "_lscale": {
  14054. "__type__": "cc.Vec3",
  14055. "x": 1,
  14056. "y": 1,
  14057. "z": 1
  14058. },
  14059. "_mobility": 0,
  14060. "_layer": 33554432,
  14061. "_euler": {
  14062. "__type__": "cc.Vec3",
  14063. "x": 0,
  14064. "y": 0,
  14065. "z": 0
  14066. },
  14067. "_id": "feVQI/eN1DwJSlN4gvSf1i"
  14068. },
  14069. {
  14070. "__type__": "cc.UITransform",
  14071. "_name": "",
  14072. "_objFlags": 0,
  14073. "__editorExtras__": {},
  14074. "node": {
  14075. "__id__": 372
  14076. },
  14077. "_enabled": true,
  14078. "__prefab": null,
  14079. "_contentSize": {
  14080. "__type__": "cc.Size",
  14081. "width": 1280,
  14082. "height": 720
  14083. },
  14084. "_anchorPoint": {
  14085. "__type__": "cc.Vec2",
  14086. "x": 0.5,
  14087. "y": 0.5
  14088. },
  14089. "_id": "f3fQ4UvKpDB7Q7k81AjABh"
  14090. },
  14091. {
  14092. "__type__": "cc.Widget",
  14093. "_name": "",
  14094. "_objFlags": 0,
  14095. "__editorExtras__": {},
  14096. "node": {
  14097. "__id__": 372
  14098. },
  14099. "_enabled": true,
  14100. "__prefab": null,
  14101. "_alignFlags": 45,
  14102. "_target": null,
  14103. "_left": 0,
  14104. "_right": 0,
  14105. "_top": 0,
  14106. "_bottom": 0,
  14107. "_horizontalCenter": 0,
  14108. "_verticalCenter": 0,
  14109. "_isAbsLeft": true,
  14110. "_isAbsRight": true,
  14111. "_isAbsTop": true,
  14112. "_isAbsBottom": true,
  14113. "_isAbsHorizontalCenter": true,
  14114. "_isAbsVerticalCenter": true,
  14115. "_originalWidth": 100,
  14116. "_originalHeight": 100,
  14117. "_alignMode": 2,
  14118. "_lockFlags": 0,
  14119. "_id": "9a2iBSALlPWqlmHlxbecCc"
  14120. },
  14121. {
  14122. "__type__": "cc.Sprite",
  14123. "_name": "",
  14124. "_objFlags": 0,
  14125. "__editorExtras__": {},
  14126. "node": {
  14127. "__id__": 372
  14128. },
  14129. "_enabled": true,
  14130. "__prefab": null,
  14131. "_customMaterial": null,
  14132. "_srcBlendFactor": 2,
  14133. "_dstBlendFactor": 4,
  14134. "_color": {
  14135. "__type__": "cc.Color",
  14136. "r": 245,
  14137. "g": 208,
  14138. "b": 175,
  14139. "a": 255
  14140. },
  14141. "_spriteFrame": {
  14142. "__uuid__": "7d8f9b89-4fd1-4c9f-a3ab-38ec7cded7ca@f9941",
  14143. "__expectedType__": "cc.SpriteFrame"
  14144. },
  14145. "_type": 0,
  14146. "_fillType": 0,
  14147. "_sizeMode": 0,
  14148. "_fillCenter": {
  14149. "__type__": "cc.Vec2",
  14150. "x": 0,
  14151. "y": 0
  14152. },
  14153. "_fillStart": 0,
  14154. "_fillRange": 0,
  14155. "_isTrimmedMode": true,
  14156. "_useGrayscale": false,
  14157. "_atlas": null,
  14158. "_id": "f0ogiUuRZKnbP0S8N4hD9V"
  14159. },
  14160. {
  14161. "__type__": "cc.UIOpacity",
  14162. "_name": "",
  14163. "_objFlags": 0,
  14164. "__editorExtras__": {},
  14165. "node": {
  14166. "__id__": 372
  14167. },
  14168. "_enabled": true,
  14169. "__prefab": null,
  14170. "_opacity": 100,
  14171. "_id": "92Ez1S76xOjYuGMGlisgFA"
  14172. },
  14173. {
  14174. "__type__": "cc.Node",
  14175. "_name": "ProgressBar",
  14176. "_objFlags": 0,
  14177. "__editorExtras__": {},
  14178. "_parent": {
  14179. "__id__": 371
  14180. },
  14181. "_children": [
  14182. {
  14183. "__id__": 378
  14184. }
  14185. ],
  14186. "_active": true,
  14187. "_components": [
  14188. {
  14189. "__id__": 381
  14190. },
  14191. {
  14192. "__id__": 382
  14193. },
  14194. {
  14195. "__id__": 383
  14196. }
  14197. ],
  14198. "_prefab": null,
  14199. "_lpos": {
  14200. "__type__": "cc.Vec3",
  14201. "x": 0,
  14202. "y": 0,
  14203. "z": 0
  14204. },
  14205. "_lrot": {
  14206. "__type__": "cc.Quat",
  14207. "x": 0,
  14208. "y": 0,
  14209. "z": 0,
  14210. "w": 1
  14211. },
  14212. "_lscale": {
  14213. "__type__": "cc.Vec3",
  14214. "x": 1,
  14215. "y": 1,
  14216. "z": 1
  14217. },
  14218. "_mobility": 0,
  14219. "_layer": 33554432,
  14220. "_euler": {
  14221. "__type__": "cc.Vec3",
  14222. "x": 0,
  14223. "y": 0,
  14224. "z": 0
  14225. },
  14226. "_id": "695xW58eJJM7YTsfqXngY5"
  14227. },
  14228. {
  14229. "__type__": "cc.Node",
  14230. "_name": "Bar",
  14231. "_objFlags": 0,
  14232. "__editorExtras__": {},
  14233. "_parent": {
  14234. "__id__": 377
  14235. },
  14236. "_children": [],
  14237. "_active": true,
  14238. "_components": [
  14239. {
  14240. "__id__": 379
  14241. },
  14242. {
  14243. "__id__": 380
  14244. }
  14245. ],
  14246. "_prefab": null,
  14247. "_lpos": {
  14248. "__type__": "cc.Vec3",
  14249. "x": -150,
  14250. "y": 0,
  14251. "z": 0
  14252. },
  14253. "_lrot": {
  14254. "__type__": "cc.Quat",
  14255. "x": 0,
  14256. "y": 0,
  14257. "z": 0,
  14258. "w": 1
  14259. },
  14260. "_lscale": {
  14261. "__type__": "cc.Vec3",
  14262. "x": 1,
  14263. "y": 1,
  14264. "z": 1
  14265. },
  14266. "_mobility": 0,
  14267. "_layer": 33554432,
  14268. "_euler": {
  14269. "__type__": "cc.Vec3",
  14270. "x": 0,
  14271. "y": 0,
  14272. "z": 0
  14273. },
  14274. "_id": "82HE3lo0dBCLN5Lrctq41x"
  14275. },
  14276. {
  14277. "__type__": "cc.UITransform",
  14278. "_name": "",
  14279. "_objFlags": 0,
  14280. "__editorExtras__": {},
  14281. "node": {
  14282. "__id__": 378
  14283. },
  14284. "_enabled": true,
  14285. "__prefab": null,
  14286. "_contentSize": {
  14287. "__type__": "cc.Size",
  14288. "width": 150,
  14289. "height": 15
  14290. },
  14291. "_anchorPoint": {
  14292. "__type__": "cc.Vec2",
  14293. "x": 0,
  14294. "y": 0.5
  14295. },
  14296. "_id": "60LzKlS1pFkbjbyWnalZNg"
  14297. },
  14298. {
  14299. "__type__": "cc.Sprite",
  14300. "_name": "",
  14301. "_objFlags": 0,
  14302. "__editorExtras__": {},
  14303. "node": {
  14304. "__id__": 378
  14305. },
  14306. "_enabled": true,
  14307. "__prefab": null,
  14308. "_customMaterial": null,
  14309. "_srcBlendFactor": 2,
  14310. "_dstBlendFactor": 4,
  14311. "_color": {
  14312. "__type__": "cc.Color",
  14313. "r": 255,
  14314. "g": 255,
  14315. "b": 255,
  14316. "a": 255
  14317. },
  14318. "_spriteFrame": {
  14319. "__uuid__": "1440ddfa-68c4-4328-bf37-600cd18f4812@a1de9",
  14320. "__expectedType__": "cc.SpriteFrame"
  14321. },
  14322. "_type": 1,
  14323. "_fillType": 0,
  14324. "_sizeMode": 0,
  14325. "_fillCenter": {
  14326. "__type__": "cc.Vec2",
  14327. "x": 0,
  14328. "y": 0
  14329. },
  14330. "_fillStart": 0,
  14331. "_fillRange": 0,
  14332. "_isTrimmedMode": true,
  14333. "_useGrayscale": false,
  14334. "_atlas": null,
  14335. "_id": "efm/CMagZMA5mZ8r8O+uLQ"
  14336. },
  14337. {
  14338. "__type__": "cc.UITransform",
  14339. "_name": "",
  14340. "_objFlags": 0,
  14341. "__editorExtras__": {},
  14342. "node": {
  14343. "__id__": 377
  14344. },
  14345. "_enabled": true,
  14346. "__prefab": null,
  14347. "_contentSize": {
  14348. "__type__": "cc.Size",
  14349. "width": 300,
  14350. "height": 15
  14351. },
  14352. "_anchorPoint": {
  14353. "__type__": "cc.Vec2",
  14354. "x": 0.5,
  14355. "y": 0.5
  14356. },
  14357. "_id": "75A5cSe/xLEa2gqhgwRV/D"
  14358. },
  14359. {
  14360. "__type__": "cc.Sprite",
  14361. "_name": "",
  14362. "_objFlags": 0,
  14363. "__editorExtras__": {},
  14364. "node": {
  14365. "__id__": 377
  14366. },
  14367. "_enabled": true,
  14368. "__prefab": null,
  14369. "_customMaterial": null,
  14370. "_srcBlendFactor": 2,
  14371. "_dstBlendFactor": 4,
  14372. "_color": {
  14373. "__type__": "cc.Color",
  14374. "r": 255,
  14375. "g": 255,
  14376. "b": 255,
  14377. "a": 255
  14378. },
  14379. "_spriteFrame": {
  14380. "__uuid__": "1440ddfa-68c4-4328-bf37-600cd18f4812@9f969",
  14381. "__expectedType__": "cc.SpriteFrame"
  14382. },
  14383. "_type": 1,
  14384. "_fillType": 0,
  14385. "_sizeMode": 0,
  14386. "_fillCenter": {
  14387. "__type__": "cc.Vec2",
  14388. "x": 0,
  14389. "y": 0
  14390. },
  14391. "_fillStart": 0,
  14392. "_fillRange": 0,
  14393. "_isTrimmedMode": true,
  14394. "_useGrayscale": false,
  14395. "_atlas": null,
  14396. "_id": "32rrGhMWxCKatM23OKFdIg"
  14397. },
  14398. {
  14399. "__type__": "cc.ProgressBar",
  14400. "_name": "",
  14401. "_objFlags": 0,
  14402. "__editorExtras__": {},
  14403. "node": {
  14404. "__id__": 377
  14405. },
  14406. "_enabled": true,
  14407. "__prefab": null,
  14408. "_barSprite": {
  14409. "__id__": 380
  14410. },
  14411. "_mode": 0,
  14412. "_totalLength": 300,
  14413. "_progress": 0.5,
  14414. "_reverse": false,
  14415. "_id": "e7xd8pQotNPqJdXmx6vl1M"
  14416. },
  14417. {
  14418. "__type__": "cc.Node",
  14419. "_name": "Label",
  14420. "_objFlags": 0,
  14421. "__editorExtras__": {},
  14422. "_parent": {
  14423. "__id__": 371
  14424. },
  14425. "_children": [],
  14426. "_active": true,
  14427. "_components": [
  14428. {
  14429. "__id__": 385
  14430. },
  14431. {
  14432. "__id__": 386
  14433. },
  14434. {
  14435. "__id__": 387
  14436. }
  14437. ],
  14438. "_prefab": null,
  14439. "_lpos": {
  14440. "__type__": "cc.Vec3",
  14441. "x": 0,
  14442. "y": -34.8,
  14443. "z": 0
  14444. },
  14445. "_lrot": {
  14446. "__type__": "cc.Quat",
  14447. "x": 0,
  14448. "y": 0,
  14449. "z": 0,
  14450. "w": 1
  14451. },
  14452. "_lscale": {
  14453. "__type__": "cc.Vec3",
  14454. "x": 1,
  14455. "y": 1,
  14456. "z": 1
  14457. },
  14458. "_mobility": 0,
  14459. "_layer": 33554432,
  14460. "_euler": {
  14461. "__type__": "cc.Vec3",
  14462. "x": 0,
  14463. "y": 0,
  14464. "z": 0
  14465. },
  14466. "_id": "c5HXltWRdNGqN/QckBc+XD"
  14467. },
  14468. {
  14469. "__type__": "cc.UITransform",
  14470. "_name": "",
  14471. "_objFlags": 0,
  14472. "__editorExtras__": {},
  14473. "node": {
  14474. "__id__": 384
  14475. },
  14476. "_enabled": true,
  14477. "__prefab": null,
  14478. "_contentSize": {
  14479. "__type__": "cc.Size",
  14480. "width": 120.00000000000023,
  14481. "height": 50.4
  14482. },
  14483. "_anchorPoint": {
  14484. "__type__": "cc.Vec2",
  14485. "x": 0.5,
  14486. "y": 0.5
  14487. },
  14488. "_id": "70138ZAk1EgpxabpKmVJ8r"
  14489. },
  14490. {
  14491. "__type__": "cc.Label",
  14492. "_name": "",
  14493. "_objFlags": 0,
  14494. "__editorExtras__": {},
  14495. "node": {
  14496. "__id__": 384
  14497. },
  14498. "_enabled": true,
  14499. "__prefab": null,
  14500. "_customMaterial": null,
  14501. "_srcBlendFactor": 2,
  14502. "_dstBlendFactor": 4,
  14503. "_color": {
  14504. "__type__": "cc.Color",
  14505. "r": 241,
  14506. "g": 53,
  14507. "b": 53,
  14508. "a": 255
  14509. },
  14510. "_string": "请稍等!",
  14511. "_horizontalAlign": 1,
  14512. "_verticalAlign": 1,
  14513. "_actualFontSize": 30,
  14514. "_fontSize": 30,
  14515. "_fontFamily": "Arial",
  14516. "_lineHeight": 40,
  14517. "_overflow": 0,
  14518. "_enableWrapText": true,
  14519. "_font": null,
  14520. "_isSystemFontUsed": true,
  14521. "_spacingX": 0,
  14522. "_isItalic": false,
  14523. "_isBold": false,
  14524. "_isUnderline": false,
  14525. "_underlineHeight": 2,
  14526. "_cacheMode": 0,
  14527. "_enableOutline": false,
  14528. "_outlineColor": {
  14529. "__type__": "cc.Color",
  14530. "r": 0,
  14531. "g": 0,
  14532. "b": 0,
  14533. "a": 255
  14534. },
  14535. "_outlineWidth": 2,
  14536. "_enableShadow": false,
  14537. "_shadowColor": {
  14538. "__type__": "cc.Color",
  14539. "r": 0,
  14540. "g": 0,
  14541. "b": 0,
  14542. "a": 255
  14543. },
  14544. "_shadowOffset": {
  14545. "__type__": "cc.Vec2",
  14546. "x": 2,
  14547. "y": 2
  14548. },
  14549. "_shadowBlur": 2,
  14550. "_id": "bbJFwPUWFKy4ErX1lHByT3"
  14551. },
  14552. {
  14553. "__type__": "cc.Widget",
  14554. "_name": "",
  14555. "_objFlags": 0,
  14556. "__editorExtras__": {},
  14557. "node": {
  14558. "__id__": 384
  14559. },
  14560. "_enabled": true,
  14561. "__prefab": null,
  14562. "_alignFlags": 44,
  14563. "_target": null,
  14564. "_left": 579.9999999999999,
  14565. "_right": 579.9999999999999,
  14566. "_top": 0,
  14567. "_bottom": 300,
  14568. "_horizontalCenter": 0,
  14569. "_verticalCenter": 0,
  14570. "_isAbsLeft": true,
  14571. "_isAbsRight": true,
  14572. "_isAbsTop": true,
  14573. "_isAbsBottom": true,
  14574. "_isAbsHorizontalCenter": true,
  14575. "_isAbsVerticalCenter": true,
  14576. "_originalWidth": 80,
  14577. "_originalHeight": 0,
  14578. "_alignMode": 2,
  14579. "_lockFlags": 0,
  14580. "_id": "21GKlIHkxLmqBaiqM7QZ/N"
  14581. },
  14582. {
  14583. "__type__": "cc.UITransform",
  14584. "_name": "",
  14585. "_objFlags": 0,
  14586. "__editorExtras__": {},
  14587. "node": {
  14588. "__id__": 371
  14589. },
  14590. "_enabled": true,
  14591. "__prefab": null,
  14592. "_contentSize": {
  14593. "__type__": "cc.Size",
  14594. "width": 1280,
  14595. "height": 720
  14596. },
  14597. "_anchorPoint": {
  14598. "__type__": "cc.Vec2",
  14599. "x": 0.5,
  14600. "y": 0.5
  14601. },
  14602. "_id": "9bQ9rsDG5NFYuOzMr+2aWi"
  14603. },
  14604. {
  14605. "__type__": "cc.Widget",
  14606. "_name": "",
  14607. "_objFlags": 0,
  14608. "__editorExtras__": {},
  14609. "node": {
  14610. "__id__": 371
  14611. },
  14612. "_enabled": true,
  14613. "__prefab": null,
  14614. "_alignFlags": 45,
  14615. "_target": null,
  14616. "_left": 0,
  14617. "_right": 0,
  14618. "_top": 0,
  14619. "_bottom": 0,
  14620. "_horizontalCenter": 0,
  14621. "_verticalCenter": 0,
  14622. "_isAbsLeft": true,
  14623. "_isAbsRight": true,
  14624. "_isAbsTop": true,
  14625. "_isAbsBottom": true,
  14626. "_isAbsHorizontalCenter": true,
  14627. "_isAbsVerticalCenter": true,
  14628. "_originalWidth": 100,
  14629. "_originalHeight": 100,
  14630. "_alignMode": 2,
  14631. "_lockFlags": 0,
  14632. "_id": "8c7D9REjVB+IIfx8W+uPgM"
  14633. },
  14634. {
  14635. "__type__": "847ffpXFY9HMYkZy5JUK26z",
  14636. "_name": "",
  14637. "_objFlags": 0,
  14638. "__editorExtras__": {},
  14639. "node": {
  14640. "__id__": 371
  14641. },
  14642. "_enabled": true,
  14643. "__prefab": null,
  14644. "_id": "cePAaNCbpJmr3Ds4k3FgAE"
  14645. },
  14646. {
  14647. "__type__": "cc.UITransform",
  14648. "_name": "",
  14649. "_objFlags": 0,
  14650. "__editorExtras__": {},
  14651. "node": {
  14652. "__id__": 2
  14653. },
  14654. "_enabled": true,
  14655. "__prefab": null,
  14656. "_contentSize": {
  14657. "__type__": "cc.Size",
  14658. "width": 1279.9999999999998,
  14659. "height": 720
  14660. },
  14661. "_anchorPoint": {
  14662. "__type__": "cc.Vec2",
  14663. "x": 0.5,
  14664. "y": 0.5
  14665. },
  14666. "_id": "d6rUX5yfhMlKoWX2bSbawx"
  14667. },
  14668. {
  14669. "__type__": "cc.Canvas",
  14670. "_name": "",
  14671. "_objFlags": 0,
  14672. "__editorExtras__": {},
  14673. "node": {
  14674. "__id__": 2
  14675. },
  14676. "_enabled": true,
  14677. "__prefab": null,
  14678. "_cameraComponent": {
  14679. "__id__": 4
  14680. },
  14681. "_alignCanvasWithScreen": true,
  14682. "_id": "12O/ljcVlEqLmVm3U2gEOQ"
  14683. },
  14684. {
  14685. "__type__": "cc.Widget",
  14686. "_name": "",
  14687. "_objFlags": 0,
  14688. "__editorExtras__": {},
  14689. "node": {
  14690. "__id__": 2
  14691. },
  14692. "_enabled": true,
  14693. "__prefab": null,
  14694. "_alignFlags": 45,
  14695. "_target": {
  14696. "__id__": 1
  14697. },
  14698. "_left": 0,
  14699. "_right": 0,
  14700. "_top": 5.684341886080802e-14,
  14701. "_bottom": 5.684341886080802e-14,
  14702. "_horizontalCenter": 0,
  14703. "_verticalCenter": 0,
  14704. "_isAbsLeft": true,
  14705. "_isAbsRight": true,
  14706. "_isAbsTop": true,
  14707. "_isAbsBottom": true,
  14708. "_isAbsHorizontalCenter": true,
  14709. "_isAbsVerticalCenter": true,
  14710. "_originalWidth": 0,
  14711. "_originalHeight": 0,
  14712. "_alignMode": 2,
  14713. "_lockFlags": 0,
  14714. "_id": "c5V1EV8IpMtrIvY1OE9t2u"
  14715. },
  14716. {
  14717. "__type__": "010ac7u73pHUqXGhX3uxjfh",
  14718. "_name": "",
  14719. "_objFlags": 0,
  14720. "__editorExtras__": {},
  14721. "node": {
  14722. "__id__": 2
  14723. },
  14724. "_enabled": true,
  14725. "__prefab": null,
  14726. "_id": "c5iZQmWqNGKKJl4bHf/bIu"
  14727. },
  14728. {
  14729. "__type__": "cc.PrefabInfo",
  14730. "root": null,
  14731. "asset": null,
  14732. "fileId": "099ece80-6a52-4fc1-8f49-dcd0345183d0",
  14733. "instance": null,
  14734. "targetOverrides": [
  14735. {
  14736. "__id__": 396
  14737. },
  14738. {
  14739. "__id__": 399
  14740. },
  14741. {
  14742. "__id__": 402
  14743. },
  14744. {
  14745. "__id__": 405
  14746. },
  14747. {
  14748. "__id__": 408
  14749. },
  14750. {
  14751. "__id__": 411
  14752. }
  14753. ]
  14754. },
  14755. {
  14756. "__type__": "cc.TargetOverrideInfo",
  14757. "source": {
  14758. "__id__": 18
  14759. },
  14760. "sourceInfo": {
  14761. "__id__": 397
  14762. },
  14763. "propertyPath": [
  14764. "_target"
  14765. ],
  14766. "target": {
  14767. "__id__": 18
  14768. },
  14769. "targetInfo": {
  14770. "__id__": 398
  14771. }
  14772. },
  14773. {
  14774. "__type__": "cc.TargetInfo",
  14775. "localID": [
  14776. "cbHAR4hGtAc7HaQ9Pbqy0C"
  14777. ]
  14778. },
  14779. {
  14780. "__type__": "cc.TargetInfo",
  14781. "localID": [
  14782. "fd09Tvo65IYrsoE8zvGdL6"
  14783. ]
  14784. },
  14785. {
  14786. "__type__": "cc.TargetOverrideInfo",
  14787. "source": {
  14788. "__id__": 18
  14789. },
  14790. "sourceInfo": {
  14791. "__id__": 400
  14792. },
  14793. "propertyPath": [
  14794. "_target"
  14795. ],
  14796. "target": {
  14797. "__id__": 18
  14798. },
  14799. "targetInfo": {
  14800. "__id__": 401
  14801. }
  14802. },
  14803. {
  14804. "__type__": "cc.TargetInfo",
  14805. "localID": [
  14806. "63zd3HD/FMd5DRCbWZCKl/"
  14807. ]
  14808. },
  14809. {
  14810. "__type__": "cc.TargetInfo",
  14811. "localID": [
  14812. "efuGIb08lIqJLXj+DF7omK"
  14813. ]
  14814. },
  14815. {
  14816. "__type__": "cc.TargetOverrideInfo",
  14817. "source": {
  14818. "__id__": 51
  14819. },
  14820. "sourceInfo": {
  14821. "__id__": 403
  14822. },
  14823. "propertyPath": [
  14824. "_target"
  14825. ],
  14826. "target": {
  14827. "__id__": 51
  14828. },
  14829. "targetInfo": {
  14830. "__id__": 404
  14831. }
  14832. },
  14833. {
  14834. "__type__": "cc.TargetInfo",
  14835. "localID": [
  14836. "5aL9e1QDtH2LnX+a+E3b2C"
  14837. ]
  14838. },
  14839. {
  14840. "__type__": "cc.TargetInfo",
  14841. "localID": [
  14842. "97fKfEqANJ8I3HOQsMxzaZ"
  14843. ]
  14844. },
  14845. {
  14846. "__type__": "cc.TargetOverrideInfo",
  14847. "source": {
  14848. "__id__": 51
  14849. },
  14850. "sourceInfo": {
  14851. "__id__": 406
  14852. },
  14853. "propertyPath": [
  14854. "_target"
  14855. ],
  14856. "target": {
  14857. "__id__": 51
  14858. },
  14859. "targetInfo": {
  14860. "__id__": 407
  14861. }
  14862. },
  14863. {
  14864. "__type__": "cc.TargetInfo",
  14865. "localID": [
  14866. "86oQpomOpPG6TLpNH5hipL"
  14867. ]
  14868. },
  14869. {
  14870. "__type__": "cc.TargetInfo",
  14871. "localID": [
  14872. "c9Ze9LWgRCyJ20Mo6qnoVf"
  14873. ]
  14874. },
  14875. {
  14876. "__type__": "cc.TargetOverrideInfo",
  14877. "source": {
  14878. "__id__": 51
  14879. },
  14880. "sourceInfo": {
  14881. "__id__": 409
  14882. },
  14883. "propertyPath": [
  14884. "_target"
  14885. ],
  14886. "target": {
  14887. "__id__": 51
  14888. },
  14889. "targetInfo": {
  14890. "__id__": 410
  14891. }
  14892. },
  14893. {
  14894. "__type__": "cc.TargetInfo",
  14895. "localID": [
  14896. "48GqkPVnZK1reGm6oRN8EF"
  14897. ]
  14898. },
  14899. {
  14900. "__type__": "cc.TargetInfo",
  14901. "localID": [
  14902. "4b3t7YEQtC26yVDkSXWHvD"
  14903. ]
  14904. },
  14905. {
  14906. "__type__": "cc.TargetOverrideInfo",
  14907. "source": {
  14908. "__id__": 51
  14909. },
  14910. "sourceInfo": {
  14911. "__id__": 412
  14912. },
  14913. "propertyPath": [
  14914. "_target"
  14915. ],
  14916. "target": {
  14917. "__id__": 51
  14918. },
  14919. "targetInfo": {
  14920. "__id__": 413
  14921. }
  14922. },
  14923. {
  14924. "__type__": "cc.TargetInfo",
  14925. "localID": [
  14926. "2fVHJHTKJKZLcz8o56kzq1"
  14927. ]
  14928. },
  14929. {
  14930. "__type__": "cc.TargetInfo",
  14931. "localID": [
  14932. "0eM5MhQ0pJ56gBbzz0s+J7"
  14933. ]
  14934. },
  14935. {
  14936. "__type__": "cc.SceneGlobals",
  14937. "ambient": {
  14938. "__id__": 415
  14939. },
  14940. "shadows": {
  14941. "__id__": 416
  14942. },
  14943. "_skybox": {
  14944. "__id__": 417
  14945. },
  14946. "fog": {
  14947. "__id__": 418
  14948. },
  14949. "octree": {
  14950. "__id__": 419
  14951. },
  14952. "skin": {
  14953. "__id__": 420
  14954. },
  14955. "lightProbeInfo": {
  14956. "__id__": 421
  14957. },
  14958. "postSettings": {
  14959. "__id__": 422
  14960. },
  14961. "bakedWithStationaryMainLight": false,
  14962. "bakedWithHighpLightmap": false
  14963. },
  14964. {
  14965. "__type__": "cc.AmbientInfo",
  14966. "_skyColorHDR": {
  14967. "__type__": "cc.Vec4",
  14968. "x": 0,
  14969. "y": 0,
  14970. "z": 0,
  14971. "w": 0.520833125
  14972. },
  14973. "_skyColor": {
  14974. "__type__": "cc.Vec4",
  14975. "x": 0,
  14976. "y": 0,
  14977. "z": 0,
  14978. "w": 0.520833125
  14979. },
  14980. "_skyIllumHDR": 20000,
  14981. "_skyIllum": 20000,
  14982. "_groundAlbedoHDR": {
  14983. "__type__": "cc.Vec4",
  14984. "x": 0,
  14985. "y": 0,
  14986. "z": 0,
  14987. "w": 0
  14988. },
  14989. "_groundAlbedo": {
  14990. "__type__": "cc.Vec4",
  14991. "x": 0,
  14992. "y": 0,
  14993. "z": 0,
  14994. "w": 0
  14995. },
  14996. "_skyColorLDR": {
  14997. "__type__": "cc.Vec4",
  14998. "x": 0.2,
  14999. "y": 0.5,
  15000. "z": 0.8,
  15001. "w": 1
  15002. },
  15003. "_skyIllumLDR": 20000,
  15004. "_groundAlbedoLDR": {
  15005. "__type__": "cc.Vec4",
  15006. "x": 0.2,
  15007. "y": 0.2,
  15008. "z": 0.2,
  15009. "w": 1
  15010. }
  15011. },
  15012. {
  15013. "__type__": "cc.ShadowsInfo",
  15014. "_enabled": false,
  15015. "_type": 0,
  15016. "_normal": {
  15017. "__type__": "cc.Vec3",
  15018. "x": 0,
  15019. "y": 1,
  15020. "z": 0
  15021. },
  15022. "_distance": 0,
  15023. "_planeBias": 1,
  15024. "_shadowColor": {
  15025. "__type__": "cc.Color",
  15026. "r": 76,
  15027. "g": 76,
  15028. "b": 76,
  15029. "a": 255
  15030. },
  15031. "_maxReceived": 4,
  15032. "_size": {
  15033. "__type__": "cc.Vec2",
  15034. "x": 512,
  15035. "y": 512
  15036. }
  15037. },
  15038. {
  15039. "__type__": "cc.SkyboxInfo",
  15040. "_envLightingType": 0,
  15041. "_envmapHDR": null,
  15042. "_envmap": null,
  15043. "_envmapLDR": null,
  15044. "_diffuseMapHDR": null,
  15045. "_diffuseMapLDR": null,
  15046. "_enabled": false,
  15047. "_useHDR": true,
  15048. "_editableMaterial": null,
  15049. "_reflectionHDR": null,
  15050. "_reflectionLDR": null,
  15051. "_rotationAngle": 0
  15052. },
  15053. {
  15054. "__type__": "cc.FogInfo",
  15055. "_type": 0,
  15056. "_fogColor": {
  15057. "__type__": "cc.Color",
  15058. "r": 200,
  15059. "g": 200,
  15060. "b": 200,
  15061. "a": 255
  15062. },
  15063. "_enabled": false,
  15064. "_fogDensity": 0.3,
  15065. "_fogStart": 0.5,
  15066. "_fogEnd": 300,
  15067. "_fogAtten": 5,
  15068. "_fogTop": 1.5,
  15069. "_fogRange": 1.2,
  15070. "_accurate": false
  15071. },
  15072. {
  15073. "__type__": "cc.OctreeInfo",
  15074. "_enabled": false,
  15075. "_minPos": {
  15076. "__type__": "cc.Vec3",
  15077. "x": -1024,
  15078. "y": -1024,
  15079. "z": -1024
  15080. },
  15081. "_maxPos": {
  15082. "__type__": "cc.Vec3",
  15083. "x": 1024,
  15084. "y": 1024,
  15085. "z": 1024
  15086. },
  15087. "_depth": 8
  15088. },
  15089. {
  15090. "__type__": "cc.SkinInfo",
  15091. "_enabled": false,
  15092. "_blurRadius": 0.01,
  15093. "_sssIntensity": 3
  15094. },
  15095. {
  15096. "__type__": "cc.LightProbeInfo",
  15097. "_giScale": 1,
  15098. "_giSamples": 1024,
  15099. "_bounces": 2,
  15100. "_reduceRinging": 0,
  15101. "_showProbe": true,
  15102. "_showWireframe": true,
  15103. "_showConvex": false,
  15104. "_data": null,
  15105. "_lightProbeSphereVolume": 1
  15106. },
  15107. {
  15108. "__type__": "cc.PostSettingsInfo",
  15109. "_toneMappingType": 0
  15110. }
  15111. ]