StartScene.scene 247 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480124811248212483124841248512486124871248812489124901249112492124931249412495124961249712498124991250012501125021250312504125051250612507125081250912510125111251212513125141251512516125171251812519125201252112522125231252412525125261252712528125291253012531125321253312534125351253612537125381253912540125411254212543125441254512546125471254812549125501255112552125531255412555125561255712558125591256012561125621256312564125651256612567125681256912570125711257212573125741257512576125771257812579125801258112582125831258412585125861258712588125891259012591125921259312594125951259612597125981259912600126011260212603126041260512606126071260812609126101261112612126131261412615126161261712618126191262012621126221262312624126251262612627126281262912630126311263212633126341263512636126371263812639126401264112642126431264412645126461264712648126491265012651126521265312654126551265612657126581265912660126611266212663126641266512666126671266812669126701267112672126731267412675126761267712678126791268012681126821268312684126851268612687126881268912690126911269212693126941269512696126971269812699127001270112702127031270412705127061270712708127091271012711127121271312714127151271612717127181271912720127211272212723127241272512726127271272812729127301273112732127331273412735127361273712738127391274012741127421274312744127451274612747127481274912750127511275212753127541275512756127571275812759127601276112762127631276412765127661276712768127691277012771127721277312774127751277612777127781277912780127811278212783127841278512786127871278812789127901279112792127931279412795127961279712798127991280012801128021280312804128051280612807128081280912810128111281212813128141281512816128171281812819128201282112822128231282412825128261282712828128291283012831128321283312834128351283612837128381283912840128411284212843128441284512846128471284812849128501285112852128531285412855128561285712858128591286012861128621286312864128651286612867128681286912870128711287212873128741287512876128771287812879128801288112882128831288412885128861288712888128891289012891128921289312894128951289612897128981289912900129011290212903129041290512906129071290812909129101291112912129131291412915129161291712918129191292012921129221292312924129251292612927129281292912930129311293212933129341293512936129371293812939129401294112942129431294412945129461294712948129491295012951129521295312954129551295612957129581295912960129611296212963129641296512966129671296812969129701297112972129731297412975129761297712978129791298012981129821298312984129851298612987129881298912990129911299212993129941299512996129971299812999130001300113002130031300413005130061300713008130091301013011130121301313014130151301613017130181301913020130211302213023130241302513026130271302813029130301303113032130331303413035130361303713038130391304013041130421304313044130451304613047130481304913050130511305213053130541305513056130571305813059130601306113062130631306413065130661306713068130691307013071130721307313074130751307613077130781307913080130811308213083130841308513086130871308813089130901309113092130931309413095130961309713098130991310013101131021310313104131051310613107131081310913110131111311213113131141311513116131171311813119131201312113122131231312413125131261312713128131291313013131131321313313134131351313613137131381313913140131411314213143131441314513146131471314813149131501315113152131531315413155131561315713158131591316013161131621316313164131651316613167131681316913170131711317213173131741317513176131771317813179131801318113182131831318413185131861318713188131891319013191131921319313194131951319613197131981319913200132011320213203132041320513206132071320813209132101321113212132131321413215132161321713218132191322013221132221322313224132251322613227132281322913230132311323213233132341323513236132371323813239132401324113242132431324413245132461324713248132491325013251132521325313254132551325613257132581325913260132611326213263132641326513266132671326813269132701327113272132731327413275132761327713278132791328013281132821328313284132851328613287132881328913290132911329213293132941329513296132971329813299133001330113302133031330413305133061330713308133091331013311133121331313314133151331613317133181331913320133211332213323133241332513326133271332813329133301333113332133331333413335133361333713338133391334013341133421334313344133451334613347133481334913350133511335213353133541335513356133571335813359133601336113362133631336413365133661336713368133691337013371133721337313374133751337613377133781337913380133811338213383133841338513386133871338813389133901339113392133931339413395133961339713398133991340013401134021340313404134051340613407134081340913410134111341213413134141341513416134171341813419134201342113422134231342413425134261342713428134291343013431134321343313434134351343613437134381343913440134411344213443134441344513446134471344813449134501345113452134531345413455134561345713458134591346013461134621346313464
  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__": 349
  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__": 368
  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. "_active": true,
  81. "_components": [
  82. {
  83. "__id__": 345
  84. },
  85. {
  86. "__id__": 346
  87. },
  88. {
  89. "__id__": 347
  90. },
  91. {
  92. "__id__": 348
  93. }
  94. ],
  95. "_prefab": null,
  96. "_lpos": {
  97. "__type__": "cc.Vec3",
  98. "x": 640,
  99. "y": 360.00000000000006,
  100. "z": 0
  101. },
  102. "_lrot": {
  103. "__type__": "cc.Quat",
  104. "x": 0,
  105. "y": 0,
  106. "z": 0,
  107. "w": 1
  108. },
  109. "_lscale": {
  110. "__type__": "cc.Vec3",
  111. "x": 1,
  112. "y": 1,
  113. "z": 1
  114. },
  115. "_mobility": 0,
  116. "_layer": 33554432,
  117. "_euler": {
  118. "__type__": "cc.Vec3",
  119. "x": 0,
  120. "y": 0,
  121. "z": 0
  122. },
  123. "_id": "beI88Z2HpFELqR4T5EMHpg"
  124. },
  125. {
  126. "__type__": "cc.Node",
  127. "_name": "Camera",
  128. "_objFlags": 0,
  129. "__editorExtras__": {},
  130. "_parent": {
  131. "__id__": 2
  132. },
  133. "_children": [],
  134. "_active": true,
  135. "_components": [
  136. {
  137. "__id__": 4
  138. }
  139. ],
  140. "_prefab": null,
  141. "_lpos": {
  142. "__type__": "cc.Vec3",
  143. "x": 0,
  144. "y": 0,
  145. "z": 1000
  146. },
  147. "_lrot": {
  148. "__type__": "cc.Quat",
  149. "x": 0,
  150. "y": 0,
  151. "z": 0,
  152. "w": 1
  153. },
  154. "_lscale": {
  155. "__type__": "cc.Vec3",
  156. "x": 1,
  157. "y": 1,
  158. "z": 1
  159. },
  160. "_mobility": 0,
  161. "_layer": 1073741824,
  162. "_euler": {
  163. "__type__": "cc.Vec3",
  164. "x": 0,
  165. "y": 0,
  166. "z": 0
  167. },
  168. "_id": "ebFwiq8gBFaYpqYbdoDODe"
  169. },
  170. {
  171. "__type__": "cc.Camera",
  172. "_name": "",
  173. "_objFlags": 0,
  174. "__editorExtras__": {},
  175. "node": {
  176. "__id__": 3
  177. },
  178. "_enabled": true,
  179. "__prefab": null,
  180. "_projection": 0,
  181. "_priority": 0,
  182. "_fov": 45,
  183. "_fovAxis": 0,
  184. "_orthoHeight": 362.7944111776447,
  185. "_near": 0,
  186. "_far": 1000,
  187. "_color": {
  188. "__type__": "cc.Color",
  189. "r": 0,
  190. "g": 0,
  191. "b": 0,
  192. "a": 255
  193. },
  194. "_depth": 1,
  195. "_stencil": 0,
  196. "_clearFlags": 7,
  197. "_rect": {
  198. "__type__": "cc.Rect",
  199. "x": 0,
  200. "y": 0,
  201. "width": 1,
  202. "height": 1
  203. },
  204. "_aperture": 19,
  205. "_shutter": 7,
  206. "_iso": 0,
  207. "_screenScale": 1,
  208. "_visibility": 1108344832,
  209. "_targetTexture": null,
  210. "_postProcess": null,
  211. "_usePostProcess": false,
  212. "_cameraType": -1,
  213. "_trackingType": 0,
  214. "_id": "63WIch3o5BEYRlXzTT0oWc"
  215. },
  216. {
  217. "__type__": "cc.Node",
  218. "_name": "GameRoot",
  219. "_objFlags": 0,
  220. "__editorExtras__": {},
  221. "_parent": {
  222. "__id__": 2
  223. },
  224. "_children": [
  225. {
  226. "__id__": 6
  227. },
  228. {
  229. "__id__": 18
  230. },
  231. {
  232. "__id__": 51
  233. },
  234. {
  235. "__id__": 97
  236. },
  237. {
  238. "__id__": 292
  239. }
  240. ],
  241. "_active": true,
  242. "_components": [
  243. {
  244. "__id__": 330
  245. },
  246. {
  247. "__id__": 331
  248. },
  249. {
  250. "__id__": 332
  251. }
  252. ],
  253. "_prefab": null,
  254. "_lpos": {
  255. "__type__": "cc.Vec3",
  256. "x": 0,
  257. "y": 0,
  258. "z": 0
  259. },
  260. "_lrot": {
  261. "__type__": "cc.Quat",
  262. "x": 0,
  263. "y": 0,
  264. "z": 0,
  265. "w": 1
  266. },
  267. "_lscale": {
  268. "__type__": "cc.Vec3",
  269. "x": 1,
  270. "y": 1,
  271. "z": 1
  272. },
  273. "_mobility": 0,
  274. "_layer": 33554432,
  275. "_euler": {
  276. "__type__": "cc.Vec3",
  277. "x": 0,
  278. "y": 0,
  279. "z": 0
  280. },
  281. "_id": "bcoCLCheBKu548MJo42ADu"
  282. },
  283. {
  284. "__type__": "cc.Node",
  285. "_name": "Bg",
  286. "_objFlags": 0,
  287. "__editorExtras__": {},
  288. "_parent": {
  289. "__id__": 5
  290. },
  291. "_children": [
  292. {
  293. "__id__": 7
  294. },
  295. {
  296. "__id__": 11
  297. }
  298. ],
  299. "_active": true,
  300. "_components": [
  301. {
  302. "__id__": 15
  303. },
  304. {
  305. "__id__": 16
  306. },
  307. {
  308. "__id__": 17
  309. }
  310. ],
  311. "_prefab": null,
  312. "_lpos": {
  313. "__type__": "cc.Vec3",
  314. "x": 0,
  315. "y": 0,
  316. "z": 0
  317. },
  318. "_lrot": {
  319. "__type__": "cc.Quat",
  320. "x": 0,
  321. "y": 0,
  322. "z": 0,
  323. "w": 1
  324. },
  325. "_lscale": {
  326. "__type__": "cc.Vec3",
  327. "x": 1,
  328. "y": 1,
  329. "z": 1
  330. },
  331. "_mobility": 0,
  332. "_layer": 33554432,
  333. "_euler": {
  334. "__type__": "cc.Vec3",
  335. "x": 0,
  336. "y": 0,
  337. "z": 0
  338. },
  339. "_id": "862BxgkgFPZJlc3P6YTT4D"
  340. },
  341. {
  342. "__type__": "cc.Node",
  343. "_name": "CornerLeft",
  344. "_objFlags": 0,
  345. "__editorExtras__": {},
  346. "_parent": {
  347. "__id__": 6
  348. },
  349. "_children": [],
  350. "_active": true,
  351. "_components": [
  352. {
  353. "__id__": 8
  354. },
  355. {
  356. "__id__": 9
  357. },
  358. {
  359. "__id__": 10
  360. }
  361. ],
  362. "_prefab": null,
  363. "_lpos": {
  364. "__type__": "cc.Vec3",
  365. "x": -571,
  366. "y": -303.75,
  367. "z": 0
  368. },
  369. "_lrot": {
  370. "__type__": "cc.Quat",
  371. "x": 0,
  372. "y": 0,
  373. "z": 0,
  374. "w": 1
  375. },
  376. "_lscale": {
  377. "__type__": "cc.Vec3",
  378. "x": 1,
  379. "y": 1,
  380. "z": 1
  381. },
  382. "_mobility": 0,
  383. "_layer": 33554432,
  384. "_euler": {
  385. "__type__": "cc.Vec3",
  386. "x": 0,
  387. "y": 0,
  388. "z": 0
  389. },
  390. "_id": "0c3yzXbDdMB62HQhoZxC1G"
  391. },
  392. {
  393. "__type__": "cc.UITransform",
  394. "_name": "",
  395. "_objFlags": 0,
  396. "__editorExtras__": {},
  397. "node": {
  398. "__id__": 7
  399. },
  400. "_enabled": true,
  401. "__prefab": null,
  402. "_contentSize": {
  403. "__type__": "cc.Size",
  404. "width": 138,
  405. "height": 112.5
  406. },
  407. "_anchorPoint": {
  408. "__type__": "cc.Vec2",
  409. "x": 0.5,
  410. "y": 0.5
  411. },
  412. "_id": "c2vPUApitOpaWWNe6uyyxQ"
  413. },
  414. {
  415. "__type__": "cc.Sprite",
  416. "_name": "",
  417. "_objFlags": 0,
  418. "__editorExtras__": {},
  419. "node": {
  420. "__id__": 7
  421. },
  422. "_enabled": true,
  423. "__prefab": null,
  424. "_customMaterial": null,
  425. "_srcBlendFactor": 2,
  426. "_dstBlendFactor": 4,
  427. "_color": {
  428. "__type__": "cc.Color",
  429. "r": 255,
  430. "g": 255,
  431. "b": 255,
  432. "a": 255
  433. },
  434. "_spriteFrame": {
  435. "__uuid__": "5c5ef115-db35-43f4-84ee-af2e7aa10ecc@f9941",
  436. "__expectedType__": "cc.SpriteFrame"
  437. },
  438. "_type": 0,
  439. "_fillType": 0,
  440. "_sizeMode": 0,
  441. "_fillCenter": {
  442. "__type__": "cc.Vec2",
  443. "x": 0,
  444. "y": 0
  445. },
  446. "_fillStart": 0,
  447. "_fillRange": 0,
  448. "_isTrimmedMode": true,
  449. "_useGrayscale": false,
  450. "_atlas": null,
  451. "_id": "22RN+0uUlB+5WrDNA6UBLW"
  452. },
  453. {
  454. "__type__": "cc.Widget",
  455. "_name": "",
  456. "_objFlags": 0,
  457. "__editorExtras__": {},
  458. "node": {
  459. "__id__": 7
  460. },
  461. "_enabled": true,
  462. "__prefab": null,
  463. "_alignFlags": 12,
  464. "_target": null,
  465. "_left": 0,
  466. "_right": 0,
  467. "_top": 0,
  468. "_bottom": 0,
  469. "_horizontalCenter": 0,
  470. "_verticalCenter": 0,
  471. "_isAbsLeft": true,
  472. "_isAbsRight": true,
  473. "_isAbsTop": true,
  474. "_isAbsBottom": true,
  475. "_isAbsHorizontalCenter": true,
  476. "_isAbsVerticalCenter": true,
  477. "_originalWidth": 0,
  478. "_originalHeight": 0,
  479. "_alignMode": 2,
  480. "_lockFlags": 0,
  481. "_id": "f09I2znjBPm5RDKXZaKRU9"
  482. },
  483. {
  484. "__type__": "cc.Node",
  485. "_name": "CornerRight",
  486. "_objFlags": 0,
  487. "__editorExtras__": {},
  488. "_parent": {
  489. "__id__": 6
  490. },
  491. "_children": [],
  492. "_active": true,
  493. "_components": [
  494. {
  495. "__id__": 12
  496. },
  497. {
  498. "__id__": 13
  499. },
  500. {
  501. "__id__": 14
  502. }
  503. ],
  504. "_prefab": null,
  505. "_lpos": {
  506. "__type__": "cc.Vec3",
  507. "x": 570.75,
  508. "y": -303.75,
  509. "z": 0
  510. },
  511. "_lrot": {
  512. "__type__": "cc.Quat",
  513. "x": 0,
  514. "y": 0,
  515. "z": 0,
  516. "w": 1
  517. },
  518. "_lscale": {
  519. "__type__": "cc.Vec3",
  520. "x": 1,
  521. "y": 1,
  522. "z": 1
  523. },
  524. "_mobility": 0,
  525. "_layer": 33554432,
  526. "_euler": {
  527. "__type__": "cc.Vec3",
  528. "x": 0,
  529. "y": 0,
  530. "z": 0
  531. },
  532. "_id": "231UMB4vNMJLaZypg4do2i"
  533. },
  534. {
  535. "__type__": "cc.UITransform",
  536. "_name": "",
  537. "_objFlags": 0,
  538. "__editorExtras__": {},
  539. "node": {
  540. "__id__": 11
  541. },
  542. "_enabled": true,
  543. "__prefab": null,
  544. "_contentSize": {
  545. "__type__": "cc.Size",
  546. "width": 138.5,
  547. "height": 112.5
  548. },
  549. "_anchorPoint": {
  550. "__type__": "cc.Vec2",
  551. "x": 0.5,
  552. "y": 0.5
  553. },
  554. "_id": "07793NNLVHarrdK0KxvrJp"
  555. },
  556. {
  557. "__type__": "cc.Sprite",
  558. "_name": "",
  559. "_objFlags": 0,
  560. "__editorExtras__": {},
  561. "node": {
  562. "__id__": 11
  563. },
  564. "_enabled": true,
  565. "__prefab": null,
  566. "_customMaterial": null,
  567. "_srcBlendFactor": 2,
  568. "_dstBlendFactor": 4,
  569. "_color": {
  570. "__type__": "cc.Color",
  571. "r": 255,
  572. "g": 255,
  573. "b": 255,
  574. "a": 255
  575. },
  576. "_spriteFrame": {
  577. "__uuid__": "c9c8a14e-cb8b-4fd3-9f59-f57204b8ab88@f9941",
  578. "__expectedType__": "cc.SpriteFrame"
  579. },
  580. "_type": 0,
  581. "_fillType": 0,
  582. "_sizeMode": 0,
  583. "_fillCenter": {
  584. "__type__": "cc.Vec2",
  585. "x": 0,
  586. "y": 0
  587. },
  588. "_fillStart": 0,
  589. "_fillRange": 0,
  590. "_isTrimmedMode": true,
  591. "_useGrayscale": false,
  592. "_atlas": null,
  593. "_id": "85TTK3tfRNSJ9/s6nRkAoF"
  594. },
  595. {
  596. "__type__": "cc.Widget",
  597. "_name": "",
  598. "_objFlags": 0,
  599. "__editorExtras__": {},
  600. "node": {
  601. "__id__": 11
  602. },
  603. "_enabled": true,
  604. "__prefab": null,
  605. "_alignFlags": 36,
  606. "_target": null,
  607. "_left": 0,
  608. "_right": 0,
  609. "_top": 0,
  610. "_bottom": 0,
  611. "_horizontalCenter": 0,
  612. "_verticalCenter": 0,
  613. "_isAbsLeft": true,
  614. "_isAbsRight": true,
  615. "_isAbsTop": true,
  616. "_isAbsBottom": true,
  617. "_isAbsHorizontalCenter": true,
  618. "_isAbsVerticalCenter": true,
  619. "_originalWidth": 0,
  620. "_originalHeight": 0,
  621. "_alignMode": 2,
  622. "_lockFlags": 0,
  623. "_id": "bev6foNWBJForK/JeZX9E6"
  624. },
  625. {
  626. "__type__": "cc.UITransform",
  627. "_name": "",
  628. "_objFlags": 0,
  629. "__editorExtras__": {},
  630. "node": {
  631. "__id__": 6
  632. },
  633. "_enabled": true,
  634. "__prefab": null,
  635. "_contentSize": {
  636. "__type__": "cc.Size",
  637. "width": 1280,
  638. "height": 720
  639. },
  640. "_anchorPoint": {
  641. "__type__": "cc.Vec2",
  642. "x": 0.5,
  643. "y": 0.5
  644. },
  645. "_id": "20NU/hwPlCgLHSAp3+2HCb"
  646. },
  647. {
  648. "__type__": "cc.Sprite",
  649. "_name": "",
  650. "_objFlags": 0,
  651. "__editorExtras__": {},
  652. "node": {
  653. "__id__": 6
  654. },
  655. "_enabled": true,
  656. "__prefab": null,
  657. "_customMaterial": null,
  658. "_srcBlendFactor": 2,
  659. "_dstBlendFactor": 4,
  660. "_color": {
  661. "__type__": "cc.Color",
  662. "r": 244,
  663. "g": 253,
  664. "b": 233,
  665. "a": 255
  666. },
  667. "_spriteFrame": {
  668. "__uuid__": "aec9314b-0100-429b-9d8d-a9962c65d6ff@f9941",
  669. "__expectedType__": "cc.SpriteFrame"
  670. },
  671. "_type": 0,
  672. "_fillType": 0,
  673. "_sizeMode": 0,
  674. "_fillCenter": {
  675. "__type__": "cc.Vec2",
  676. "x": 0,
  677. "y": 0
  678. },
  679. "_fillStart": 0,
  680. "_fillRange": 0,
  681. "_isTrimmedMode": true,
  682. "_useGrayscale": false,
  683. "_atlas": null,
  684. "_id": "dbgHgbwmpFmLvlDKAMxayI"
  685. },
  686. {
  687. "__type__": "cc.Widget",
  688. "_name": "",
  689. "_objFlags": 0,
  690. "__editorExtras__": {},
  691. "node": {
  692. "__id__": 6
  693. },
  694. "_enabled": true,
  695. "__prefab": null,
  696. "_alignFlags": 45,
  697. "_target": null,
  698. "_left": 0,
  699. "_right": 0,
  700. "_top": 0,
  701. "_bottom": 0,
  702. "_horizontalCenter": 0,
  703. "_verticalCenter": 0,
  704. "_isAbsLeft": true,
  705. "_isAbsRight": true,
  706. "_isAbsTop": true,
  707. "_isAbsBottom": true,
  708. "_isAbsHorizontalCenter": true,
  709. "_isAbsVerticalCenter": true,
  710. "_originalWidth": 100,
  711. "_originalHeight": 100,
  712. "_alignMode": 2,
  713. "_lockFlags": 0,
  714. "_id": "17IAUK6Q1JQr8ECahf0nxT"
  715. },
  716. {
  717. "__type__": "cc.Node",
  718. "_name": "BattleScene_Left",
  719. "_objFlags": 0,
  720. "__editorExtras__": {},
  721. "_parent": {
  722. "__id__": 5
  723. },
  724. "_children": [
  725. {
  726. "__id__": 19
  727. },
  728. {
  729. "__id__": 24
  730. },
  731. {
  732. "__id__": 32
  733. }
  734. ],
  735. "_active": true,
  736. "_components": [
  737. {
  738. "__id__": 47
  739. },
  740. {
  741. "__id__": 48
  742. },
  743. {
  744. "__id__": 49
  745. },
  746. {
  747. "__id__": 50
  748. }
  749. ],
  750. "_prefab": null,
  751. "_lpos": {
  752. "__type__": "cc.Vec3",
  753. "x": -240,
  754. "y": -110,
  755. "z": 0
  756. },
  757. "_lrot": {
  758. "__type__": "cc.Quat",
  759. "x": 0,
  760. "y": 0,
  761. "z": 0,
  762. "w": 1
  763. },
  764. "_lscale": {
  765. "__type__": "cc.Vec3",
  766. "x": 1,
  767. "y": 1,
  768. "z": 1
  769. },
  770. "_mobility": 0,
  771. "_layer": 33554432,
  772. "_euler": {
  773. "__type__": "cc.Vec3",
  774. "x": 0,
  775. "y": 0,
  776. "z": 0
  777. },
  778. "_id": "00GvPOXDlA5Ihr6laCL4Oe"
  779. },
  780. {
  781. "__type__": "cc.Node",
  782. "_name": "_btnLevel",
  783. "_objFlags": 0,
  784. "__editorExtras__": {},
  785. "_parent": {
  786. "__id__": 18
  787. },
  788. "_children": [],
  789. "_active": true,
  790. "_components": [
  791. {
  792. "__id__": 20
  793. },
  794. {
  795. "__id__": 21
  796. },
  797. {
  798. "__id__": 22
  799. },
  800. {
  801. "__id__": 23
  802. }
  803. ],
  804. "_prefab": null,
  805. "_lpos": {
  806. "__type__": "cc.Vec3",
  807. "x": 0,
  808. "y": -120,
  809. "z": 0
  810. },
  811. "_lrot": {
  812. "__type__": "cc.Quat",
  813. "x": 0,
  814. "y": 0,
  815. "z": 0,
  816. "w": 1
  817. },
  818. "_lscale": {
  819. "__type__": "cc.Vec3",
  820. "x": 1,
  821. "y": 1,
  822. "z": 1
  823. },
  824. "_mobility": 0,
  825. "_layer": 33554432,
  826. "_euler": {
  827. "__type__": "cc.Vec3",
  828. "x": 0,
  829. "y": 0,
  830. "z": 0
  831. },
  832. "_id": "41tKKuY4BBAYftS/rY+X1k"
  833. },
  834. {
  835. "__type__": "cc.UITransform",
  836. "_name": "",
  837. "_objFlags": 0,
  838. "__editorExtras__": {},
  839. "node": {
  840. "__id__": 19
  841. },
  842. "_enabled": true,
  843. "__prefab": null,
  844. "_contentSize": {
  845. "__type__": "cc.Size",
  846. "width": 150,
  847. "height": 50.5
  848. },
  849. "_anchorPoint": {
  850. "__type__": "cc.Vec2",
  851. "x": 0.5,
  852. "y": 0.5
  853. },
  854. "_id": "58NJ4QiatOboCPzrwcQRh+"
  855. },
  856. {
  857. "__type__": "cc.Sprite",
  858. "_name": "",
  859. "_objFlags": 0,
  860. "__editorExtras__": {},
  861. "node": {
  862. "__id__": 19
  863. },
  864. "_enabled": true,
  865. "__prefab": null,
  866. "_customMaterial": null,
  867. "_srcBlendFactor": 2,
  868. "_dstBlendFactor": 4,
  869. "_color": {
  870. "__type__": "cc.Color",
  871. "r": 255,
  872. "g": 255,
  873. "b": 255,
  874. "a": 255
  875. },
  876. "_spriteFrame": {
  877. "__uuid__": "c00b279f-801e-4e6d-a02e-0a9604678070@356ff",
  878. "__expectedType__": "cc.SpriteFrame"
  879. },
  880. "_type": 1,
  881. "_fillType": 0,
  882. "_sizeMode": 0,
  883. "_fillCenter": {
  884. "__type__": "cc.Vec2",
  885. "x": 0,
  886. "y": 0
  887. },
  888. "_fillStart": 0,
  889. "_fillRange": 0,
  890. "_isTrimmedMode": true,
  891. "_useGrayscale": false,
  892. "_atlas": null,
  893. "_id": "fe63PXo6NKia0TTL11Skff"
  894. },
  895. {
  896. "__type__": "cc.Button",
  897. "_name": "",
  898. "_objFlags": 0,
  899. "__editorExtras__": {},
  900. "node": {
  901. "__id__": 19
  902. },
  903. "_enabled": true,
  904. "__prefab": null,
  905. "clickEvents": [],
  906. "_interactable": true,
  907. "_transition": 3,
  908. "_normalColor": {
  909. "__type__": "cc.Color",
  910. "r": 214,
  911. "g": 214,
  912. "b": 214,
  913. "a": 255
  914. },
  915. "_hoverColor": {
  916. "__type__": "cc.Color",
  917. "r": 211,
  918. "g": 211,
  919. "b": 211,
  920. "a": 255
  921. },
  922. "_pressedColor": {
  923. "__type__": "cc.Color",
  924. "r": 255,
  925. "g": 255,
  926. "b": 255,
  927. "a": 255
  928. },
  929. "_disabledColor": {
  930. "__type__": "cc.Color",
  931. "r": 124,
  932. "g": 124,
  933. "b": 124,
  934. "a": 255
  935. },
  936. "_normalSprite": {
  937. "__uuid__": "c00b279f-801e-4e6d-a02e-0a9604678070@356ff",
  938. "__expectedType__": "cc.SpriteFrame"
  939. },
  940. "_hoverSprite": null,
  941. "_pressedSprite": null,
  942. "_disabledSprite": null,
  943. "_duration": 0.1,
  944. "_zoomScale": 1.2,
  945. "_target": {
  946. "__id__": 19
  947. },
  948. "_id": "6fuZ2CdClOgpMCYgKedrXk"
  949. },
  950. {
  951. "__type__": "cc.Widget",
  952. "_name": "",
  953. "_objFlags": 0,
  954. "__editorExtras__": {},
  955. "node": {
  956. "__id__": 19
  957. },
  958. "_enabled": true,
  959. "__prefab": null,
  960. "_alignFlags": 44,
  961. "_target": null,
  962. "_left": 125,
  963. "_right": 125,
  964. "_top": 0,
  965. "_bottom": 54.75,
  966. "_horizontalCenter": 0,
  967. "_verticalCenter": 0,
  968. "_isAbsLeft": true,
  969. "_isAbsRight": true,
  970. "_isAbsTop": true,
  971. "_isAbsBottom": true,
  972. "_isAbsHorizontalCenter": true,
  973. "_isAbsVerticalCenter": true,
  974. "_originalWidth": 100,
  975. "_originalHeight": 0,
  976. "_alignMode": 2,
  977. "_lockFlags": 0,
  978. "_id": "59Wpgws7hHdLmnkpwqcmSF"
  979. },
  980. {
  981. "__type__": "cc.Node",
  982. "_name": "Level",
  983. "_objFlags": 0,
  984. "__editorExtras__": {},
  985. "_parent": {
  986. "__id__": 18
  987. },
  988. "_children": [
  989. {
  990. "__id__": 25
  991. }
  992. ],
  993. "_active": true,
  994. "_components": [
  995. {
  996. "__id__": 29
  997. },
  998. {
  999. "__id__": 30
  1000. },
  1001. {
  1002. "__id__": 31
  1003. }
  1004. ],
  1005. "_prefab": null,
  1006. "_lpos": {
  1007. "__type__": "cc.Vec3",
  1008. "x": -95,
  1009. "y": 35.624,
  1010. "z": 0
  1011. },
  1012. "_lrot": {
  1013. "__type__": "cc.Quat",
  1014. "x": 0,
  1015. "y": 0,
  1016. "z": 0,
  1017. "w": 1
  1018. },
  1019. "_lscale": {
  1020. "__type__": "cc.Vec3",
  1021. "x": 1,
  1022. "y": 1,
  1023. "z": 1
  1024. },
  1025. "_mobility": 0,
  1026. "_layer": 33554432,
  1027. "_euler": {
  1028. "__type__": "cc.Vec3",
  1029. "x": 0,
  1030. "y": 0,
  1031. "z": 0
  1032. },
  1033. "_id": "c4plNMkVVGqqFLZ9Yyj+ul"
  1034. },
  1035. {
  1036. "__type__": "cc.Node",
  1037. "_name": "_curLv",
  1038. "_objFlags": 0,
  1039. "__editorExtras__": {},
  1040. "_parent": {
  1041. "__id__": 24
  1042. },
  1043. "_children": [],
  1044. "_active": true,
  1045. "_components": [
  1046. {
  1047. "__id__": 26
  1048. },
  1049. {
  1050. "__id__": 27
  1051. },
  1052. {
  1053. "__id__": 28
  1054. }
  1055. ],
  1056. "_prefab": null,
  1057. "_lpos": {
  1058. "__type__": "cc.Vec3",
  1059. "x": 60,
  1060. "y": 0,
  1061. "z": 0
  1062. },
  1063. "_lrot": {
  1064. "__type__": "cc.Quat",
  1065. "x": 0,
  1066. "y": 0,
  1067. "z": 0,
  1068. "w": 1
  1069. },
  1070. "_lscale": {
  1071. "__type__": "cc.Vec3",
  1072. "x": 1,
  1073. "y": 1,
  1074. "z": 1
  1075. },
  1076. "_mobility": 0,
  1077. "_layer": 33554432,
  1078. "_euler": {
  1079. "__type__": "cc.Vec3",
  1080. "x": 0,
  1081. "y": 0,
  1082. "z": 0
  1083. },
  1084. "_id": "e7oM7j3xVJg7uOBo4lZiyk"
  1085. },
  1086. {
  1087. "__type__": "cc.UITransform",
  1088. "_name": "",
  1089. "_objFlags": 0,
  1090. "__editorExtras__": {},
  1091. "node": {
  1092. "__id__": 25
  1093. },
  1094. "_enabled": true,
  1095. "__prefab": null,
  1096. "_contentSize": {
  1097. "__type__": "cc.Size",
  1098. "width": 22.24609375,
  1099. "height": 50.4
  1100. },
  1101. "_anchorPoint": {
  1102. "__type__": "cc.Vec2",
  1103. "x": 0,
  1104. "y": 0.5
  1105. },
  1106. "_id": "6aNXmk4VhKZod76qdbQ32O"
  1107. },
  1108. {
  1109. "__type__": "cc.Widget",
  1110. "_name": "",
  1111. "_objFlags": 0,
  1112. "__editorExtras__": {},
  1113. "node": {
  1114. "__id__": 25
  1115. },
  1116. "_enabled": true,
  1117. "__prefab": null,
  1118. "_alignFlags": 13,
  1119. "_target": null,
  1120. "_left": 120,
  1121. "_right": 0,
  1122. "_top": 0,
  1123. "_bottom": 0,
  1124. "_horizontalCenter": 0,
  1125. "_verticalCenter": 0,
  1126. "_isAbsLeft": true,
  1127. "_isAbsRight": true,
  1128. "_isAbsTop": true,
  1129. "_isAbsBottom": true,
  1130. "_isAbsHorizontalCenter": true,
  1131. "_isAbsVerticalCenter": true,
  1132. "_originalWidth": 0,
  1133. "_originalHeight": 36,
  1134. "_alignMode": 2,
  1135. "_lockFlags": 0,
  1136. "_id": "64BC3fjPRJr7nxkuf4q/Jd"
  1137. },
  1138. {
  1139. "__type__": "cc.Label",
  1140. "_name": "",
  1141. "_objFlags": 0,
  1142. "__editorExtras__": {},
  1143. "node": {
  1144. "__id__": 25
  1145. },
  1146. "_enabled": true,
  1147. "__prefab": null,
  1148. "_customMaterial": null,
  1149. "_srcBlendFactor": 2,
  1150. "_dstBlendFactor": 4,
  1151. "_color": {
  1152. "__type__": "cc.Color",
  1153. "r": 255,
  1154. "g": 20,
  1155. "b": 180,
  1156. "a": 255
  1157. },
  1158. "_string": "1",
  1159. "_horizontalAlign": 1,
  1160. "_verticalAlign": 1,
  1161. "_actualFontSize": 40,
  1162. "_fontSize": 40,
  1163. "_fontFamily": "Arial",
  1164. "_lineHeight": 40,
  1165. "_overflow": 0,
  1166. "_enableWrapText": true,
  1167. "_font": null,
  1168. "_isSystemFontUsed": true,
  1169. "_spacingX": 0,
  1170. "_isItalic": false,
  1171. "_isBold": false,
  1172. "_isUnderline": false,
  1173. "_underlineHeight": 2,
  1174. "_cacheMode": 0,
  1175. "_enableOutline": false,
  1176. "_outlineColor": {
  1177. "__type__": "cc.Color",
  1178. "r": 0,
  1179. "g": 0,
  1180. "b": 0,
  1181. "a": 255
  1182. },
  1183. "_outlineWidth": 2,
  1184. "_enableShadow": false,
  1185. "_shadowColor": {
  1186. "__type__": "cc.Color",
  1187. "r": 0,
  1188. "g": 0,
  1189. "b": 0,
  1190. "a": 255
  1191. },
  1192. "_shadowOffset": {
  1193. "__type__": "cc.Vec2",
  1194. "x": 2,
  1195. "y": 2
  1196. },
  1197. "_shadowBlur": 2,
  1198. "_id": "09gCHJTipPvZZFT+x/iWsD"
  1199. },
  1200. {
  1201. "__type__": "cc.UITransform",
  1202. "_name": "",
  1203. "_objFlags": 0,
  1204. "__editorExtras__": {},
  1205. "node": {
  1206. "__id__": 24
  1207. },
  1208. "_enabled": true,
  1209. "__prefab": null,
  1210. "_contentSize": {
  1211. "__type__": "cc.Size",
  1212. "width": 120,
  1213. "height": 50.4
  1214. },
  1215. "_anchorPoint": {
  1216. "__type__": "cc.Vec2",
  1217. "x": 0.5,
  1218. "y": 0.5
  1219. },
  1220. "_id": "8azJ0dP9NN/pPDX4dGyqdS"
  1221. },
  1222. {
  1223. "__type__": "cc.Label",
  1224. "_name": "",
  1225. "_objFlags": 0,
  1226. "__editorExtras__": {},
  1227. "node": {
  1228. "__id__": 24
  1229. },
  1230. "_enabled": true,
  1231. "__prefab": null,
  1232. "_customMaterial": null,
  1233. "_srcBlendFactor": 2,
  1234. "_dstBlendFactor": 4,
  1235. "_color": {
  1236. "__type__": "cc.Color",
  1237. "r": 70,
  1238. "g": 160,
  1239. "b": 243,
  1240. "a": 255
  1241. },
  1242. "_string": "关卡:",
  1243. "_horizontalAlign": 1,
  1244. "_verticalAlign": 1,
  1245. "_actualFontSize": 40,
  1246. "_fontSize": 40,
  1247. "_fontFamily": "Arial",
  1248. "_lineHeight": 40,
  1249. "_overflow": 0,
  1250. "_enableWrapText": true,
  1251. "_font": null,
  1252. "_isSystemFontUsed": true,
  1253. "_spacingX": 0,
  1254. "_isItalic": false,
  1255. "_isBold": false,
  1256. "_isUnderline": false,
  1257. "_underlineHeight": 2,
  1258. "_cacheMode": 0,
  1259. "_enableOutline": false,
  1260. "_outlineColor": {
  1261. "__type__": "cc.Color",
  1262. "r": 0,
  1263. "g": 0,
  1264. "b": 0,
  1265. "a": 255
  1266. },
  1267. "_outlineWidth": 2,
  1268. "_enableShadow": false,
  1269. "_shadowColor": {
  1270. "__type__": "cc.Color",
  1271. "r": 0,
  1272. "g": 0,
  1273. "b": 0,
  1274. "a": 255
  1275. },
  1276. "_shadowOffset": {
  1277. "__type__": "cc.Vec2",
  1278. "x": 2,
  1279. "y": 2
  1280. },
  1281. "_shadowBlur": 2,
  1282. "_id": "f4rp1+cCtAm7u9Av66G9iO"
  1283. },
  1284. {
  1285. "__type__": "cc.Widget",
  1286. "_name": "",
  1287. "_objFlags": 0,
  1288. "__editorExtras__": {},
  1289. "node": {
  1290. "__id__": 24
  1291. },
  1292. "_enabled": true,
  1293. "__prefab": null,
  1294. "_alignFlags": 8,
  1295. "_target": null,
  1296. "_left": 45,
  1297. "_right": 0,
  1298. "_top": 0,
  1299. "_bottom": 0,
  1300. "_horizontalCenter": 0,
  1301. "_verticalCenter": 0,
  1302. "_isAbsLeft": true,
  1303. "_isAbsRight": true,
  1304. "_isAbsTop": true,
  1305. "_isAbsBottom": true,
  1306. "_isAbsHorizontalCenter": true,
  1307. "_isAbsVerticalCenter": true,
  1308. "_originalWidth": 0,
  1309. "_originalHeight": 0,
  1310. "_alignMode": 2,
  1311. "_lockFlags": 0,
  1312. "_id": "3dn/AoqChGg6xeIugvI0WQ"
  1313. },
  1314. {
  1315. "__type__": "cc.Node",
  1316. "_name": "EditBox",
  1317. "_objFlags": 0,
  1318. "__editorExtras__": {},
  1319. "_parent": {
  1320. "__id__": 18
  1321. },
  1322. "_children": [
  1323. {
  1324. "__id__": 33
  1325. },
  1326. {
  1327. "__id__": 36
  1328. },
  1329. {
  1330. "__id__": 39
  1331. }
  1332. ],
  1333. "_active": true,
  1334. "_components": [
  1335. {
  1336. "__id__": 43
  1337. },
  1338. {
  1339. "__id__": 44
  1340. },
  1341. {
  1342. "__id__": 45
  1343. },
  1344. {
  1345. "__id__": 46
  1346. }
  1347. ],
  1348. "_prefab": null,
  1349. "_lpos": {
  1350. "__type__": "cc.Vec3",
  1351. "x": -110,
  1352. "y": 230,
  1353. "z": 0
  1354. },
  1355. "_lrot": {
  1356. "__type__": "cc.Quat",
  1357. "x": 0,
  1358. "y": 0,
  1359. "z": 0,
  1360. "w": 1
  1361. },
  1362. "_lscale": {
  1363. "__type__": "cc.Vec3",
  1364. "x": 1,
  1365. "y": 1,
  1366. "z": 1
  1367. },
  1368. "_mobility": 0,
  1369. "_layer": 33554432,
  1370. "_euler": {
  1371. "__type__": "cc.Vec3",
  1372. "x": 0,
  1373. "y": 0,
  1374. "z": 0
  1375. },
  1376. "_id": "9aRdl77wVJu7ZcHJoqerbK"
  1377. },
  1378. {
  1379. "__type__": "cc.Node",
  1380. "_name": "TEXT_LABEL",
  1381. "_objFlags": 0,
  1382. "__editorExtras__": {},
  1383. "_parent": {
  1384. "__id__": 32
  1385. },
  1386. "_children": [],
  1387. "_active": false,
  1388. "_components": [
  1389. {
  1390. "__id__": 34
  1391. },
  1392. {
  1393. "__id__": 35
  1394. }
  1395. ],
  1396. "_prefab": null,
  1397. "_lpos": {
  1398. "__type__": "cc.Vec3",
  1399. "x": -78,
  1400. "y": 20,
  1401. "z": 0
  1402. },
  1403. "_lrot": {
  1404. "__type__": "cc.Quat",
  1405. "x": 0,
  1406. "y": 0,
  1407. "z": 0,
  1408. "w": 1
  1409. },
  1410. "_lscale": {
  1411. "__type__": "cc.Vec3",
  1412. "x": 1,
  1413. "y": 1,
  1414. "z": 1
  1415. },
  1416. "_mobility": 0,
  1417. "_layer": 33554432,
  1418. "_euler": {
  1419. "__type__": "cc.Vec3",
  1420. "x": 0,
  1421. "y": 0,
  1422. "z": 0
  1423. },
  1424. "_id": "98oUgxotRMdYjzfFRqLIbn"
  1425. },
  1426. {
  1427. "__type__": "cc.UITransform",
  1428. "_name": "",
  1429. "_objFlags": 0,
  1430. "__editorExtras__": {},
  1431. "node": {
  1432. "__id__": 33
  1433. },
  1434. "_enabled": true,
  1435. "__prefab": null,
  1436. "_contentSize": {
  1437. "__type__": "cc.Size",
  1438. "width": 158,
  1439. "height": 40
  1440. },
  1441. "_anchorPoint": {
  1442. "__type__": "cc.Vec2",
  1443. "x": 0,
  1444. "y": 1
  1445. },
  1446. "_id": "64X5AuFxRDgLclhDwZAXOq"
  1447. },
  1448. {
  1449. "__type__": "cc.Label",
  1450. "_name": "",
  1451. "_objFlags": 0,
  1452. "__editorExtras__": {},
  1453. "node": {
  1454. "__id__": 33
  1455. },
  1456. "_enabled": true,
  1457. "__prefab": null,
  1458. "_customMaterial": null,
  1459. "_srcBlendFactor": 2,
  1460. "_dstBlendFactor": 4,
  1461. "_color": {
  1462. "__type__": "cc.Color",
  1463. "r": 104,
  1464. "g": 104,
  1465. "b": 104,
  1466. "a": 255
  1467. },
  1468. "_string": "",
  1469. "_horizontalAlign": 0,
  1470. "_verticalAlign": 1,
  1471. "_actualFontSize": 20,
  1472. "_fontSize": 20,
  1473. "_fontFamily": "Arial",
  1474. "_lineHeight": 40,
  1475. "_overflow": 1,
  1476. "_enableWrapText": false,
  1477. "_font": null,
  1478. "_isSystemFontUsed": true,
  1479. "_spacingX": 0,
  1480. "_isItalic": false,
  1481. "_isBold": false,
  1482. "_isUnderline": false,
  1483. "_underlineHeight": 2,
  1484. "_cacheMode": 0,
  1485. "_enableOutline": false,
  1486. "_outlineColor": {
  1487. "__type__": "cc.Color",
  1488. "r": 0,
  1489. "g": 0,
  1490. "b": 0,
  1491. "a": 255
  1492. },
  1493. "_outlineWidth": 2,
  1494. "_enableShadow": false,
  1495. "_shadowColor": {
  1496. "__type__": "cc.Color",
  1497. "r": 0,
  1498. "g": 0,
  1499. "b": 0,
  1500. "a": 255
  1501. },
  1502. "_shadowOffset": {
  1503. "__type__": "cc.Vec2",
  1504. "x": 2,
  1505. "y": 2
  1506. },
  1507. "_shadowBlur": 2,
  1508. "_id": "e90CHLMfZDN5U6Jjb/xMyd"
  1509. },
  1510. {
  1511. "__type__": "cc.Node",
  1512. "_name": "PLACEHOLDER_LABEL",
  1513. "_objFlags": 0,
  1514. "__editorExtras__": {},
  1515. "_parent": {
  1516. "__id__": 32
  1517. },
  1518. "_children": [],
  1519. "_active": true,
  1520. "_components": [
  1521. {
  1522. "__id__": 37
  1523. },
  1524. {
  1525. "__id__": 38
  1526. }
  1527. ],
  1528. "_prefab": null,
  1529. "_lpos": {
  1530. "__type__": "cc.Vec3",
  1531. "x": -78,
  1532. "y": 20,
  1533. "z": 0
  1534. },
  1535. "_lrot": {
  1536. "__type__": "cc.Quat",
  1537. "x": 0,
  1538. "y": 0,
  1539. "z": 0,
  1540. "w": 1
  1541. },
  1542. "_lscale": {
  1543. "__type__": "cc.Vec3",
  1544. "x": 1,
  1545. "y": 1,
  1546. "z": 1
  1547. },
  1548. "_mobility": 0,
  1549. "_layer": 33554432,
  1550. "_euler": {
  1551. "__type__": "cc.Vec3",
  1552. "x": 0,
  1553. "y": 0,
  1554. "z": 0
  1555. },
  1556. "_id": "feMULMz7hLSJLxclLGxnrP"
  1557. },
  1558. {
  1559. "__type__": "cc.UITransform",
  1560. "_name": "",
  1561. "_objFlags": 0,
  1562. "__editorExtras__": {},
  1563. "node": {
  1564. "__id__": 36
  1565. },
  1566. "_enabled": true,
  1567. "__prefab": null,
  1568. "_contentSize": {
  1569. "__type__": "cc.Size",
  1570. "width": 158,
  1571. "height": 40
  1572. },
  1573. "_anchorPoint": {
  1574. "__type__": "cc.Vec2",
  1575. "x": 0,
  1576. "y": 1
  1577. },
  1578. "_id": "640J2x0tVC0YkB3DwEeWJc"
  1579. },
  1580. {
  1581. "__type__": "cc.Label",
  1582. "_name": "",
  1583. "_objFlags": 0,
  1584. "__editorExtras__": {},
  1585. "node": {
  1586. "__id__": 36
  1587. },
  1588. "_enabled": true,
  1589. "__prefab": null,
  1590. "_customMaterial": null,
  1591. "_srcBlendFactor": 2,
  1592. "_dstBlendFactor": 4,
  1593. "_color": {
  1594. "__type__": "cc.Color",
  1595. "r": 104,
  1596. "g": 104,
  1597. "b": 104,
  1598. "a": 255
  1599. },
  1600. "_string": "Enter text here...",
  1601. "_horizontalAlign": 0,
  1602. "_verticalAlign": 1,
  1603. "_actualFontSize": 20,
  1604. "_fontSize": 20,
  1605. "_fontFamily": "Arial",
  1606. "_lineHeight": 40,
  1607. "_overflow": 1,
  1608. "_enableWrapText": false,
  1609. "_font": null,
  1610. "_isSystemFontUsed": true,
  1611. "_spacingX": 0,
  1612. "_isItalic": false,
  1613. "_isBold": false,
  1614. "_isUnderline": false,
  1615. "_underlineHeight": 2,
  1616. "_cacheMode": 0,
  1617. "_enableOutline": false,
  1618. "_outlineColor": {
  1619. "__type__": "cc.Color",
  1620. "r": 0,
  1621. "g": 0,
  1622. "b": 0,
  1623. "a": 255
  1624. },
  1625. "_outlineWidth": 2,
  1626. "_enableShadow": false,
  1627. "_shadowColor": {
  1628. "__type__": "cc.Color",
  1629. "r": 0,
  1630. "g": 0,
  1631. "b": 0,
  1632. "a": 255
  1633. },
  1634. "_shadowOffset": {
  1635. "__type__": "cc.Vec2",
  1636. "x": 2,
  1637. "y": 2
  1638. },
  1639. "_shadowBlur": 2,
  1640. "_id": "f5FgUpnKNP8biljxiKU82A"
  1641. },
  1642. {
  1643. "__type__": "cc.Node",
  1644. "_name": "Label",
  1645. "_objFlags": 0,
  1646. "__editorExtras__": {},
  1647. "_parent": {
  1648. "__id__": 32
  1649. },
  1650. "_children": [],
  1651. "_active": true,
  1652. "_components": [
  1653. {
  1654. "__id__": 40
  1655. },
  1656. {
  1657. "__id__": 41
  1658. },
  1659. {
  1660. "__id__": 42
  1661. }
  1662. ],
  1663. "_prefab": null,
  1664. "_lpos": {
  1665. "__type__": "cc.Vec3",
  1666. "x": -40,
  1667. "y": 34.8,
  1668. "z": 0
  1669. },
  1670. "_lrot": {
  1671. "__type__": "cc.Quat",
  1672. "x": 0,
  1673. "y": 0,
  1674. "z": 0,
  1675. "w": 1
  1676. },
  1677. "_lscale": {
  1678. "__type__": "cc.Vec3",
  1679. "x": 1,
  1680. "y": 1,
  1681. "z": 1
  1682. },
  1683. "_mobility": 0,
  1684. "_layer": 33554432,
  1685. "_euler": {
  1686. "__type__": "cc.Vec3",
  1687. "x": 0,
  1688. "y": 0,
  1689. "z": 0
  1690. },
  1691. "_id": "fao4Mz0HdLHLIuLuW0/dh0"
  1692. },
  1693. {
  1694. "__type__": "cc.UITransform",
  1695. "_name": "",
  1696. "_objFlags": 0,
  1697. "__editorExtras__": {},
  1698. "node": {
  1699. "__id__": 39
  1700. },
  1701. "_enabled": true,
  1702. "__prefab": null,
  1703. "_contentSize": {
  1704. "__type__": "cc.Size",
  1705. "width": 80,
  1706. "height": 50.4
  1707. },
  1708. "_anchorPoint": {
  1709. "__type__": "cc.Vec2",
  1710. "x": 0.5,
  1711. "y": 0.5
  1712. },
  1713. "_id": "7dllkNq1FH6rmm+Pko67S2"
  1714. },
  1715. {
  1716. "__type__": "cc.Label",
  1717. "_name": "",
  1718. "_objFlags": 0,
  1719. "__editorExtras__": {},
  1720. "node": {
  1721. "__id__": 39
  1722. },
  1723. "_enabled": true,
  1724. "__prefab": null,
  1725. "_customMaterial": null,
  1726. "_srcBlendFactor": 2,
  1727. "_dstBlendFactor": 4,
  1728. "_color": {
  1729. "__type__": "cc.Color",
  1730. "r": 255,
  1731. "g": 255,
  1732. "b": 255,
  1733. "a": 255
  1734. },
  1735. "_string": "欢迎回来",
  1736. "_horizontalAlign": 1,
  1737. "_verticalAlign": 1,
  1738. "_actualFontSize": 20,
  1739. "_fontSize": 20,
  1740. "_fontFamily": "Arial",
  1741. "_lineHeight": 40,
  1742. "_overflow": 0,
  1743. "_enableWrapText": true,
  1744. "_font": null,
  1745. "_isSystemFontUsed": true,
  1746. "_spacingX": 0,
  1747. "_isItalic": false,
  1748. "_isBold": false,
  1749. "_isUnderline": false,
  1750. "_underlineHeight": 2,
  1751. "_cacheMode": 0,
  1752. "_enableOutline": false,
  1753. "_outlineColor": {
  1754. "__type__": "cc.Color",
  1755. "r": 0,
  1756. "g": 0,
  1757. "b": 0,
  1758. "a": 255
  1759. },
  1760. "_outlineWidth": 2,
  1761. "_enableShadow": false,
  1762. "_shadowColor": {
  1763. "__type__": "cc.Color",
  1764. "r": 0,
  1765. "g": 0,
  1766. "b": 0,
  1767. "a": 255
  1768. },
  1769. "_shadowOffset": {
  1770. "__type__": "cc.Vec2",
  1771. "x": 2,
  1772. "y": 2
  1773. },
  1774. "_shadowBlur": 2,
  1775. "_id": "86Xw+fvQJPOKhL1GPNAlde"
  1776. },
  1777. {
  1778. "__type__": "cc.Widget",
  1779. "_name": "",
  1780. "_objFlags": 0,
  1781. "__editorExtras__": {},
  1782. "node": {
  1783. "__id__": 39
  1784. },
  1785. "_enabled": true,
  1786. "__prefab": null,
  1787. "_alignFlags": 9,
  1788. "_target": {
  1789. "__id__": 32
  1790. },
  1791. "_left": 0,
  1792. "_right": 0,
  1793. "_top": -40,
  1794. "_bottom": 0,
  1795. "_horizontalCenter": 0,
  1796. "_verticalCenter": 0,
  1797. "_isAbsLeft": true,
  1798. "_isAbsRight": true,
  1799. "_isAbsTop": true,
  1800. "_isAbsBottom": true,
  1801. "_isAbsHorizontalCenter": true,
  1802. "_isAbsVerticalCenter": true,
  1803. "_originalWidth": 0,
  1804. "_originalHeight": 0,
  1805. "_alignMode": 2,
  1806. "_lockFlags": 0,
  1807. "_id": "26XmVrvF1JDoixS/mbn57L"
  1808. },
  1809. {
  1810. "__type__": "cc.UITransform",
  1811. "_name": "",
  1812. "_objFlags": 0,
  1813. "__editorExtras__": {},
  1814. "node": {
  1815. "__id__": 32
  1816. },
  1817. "_enabled": true,
  1818. "__prefab": null,
  1819. "_contentSize": {
  1820. "__type__": "cc.Size",
  1821. "width": 160,
  1822. "height": 40
  1823. },
  1824. "_anchorPoint": {
  1825. "__type__": "cc.Vec2",
  1826. "x": 0.5,
  1827. "y": 0.5
  1828. },
  1829. "_id": "ccMFgdFylMQb71ZMHqMqIW"
  1830. },
  1831. {
  1832. "__type__": "cc.Sprite",
  1833. "_name": "",
  1834. "_objFlags": 0,
  1835. "__editorExtras__": {},
  1836. "node": {
  1837. "__id__": 32
  1838. },
  1839. "_enabled": true,
  1840. "__prefab": null,
  1841. "_customMaterial": null,
  1842. "_srcBlendFactor": 2,
  1843. "_dstBlendFactor": 4,
  1844. "_color": {
  1845. "__type__": "cc.Color",
  1846. "r": 255,
  1847. "g": 255,
  1848. "b": 255,
  1849. "a": 255
  1850. },
  1851. "_spriteFrame": {
  1852. "__uuid__": "12607ce7-0c1a-4ea0-8fe0-6aabc9791b52@f9941",
  1853. "__expectedType__": "cc.SpriteFrame"
  1854. },
  1855. "_type": 1,
  1856. "_fillType": 0,
  1857. "_sizeMode": 0,
  1858. "_fillCenter": {
  1859. "__type__": "cc.Vec2",
  1860. "x": 0,
  1861. "y": 0
  1862. },
  1863. "_fillStart": 0,
  1864. "_fillRange": 0,
  1865. "_isTrimmedMode": true,
  1866. "_useGrayscale": false,
  1867. "_atlas": null,
  1868. "_id": "d2xZlFQ1lFQKWkqX/UiTu8"
  1869. },
  1870. {
  1871. "__type__": "cc.EditBox",
  1872. "_name": "",
  1873. "_objFlags": 0,
  1874. "__editorExtras__": {},
  1875. "node": {
  1876. "__id__": 32
  1877. },
  1878. "_enabled": true,
  1879. "__prefab": null,
  1880. "editingDidBegan": [],
  1881. "textChanged": [],
  1882. "editingDidEnded": [],
  1883. "editingReturn": [],
  1884. "_textLabel": {
  1885. "__id__": 35
  1886. },
  1887. "_placeholderLabel": {
  1888. "__id__": 38
  1889. },
  1890. "_returnType": 0,
  1891. "_string": "",
  1892. "_tabIndex": 0,
  1893. "_backgroundImage": {
  1894. "__uuid__": "12607ce7-0c1a-4ea0-8fe0-6aabc9791b52@f9941",
  1895. "__expectedType__": "cc.SpriteFrame"
  1896. },
  1897. "_inputFlag": 5,
  1898. "_inputMode": 6,
  1899. "_maxLength": 8,
  1900. "_id": "67iolD5n9MD6+HRGMgLBpE"
  1901. },
  1902. {
  1903. "__type__": "cc.Widget",
  1904. "_name": "",
  1905. "_objFlags": 0,
  1906. "__editorExtras__": {},
  1907. "node": {
  1908. "__id__": 32
  1909. },
  1910. "_enabled": true,
  1911. "__prefab": null,
  1912. "_alignFlags": 9,
  1913. "_target": {
  1914. "__id__": 18
  1915. },
  1916. "_left": 10,
  1917. "_right": 0,
  1918. "_top": -50,
  1919. "_bottom": 0,
  1920. "_horizontalCenter": 0,
  1921. "_verticalCenter": 0,
  1922. "_isAbsLeft": true,
  1923. "_isAbsRight": true,
  1924. "_isAbsTop": true,
  1925. "_isAbsBottom": true,
  1926. "_isAbsHorizontalCenter": true,
  1927. "_isAbsVerticalCenter": true,
  1928. "_originalWidth": 0,
  1929. "_originalHeight": 0,
  1930. "_alignMode": 2,
  1931. "_lockFlags": 0,
  1932. "_id": "f3Xd8GurxBl7mF4PX/NiMQ"
  1933. },
  1934. {
  1935. "__type__": "cc.UITransform",
  1936. "_name": "",
  1937. "_objFlags": 0,
  1938. "__editorExtras__": {},
  1939. "node": {
  1940. "__id__": 18
  1941. },
  1942. "_enabled": true,
  1943. "__prefab": null,
  1944. "_contentSize": {
  1945. "__type__": "cc.Size",
  1946. "width": 400,
  1947. "height": 400
  1948. },
  1949. "_anchorPoint": {
  1950. "__type__": "cc.Vec2",
  1951. "x": 0.5,
  1952. "y": 0.5
  1953. },
  1954. "_id": "62g/EMc11KCaIduKTKYy1z"
  1955. },
  1956. {
  1957. "__type__": "cc.Sprite",
  1958. "_name": "",
  1959. "_objFlags": 0,
  1960. "__editorExtras__": {},
  1961. "node": {
  1962. "__id__": 18
  1963. },
  1964. "_enabled": true,
  1965. "__prefab": null,
  1966. "_customMaterial": null,
  1967. "_srcBlendFactor": 2,
  1968. "_dstBlendFactor": 4,
  1969. "_color": {
  1970. "__type__": "cc.Color",
  1971. "r": 255,
  1972. "g": 255,
  1973. "b": 255,
  1974. "a": 255
  1975. },
  1976. "_spriteFrame": {
  1977. "__uuid__": "bb4aa6a1-96c4-46a7-ab7a-0c1265a52733@f9941",
  1978. "__expectedType__": "cc.SpriteFrame"
  1979. },
  1980. "_type": 0,
  1981. "_fillType": 0,
  1982. "_sizeMode": 0,
  1983. "_fillCenter": {
  1984. "__type__": "cc.Vec2",
  1985. "x": 0,
  1986. "y": 0
  1987. },
  1988. "_fillStart": 0,
  1989. "_fillRange": 0,
  1990. "_isTrimmedMode": true,
  1991. "_useGrayscale": false,
  1992. "_atlas": null,
  1993. "_id": "40yozhS0RNHq4nn3gUScRQ"
  1994. },
  1995. {
  1996. "__type__": "cc.Widget",
  1997. "_name": "",
  1998. "_objFlags": 0,
  1999. "__editorExtras__": {},
  2000. "node": {
  2001. "__id__": 18
  2002. },
  2003. "_enabled": true,
  2004. "__prefab": null,
  2005. "_alignFlags": 12,
  2006. "_target": null,
  2007. "_left": 200,
  2008. "_right": 0,
  2009. "_top": 160,
  2010. "_bottom": 50,
  2011. "_horizontalCenter": 0,
  2012. "_verticalCenter": 0,
  2013. "_isAbsLeft": true,
  2014. "_isAbsRight": true,
  2015. "_isAbsTop": true,
  2016. "_isAbsBottom": true,
  2017. "_isAbsHorizontalCenter": true,
  2018. "_isAbsVerticalCenter": true,
  2019. "_originalWidth": 0,
  2020. "_originalHeight": 400,
  2021. "_alignMode": 2,
  2022. "_lockFlags": 0,
  2023. "_id": "0a7XdvG1xLGaB8/f3b8+Iz"
  2024. },
  2025. {
  2026. "__type__": "1599fPNn1pOl5EHk5pkIuTS",
  2027. "_name": "",
  2028. "_objFlags": 0,
  2029. "__editorExtras__": {},
  2030. "node": {
  2031. "__id__": 18
  2032. },
  2033. "_enabled": true,
  2034. "__prefab": null,
  2035. "_id": "8cl5Do4oVOuL0tfmF1aEaU"
  2036. },
  2037. {
  2038. "__type__": "cc.Node",
  2039. "_name": "BattleScene_Right",
  2040. "_objFlags": 0,
  2041. "__editorExtras__": {},
  2042. "_parent": {
  2043. "__id__": 5
  2044. },
  2045. "_children": [
  2046. {
  2047. "__id__": 52
  2048. },
  2049. {
  2050. "__id__": 57
  2051. },
  2052. {
  2053. "__id__": 77
  2054. },
  2055. {
  2056. "__id__": 85
  2057. }
  2058. ],
  2059. "_active": true,
  2060. "_components": [
  2061. {
  2062. "__id__": 93
  2063. },
  2064. {
  2065. "__id__": 94
  2066. },
  2067. {
  2068. "__id__": 95
  2069. },
  2070. {
  2071. "__id__": 96
  2072. }
  2073. ],
  2074. "_prefab": null,
  2075. "_lpos": {
  2076. "__type__": "cc.Vec3",
  2077. "x": 240,
  2078. "y": -110,
  2079. "z": 0
  2080. },
  2081. "_lrot": {
  2082. "__type__": "cc.Quat",
  2083. "x": 0,
  2084. "y": 0,
  2085. "z": 0,
  2086. "w": 1
  2087. },
  2088. "_lscale": {
  2089. "__type__": "cc.Vec3",
  2090. "x": 1,
  2091. "y": 1,
  2092. "z": 1
  2093. },
  2094. "_mobility": 0,
  2095. "_layer": 33554432,
  2096. "_euler": {
  2097. "__type__": "cc.Vec3",
  2098. "x": 0,
  2099. "y": 0,
  2100. "z": 0
  2101. },
  2102. "_id": "1cM1q6kzhNeZyO0cVxOOJS"
  2103. },
  2104. {
  2105. "__type__": "cc.Node",
  2106. "_name": "_btnArena",
  2107. "_objFlags": 0,
  2108. "__editorExtras__": {},
  2109. "_parent": {
  2110. "__id__": 51
  2111. },
  2112. "_children": [],
  2113. "_active": true,
  2114. "_components": [
  2115. {
  2116. "__id__": 53
  2117. },
  2118. {
  2119. "__id__": 54
  2120. },
  2121. {
  2122. "__id__": 55
  2123. },
  2124. {
  2125. "__id__": 56
  2126. }
  2127. ],
  2128. "_prefab": null,
  2129. "_lpos": {
  2130. "__type__": "cc.Vec3",
  2131. "x": 0,
  2132. "y": -119.99999999999999,
  2133. "z": 0
  2134. },
  2135. "_lrot": {
  2136. "__type__": "cc.Quat",
  2137. "x": 0,
  2138. "y": 0,
  2139. "z": 0,
  2140. "w": 1
  2141. },
  2142. "_lscale": {
  2143. "__type__": "cc.Vec3",
  2144. "x": 1,
  2145. "y": 1,
  2146. "z": 1
  2147. },
  2148. "_mobility": 0,
  2149. "_layer": 33554432,
  2150. "_euler": {
  2151. "__type__": "cc.Vec3",
  2152. "x": 0,
  2153. "y": 0,
  2154. "z": 0
  2155. },
  2156. "_id": "5ceSL/m1JE85ZzwK2O+xEF"
  2157. },
  2158. {
  2159. "__type__": "cc.UITransform",
  2160. "_name": "",
  2161. "_objFlags": 0,
  2162. "__editorExtras__": {},
  2163. "node": {
  2164. "__id__": 52
  2165. },
  2166. "_enabled": true,
  2167. "__prefab": null,
  2168. "_contentSize": {
  2169. "__type__": "cc.Size",
  2170. "width": 150,
  2171. "height": 50.4
  2172. },
  2173. "_anchorPoint": {
  2174. "__type__": "cc.Vec2",
  2175. "x": 0.5,
  2176. "y": 0.5
  2177. },
  2178. "_id": "f6dBhJETlB+5wTr8U7u1O0"
  2179. },
  2180. {
  2181. "__type__": "cc.Sprite",
  2182. "_name": "",
  2183. "_objFlags": 0,
  2184. "__editorExtras__": {},
  2185. "node": {
  2186. "__id__": 52
  2187. },
  2188. "_enabled": true,
  2189. "__prefab": null,
  2190. "_customMaterial": null,
  2191. "_srcBlendFactor": 2,
  2192. "_dstBlendFactor": 4,
  2193. "_color": {
  2194. "__type__": "cc.Color",
  2195. "r": 255,
  2196. "g": 255,
  2197. "b": 255,
  2198. "a": 255
  2199. },
  2200. "_spriteFrame": {
  2201. "__uuid__": "c00b279f-801e-4e6d-a02e-0a9604678070@b3156",
  2202. "__expectedType__": "cc.SpriteFrame"
  2203. },
  2204. "_type": 1,
  2205. "_fillType": 0,
  2206. "_sizeMode": 0,
  2207. "_fillCenter": {
  2208. "__type__": "cc.Vec2",
  2209. "x": 0,
  2210. "y": 0
  2211. },
  2212. "_fillStart": 0,
  2213. "_fillRange": 0,
  2214. "_isTrimmedMode": true,
  2215. "_useGrayscale": false,
  2216. "_atlas": null,
  2217. "_id": "71eHlRTMlGyZLD6W54FVbZ"
  2218. },
  2219. {
  2220. "__type__": "cc.Button",
  2221. "_name": "",
  2222. "_objFlags": 0,
  2223. "__editorExtras__": {},
  2224. "node": {
  2225. "__id__": 52
  2226. },
  2227. "_enabled": true,
  2228. "__prefab": null,
  2229. "clickEvents": [],
  2230. "_interactable": true,
  2231. "_transition": 3,
  2232. "_normalColor": {
  2233. "__type__": "cc.Color",
  2234. "r": 214,
  2235. "g": 214,
  2236. "b": 214,
  2237. "a": 255
  2238. },
  2239. "_hoverColor": {
  2240. "__type__": "cc.Color",
  2241. "r": 211,
  2242. "g": 211,
  2243. "b": 211,
  2244. "a": 255
  2245. },
  2246. "_pressedColor": {
  2247. "__type__": "cc.Color",
  2248. "r": 255,
  2249. "g": 255,
  2250. "b": 255,
  2251. "a": 255
  2252. },
  2253. "_disabledColor": {
  2254. "__type__": "cc.Color",
  2255. "r": 124,
  2256. "g": 124,
  2257. "b": 124,
  2258. "a": 255
  2259. },
  2260. "_normalSprite": null,
  2261. "_hoverSprite": null,
  2262. "_pressedSprite": null,
  2263. "_disabledSprite": null,
  2264. "_duration": 0.1,
  2265. "_zoomScale": 1.2,
  2266. "_target": {
  2267. "__id__": 52
  2268. },
  2269. "_id": "28L8rRbitHZI5R47m5zDo7"
  2270. },
  2271. {
  2272. "__type__": "cc.Widget",
  2273. "_name": "",
  2274. "_objFlags": 0,
  2275. "__editorExtras__": {},
  2276. "node": {
  2277. "__id__": 52
  2278. },
  2279. "_enabled": true,
  2280. "__prefab": null,
  2281. "_alignFlags": 44,
  2282. "_target": null,
  2283. "_left": 125,
  2284. "_right": 125,
  2285. "_top": 0,
  2286. "_bottom": 54.8,
  2287. "_horizontalCenter": 0,
  2288. "_verticalCenter": 0,
  2289. "_isAbsLeft": true,
  2290. "_isAbsRight": true,
  2291. "_isAbsTop": true,
  2292. "_isAbsBottom": true,
  2293. "_isAbsHorizontalCenter": true,
  2294. "_isAbsVerticalCenter": true,
  2295. "_originalWidth": 100,
  2296. "_originalHeight": 0,
  2297. "_alignMode": 2,
  2298. "_lockFlags": 0,
  2299. "_id": "1aQuc52fxKg4nD0V+PHga8"
  2300. },
  2301. {
  2302. "__type__": "cc.Node",
  2303. "_name": "ProgressBar",
  2304. "_objFlags": 0,
  2305. "__editorExtras__": {},
  2306. "_parent": {
  2307. "__id__": 51
  2308. },
  2309. "_children": [
  2310. {
  2311. "__id__": 58
  2312. },
  2313. {
  2314. "__id__": 61
  2315. }
  2316. ],
  2317. "_active": true,
  2318. "_components": [
  2319. {
  2320. "__id__": 73
  2321. },
  2322. {
  2323. "__id__": 74
  2324. },
  2325. {
  2326. "__id__": 75
  2327. },
  2328. {
  2329. "__id__": 76
  2330. }
  2331. ],
  2332. "_prefab": null,
  2333. "_lpos": {
  2334. "__type__": "cc.Vec3",
  2335. "x": -45,
  2336. "y": 222.5,
  2337. "z": 0
  2338. },
  2339. "_lrot": {
  2340. "__type__": "cc.Quat",
  2341. "x": 0,
  2342. "y": 0,
  2343. "z": 0,
  2344. "w": 1
  2345. },
  2346. "_lscale": {
  2347. "__type__": "cc.Vec3",
  2348. "x": 1,
  2349. "y": 1,
  2350. "z": 1
  2351. },
  2352. "_mobility": 0,
  2353. "_layer": 33554432,
  2354. "_euler": {
  2355. "__type__": "cc.Vec3",
  2356. "x": 0,
  2357. "y": 0,
  2358. "z": 0
  2359. },
  2360. "_id": "8fcONC2VtJ/YJEqmX1Ptah"
  2361. },
  2362. {
  2363. "__type__": "cc.Node",
  2364. "_name": "Bar",
  2365. "_objFlags": 0,
  2366. "__editorExtras__": {},
  2367. "_parent": {
  2368. "__id__": 57
  2369. },
  2370. "_children": [],
  2371. "_active": true,
  2372. "_components": [
  2373. {
  2374. "__id__": 59
  2375. },
  2376. {
  2377. "__id__": 60
  2378. }
  2379. ],
  2380. "_prefab": null,
  2381. "_lpos": {
  2382. "__type__": "cc.Vec3",
  2383. "x": -150,
  2384. "y": 0,
  2385. "z": 0
  2386. },
  2387. "_lrot": {
  2388. "__type__": "cc.Quat",
  2389. "x": 0,
  2390. "y": 0,
  2391. "z": 0,
  2392. "w": 1
  2393. },
  2394. "_lscale": {
  2395. "__type__": "cc.Vec3",
  2396. "x": 1,
  2397. "y": 1,
  2398. "z": 1
  2399. },
  2400. "_mobility": 0,
  2401. "_layer": 33554432,
  2402. "_euler": {
  2403. "__type__": "cc.Vec3",
  2404. "x": 0,
  2405. "y": 0,
  2406. "z": 0
  2407. },
  2408. "_id": "5dF0WxRq9AHp221hu4LB8j"
  2409. },
  2410. {
  2411. "__type__": "cc.UITransform",
  2412. "_name": "",
  2413. "_objFlags": 0,
  2414. "__editorExtras__": {},
  2415. "node": {
  2416. "__id__": 58
  2417. },
  2418. "_enabled": true,
  2419. "__prefab": null,
  2420. "_contentSize": {
  2421. "__type__": "cc.Size",
  2422. "width": 210,
  2423. "height": 15
  2424. },
  2425. "_anchorPoint": {
  2426. "__type__": "cc.Vec2",
  2427. "x": 0,
  2428. "y": 0.5
  2429. },
  2430. "_id": "2bZmbTX7hB4bWeGcS5iX39"
  2431. },
  2432. {
  2433. "__type__": "cc.Sprite",
  2434. "_name": "",
  2435. "_objFlags": 0,
  2436. "__editorExtras__": {},
  2437. "node": {
  2438. "__id__": 58
  2439. },
  2440. "_enabled": true,
  2441. "__prefab": null,
  2442. "_customMaterial": null,
  2443. "_srcBlendFactor": 2,
  2444. "_dstBlendFactor": 4,
  2445. "_color": {
  2446. "__type__": "cc.Color",
  2447. "r": 111,
  2448. "g": 241,
  2449. "b": 24,
  2450. "a": 255
  2451. },
  2452. "_spriteFrame": {
  2453. "__uuid__": "24a704da-2867-446d-8d1a-5e920c75e09d@f9941",
  2454. "__expectedType__": "cc.SpriteFrame"
  2455. },
  2456. "_type": 1,
  2457. "_fillType": 0,
  2458. "_sizeMode": 0,
  2459. "_fillCenter": {
  2460. "__type__": "cc.Vec2",
  2461. "x": 0,
  2462. "y": 0
  2463. },
  2464. "_fillStart": 0,
  2465. "_fillRange": 0,
  2466. "_isTrimmedMode": true,
  2467. "_useGrayscale": false,
  2468. "_atlas": null,
  2469. "_id": "d4uJLTbAVFALkp8n6kQsbV"
  2470. },
  2471. {
  2472. "__type__": "cc.Node",
  2473. "_name": "Grade",
  2474. "_objFlags": 0,
  2475. "__editorExtras__": {},
  2476. "_parent": {
  2477. "__id__": 57
  2478. },
  2479. "_children": [
  2480. {
  2481. "__id__": 62
  2482. },
  2483. {
  2484. "__id__": 66
  2485. }
  2486. ],
  2487. "_active": true,
  2488. "_components": [
  2489. {
  2490. "__id__": 70
  2491. },
  2492. {
  2493. "__id__": 71
  2494. },
  2495. {
  2496. "__id__": 72
  2497. }
  2498. ],
  2499. "_prefab": null,
  2500. "_lpos": {
  2501. "__type__": "cc.Vec3",
  2502. "x": -105,
  2503. "y": 32.3,
  2504. "z": 0
  2505. },
  2506. "_lrot": {
  2507. "__type__": "cc.Quat",
  2508. "x": 0,
  2509. "y": 0,
  2510. "z": 0,
  2511. "w": 1
  2512. },
  2513. "_lscale": {
  2514. "__type__": "cc.Vec3",
  2515. "x": 1,
  2516. "y": 1,
  2517. "z": 1
  2518. },
  2519. "_mobility": 0,
  2520. "_layer": 33554432,
  2521. "_euler": {
  2522. "__type__": "cc.Vec3",
  2523. "x": 0,
  2524. "y": 0,
  2525. "z": 0
  2526. },
  2527. "_id": "abCURcj+RHVJwAJfbNcbmV"
  2528. },
  2529. {
  2530. "__type__": "cc.Node",
  2531. "_name": "_grade",
  2532. "_objFlags": 0,
  2533. "__editorExtras__": {},
  2534. "_parent": {
  2535. "__id__": 61
  2536. },
  2537. "_children": [],
  2538. "_active": true,
  2539. "_components": [
  2540. {
  2541. "__id__": 63
  2542. },
  2543. {
  2544. "__id__": 64
  2545. },
  2546. {
  2547. "__id__": 65
  2548. }
  2549. ],
  2550. "_prefab": null,
  2551. "_lpos": {
  2552. "__type__": "cc.Vec3",
  2553. "x": 63.34228515625,
  2554. "y": 0,
  2555. "z": 0
  2556. },
  2557. "_lrot": {
  2558. "__type__": "cc.Quat",
  2559. "x": 0,
  2560. "y": 0,
  2561. "z": 0,
  2562. "w": 1
  2563. },
  2564. "_lscale": {
  2565. "__type__": "cc.Vec3",
  2566. "x": 1,
  2567. "y": 1,
  2568. "z": 1
  2569. },
  2570. "_mobility": 0,
  2571. "_layer": 33554432,
  2572. "_euler": {
  2573. "__type__": "cc.Vec3",
  2574. "x": 0,
  2575. "y": 0,
  2576. "z": 0
  2577. },
  2578. "_id": "81ScVg4vhOVZZ1VcBvH4Nn"
  2579. },
  2580. {
  2581. "__type__": "cc.UITransform",
  2582. "_name": "",
  2583. "_objFlags": 0,
  2584. "__editorExtras__": {},
  2585. "node": {
  2586. "__id__": 62
  2587. },
  2588. "_enabled": true,
  2589. "__prefab": null,
  2590. "_contentSize": {
  2591. "__type__": "cc.Size",
  2592. "width": 16.6845703125,
  2593. "height": 50.4
  2594. },
  2595. "_anchorPoint": {
  2596. "__type__": "cc.Vec2",
  2597. "x": 0.5,
  2598. "y": 0.5
  2599. },
  2600. "_id": "25k9HEfQdOJZB/SyG69WMb"
  2601. },
  2602. {
  2603. "__type__": "cc.Label",
  2604. "_name": "",
  2605. "_objFlags": 0,
  2606. "__editorExtras__": {},
  2607. "node": {
  2608. "__id__": 62
  2609. },
  2610. "_enabled": true,
  2611. "__prefab": null,
  2612. "_customMaterial": null,
  2613. "_srcBlendFactor": 2,
  2614. "_dstBlendFactor": 4,
  2615. "_color": {
  2616. "__type__": "cc.Color",
  2617. "r": 255,
  2618. "g": 255,
  2619. "b": 255,
  2620. "a": 255
  2621. },
  2622. "_string": "1",
  2623. "_horizontalAlign": 1,
  2624. "_verticalAlign": 1,
  2625. "_actualFontSize": 30,
  2626. "_fontSize": 30,
  2627. "_fontFamily": "Arial",
  2628. "_lineHeight": 40,
  2629. "_overflow": 0,
  2630. "_enableWrapText": true,
  2631. "_font": null,
  2632. "_isSystemFontUsed": true,
  2633. "_spacingX": 0,
  2634. "_isItalic": false,
  2635. "_isBold": false,
  2636. "_isUnderline": false,
  2637. "_underlineHeight": 2,
  2638. "_cacheMode": 0,
  2639. "_enableOutline": false,
  2640. "_outlineColor": {
  2641. "__type__": "cc.Color",
  2642. "r": 0,
  2643. "g": 0,
  2644. "b": 0,
  2645. "a": 255
  2646. },
  2647. "_outlineWidth": 2,
  2648. "_enableShadow": false,
  2649. "_shadowColor": {
  2650. "__type__": "cc.Color",
  2651. "r": 0,
  2652. "g": 0,
  2653. "b": 0,
  2654. "a": 255
  2655. },
  2656. "_shadowOffset": {
  2657. "__type__": "cc.Vec2",
  2658. "x": 2,
  2659. "y": 2
  2660. },
  2661. "_shadowBlur": 2,
  2662. "_id": "8dLoG0mj5LhacU1mIzKxb6"
  2663. },
  2664. {
  2665. "__type__": "cc.Widget",
  2666. "_name": "",
  2667. "_objFlags": 0,
  2668. "__editorExtras__": {},
  2669. "node": {
  2670. "__id__": 62
  2671. },
  2672. "_enabled": true,
  2673. "__prefab": null,
  2674. "_alignFlags": 13,
  2675. "_target": {
  2676. "__id__": 61
  2677. },
  2678. "_left": 100,
  2679. "_right": 0,
  2680. "_top": 0,
  2681. "_bottom": 0,
  2682. "_horizontalCenter": 0,
  2683. "_verticalCenter": 0,
  2684. "_isAbsLeft": true,
  2685. "_isAbsRight": true,
  2686. "_isAbsTop": true,
  2687. "_isAbsBottom": true,
  2688. "_isAbsHorizontalCenter": true,
  2689. "_isAbsVerticalCenter": true,
  2690. "_originalWidth": 0,
  2691. "_originalHeight": 50.4,
  2692. "_alignMode": 2,
  2693. "_lockFlags": 0,
  2694. "_id": "31WMGA30RADJ1xHFjfCCsU"
  2695. },
  2696. {
  2697. "__type__": "cc.Node",
  2698. "_name": "Exp",
  2699. "_objFlags": 0,
  2700. "__editorExtras__": {},
  2701. "_parent": {
  2702. "__id__": 61
  2703. },
  2704. "_children": [],
  2705. "_active": true,
  2706. "_components": [
  2707. {
  2708. "__id__": 67
  2709. },
  2710. {
  2711. "__id__": 68
  2712. },
  2713. {
  2714. "__id__": 69
  2715. }
  2716. ],
  2717. "_prefab": null,
  2718. "_lpos": {
  2719. "__type__": "cc.Vec3",
  2720. "x": 235.0244140625,
  2721. "y": 0,
  2722. "z": 0
  2723. },
  2724. "_lrot": {
  2725. "__type__": "cc.Quat",
  2726. "x": 0,
  2727. "y": 0,
  2728. "z": 0,
  2729. "w": 1
  2730. },
  2731. "_lscale": {
  2732. "__type__": "cc.Vec3",
  2733. "x": 1,
  2734. "y": 1,
  2735. "z": 1
  2736. },
  2737. "_mobility": 0,
  2738. "_layer": 33554432,
  2739. "_euler": {
  2740. "__type__": "cc.Vec3",
  2741. "x": 0,
  2742. "y": 0,
  2743. "z": 0
  2744. },
  2745. "_id": "5eTLt2fLhJPq+KGgXWKYOj"
  2746. },
  2747. {
  2748. "__type__": "cc.UITransform",
  2749. "_name": "",
  2750. "_objFlags": 0,
  2751. "__editorExtras__": {},
  2752. "node": {
  2753. "__id__": 66
  2754. },
  2755. "_enabled": true,
  2756. "__prefab": null,
  2757. "_contentSize": {
  2758. "__type__": "cc.Size",
  2759. "width": 50.048828125,
  2760. "height": 50.4
  2761. },
  2762. "_anchorPoint": {
  2763. "__type__": "cc.Vec2",
  2764. "x": 0.5,
  2765. "y": 0.5
  2766. },
  2767. "_id": "588biSztNIuJhMuBrHXC8c"
  2768. },
  2769. {
  2770. "__type__": "cc.Label",
  2771. "_name": "",
  2772. "_objFlags": 0,
  2773. "__editorExtras__": {},
  2774. "node": {
  2775. "__id__": 66
  2776. },
  2777. "_enabled": true,
  2778. "__prefab": null,
  2779. "_customMaterial": null,
  2780. "_srcBlendFactor": 2,
  2781. "_dstBlendFactor": 4,
  2782. "_color": {
  2783. "__type__": "cc.Color",
  2784. "r": 119,
  2785. "g": 248,
  2786. "b": 0,
  2787. "a": 255
  2788. },
  2789. "_string": "0/100",
  2790. "_horizontalAlign": 1,
  2791. "_verticalAlign": 1,
  2792. "_actualFontSize": 20,
  2793. "_fontSize": 20,
  2794. "_fontFamily": "Arial",
  2795. "_lineHeight": 40,
  2796. "_overflow": 3,
  2797. "_enableWrapText": true,
  2798. "_font": null,
  2799. "_isSystemFontUsed": true,
  2800. "_spacingX": 0,
  2801. "_isItalic": false,
  2802. "_isBold": false,
  2803. "_isUnderline": false,
  2804. "_underlineHeight": 2,
  2805. "_cacheMode": 0,
  2806. "_enableOutline": false,
  2807. "_outlineColor": {
  2808. "__type__": "cc.Color",
  2809. "r": 0,
  2810. "g": 0,
  2811. "b": 0,
  2812. "a": 255
  2813. },
  2814. "_outlineWidth": 2,
  2815. "_enableShadow": false,
  2816. "_shadowColor": {
  2817. "__type__": "cc.Color",
  2818. "r": 0,
  2819. "g": 0,
  2820. "b": 0,
  2821. "a": 255
  2822. },
  2823. "_shadowOffset": {
  2824. "__type__": "cc.Vec2",
  2825. "x": 2,
  2826. "y": 2
  2827. },
  2828. "_shadowBlur": 2,
  2829. "_id": "18bOsGybBJO6sCupeUos0H"
  2830. },
  2831. {
  2832. "__type__": "cc.Widget",
  2833. "_name": "",
  2834. "_objFlags": 0,
  2835. "__editorExtras__": {},
  2836. "node": {
  2837. "__id__": 66
  2838. },
  2839. "_enabled": true,
  2840. "__prefab": null,
  2841. "_alignFlags": 13,
  2842. "_target": null,
  2843. "_left": 255,
  2844. "_right": 0,
  2845. "_top": 0,
  2846. "_bottom": 0,
  2847. "_horizontalCenter": 0,
  2848. "_verticalCenter": 0,
  2849. "_isAbsLeft": true,
  2850. "_isAbsRight": true,
  2851. "_isAbsTop": true,
  2852. "_isAbsBottom": true,
  2853. "_isAbsHorizontalCenter": true,
  2854. "_isAbsVerticalCenter": true,
  2855. "_originalWidth": 0,
  2856. "_originalHeight": 50.4,
  2857. "_alignMode": 2,
  2858. "_lockFlags": 0,
  2859. "_id": "a1spkGmKRMrbt/SysK3eHP"
  2860. },
  2861. {
  2862. "__type__": "cc.UITransform",
  2863. "_name": "",
  2864. "_objFlags": 0,
  2865. "__editorExtras__": {},
  2866. "node": {
  2867. "__id__": 61
  2868. },
  2869. "_enabled": true,
  2870. "__prefab": null,
  2871. "_contentSize": {
  2872. "__type__": "cc.Size",
  2873. "width": 90,
  2874. "height": 50.4
  2875. },
  2876. "_anchorPoint": {
  2877. "__type__": "cc.Vec2",
  2878. "x": 0.5,
  2879. "y": 0.5
  2880. },
  2881. "_id": "f04eA2tXZNFakN1jIp2Mt7"
  2882. },
  2883. {
  2884. "__type__": "cc.Label",
  2885. "_name": "",
  2886. "_objFlags": 0,
  2887. "__editorExtras__": {},
  2888. "node": {
  2889. "__id__": 61
  2890. },
  2891. "_enabled": true,
  2892. "__prefab": null,
  2893. "_customMaterial": null,
  2894. "_srcBlendFactor": 2,
  2895. "_dstBlendFactor": 4,
  2896. "_color": {
  2897. "__type__": "cc.Color",
  2898. "r": 255,
  2899. "g": 255,
  2900. "b": 255,
  2901. "a": 255
  2902. },
  2903. "_string": "等级:",
  2904. "_horizontalAlign": 1,
  2905. "_verticalAlign": 1,
  2906. "_actualFontSize": 30,
  2907. "_fontSize": 30,
  2908. "_fontFamily": "Arial",
  2909. "_lineHeight": 40,
  2910. "_overflow": 0,
  2911. "_enableWrapText": true,
  2912. "_font": null,
  2913. "_isSystemFontUsed": true,
  2914. "_spacingX": 0,
  2915. "_isItalic": false,
  2916. "_isBold": false,
  2917. "_isUnderline": false,
  2918. "_underlineHeight": 2,
  2919. "_cacheMode": 0,
  2920. "_enableOutline": false,
  2921. "_outlineColor": {
  2922. "__type__": "cc.Color",
  2923. "r": 255,
  2924. "g": 255,
  2925. "b": 255,
  2926. "a": 255
  2927. },
  2928. "_outlineWidth": 0.1,
  2929. "_enableShadow": false,
  2930. "_shadowColor": {
  2931. "__type__": "cc.Color",
  2932. "r": 0,
  2933. "g": 0,
  2934. "b": 0,
  2935. "a": 255
  2936. },
  2937. "_shadowOffset": {
  2938. "__type__": "cc.Vec2",
  2939. "x": 2,
  2940. "y": 2
  2941. },
  2942. "_shadowBlur": 2,
  2943. "_id": "e8iIKQ7SlCxYvms4vPzrbY"
  2944. },
  2945. {
  2946. "__type__": "cc.Widget",
  2947. "_name": "",
  2948. "_objFlags": 0,
  2949. "__editorExtras__": {},
  2950. "node": {
  2951. "__id__": 61
  2952. },
  2953. "_enabled": true,
  2954. "__prefab": null,
  2955. "_alignFlags": 9,
  2956. "_target": {
  2957. "__id__": 57
  2958. },
  2959. "_left": 0,
  2960. "_right": 0,
  2961. "_top": -50,
  2962. "_bottom": 0,
  2963. "_horizontalCenter": 0,
  2964. "_verticalCenter": 0,
  2965. "_isAbsLeft": true,
  2966. "_isAbsRight": true,
  2967. "_isAbsTop": true,
  2968. "_isAbsBottom": true,
  2969. "_isAbsHorizontalCenter": true,
  2970. "_isAbsVerticalCenter": true,
  2971. "_originalWidth": 0,
  2972. "_originalHeight": 0,
  2973. "_alignMode": 2,
  2974. "_lockFlags": 0,
  2975. "_id": "35BrbhCCtCFbNv/KFe8oUJ"
  2976. },
  2977. {
  2978. "__type__": "cc.UITransform",
  2979. "_name": "",
  2980. "_objFlags": 0,
  2981. "__editorExtras__": {},
  2982. "node": {
  2983. "__id__": 57
  2984. },
  2985. "_enabled": true,
  2986. "__prefab": null,
  2987. "_contentSize": {
  2988. "__type__": "cc.Size",
  2989. "width": 300,
  2990. "height": 15
  2991. },
  2992. "_anchorPoint": {
  2993. "__type__": "cc.Vec2",
  2994. "x": 0.5,
  2995. "y": 0.5
  2996. },
  2997. "_id": "22rKhfiHJAjrR4zAByDaTn"
  2998. },
  2999. {
  3000. "__type__": "cc.Sprite",
  3001. "_name": "",
  3002. "_objFlags": 0,
  3003. "__editorExtras__": {},
  3004. "node": {
  3005. "__id__": 57
  3006. },
  3007. "_enabled": true,
  3008. "__prefab": null,
  3009. "_customMaterial": null,
  3010. "_srcBlendFactor": 2,
  3011. "_dstBlendFactor": 4,
  3012. "_color": {
  3013. "__type__": "cc.Color",
  3014. "r": 62,
  3015. "g": 207,
  3016. "b": 14,
  3017. "a": 255
  3018. },
  3019. "_spriteFrame": {
  3020. "__uuid__": "9fd900dd-221b-4f89-8f2c-fba34243c835@f9941",
  3021. "__expectedType__": "cc.SpriteFrame"
  3022. },
  3023. "_type": 1,
  3024. "_fillType": 0,
  3025. "_sizeMode": 0,
  3026. "_fillCenter": {
  3027. "__type__": "cc.Vec2",
  3028. "x": 0,
  3029. "y": 0
  3030. },
  3031. "_fillStart": 0,
  3032. "_fillRange": 0,
  3033. "_isTrimmedMode": true,
  3034. "_useGrayscale": false,
  3035. "_atlas": null,
  3036. "_id": "a3ZH0mdl5Kpr0RzHmFRv00"
  3037. },
  3038. {
  3039. "__type__": "cc.ProgressBar",
  3040. "_name": "",
  3041. "_objFlags": 0,
  3042. "__editorExtras__": {},
  3043. "node": {
  3044. "__id__": 57
  3045. },
  3046. "_enabled": true,
  3047. "__prefab": null,
  3048. "_barSprite": {
  3049. "__id__": 60
  3050. },
  3051. "_mode": 0,
  3052. "_totalLength": 300,
  3053. "_progress": 0.7,
  3054. "_reverse": false,
  3055. "_id": "59Bip/gnFJZZFeMKxk0y99"
  3056. },
  3057. {
  3058. "__type__": "cc.Widget",
  3059. "_name": "",
  3060. "_objFlags": 0,
  3061. "__editorExtras__": {},
  3062. "node": {
  3063. "__id__": 57
  3064. },
  3065. "_enabled": true,
  3066. "__prefab": null,
  3067. "_alignFlags": 9,
  3068. "_target": {
  3069. "__id__": 51
  3070. },
  3071. "_left": 5,
  3072. "_right": 83.19300000000001,
  3073. "_top": -30,
  3074. "_bottom": 0,
  3075. "_horizontalCenter": 0,
  3076. "_verticalCenter": 0,
  3077. "_isAbsLeft": true,
  3078. "_isAbsRight": true,
  3079. "_isAbsTop": true,
  3080. "_isAbsBottom": true,
  3081. "_isAbsHorizontalCenter": true,
  3082. "_isAbsVerticalCenter": true,
  3083. "_originalWidth": 300,
  3084. "_originalHeight": 0,
  3085. "_alignMode": 2,
  3086. "_lockFlags": 0,
  3087. "_id": "fbDWOr7OJN7ocB/GNUq9vG"
  3088. },
  3089. {
  3090. "__type__": "cc.Node",
  3091. "_name": "Win",
  3092. "_objFlags": 0,
  3093. "__editorExtras__": {},
  3094. "_parent": {
  3095. "__id__": 51
  3096. },
  3097. "_children": [
  3098. {
  3099. "__id__": 78
  3100. }
  3101. ],
  3102. "_active": true,
  3103. "_components": [
  3104. {
  3105. "__id__": 82
  3106. },
  3107. {
  3108. "__id__": 83
  3109. },
  3110. {
  3111. "__id__": 84
  3112. }
  3113. ],
  3114. "_prefab": null,
  3115. "_lpos": {
  3116. "__type__": "cc.Vec3",
  3117. "x": -95,
  3118. "y": 35.624,
  3119. "z": 0
  3120. },
  3121. "_lrot": {
  3122. "__type__": "cc.Quat",
  3123. "x": 0,
  3124. "y": 0,
  3125. "z": 0,
  3126. "w": 1
  3127. },
  3128. "_lscale": {
  3129. "__type__": "cc.Vec3",
  3130. "x": 1,
  3131. "y": 1,
  3132. "z": 1
  3133. },
  3134. "_mobility": 0,
  3135. "_layer": 33554432,
  3136. "_euler": {
  3137. "__type__": "cc.Vec3",
  3138. "x": 0,
  3139. "y": 0,
  3140. "z": 0
  3141. },
  3142. "_id": "cd9aTfx/VFe5he/SZ2YquB"
  3143. },
  3144. {
  3145. "__type__": "cc.Node",
  3146. "_name": "_win",
  3147. "_objFlags": 0,
  3148. "__editorExtras__": {},
  3149. "_parent": {
  3150. "__id__": 77
  3151. },
  3152. "_children": [],
  3153. "_active": true,
  3154. "_components": [
  3155. {
  3156. "__id__": 79
  3157. },
  3158. {
  3159. "__id__": 80
  3160. },
  3161. {
  3162. "__id__": 81
  3163. }
  3164. ],
  3165. "_prefab": null,
  3166. "_lpos": {
  3167. "__type__": "cc.Vec3",
  3168. "x": 60,
  3169. "y": 0,
  3170. "z": 0
  3171. },
  3172. "_lrot": {
  3173. "__type__": "cc.Quat",
  3174. "x": 0,
  3175. "y": 0,
  3176. "z": 0,
  3177. "w": 1
  3178. },
  3179. "_lscale": {
  3180. "__type__": "cc.Vec3",
  3181. "x": 1,
  3182. "y": 1,
  3183. "z": 1
  3184. },
  3185. "_mobility": 0,
  3186. "_layer": 33554432,
  3187. "_euler": {
  3188. "__type__": "cc.Vec3",
  3189. "x": 0,
  3190. "y": 0,
  3191. "z": 0
  3192. },
  3193. "_id": "469APWXP5JCYArM5oSo4Jf"
  3194. },
  3195. {
  3196. "__type__": "cc.UITransform",
  3197. "_name": "",
  3198. "_objFlags": 0,
  3199. "__editorExtras__": {},
  3200. "node": {
  3201. "__id__": 78
  3202. },
  3203. "_enabled": true,
  3204. "__prefab": null,
  3205. "_contentSize": {
  3206. "__type__": "cc.Size",
  3207. "width": 22.24609375,
  3208. "height": 50.4
  3209. },
  3210. "_anchorPoint": {
  3211. "__type__": "cc.Vec2",
  3212. "x": 0,
  3213. "y": 0.5
  3214. },
  3215. "_id": "49CGdrBTVGIbOW2sV6hU8b"
  3216. },
  3217. {
  3218. "__type__": "cc.Widget",
  3219. "_name": "",
  3220. "_objFlags": 0,
  3221. "__editorExtras__": {},
  3222. "node": {
  3223. "__id__": 78
  3224. },
  3225. "_enabled": true,
  3226. "__prefab": null,
  3227. "_alignFlags": 13,
  3228. "_target": {
  3229. "__id__": 77
  3230. },
  3231. "_left": 120,
  3232. "_right": 45,
  3233. "_top": 0,
  3234. "_bottom": 0,
  3235. "_horizontalCenter": 0,
  3236. "_verticalCenter": 0,
  3237. "_isAbsLeft": true,
  3238. "_isAbsRight": true,
  3239. "_isAbsTop": true,
  3240. "_isAbsBottom": true,
  3241. "_isAbsHorizontalCenter": true,
  3242. "_isAbsVerticalCenter": true,
  3243. "_originalWidth": 30,
  3244. "_originalHeight": 50.4,
  3245. "_alignMode": 2,
  3246. "_lockFlags": 0,
  3247. "_id": "a1NtwOsmxGJK02ZbL/RPft"
  3248. },
  3249. {
  3250. "__type__": "cc.Label",
  3251. "_name": "",
  3252. "_objFlags": 0,
  3253. "__editorExtras__": {},
  3254. "node": {
  3255. "__id__": 78
  3256. },
  3257. "_enabled": true,
  3258. "__prefab": null,
  3259. "_customMaterial": null,
  3260. "_srcBlendFactor": 2,
  3261. "_dstBlendFactor": 4,
  3262. "_color": {
  3263. "__type__": "cc.Color",
  3264. "r": 255,
  3265. "g": 0,
  3266. "b": 174,
  3267. "a": 255
  3268. },
  3269. "_string": "0",
  3270. "_horizontalAlign": 1,
  3271. "_verticalAlign": 1,
  3272. "_actualFontSize": 40,
  3273. "_fontSize": 40,
  3274. "_fontFamily": "Arial",
  3275. "_lineHeight": 40,
  3276. "_overflow": 0,
  3277. "_enableWrapText": true,
  3278. "_font": null,
  3279. "_isSystemFontUsed": true,
  3280. "_spacingX": 0,
  3281. "_isItalic": false,
  3282. "_isBold": false,
  3283. "_isUnderline": false,
  3284. "_underlineHeight": 2,
  3285. "_cacheMode": 0,
  3286. "_enableOutline": false,
  3287. "_outlineColor": {
  3288. "__type__": "cc.Color",
  3289. "r": 0,
  3290. "g": 0,
  3291. "b": 0,
  3292. "a": 255
  3293. },
  3294. "_outlineWidth": 2,
  3295. "_enableShadow": false,
  3296. "_shadowColor": {
  3297. "__type__": "cc.Color",
  3298. "r": 0,
  3299. "g": 0,
  3300. "b": 0,
  3301. "a": 255
  3302. },
  3303. "_shadowOffset": {
  3304. "__type__": "cc.Vec2",
  3305. "x": 2,
  3306. "y": 2
  3307. },
  3308. "_shadowBlur": 2,
  3309. "_id": "ecxhjHAKlJWJbAFf8iKpf7"
  3310. },
  3311. {
  3312. "__type__": "cc.UITransform",
  3313. "_name": "",
  3314. "_objFlags": 0,
  3315. "__editorExtras__": {},
  3316. "node": {
  3317. "__id__": 77
  3318. },
  3319. "_enabled": true,
  3320. "__prefab": null,
  3321. "_contentSize": {
  3322. "__type__": "cc.Size",
  3323. "width": 120,
  3324. "height": 50.4
  3325. },
  3326. "_anchorPoint": {
  3327. "__type__": "cc.Vec2",
  3328. "x": 0.5,
  3329. "y": 0.5
  3330. },
  3331. "_id": "4d1q1RpjBKL7ICD1JLtj0Q"
  3332. },
  3333. {
  3334. "__type__": "cc.Label",
  3335. "_name": "",
  3336. "_objFlags": 0,
  3337. "__editorExtras__": {},
  3338. "node": {
  3339. "__id__": 77
  3340. },
  3341. "_enabled": true,
  3342. "__prefab": null,
  3343. "_customMaterial": null,
  3344. "_srcBlendFactor": 2,
  3345. "_dstBlendFactor": 4,
  3346. "_color": {
  3347. "__type__": "cc.Color",
  3348. "r": 70,
  3349. "g": 160,
  3350. "b": 243,
  3351. "a": 255
  3352. },
  3353. "_string": "获胜:",
  3354. "_horizontalAlign": 1,
  3355. "_verticalAlign": 1,
  3356. "_actualFontSize": 40,
  3357. "_fontSize": 40,
  3358. "_fontFamily": "Arial",
  3359. "_lineHeight": 40,
  3360. "_overflow": 0,
  3361. "_enableWrapText": true,
  3362. "_font": null,
  3363. "_isSystemFontUsed": true,
  3364. "_spacingX": 0,
  3365. "_isItalic": false,
  3366. "_isBold": false,
  3367. "_isUnderline": false,
  3368. "_underlineHeight": 2,
  3369. "_cacheMode": 0,
  3370. "_enableOutline": false,
  3371. "_outlineColor": {
  3372. "__type__": "cc.Color",
  3373. "r": 0,
  3374. "g": 0,
  3375. "b": 0,
  3376. "a": 255
  3377. },
  3378. "_outlineWidth": 2,
  3379. "_enableShadow": false,
  3380. "_shadowColor": {
  3381. "__type__": "cc.Color",
  3382. "r": 0,
  3383. "g": 0,
  3384. "b": 0,
  3385. "a": 255
  3386. },
  3387. "_shadowOffset": {
  3388. "__type__": "cc.Vec2",
  3389. "x": 2,
  3390. "y": 2
  3391. },
  3392. "_shadowBlur": 2,
  3393. "_id": "86sa459BpHWYD8GepmpDCb"
  3394. },
  3395. {
  3396. "__type__": "cc.Widget",
  3397. "_name": "",
  3398. "_objFlags": 0,
  3399. "__editorExtras__": {},
  3400. "node": {
  3401. "__id__": 77
  3402. },
  3403. "_enabled": true,
  3404. "__prefab": null,
  3405. "_alignFlags": 8,
  3406. "_target": null,
  3407. "_left": 45,
  3408. "_right": 0,
  3409. "_top": 0,
  3410. "_bottom": 0,
  3411. "_horizontalCenter": 0,
  3412. "_verticalCenter": 0,
  3413. "_isAbsLeft": true,
  3414. "_isAbsRight": true,
  3415. "_isAbsTop": true,
  3416. "_isAbsBottom": true,
  3417. "_isAbsHorizontalCenter": true,
  3418. "_isAbsVerticalCenter": true,
  3419. "_originalWidth": 0,
  3420. "_originalHeight": 0,
  3421. "_alignMode": 2,
  3422. "_lockFlags": 0,
  3423. "_id": "28+rXOkHpOn7wBsvESaCte"
  3424. },
  3425. {
  3426. "__type__": "cc.Node",
  3427. "_name": "Fail",
  3428. "_objFlags": 0,
  3429. "__editorExtras__": {},
  3430. "_parent": {
  3431. "__id__": 51
  3432. },
  3433. "_children": [
  3434. {
  3435. "__id__": 86
  3436. }
  3437. ],
  3438. "_active": true,
  3439. "_components": [
  3440. {
  3441. "__id__": 90
  3442. },
  3443. {
  3444. "__id__": 91
  3445. },
  3446. {
  3447. "__id__": 92
  3448. }
  3449. ],
  3450. "_prefab": null,
  3451. "_lpos": {
  3452. "__type__": "cc.Vec3",
  3453. "x": -95,
  3454. "y": -25.2,
  3455. "z": 0
  3456. },
  3457. "_lrot": {
  3458. "__type__": "cc.Quat",
  3459. "x": 0,
  3460. "y": 0,
  3461. "z": 0,
  3462. "w": 1
  3463. },
  3464. "_lscale": {
  3465. "__type__": "cc.Vec3",
  3466. "x": 1,
  3467. "y": 1,
  3468. "z": 1
  3469. },
  3470. "_mobility": 0,
  3471. "_layer": 33554432,
  3472. "_euler": {
  3473. "__type__": "cc.Vec3",
  3474. "x": 0,
  3475. "y": 0,
  3476. "z": 0
  3477. },
  3478. "_id": "0d37J7uexERLlldaRhX2tj"
  3479. },
  3480. {
  3481. "__type__": "cc.Node",
  3482. "_name": "_fail",
  3483. "_objFlags": 0,
  3484. "__editorExtras__": {},
  3485. "_parent": {
  3486. "__id__": 85
  3487. },
  3488. "_children": [],
  3489. "_active": true,
  3490. "_components": [
  3491. {
  3492. "__id__": 87
  3493. },
  3494. {
  3495. "__id__": 88
  3496. },
  3497. {
  3498. "__id__": 89
  3499. }
  3500. ],
  3501. "_prefab": null,
  3502. "_lpos": {
  3503. "__type__": "cc.Vec3",
  3504. "x": 60,
  3505. "y": 0,
  3506. "z": 0
  3507. },
  3508. "_lrot": {
  3509. "__type__": "cc.Quat",
  3510. "x": 0,
  3511. "y": 0,
  3512. "z": 0,
  3513. "w": 1
  3514. },
  3515. "_lscale": {
  3516. "__type__": "cc.Vec3",
  3517. "x": 1,
  3518. "y": 1,
  3519. "z": 1
  3520. },
  3521. "_mobility": 0,
  3522. "_layer": 33554432,
  3523. "_euler": {
  3524. "__type__": "cc.Vec3",
  3525. "x": 0,
  3526. "y": 0,
  3527. "z": 0
  3528. },
  3529. "_id": "6a+FKdv05I9rsw6RY/1Q+5"
  3530. },
  3531. {
  3532. "__type__": "cc.UITransform",
  3533. "_name": "",
  3534. "_objFlags": 0,
  3535. "__editorExtras__": {},
  3536. "node": {
  3537. "__id__": 86
  3538. },
  3539. "_enabled": true,
  3540. "__prefab": null,
  3541. "_contentSize": {
  3542. "__type__": "cc.Size",
  3543. "width": 22.24609375,
  3544. "height": 50.4
  3545. },
  3546. "_anchorPoint": {
  3547. "__type__": "cc.Vec2",
  3548. "x": 0,
  3549. "y": 0.5
  3550. },
  3551. "_id": "95mx1IyNNPw7AooCRSIT9m"
  3552. },
  3553. {
  3554. "__type__": "cc.Widget",
  3555. "_name": "",
  3556. "_objFlags": 0,
  3557. "__editorExtras__": {},
  3558. "node": {
  3559. "__id__": 86
  3560. },
  3561. "_enabled": true,
  3562. "__prefab": null,
  3563. "_alignFlags": 13,
  3564. "_target": {
  3565. "__id__": 85
  3566. },
  3567. "_left": 120,
  3568. "_right": 266.807,
  3569. "_top": 0,
  3570. "_bottom": 0,
  3571. "_horizontalCenter": 0,
  3572. "_verticalCenter": 0,
  3573. "_isAbsLeft": true,
  3574. "_isAbsRight": true,
  3575. "_isAbsTop": true,
  3576. "_isAbsBottom": true,
  3577. "_isAbsHorizontalCenter": true,
  3578. "_isAbsVerticalCenter": true,
  3579. "_originalWidth": 30,
  3580. "_originalHeight": 30,
  3581. "_alignMode": 2,
  3582. "_lockFlags": 0,
  3583. "_id": "cd3BfYGAJPUqRGiGzx+r6X"
  3584. },
  3585. {
  3586. "__type__": "cc.Label",
  3587. "_name": "",
  3588. "_objFlags": 0,
  3589. "__editorExtras__": {},
  3590. "node": {
  3591. "__id__": 86
  3592. },
  3593. "_enabled": true,
  3594. "__prefab": null,
  3595. "_customMaterial": null,
  3596. "_srcBlendFactor": 2,
  3597. "_dstBlendFactor": 4,
  3598. "_color": {
  3599. "__type__": "cc.Color",
  3600. "r": 255,
  3601. "g": 0,
  3602. "b": 174,
  3603. "a": 255
  3604. },
  3605. "_string": "0",
  3606. "_horizontalAlign": 1,
  3607. "_verticalAlign": 1,
  3608. "_actualFontSize": 40,
  3609. "_fontSize": 40,
  3610. "_fontFamily": "Arial",
  3611. "_lineHeight": 40,
  3612. "_overflow": 0,
  3613. "_enableWrapText": true,
  3614. "_font": null,
  3615. "_isSystemFontUsed": true,
  3616. "_spacingX": 0,
  3617. "_isItalic": false,
  3618. "_isBold": false,
  3619. "_isUnderline": false,
  3620. "_underlineHeight": 2,
  3621. "_cacheMode": 0,
  3622. "_enableOutline": false,
  3623. "_outlineColor": {
  3624. "__type__": "cc.Color",
  3625. "r": 0,
  3626. "g": 0,
  3627. "b": 0,
  3628. "a": 255
  3629. },
  3630. "_outlineWidth": 2,
  3631. "_enableShadow": false,
  3632. "_shadowColor": {
  3633. "__type__": "cc.Color",
  3634. "r": 0,
  3635. "g": 0,
  3636. "b": 0,
  3637. "a": 255
  3638. },
  3639. "_shadowOffset": {
  3640. "__type__": "cc.Vec2",
  3641. "x": 2,
  3642. "y": 2
  3643. },
  3644. "_shadowBlur": 2,
  3645. "_id": "deD7aLmetGwpMUfrJD/Wau"
  3646. },
  3647. {
  3648. "__type__": "cc.UITransform",
  3649. "_name": "",
  3650. "_objFlags": 0,
  3651. "__editorExtras__": {},
  3652. "node": {
  3653. "__id__": 85
  3654. },
  3655. "_enabled": true,
  3656. "__prefab": null,
  3657. "_contentSize": {
  3658. "__type__": "cc.Size",
  3659. "width": 120,
  3660. "height": 50.4
  3661. },
  3662. "_anchorPoint": {
  3663. "__type__": "cc.Vec2",
  3664. "x": 0.5,
  3665. "y": 0.5
  3666. },
  3667. "_id": "f3SOAOYxhKHZLvoIjwHYVV"
  3668. },
  3669. {
  3670. "__type__": "cc.Label",
  3671. "_name": "",
  3672. "_objFlags": 0,
  3673. "__editorExtras__": {},
  3674. "node": {
  3675. "__id__": 85
  3676. },
  3677. "_enabled": true,
  3678. "__prefab": null,
  3679. "_customMaterial": null,
  3680. "_srcBlendFactor": 2,
  3681. "_dstBlendFactor": 4,
  3682. "_color": {
  3683. "__type__": "cc.Color",
  3684. "r": 70,
  3685. "g": 160,
  3686. "b": 243,
  3687. "a": 255
  3688. },
  3689. "_string": "失败:",
  3690. "_horizontalAlign": 1,
  3691. "_verticalAlign": 1,
  3692. "_actualFontSize": 40,
  3693. "_fontSize": 40,
  3694. "_fontFamily": "Arial",
  3695. "_lineHeight": 40,
  3696. "_overflow": 0,
  3697. "_enableWrapText": true,
  3698. "_font": null,
  3699. "_isSystemFontUsed": true,
  3700. "_spacingX": 0,
  3701. "_isItalic": false,
  3702. "_isBold": false,
  3703. "_isUnderline": false,
  3704. "_underlineHeight": 2,
  3705. "_cacheMode": 0,
  3706. "_enableOutline": false,
  3707. "_outlineColor": {
  3708. "__type__": "cc.Color",
  3709. "r": 0,
  3710. "g": 0,
  3711. "b": 0,
  3712. "a": 255
  3713. },
  3714. "_outlineWidth": 2,
  3715. "_enableShadow": false,
  3716. "_shadowColor": {
  3717. "__type__": "cc.Color",
  3718. "r": 0,
  3719. "g": 0,
  3720. "b": 0,
  3721. "a": 255
  3722. },
  3723. "_shadowOffset": {
  3724. "__type__": "cc.Vec2",
  3725. "x": 2,
  3726. "y": 2
  3727. },
  3728. "_shadowBlur": 2,
  3729. "_id": "05+cSo+bhBbIwwJx8GrIvr"
  3730. },
  3731. {
  3732. "__type__": "cc.Widget",
  3733. "_name": "",
  3734. "_objFlags": 0,
  3735. "__editorExtras__": {},
  3736. "node": {
  3737. "__id__": 85
  3738. },
  3739. "_enabled": true,
  3740. "__prefab": null,
  3741. "_alignFlags": 9,
  3742. "_target": null,
  3743. "_left": 45,
  3744. "_right": 0,
  3745. "_top": 200,
  3746. "_bottom": 0,
  3747. "_horizontalCenter": 0,
  3748. "_verticalCenter": 0,
  3749. "_isAbsLeft": true,
  3750. "_isAbsRight": true,
  3751. "_isAbsTop": true,
  3752. "_isAbsBottom": true,
  3753. "_isAbsHorizontalCenter": true,
  3754. "_isAbsVerticalCenter": true,
  3755. "_originalWidth": 0,
  3756. "_originalHeight": 0,
  3757. "_alignMode": 2,
  3758. "_lockFlags": 0,
  3759. "_id": "23TPpA03NCDr2M1m1WQWwW"
  3760. },
  3761. {
  3762. "__type__": "cc.UITransform",
  3763. "_name": "",
  3764. "_objFlags": 0,
  3765. "__editorExtras__": {},
  3766. "node": {
  3767. "__id__": 51
  3768. },
  3769. "_enabled": true,
  3770. "__prefab": null,
  3771. "_contentSize": {
  3772. "__type__": "cc.Size",
  3773. "width": 400,
  3774. "height": 400
  3775. },
  3776. "_anchorPoint": {
  3777. "__type__": "cc.Vec2",
  3778. "x": 0.5,
  3779. "y": 0.5
  3780. },
  3781. "_id": "6eIjX5TR5ORLucWzllbhUa"
  3782. },
  3783. {
  3784. "__type__": "cc.Sprite",
  3785. "_name": "",
  3786. "_objFlags": 0,
  3787. "__editorExtras__": {},
  3788. "node": {
  3789. "__id__": 51
  3790. },
  3791. "_enabled": true,
  3792. "__prefab": null,
  3793. "_customMaterial": null,
  3794. "_srcBlendFactor": 2,
  3795. "_dstBlendFactor": 4,
  3796. "_color": {
  3797. "__type__": "cc.Color",
  3798. "r": 255,
  3799. "g": 255,
  3800. "b": 255,
  3801. "a": 255
  3802. },
  3803. "_spriteFrame": {
  3804. "__uuid__": "bb4aa6a1-96c4-46a7-ab7a-0c1265a52733@f9941",
  3805. "__expectedType__": "cc.SpriteFrame"
  3806. },
  3807. "_type": 0,
  3808. "_fillType": 0,
  3809. "_sizeMode": 0,
  3810. "_fillCenter": {
  3811. "__type__": "cc.Vec2",
  3812. "x": 0,
  3813. "y": 0
  3814. },
  3815. "_fillStart": 0,
  3816. "_fillRange": 0,
  3817. "_isTrimmedMode": true,
  3818. "_useGrayscale": false,
  3819. "_atlas": null,
  3820. "_id": "49ilGtQLdHL7zb5ddjGIJW"
  3821. },
  3822. {
  3823. "__type__": "cc.Widget",
  3824. "_name": "",
  3825. "_objFlags": 0,
  3826. "__editorExtras__": {},
  3827. "node": {
  3828. "__id__": 51
  3829. },
  3830. "_enabled": true,
  3831. "__prefab": null,
  3832. "_alignFlags": 36,
  3833. "_target": null,
  3834. "_left": 664.697,
  3835. "_right": 200,
  3836. "_top": 160,
  3837. "_bottom": 50,
  3838. "_horizontalCenter": 0,
  3839. "_verticalCenter": 0,
  3840. "_isAbsLeft": true,
  3841. "_isAbsRight": true,
  3842. "_isAbsTop": true,
  3843. "_isAbsBottom": true,
  3844. "_isAbsHorizontalCenter": true,
  3845. "_isAbsVerticalCenter": true,
  3846. "_originalWidth": 0,
  3847. "_originalHeight": 400,
  3848. "_alignMode": 2,
  3849. "_lockFlags": 0,
  3850. "_id": "f48BIlp+dPirkXSMg0en9C"
  3851. },
  3852. {
  3853. "__type__": "e0cabX/iidPFJF5PWpyU+l3",
  3854. "_name": "",
  3855. "_objFlags": 0,
  3856. "__editorExtras__": {},
  3857. "node": {
  3858. "__id__": 51
  3859. },
  3860. "_enabled": true,
  3861. "__prefab": null,
  3862. "_id": "784G2YQ+5Ko7aeiRT7K69x"
  3863. },
  3864. {
  3865. "__type__": "cc.Node",
  3866. "_name": "SelectTroops",
  3867. "_objFlags": 0,
  3868. "__editorExtras__": {},
  3869. "_parent": {
  3870. "__id__": 5
  3871. },
  3872. "_children": [
  3873. {
  3874. "__id__": 98
  3875. },
  3876. {
  3877. "__id__": 115
  3878. },
  3879. {
  3880. "__id__": 150
  3881. }
  3882. ],
  3883. "_active": false,
  3884. "_components": [
  3885. {
  3886. "__id__": 288
  3887. },
  3888. {
  3889. "__id__": 289
  3890. },
  3891. {
  3892. "__id__": 290
  3893. },
  3894. {
  3895. "__id__": 291
  3896. }
  3897. ],
  3898. "_prefab": null,
  3899. "_lpos": {
  3900. "__type__": "cc.Vec3",
  3901. "x": 0,
  3902. "y": 0,
  3903. "z": 0
  3904. },
  3905. "_lrot": {
  3906. "__type__": "cc.Quat",
  3907. "x": 0,
  3908. "y": 0,
  3909. "z": 0,
  3910. "w": 1
  3911. },
  3912. "_lscale": {
  3913. "__type__": "cc.Vec3",
  3914. "x": 1,
  3915. "y": 1,
  3916. "z": 1
  3917. },
  3918. "_mobility": 0,
  3919. "_layer": 33554432,
  3920. "_euler": {
  3921. "__type__": "cc.Vec3",
  3922. "x": 0,
  3923. "y": 0,
  3924. "z": 0
  3925. },
  3926. "_id": "86TFgYjKtOOolSuaNyPzRV"
  3927. },
  3928. {
  3929. "__type__": "cc.Node",
  3930. "_name": "RoleList",
  3931. "_objFlags": 0,
  3932. "__editorExtras__": {},
  3933. "_parent": {
  3934. "__id__": 97
  3935. },
  3936. "_children": [
  3937. {
  3938. "__id__": 99
  3939. },
  3940. {
  3941. "__id__": 106
  3942. }
  3943. ],
  3944. "_active": true,
  3945. "_components": [
  3946. {
  3947. "__id__": 110
  3948. },
  3949. {
  3950. "__id__": 111
  3951. },
  3952. {
  3953. "__id__": 112
  3954. },
  3955. {
  3956. "__id__": 113
  3957. },
  3958. {
  3959. "__id__": 114
  3960. }
  3961. ],
  3962. "_prefab": null,
  3963. "_lpos": {
  3964. "__type__": "cc.Vec3",
  3965. "x": -240,
  3966. "y": 45,
  3967. "z": 0
  3968. },
  3969. "_lrot": {
  3970. "__type__": "cc.Quat",
  3971. "x": 0,
  3972. "y": 0,
  3973. "z": 0,
  3974. "w": 1
  3975. },
  3976. "_lscale": {
  3977. "__type__": "cc.Vec3",
  3978. "x": 1,
  3979. "y": 1,
  3980. "z": 1
  3981. },
  3982. "_mobility": 0,
  3983. "_layer": 33554432,
  3984. "_euler": {
  3985. "__type__": "cc.Vec3",
  3986. "x": 0,
  3987. "y": 0,
  3988. "z": 0
  3989. },
  3990. "_id": "7aG1ARN4xHUZmAUc00iXzE"
  3991. },
  3992. {
  3993. "__type__": "cc.Node",
  3994. "_name": "view",
  3995. "_objFlags": 0,
  3996. "__editorExtras__": {},
  3997. "_parent": {
  3998. "__id__": 98
  3999. },
  4000. "_children": [
  4001. {
  4002. "__id__": 100
  4003. }
  4004. ],
  4005. "_active": true,
  4006. "_components": [
  4007. {
  4008. "__id__": 103
  4009. },
  4010. {
  4011. "__id__": 104
  4012. },
  4013. {
  4014. "__id__": 105
  4015. }
  4016. ],
  4017. "_prefab": null,
  4018. "_lpos": {
  4019. "__type__": "cc.Vec3",
  4020. "x": 0,
  4021. "y": 0,
  4022. "z": 0
  4023. },
  4024. "_lrot": {
  4025. "__type__": "cc.Quat",
  4026. "x": 0,
  4027. "y": 0,
  4028. "z": 0,
  4029. "w": 1
  4030. },
  4031. "_lscale": {
  4032. "__type__": "cc.Vec3",
  4033. "x": 1,
  4034. "y": 1,
  4035. "z": 1
  4036. },
  4037. "_mobility": 0,
  4038. "_layer": 33554432,
  4039. "_euler": {
  4040. "__type__": "cc.Vec3",
  4041. "x": 0,
  4042. "y": 0,
  4043. "z": 0
  4044. },
  4045. "_id": "52mIGkUbhK36QWYynOIgOI"
  4046. },
  4047. {
  4048. "__type__": "cc.Node",
  4049. "_name": "content",
  4050. "_objFlags": 0,
  4051. "__editorExtras__": {},
  4052. "_parent": {
  4053. "__id__": 99
  4054. },
  4055. "_children": [],
  4056. "_active": true,
  4057. "_components": [
  4058. {
  4059. "__id__": 101
  4060. },
  4061. {
  4062. "__id__": 102
  4063. }
  4064. ],
  4065. "_prefab": null,
  4066. "_lpos": {
  4067. "__type__": "cc.Vec3",
  4068. "x": 0,
  4069. "y": 125,
  4070. "z": 0
  4071. },
  4072. "_lrot": {
  4073. "__type__": "cc.Quat",
  4074. "x": 0,
  4075. "y": 0,
  4076. "z": 0,
  4077. "w": 1
  4078. },
  4079. "_lscale": {
  4080. "__type__": "cc.Vec3",
  4081. "x": 1,
  4082. "y": 1,
  4083. "z": 1
  4084. },
  4085. "_mobility": 0,
  4086. "_layer": 33554432,
  4087. "_euler": {
  4088. "__type__": "cc.Vec3",
  4089. "x": 0,
  4090. "y": 0,
  4091. "z": 0
  4092. },
  4093. "_id": "0ezTfqcAdKd4GI1MVJjH9C"
  4094. },
  4095. {
  4096. "__type__": "cc.UITransform",
  4097. "_name": "",
  4098. "_objFlags": 0,
  4099. "__editorExtras__": {},
  4100. "node": {
  4101. "__id__": 100
  4102. },
  4103. "_enabled": true,
  4104. "__prefab": null,
  4105. "_contentSize": {
  4106. "__type__": "cc.Size",
  4107. "width": 600,
  4108. "height": 40
  4109. },
  4110. "_anchorPoint": {
  4111. "__type__": "cc.Vec2",
  4112. "x": 0.5,
  4113. "y": 1
  4114. },
  4115. "_id": "5aJx+SCRBDY54dH1BI1sfh"
  4116. },
  4117. {
  4118. "__type__": "cc.Layout",
  4119. "_name": "",
  4120. "_objFlags": 0,
  4121. "__editorExtras__": {},
  4122. "node": {
  4123. "__id__": 100
  4124. },
  4125. "_enabled": true,
  4126. "__prefab": null,
  4127. "_resizeMode": 1,
  4128. "_layoutType": 3,
  4129. "_cellSize": {
  4130. "__type__": "cc.Size",
  4131. "width": 40,
  4132. "height": 40
  4133. },
  4134. "_startAxis": 0,
  4135. "_paddingLeft": 20,
  4136. "_paddingRight": 20,
  4137. "_paddingTop": 20,
  4138. "_paddingBottom": 20,
  4139. "_spacingX": 20,
  4140. "_spacingY": 20,
  4141. "_verticalDirection": 1,
  4142. "_horizontalDirection": 0,
  4143. "_constraint": 2,
  4144. "_constraintNum": 4,
  4145. "_affectedByScale": false,
  4146. "_isAlign": true,
  4147. "_id": "faVChaPYlFOqWGr4AS3586"
  4148. },
  4149. {
  4150. "__type__": "cc.UITransform",
  4151. "_name": "",
  4152. "_objFlags": 0,
  4153. "__editorExtras__": {},
  4154. "node": {
  4155. "__id__": 99
  4156. },
  4157. "_enabled": true,
  4158. "__prefab": null,
  4159. "_contentSize": {
  4160. "__type__": "cc.Size",
  4161. "width": 600,
  4162. "height": 350
  4163. },
  4164. "_anchorPoint": {
  4165. "__type__": "cc.Vec2",
  4166. "x": 0.5,
  4167. "y": 0.5
  4168. },
  4169. "_id": "eedCZXAnZLn4KuouUOrW6X"
  4170. },
  4171. {
  4172. "__type__": "cc.Mask",
  4173. "_name": "",
  4174. "_objFlags": 0,
  4175. "__editorExtras__": {},
  4176. "node": {
  4177. "__id__": 99
  4178. },
  4179. "_enabled": true,
  4180. "__prefab": null,
  4181. "_type": 0,
  4182. "_inverted": false,
  4183. "_segments": 64,
  4184. "_alphaThreshold": 0.1,
  4185. "_id": "72ydh4419Ha74L7gyDwuQt"
  4186. },
  4187. {
  4188. "__type__": "cc.Graphics",
  4189. "_name": "",
  4190. "_objFlags": 0,
  4191. "__editorExtras__": {},
  4192. "node": {
  4193. "__id__": 99
  4194. },
  4195. "_enabled": true,
  4196. "__prefab": null,
  4197. "_customMaterial": null,
  4198. "_srcBlendFactor": 2,
  4199. "_dstBlendFactor": 4,
  4200. "_color": {
  4201. "__type__": "cc.Color",
  4202. "r": 255,
  4203. "g": 255,
  4204. "b": 255,
  4205. "a": 255
  4206. },
  4207. "_lineWidth": 1,
  4208. "_strokeColor": {
  4209. "__type__": "cc.Color",
  4210. "r": 0,
  4211. "g": 0,
  4212. "b": 0,
  4213. "a": 255
  4214. },
  4215. "_lineJoin": 2,
  4216. "_lineCap": 0,
  4217. "_fillColor": {
  4218. "__type__": "cc.Color",
  4219. "r": 255,
  4220. "g": 255,
  4221. "b": 255,
  4222. "a": 0
  4223. },
  4224. "_miterLimit": 10,
  4225. "_id": "95Y2J0xkBMU47FDr/FkeZJ"
  4226. },
  4227. {
  4228. "__type__": "cc.Node",
  4229. "_name": "TouchMgr",
  4230. "_objFlags": 0,
  4231. "__editorExtras__": {},
  4232. "_parent": {
  4233. "__id__": 98
  4234. },
  4235. "_children": [],
  4236. "_active": true,
  4237. "_components": [
  4238. {
  4239. "__id__": 107
  4240. },
  4241. {
  4242. "__id__": 108
  4243. },
  4244. {
  4245. "__id__": 109
  4246. }
  4247. ],
  4248. "_prefab": null,
  4249. "_lpos": {
  4250. "__type__": "cc.Vec3",
  4251. "x": 5.684341886080802e-14,
  4252. "y": 0,
  4253. "z": 0
  4254. },
  4255. "_lrot": {
  4256. "__type__": "cc.Quat",
  4257. "x": 0,
  4258. "y": 0,
  4259. "z": 0,
  4260. "w": 1
  4261. },
  4262. "_lscale": {
  4263. "__type__": "cc.Vec3",
  4264. "x": 1,
  4265. "y": 1,
  4266. "z": 1
  4267. },
  4268. "_mobility": 0,
  4269. "_layer": 33554432,
  4270. "_euler": {
  4271. "__type__": "cc.Vec3",
  4272. "x": 0,
  4273. "y": 0,
  4274. "z": 0
  4275. },
  4276. "_id": "8duKbnYslMx51IZeyEPHQ0"
  4277. },
  4278. {
  4279. "__type__": "cc.UITransform",
  4280. "_name": "",
  4281. "_objFlags": 0,
  4282. "__editorExtras__": {},
  4283. "node": {
  4284. "__id__": 106
  4285. },
  4286. "_enabled": true,
  4287. "__prefab": null,
  4288. "_contentSize": {
  4289. "__type__": "cc.Size",
  4290. "width": 600,
  4291. "height": 350
  4292. },
  4293. "_anchorPoint": {
  4294. "__type__": "cc.Vec2",
  4295. "x": 0.5,
  4296. "y": 0.5
  4297. },
  4298. "_id": "adDYgmtv1GVrpzm6z/qta0"
  4299. },
  4300. {
  4301. "__type__": "cc.Widget",
  4302. "_name": "",
  4303. "_objFlags": 0,
  4304. "__editorExtras__": {},
  4305. "node": {
  4306. "__id__": 106
  4307. },
  4308. "_enabled": true,
  4309. "__prefab": null,
  4310. "_alignFlags": 12,
  4311. "_target": null,
  4312. "_left": 3.019806626980426e-14,
  4313. "_right": 1180,
  4314. "_top": 620,
  4315. "_bottom": 0,
  4316. "_horizontalCenter": 0,
  4317. "_verticalCenter": 0,
  4318. "_isAbsLeft": true,
  4319. "_isAbsRight": true,
  4320. "_isAbsTop": true,
  4321. "_isAbsBottom": true,
  4322. "_isAbsHorizontalCenter": true,
  4323. "_isAbsVerticalCenter": true,
  4324. "_originalWidth": 100,
  4325. "_originalHeight": 100,
  4326. "_alignMode": 2,
  4327. "_lockFlags": 0,
  4328. "_id": "daC76n4vhHtbcr+MKr218O"
  4329. },
  4330. {
  4331. "__type__": "2c63cooW81Gtpti/cIy4AtH",
  4332. "_name": "",
  4333. "_objFlags": 0,
  4334. "__editorExtras__": {},
  4335. "node": {
  4336. "__id__": 106
  4337. },
  4338. "_enabled": true,
  4339. "__prefab": null,
  4340. "_id": "897ZnsvZlP1buFqHudd85B"
  4341. },
  4342. {
  4343. "__type__": "cc.UITransform",
  4344. "_name": "",
  4345. "_objFlags": 0,
  4346. "__editorExtras__": {},
  4347. "node": {
  4348. "__id__": 98
  4349. },
  4350. "_enabled": true,
  4351. "__prefab": null,
  4352. "_contentSize": {
  4353. "__type__": "cc.Size",
  4354. "width": 600,
  4355. "height": 350
  4356. },
  4357. "_anchorPoint": {
  4358. "__type__": "cc.Vec2",
  4359. "x": 0.5,
  4360. "y": 0.5
  4361. },
  4362. "_id": "95maUUwWxH+7UefdoWJhrD"
  4363. },
  4364. {
  4365. "__type__": "cc.Sprite",
  4366. "_name": "",
  4367. "_objFlags": 0,
  4368. "__editorExtras__": {},
  4369. "node": {
  4370. "__id__": 98
  4371. },
  4372. "_enabled": true,
  4373. "__prefab": null,
  4374. "_customMaterial": null,
  4375. "_srcBlendFactor": 2,
  4376. "_dstBlendFactor": 4,
  4377. "_color": {
  4378. "__type__": "cc.Color",
  4379. "r": 255,
  4380. "g": 255,
  4381. "b": 255,
  4382. "a": 255
  4383. },
  4384. "_spriteFrame": {
  4385. "__uuid__": "1ec19ffb-822e-46c7-814a-dc668a04afe9@f0787",
  4386. "__expectedType__": "cc.SpriteFrame"
  4387. },
  4388. "_type": 1,
  4389. "_fillType": 0,
  4390. "_sizeMode": 0,
  4391. "_fillCenter": {
  4392. "__type__": "cc.Vec2",
  4393. "x": 0,
  4394. "y": 0
  4395. },
  4396. "_fillStart": 0,
  4397. "_fillRange": 0,
  4398. "_isTrimmedMode": true,
  4399. "_useGrayscale": false,
  4400. "_atlas": null,
  4401. "_id": "eeQ5F/oEBNko+SXB3xeYPG"
  4402. },
  4403. {
  4404. "__type__": "cc.ScrollView",
  4405. "_name": "",
  4406. "_objFlags": 0,
  4407. "__editorExtras__": {},
  4408. "node": {
  4409. "__id__": 98
  4410. },
  4411. "_enabled": true,
  4412. "__prefab": null,
  4413. "bounceDuration": 0.23,
  4414. "brake": 0.75,
  4415. "elastic": true,
  4416. "inertia": true,
  4417. "horizontal": false,
  4418. "vertical": true,
  4419. "cancelInnerEvents": true,
  4420. "scrollEvents": [],
  4421. "_content": {
  4422. "__id__": 100
  4423. },
  4424. "_horizontalScrollBar": null,
  4425. "_verticalScrollBar": null,
  4426. "_id": "51BJL7/wVF4qe1Hrq3vOLB"
  4427. },
  4428. {
  4429. "__type__": "cc.Widget",
  4430. "_name": "",
  4431. "_objFlags": 0,
  4432. "__editorExtras__": {},
  4433. "node": {
  4434. "__id__": 98
  4435. },
  4436. "_enabled": true,
  4437. "__prefab": null,
  4438. "_alignFlags": 9,
  4439. "_target": null,
  4440. "_left": 100,
  4441. "_right": 0,
  4442. "_top": 140,
  4443. "_bottom": 0,
  4444. "_horizontalCenter": 0,
  4445. "_verticalCenter": 0,
  4446. "_isAbsLeft": true,
  4447. "_isAbsRight": true,
  4448. "_isAbsTop": true,
  4449. "_isAbsBottom": true,
  4450. "_isAbsHorizontalCenter": true,
  4451. "_isAbsVerticalCenter": true,
  4452. "_originalWidth": 0,
  4453. "_originalHeight": 0,
  4454. "_alignMode": 2,
  4455. "_lockFlags": 0,
  4456. "_id": "f0qwd00KxFnpZlvY6htRan"
  4457. },
  4458. {
  4459. "__type__": "f23c3WBxVtCIIISP/245dfp",
  4460. "_name": "",
  4461. "_objFlags": 0,
  4462. "__editorExtras__": {},
  4463. "node": {
  4464. "__id__": 98
  4465. },
  4466. "_enabled": true,
  4467. "__prefab": null,
  4468. "_id": "60uhV1iEZEdon6f1bPkM+X"
  4469. },
  4470. {
  4471. "__type__": "cc.Node",
  4472. "_name": "FunctionalZone",
  4473. "_objFlags": 0,
  4474. "__editorExtras__": {},
  4475. "_parent": {
  4476. "__id__": 97
  4477. },
  4478. "_children": [
  4479. {
  4480. "__id__": 116
  4481. },
  4482. {
  4483. "__id__": 125
  4484. },
  4485. {
  4486. "__id__": 134
  4487. },
  4488. {
  4489. "__id__": 143
  4490. }
  4491. ],
  4492. "_active": true,
  4493. "_components": [
  4494. {
  4495. "__id__": 148
  4496. },
  4497. {
  4498. "__id__": 149
  4499. }
  4500. ],
  4501. "_prefab": null,
  4502. "_lpos": {
  4503. "__type__": "cc.Vec3",
  4504. "x": 327.5,
  4505. "y": 45,
  4506. "z": 0
  4507. },
  4508. "_lrot": {
  4509. "__type__": "cc.Quat",
  4510. "x": 0,
  4511. "y": 0,
  4512. "z": 0,
  4513. "w": 1
  4514. },
  4515. "_lscale": {
  4516. "__type__": "cc.Vec3",
  4517. "x": 1,
  4518. "y": 1,
  4519. "z": 1
  4520. },
  4521. "_mobility": 0,
  4522. "_layer": 33554432,
  4523. "_euler": {
  4524. "__type__": "cc.Vec3",
  4525. "x": 0,
  4526. "y": 0,
  4527. "z": 0
  4528. },
  4529. "_id": "f6nAbmBstIXIqq2hR6duYu"
  4530. },
  4531. {
  4532. "__type__": "cc.Node",
  4533. "_name": "_btnMarket",
  4534. "_objFlags": 0,
  4535. "__editorExtras__": {},
  4536. "_parent": {
  4537. "__id__": 115
  4538. },
  4539. "_children": [
  4540. {
  4541. "__id__": 117
  4542. }
  4543. ],
  4544. "_active": true,
  4545. "_components": [
  4546. {
  4547. "__id__": 121
  4548. },
  4549. {
  4550. "__id__": 122
  4551. },
  4552. {
  4553. "__id__": 123
  4554. },
  4555. {
  4556. "__id__": 124
  4557. }
  4558. ],
  4559. "_prefab": null,
  4560. "_lpos": {
  4561. "__type__": "cc.Vec3",
  4562. "x": 0,
  4563. "y": 95,
  4564. "z": 0
  4565. },
  4566. "_lrot": {
  4567. "__type__": "cc.Quat",
  4568. "x": 0,
  4569. "y": 0,
  4570. "z": 0,
  4571. "w": 1
  4572. },
  4573. "_lscale": {
  4574. "__type__": "cc.Vec3",
  4575. "x": 1,
  4576. "y": 1,
  4577. "z": 1
  4578. },
  4579. "_mobility": 0,
  4580. "_layer": 33554432,
  4581. "_euler": {
  4582. "__type__": "cc.Vec3",
  4583. "x": 0,
  4584. "y": 0,
  4585. "z": 0
  4586. },
  4587. "_id": "b0qF6KoKhFy6mVAFFlpykP"
  4588. },
  4589. {
  4590. "__type__": "cc.Node",
  4591. "_name": "Label",
  4592. "_objFlags": 0,
  4593. "__editorExtras__": {},
  4594. "_parent": {
  4595. "__id__": 116
  4596. },
  4597. "_children": [],
  4598. "_active": true,
  4599. "_components": [
  4600. {
  4601. "__id__": 118
  4602. },
  4603. {
  4604. "__id__": 119
  4605. },
  4606. {
  4607. "__id__": 120
  4608. }
  4609. ],
  4610. "_prefab": null,
  4611. "_lpos": {
  4612. "__type__": "cc.Vec3",
  4613. "x": 0,
  4614. "y": 74.8,
  4615. "z": 0
  4616. },
  4617. "_lrot": {
  4618. "__type__": "cc.Quat",
  4619. "x": 0,
  4620. "y": 0,
  4621. "z": 0,
  4622. "w": 1
  4623. },
  4624. "_lscale": {
  4625. "__type__": "cc.Vec3",
  4626. "x": 1,
  4627. "y": 1,
  4628. "z": 1
  4629. },
  4630. "_mobility": 0,
  4631. "_layer": 33554432,
  4632. "_euler": {
  4633. "__type__": "cc.Vec3",
  4634. "x": 0,
  4635. "y": 0,
  4636. "z": 0
  4637. },
  4638. "_id": "64auNhS0lG1r1GllaiabZ3"
  4639. },
  4640. {
  4641. "__type__": "cc.UITransform",
  4642. "_name": "",
  4643. "_objFlags": 0,
  4644. "__editorExtras__": {},
  4645. "node": {
  4646. "__id__": 117
  4647. },
  4648. "_enabled": true,
  4649. "__prefab": null,
  4650. "_contentSize": {
  4651. "__type__": "cc.Size",
  4652. "width": 68.3349609375,
  4653. "height": 50.4
  4654. },
  4655. "_anchorPoint": {
  4656. "__type__": "cc.Vec2",
  4657. "x": 0.5,
  4658. "y": 0.5
  4659. },
  4660. "_id": "f0zVLF/g1DR5yH5wf9g/N5"
  4661. },
  4662. {
  4663. "__type__": "cc.Label",
  4664. "_name": "",
  4665. "_objFlags": 0,
  4666. "__editorExtras__": {},
  4667. "node": {
  4668. "__id__": 117
  4669. },
  4670. "_enabled": true,
  4671. "__prefab": null,
  4672. "_customMaterial": null,
  4673. "_srcBlendFactor": 2,
  4674. "_dstBlendFactor": 4,
  4675. "_color": {
  4676. "__type__": "cc.Color",
  4677. "r": 255,
  4678. "g": 0,
  4679. "b": 0,
  4680. "a": 255
  4681. },
  4682. "_string": "市 场",
  4683. "_horizontalAlign": 1,
  4684. "_verticalAlign": 1,
  4685. "_actualFontSize": 30,
  4686. "_fontSize": 30,
  4687. "_fontFamily": "Arial",
  4688. "_lineHeight": 40,
  4689. "_overflow": 0,
  4690. "_enableWrapText": true,
  4691. "_font": null,
  4692. "_isSystemFontUsed": true,
  4693. "_spacingX": 0,
  4694. "_isItalic": false,
  4695. "_isBold": true,
  4696. "_isUnderline": false,
  4697. "_underlineHeight": 2,
  4698. "_cacheMode": 0,
  4699. "_enableOutline": false,
  4700. "_outlineColor": {
  4701. "__type__": "cc.Color",
  4702. "r": 0,
  4703. "g": 0,
  4704. "b": 0,
  4705. "a": 255
  4706. },
  4707. "_outlineWidth": 2,
  4708. "_enableShadow": false,
  4709. "_shadowColor": {
  4710. "__type__": "cc.Color",
  4711. "r": 0,
  4712. "g": 0,
  4713. "b": 0,
  4714. "a": 255
  4715. },
  4716. "_shadowOffset": {
  4717. "__type__": "cc.Vec2",
  4718. "x": 2,
  4719. "y": 2
  4720. },
  4721. "_shadowBlur": 2,
  4722. "_id": "57WXumqCxKAp0JuzFBdVaH"
  4723. },
  4724. {
  4725. "__type__": "cc.Widget",
  4726. "_name": "",
  4727. "_objFlags": 0,
  4728. "__editorExtras__": {},
  4729. "node": {
  4730. "__id__": 117
  4731. },
  4732. "_enabled": true,
  4733. "__prefab": null,
  4734. "_alignFlags": 41,
  4735. "_target": null,
  4736. "_left": 15.83251953125,
  4737. "_right": 15.83251953125,
  4738. "_top": -50,
  4739. "_bottom": 0,
  4740. "_horizontalCenter": 0,
  4741. "_verticalCenter": 0,
  4742. "_isAbsLeft": true,
  4743. "_isAbsRight": true,
  4744. "_isAbsTop": true,
  4745. "_isAbsBottom": true,
  4746. "_isAbsHorizontalCenter": true,
  4747. "_isAbsVerticalCenter": true,
  4748. "_originalWidth": 80,
  4749. "_originalHeight": 0,
  4750. "_alignMode": 2,
  4751. "_lockFlags": 0,
  4752. "_id": "e84kGpNgpLarb1tZdz0q2W"
  4753. },
  4754. {
  4755. "__type__": "cc.UITransform",
  4756. "_name": "",
  4757. "_objFlags": 0,
  4758. "__editorExtras__": {},
  4759. "node": {
  4760. "__id__": 116
  4761. },
  4762. "_enabled": true,
  4763. "__prefab": null,
  4764. "_contentSize": {
  4765. "__type__": "cc.Size",
  4766. "width": 100,
  4767. "height": 100
  4768. },
  4769. "_anchorPoint": {
  4770. "__type__": "cc.Vec2",
  4771. "x": 0.5,
  4772. "y": 0.5
  4773. },
  4774. "_id": "9fqLcTb1RFT6NM+4KoT1FN"
  4775. },
  4776. {
  4777. "__type__": "cc.Sprite",
  4778. "_name": "",
  4779. "_objFlags": 0,
  4780. "__editorExtras__": {},
  4781. "node": {
  4782. "__id__": 116
  4783. },
  4784. "_enabled": true,
  4785. "__prefab": null,
  4786. "_customMaterial": null,
  4787. "_srcBlendFactor": 2,
  4788. "_dstBlendFactor": 4,
  4789. "_color": {
  4790. "__type__": "cc.Color",
  4791. "r": 255,
  4792. "g": 255,
  4793. "b": 255,
  4794. "a": 255
  4795. },
  4796. "_spriteFrame": {
  4797. "__uuid__": "a26dd037-1360-4022-84cd-9b7654dead06@f9941",
  4798. "__expectedType__": "cc.SpriteFrame"
  4799. },
  4800. "_type": 1,
  4801. "_fillType": 0,
  4802. "_sizeMode": 0,
  4803. "_fillCenter": {
  4804. "__type__": "cc.Vec2",
  4805. "x": 0,
  4806. "y": 0
  4807. },
  4808. "_fillStart": 0,
  4809. "_fillRange": 0,
  4810. "_isTrimmedMode": true,
  4811. "_useGrayscale": false,
  4812. "_atlas": null,
  4813. "_id": "d5gVG97TRDT4koAezY+GqS"
  4814. },
  4815. {
  4816. "__type__": "cc.Button",
  4817. "_name": "",
  4818. "_objFlags": 0,
  4819. "__editorExtras__": {},
  4820. "node": {
  4821. "__id__": 116
  4822. },
  4823. "_enabled": true,
  4824. "__prefab": null,
  4825. "clickEvents": [],
  4826. "_interactable": true,
  4827. "_transition": 3,
  4828. "_normalColor": {
  4829. "__type__": "cc.Color",
  4830. "r": 214,
  4831. "g": 214,
  4832. "b": 214,
  4833. "a": 255
  4834. },
  4835. "_hoverColor": {
  4836. "__type__": "cc.Color",
  4837. "r": 211,
  4838. "g": 211,
  4839. "b": 211,
  4840. "a": 255
  4841. },
  4842. "_pressedColor": {
  4843. "__type__": "cc.Color",
  4844. "r": 255,
  4845. "g": 255,
  4846. "b": 255,
  4847. "a": 255
  4848. },
  4849. "_disabledColor": {
  4850. "__type__": "cc.Color",
  4851. "r": 124,
  4852. "g": 124,
  4853. "b": 124,
  4854. "a": 255
  4855. },
  4856. "_normalSprite": null,
  4857. "_hoverSprite": null,
  4858. "_pressedSprite": null,
  4859. "_disabledSprite": null,
  4860. "_duration": 0.1,
  4861. "_zoomScale": 1.2,
  4862. "_target": {
  4863. "__id__": 116
  4864. },
  4865. "_id": "07ez56HbNJjZ3WE7BFrNNX"
  4866. },
  4867. {
  4868. "__type__": "cc.Widget",
  4869. "_name": "",
  4870. "_objFlags": 0,
  4871. "__editorExtras__": {},
  4872. "node": {
  4873. "__id__": 116
  4874. },
  4875. "_enabled": true,
  4876. "__prefab": null,
  4877. "_alignFlags": 41,
  4878. "_target": null,
  4879. "_left": 162.5,
  4880. "_right": 162.5,
  4881. "_top": 30,
  4882. "_bottom": 245.894,
  4883. "_horizontalCenter": 0,
  4884. "_verticalCenter": 0,
  4885. "_isAbsLeft": true,
  4886. "_isAbsRight": true,
  4887. "_isAbsTop": true,
  4888. "_isAbsBottom": true,
  4889. "_isAbsHorizontalCenter": true,
  4890. "_isAbsVerticalCenter": true,
  4891. "_originalWidth": 100,
  4892. "_originalHeight": 40,
  4893. "_alignMode": 2,
  4894. "_lockFlags": 0,
  4895. "_id": "46n2ST7XtHs7vTleM08N2t"
  4896. },
  4897. {
  4898. "__type__": "cc.Node",
  4899. "_name": "_btnCompound",
  4900. "_objFlags": 0,
  4901. "__editorExtras__": {},
  4902. "_parent": {
  4903. "__id__": 115
  4904. },
  4905. "_children": [
  4906. {
  4907. "__id__": 126
  4908. }
  4909. ],
  4910. "_active": true,
  4911. "_components": [
  4912. {
  4913. "__id__": 130
  4914. },
  4915. {
  4916. "__id__": 131
  4917. },
  4918. {
  4919. "__id__": 132
  4920. },
  4921. {
  4922. "__id__": 133
  4923. }
  4924. ],
  4925. "_prefab": null,
  4926. "_lpos": {
  4927. "__type__": "cc.Vec3",
  4928. "x": -112.5,
  4929. "y": -79.352,
  4930. "z": 0
  4931. },
  4932. "_lrot": {
  4933. "__type__": "cc.Quat",
  4934. "x": 0,
  4935. "y": 0,
  4936. "z": 0,
  4937. "w": 1
  4938. },
  4939. "_lscale": {
  4940. "__type__": "cc.Vec3",
  4941. "x": 1,
  4942. "y": 1,
  4943. "z": 1
  4944. },
  4945. "_mobility": 0,
  4946. "_layer": 33554432,
  4947. "_euler": {
  4948. "__type__": "cc.Vec3",
  4949. "x": 0,
  4950. "y": 0,
  4951. "z": 0
  4952. },
  4953. "_id": "00YAy6MANOlKDTHiSmYSDg"
  4954. },
  4955. {
  4956. "__type__": "cc.Node",
  4957. "_name": "Label",
  4958. "_objFlags": 0,
  4959. "__editorExtras__": {},
  4960. "_parent": {
  4961. "__id__": 125
  4962. },
  4963. "_children": [],
  4964. "_active": true,
  4965. "_components": [
  4966. {
  4967. "__id__": 127
  4968. },
  4969. {
  4970. "__id__": 128
  4971. },
  4972. {
  4973. "__id__": 129
  4974. }
  4975. ],
  4976. "_prefab": null,
  4977. "_lpos": {
  4978. "__type__": "cc.Vec3",
  4979. "x": 0,
  4980. "y": -74.8,
  4981. "z": 0
  4982. },
  4983. "_lrot": {
  4984. "__type__": "cc.Quat",
  4985. "x": 0,
  4986. "y": 0,
  4987. "z": 0,
  4988. "w": 1
  4989. },
  4990. "_lscale": {
  4991. "__type__": "cc.Vec3",
  4992. "x": 1,
  4993. "y": 1,
  4994. "z": 1
  4995. },
  4996. "_mobility": 0,
  4997. "_layer": 33554432,
  4998. "_euler": {
  4999. "__type__": "cc.Vec3",
  5000. "x": 0,
  5001. "y": 0,
  5002. "z": 0
  5003. },
  5004. "_id": "2f3LVCYIRLMI365B0rcL+J"
  5005. },
  5006. {
  5007. "__type__": "cc.UITransform",
  5008. "_name": "",
  5009. "_objFlags": 0,
  5010. "__editorExtras__": {},
  5011. "node": {
  5012. "__id__": 126
  5013. },
  5014. "_enabled": true,
  5015. "__prefab": null,
  5016. "_contentSize": {
  5017. "__type__": "cc.Size",
  5018. "width": 68.3349609375,
  5019. "height": 50.4
  5020. },
  5021. "_anchorPoint": {
  5022. "__type__": "cc.Vec2",
  5023. "x": 0.5,
  5024. "y": 0.5
  5025. },
  5026. "_id": "ebA0hRsbpA+YYqHPkIsuAf"
  5027. },
  5028. {
  5029. "__type__": "cc.Label",
  5030. "_name": "",
  5031. "_objFlags": 0,
  5032. "__editorExtras__": {},
  5033. "node": {
  5034. "__id__": 126
  5035. },
  5036. "_enabled": true,
  5037. "__prefab": null,
  5038. "_customMaterial": null,
  5039. "_srcBlendFactor": 2,
  5040. "_dstBlendFactor": 4,
  5041. "_color": {
  5042. "__type__": "cc.Color",
  5043. "r": 255,
  5044. "g": 0,
  5045. "b": 0,
  5046. "a": 255
  5047. },
  5048. "_string": "合 成",
  5049. "_horizontalAlign": 1,
  5050. "_verticalAlign": 1,
  5051. "_actualFontSize": 30,
  5052. "_fontSize": 30,
  5053. "_fontFamily": "Arial",
  5054. "_lineHeight": 40,
  5055. "_overflow": 0,
  5056. "_enableWrapText": true,
  5057. "_font": null,
  5058. "_isSystemFontUsed": true,
  5059. "_spacingX": 0,
  5060. "_isItalic": false,
  5061. "_isBold": true,
  5062. "_isUnderline": false,
  5063. "_underlineHeight": 2,
  5064. "_cacheMode": 0,
  5065. "_enableOutline": false,
  5066. "_outlineColor": {
  5067. "__type__": "cc.Color",
  5068. "r": 0,
  5069. "g": 0,
  5070. "b": 0,
  5071. "a": 255
  5072. },
  5073. "_outlineWidth": 2,
  5074. "_enableShadow": false,
  5075. "_shadowColor": {
  5076. "__type__": "cc.Color",
  5077. "r": 0,
  5078. "g": 0,
  5079. "b": 0,
  5080. "a": 255
  5081. },
  5082. "_shadowOffset": {
  5083. "__type__": "cc.Vec2",
  5084. "x": 2,
  5085. "y": 2
  5086. },
  5087. "_shadowBlur": 2,
  5088. "_id": "daahoUqqBBMYlRob0OI9eM"
  5089. },
  5090. {
  5091. "__type__": "cc.Widget",
  5092. "_name": "",
  5093. "_objFlags": 0,
  5094. "__editorExtras__": {},
  5095. "node": {
  5096. "__id__": 126
  5097. },
  5098. "_enabled": true,
  5099. "__prefab": null,
  5100. "_alignFlags": 44,
  5101. "_target": null,
  5102. "_left": 15.83251953125,
  5103. "_right": 15.83251953125,
  5104. "_top": -50,
  5105. "_bottom": -50,
  5106. "_horizontalCenter": 0,
  5107. "_verticalCenter": 0,
  5108. "_isAbsLeft": true,
  5109. "_isAbsRight": true,
  5110. "_isAbsTop": true,
  5111. "_isAbsBottom": true,
  5112. "_isAbsHorizontalCenter": true,
  5113. "_isAbsVerticalCenter": true,
  5114. "_originalWidth": 80,
  5115. "_originalHeight": 0,
  5116. "_alignMode": 2,
  5117. "_lockFlags": 0,
  5118. "_id": "0aApY1b/lLHpRrUj8DE8nP"
  5119. },
  5120. {
  5121. "__type__": "cc.UITransform",
  5122. "_name": "",
  5123. "_objFlags": 0,
  5124. "__editorExtras__": {},
  5125. "node": {
  5126. "__id__": 125
  5127. },
  5128. "_enabled": true,
  5129. "__prefab": null,
  5130. "_contentSize": {
  5131. "__type__": "cc.Size",
  5132. "width": 100,
  5133. "height": 100
  5134. },
  5135. "_anchorPoint": {
  5136. "__type__": "cc.Vec2",
  5137. "x": 0.5,
  5138. "y": 0.5
  5139. },
  5140. "_id": "debHp+r4RLKIJV9HaL66lj"
  5141. },
  5142. {
  5143. "__type__": "cc.Sprite",
  5144. "_name": "",
  5145. "_objFlags": 0,
  5146. "__editorExtras__": {},
  5147. "node": {
  5148. "__id__": 125
  5149. },
  5150. "_enabled": true,
  5151. "__prefab": null,
  5152. "_customMaterial": null,
  5153. "_srcBlendFactor": 2,
  5154. "_dstBlendFactor": 4,
  5155. "_color": {
  5156. "__type__": "cc.Color",
  5157. "r": 255,
  5158. "g": 255,
  5159. "b": 255,
  5160. "a": 255
  5161. },
  5162. "_spriteFrame": {
  5163. "__uuid__": "ce34176c-3ac3-4971-a746-7db4aa8e8ddb@f9941",
  5164. "__expectedType__": "cc.SpriteFrame"
  5165. },
  5166. "_type": 1,
  5167. "_fillType": 0,
  5168. "_sizeMode": 0,
  5169. "_fillCenter": {
  5170. "__type__": "cc.Vec2",
  5171. "x": 0,
  5172. "y": 0
  5173. },
  5174. "_fillStart": 0,
  5175. "_fillRange": 0,
  5176. "_isTrimmedMode": true,
  5177. "_useGrayscale": false,
  5178. "_atlas": null,
  5179. "_id": "aa4u+6Dr1J2oYBS89NsdXE"
  5180. },
  5181. {
  5182. "__type__": "cc.Button",
  5183. "_name": "",
  5184. "_objFlags": 0,
  5185. "__editorExtras__": {},
  5186. "node": {
  5187. "__id__": 125
  5188. },
  5189. "_enabled": true,
  5190. "__prefab": null,
  5191. "clickEvents": [],
  5192. "_interactable": true,
  5193. "_transition": 3,
  5194. "_normalColor": {
  5195. "__type__": "cc.Color",
  5196. "r": 214,
  5197. "g": 214,
  5198. "b": 214,
  5199. "a": 255
  5200. },
  5201. "_hoverColor": {
  5202. "__type__": "cc.Color",
  5203. "r": 211,
  5204. "g": 211,
  5205. "b": 211,
  5206. "a": 255
  5207. },
  5208. "_pressedColor": {
  5209. "__type__": "cc.Color",
  5210. "r": 255,
  5211. "g": 255,
  5212. "b": 255,
  5213. "a": 255
  5214. },
  5215. "_disabledColor": {
  5216. "__type__": "cc.Color",
  5217. "r": 124,
  5218. "g": 124,
  5219. "b": 124,
  5220. "a": 255
  5221. },
  5222. "_normalSprite": {
  5223. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  5224. "__expectedType__": "cc.SpriteFrame"
  5225. },
  5226. "_hoverSprite": null,
  5227. "_pressedSprite": null,
  5228. "_disabledSprite": null,
  5229. "_duration": 0.1,
  5230. "_zoomScale": 1.2,
  5231. "_target": null,
  5232. "_id": "e0MBJoVSZFzouMDmDiSyne"
  5233. },
  5234. {
  5235. "__type__": "cc.Widget",
  5236. "_name": "",
  5237. "_objFlags": 0,
  5238. "__editorExtras__": {},
  5239. "node": {
  5240. "__id__": 125
  5241. },
  5242. "_enabled": true,
  5243. "__prefab": null,
  5244. "_alignFlags": 13,
  5245. "_target": null,
  5246. "_left": 50,
  5247. "_right": 0,
  5248. "_top": 204.352,
  5249. "_bottom": 45.647999999999996,
  5250. "_horizontalCenter": 0,
  5251. "_verticalCenter": 0,
  5252. "_isAbsLeft": true,
  5253. "_isAbsRight": true,
  5254. "_isAbsTop": true,
  5255. "_isAbsBottom": true,
  5256. "_isAbsHorizontalCenter": true,
  5257. "_isAbsVerticalCenter": true,
  5258. "_originalWidth": 0,
  5259. "_originalHeight": 40,
  5260. "_alignMode": 2,
  5261. "_lockFlags": 0,
  5262. "_id": "86pLZP8lBNQ6iWvjvS5LQw"
  5263. },
  5264. {
  5265. "__type__": "cc.Node",
  5266. "_name": "_btnUpGrade",
  5267. "_objFlags": 0,
  5268. "__editorExtras__": {},
  5269. "_parent": {
  5270. "__id__": 115
  5271. },
  5272. "_children": [
  5273. {
  5274. "__id__": 135
  5275. }
  5276. ],
  5277. "_active": true,
  5278. "_components": [
  5279. {
  5280. "__id__": 139
  5281. },
  5282. {
  5283. "__id__": 140
  5284. },
  5285. {
  5286. "__id__": 141
  5287. },
  5288. {
  5289. "__id__": 142
  5290. }
  5291. ],
  5292. "_prefab": null,
  5293. "_lpos": {
  5294. "__type__": "cc.Vec3",
  5295. "x": 112.5,
  5296. "y": -81.51600000000002,
  5297. "z": 0
  5298. },
  5299. "_lrot": {
  5300. "__type__": "cc.Quat",
  5301. "x": 0,
  5302. "y": 0,
  5303. "z": 0,
  5304. "w": 1
  5305. },
  5306. "_lscale": {
  5307. "__type__": "cc.Vec3",
  5308. "x": 1,
  5309. "y": 1,
  5310. "z": 1
  5311. },
  5312. "_mobility": 0,
  5313. "_layer": 33554432,
  5314. "_euler": {
  5315. "__type__": "cc.Vec3",
  5316. "x": 0,
  5317. "y": 0,
  5318. "z": 0
  5319. },
  5320. "_id": "cfO7iDnEVHUq0MWKCnZtSG"
  5321. },
  5322. {
  5323. "__type__": "cc.Node",
  5324. "_name": "Label",
  5325. "_objFlags": 0,
  5326. "__editorExtras__": {},
  5327. "_parent": {
  5328. "__id__": 134
  5329. },
  5330. "_children": [],
  5331. "_active": true,
  5332. "_components": [
  5333. {
  5334. "__id__": 136
  5335. },
  5336. {
  5337. "__id__": 137
  5338. },
  5339. {
  5340. "__id__": 138
  5341. }
  5342. ],
  5343. "_prefab": null,
  5344. "_lpos": {
  5345. "__type__": "cc.Vec3",
  5346. "x": 0,
  5347. "y": -74.8,
  5348. "z": 0
  5349. },
  5350. "_lrot": {
  5351. "__type__": "cc.Quat",
  5352. "x": 0,
  5353. "y": 0,
  5354. "z": 0,
  5355. "w": 1
  5356. },
  5357. "_lscale": {
  5358. "__type__": "cc.Vec3",
  5359. "x": 1,
  5360. "y": 1,
  5361. "z": 1
  5362. },
  5363. "_mobility": 0,
  5364. "_layer": 33554432,
  5365. "_euler": {
  5366. "__type__": "cc.Vec3",
  5367. "x": 0,
  5368. "y": 0,
  5369. "z": 0
  5370. },
  5371. "_id": "e5M2HdvspC9qv3rmR8YXoG"
  5372. },
  5373. {
  5374. "__type__": "cc.UITransform",
  5375. "_name": "",
  5376. "_objFlags": 0,
  5377. "__editorExtras__": {},
  5378. "node": {
  5379. "__id__": 135
  5380. },
  5381. "_enabled": true,
  5382. "__prefab": null,
  5383. "_contentSize": {
  5384. "__type__": "cc.Size",
  5385. "width": 68.3349609375,
  5386. "height": 50.4
  5387. },
  5388. "_anchorPoint": {
  5389. "__type__": "cc.Vec2",
  5390. "x": 0.5,
  5391. "y": 0.5
  5392. },
  5393. "_id": "b7jPT7vu1GTK5pXUFf75ID"
  5394. },
  5395. {
  5396. "__type__": "cc.Label",
  5397. "_name": "",
  5398. "_objFlags": 0,
  5399. "__editorExtras__": {},
  5400. "node": {
  5401. "__id__": 135
  5402. },
  5403. "_enabled": true,
  5404. "__prefab": null,
  5405. "_customMaterial": null,
  5406. "_srcBlendFactor": 2,
  5407. "_dstBlendFactor": 4,
  5408. "_color": {
  5409. "__type__": "cc.Color",
  5410. "r": 255,
  5411. "g": 0,
  5412. "b": 0,
  5413. "a": 255
  5414. },
  5415. "_string": "升 级",
  5416. "_horizontalAlign": 1,
  5417. "_verticalAlign": 1,
  5418. "_actualFontSize": 30,
  5419. "_fontSize": 30,
  5420. "_fontFamily": "Arial",
  5421. "_lineHeight": 40,
  5422. "_overflow": 0,
  5423. "_enableWrapText": true,
  5424. "_font": null,
  5425. "_isSystemFontUsed": true,
  5426. "_spacingX": 0,
  5427. "_isItalic": false,
  5428. "_isBold": true,
  5429. "_isUnderline": false,
  5430. "_underlineHeight": 2,
  5431. "_cacheMode": 0,
  5432. "_enableOutline": false,
  5433. "_outlineColor": {
  5434. "__type__": "cc.Color",
  5435. "r": 0,
  5436. "g": 0,
  5437. "b": 0,
  5438. "a": 255
  5439. },
  5440. "_outlineWidth": 2,
  5441. "_enableShadow": false,
  5442. "_shadowColor": {
  5443. "__type__": "cc.Color",
  5444. "r": 0,
  5445. "g": 0,
  5446. "b": 0,
  5447. "a": 255
  5448. },
  5449. "_shadowOffset": {
  5450. "__type__": "cc.Vec2",
  5451. "x": 2,
  5452. "y": 2
  5453. },
  5454. "_shadowBlur": 2,
  5455. "_id": "653CrkYT1E16ie2cpZgEPa"
  5456. },
  5457. {
  5458. "__type__": "cc.Widget",
  5459. "_name": "",
  5460. "_objFlags": 0,
  5461. "__editorExtras__": {},
  5462. "node": {
  5463. "__id__": 135
  5464. },
  5465. "_enabled": true,
  5466. "__prefab": null,
  5467. "_alignFlags": 44,
  5468. "_target": null,
  5469. "_left": 15.83251953125,
  5470. "_right": 15.83251953125,
  5471. "_top": -50,
  5472. "_bottom": -50,
  5473. "_horizontalCenter": 0,
  5474. "_verticalCenter": 0,
  5475. "_isAbsLeft": true,
  5476. "_isAbsRight": true,
  5477. "_isAbsTop": true,
  5478. "_isAbsBottom": true,
  5479. "_isAbsHorizontalCenter": true,
  5480. "_isAbsVerticalCenter": true,
  5481. "_originalWidth": 80,
  5482. "_originalHeight": 0,
  5483. "_alignMode": 2,
  5484. "_lockFlags": 0,
  5485. "_id": "a15sZgp6JN2Ypsf+tT+TFg"
  5486. },
  5487. {
  5488. "__type__": "cc.UITransform",
  5489. "_name": "",
  5490. "_objFlags": 0,
  5491. "__editorExtras__": {},
  5492. "node": {
  5493. "__id__": 134
  5494. },
  5495. "_enabled": true,
  5496. "__prefab": null,
  5497. "_contentSize": {
  5498. "__type__": "cc.Size",
  5499. "width": 100,
  5500. "height": 100
  5501. },
  5502. "_anchorPoint": {
  5503. "__type__": "cc.Vec2",
  5504. "x": 0.5,
  5505. "y": 0.5
  5506. },
  5507. "_id": "3fxLzRT0JOCrgPscEKLJie"
  5508. },
  5509. {
  5510. "__type__": "cc.Sprite",
  5511. "_name": "",
  5512. "_objFlags": 0,
  5513. "__editorExtras__": {},
  5514. "node": {
  5515. "__id__": 134
  5516. },
  5517. "_enabled": true,
  5518. "__prefab": null,
  5519. "_customMaterial": null,
  5520. "_srcBlendFactor": 2,
  5521. "_dstBlendFactor": 4,
  5522. "_color": {
  5523. "__type__": "cc.Color",
  5524. "r": 255,
  5525. "g": 255,
  5526. "b": 255,
  5527. "a": 255
  5528. },
  5529. "_spriteFrame": {
  5530. "__uuid__": "b27240f8-03cb-4e22-8a7c-790d7fdf96a9@f9941",
  5531. "__expectedType__": "cc.SpriteFrame"
  5532. },
  5533. "_type": 1,
  5534. "_fillType": 0,
  5535. "_sizeMode": 0,
  5536. "_fillCenter": {
  5537. "__type__": "cc.Vec2",
  5538. "x": 0,
  5539. "y": 0
  5540. },
  5541. "_fillStart": 0,
  5542. "_fillRange": 0,
  5543. "_isTrimmedMode": true,
  5544. "_useGrayscale": false,
  5545. "_atlas": null,
  5546. "_id": "20SrRrIBZFw5UGYuZ1S224"
  5547. },
  5548. {
  5549. "__type__": "cc.Button",
  5550. "_name": "",
  5551. "_objFlags": 0,
  5552. "__editorExtras__": {},
  5553. "node": {
  5554. "__id__": 134
  5555. },
  5556. "_enabled": true,
  5557. "__prefab": null,
  5558. "clickEvents": [],
  5559. "_interactable": true,
  5560. "_transition": 3,
  5561. "_normalColor": {
  5562. "__type__": "cc.Color",
  5563. "r": 214,
  5564. "g": 214,
  5565. "b": 214,
  5566. "a": 255
  5567. },
  5568. "_hoverColor": {
  5569. "__type__": "cc.Color",
  5570. "r": 211,
  5571. "g": 211,
  5572. "b": 211,
  5573. "a": 255
  5574. },
  5575. "_pressedColor": {
  5576. "__type__": "cc.Color",
  5577. "r": 255,
  5578. "g": 255,
  5579. "b": 255,
  5580. "a": 255
  5581. },
  5582. "_disabledColor": {
  5583. "__type__": "cc.Color",
  5584. "r": 124,
  5585. "g": 124,
  5586. "b": 124,
  5587. "a": 255
  5588. },
  5589. "_normalSprite": {
  5590. "__uuid__": "b27240f8-03cb-4e22-8a7c-790d7fdf96a9@f9941",
  5591. "__expectedType__": "cc.SpriteFrame"
  5592. },
  5593. "_hoverSprite": {
  5594. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  5595. "__expectedType__": "cc.SpriteFrame"
  5596. },
  5597. "_pressedSprite": {
  5598. "__uuid__": "544e49d6-3f05-4fa8-9a9e-091f98fc2ce8@f9941",
  5599. "__expectedType__": "cc.SpriteFrame"
  5600. },
  5601. "_disabledSprite": {
  5602. "__uuid__": "951249e0-9f16-456d-8b85-a6ca954da16b@f9941",
  5603. "__expectedType__": "cc.SpriteFrame"
  5604. },
  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__": "f8c6e826-804d-4125-8e03-24f4ac450efe@f9941",
  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": null,
  11006. "_left": 0,
  11007. "_right": 0,
  11008. "_top": 0,
  11009. "_bottom": 0,
  11010. "_horizontalCenter": 0,
  11011. "_verticalCenter": 0,
  11012. "_isAbsLeft": true,
  11013. "_isAbsRight": true,
  11014. "_isAbsTop": true,
  11015. "_isAbsBottom": true,
  11016. "_isAbsHorizontalCenter": true,
  11017. "_isAbsVerticalCenter": true,
  11018. "_originalWidth": 100,
  11019. "_originalHeight": 100,
  11020. "_alignMode": 2,
  11021. "_lockFlags": 0,
  11022. "_id": "4cKqP5zRZMQIH1jaBeGYgE"
  11023. },
  11024. {
  11025. "__type__": "396408yA2VB1JTd4KlZ/lws",
  11026. "_name": "",
  11027. "_objFlags": 0,
  11028. "__editorExtras__": {},
  11029. "node": {
  11030. "__id__": 97
  11031. },
  11032. "_enabled": true,
  11033. "__prefab": null,
  11034. "_id": "cauJW4fFxMYbvm/ojqb8qy"
  11035. },
  11036. {
  11037. "__type__": "cc.Sprite",
  11038. "_name": "",
  11039. "_objFlags": 0,
  11040. "__editorExtras__": {},
  11041. "node": {
  11042. "__id__": 97
  11043. },
  11044. "_enabled": true,
  11045. "__prefab": null,
  11046. "_customMaterial": null,
  11047. "_srcBlendFactor": 2,
  11048. "_dstBlendFactor": 4,
  11049. "_color": {
  11050. "__type__": "cc.Color",
  11051. "r": 255,
  11052. "g": 255,
  11053. "b": 255,
  11054. "a": 255
  11055. },
  11056. "_spriteFrame": {
  11057. "__uuid__": "1ec19ffb-822e-46c7-814a-dc668a04afe9@79756",
  11058. "__expectedType__": "cc.SpriteFrame"
  11059. },
  11060. "_type": 0,
  11061. "_fillType": 0,
  11062. "_sizeMode": 0,
  11063. "_fillCenter": {
  11064. "__type__": "cc.Vec2",
  11065. "x": 0,
  11066. "y": 0
  11067. },
  11068. "_fillStart": 0,
  11069. "_fillRange": 0,
  11070. "_isTrimmedMode": true,
  11071. "_useGrayscale": false,
  11072. "_atlas": null,
  11073. "_id": "c1LTjCAtpMlZuTF/mJKncq"
  11074. },
  11075. {
  11076. "__type__": "cc.Node",
  11077. "_name": "BattleScene_Top",
  11078. "_objFlags": 0,
  11079. "__editorExtras__": {},
  11080. "_parent": {
  11081. "__id__": 5
  11082. },
  11083. "_children": [
  11084. {
  11085. "__id__": 293
  11086. },
  11087. {
  11088. "__id__": 298
  11089. },
  11090. {
  11091. "__id__": 310
  11092. },
  11093. {
  11094. "__id__": 322
  11095. }
  11096. ],
  11097. "_active": true,
  11098. "_components": [
  11099. {
  11100. "__id__": 326
  11101. },
  11102. {
  11103. "__id__": 327
  11104. },
  11105. {
  11106. "__id__": 328
  11107. },
  11108. {
  11109. "__id__": 329
  11110. }
  11111. ],
  11112. "_prefab": null,
  11113. "_lpos": {
  11114. "__type__": "cc.Vec3",
  11115. "x": 0,
  11116. "y": 300,
  11117. "z": 0
  11118. },
  11119. "_lrot": {
  11120. "__type__": "cc.Quat",
  11121. "x": 0,
  11122. "y": 0,
  11123. "z": 0,
  11124. "w": 1
  11125. },
  11126. "_lscale": {
  11127. "__type__": "cc.Vec3",
  11128. "x": 1,
  11129. "y": 1,
  11130. "z": 1
  11131. },
  11132. "_mobility": 0,
  11133. "_layer": 33554432,
  11134. "_euler": {
  11135. "__type__": "cc.Vec3",
  11136. "x": 0,
  11137. "y": 0,
  11138. "z": 0
  11139. },
  11140. "_id": "98RbnCkPlCn4dXP1A5UIcO"
  11141. },
  11142. {
  11143. "__type__": "cc.Node",
  11144. "_name": "_btnReturn",
  11145. "_objFlags": 0,
  11146. "__editorExtras__": {},
  11147. "_parent": {
  11148. "__id__": 292
  11149. },
  11150. "_children": [],
  11151. "_active": true,
  11152. "_components": [
  11153. {
  11154. "__id__": 294
  11155. },
  11156. {
  11157. "__id__": 295
  11158. },
  11159. {
  11160. "__id__": 296
  11161. },
  11162. {
  11163. "__id__": 297
  11164. }
  11165. ],
  11166. "_prefab": null,
  11167. "_lpos": {
  11168. "__type__": "cc.Vec3",
  11169. "x": 540,
  11170. "y": 0,
  11171. "z": 0
  11172. },
  11173. "_lrot": {
  11174. "__type__": "cc.Quat",
  11175. "x": 0,
  11176. "y": 0,
  11177. "z": 0,
  11178. "w": 1
  11179. },
  11180. "_lscale": {
  11181. "__type__": "cc.Vec3",
  11182. "x": 1,
  11183. "y": 1,
  11184. "z": 1
  11185. },
  11186. "_mobility": 0,
  11187. "_layer": 33554432,
  11188. "_euler": {
  11189. "__type__": "cc.Vec3",
  11190. "x": 0,
  11191. "y": 0,
  11192. "z": 0
  11193. },
  11194. "_id": "293EMRs9VF7olt2j1KzxyF"
  11195. },
  11196. {
  11197. "__type__": "cc.UITransform",
  11198. "_name": "",
  11199. "_objFlags": 0,
  11200. "__editorExtras__": {},
  11201. "node": {
  11202. "__id__": 293
  11203. },
  11204. "_enabled": true,
  11205. "__prefab": null,
  11206. "_contentSize": {
  11207. "__type__": "cc.Size",
  11208. "width": 60,
  11209. "height": 60
  11210. },
  11211. "_anchorPoint": {
  11212. "__type__": "cc.Vec2",
  11213. "x": 0.5,
  11214. "y": 0.5
  11215. },
  11216. "_id": "85+6RLdoZIq7VKoxSVK59s"
  11217. },
  11218. {
  11219. "__type__": "cc.Sprite",
  11220. "_name": "",
  11221. "_objFlags": 0,
  11222. "__editorExtras__": {},
  11223. "node": {
  11224. "__id__": 293
  11225. },
  11226. "_enabled": true,
  11227. "__prefab": null,
  11228. "_customMaterial": null,
  11229. "_srcBlendFactor": 2,
  11230. "_dstBlendFactor": 4,
  11231. "_color": {
  11232. "__type__": "cc.Color",
  11233. "r": 255,
  11234. "g": 255,
  11235. "b": 255,
  11236. "a": 255
  11237. },
  11238. "_spriteFrame": {
  11239. "__uuid__": "c00b279f-801e-4e6d-a02e-0a9604678070@09c2b",
  11240. "__expectedType__": "cc.SpriteFrame"
  11241. },
  11242. "_type": 1,
  11243. "_fillType": 0,
  11244. "_sizeMode": 0,
  11245. "_fillCenter": {
  11246. "__type__": "cc.Vec2",
  11247. "x": 0,
  11248. "y": 0
  11249. },
  11250. "_fillStart": 0,
  11251. "_fillRange": 0,
  11252. "_isTrimmedMode": true,
  11253. "_useGrayscale": false,
  11254. "_atlas": null,
  11255. "_id": "89JNg7JWpFnau/GheErNFN"
  11256. },
  11257. {
  11258. "__type__": "cc.Button",
  11259. "_name": "",
  11260. "_objFlags": 0,
  11261. "__editorExtras__": {},
  11262. "node": {
  11263. "__id__": 293
  11264. },
  11265. "_enabled": true,
  11266. "__prefab": null,
  11267. "clickEvents": [],
  11268. "_interactable": true,
  11269. "_transition": 2,
  11270. "_normalColor": {
  11271. "__type__": "cc.Color",
  11272. "r": 214,
  11273. "g": 214,
  11274. "b": 214,
  11275. "a": 255
  11276. },
  11277. "_hoverColor": {
  11278. "__type__": "cc.Color",
  11279. "r": 211,
  11280. "g": 211,
  11281. "b": 211,
  11282. "a": 255
  11283. },
  11284. "_pressedColor": {
  11285. "__type__": "cc.Color",
  11286. "r": 255,
  11287. "g": 255,
  11288. "b": 255,
  11289. "a": 255
  11290. },
  11291. "_disabledColor": {
  11292. "__type__": "cc.Color",
  11293. "r": 124,
  11294. "g": 124,
  11295. "b": 124,
  11296. "a": 255
  11297. },
  11298. "_normalSprite": {
  11299. "__uuid__": "c00b279f-801e-4e6d-a02e-0a9604678070@09c2b",
  11300. "__expectedType__": "cc.SpriteFrame"
  11301. },
  11302. "_hoverSprite": null,
  11303. "_pressedSprite": {
  11304. "__uuid__": "c00b279f-801e-4e6d-a02e-0a9604678070@f4bf7",
  11305. "__expectedType__": "cc.SpriteFrame"
  11306. },
  11307. "_disabledSprite": null,
  11308. "_duration": 0.1,
  11309. "_zoomScale": 1.2,
  11310. "_target": {
  11311. "__id__": 293
  11312. },
  11313. "_id": "b58Mqv/khPI5WKIjtSMudF"
  11314. },
  11315. {
  11316. "__type__": "cc.Widget",
  11317. "_name": "",
  11318. "_objFlags": 0,
  11319. "__editorExtras__": {},
  11320. "node": {
  11321. "__id__": 293
  11322. },
  11323. "_enabled": true,
  11324. "__prefab": null,
  11325. "_alignFlags": 32,
  11326. "_target": null,
  11327. "_left": 0,
  11328. "_right": 70,
  11329. "_top": 0,
  11330. "_bottom": 0,
  11331. "_horizontalCenter": 0,
  11332. "_verticalCenter": 0,
  11333. "_isAbsLeft": true,
  11334. "_isAbsRight": true,
  11335. "_isAbsTop": true,
  11336. "_isAbsBottom": true,
  11337. "_isAbsHorizontalCenter": true,
  11338. "_isAbsVerticalCenter": true,
  11339. "_originalWidth": 0,
  11340. "_originalHeight": 0,
  11341. "_alignMode": 2,
  11342. "_lockFlags": 0,
  11343. "_id": "87U3xyoE1BlKjcU4JFeohC"
  11344. },
  11345. {
  11346. "__type__": "cc.Node",
  11347. "_name": "Gold",
  11348. "_objFlags": 0,
  11349. "__editorExtras__": {},
  11350. "_parent": {
  11351. "__id__": 292
  11352. },
  11353. "_children": [
  11354. {
  11355. "__id__": 299
  11356. },
  11357. {
  11358. "__id__": 303
  11359. }
  11360. ],
  11361. "_active": true,
  11362. "_components": [
  11363. {
  11364. "__id__": 307
  11365. },
  11366. {
  11367. "__id__": 308
  11368. },
  11369. {
  11370. "__id__": 309
  11371. }
  11372. ],
  11373. "_prefab": null,
  11374. "_lpos": {
  11375. "__type__": "cc.Vec3",
  11376. "x": 40,
  11377. "y": 0,
  11378. "z": 0
  11379. },
  11380. "_lrot": {
  11381. "__type__": "cc.Quat",
  11382. "x": 0,
  11383. "y": 0,
  11384. "z": 0,
  11385. "w": 1
  11386. },
  11387. "_lscale": {
  11388. "__type__": "cc.Vec3",
  11389. "x": 1,
  11390. "y": 1,
  11391. "z": 1
  11392. },
  11393. "_mobility": 0,
  11394. "_layer": 33554432,
  11395. "_euler": {
  11396. "__type__": "cc.Vec3",
  11397. "x": 0,
  11398. "y": 0,
  11399. "z": 0
  11400. },
  11401. "_id": "ac4HjOZ+dJFq/ytifE3rAo"
  11402. },
  11403. {
  11404. "__type__": "cc.Node",
  11405. "_name": "_gold",
  11406. "_objFlags": 0,
  11407. "__editorExtras__": {},
  11408. "_parent": {
  11409. "__id__": 298
  11410. },
  11411. "_children": [],
  11412. "_active": true,
  11413. "_components": [
  11414. {
  11415. "__id__": 300
  11416. },
  11417. {
  11418. "__id__": 301
  11419. },
  11420. {
  11421. "__id__": 302
  11422. }
  11423. ],
  11424. "_prefab": null,
  11425. "_lpos": {
  11426. "__type__": "cc.Vec3",
  11427. "x": 2.24609375,
  11428. "y": 0,
  11429. "z": 0
  11430. },
  11431. "_lrot": {
  11432. "__type__": "cc.Quat",
  11433. "x": 0,
  11434. "y": 0,
  11435. "z": 0,
  11436. "w": 1
  11437. },
  11438. "_lscale": {
  11439. "__type__": "cc.Vec3",
  11440. "x": 1,
  11441. "y": 1,
  11442. "z": 1
  11443. },
  11444. "_mobility": 0,
  11445. "_layer": 33554432,
  11446. "_euler": {
  11447. "__type__": "cc.Vec3",
  11448. "x": 0,
  11449. "y": 0,
  11450. "z": 0
  11451. },
  11452. "_id": "1end2mh39BhZv9CUdGm8jg"
  11453. },
  11454. {
  11455. "__type__": "cc.UITransform",
  11456. "_name": "",
  11457. "_objFlags": 0,
  11458. "__editorExtras__": {},
  11459. "node": {
  11460. "__id__": 299
  11461. },
  11462. "_enabled": true,
  11463. "__prefab": null,
  11464. "_contentSize": {
  11465. "__type__": "cc.Size",
  11466. "width": 44.4921875,
  11467. "height": 50.4
  11468. },
  11469. "_anchorPoint": {
  11470. "__type__": "cc.Vec2",
  11471. "x": 0.5,
  11472. "y": 0.5
  11473. },
  11474. "_id": "69NZ0VtGRGK7/MKzDch25P"
  11475. },
  11476. {
  11477. "__type__": "cc.Label",
  11478. "_name": "",
  11479. "_objFlags": 0,
  11480. "__editorExtras__": {},
  11481. "node": {
  11482. "__id__": 299
  11483. },
  11484. "_enabled": true,
  11485. "__prefab": null,
  11486. "_customMaterial": null,
  11487. "_srcBlendFactor": 2,
  11488. "_dstBlendFactor": 4,
  11489. "_color": {
  11490. "__type__": "cc.Color",
  11491. "r": 255,
  11492. "g": 255,
  11493. "b": 255,
  11494. "a": 255
  11495. },
  11496. "_string": "1000",
  11497. "_horizontalAlign": 1,
  11498. "_verticalAlign": 1,
  11499. "_actualFontSize": 20,
  11500. "_fontSize": 20,
  11501. "_fontFamily": "Arial",
  11502. "_lineHeight": 40,
  11503. "_overflow": 0,
  11504. "_enableWrapText": true,
  11505. "_font": null,
  11506. "_isSystemFontUsed": true,
  11507. "_spacingX": 0,
  11508. "_isItalic": false,
  11509. "_isBold": false,
  11510. "_isUnderline": false,
  11511. "_underlineHeight": 2,
  11512. "_cacheMode": 0,
  11513. "_enableOutline": false,
  11514. "_outlineColor": {
  11515. "__type__": "cc.Color",
  11516. "r": 0,
  11517. "g": 0,
  11518. "b": 0,
  11519. "a": 255
  11520. },
  11521. "_outlineWidth": 2,
  11522. "_enableShadow": false,
  11523. "_shadowColor": {
  11524. "__type__": "cc.Color",
  11525. "r": 0,
  11526. "g": 0,
  11527. "b": 0,
  11528. "a": 255
  11529. },
  11530. "_shadowOffset": {
  11531. "__type__": "cc.Vec2",
  11532. "x": 2,
  11533. "y": 2
  11534. },
  11535. "_shadowBlur": 2,
  11536. "_id": "8c/UI1bLVBK5ZrWCMrp+YR"
  11537. },
  11538. {
  11539. "__type__": "cc.Widget",
  11540. "_name": "",
  11541. "_objFlags": 0,
  11542. "__editorExtras__": {},
  11543. "node": {
  11544. "__id__": 299
  11545. },
  11546. "_enabled": true,
  11547. "__prefab": null,
  11548. "_alignFlags": 8,
  11549. "_target": null,
  11550. "_left": 80,
  11551. "_right": 0,
  11552. "_top": 0,
  11553. "_bottom": 0,
  11554. "_horizontalCenter": 0,
  11555. "_verticalCenter": 0,
  11556. "_isAbsLeft": true,
  11557. "_isAbsRight": true,
  11558. "_isAbsTop": true,
  11559. "_isAbsBottom": true,
  11560. "_isAbsHorizontalCenter": true,
  11561. "_isAbsVerticalCenter": true,
  11562. "_originalWidth": 0,
  11563. "_originalHeight": 0,
  11564. "_alignMode": 2,
  11565. "_lockFlags": 0,
  11566. "_id": "06Q9sqXg1MFLbvPt7IETbW"
  11567. },
  11568. {
  11569. "__type__": "cc.Node",
  11570. "_name": "Gold",
  11571. "_objFlags": 0,
  11572. "__editorExtras__": {},
  11573. "_parent": {
  11574. "__id__": 298
  11575. },
  11576. "_children": [],
  11577. "_active": true,
  11578. "_components": [
  11579. {
  11580. "__id__": 304
  11581. },
  11582. {
  11583. "__id__": 305
  11584. },
  11585. {
  11586. "__id__": 306
  11587. }
  11588. ],
  11589. "_prefab": null,
  11590. "_lpos": {
  11591. "__type__": "cc.Vec3",
  11592. "x": -84.5,
  11593. "y": 0,
  11594. "z": 0
  11595. },
  11596. "_lrot": {
  11597. "__type__": "cc.Quat",
  11598. "x": 0,
  11599. "y": 0,
  11600. "z": 0,
  11601. "w": 1
  11602. },
  11603. "_lscale": {
  11604. "__type__": "cc.Vec3",
  11605. "x": 1,
  11606. "y": 1,
  11607. "z": 1
  11608. },
  11609. "_mobility": 0,
  11610. "_layer": 33554432,
  11611. "_euler": {
  11612. "__type__": "cc.Vec3",
  11613. "x": 0,
  11614. "y": 0,
  11615. "z": 0
  11616. },
  11617. "_id": "36HDQ7HFlK8oTpTL8cpCqc"
  11618. },
  11619. {
  11620. "__type__": "cc.UITransform",
  11621. "_name": "",
  11622. "_objFlags": 0,
  11623. "__editorExtras__": {},
  11624. "node": {
  11625. "__id__": 303
  11626. },
  11627. "_enabled": true,
  11628. "__prefab": null,
  11629. "_contentSize": {
  11630. "__type__": "cc.Size",
  11631. "width": 63,
  11632. "height": 63
  11633. },
  11634. "_anchorPoint": {
  11635. "__type__": "cc.Vec2",
  11636. "x": 0.5,
  11637. "y": 0.5
  11638. },
  11639. "_id": "e38Y8Kgp5EZaeCufrGtPdM"
  11640. },
  11641. {
  11642. "__type__": "cc.Sprite",
  11643. "_name": "",
  11644. "_objFlags": 0,
  11645. "__editorExtras__": {},
  11646. "node": {
  11647. "__id__": 303
  11648. },
  11649. "_enabled": true,
  11650. "__prefab": null,
  11651. "_customMaterial": null,
  11652. "_srcBlendFactor": 2,
  11653. "_dstBlendFactor": 4,
  11654. "_color": {
  11655. "__type__": "cc.Color",
  11656. "r": 255,
  11657. "g": 255,
  11658. "b": 255,
  11659. "a": 255
  11660. },
  11661. "_spriteFrame": {
  11662. "__uuid__": "e8e087cb-8f3f-4bdb-9384-6b77824b1b49@f9941",
  11663. "__expectedType__": "cc.SpriteFrame"
  11664. },
  11665. "_type": 0,
  11666. "_fillType": 0,
  11667. "_sizeMode": 1,
  11668. "_fillCenter": {
  11669. "__type__": "cc.Vec2",
  11670. "x": 0,
  11671. "y": 0
  11672. },
  11673. "_fillStart": 0,
  11674. "_fillRange": 0,
  11675. "_isTrimmedMode": true,
  11676. "_useGrayscale": false,
  11677. "_atlas": null,
  11678. "_id": "a6JXqgFZFCTpSuVox7V34o"
  11679. },
  11680. {
  11681. "__type__": "cc.Widget",
  11682. "_name": "",
  11683. "_objFlags": 0,
  11684. "__editorExtras__": {},
  11685. "node": {
  11686. "__id__": 303
  11687. },
  11688. "_enabled": true,
  11689. "__prefab": null,
  11690. "_alignFlags": 8,
  11691. "_target": null,
  11692. "_left": -16,
  11693. "_right": 0,
  11694. "_top": 0,
  11695. "_bottom": 0,
  11696. "_horizontalCenter": 0,
  11697. "_verticalCenter": 0,
  11698. "_isAbsLeft": true,
  11699. "_isAbsRight": true,
  11700. "_isAbsTop": true,
  11701. "_isAbsBottom": true,
  11702. "_isAbsHorizontalCenter": true,
  11703. "_isAbsVerticalCenter": true,
  11704. "_originalWidth": 0,
  11705. "_originalHeight": 0,
  11706. "_alignMode": 2,
  11707. "_lockFlags": 0,
  11708. "_id": "5fWaeMvxdFS5VWlKtE8p1h"
  11709. },
  11710. {
  11711. "__type__": "cc.UITransform",
  11712. "_name": "",
  11713. "_objFlags": 0,
  11714. "__editorExtras__": {},
  11715. "node": {
  11716. "__id__": 298
  11717. },
  11718. "_enabled": true,
  11719. "__prefab": null,
  11720. "_contentSize": {
  11721. "__type__": "cc.Size",
  11722. "width": 200,
  11723. "height": 52
  11724. },
  11725. "_anchorPoint": {
  11726. "__type__": "cc.Vec2",
  11727. "x": 0.5,
  11728. "y": 0.5
  11729. },
  11730. "_id": "a75cFwafVIy68ja7DW0Ne1"
  11731. },
  11732. {
  11733. "__type__": "cc.Sprite",
  11734. "_name": "",
  11735. "_objFlags": 0,
  11736. "__editorExtras__": {},
  11737. "node": {
  11738. "__id__": 298
  11739. },
  11740. "_enabled": true,
  11741. "__prefab": null,
  11742. "_customMaterial": null,
  11743. "_srcBlendFactor": 2,
  11744. "_dstBlendFactor": 4,
  11745. "_color": {
  11746. "__type__": "cc.Color",
  11747. "r": 255,
  11748. "g": 255,
  11749. "b": 255,
  11750. "a": 255
  11751. },
  11752. "_spriteFrame": {
  11753. "__uuid__": "9dd292b2-f288-4de4-9392-fa4784e3ddff@f9941",
  11754. "__expectedType__": "cc.SpriteFrame"
  11755. },
  11756. "_type": 0,
  11757. "_fillType": 0,
  11758. "_sizeMode": 0,
  11759. "_fillCenter": {
  11760. "__type__": "cc.Vec2",
  11761. "x": 0,
  11762. "y": 0
  11763. },
  11764. "_fillStart": 0,
  11765. "_fillRange": 0,
  11766. "_isTrimmedMode": true,
  11767. "_useGrayscale": false,
  11768. "_atlas": null,
  11769. "_id": "f3uWlFRsFC/pCIFkCrIoPH"
  11770. },
  11771. {
  11772. "__type__": "cc.Widget",
  11773. "_name": "",
  11774. "_objFlags": 0,
  11775. "__editorExtras__": {},
  11776. "node": {
  11777. "__id__": 298
  11778. },
  11779. "_enabled": true,
  11780. "__prefab": null,
  11781. "_alignFlags": 37,
  11782. "_target": null,
  11783. "_left": 620,
  11784. "_right": 500,
  11785. "_top": 34,
  11786. "_bottom": 34,
  11787. "_horizontalCenter": 0,
  11788. "_verticalCenter": 0,
  11789. "_isAbsLeft": true,
  11790. "_isAbsRight": true,
  11791. "_isAbsTop": true,
  11792. "_isAbsBottom": true,
  11793. "_isAbsHorizontalCenter": true,
  11794. "_isAbsVerticalCenter": true,
  11795. "_originalWidth": 40,
  11796. "_originalHeight": 36,
  11797. "_alignMode": 2,
  11798. "_lockFlags": 0,
  11799. "_id": "b5E9YwKflGG42AnO3DUzqN"
  11800. },
  11801. {
  11802. "__type__": "cc.Node",
  11803. "_name": "Diamond",
  11804. "_objFlags": 0,
  11805. "__editorExtras__": {},
  11806. "_parent": {
  11807. "__id__": 292
  11808. },
  11809. "_children": [
  11810. {
  11811. "__id__": 311
  11812. },
  11813. {
  11814. "__id__": 315
  11815. }
  11816. ],
  11817. "_active": true,
  11818. "_components": [
  11819. {
  11820. "__id__": 319
  11821. },
  11822. {
  11823. "__id__": 320
  11824. },
  11825. {
  11826. "__id__": 321
  11827. }
  11828. ],
  11829. "_prefab": null,
  11830. "_lpos": {
  11831. "__type__": "cc.Vec3",
  11832. "x": 277.459,
  11833. "y": 0,
  11834. "z": 0
  11835. },
  11836. "_lrot": {
  11837. "__type__": "cc.Quat",
  11838. "x": 0,
  11839. "y": 0,
  11840. "z": 0,
  11841. "w": 1
  11842. },
  11843. "_lscale": {
  11844. "__type__": "cc.Vec3",
  11845. "x": 1,
  11846. "y": 1,
  11847. "z": 1
  11848. },
  11849. "_mobility": 0,
  11850. "_layer": 33554432,
  11851. "_euler": {
  11852. "__type__": "cc.Vec3",
  11853. "x": 0,
  11854. "y": 0,
  11855. "z": 0
  11856. },
  11857. "_id": "a0YOT6gSlJMITNjB60/CYw"
  11858. },
  11859. {
  11860. "__type__": "cc.Node",
  11861. "_name": "_diamond",
  11862. "_objFlags": 0,
  11863. "__editorExtras__": {},
  11864. "_parent": {
  11865. "__id__": 310
  11866. },
  11867. "_children": [],
  11868. "_active": true,
  11869. "_components": [
  11870. {
  11871. "__id__": 312
  11872. },
  11873. {
  11874. "__id__": 313
  11875. },
  11876. {
  11877. "__id__": 314
  11878. }
  11879. ],
  11880. "_prefab": null,
  11881. "_lpos": {
  11882. "__type__": "cc.Vec3",
  11883. "x": -13.3154296875,
  11884. "y": 0,
  11885. "z": 0
  11886. },
  11887. "_lrot": {
  11888. "__type__": "cc.Quat",
  11889. "x": 0,
  11890. "y": 0,
  11891. "z": 0,
  11892. "w": 1
  11893. },
  11894. "_lscale": {
  11895. "__type__": "cc.Vec3",
  11896. "x": 1,
  11897. "y": 1,
  11898. "z": 1
  11899. },
  11900. "_mobility": 0,
  11901. "_layer": 33554432,
  11902. "_euler": {
  11903. "__type__": "cc.Vec3",
  11904. "x": 0,
  11905. "y": 0,
  11906. "z": 0
  11907. },
  11908. "_id": "9fwZPQvBhLrJT6rJwZovjV"
  11909. },
  11910. {
  11911. "__type__": "cc.UITransform",
  11912. "_name": "",
  11913. "_objFlags": 0,
  11914. "__editorExtras__": {},
  11915. "node": {
  11916. "__id__": 311
  11917. },
  11918. "_enabled": true,
  11919. "__prefab": null,
  11920. "_contentSize": {
  11921. "__type__": "cc.Size",
  11922. "width": 33.369140625,
  11923. "height": 50.4
  11924. },
  11925. "_anchorPoint": {
  11926. "__type__": "cc.Vec2",
  11927. "x": 0.5,
  11928. "y": 0.5
  11929. },
  11930. "_id": "44gNLqUsRAAagdN/2qVp+O"
  11931. },
  11932. {
  11933. "__type__": "cc.Label",
  11934. "_name": "",
  11935. "_objFlags": 0,
  11936. "__editorExtras__": {},
  11937. "node": {
  11938. "__id__": 311
  11939. },
  11940. "_enabled": true,
  11941. "__prefab": null,
  11942. "_customMaterial": null,
  11943. "_srcBlendFactor": 2,
  11944. "_dstBlendFactor": 4,
  11945. "_color": {
  11946. "__type__": "cc.Color",
  11947. "r": 255,
  11948. "g": 255,
  11949. "b": 255,
  11950. "a": 255
  11951. },
  11952. "_string": "200",
  11953. "_horizontalAlign": 1,
  11954. "_verticalAlign": 1,
  11955. "_actualFontSize": 20,
  11956. "_fontSize": 20,
  11957. "_fontFamily": "Arial",
  11958. "_lineHeight": 40,
  11959. "_overflow": 0,
  11960. "_enableWrapText": true,
  11961. "_font": null,
  11962. "_isSystemFontUsed": true,
  11963. "_spacingX": 0,
  11964. "_isItalic": false,
  11965. "_isBold": false,
  11966. "_isUnderline": false,
  11967. "_underlineHeight": 2,
  11968. "_cacheMode": 0,
  11969. "_enableOutline": false,
  11970. "_outlineColor": {
  11971. "__type__": "cc.Color",
  11972. "r": 0,
  11973. "g": 0,
  11974. "b": 0,
  11975. "a": 255
  11976. },
  11977. "_outlineWidth": 2,
  11978. "_enableShadow": false,
  11979. "_shadowColor": {
  11980. "__type__": "cc.Color",
  11981. "r": 0,
  11982. "g": 0,
  11983. "b": 0,
  11984. "a": 255
  11985. },
  11986. "_shadowOffset": {
  11987. "__type__": "cc.Vec2",
  11988. "x": 2,
  11989. "y": 2
  11990. },
  11991. "_shadowBlur": 2,
  11992. "_id": "4f8C1K+atOkpO5jWArOr5g"
  11993. },
  11994. {
  11995. "__type__": "cc.Widget",
  11996. "_name": "",
  11997. "_objFlags": 0,
  11998. "__editorExtras__": {},
  11999. "node": {
  12000. "__id__": 311
  12001. },
  12002. "_enabled": true,
  12003. "__prefab": null,
  12004. "_alignFlags": 8,
  12005. "_target": null,
  12006. "_left": 70,
  12007. "_right": 0,
  12008. "_top": 0,
  12009. "_bottom": 0,
  12010. "_horizontalCenter": 0,
  12011. "_verticalCenter": 0,
  12012. "_isAbsLeft": true,
  12013. "_isAbsRight": true,
  12014. "_isAbsTop": true,
  12015. "_isAbsBottom": true,
  12016. "_isAbsHorizontalCenter": true,
  12017. "_isAbsVerticalCenter": true,
  12018. "_originalWidth": 0,
  12019. "_originalHeight": 0,
  12020. "_alignMode": 2,
  12021. "_lockFlags": 0,
  12022. "_id": "dbOxRuDWJFRq4IBikTMV8g"
  12023. },
  12024. {
  12025. "__type__": "cc.Node",
  12026. "_name": "Diamond",
  12027. "_objFlags": 0,
  12028. "__editorExtras__": {},
  12029. "_parent": {
  12030. "__id__": 310
  12031. },
  12032. "_children": [],
  12033. "_active": true,
  12034. "_components": [
  12035. {
  12036. "__id__": 316
  12037. },
  12038. {
  12039. "__id__": 317
  12040. },
  12041. {
  12042. "__id__": 318
  12043. }
  12044. ],
  12045. "_prefab": null,
  12046. "_lpos": {
  12047. "__type__": "cc.Vec3",
  12048. "x": -85,
  12049. "y": 0,
  12050. "z": 0
  12051. },
  12052. "_lrot": {
  12053. "__type__": "cc.Quat",
  12054. "x": 0,
  12055. "y": 0,
  12056. "z": 0,
  12057. "w": 1
  12058. },
  12059. "_lscale": {
  12060. "__type__": "cc.Vec3",
  12061. "x": 1,
  12062. "y": 1,
  12063. "z": 1
  12064. },
  12065. "_mobility": 0,
  12066. "_layer": 33554432,
  12067. "_euler": {
  12068. "__type__": "cc.Vec3",
  12069. "x": 0,
  12070. "y": 0,
  12071. "z": 0
  12072. },
  12073. "_id": "a8uZW/k+xEBq4+zVwa0uOL"
  12074. },
  12075. {
  12076. "__type__": "cc.UITransform",
  12077. "_name": "",
  12078. "_objFlags": 0,
  12079. "__editorExtras__": {},
  12080. "node": {
  12081. "__id__": 315
  12082. },
  12083. "_enabled": true,
  12084. "__prefab": null,
  12085. "_contentSize": {
  12086. "__type__": "cc.Size",
  12087. "width": 62,
  12088. "height": 85
  12089. },
  12090. "_anchorPoint": {
  12091. "__type__": "cc.Vec2",
  12092. "x": 0.5,
  12093. "y": 0.5
  12094. },
  12095. "_id": "640VPIgzROYa98srvj9kVM"
  12096. },
  12097. {
  12098. "__type__": "cc.Sprite",
  12099. "_name": "",
  12100. "_objFlags": 0,
  12101. "__editorExtras__": {},
  12102. "node": {
  12103. "__id__": 315
  12104. },
  12105. "_enabled": true,
  12106. "__prefab": null,
  12107. "_customMaterial": null,
  12108. "_srcBlendFactor": 2,
  12109. "_dstBlendFactor": 4,
  12110. "_color": {
  12111. "__type__": "cc.Color",
  12112. "r": 255,
  12113. "g": 255,
  12114. "b": 255,
  12115. "a": 255
  12116. },
  12117. "_spriteFrame": {
  12118. "__uuid__": "8fb550b5-7ae2-4a5f-8a95-454c0cf55b0f@f9941",
  12119. "__expectedType__": "cc.SpriteFrame"
  12120. },
  12121. "_type": 0,
  12122. "_fillType": 0,
  12123. "_sizeMode": 1,
  12124. "_fillCenter": {
  12125. "__type__": "cc.Vec2",
  12126. "x": 0,
  12127. "y": 0
  12128. },
  12129. "_fillStart": 0,
  12130. "_fillRange": 0,
  12131. "_isTrimmedMode": true,
  12132. "_useGrayscale": false,
  12133. "_atlas": null,
  12134. "_id": "a9amap96lPfayRRNZ57jD3"
  12135. },
  12136. {
  12137. "__type__": "cc.Widget",
  12138. "_name": "",
  12139. "_objFlags": 0,
  12140. "__editorExtras__": {},
  12141. "node": {
  12142. "__id__": 315
  12143. },
  12144. "_enabled": true,
  12145. "__prefab": null,
  12146. "_alignFlags": 8,
  12147. "_target": null,
  12148. "_left": -16,
  12149. "_right": 0,
  12150. "_top": 0,
  12151. "_bottom": 0,
  12152. "_horizontalCenter": 0,
  12153. "_verticalCenter": 0,
  12154. "_isAbsLeft": true,
  12155. "_isAbsRight": true,
  12156. "_isAbsTop": true,
  12157. "_isAbsBottom": true,
  12158. "_isAbsHorizontalCenter": true,
  12159. "_isAbsVerticalCenter": true,
  12160. "_originalWidth": 0,
  12161. "_originalHeight": 0,
  12162. "_alignMode": 2,
  12163. "_lockFlags": 0,
  12164. "_id": "dcIYm5RZxD+aSuBxGiAZq7"
  12165. },
  12166. {
  12167. "__type__": "cc.UITransform",
  12168. "_name": "",
  12169. "_objFlags": 0,
  12170. "__editorExtras__": {},
  12171. "node": {
  12172. "__id__": 310
  12173. },
  12174. "_enabled": true,
  12175. "__prefab": null,
  12176. "_contentSize": {
  12177. "__type__": "cc.Size",
  12178. "width": 200,
  12179. "height": 52
  12180. },
  12181. "_anchorPoint": {
  12182. "__type__": "cc.Vec2",
  12183. "x": 0.5,
  12184. "y": 0.5
  12185. },
  12186. "_id": "01ODoPlLRBU4OIsS9fp62o"
  12187. },
  12188. {
  12189. "__type__": "cc.Sprite",
  12190. "_name": "",
  12191. "_objFlags": 0,
  12192. "__editorExtras__": {},
  12193. "node": {
  12194. "__id__": 310
  12195. },
  12196. "_enabled": true,
  12197. "__prefab": null,
  12198. "_customMaterial": null,
  12199. "_srcBlendFactor": 2,
  12200. "_dstBlendFactor": 4,
  12201. "_color": {
  12202. "__type__": "cc.Color",
  12203. "r": 255,
  12204. "g": 255,
  12205. "b": 255,
  12206. "a": 255
  12207. },
  12208. "_spriteFrame": {
  12209. "__uuid__": "9dd292b2-f288-4de4-9392-fa4784e3ddff@f9941",
  12210. "__expectedType__": "cc.SpriteFrame"
  12211. },
  12212. "_type": 0,
  12213. "_fillType": 0,
  12214. "_sizeMode": 0,
  12215. "_fillCenter": {
  12216. "__type__": "cc.Vec2",
  12217. "x": 0,
  12218. "y": 0
  12219. },
  12220. "_fillStart": 0,
  12221. "_fillRange": 0,
  12222. "_isTrimmedMode": true,
  12223. "_useGrayscale": false,
  12224. "_atlas": null,
  12225. "_id": "64uwq+qkRCC49Pqg2ayDtm"
  12226. },
  12227. {
  12228. "__type__": "cc.Widget",
  12229. "_name": "",
  12230. "_objFlags": 0,
  12231. "__editorExtras__": {},
  12232. "node": {
  12233. "__id__": 310
  12234. },
  12235. "_enabled": true,
  12236. "__prefab": null,
  12237. "_alignFlags": 37,
  12238. "_target": null,
  12239. "_left": 620,
  12240. "_right": 262.541,
  12241. "_top": 34,
  12242. "_bottom": 34,
  12243. "_horizontalCenter": 0,
  12244. "_verticalCenter": 0,
  12245. "_isAbsLeft": true,
  12246. "_isAbsRight": true,
  12247. "_isAbsTop": true,
  12248. "_isAbsBottom": true,
  12249. "_isAbsHorizontalCenter": true,
  12250. "_isAbsVerticalCenter": true,
  12251. "_originalWidth": 40,
  12252. "_originalHeight": 36,
  12253. "_alignMode": 2,
  12254. "_lockFlags": 0,
  12255. "_id": "77o1VArflF5adNoCjwDw6V"
  12256. },
  12257. {
  12258. "__type__": "cc.Node",
  12259. "_name": "_battleMode",
  12260. "_objFlags": 0,
  12261. "__editorExtras__": {},
  12262. "_parent": {
  12263. "__id__": 292
  12264. },
  12265. "_children": [],
  12266. "_active": true,
  12267. "_components": [
  12268. {
  12269. "__id__": 323
  12270. },
  12271. {
  12272. "__id__": 324
  12273. },
  12274. {
  12275. "__id__": 325
  12276. }
  12277. ],
  12278. "_prefab": null,
  12279. "_lpos": {
  12280. "__type__": "cc.Vec3",
  12281. "x": -360,
  12282. "y": 0,
  12283. "z": 0
  12284. },
  12285. "_lrot": {
  12286. "__type__": "cc.Quat",
  12287. "x": 0,
  12288. "y": 0,
  12289. "z": 0,
  12290. "w": 1
  12291. },
  12292. "_lscale": {
  12293. "__type__": "cc.Vec3",
  12294. "x": 1,
  12295. "y": 1,
  12296. "z": 1
  12297. },
  12298. "_mobility": 0,
  12299. "_layer": 33554432,
  12300. "_euler": {
  12301. "__type__": "cc.Vec3",
  12302. "x": 0,
  12303. "y": 0,
  12304. "z": 0
  12305. },
  12306. "_id": "d14qjt3ztNmbd/x27qtoJp"
  12307. },
  12308. {
  12309. "__type__": "cc.UITransform",
  12310. "_name": "",
  12311. "_objFlags": 0,
  12312. "__editorExtras__": {},
  12313. "node": {
  12314. "__id__": 322
  12315. },
  12316. "_enabled": true,
  12317. "__prefab": null,
  12318. "_contentSize": {
  12319. "__type__": "cc.Size",
  12320. "width": 202,
  12321. "height": 65
  12322. },
  12323. "_anchorPoint": {
  12324. "__type__": "cc.Vec2",
  12325. "x": 0.5,
  12326. "y": 0.5
  12327. },
  12328. "_id": "f0aB2hf9xNA7g/PA+9jrWW"
  12329. },
  12330. {
  12331. "__type__": "cc.Label",
  12332. "_name": "",
  12333. "_objFlags": 0,
  12334. "__editorExtras__": {},
  12335. "node": {
  12336. "__id__": 322
  12337. },
  12338. "_enabled": true,
  12339. "__prefab": null,
  12340. "_customMaterial": null,
  12341. "_srcBlendFactor": 2,
  12342. "_dstBlendFactor": 4,
  12343. "_color": {
  12344. "__type__": "cc.Color",
  12345. "r": 236,
  12346. "g": 58,
  12347. "b": 58,
  12348. "a": 255
  12349. },
  12350. "_string": "战斗模式",
  12351. "_horizontalAlign": 1,
  12352. "_verticalAlign": 1,
  12353. "_actualFontSize": 50,
  12354. "_fontSize": 50,
  12355. "_fontFamily": "Arial",
  12356. "_lineHeight": 50,
  12357. "_overflow": 0,
  12358. "_enableWrapText": true,
  12359. "_font": null,
  12360. "_isSystemFontUsed": true,
  12361. "_spacingX": 0,
  12362. "_isItalic": false,
  12363. "_isBold": false,
  12364. "_isUnderline": false,
  12365. "_underlineHeight": 2,
  12366. "_cacheMode": 0,
  12367. "_enableOutline": true,
  12368. "_outlineColor": {
  12369. "__type__": "cc.Color",
  12370. "r": 247,
  12371. "g": 140,
  12372. "b": 140,
  12373. "a": 255
  12374. },
  12375. "_outlineWidth": 1,
  12376. "_enableShadow": false,
  12377. "_shadowColor": {
  12378. "__type__": "cc.Color",
  12379. "r": 0,
  12380. "g": 0,
  12381. "b": 0,
  12382. "a": 255
  12383. },
  12384. "_shadowOffset": {
  12385. "__type__": "cc.Vec2",
  12386. "x": 2,
  12387. "y": 2
  12388. },
  12389. "_shadowBlur": 2,
  12390. "_id": "e3Rh/5GLFPRJb1I0TQ52g3"
  12391. },
  12392. {
  12393. "__type__": "cc.Widget",
  12394. "_name": "",
  12395. "_objFlags": 0,
  12396. "__editorExtras__": {},
  12397. "node": {
  12398. "__id__": 322
  12399. },
  12400. "_enabled": true,
  12401. "__prefab": null,
  12402. "_alignFlags": 8,
  12403. "_target": null,
  12404. "_left": 179,
  12405. "_right": 0,
  12406. "_top": 0,
  12407. "_bottom": 0,
  12408. "_horizontalCenter": 0,
  12409. "_verticalCenter": 0,
  12410. "_isAbsLeft": true,
  12411. "_isAbsRight": true,
  12412. "_isAbsTop": true,
  12413. "_isAbsBottom": true,
  12414. "_isAbsHorizontalCenter": true,
  12415. "_isAbsVerticalCenter": true,
  12416. "_originalWidth": 0,
  12417. "_originalHeight": 0,
  12418. "_alignMode": 2,
  12419. "_lockFlags": 0,
  12420. "_id": "d0pJVtRCdKpZpeG2Wp3tJd"
  12421. },
  12422. {
  12423. "__type__": "cc.UITransform",
  12424. "_name": "",
  12425. "_objFlags": 0,
  12426. "__editorExtras__": {},
  12427. "node": {
  12428. "__id__": 292
  12429. },
  12430. "_enabled": true,
  12431. "__prefab": null,
  12432. "_contentSize": {
  12433. "__type__": "cc.Size",
  12434. "width": 1280,
  12435. "height": 120
  12436. },
  12437. "_anchorPoint": {
  12438. "__type__": "cc.Vec2",
  12439. "x": 0.5,
  12440. "y": 0.5
  12441. },
  12442. "_id": "e8XVfzC5dH5IV21dMIBg/U"
  12443. },
  12444. {
  12445. "__type__": "cc.Sprite",
  12446. "_name": "",
  12447. "_objFlags": 0,
  12448. "__editorExtras__": {},
  12449. "node": {
  12450. "__id__": 292
  12451. },
  12452. "_enabled": true,
  12453. "__prefab": null,
  12454. "_customMaterial": null,
  12455. "_srcBlendFactor": 2,
  12456. "_dstBlendFactor": 4,
  12457. "_color": {
  12458. "__type__": "cc.Color",
  12459. "r": 117,
  12460. "g": 113,
  12461. "b": 113,
  12462. "a": 255
  12463. },
  12464. "_spriteFrame": {
  12465. "__uuid__": "1ec19ffb-822e-46c7-814a-dc668a04afe9@cd29a",
  12466. "__expectedType__": "cc.SpriteFrame"
  12467. },
  12468. "_type": 0,
  12469. "_fillType": 0,
  12470. "_sizeMode": 0,
  12471. "_fillCenter": {
  12472. "__type__": "cc.Vec2",
  12473. "x": 0,
  12474. "y": 0
  12475. },
  12476. "_fillStart": 0,
  12477. "_fillRange": 0,
  12478. "_isTrimmedMode": true,
  12479. "_useGrayscale": false,
  12480. "_atlas": null,
  12481. "_id": "69YTqMsdVP1qtI0XnjVuRy"
  12482. },
  12483. {
  12484. "__type__": "cc.Widget",
  12485. "_name": "",
  12486. "_objFlags": 0,
  12487. "__editorExtras__": {},
  12488. "node": {
  12489. "__id__": 292
  12490. },
  12491. "_enabled": true,
  12492. "__prefab": null,
  12493. "_alignFlags": 41,
  12494. "_target": null,
  12495. "_left": 0,
  12496. "_right": 0,
  12497. "_top": 0,
  12498. "_bottom": 0,
  12499. "_horizontalCenter": 0,
  12500. "_verticalCenter": 0,
  12501. "_isAbsLeft": true,
  12502. "_isAbsRight": true,
  12503. "_isAbsTop": true,
  12504. "_isAbsBottom": true,
  12505. "_isAbsHorizontalCenter": true,
  12506. "_isAbsVerticalCenter": true,
  12507. "_originalWidth": 1280,
  12508. "_originalHeight": 0,
  12509. "_alignMode": 2,
  12510. "_lockFlags": 0,
  12511. "_id": "2bhjmGhOJExocn4mj9RPU0"
  12512. },
  12513. {
  12514. "__type__": "282f67D5HpMKJznvZ8CCmiD",
  12515. "_name": "",
  12516. "_objFlags": 0,
  12517. "__editorExtras__": {},
  12518. "node": {
  12519. "__id__": 292
  12520. },
  12521. "_enabled": true,
  12522. "__prefab": null,
  12523. "_id": "23PpNzOFlFDKiYMO/IR0i2"
  12524. },
  12525. {
  12526. "__type__": "cc.UITransform",
  12527. "_name": "",
  12528. "_objFlags": 0,
  12529. "__editorExtras__": {},
  12530. "node": {
  12531. "__id__": 5
  12532. },
  12533. "_enabled": true,
  12534. "__prefab": null,
  12535. "_contentSize": {
  12536. "__type__": "cc.Size",
  12537. "width": 1280,
  12538. "height": 720
  12539. },
  12540. "_anchorPoint": {
  12541. "__type__": "cc.Vec2",
  12542. "x": 0.5,
  12543. "y": 0.5
  12544. },
  12545. "_id": "23UXDiTnZI0pJsgr2r7LI7"
  12546. },
  12547. {
  12548. "__type__": "cc.Widget",
  12549. "_name": "",
  12550. "_objFlags": 0,
  12551. "__editorExtras__": {},
  12552. "node": {
  12553. "__id__": 5
  12554. },
  12555. "_enabled": true,
  12556. "__prefab": null,
  12557. "_alignFlags": 12,
  12558. "_target": {
  12559. "__id__": 2
  12560. },
  12561. "_left": 0,
  12562. "_right": 590,
  12563. "_top": 310,
  12564. "_bottom": 0,
  12565. "_horizontalCenter": 0,
  12566. "_verticalCenter": 0,
  12567. "_isAbsLeft": true,
  12568. "_isAbsRight": true,
  12569. "_isAbsTop": true,
  12570. "_isAbsBottom": true,
  12571. "_isAbsHorizontalCenter": true,
  12572. "_isAbsVerticalCenter": true,
  12573. "_originalWidth": 100,
  12574. "_originalHeight": 100,
  12575. "_alignMode": 2,
  12576. "_lockFlags": 0,
  12577. "_id": "e4KthIZu5HCrsF3x8F8bbV"
  12578. },
  12579. {
  12580. "__type__": "85935JrKhdBO5p/ZG5uEy7O",
  12581. "_name": "",
  12582. "_objFlags": 0,
  12583. "__editorExtras__": {},
  12584. "node": {
  12585. "__id__": 5
  12586. },
  12587. "_enabled": true,
  12588. "__prefab": null,
  12589. "_id": "1dcpWBeKNITJiLr2F3sil6"
  12590. },
  12591. {
  12592. "__type__": "cc.Node",
  12593. "_name": "UIRoot",
  12594. "_objFlags": 0,
  12595. "__editorExtras__": {},
  12596. "_parent": {
  12597. "__id__": 2
  12598. },
  12599. "_children": [
  12600. {
  12601. "__id__": 334
  12602. },
  12603. {
  12604. "__id__": 337
  12605. },
  12606. {
  12607. "__id__": 340
  12608. }
  12609. ],
  12610. "_active": true,
  12611. "_components": [
  12612. {
  12613. "__id__": 343
  12614. },
  12615. {
  12616. "__id__": 344
  12617. }
  12618. ],
  12619. "_prefab": null,
  12620. "_lpos": {
  12621. "__type__": "cc.Vec3",
  12622. "x": 0,
  12623. "y": 0,
  12624. "z": 0
  12625. },
  12626. "_lrot": {
  12627. "__type__": "cc.Quat",
  12628. "x": 0,
  12629. "y": 0,
  12630. "z": 0,
  12631. "w": 1
  12632. },
  12633. "_lscale": {
  12634. "__type__": "cc.Vec3",
  12635. "x": 1,
  12636. "y": 1,
  12637. "z": 1
  12638. },
  12639. "_mobility": 0,
  12640. "_layer": 33554432,
  12641. "_euler": {
  12642. "__type__": "cc.Vec3",
  12643. "x": 0,
  12644. "y": 0,
  12645. "z": 0
  12646. },
  12647. "_id": "7d6oNX3xVO0rXs1kWSThv7"
  12648. },
  12649. {
  12650. "__type__": "cc.Node",
  12651. "_name": "Page",
  12652. "_objFlags": 0,
  12653. "__editorExtras__": {},
  12654. "_parent": {
  12655. "__id__": 333
  12656. },
  12657. "_children": [],
  12658. "_active": true,
  12659. "_components": [
  12660. {
  12661. "__id__": 335
  12662. },
  12663. {
  12664. "__id__": 336
  12665. }
  12666. ],
  12667. "_prefab": null,
  12668. "_lpos": {
  12669. "__type__": "cc.Vec3",
  12670. "x": 0,
  12671. "y": 0,
  12672. "z": 0
  12673. },
  12674. "_lrot": {
  12675. "__type__": "cc.Quat",
  12676. "x": 0,
  12677. "y": 0,
  12678. "z": 0,
  12679. "w": 1
  12680. },
  12681. "_lscale": {
  12682. "__type__": "cc.Vec3",
  12683. "x": 1,
  12684. "y": 1,
  12685. "z": 1
  12686. },
  12687. "_mobility": 0,
  12688. "_layer": 33554432,
  12689. "_euler": {
  12690. "__type__": "cc.Vec3",
  12691. "x": 0,
  12692. "y": 0,
  12693. "z": 0
  12694. },
  12695. "_id": "8dAabxAdtISbQZSXf3e/U4"
  12696. },
  12697. {
  12698. "__type__": "cc.UITransform",
  12699. "_name": "",
  12700. "_objFlags": 0,
  12701. "__editorExtras__": {},
  12702. "node": {
  12703. "__id__": 334
  12704. },
  12705. "_enabled": true,
  12706. "__prefab": null,
  12707. "_contentSize": {
  12708. "__type__": "cc.Size",
  12709. "width": 1280,
  12710. "height": 720
  12711. },
  12712. "_anchorPoint": {
  12713. "__type__": "cc.Vec2",
  12714. "x": 0.5,
  12715. "y": 0.5
  12716. },
  12717. "_id": "dbhq6HWe1KzZ+rO1G224V2"
  12718. },
  12719. {
  12720. "__type__": "cc.Widget",
  12721. "_name": "",
  12722. "_objFlags": 0,
  12723. "__editorExtras__": {},
  12724. "node": {
  12725. "__id__": 334
  12726. },
  12727. "_enabled": true,
  12728. "__prefab": null,
  12729. "_alignFlags": 45,
  12730. "_target": null,
  12731. "_left": 0,
  12732. "_right": 0,
  12733. "_top": 0,
  12734. "_bottom": 0,
  12735. "_horizontalCenter": 0,
  12736. "_verticalCenter": 0,
  12737. "_isAbsLeft": true,
  12738. "_isAbsRight": true,
  12739. "_isAbsTop": true,
  12740. "_isAbsBottom": true,
  12741. "_isAbsHorizontalCenter": true,
  12742. "_isAbsVerticalCenter": true,
  12743. "_originalWidth": 100,
  12744. "_originalHeight": 100,
  12745. "_alignMode": 2,
  12746. "_lockFlags": 0,
  12747. "_id": "67KDXdMFxCb50JUjMuwktU"
  12748. },
  12749. {
  12750. "__type__": "cc.Node",
  12751. "_name": "Widget",
  12752. "_objFlags": 0,
  12753. "__editorExtras__": {},
  12754. "_parent": {
  12755. "__id__": 333
  12756. },
  12757. "_children": [],
  12758. "_active": true,
  12759. "_components": [
  12760. {
  12761. "__id__": 338
  12762. },
  12763. {
  12764. "__id__": 339
  12765. }
  12766. ],
  12767. "_prefab": null,
  12768. "_lpos": {
  12769. "__type__": "cc.Vec3",
  12770. "x": 0,
  12771. "y": 0,
  12772. "z": 0
  12773. },
  12774. "_lrot": {
  12775. "__type__": "cc.Quat",
  12776. "x": 0,
  12777. "y": 0,
  12778. "z": 0,
  12779. "w": 1
  12780. },
  12781. "_lscale": {
  12782. "__type__": "cc.Vec3",
  12783. "x": 1,
  12784. "y": 1,
  12785. "z": 1
  12786. },
  12787. "_mobility": 0,
  12788. "_layer": 33554432,
  12789. "_euler": {
  12790. "__type__": "cc.Vec3",
  12791. "x": 0,
  12792. "y": 0,
  12793. "z": 0
  12794. },
  12795. "_id": "a4U78aFLJEYp5fiRjYGLHY"
  12796. },
  12797. {
  12798. "__type__": "cc.UITransform",
  12799. "_name": "",
  12800. "_objFlags": 0,
  12801. "__editorExtras__": {},
  12802. "node": {
  12803. "__id__": 337
  12804. },
  12805. "_enabled": true,
  12806. "__prefab": null,
  12807. "_contentSize": {
  12808. "__type__": "cc.Size",
  12809. "width": 1280,
  12810. "height": 720
  12811. },
  12812. "_anchorPoint": {
  12813. "__type__": "cc.Vec2",
  12814. "x": 0.5,
  12815. "y": 0.5
  12816. },
  12817. "_id": "40NR6Rli1E0KBvKXf52fSF"
  12818. },
  12819. {
  12820. "__type__": "cc.Widget",
  12821. "_name": "",
  12822. "_objFlags": 0,
  12823. "__editorExtras__": {},
  12824. "node": {
  12825. "__id__": 337
  12826. },
  12827. "_enabled": true,
  12828. "__prefab": null,
  12829. "_alignFlags": 45,
  12830. "_target": null,
  12831. "_left": 0,
  12832. "_right": 0,
  12833. "_top": 0,
  12834. "_bottom": 0,
  12835. "_horizontalCenter": 0,
  12836. "_verticalCenter": 0,
  12837. "_isAbsLeft": true,
  12838. "_isAbsRight": true,
  12839. "_isAbsTop": true,
  12840. "_isAbsBottom": true,
  12841. "_isAbsHorizontalCenter": true,
  12842. "_isAbsVerticalCenter": true,
  12843. "_originalWidth": 100,
  12844. "_originalHeight": 100,
  12845. "_alignMode": 2,
  12846. "_lockFlags": 0,
  12847. "_id": "91DsLENFJNwK19mae6qN0j"
  12848. },
  12849. {
  12850. "__type__": "cc.Node",
  12851. "_name": "PopWin",
  12852. "_objFlags": 0,
  12853. "__editorExtras__": {},
  12854. "_parent": {
  12855. "__id__": 333
  12856. },
  12857. "_children": [],
  12858. "_active": true,
  12859. "_components": [
  12860. {
  12861. "__id__": 341
  12862. },
  12863. {
  12864. "__id__": 342
  12865. }
  12866. ],
  12867. "_prefab": null,
  12868. "_lpos": {
  12869. "__type__": "cc.Vec3",
  12870. "x": 0,
  12871. "y": 0,
  12872. "z": 0
  12873. },
  12874. "_lrot": {
  12875. "__type__": "cc.Quat",
  12876. "x": 0,
  12877. "y": 0,
  12878. "z": 0,
  12879. "w": 1
  12880. },
  12881. "_lscale": {
  12882. "__type__": "cc.Vec3",
  12883. "x": 1,
  12884. "y": 1,
  12885. "z": 1
  12886. },
  12887. "_mobility": 0,
  12888. "_layer": 33554432,
  12889. "_euler": {
  12890. "__type__": "cc.Vec3",
  12891. "x": 0,
  12892. "y": 0,
  12893. "z": 0
  12894. },
  12895. "_id": "181d2UWcNMIYlJkAJG8ZeL"
  12896. },
  12897. {
  12898. "__type__": "cc.UITransform",
  12899. "_name": "",
  12900. "_objFlags": 0,
  12901. "__editorExtras__": {},
  12902. "node": {
  12903. "__id__": 340
  12904. },
  12905. "_enabled": true,
  12906. "__prefab": null,
  12907. "_contentSize": {
  12908. "__type__": "cc.Size",
  12909. "width": 1280,
  12910. "height": 720
  12911. },
  12912. "_anchorPoint": {
  12913. "__type__": "cc.Vec2",
  12914. "x": 0.5,
  12915. "y": 0.5
  12916. },
  12917. "_id": "ccGiow+ChNa7YMuumXgNzY"
  12918. },
  12919. {
  12920. "__type__": "cc.Widget",
  12921. "_name": "",
  12922. "_objFlags": 0,
  12923. "__editorExtras__": {},
  12924. "node": {
  12925. "__id__": 340
  12926. },
  12927. "_enabled": true,
  12928. "__prefab": null,
  12929. "_alignFlags": 45,
  12930. "_target": null,
  12931. "_left": 0,
  12932. "_right": 0,
  12933. "_top": 0,
  12934. "_bottom": 0,
  12935. "_horizontalCenter": 0,
  12936. "_verticalCenter": 0,
  12937. "_isAbsLeft": true,
  12938. "_isAbsRight": true,
  12939. "_isAbsTop": true,
  12940. "_isAbsBottom": true,
  12941. "_isAbsHorizontalCenter": true,
  12942. "_isAbsVerticalCenter": true,
  12943. "_originalWidth": 100,
  12944. "_originalHeight": 100,
  12945. "_alignMode": 2,
  12946. "_lockFlags": 0,
  12947. "_id": "4bLPp6sxNNyLtdE5fcWt+d"
  12948. },
  12949. {
  12950. "__type__": "cc.UITransform",
  12951. "_name": "",
  12952. "_objFlags": 0,
  12953. "__editorExtras__": {},
  12954. "node": {
  12955. "__id__": 333
  12956. },
  12957. "_enabled": true,
  12958. "__prefab": null,
  12959. "_contentSize": {
  12960. "__type__": "cc.Size",
  12961. "width": 1280,
  12962. "height": 720
  12963. },
  12964. "_anchorPoint": {
  12965. "__type__": "cc.Vec2",
  12966. "x": 0.5,
  12967. "y": 0.5
  12968. },
  12969. "_id": "d5ilyx1hFKIL+knOleWonu"
  12970. },
  12971. {
  12972. "__type__": "cc.Widget",
  12973. "_name": "",
  12974. "_objFlags": 0,
  12975. "__editorExtras__": {},
  12976. "node": {
  12977. "__id__": 333
  12978. },
  12979. "_enabled": true,
  12980. "__prefab": null,
  12981. "_alignFlags": 45,
  12982. "_target": null,
  12983. "_left": 0,
  12984. "_right": 0,
  12985. "_top": 0,
  12986. "_bottom": 0,
  12987. "_horizontalCenter": 0,
  12988. "_verticalCenter": 0,
  12989. "_isAbsLeft": true,
  12990. "_isAbsRight": true,
  12991. "_isAbsTop": true,
  12992. "_isAbsBottom": true,
  12993. "_isAbsHorizontalCenter": true,
  12994. "_isAbsVerticalCenter": true,
  12995. "_originalWidth": 100,
  12996. "_originalHeight": 100,
  12997. "_alignMode": 2,
  12998. "_lockFlags": 0,
  12999. "_id": "d47nc2dq1KcqImyMR2FvbP"
  13000. },
  13001. {
  13002. "__type__": "cc.UITransform",
  13003. "_name": "",
  13004. "_objFlags": 0,
  13005. "__editorExtras__": {},
  13006. "node": {
  13007. "__id__": 2
  13008. },
  13009. "_enabled": true,
  13010. "__prefab": null,
  13011. "_contentSize": {
  13012. "__type__": "cc.Size",
  13013. "width": 1280,
  13014. "height": 720
  13015. },
  13016. "_anchorPoint": {
  13017. "__type__": "cc.Vec2",
  13018. "x": 0.5,
  13019. "y": 0.5
  13020. },
  13021. "_id": "d6rUX5yfhMlKoWX2bSbawx"
  13022. },
  13023. {
  13024. "__type__": "cc.Canvas",
  13025. "_name": "",
  13026. "_objFlags": 0,
  13027. "__editorExtras__": {},
  13028. "node": {
  13029. "__id__": 2
  13030. },
  13031. "_enabled": true,
  13032. "__prefab": null,
  13033. "_cameraComponent": {
  13034. "__id__": 4
  13035. },
  13036. "_alignCanvasWithScreen": true,
  13037. "_id": "12O/ljcVlEqLmVm3U2gEOQ"
  13038. },
  13039. {
  13040. "__type__": "cc.Widget",
  13041. "_name": "",
  13042. "_objFlags": 0,
  13043. "__editorExtras__": {},
  13044. "node": {
  13045. "__id__": 2
  13046. },
  13047. "_enabled": true,
  13048. "__prefab": null,
  13049. "_alignFlags": 45,
  13050. "_target": null,
  13051. "_left": 0,
  13052. "_right": 0,
  13053. "_top": 5.684341886080802e-14,
  13054. "_bottom": 5.684341886080802e-14,
  13055. "_horizontalCenter": 0,
  13056. "_verticalCenter": 0,
  13057. "_isAbsLeft": true,
  13058. "_isAbsRight": true,
  13059. "_isAbsTop": true,
  13060. "_isAbsBottom": true,
  13061. "_isAbsHorizontalCenter": true,
  13062. "_isAbsVerticalCenter": true,
  13063. "_originalWidth": 0,
  13064. "_originalHeight": 0,
  13065. "_alignMode": 2,
  13066. "_lockFlags": 0,
  13067. "_id": "c5V1EV8IpMtrIvY1OE9t2u"
  13068. },
  13069. {
  13070. "__type__": "010ac7u73pHUqXGhX3uxjfh",
  13071. "_name": "",
  13072. "_objFlags": 0,
  13073. "__editorExtras__": {},
  13074. "node": {
  13075. "__id__": 2
  13076. },
  13077. "_enabled": true,
  13078. "__prefab": null,
  13079. "_id": "c5iZQmWqNGKKJl4bHf/bIu"
  13080. },
  13081. {
  13082. "__type__": "cc.PrefabInfo",
  13083. "root": null,
  13084. "asset": null,
  13085. "fileId": "099ece80-6a52-4fc1-8f49-dcd0345183d0",
  13086. "instance": null,
  13087. "targetOverrides": [
  13088. {
  13089. "__id__": 350
  13090. },
  13091. {
  13092. "__id__": 353
  13093. },
  13094. {
  13095. "__id__": 356
  13096. },
  13097. {
  13098. "__id__": 359
  13099. },
  13100. {
  13101. "__id__": 362
  13102. },
  13103. {
  13104. "__id__": 365
  13105. }
  13106. ]
  13107. },
  13108. {
  13109. "__type__": "cc.TargetOverrideInfo",
  13110. "source": {
  13111. "__id__": 18
  13112. },
  13113. "sourceInfo": {
  13114. "__id__": 351
  13115. },
  13116. "propertyPath": [
  13117. "_target"
  13118. ],
  13119. "target": {
  13120. "__id__": 18
  13121. },
  13122. "targetInfo": {
  13123. "__id__": 352
  13124. }
  13125. },
  13126. {
  13127. "__type__": "cc.TargetInfo",
  13128. "localID": [
  13129. "cbHAR4hGtAc7HaQ9Pbqy0C"
  13130. ]
  13131. },
  13132. {
  13133. "__type__": "cc.TargetInfo",
  13134. "localID": [
  13135. "fd09Tvo65IYrsoE8zvGdL6"
  13136. ]
  13137. },
  13138. {
  13139. "__type__": "cc.TargetOverrideInfo",
  13140. "source": {
  13141. "__id__": 18
  13142. },
  13143. "sourceInfo": {
  13144. "__id__": 354
  13145. },
  13146. "propertyPath": [
  13147. "_target"
  13148. ],
  13149. "target": {
  13150. "__id__": 18
  13151. },
  13152. "targetInfo": {
  13153. "__id__": 355
  13154. }
  13155. },
  13156. {
  13157. "__type__": "cc.TargetInfo",
  13158. "localID": [
  13159. "63zd3HD/FMd5DRCbWZCKl/"
  13160. ]
  13161. },
  13162. {
  13163. "__type__": "cc.TargetInfo",
  13164. "localID": [
  13165. "efuGIb08lIqJLXj+DF7omK"
  13166. ]
  13167. },
  13168. {
  13169. "__type__": "cc.TargetOverrideInfo",
  13170. "source": {
  13171. "__id__": 51
  13172. },
  13173. "sourceInfo": {
  13174. "__id__": 357
  13175. },
  13176. "propertyPath": [
  13177. "_target"
  13178. ],
  13179. "target": {
  13180. "__id__": 51
  13181. },
  13182. "targetInfo": {
  13183. "__id__": 358
  13184. }
  13185. },
  13186. {
  13187. "__type__": "cc.TargetInfo",
  13188. "localID": [
  13189. "5aL9e1QDtH2LnX+a+E3b2C"
  13190. ]
  13191. },
  13192. {
  13193. "__type__": "cc.TargetInfo",
  13194. "localID": [
  13195. "97fKfEqANJ8I3HOQsMxzaZ"
  13196. ]
  13197. },
  13198. {
  13199. "__type__": "cc.TargetOverrideInfo",
  13200. "source": {
  13201. "__id__": 51
  13202. },
  13203. "sourceInfo": {
  13204. "__id__": 360
  13205. },
  13206. "propertyPath": [
  13207. "_target"
  13208. ],
  13209. "target": {
  13210. "__id__": 51
  13211. },
  13212. "targetInfo": {
  13213. "__id__": 361
  13214. }
  13215. },
  13216. {
  13217. "__type__": "cc.TargetInfo",
  13218. "localID": [
  13219. "86oQpomOpPG6TLpNH5hipL"
  13220. ]
  13221. },
  13222. {
  13223. "__type__": "cc.TargetInfo",
  13224. "localID": [
  13225. "c9Ze9LWgRCyJ20Mo6qnoVf"
  13226. ]
  13227. },
  13228. {
  13229. "__type__": "cc.TargetOverrideInfo",
  13230. "source": {
  13231. "__id__": 51
  13232. },
  13233. "sourceInfo": {
  13234. "__id__": 363
  13235. },
  13236. "propertyPath": [
  13237. "_target"
  13238. ],
  13239. "target": {
  13240. "__id__": 51
  13241. },
  13242. "targetInfo": {
  13243. "__id__": 364
  13244. }
  13245. },
  13246. {
  13247. "__type__": "cc.TargetInfo",
  13248. "localID": [
  13249. "48GqkPVnZK1reGm6oRN8EF"
  13250. ]
  13251. },
  13252. {
  13253. "__type__": "cc.TargetInfo",
  13254. "localID": [
  13255. "4b3t7YEQtC26yVDkSXWHvD"
  13256. ]
  13257. },
  13258. {
  13259. "__type__": "cc.TargetOverrideInfo",
  13260. "source": {
  13261. "__id__": 51
  13262. },
  13263. "sourceInfo": {
  13264. "__id__": 366
  13265. },
  13266. "propertyPath": [
  13267. "_target"
  13268. ],
  13269. "target": {
  13270. "__id__": 51
  13271. },
  13272. "targetInfo": {
  13273. "__id__": 367
  13274. }
  13275. },
  13276. {
  13277. "__type__": "cc.TargetInfo",
  13278. "localID": [
  13279. "2fVHJHTKJKZLcz8o56kzq1"
  13280. ]
  13281. },
  13282. {
  13283. "__type__": "cc.TargetInfo",
  13284. "localID": [
  13285. "0eM5MhQ0pJ56gBbzz0s+J7"
  13286. ]
  13287. },
  13288. {
  13289. "__type__": "cc.SceneGlobals",
  13290. "ambient": {
  13291. "__id__": 369
  13292. },
  13293. "shadows": {
  13294. "__id__": 370
  13295. },
  13296. "_skybox": {
  13297. "__id__": 371
  13298. },
  13299. "fog": {
  13300. "__id__": 372
  13301. },
  13302. "octree": {
  13303. "__id__": 373
  13304. },
  13305. "skin": {
  13306. "__id__": 374
  13307. },
  13308. "lightProbeInfo": {
  13309. "__id__": 375
  13310. },
  13311. "postSettings": {
  13312. "__id__": 376
  13313. },
  13314. "bakedWithStationaryMainLight": false,
  13315. "bakedWithHighpLightmap": false
  13316. },
  13317. {
  13318. "__type__": "cc.AmbientInfo",
  13319. "_skyColorHDR": {
  13320. "__type__": "cc.Vec4",
  13321. "x": 0,
  13322. "y": 0,
  13323. "z": 0,
  13324. "w": 0.520833125
  13325. },
  13326. "_skyColor": {
  13327. "__type__": "cc.Vec4",
  13328. "x": 0,
  13329. "y": 0,
  13330. "z": 0,
  13331. "w": 0.520833125
  13332. },
  13333. "_skyIllumHDR": 20000,
  13334. "_skyIllum": 20000,
  13335. "_groundAlbedoHDR": {
  13336. "__type__": "cc.Vec4",
  13337. "x": 0,
  13338. "y": 0,
  13339. "z": 0,
  13340. "w": 0
  13341. },
  13342. "_groundAlbedo": {
  13343. "__type__": "cc.Vec4",
  13344. "x": 0,
  13345. "y": 0,
  13346. "z": 0,
  13347. "w": 0
  13348. },
  13349. "_skyColorLDR": {
  13350. "__type__": "cc.Vec4",
  13351. "x": 0.2,
  13352. "y": 0.5,
  13353. "z": 0.8,
  13354. "w": 1
  13355. },
  13356. "_skyIllumLDR": 20000,
  13357. "_groundAlbedoLDR": {
  13358. "__type__": "cc.Vec4",
  13359. "x": 0.2,
  13360. "y": 0.2,
  13361. "z": 0.2,
  13362. "w": 1
  13363. }
  13364. },
  13365. {
  13366. "__type__": "cc.ShadowsInfo",
  13367. "_enabled": false,
  13368. "_type": 0,
  13369. "_normal": {
  13370. "__type__": "cc.Vec3",
  13371. "x": 0,
  13372. "y": 1,
  13373. "z": 0
  13374. },
  13375. "_distance": 0,
  13376. "_planeBias": 1,
  13377. "_shadowColor": {
  13378. "__type__": "cc.Color",
  13379. "r": 76,
  13380. "g": 76,
  13381. "b": 76,
  13382. "a": 255
  13383. },
  13384. "_maxReceived": 4,
  13385. "_size": {
  13386. "__type__": "cc.Vec2",
  13387. "x": 512,
  13388. "y": 512
  13389. }
  13390. },
  13391. {
  13392. "__type__": "cc.SkyboxInfo",
  13393. "_envLightingType": 0,
  13394. "_envmapHDR": null,
  13395. "_envmap": null,
  13396. "_envmapLDR": null,
  13397. "_diffuseMapHDR": null,
  13398. "_diffuseMapLDR": null,
  13399. "_enabled": false,
  13400. "_useHDR": true,
  13401. "_editableMaterial": null,
  13402. "_reflectionHDR": null,
  13403. "_reflectionLDR": null,
  13404. "_rotationAngle": 0
  13405. },
  13406. {
  13407. "__type__": "cc.FogInfo",
  13408. "_type": 0,
  13409. "_fogColor": {
  13410. "__type__": "cc.Color",
  13411. "r": 200,
  13412. "g": 200,
  13413. "b": 200,
  13414. "a": 255
  13415. },
  13416. "_enabled": false,
  13417. "_fogDensity": 0.3,
  13418. "_fogStart": 0.5,
  13419. "_fogEnd": 300,
  13420. "_fogAtten": 5,
  13421. "_fogTop": 1.5,
  13422. "_fogRange": 1.2,
  13423. "_accurate": false
  13424. },
  13425. {
  13426. "__type__": "cc.OctreeInfo",
  13427. "_enabled": false,
  13428. "_minPos": {
  13429. "__type__": "cc.Vec3",
  13430. "x": -1024,
  13431. "y": -1024,
  13432. "z": -1024
  13433. },
  13434. "_maxPos": {
  13435. "__type__": "cc.Vec3",
  13436. "x": 1024,
  13437. "y": 1024,
  13438. "z": 1024
  13439. },
  13440. "_depth": 8
  13441. },
  13442. {
  13443. "__type__": "cc.SkinInfo",
  13444. "_enabled": false,
  13445. "_blurRadius": 0.01,
  13446. "_sssIntensity": 3
  13447. },
  13448. {
  13449. "__type__": "cc.LightProbeInfo",
  13450. "_giScale": 1,
  13451. "_giSamples": 1024,
  13452. "_bounces": 2,
  13453. "_reduceRinging": 0,
  13454. "_showProbe": true,
  13455. "_showWireframe": true,
  13456. "_showConvex": false,
  13457. "_data": null,
  13458. "_lightProbeSphereVolume": 1
  13459. },
  13460. {
  13461. "__type__": "cc.PostSettingsInfo",
  13462. "_toneMappingType": 0
  13463. }
  13464. ]