PrepareUI.prefab 144 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322
  1. [
  2. {
  3. "__type__": "cc.Prefab",
  4. "_name": "",
  5. "_objFlags": 0,
  6. "_native": "",
  7. "data": {
  8. "__id__": 1
  9. },
  10. "optimizationPolicy": 0,
  11. "asyncLoadAssets": false
  12. },
  13. {
  14. "__type__": "cc.Node",
  15. "_name": "PrepareUI",
  16. "_objFlags": 0,
  17. "_parent": null,
  18. "_children": [
  19. {
  20. "__id__": 2
  21. },
  22. {
  23. "__id__": 7
  24. },
  25. {
  26. "__id__": 13
  27. },
  28. {
  29. "__id__": 29
  30. },
  31. {
  32. "__id__": 32
  33. },
  34. {
  35. "__id__": 41
  36. },
  37. {
  38. "__id__": 56
  39. },
  40. {
  41. "__id__": 60
  42. },
  43. {
  44. "__id__": 144
  45. },
  46. {
  47. "__id__": 201
  48. },
  49. {
  50. "__id__": 252
  51. },
  52. {
  53. "__id__": 257
  54. }
  55. ],
  56. "_active": true,
  57. "_components": [
  58. {
  59. "__id__": 265
  60. },
  61. {
  62. "__id__": 266
  63. },
  64. {
  65. "__id__": 267
  66. }
  67. ],
  68. "_prefab": {
  69. "__id__": 268
  70. },
  71. "_lpos": {
  72. "__type__": "cc.Vec3",
  73. "x": -375,
  74. "y": -667,
  75. "z": 0
  76. },
  77. "_lrot": {
  78. "__type__": "cc.Quat",
  79. "x": 0,
  80. "y": 0,
  81. "z": 0,
  82. "w": 1
  83. },
  84. "_lscale": {
  85. "__type__": "cc.Vec3",
  86. "x": 1,
  87. "y": 1,
  88. "z": 1
  89. },
  90. "_layer": 33554432,
  91. "_euler": {
  92. "__type__": "cc.Vec3",
  93. "x": 0,
  94. "y": 0,
  95. "z": 0
  96. },
  97. "_id": ""
  98. },
  99. {
  100. "__type__": "cc.Node",
  101. "_name": "BG",
  102. "_objFlags": 0,
  103. "_parent": {
  104. "__id__": 1
  105. },
  106. "_children": [],
  107. "_active": true,
  108. "_components": [
  109. {
  110. "__id__": 3
  111. },
  112. {
  113. "__id__": 4
  114. },
  115. {
  116. "__id__": 5
  117. }
  118. ],
  119. "_prefab": {
  120. "__id__": 6
  121. },
  122. "_lpos": {
  123. "__type__": "cc.Vec3",
  124. "x": 375,
  125. "y": 974,
  126. "z": 0
  127. },
  128. "_lrot": {
  129. "__type__": "cc.Quat",
  130. "x": 0,
  131. "y": 0,
  132. "z": 0,
  133. "w": 1
  134. },
  135. "_lscale": {
  136. "__type__": "cc.Vec3",
  137. "x": 1,
  138. "y": 1,
  139. "z": 1
  140. },
  141. "_layer": 33554432,
  142. "_euler": {
  143. "__type__": "cc.Vec3",
  144. "x": 0,
  145. "y": 0,
  146. "z": 0
  147. },
  148. "_id": ""
  149. },
  150. {
  151. "__type__": "cc.UITransformComponent",
  152. "_name": "BG<UITransformComponent>",
  153. "_objFlags": 0,
  154. "node": {
  155. "__id__": 2
  156. },
  157. "_enabled": true,
  158. "_priority": 0,
  159. "_contentSize": {
  160. "__type__": "cc.Size",
  161. "width": 750,
  162. "height": 720
  163. },
  164. "_anchorPoint": {
  165. "__type__": "cc.Vec2",
  166. "x": 0.5,
  167. "y": 0.5
  168. },
  169. "_id": ""
  170. },
  171. {
  172. "__type__": "cc.SpriteComponent",
  173. "_name": "BG<SpriteComponent>",
  174. "_objFlags": 0,
  175. "node": {
  176. "__id__": 2
  177. },
  178. "_enabled": true,
  179. "_srcBlendFactor": 2,
  180. "_dstBlendFactor": 4,
  181. "_color": {
  182. "__type__": "cc.Color",
  183. "r": 255,
  184. "g": 255,
  185. "b": 255,
  186. "a": 255
  187. },
  188. "_sharedMaterial": null,
  189. "_spriteFrame": {
  190. "__uuid__": "27063f83-8d04-4a43-8251-a1b58ff8fd42@f9941"
  191. },
  192. "_type": 0,
  193. "_fillType": 0,
  194. "_sizeMode": 1,
  195. "_fillCenter": {
  196. "__type__": "cc.Vec2",
  197. "x": 0,
  198. "y": 0
  199. },
  200. "_fillStart": 0,
  201. "_fillRange": 0,
  202. "_isTrimmedMode": true,
  203. "_useGrayscale": false,
  204. "_atlas": null,
  205. "_id": ""
  206. },
  207. {
  208. "__type__": "cc.WidgetComponent",
  209. "_name": "BG<WidgetComponent>",
  210. "_objFlags": 0,
  211. "node": {
  212. "__id__": 2
  213. },
  214. "_enabled": true,
  215. "_alignFlags": 45,
  216. "_target": null,
  217. "_left": 0,
  218. "_right": 0,
  219. "_top": 0,
  220. "_bottom": 614,
  221. "_horizontalCenter": 0,
  222. "_verticalCenter": 0,
  223. "_isAbsLeft": true,
  224. "_isAbsRight": true,
  225. "_isAbsTop": true,
  226. "_isAbsBottom": true,
  227. "_isAbsHorizontalCenter": true,
  228. "_isAbsVerticalCenter": true,
  229. "_originalWidth": 750,
  230. "_originalHeight": 720,
  231. "_alignMode": 2,
  232. "_lockFlags": 0,
  233. "_id": ""
  234. },
  235. {
  236. "__type__": "cc.PrefabInfo",
  237. "root": {
  238. "__id__": 1
  239. },
  240. "asset": {
  241. "__id__": 0
  242. },
  243. "fileId": "21PRF71UhN3aIHPRmPcF6K",
  244. "sync": false,
  245. "_synced": {
  246. "default": false,
  247. "serializable": false
  248. }
  249. },
  250. {
  251. "__type__": "cc.Node",
  252. "_name": "ModelView",
  253. "_objFlags": 0,
  254. "_parent": {
  255. "__id__": 1
  256. },
  257. "_children": [],
  258. "_active": true,
  259. "_components": [
  260. {
  261. "__id__": 8
  262. },
  263. {
  264. "__id__": 9
  265. },
  266. {
  267. "__id__": 11
  268. }
  269. ],
  270. "_prefab": {
  271. "__id__": 12
  272. },
  273. "_lpos": {
  274. "__type__": "cc.Vec3",
  275. "x": 378.518,
  276. "y": 968.794,
  277. "z": 0
  278. },
  279. "_lrot": {
  280. "__type__": "cc.Quat",
  281. "x": 0,
  282. "y": 0.7071067811865475,
  283. "z": 0,
  284. "w": 0.7071067811865476
  285. },
  286. "_lscale": {
  287. "__type__": "cc.Vec3",
  288. "x": 650,
  289. "y": 650,
  290. "z": 650
  291. },
  292. "_layer": 1073741824,
  293. "_euler": {
  294. "__type__": "cc.Vec3",
  295. "x": 0,
  296. "y": 89.99999999999999,
  297. "z": 0
  298. },
  299. "_id": ""
  300. },
  301. {
  302. "__type__": "cc.UITransformComponent",
  303. "_name": "Node<UITransformComponent>",
  304. "_objFlags": 0,
  305. "node": {
  306. "__id__": 7
  307. },
  308. "_enabled": true,
  309. "_priority": 0,
  310. "_contentSize": {
  311. "__type__": "cc.Size",
  312. "width": 100,
  313. "height": 100
  314. },
  315. "_anchorPoint": {
  316. "__type__": "cc.Vec2",
  317. "x": 0.5,
  318. "y": 0.5
  319. },
  320. "_id": ""
  321. },
  322. {
  323. "__type__": "cc.ModelComponent",
  324. "_name": "Node<ModelComponent>",
  325. "_objFlags": 0,
  326. "node": {
  327. "__id__": 7
  328. },
  329. "_enabled": true,
  330. "_materials": [
  331. {
  332. "__uuid__": "c4281467-2b47-441c-9fbb-8cd2f7223ac1"
  333. }
  334. ],
  335. "_visFlags": 0,
  336. "lightmapSettings": {
  337. "__id__": 10
  338. },
  339. "_mesh": null,
  340. "_shadowCastingMode": 0,
  341. "_enableMorph": true,
  342. "_id": ""
  343. },
  344. {
  345. "__type__": "cc.ModelLightmapSettings",
  346. "texture": null,
  347. "uvParam": {
  348. "__type__": "cc.Vec4",
  349. "x": 0,
  350. "y": 0,
  351. "z": 0,
  352. "w": 0
  353. },
  354. "_bakeable": false,
  355. "_castShadow": false,
  356. "_receiveShadow": false,
  357. "_recieveShadow": false,
  358. "_lightmapSize": 64
  359. },
  360. {
  361. "__type__": "cc.UIModelComponent",
  362. "_name": "Node<UIModelComponent>",
  363. "_objFlags": 0,
  364. "node": {
  365. "__id__": 7
  366. },
  367. "_enabled": true,
  368. "_id": ""
  369. },
  370. {
  371. "__type__": "cc.PrefabInfo",
  372. "root": {
  373. "__id__": 1
  374. },
  375. "asset": {
  376. "__id__": 0
  377. },
  378. "fileId": "d4Ffvl4wlIpIsPZ26IqeS+",
  379. "sync": false,
  380. "_synced": {
  381. "default": false,
  382. "serializable": false
  383. }
  384. },
  385. {
  386. "__type__": "cc.Node",
  387. "_name": "BGFrame",
  388. "_objFlags": 0,
  389. "_parent": {
  390. "__id__": 1
  391. },
  392. "_children": [
  393. {
  394. "__id__": 14
  395. },
  396. {
  397. "__id__": 18
  398. },
  399. {
  400. "__id__": 22
  401. }
  402. ],
  403. "_active": true,
  404. "_components": [
  405. {
  406. "__id__": 26
  407. },
  408. {
  409. "__id__": 27
  410. }
  411. ],
  412. "_prefab": {
  413. "__id__": 28
  414. },
  415. "_lpos": {
  416. "__type__": "cc.Vec3",
  417. "x": 375,
  418. "y": 700,
  419. "z": 0
  420. },
  421. "_lrot": {
  422. "__type__": "cc.Quat",
  423. "x": 0,
  424. "y": 0,
  425. "z": 0,
  426. "w": 1
  427. },
  428. "_lscale": {
  429. "__type__": "cc.Vec3",
  430. "x": 1,
  431. "y": 1,
  432. "z": 1
  433. },
  434. "_layer": 1073741824,
  435. "_euler": {
  436. "__type__": "cc.Vec3",
  437. "x": 0,
  438. "y": 0,
  439. "z": 0
  440. },
  441. "_id": ""
  442. },
  443. {
  444. "__type__": "cc.Node",
  445. "_name": "BG1",
  446. "_objFlags": 0,
  447. "_parent": {
  448. "__id__": 13
  449. },
  450. "_children": [],
  451. "_active": true,
  452. "_components": [
  453. {
  454. "__id__": 15
  455. },
  456. {
  457. "__id__": 16
  458. }
  459. ],
  460. "_prefab": {
  461. "__id__": 17
  462. },
  463. "_lpos": {
  464. "__type__": "cc.Vec3",
  465. "x": 0,
  466. "y": -150,
  467. "z": 0
  468. },
  469. "_lrot": {
  470. "__type__": "cc.Quat",
  471. "x": 0,
  472. "y": 0,
  473. "z": 0,
  474. "w": 1
  475. },
  476. "_lscale": {
  477. "__type__": "cc.Vec3",
  478. "x": 1,
  479. "y": 1,
  480. "z": 1
  481. },
  482. "_layer": 33554432,
  483. "_euler": {
  484. "__type__": "cc.Vec3",
  485. "x": 0,
  486. "y": 0,
  487. "z": 0
  488. },
  489. "_id": ""
  490. },
  491. {
  492. "__type__": "cc.UITransformComponent",
  493. "_name": "BG1<UITransformComponent>",
  494. "_objFlags": 0,
  495. "node": {
  496. "__id__": 14
  497. },
  498. "_enabled": true,
  499. "_priority": 0,
  500. "_contentSize": {
  501. "__type__": "cc.Size",
  502. "width": 750,
  503. "height": 400
  504. },
  505. "_anchorPoint": {
  506. "__type__": "cc.Vec2",
  507. "x": 0.5,
  508. "y": 0.5
  509. },
  510. "_id": ""
  511. },
  512. {
  513. "__type__": "cc.SpriteComponent",
  514. "_name": "BG1<SpriteComponent>",
  515. "_objFlags": 0,
  516. "node": {
  517. "__id__": 14
  518. },
  519. "_enabled": true,
  520. "_srcBlendFactor": 2,
  521. "_dstBlendFactor": 4,
  522. "_color": {
  523. "__type__": "cc.Color",
  524. "r": 255,
  525. "g": 255,
  526. "b": 255,
  527. "a": 255
  528. },
  529. "_sharedMaterial": null,
  530. "_spriteFrame": {
  531. "__uuid__": "41ca8d43-c744-4018-848e-a0c6b0a2088c@f9941"
  532. },
  533. "_type": 0,
  534. "_fillType": 0,
  535. "_sizeMode": 0,
  536. "_fillCenter": {
  537. "__type__": "cc.Vec2",
  538. "x": 0,
  539. "y": 0
  540. },
  541. "_fillStart": 0,
  542. "_fillRange": 0,
  543. "_isTrimmedMode": true,
  544. "_useGrayscale": false,
  545. "_atlas": null,
  546. "_id": ""
  547. },
  548. {
  549. "__type__": "cc.PrefabInfo",
  550. "root": {
  551. "__id__": 1
  552. },
  553. "asset": {
  554. "__id__": 0
  555. },
  556. "fileId": "c7w0CHR9dBHYTdZHnFh+XS",
  557. "sync": false,
  558. "_synced": {
  559. "default": false,
  560. "serializable": false
  561. }
  562. },
  563. {
  564. "__type__": "cc.Node",
  565. "_name": "BG2",
  566. "_objFlags": 0,
  567. "_parent": {
  568. "__id__": 13
  569. },
  570. "_children": [],
  571. "_active": true,
  572. "_components": [
  573. {
  574. "__id__": 19
  575. },
  576. {
  577. "__id__": 20
  578. }
  579. ],
  580. "_prefab": {
  581. "__id__": 21
  582. },
  583. "_lpos": {
  584. "__type__": "cc.Vec3",
  585. "x": 0,
  586. "y": 51,
  587. "z": 0
  588. },
  589. "_lrot": {
  590. "__type__": "cc.Quat",
  591. "x": 0,
  592. "y": 0,
  593. "z": 0,
  594. "w": 1
  595. },
  596. "_lscale": {
  597. "__type__": "cc.Vec3",
  598. "x": 1,
  599. "y": 1,
  600. "z": 1
  601. },
  602. "_layer": 33554432,
  603. "_euler": {
  604. "__type__": "cc.Vec3",
  605. "x": 0,
  606. "y": 0,
  607. "z": 0
  608. },
  609. "_id": ""
  610. },
  611. {
  612. "__type__": "cc.UITransformComponent",
  613. "_name": "BG1<UITransformComponent>",
  614. "_objFlags": 0,
  615. "node": {
  616. "__id__": 18
  617. },
  618. "_enabled": true,
  619. "_priority": 0,
  620. "_contentSize": {
  621. "__type__": "cc.Size",
  622. "width": 750,
  623. "height": 5
  624. },
  625. "_anchorPoint": {
  626. "__type__": "cc.Vec2",
  627. "x": 0.5,
  628. "y": 0.5
  629. },
  630. "_id": ""
  631. },
  632. {
  633. "__type__": "cc.SpriteComponent",
  634. "_name": "BG1<SpriteComponent>",
  635. "_objFlags": 0,
  636. "node": {
  637. "__id__": 18
  638. },
  639. "_enabled": true,
  640. "_srcBlendFactor": 2,
  641. "_dstBlendFactor": 4,
  642. "_color": {
  643. "__type__": "cc.Color",
  644. "r": 255,
  645. "g": 255,
  646. "b": 255,
  647. "a": 255
  648. },
  649. "_sharedMaterial": null,
  650. "_spriteFrame": {
  651. "__uuid__": "de2a68fd-64a1-43eb-bfb7-07e8100ada89@f9941"
  652. },
  653. "_type": 0,
  654. "_fillType": 0,
  655. "_sizeMode": 0,
  656. "_fillCenter": {
  657. "__type__": "cc.Vec2",
  658. "x": 0,
  659. "y": 0
  660. },
  661. "_fillStart": 0,
  662. "_fillRange": 0,
  663. "_isTrimmedMode": true,
  664. "_useGrayscale": false,
  665. "_atlas": null,
  666. "_id": ""
  667. },
  668. {
  669. "__type__": "cc.PrefabInfo",
  670. "root": {
  671. "__id__": 1
  672. },
  673. "asset": {
  674. "__id__": 0
  675. },
  676. "fileId": "9d4WvQrZRBcLu7Qfc6udGd",
  677. "sync": false,
  678. "_synced": {
  679. "default": false,
  680. "serializable": false
  681. }
  682. },
  683. {
  684. "__type__": "cc.Node",
  685. "_name": "BG3",
  686. "_objFlags": 0,
  687. "_parent": {
  688. "__id__": 13
  689. },
  690. "_children": [],
  691. "_active": true,
  692. "_components": [
  693. {
  694. "__id__": 23
  695. },
  696. {
  697. "__id__": 24
  698. }
  699. ],
  700. "_prefab": {
  701. "__id__": 25
  702. },
  703. "_lpos": {
  704. "__type__": "cc.Vec3",
  705. "x": 0,
  706. "y": -391,
  707. "z": 0
  708. },
  709. "_lrot": {
  710. "__type__": "cc.Quat",
  711. "x": 0,
  712. "y": 0,
  713. "z": 0,
  714. "w": 1
  715. },
  716. "_lscale": {
  717. "__type__": "cc.Vec3",
  718. "x": 1,
  719. "y": 1,
  720. "z": 1
  721. },
  722. "_layer": 33554432,
  723. "_euler": {
  724. "__type__": "cc.Vec3",
  725. "x": 0,
  726. "y": 0,
  727. "z": 0
  728. },
  729. "_id": ""
  730. },
  731. {
  732. "__type__": "cc.UITransformComponent",
  733. "_name": "BG1<UITransformComponent>",
  734. "_objFlags": 0,
  735. "node": {
  736. "__id__": 22
  737. },
  738. "_enabled": true,
  739. "_priority": 0,
  740. "_contentSize": {
  741. "__type__": "cc.Size",
  742. "width": 750,
  743. "height": 120
  744. },
  745. "_anchorPoint": {
  746. "__type__": "cc.Vec2",
  747. "x": 0.5,
  748. "y": 0.5
  749. },
  750. "_id": ""
  751. },
  752. {
  753. "__type__": "cc.SpriteComponent",
  754. "_name": "BG1<SpriteComponent>",
  755. "_objFlags": 0,
  756. "node": {
  757. "__id__": 22
  758. },
  759. "_enabled": true,
  760. "_srcBlendFactor": 2,
  761. "_dstBlendFactor": 4,
  762. "_color": {
  763. "__type__": "cc.Color",
  764. "r": 255,
  765. "g": 255,
  766. "b": 255,
  767. "a": 255
  768. },
  769. "_sharedMaterial": null,
  770. "_spriteFrame": {
  771. "__uuid__": "9940c8a3-5755-4f43-81f1-b57b492b5e57@f9941"
  772. },
  773. "_type": 0,
  774. "_fillType": 0,
  775. "_sizeMode": 0,
  776. "_fillCenter": {
  777. "__type__": "cc.Vec2",
  778. "x": 0,
  779. "y": 0
  780. },
  781. "_fillStart": 0,
  782. "_fillRange": 0,
  783. "_isTrimmedMode": true,
  784. "_useGrayscale": false,
  785. "_atlas": null,
  786. "_id": ""
  787. },
  788. {
  789. "__type__": "cc.PrefabInfo",
  790. "root": {
  791. "__id__": 1
  792. },
  793. "asset": {
  794. "__id__": 0
  795. },
  796. "fileId": "51w57YNCBLu4qxGVrvIgI/",
  797. "sync": false,
  798. "_synced": {
  799. "default": false,
  800. "serializable": false
  801. }
  802. },
  803. {
  804. "__type__": "cc.UITransformComponent",
  805. "_name": "BGFrame<UITransformComponent>",
  806. "_objFlags": 0,
  807. "node": {
  808. "__id__": 13
  809. },
  810. "_enabled": true,
  811. "_priority": 0,
  812. "_contentSize": {
  813. "__type__": "cc.Size",
  814. "width": 100,
  815. "height": 100
  816. },
  817. "_anchorPoint": {
  818. "__type__": "cc.Vec2",
  819. "x": 0.5,
  820. "y": 0.5
  821. },
  822. "_id": ""
  823. },
  824. {
  825. "__type__": "cc.WidgetComponent",
  826. "_name": "BGFrame<WidgetComponent>",
  827. "_objFlags": 0,
  828. "node": {
  829. "__id__": 13
  830. },
  831. "_enabled": true,
  832. "_alignFlags": 20,
  833. "_target": null,
  834. "_left": 0,
  835. "_right": 0,
  836. "_top": 0,
  837. "_bottom": 650,
  838. "_horizontalCenter": 0,
  839. "_verticalCenter": 0,
  840. "_isAbsLeft": true,
  841. "_isAbsRight": true,
  842. "_isAbsTop": true,
  843. "_isAbsBottom": true,
  844. "_isAbsHorizontalCenter": true,
  845. "_isAbsVerticalCenter": true,
  846. "_originalWidth": 0,
  847. "_originalHeight": 0,
  848. "_alignMode": 2,
  849. "_lockFlags": 0,
  850. "_id": ""
  851. },
  852. {
  853. "__type__": "cc.PrefabInfo",
  854. "root": {
  855. "__id__": 1
  856. },
  857. "asset": {
  858. "__id__": 0
  859. },
  860. "fileId": "47pK1TjrFPC4lefcAokSZJ",
  861. "sync": false,
  862. "_synced": {
  863. "default": false,
  864. "serializable": false
  865. }
  866. },
  867. {
  868. "__type__": "cc.Node",
  869. "_name": "GunLoad3D",
  870. "_objFlags": 0,
  871. "_parent": {
  872. "__id__": 1
  873. },
  874. "_children": [],
  875. "_active": true,
  876. "_components": [
  877. {
  878. "__id__": 30
  879. }
  880. ],
  881. "_prefab": {
  882. "__id__": 31
  883. },
  884. "_lpos": {
  885. "__type__": "cc.Vec3",
  886. "x": 390.319,
  887. "y": 974.411,
  888. "z": 0
  889. },
  890. "_lrot": {
  891. "__type__": "cc.Quat",
  892. "x": 0,
  893. "y": 0,
  894. "z": 0,
  895. "w": 1
  896. },
  897. "_lscale": {
  898. "__type__": "cc.Vec3",
  899. "x": 1,
  900. "y": 1,
  901. "z": 1
  902. },
  903. "_layer": 1073741824,
  904. "_euler": {
  905. "__type__": "cc.Vec3",
  906. "x": 0,
  907. "y": 0,
  908. "z": 0
  909. },
  910. "_id": ""
  911. },
  912. {
  913. "__type__": "cc.UITransformComponent",
  914. "_name": "GunLoad3D<UITransformComponent>",
  915. "_objFlags": 0,
  916. "node": {
  917. "__id__": 29
  918. },
  919. "_enabled": true,
  920. "_priority": 0,
  921. "_contentSize": {
  922. "__type__": "cc.Size",
  923. "width": 480,
  924. "height": 250
  925. },
  926. "_anchorPoint": {
  927. "__type__": "cc.Vec2",
  928. "x": 0.5,
  929. "y": 0.5
  930. },
  931. "_id": ""
  932. },
  933. {
  934. "__type__": "cc.PrefabInfo",
  935. "root": {
  936. "__id__": 1
  937. },
  938. "asset": {
  939. "__id__": 0
  940. },
  941. "fileId": "f13PV6oJRFtLUIcjXlebWA",
  942. "sync": false,
  943. "_synced": {
  944. "default": false,
  945. "serializable": false
  946. }
  947. },
  948. {
  949. "__type__": "cc.Node",
  950. "_name": "GunName",
  951. "_objFlags": 0,
  952. "_parent": {
  953. "__id__": 1
  954. },
  955. "_children": [
  956. {
  957. "__id__": 33
  958. }
  959. ],
  960. "_active": true,
  961. "_components": [
  962. {
  963. "__id__": 37
  964. },
  965. {
  966. "__id__": 38
  967. },
  968. {
  969. "__id__": 39
  970. }
  971. ],
  972. "_prefab": {
  973. "__id__": 40
  974. },
  975. "_lpos": {
  976. "__type__": "cc.Vec3",
  977. "x": 375.849,
  978. "y": 1106.993,
  979. "z": 0
  980. },
  981. "_lrot": {
  982. "__type__": "cc.Quat",
  983. "x": 0,
  984. "y": 0,
  985. "z": 0,
  986. "w": 1
  987. },
  988. "_lscale": {
  989. "__type__": "cc.Vec3",
  990. "x": 1,
  991. "y": 1,
  992. "z": 1
  993. },
  994. "_layer": 33554432,
  995. "_euler": {
  996. "__type__": "cc.Vec3",
  997. "x": 0,
  998. "y": 0,
  999. "z": 0
  1000. },
  1001. "_id": ""
  1002. },
  1003. {
  1004. "__type__": "cc.Node",
  1005. "_name": "Label",
  1006. "_objFlags": 0,
  1007. "_parent": {
  1008. "__id__": 32
  1009. },
  1010. "_children": [],
  1011. "_active": true,
  1012. "_components": [
  1013. {
  1014. "__id__": 34
  1015. },
  1016. {
  1017. "__id__": 35
  1018. }
  1019. ],
  1020. "_prefab": {
  1021. "__id__": 36
  1022. },
  1023. "_lpos": {
  1024. "__type__": "cc.Vec3",
  1025. "x": 0,
  1026. "y": -1,
  1027. "z": 0
  1028. },
  1029. "_lrot": {
  1030. "__type__": "cc.Quat",
  1031. "x": 0,
  1032. "y": 0,
  1033. "z": 0,
  1034. "w": 1
  1035. },
  1036. "_lscale": {
  1037. "__type__": "cc.Vec3",
  1038. "x": 1,
  1039. "y": 1,
  1040. "z": 1
  1041. },
  1042. "_layer": 33554432,
  1043. "_euler": {
  1044. "__type__": "cc.Vec3",
  1045. "x": 0,
  1046. "y": 0,
  1047. "z": 0
  1048. },
  1049. "_id": ""
  1050. },
  1051. {
  1052. "__type__": "cc.UITransformComponent",
  1053. "_name": "",
  1054. "_objFlags": 0,
  1055. "node": {
  1056. "__id__": 33
  1057. },
  1058. "_enabled": true,
  1059. "_priority": 0,
  1060. "_contentSize": {
  1061. "__type__": "cc.Size",
  1062. "width": 112,
  1063. "height": 50.4
  1064. },
  1065. "_anchorPoint": {
  1066. "__type__": "cc.Vec2",
  1067. "x": 0.5,
  1068. "y": 0.5
  1069. },
  1070. "_id": ""
  1071. },
  1072. {
  1073. "__type__": "cc.LabelComponent",
  1074. "_name": "",
  1075. "_objFlags": 0,
  1076. "node": {
  1077. "__id__": 33
  1078. },
  1079. "_enabled": true,
  1080. "_srcBlendFactor": 2,
  1081. "_dstBlendFactor": 4,
  1082. "_color": {
  1083. "__type__": "cc.Color",
  1084. "r": 255,
  1085. "g": 255,
  1086. "b": 255,
  1087. "a": 255
  1088. },
  1089. "_sharedMaterial": null,
  1090. "_useOriginalSize": true,
  1091. "_string": "毛瑟手枪",
  1092. "_horizontalAlign": 1,
  1093. "_verticalAlign": 1,
  1094. "_actualFontSize": 28,
  1095. "_fontSize": 28,
  1096. "_fontFamily": "Arial",
  1097. "_lineHeight": 40,
  1098. "_overflow": 0,
  1099. "_enableWrapText": true,
  1100. "_font": null,
  1101. "_isSystemFontUsed": true,
  1102. "_isItalic": false,
  1103. "_isBold": false,
  1104. "_isUnderline": false,
  1105. "_cacheMode": 0,
  1106. "_id": ""
  1107. },
  1108. {
  1109. "__type__": "cc.PrefabInfo",
  1110. "root": {
  1111. "__id__": 1
  1112. },
  1113. "asset": {
  1114. "__id__": 0
  1115. },
  1116. "fileId": "dckK/ZP9ZNA6D3ClTL7kl8",
  1117. "sync": false,
  1118. "_synced": {
  1119. "default": false,
  1120. "serializable": false
  1121. }
  1122. },
  1123. {
  1124. "__type__": "cc.UITransformComponent",
  1125. "_name": "Background<UITransformComponent>",
  1126. "_objFlags": 0,
  1127. "node": {
  1128. "__id__": 32
  1129. },
  1130. "_enabled": true,
  1131. "_priority": 0,
  1132. "_contentSize": {
  1133. "__type__": "cc.Size",
  1134. "width": 250,
  1135. "height": 50
  1136. },
  1137. "_anchorPoint": {
  1138. "__type__": "cc.Vec2",
  1139. "x": 0.5,
  1140. "y": 0.5
  1141. },
  1142. "_id": ""
  1143. },
  1144. {
  1145. "__type__": "cc.SpriteComponent",
  1146. "_name": "Background<SpriteComponent>",
  1147. "_objFlags": 0,
  1148. "node": {
  1149. "__id__": 32
  1150. },
  1151. "_enabled": true,
  1152. "_srcBlendFactor": 2,
  1153. "_dstBlendFactor": 4,
  1154. "_color": {
  1155. "__type__": "cc.Color",
  1156. "r": 255,
  1157. "g": 255,
  1158. "b": 255,
  1159. "a": 255
  1160. },
  1161. "_sharedMaterial": null,
  1162. "_spriteFrame": {
  1163. "__uuid__": "72e319bc-562c-4474-b068-4d153e08dc18@f9941"
  1164. },
  1165. "_type": 1,
  1166. "_fillType": 0,
  1167. "_sizeMode": 0,
  1168. "_fillCenter": {
  1169. "__type__": "cc.Vec2",
  1170. "x": 0,
  1171. "y": 0
  1172. },
  1173. "_fillStart": 0,
  1174. "_fillRange": 0,
  1175. "_isTrimmedMode": true,
  1176. "_useGrayscale": false,
  1177. "_atlas": null,
  1178. "_id": ""
  1179. },
  1180. {
  1181. "__type__": "cc.UIOpacityComponent",
  1182. "_name": "Background<UIOpacityComponent>",
  1183. "_objFlags": 0,
  1184. "node": {
  1185. "__id__": 32
  1186. },
  1187. "_enabled": true,
  1188. "_opacity": 125,
  1189. "_id": ""
  1190. },
  1191. {
  1192. "__type__": "cc.PrefabInfo",
  1193. "root": {
  1194. "__id__": 1
  1195. },
  1196. "asset": {
  1197. "__id__": 0
  1198. },
  1199. "fileId": "04IwBBaZBNZJS99hZLbaF7",
  1200. "sync": false,
  1201. "_synced": {
  1202. "default": false,
  1203. "serializable": false
  1204. }
  1205. },
  1206. {
  1207. "__type__": "cc.Node",
  1208. "_name": "StartGameButton",
  1209. "_objFlags": 0,
  1210. "_parent": {
  1211. "__id__": 1
  1212. },
  1213. "_children": [
  1214. {
  1215. "__id__": 42
  1216. },
  1217. {
  1218. "__id__": 46
  1219. }
  1220. ],
  1221. "_active": true,
  1222. "_components": [
  1223. {
  1224. "__id__": 50
  1225. },
  1226. {
  1227. "__id__": 51
  1228. },
  1229. {
  1230. "__id__": 52
  1231. },
  1232. {
  1233. "__id__": 54
  1234. }
  1235. ],
  1236. "_prefab": {
  1237. "__id__": 55
  1238. },
  1239. "_lpos": {
  1240. "__type__": "cc.Vec3",
  1241. "x": 375,
  1242. "y": 810,
  1243. "z": 0
  1244. },
  1245. "_lrot": {
  1246. "__type__": "cc.Quat",
  1247. "x": 0,
  1248. "y": 0,
  1249. "z": 0,
  1250. "w": 1
  1251. },
  1252. "_lscale": {
  1253. "__type__": "cc.Vec3",
  1254. "x": 1,
  1255. "y": 1,
  1256. "z": 1
  1257. },
  1258. "_layer": 33554432,
  1259. "_euler": {
  1260. "__type__": "cc.Vec3",
  1261. "x": 0,
  1262. "y": 0,
  1263. "z": 0
  1264. },
  1265. "_id": ""
  1266. },
  1267. {
  1268. "__type__": "cc.Node",
  1269. "_name": "Label",
  1270. "_objFlags": 0,
  1271. "_parent": {
  1272. "__id__": 41
  1273. },
  1274. "_children": [],
  1275. "_active": true,
  1276. "_components": [
  1277. {
  1278. "__id__": 43
  1279. },
  1280. {
  1281. "__id__": 44
  1282. }
  1283. ],
  1284. "_prefab": {
  1285. "__id__": 45
  1286. },
  1287. "_lpos": {
  1288. "__type__": "cc.Vec3",
  1289. "x": 0,
  1290. "y": 24,
  1291. "z": 0
  1292. },
  1293. "_lrot": {
  1294. "__type__": "cc.Quat",
  1295. "x": 0,
  1296. "y": 0,
  1297. "z": 0,
  1298. "w": 1
  1299. },
  1300. "_lscale": {
  1301. "__type__": "cc.Vec3",
  1302. "x": 1,
  1303. "y": 1,
  1304. "z": 1
  1305. },
  1306. "_layer": 33554432,
  1307. "_euler": {
  1308. "__type__": "cc.Vec3",
  1309. "x": 0,
  1310. "y": 0,
  1311. "z": 0
  1312. },
  1313. "_id": ""
  1314. },
  1315. {
  1316. "__type__": "cc.UITransformComponent",
  1317. "_name": "Label<UITransformComponent>",
  1318. "_objFlags": 0,
  1319. "node": {
  1320. "__id__": 42
  1321. },
  1322. "_enabled": true,
  1323. "_priority": 0,
  1324. "_contentSize": {
  1325. "__type__": "cc.Size",
  1326. "width": 206,
  1327. "height": 57
  1328. },
  1329. "_anchorPoint": {
  1330. "__type__": "cc.Vec2",
  1331. "x": 0.5,
  1332. "y": 0.5
  1333. },
  1334. "_id": ""
  1335. },
  1336. {
  1337. "__type__": "cc.LabelComponent",
  1338. "_name": "Label<LabelComponent>",
  1339. "_objFlags": 0,
  1340. "node": {
  1341. "__id__": 42
  1342. },
  1343. "_enabled": true,
  1344. "_srcBlendFactor": 2,
  1345. "_dstBlendFactor": 4,
  1346. "_color": {
  1347. "__type__": "cc.Color",
  1348. "r": 255,
  1349. "g": 255,
  1350. "b": 255,
  1351. "a": 255
  1352. },
  1353. "_sharedMaterial": null,
  1354. "_useOriginalSize": true,
  1355. "_string": "开始游戏",
  1356. "_horizontalAlign": 1,
  1357. "_verticalAlign": 1,
  1358. "_actualFontSize": 40,
  1359. "_fontSize": 40,
  1360. "_fontFamily": "Arial",
  1361. "_lineHeight": 40,
  1362. "_overflow": 1,
  1363. "_enableWrapText": false,
  1364. "_font": null,
  1365. "_isSystemFontUsed": true,
  1366. "_isItalic": false,
  1367. "_isBold": false,
  1368. "_isUnderline": false,
  1369. "_cacheMode": 0,
  1370. "_id": ""
  1371. },
  1372. {
  1373. "__type__": "cc.PrefabInfo",
  1374. "root": {
  1375. "__id__": 1
  1376. },
  1377. "asset": {
  1378. "__id__": 0
  1379. },
  1380. "fileId": "a5UZh69z5J3I+XgBQBFgUC",
  1381. "sync": false,
  1382. "_synced": {
  1383. "default": false,
  1384. "serializable": false
  1385. }
  1386. },
  1387. {
  1388. "__type__": "cc.Node",
  1389. "_name": "LevelLabel",
  1390. "_objFlags": 0,
  1391. "_parent": {
  1392. "__id__": 41
  1393. },
  1394. "_children": [],
  1395. "_active": true,
  1396. "_components": [
  1397. {
  1398. "__id__": 47
  1399. },
  1400. {
  1401. "__id__": 48
  1402. }
  1403. ],
  1404. "_prefab": {
  1405. "__id__": 49
  1406. },
  1407. "_lpos": {
  1408. "__type__": "cc.Vec3",
  1409. "x": 0,
  1410. "y": -17,
  1411. "z": 0
  1412. },
  1413. "_lrot": {
  1414. "__type__": "cc.Quat",
  1415. "x": 0,
  1416. "y": 0,
  1417. "z": 0,
  1418. "w": 1
  1419. },
  1420. "_lscale": {
  1421. "__type__": "cc.Vec3",
  1422. "x": 1,
  1423. "y": 1,
  1424. "z": 1
  1425. },
  1426. "_layer": 33554432,
  1427. "_euler": {
  1428. "__type__": "cc.Vec3",
  1429. "x": 0,
  1430. "y": 0,
  1431. "z": 0
  1432. },
  1433. "_id": ""
  1434. },
  1435. {
  1436. "__type__": "cc.UITransformComponent",
  1437. "_name": "",
  1438. "_objFlags": 0,
  1439. "node": {
  1440. "__id__": 46
  1441. },
  1442. "_enabled": true,
  1443. "_priority": 0,
  1444. "_contentSize": {
  1445. "__type__": "cc.Size",
  1446. "width": 71.57,
  1447. "height": 50.4
  1448. },
  1449. "_anchorPoint": {
  1450. "__type__": "cc.Vec2",
  1451. "x": 0.5,
  1452. "y": 0.5
  1453. },
  1454. "_id": ""
  1455. },
  1456. {
  1457. "__type__": "cc.LabelComponent",
  1458. "_name": "",
  1459. "_objFlags": 0,
  1460. "node": {
  1461. "__id__": 46
  1462. },
  1463. "_enabled": true,
  1464. "_srcBlendFactor": 2,
  1465. "_dstBlendFactor": 4,
  1466. "_color": {
  1467. "__type__": "cc.Color",
  1468. "r": 255,
  1469. "g": 255,
  1470. "b": 255,
  1471. "a": 255
  1472. },
  1473. "_sharedMaterial": null,
  1474. "_useOriginalSize": true,
  1475. "_string": "第1关",
  1476. "_horizontalAlign": 1,
  1477. "_verticalAlign": 1,
  1478. "_actualFontSize": 28,
  1479. "_fontSize": 28,
  1480. "_fontFamily": "Arial",
  1481. "_lineHeight": 40,
  1482. "_overflow": 0,
  1483. "_enableWrapText": true,
  1484. "_font": null,
  1485. "_isSystemFontUsed": true,
  1486. "_isItalic": false,
  1487. "_isBold": false,
  1488. "_isUnderline": false,
  1489. "_cacheMode": 0,
  1490. "_id": ""
  1491. },
  1492. {
  1493. "__type__": "cc.PrefabInfo",
  1494. "root": {
  1495. "__id__": 1
  1496. },
  1497. "asset": {
  1498. "__id__": 0
  1499. },
  1500. "fileId": "9e/M9MQz5GPJ5wkdWVRkzT",
  1501. "sync": false,
  1502. "_synced": {
  1503. "default": false,
  1504. "serializable": false
  1505. }
  1506. },
  1507. {
  1508. "__type__": "cc.UITransformComponent",
  1509. "_name": "StartGameButton<UITransformComponent>",
  1510. "_objFlags": 0,
  1511. "node": {
  1512. "__id__": 41
  1513. },
  1514. "_enabled": true,
  1515. "_priority": 0,
  1516. "_contentSize": {
  1517. "__type__": "cc.Size",
  1518. "width": 328,
  1519. "height": 126
  1520. },
  1521. "_anchorPoint": {
  1522. "__type__": "cc.Vec2",
  1523. "x": 0.5,
  1524. "y": 0.5
  1525. },
  1526. "_id": ""
  1527. },
  1528. {
  1529. "__type__": "cc.SpriteComponent",
  1530. "_name": "StartGameButton<SpriteComponent>",
  1531. "_objFlags": 0,
  1532. "node": {
  1533. "__id__": 41
  1534. },
  1535. "_enabled": true,
  1536. "_srcBlendFactor": 2,
  1537. "_dstBlendFactor": 4,
  1538. "_color": {
  1539. "__type__": "cc.Color",
  1540. "r": 255,
  1541. "g": 255,
  1542. "b": 255,
  1543. "a": 255
  1544. },
  1545. "_sharedMaterial": null,
  1546. "_spriteFrame": {
  1547. "__uuid__": "3bfc8929-26a4-4b30-b54a-8ae3dc61f4a7@f9941"
  1548. },
  1549. "_type": 1,
  1550. "_fillType": 0,
  1551. "_sizeMode": 0,
  1552. "_fillCenter": {
  1553. "__type__": "cc.Vec2",
  1554. "x": 0,
  1555. "y": 0
  1556. },
  1557. "_fillStart": 0,
  1558. "_fillRange": 0,
  1559. "_isTrimmedMode": true,
  1560. "_useGrayscale": false,
  1561. "_atlas": null,
  1562. "_id": ""
  1563. },
  1564. {
  1565. "__type__": "cc.ButtonComponent",
  1566. "_name": "StartGameButton<ButtonComponent>",
  1567. "_objFlags": 0,
  1568. "node": {
  1569. "__id__": 41
  1570. },
  1571. "_enabled": true,
  1572. "clickEvents": [
  1573. {
  1574. "__id__": 53
  1575. }
  1576. ],
  1577. "_interactable": true,
  1578. "_transition": 2,
  1579. "_normalColor": {
  1580. "__type__": "cc.Color",
  1581. "r": 214,
  1582. "g": 214,
  1583. "b": 214,
  1584. "a": 255
  1585. },
  1586. "_hoverColor": {
  1587. "__type__": "cc.Color",
  1588. "r": 211,
  1589. "g": 211,
  1590. "b": 211,
  1591. "a": 255
  1592. },
  1593. "_pressColor": {
  1594. "__type__": "cc.Color",
  1595. "r": 255,
  1596. "g": 255,
  1597. "b": 255,
  1598. "a": 255
  1599. },
  1600. "_disabledColor": {
  1601. "__type__": "cc.Color",
  1602. "r": 124,
  1603. "g": 124,
  1604. "b": 124,
  1605. "a": 255
  1606. },
  1607. "_normalSprite": {
  1608. "__uuid__": "3bfc8929-26a4-4b30-b54a-8ae3dc61f4a7@f9941"
  1609. },
  1610. "_hoverSprite": {
  1611. "__uuid__": "3bfc8929-26a4-4b30-b54a-8ae3dc61f4a7@f9941"
  1612. },
  1613. "_pressedSprite": {
  1614. "__uuid__": "3bfc8929-26a4-4b30-b54a-8ae3dc61f4a7@f9941"
  1615. },
  1616. "_disabledSprite": {
  1617. "__uuid__": "3bfc8929-26a4-4b30-b54a-8ae3dc61f4a7@f9941"
  1618. },
  1619. "_duration": 0.1,
  1620. "_zoomScale": 1.2,
  1621. "_target": {
  1622. "__id__": 41
  1623. },
  1624. "_id": ""
  1625. },
  1626. {
  1627. "__type__": "cc.ClickEvent",
  1628. "target": {
  1629. "__id__": 1
  1630. },
  1631. "component": "",
  1632. "_componentId": "8fc93vzZ1xF6qpWn8Qq53+4",
  1633. "handler": "StartGame",
  1634. "customEventData": ""
  1635. },
  1636. {
  1637. "__type__": "cc.WidgetComponent",
  1638. "_name": "StartGameButton<WidgetComponent>",
  1639. "_objFlags": 0,
  1640. "node": {
  1641. "__id__": 41
  1642. },
  1643. "_enabled": true,
  1644. "_alignFlags": 20,
  1645. "_target": null,
  1646. "_left": 0,
  1647. "_right": 0,
  1648. "_top": 0,
  1649. "_bottom": 747,
  1650. "_horizontalCenter": 0,
  1651. "_verticalCenter": 0,
  1652. "_isAbsLeft": true,
  1653. "_isAbsRight": true,
  1654. "_isAbsTop": true,
  1655. "_isAbsBottom": true,
  1656. "_isAbsHorizontalCenter": true,
  1657. "_isAbsVerticalCenter": true,
  1658. "_originalWidth": 0,
  1659. "_originalHeight": 0,
  1660. "_alignMode": 2,
  1661. "_lockFlags": 0,
  1662. "_id": ""
  1663. },
  1664. {
  1665. "__type__": "cc.PrefabInfo",
  1666. "root": {
  1667. "__id__": 1
  1668. },
  1669. "asset": {
  1670. "__id__": 0
  1671. },
  1672. "fileId": "a9QMw5al5ANa8t9fMUxbRz",
  1673. "sync": false,
  1674. "_synced": {
  1675. "default": false,
  1676. "serializable": false
  1677. }
  1678. },
  1679. {
  1680. "__type__": "cc.Node",
  1681. "_name": "WeaponList",
  1682. "_objFlags": 0,
  1683. "_parent": {
  1684. "__id__": 1
  1685. },
  1686. "_children": [],
  1687. "_active": true,
  1688. "_components": [
  1689. {
  1690. "__id__": 57
  1691. },
  1692. {
  1693. "__id__": 58
  1694. }
  1695. ],
  1696. "_prefab": {
  1697. "__id__": 59
  1698. },
  1699. "_lpos": {
  1700. "__type__": "cc.Vec3",
  1701. "x": 373.439,
  1702. "y": 560.129,
  1703. "z": 0
  1704. },
  1705. "_lrot": {
  1706. "__type__": "cc.Quat",
  1707. "x": 0,
  1708. "y": 0,
  1709. "z": 0,
  1710. "w": 1
  1711. },
  1712. "_lscale": {
  1713. "__type__": "cc.Vec3",
  1714. "x": 1,
  1715. "y": 1,
  1716. "z": 1
  1717. },
  1718. "_layer": 33554432,
  1719. "_euler": {
  1720. "__type__": "cc.Vec3",
  1721. "x": 0,
  1722. "y": 0,
  1723. "z": 0
  1724. },
  1725. "_id": ""
  1726. },
  1727. {
  1728. "__type__": "cc.UITransformComponent",
  1729. "_name": "Layout<UITransformComponent>",
  1730. "_objFlags": 0,
  1731. "node": {
  1732. "__id__": 56
  1733. },
  1734. "_enabled": true,
  1735. "_priority": 0,
  1736. "_contentSize": {
  1737. "__type__": "cc.Size",
  1738. "width": 728,
  1739. "height": 360
  1740. },
  1741. "_anchorPoint": {
  1742. "__type__": "cc.Vec2",
  1743. "x": 0.5,
  1744. "y": 0.5
  1745. },
  1746. "_id": ""
  1747. },
  1748. {
  1749. "__type__": "cc.LayoutComponent",
  1750. "_name": "Layout<LayoutComponent>",
  1751. "_objFlags": 0,
  1752. "node": {
  1753. "__id__": 56
  1754. },
  1755. "_enabled": true,
  1756. "_resizeMode": 0,
  1757. "_N$layoutType": 3,
  1758. "_N$padding": 0,
  1759. "_cellSize": {
  1760. "__type__": "cc.Size",
  1761. "width": 40,
  1762. "height": 40
  1763. },
  1764. "_startAxis": 0,
  1765. "_paddingLeft": 0,
  1766. "_paddingRight": 0,
  1767. "_paddingTop": 0,
  1768. "_paddingBottom": 0,
  1769. "_spacingX": 15,
  1770. "_spacingY": 15,
  1771. "_verticalDirection": 1,
  1772. "_horizontalDirection": 0,
  1773. "_affectedByScale": false,
  1774. "_id": ""
  1775. },
  1776. {
  1777. "__type__": "cc.PrefabInfo",
  1778. "root": {
  1779. "__id__": 1
  1780. },
  1781. "asset": {
  1782. "__id__": 0
  1783. },
  1784. "fileId": "082BxdO39J5Z7rrAw7sTVo",
  1785. "sync": false,
  1786. "_synced": {
  1787. "default": false,
  1788. "serializable": false
  1789. }
  1790. },
  1791. {
  1792. "__type__": "cc.Node",
  1793. "_name": "TopGroup",
  1794. "_objFlags": 0,
  1795. "_parent": {
  1796. "__id__": 1
  1797. },
  1798. "_children": [
  1799. {
  1800. "__id__": 61
  1801. },
  1802. {
  1803. "__id__": 66
  1804. },
  1805. {
  1806. "__id__": 88
  1807. },
  1808. {
  1809. "__id__": 106
  1810. },
  1811. {
  1812. "__id__": 123
  1813. },
  1814. {
  1815. "__id__": 132
  1816. }
  1817. ],
  1818. "_active": true,
  1819. "_components": [
  1820. {
  1821. "__id__": 141
  1822. },
  1823. {
  1824. "__id__": 142
  1825. }
  1826. ],
  1827. "_prefab": {
  1828. "__id__": 143
  1829. },
  1830. "_lpos": {
  1831. "__type__": "cc.Vec3",
  1832. "x": 49.38799999999998,
  1833. "y": 1267,
  1834. "z": 0
  1835. },
  1836. "_lrot": {
  1837. "__type__": "cc.Quat",
  1838. "x": 0,
  1839. "y": 0,
  1840. "z": 0,
  1841. "w": 1
  1842. },
  1843. "_lscale": {
  1844. "__type__": "cc.Vec3",
  1845. "x": 1,
  1846. "y": 1,
  1847. "z": 1
  1848. },
  1849. "_layer": 1073741824,
  1850. "_euler": {
  1851. "__type__": "cc.Vec3",
  1852. "x": 0,
  1853. "y": 0,
  1854. "z": 0
  1855. },
  1856. "_id": ""
  1857. },
  1858. {
  1859. "__type__": "cc.Node",
  1860. "_name": "BGIcondi",
  1861. "_objFlags": 0,
  1862. "_parent": {
  1863. "__id__": 60
  1864. },
  1865. "_children": [],
  1866. "_active": true,
  1867. "_components": [
  1868. {
  1869. "__id__": 62
  1870. },
  1871. {
  1872. "__id__": 63
  1873. },
  1874. {
  1875. "__id__": 64
  1876. }
  1877. ],
  1878. "_prefab": {
  1879. "__id__": 65
  1880. },
  1881. "_lpos": {
  1882. "__type__": "cc.Vec3",
  1883. "x": -50,
  1884. "y": -39,
  1885. "z": 0
  1886. },
  1887. "_lrot": {
  1888. "__type__": "cc.Quat",
  1889. "x": 0,
  1890. "y": 0,
  1891. "z": 0,
  1892. "w": 1
  1893. },
  1894. "_lscale": {
  1895. "__type__": "cc.Vec3",
  1896. "x": 1,
  1897. "y": 1,
  1898. "z": 1
  1899. },
  1900. "_layer": 33554432,
  1901. "_euler": {
  1902. "__type__": "cc.Vec3",
  1903. "x": 0,
  1904. "y": 0,
  1905. "z": 0
  1906. },
  1907. "_id": ""
  1908. },
  1909. {
  1910. "__type__": "cc.UITransformComponent",
  1911. "_name": "BGIcondi<UITransformComponent>",
  1912. "_objFlags": 0,
  1913. "node": {
  1914. "__id__": 61
  1915. },
  1916. "_enabled": true,
  1917. "_priority": 0,
  1918. "_contentSize": {
  1919. "__type__": "cc.Size",
  1920. "width": 703,
  1921. "height": 76
  1922. },
  1923. "_anchorPoint": {
  1924. "__type__": "cc.Vec2",
  1925. "x": 0,
  1926. "y": 0.5
  1927. },
  1928. "_id": ""
  1929. },
  1930. {
  1931. "__type__": "cc.SpriteComponent",
  1932. "_name": "BGIcondi<SpriteComponent>",
  1933. "_objFlags": 0,
  1934. "node": {
  1935. "__id__": 61
  1936. },
  1937. "_enabled": true,
  1938. "_srcBlendFactor": 2,
  1939. "_dstBlendFactor": 4,
  1940. "_color": {
  1941. "__type__": "cc.Color",
  1942. "r": 255,
  1943. "g": 255,
  1944. "b": 255,
  1945. "a": 255
  1946. },
  1947. "_sharedMaterial": null,
  1948. "_spriteFrame": {
  1949. "__uuid__": "86138ab3-01a0-4ce6-97d3-15225731f529@f9941"
  1950. },
  1951. "_type": 0,
  1952. "_fillType": 0,
  1953. "_sizeMode": 1,
  1954. "_fillCenter": {
  1955. "__type__": "cc.Vec2",
  1956. "x": 0,
  1957. "y": 0
  1958. },
  1959. "_fillStart": 0,
  1960. "_fillRange": 0,
  1961. "_isTrimmedMode": true,
  1962. "_useGrayscale": false,
  1963. "_atlas": null,
  1964. "_id": ""
  1965. },
  1966. {
  1967. "__type__": "cc.WidgetComponent",
  1968. "_name": "BGIcondi<WidgetComponent>",
  1969. "_objFlags": 0,
  1970. "node": {
  1971. "__id__": 61
  1972. },
  1973. "_enabled": true,
  1974. "_alignFlags": 9,
  1975. "_target": null,
  1976. "_left": 0,
  1977. "_right": 0,
  1978. "_top": 51,
  1979. "_bottom": 0,
  1980. "_horizontalCenter": 0,
  1981. "_verticalCenter": 0,
  1982. "_isAbsLeft": true,
  1983. "_isAbsRight": true,
  1984. "_isAbsTop": true,
  1985. "_isAbsBottom": true,
  1986. "_isAbsHorizontalCenter": true,
  1987. "_isAbsVerticalCenter": true,
  1988. "_originalWidth": 0,
  1989. "_originalHeight": 0,
  1990. "_alignMode": 2,
  1991. "_lockFlags": 0,
  1992. "_id": ""
  1993. },
  1994. {
  1995. "__type__": "cc.PrefabInfo",
  1996. "root": {
  1997. "__id__": 1
  1998. },
  1999. "asset": {
  2000. "__id__": 0
  2001. },
  2002. "fileId": "eaCRXFpdVIZ5V2P+0e8T8L",
  2003. "sync": false,
  2004. "_synced": {
  2005. "default": false,
  2006. "serializable": false
  2007. }
  2008. },
  2009. {
  2010. "__type__": "cc.Node",
  2011. "_name": "GlodView",
  2012. "_objFlags": 0,
  2013. "_parent": {
  2014. "__id__": 60
  2015. },
  2016. "_children": [
  2017. {
  2018. "__id__": 67
  2019. },
  2020. {
  2021. "__id__": 72
  2022. },
  2023. {
  2024. "__id__": 76
  2025. },
  2026. {
  2027. "__id__": 80
  2028. }
  2029. ],
  2030. "_active": true,
  2031. "_components": [
  2032. {
  2033. "__id__": 84
  2034. },
  2035. {
  2036. "__id__": 85
  2037. },
  2038. {
  2039. "__id__": 86
  2040. }
  2041. ],
  2042. "_prefab": {
  2043. "__id__": 87
  2044. },
  2045. "_lpos": {
  2046. "__type__": "cc.Vec3",
  2047. "x": 56,
  2048. "y": -38.090000000000146,
  2049. "z": 0
  2050. },
  2051. "_lrot": {
  2052. "__type__": "cc.Quat",
  2053. "x": 0,
  2054. "y": 0,
  2055. "z": 0,
  2056. "w": 1
  2057. },
  2058. "_lscale": {
  2059. "__type__": "cc.Vec3",
  2060. "x": 1,
  2061. "y": 1,
  2062. "z": 1
  2063. },
  2064. "_layer": 1073741824,
  2065. "_euler": {
  2066. "__type__": "cc.Vec3",
  2067. "x": 0,
  2068. "y": 0,
  2069. "z": 0
  2070. },
  2071. "_id": ""
  2072. },
  2073. {
  2074. "__type__": "cc.Node",
  2075. "_name": "Background",
  2076. "_objFlags": 0,
  2077. "_parent": {
  2078. "__id__": 66
  2079. },
  2080. "_children": [],
  2081. "_active": true,
  2082. "_components": [
  2083. {
  2084. "__id__": 68
  2085. },
  2086. {
  2087. "__id__": 69
  2088. },
  2089. {
  2090. "__id__": 70
  2091. }
  2092. ],
  2093. "_prefab": {
  2094. "__id__": 71
  2095. },
  2096. "_lpos": {
  2097. "__type__": "cc.Vec3",
  2098. "x": 63,
  2099. "y": 0,
  2100. "z": 0
  2101. },
  2102. "_lrot": {
  2103. "__type__": "cc.Quat",
  2104. "x": 0,
  2105. "y": 0,
  2106. "z": 0,
  2107. "w": 1
  2108. },
  2109. "_lscale": {
  2110. "__type__": "cc.Vec3",
  2111. "x": 1,
  2112. "y": 1,
  2113. "z": 1
  2114. },
  2115. "_layer": 33554432,
  2116. "_euler": {
  2117. "__type__": "cc.Vec3",
  2118. "x": 0,
  2119. "y": 0,
  2120. "z": 0
  2121. },
  2122. "_id": ""
  2123. },
  2124. {
  2125. "__type__": "cc.UITransformComponent",
  2126. "_name": "Background<UITransformComponent>",
  2127. "_objFlags": 0,
  2128. "node": {
  2129. "__id__": 67
  2130. },
  2131. "_enabled": true,
  2132. "_priority": 0,
  2133. "_contentSize": {
  2134. "__type__": "cc.Size",
  2135. "width": 250,
  2136. "height": 40
  2137. },
  2138. "_anchorPoint": {
  2139. "__type__": "cc.Vec2",
  2140. "x": 0.5,
  2141. "y": 0.5
  2142. },
  2143. "_id": ""
  2144. },
  2145. {
  2146. "__type__": "cc.SpriteComponent",
  2147. "_name": "Background<SpriteComponent>",
  2148. "_objFlags": 0,
  2149. "node": {
  2150. "__id__": 67
  2151. },
  2152. "_enabled": true,
  2153. "_srcBlendFactor": 2,
  2154. "_dstBlendFactor": 4,
  2155. "_color": {
  2156. "__type__": "cc.Color",
  2157. "r": 255,
  2158. "g": 255,
  2159. "b": 255,
  2160. "a": 255
  2161. },
  2162. "_sharedMaterial": null,
  2163. "_spriteFrame": {
  2164. "__uuid__": "72e319bc-562c-4474-b068-4d153e08dc18@f9941"
  2165. },
  2166. "_type": 1,
  2167. "_fillType": 0,
  2168. "_sizeMode": 0,
  2169. "_fillCenter": {
  2170. "__type__": "cc.Vec2",
  2171. "x": 0,
  2172. "y": 0
  2173. },
  2174. "_fillStart": 0,
  2175. "_fillRange": 0,
  2176. "_isTrimmedMode": true,
  2177. "_useGrayscale": false,
  2178. "_atlas": null,
  2179. "_id": ""
  2180. },
  2181. {
  2182. "__type__": "cc.UIOpacityComponent",
  2183. "_name": "Background<UIOpacityComponent>",
  2184. "_objFlags": 0,
  2185. "node": {
  2186. "__id__": 67
  2187. },
  2188. "_enabled": true,
  2189. "_opacity": 125,
  2190. "_id": ""
  2191. },
  2192. {
  2193. "__type__": "cc.PrefabInfo",
  2194. "root": {
  2195. "__id__": 1
  2196. },
  2197. "asset": {
  2198. "__id__": 0
  2199. },
  2200. "fileId": "5aG9S9QTdPYaZe4RuXhg7J",
  2201. "sync": false,
  2202. "_synced": {
  2203. "default": false,
  2204. "serializable": false
  2205. }
  2206. },
  2207. {
  2208. "__type__": "cc.Node",
  2209. "_name": "GlodIcon",
  2210. "_objFlags": 0,
  2211. "_parent": {
  2212. "__id__": 66
  2213. },
  2214. "_children": [],
  2215. "_active": true,
  2216. "_components": [
  2217. {
  2218. "__id__": 73
  2219. },
  2220. {
  2221. "__id__": 74
  2222. }
  2223. ],
  2224. "_prefab": {
  2225. "__id__": 75
  2226. },
  2227. "_lpos": {
  2228. "__type__": "cc.Vec3",
  2229. "x": -60,
  2230. "y": -3,
  2231. "z": 0
  2232. },
  2233. "_lrot": {
  2234. "__type__": "cc.Quat",
  2235. "x": 0,
  2236. "y": 0,
  2237. "z": 0,
  2238. "w": 1
  2239. },
  2240. "_lscale": {
  2241. "__type__": "cc.Vec3",
  2242. "x": 1,
  2243. "y": 1,
  2244. "z": 1
  2245. },
  2246. "_layer": 33554432,
  2247. "_euler": {
  2248. "__type__": "cc.Vec3",
  2249. "x": 0,
  2250. "y": 0,
  2251. "z": 0
  2252. },
  2253. "_id": ""
  2254. },
  2255. {
  2256. "__type__": "cc.UITransformComponent",
  2257. "_name": "GlodIcon<UITransformComponent>",
  2258. "_objFlags": 0,
  2259. "node": {
  2260. "__id__": 72
  2261. },
  2262. "_enabled": true,
  2263. "_priority": 0,
  2264. "_contentSize": {
  2265. "__type__": "cc.Size",
  2266. "width": 50,
  2267. "height": 49
  2268. },
  2269. "_anchorPoint": {
  2270. "__type__": "cc.Vec2",
  2271. "x": 0.5,
  2272. "y": 0.5
  2273. },
  2274. "_id": ""
  2275. },
  2276. {
  2277. "__type__": "cc.SpriteComponent",
  2278. "_name": "GlodIcon<SpriteComponent>",
  2279. "_objFlags": 0,
  2280. "node": {
  2281. "__id__": 72
  2282. },
  2283. "_enabled": true,
  2284. "_srcBlendFactor": 2,
  2285. "_dstBlendFactor": 4,
  2286. "_color": {
  2287. "__type__": "cc.Color",
  2288. "r": 255,
  2289. "g": 255,
  2290. "b": 255,
  2291. "a": 255
  2292. },
  2293. "_sharedMaterial": null,
  2294. "_spriteFrame": {
  2295. "__uuid__": "0b44fc8c-d664-46d8-bddf-1514caec8e51@f9941"
  2296. },
  2297. "_type": 0,
  2298. "_fillType": 0,
  2299. "_sizeMode": 1,
  2300. "_fillCenter": {
  2301. "__type__": "cc.Vec2",
  2302. "x": 0,
  2303. "y": 0
  2304. },
  2305. "_fillStart": 0,
  2306. "_fillRange": 0,
  2307. "_isTrimmedMode": true,
  2308. "_useGrayscale": false,
  2309. "_atlas": null,
  2310. "_id": ""
  2311. },
  2312. {
  2313. "__type__": "cc.PrefabInfo",
  2314. "root": {
  2315. "__id__": 1
  2316. },
  2317. "asset": {
  2318. "__id__": 0
  2319. },
  2320. "fileId": "b4yWlZchlFfrPJ+N3Iy5+U",
  2321. "sync": false,
  2322. "_synced": {
  2323. "default": false,
  2324. "serializable": false
  2325. }
  2326. },
  2327. {
  2328. "__type__": "cc.Node",
  2329. "_name": "GlodNum1",
  2330. "_objFlags": 0,
  2331. "_parent": {
  2332. "__id__": 66
  2333. },
  2334. "_children": [],
  2335. "_active": true,
  2336. "_components": [
  2337. {
  2338. "__id__": 77
  2339. },
  2340. {
  2341. "__id__": 78
  2342. }
  2343. ],
  2344. "_prefab": {
  2345. "__id__": 79
  2346. },
  2347. "_lpos": {
  2348. "__type__": "cc.Vec3",
  2349. "x": -12,
  2350. "y": -1,
  2351. "z": 0
  2352. },
  2353. "_lrot": {
  2354. "__type__": "cc.Quat",
  2355. "x": 0,
  2356. "y": 0,
  2357. "z": 0,
  2358. "w": 1
  2359. },
  2360. "_lscale": {
  2361. "__type__": "cc.Vec3",
  2362. "x": 1,
  2363. "y": 1,
  2364. "z": 1
  2365. },
  2366. "_layer": 33554432,
  2367. "_euler": {
  2368. "__type__": "cc.Vec3",
  2369. "x": 0,
  2370. "y": 0,
  2371. "z": 0
  2372. },
  2373. "_id": ""
  2374. },
  2375. {
  2376. "__type__": "cc.UITransformComponent",
  2377. "_name": "Label<UITransformComponent>",
  2378. "_objFlags": 0,
  2379. "node": {
  2380. "__id__": 76
  2381. },
  2382. "_enabled": true,
  2383. "_priority": 0,
  2384. "_contentSize": {
  2385. "__type__": "cc.Size",
  2386. "width": 80.05,
  2387. "height": 50.4
  2388. },
  2389. "_anchorPoint": {
  2390. "__type__": "cc.Vec2",
  2391. "x": 0,
  2392. "y": 0.5
  2393. },
  2394. "_id": ""
  2395. },
  2396. {
  2397. "__type__": "cc.LabelComponent",
  2398. "_name": "Label<LabelComponent>",
  2399. "_objFlags": 0,
  2400. "node": {
  2401. "__id__": 76
  2402. },
  2403. "_enabled": true,
  2404. "_srcBlendFactor": 2,
  2405. "_dstBlendFactor": 4,
  2406. "_color": {
  2407. "__type__": "cc.Color",
  2408. "r": 255,
  2409. "g": 237,
  2410. "b": 105,
  2411. "a": 255
  2412. },
  2413. "_sharedMaterial": null,
  2414. "_useOriginalSize": true,
  2415. "_string": "10.2K",
  2416. "_horizontalAlign": 0,
  2417. "_verticalAlign": 1,
  2418. "_actualFontSize": 30,
  2419. "_fontSize": 30,
  2420. "_fontFamily": "Arial",
  2421. "_lineHeight": 40,
  2422. "_overflow": 0,
  2423. "_enableWrapText": true,
  2424. "_font": null,
  2425. "_isSystemFontUsed": true,
  2426. "_isItalic": false,
  2427. "_isBold": true,
  2428. "_isUnderline": false,
  2429. "_cacheMode": 0,
  2430. "_id": ""
  2431. },
  2432. {
  2433. "__type__": "cc.PrefabInfo",
  2434. "root": {
  2435. "__id__": 1
  2436. },
  2437. "asset": {
  2438. "__id__": 0
  2439. },
  2440. "fileId": "07Xhfnq6ZGiL1k++o3oUnR",
  2441. "sync": false,
  2442. "_synced": {
  2443. "default": false,
  2444. "serializable": false
  2445. }
  2446. },
  2447. {
  2448. "__type__": "cc.Node",
  2449. "_name": "GlodNum2",
  2450. "_objFlags": 0,
  2451. "_parent": {
  2452. "__id__": 66
  2453. },
  2454. "_children": [],
  2455. "_active": true,
  2456. "_components": [
  2457. {
  2458. "__id__": 81
  2459. },
  2460. {
  2461. "__id__": 82
  2462. }
  2463. ],
  2464. "_prefab": {
  2465. "__id__": 83
  2466. },
  2467. "_lpos": {
  2468. "__type__": "cc.Vec3",
  2469. "x": 182.789,
  2470. "y": -1,
  2471. "z": 0
  2472. },
  2473. "_lrot": {
  2474. "__type__": "cc.Quat",
  2475. "x": 0,
  2476. "y": 0,
  2477. "z": 0,
  2478. "w": 1
  2479. },
  2480. "_lscale": {
  2481. "__type__": "cc.Vec3",
  2482. "x": 1,
  2483. "y": 1,
  2484. "z": 1
  2485. },
  2486. "_layer": 33554432,
  2487. "_euler": {
  2488. "__type__": "cc.Vec3",
  2489. "x": 0,
  2490. "y": 0,
  2491. "z": 0
  2492. },
  2493. "_id": ""
  2494. },
  2495. {
  2496. "__type__": "cc.UITransformComponent",
  2497. "_name": "Label<UITransformComponent>",
  2498. "_objFlags": 0,
  2499. "node": {
  2500. "__id__": 80
  2501. },
  2502. "_enabled": true,
  2503. "_priority": 0,
  2504. "_contentSize": {
  2505. "__type__": "cc.Size",
  2506. "width": 43.02,
  2507. "height": 50.4
  2508. },
  2509. "_anchorPoint": {
  2510. "__type__": "cc.Vec2",
  2511. "x": 1,
  2512. "y": 0.5
  2513. },
  2514. "_id": ""
  2515. },
  2516. {
  2517. "__type__": "cc.LabelComponent",
  2518. "_name": "Label<LabelComponent>",
  2519. "_objFlags": 0,
  2520. "node": {
  2521. "__id__": 80
  2522. },
  2523. "_enabled": true,
  2524. "_srcBlendFactor": 2,
  2525. "_dstBlendFactor": 4,
  2526. "_color": {
  2527. "__type__": "cc.Color",
  2528. "r": 255,
  2529. "g": 237,
  2530. "b": 105,
  2531. "a": 255
  2532. },
  2533. "_sharedMaterial": null,
  2534. "_useOriginalSize": true,
  2535. "_string": "10/秒",
  2536. "_horizontalAlign": 2,
  2537. "_verticalAlign": 1,
  2538. "_actualFontSize": 18,
  2539. "_fontSize": 18,
  2540. "_fontFamily": "Arial",
  2541. "_lineHeight": 40,
  2542. "_overflow": 0,
  2543. "_enableWrapText": true,
  2544. "_font": null,
  2545. "_isSystemFontUsed": true,
  2546. "_isItalic": false,
  2547. "_isBold": true,
  2548. "_isUnderline": false,
  2549. "_cacheMode": 0,
  2550. "_id": ""
  2551. },
  2552. {
  2553. "__type__": "cc.PrefabInfo",
  2554. "root": {
  2555. "__id__": 1
  2556. },
  2557. "asset": {
  2558. "__id__": 0
  2559. },
  2560. "fileId": "abXt8gf+FIrLcAZxCal0zK",
  2561. "sync": false,
  2562. "_synced": {
  2563. "default": false,
  2564. "serializable": false
  2565. }
  2566. },
  2567. {
  2568. "__type__": "cc.UITransformComponent",
  2569. "_name": "GlodView<UITransformComponent>",
  2570. "_objFlags": 0,
  2571. "node": {
  2572. "__id__": 66
  2573. },
  2574. "_enabled": true,
  2575. "_priority": 0,
  2576. "_contentSize": {
  2577. "__type__": "cc.Size",
  2578. "width": 100,
  2579. "height": 100
  2580. },
  2581. "_anchorPoint": {
  2582. "__type__": "cc.Vec2",
  2583. "x": 0.5,
  2584. "y": 0.5
  2585. },
  2586. "_id": ""
  2587. },
  2588. {
  2589. "__type__": "cc.WidgetComponent",
  2590. "_name": "GlodView<WidgetComponent>",
  2591. "_objFlags": 0,
  2592. "node": {
  2593. "__id__": 66
  2594. },
  2595. "_enabled": true,
  2596. "_alignFlags": 9,
  2597. "_target": null,
  2598. "_left": 56,
  2599. "_right": 0,
  2600. "_top": 38.090000000000146,
  2601. "_bottom": 0,
  2602. "_horizontalCenter": 0,
  2603. "_verticalCenter": 0,
  2604. "_isAbsLeft": true,
  2605. "_isAbsRight": true,
  2606. "_isAbsTop": true,
  2607. "_isAbsBottom": true,
  2608. "_isAbsHorizontalCenter": true,
  2609. "_isAbsVerticalCenter": true,
  2610. "_originalWidth": 0,
  2611. "_originalHeight": 0,
  2612. "_alignMode": 2,
  2613. "_lockFlags": 0,
  2614. "_id": ""
  2615. },
  2616. {
  2617. "__type__": "cc.WidgetComponent",
  2618. "_name": "GlodView<WidgetComponent>",
  2619. "_objFlags": 0,
  2620. "node": {
  2621. "__id__": 66
  2622. },
  2623. "_enabled": true,
  2624. "_alignFlags": 9,
  2625. "_target": null,
  2626. "_left": -1599.6799999999998,
  2627. "_right": 0,
  2628. "_top": 38.090000000000146,
  2629. "_bottom": 0,
  2630. "_horizontalCenter": 0,
  2631. "_verticalCenter": 0,
  2632. "_isAbsLeft": true,
  2633. "_isAbsRight": true,
  2634. "_isAbsTop": true,
  2635. "_isAbsBottom": true,
  2636. "_isAbsHorizontalCenter": true,
  2637. "_isAbsVerticalCenter": true,
  2638. "_originalWidth": 0,
  2639. "_originalHeight": 0,
  2640. "_alignMode": 2,
  2641. "_lockFlags": 0,
  2642. "_id": ""
  2643. },
  2644. {
  2645. "__type__": "cc.PrefabInfo",
  2646. "root": {
  2647. "__id__": 1
  2648. },
  2649. "asset": {
  2650. "__id__": 0
  2651. },
  2652. "fileId": "15SWrXmvBHvI0/gKh4ZeQq",
  2653. "sync": false,
  2654. "_synced": {
  2655. "default": false,
  2656. "serializable": false
  2657. }
  2658. },
  2659. {
  2660. "__type__": "cc.Node",
  2661. "_name": "DiamondView",
  2662. "_objFlags": 0,
  2663. "_parent": {
  2664. "__id__": 60
  2665. },
  2666. "_children": [
  2667. {
  2668. "__id__": 89
  2669. },
  2670. {
  2671. "__id__": 94
  2672. },
  2673. {
  2674. "__id__": 98
  2675. }
  2676. ],
  2677. "_active": true,
  2678. "_components": [
  2679. {
  2680. "__id__": 102
  2681. },
  2682. {
  2683. "__id__": 103
  2684. },
  2685. {
  2686. "__id__": 104
  2687. }
  2688. ],
  2689. "_prefab": {
  2690. "__id__": 105
  2691. },
  2692. "_lpos": {
  2693. "__type__": "cc.Vec3",
  2694. "x": 368,
  2695. "y": -38.090000000000146,
  2696. "z": 0
  2697. },
  2698. "_lrot": {
  2699. "__type__": "cc.Quat",
  2700. "x": 0,
  2701. "y": 0,
  2702. "z": 0,
  2703. "w": 1
  2704. },
  2705. "_lscale": {
  2706. "__type__": "cc.Vec3",
  2707. "x": 1,
  2708. "y": 1,
  2709. "z": 1
  2710. },
  2711. "_layer": 1073741824,
  2712. "_euler": {
  2713. "__type__": "cc.Vec3",
  2714. "x": 0,
  2715. "y": 0,
  2716. "z": 0
  2717. },
  2718. "_id": ""
  2719. },
  2720. {
  2721. "__type__": "cc.Node",
  2722. "_name": "Background",
  2723. "_objFlags": 0,
  2724. "_parent": {
  2725. "__id__": 88
  2726. },
  2727. "_children": [],
  2728. "_active": true,
  2729. "_components": [
  2730. {
  2731. "__id__": 90
  2732. },
  2733. {
  2734. "__id__": 91
  2735. },
  2736. {
  2737. "__id__": 92
  2738. }
  2739. ],
  2740. "_prefab": {
  2741. "__id__": 93
  2742. },
  2743. "_lpos": {
  2744. "__type__": "cc.Vec3",
  2745. "x": -60,
  2746. "y": 0,
  2747. "z": 0
  2748. },
  2749. "_lrot": {
  2750. "__type__": "cc.Quat",
  2751. "x": 0,
  2752. "y": 0,
  2753. "z": 0,
  2754. "w": 1
  2755. },
  2756. "_lscale": {
  2757. "__type__": "cc.Vec3",
  2758. "x": 1,
  2759. "y": 1,
  2760. "z": 1
  2761. },
  2762. "_layer": 33554432,
  2763. "_euler": {
  2764. "__type__": "cc.Vec3",
  2765. "x": 0,
  2766. "y": 0,
  2767. "z": 0
  2768. },
  2769. "_id": ""
  2770. },
  2771. {
  2772. "__type__": "cc.UITransformComponent",
  2773. "_name": "Background<UITransformComponent>",
  2774. "_objFlags": 0,
  2775. "node": {
  2776. "__id__": 89
  2777. },
  2778. "_enabled": true,
  2779. "_priority": 0,
  2780. "_contentSize": {
  2781. "__type__": "cc.Size",
  2782. "width": 120,
  2783. "height": 40
  2784. },
  2785. "_anchorPoint": {
  2786. "__type__": "cc.Vec2",
  2787. "x": 0,
  2788. "y": 0.5
  2789. },
  2790. "_id": ""
  2791. },
  2792. {
  2793. "__type__": "cc.SpriteComponent",
  2794. "_name": "Background<SpriteComponent>",
  2795. "_objFlags": 0,
  2796. "node": {
  2797. "__id__": 89
  2798. },
  2799. "_enabled": true,
  2800. "_srcBlendFactor": 2,
  2801. "_dstBlendFactor": 4,
  2802. "_color": {
  2803. "__type__": "cc.Color",
  2804. "r": 255,
  2805. "g": 255,
  2806. "b": 255,
  2807. "a": 255
  2808. },
  2809. "_sharedMaterial": null,
  2810. "_spriteFrame": {
  2811. "__uuid__": "72e319bc-562c-4474-b068-4d153e08dc18@f9941"
  2812. },
  2813. "_type": 1,
  2814. "_fillType": 0,
  2815. "_sizeMode": 0,
  2816. "_fillCenter": {
  2817. "__type__": "cc.Vec2",
  2818. "x": 0,
  2819. "y": 0
  2820. },
  2821. "_fillStart": 0,
  2822. "_fillRange": 0,
  2823. "_isTrimmedMode": true,
  2824. "_useGrayscale": false,
  2825. "_atlas": null,
  2826. "_id": ""
  2827. },
  2828. {
  2829. "__type__": "cc.UIOpacityComponent",
  2830. "_name": "Background<UIOpacityComponent>",
  2831. "_objFlags": 0,
  2832. "node": {
  2833. "__id__": 89
  2834. },
  2835. "_enabled": true,
  2836. "_opacity": 125,
  2837. "_id": ""
  2838. },
  2839. {
  2840. "__type__": "cc.PrefabInfo",
  2841. "root": {
  2842. "__id__": 1
  2843. },
  2844. "asset": {
  2845. "__id__": 0
  2846. },
  2847. "fileId": "93vAx7tlBLL4ZdfWUdMYrf",
  2848. "sync": false,
  2849. "_synced": {
  2850. "default": false,
  2851. "serializable": false
  2852. }
  2853. },
  2854. {
  2855. "__type__": "cc.Node",
  2856. "_name": "DiamondIcon",
  2857. "_objFlags": 0,
  2858. "_parent": {
  2859. "__id__": 88
  2860. },
  2861. "_children": [],
  2862. "_active": true,
  2863. "_components": [
  2864. {
  2865. "__id__": 95
  2866. },
  2867. {
  2868. "__id__": 96
  2869. }
  2870. ],
  2871. "_prefab": {
  2872. "__id__": 97
  2873. },
  2874. "_lpos": {
  2875. "__type__": "cc.Vec3",
  2876. "x": -60,
  2877. "y": -3,
  2878. "z": 0
  2879. },
  2880. "_lrot": {
  2881. "__type__": "cc.Quat",
  2882. "x": 0,
  2883. "y": 0,
  2884. "z": 0,
  2885. "w": 1
  2886. },
  2887. "_lscale": {
  2888. "__type__": "cc.Vec3",
  2889. "x": 1,
  2890. "y": 1,
  2891. "z": 1
  2892. },
  2893. "_layer": 33554432,
  2894. "_euler": {
  2895. "__type__": "cc.Vec3",
  2896. "x": 0,
  2897. "y": 0,
  2898. "z": 0
  2899. },
  2900. "_id": ""
  2901. },
  2902. {
  2903. "__type__": "cc.UITransformComponent",
  2904. "_name": "GlodIcon<UITransformComponent>",
  2905. "_objFlags": 0,
  2906. "node": {
  2907. "__id__": 94
  2908. },
  2909. "_enabled": true,
  2910. "_priority": 0,
  2911. "_contentSize": {
  2912. "__type__": "cc.Size",
  2913. "width": 55,
  2914. "height": 45
  2915. },
  2916. "_anchorPoint": {
  2917. "__type__": "cc.Vec2",
  2918. "x": 0.5,
  2919. "y": 0.5
  2920. },
  2921. "_id": ""
  2922. },
  2923. {
  2924. "__type__": "cc.SpriteComponent",
  2925. "_name": "GlodIcon<SpriteComponent>",
  2926. "_objFlags": 0,
  2927. "node": {
  2928. "__id__": 94
  2929. },
  2930. "_enabled": true,
  2931. "_srcBlendFactor": 2,
  2932. "_dstBlendFactor": 4,
  2933. "_color": {
  2934. "__type__": "cc.Color",
  2935. "r": 255,
  2936. "g": 255,
  2937. "b": 255,
  2938. "a": 255
  2939. },
  2940. "_sharedMaterial": null,
  2941. "_spriteFrame": {
  2942. "__uuid__": "7865e301-00a2-4137-8aa1-d46f75335e03@f9941"
  2943. },
  2944. "_type": 0,
  2945. "_fillType": 0,
  2946. "_sizeMode": 1,
  2947. "_fillCenter": {
  2948. "__type__": "cc.Vec2",
  2949. "x": 0,
  2950. "y": 0
  2951. },
  2952. "_fillStart": 0,
  2953. "_fillRange": 0,
  2954. "_isTrimmedMode": true,
  2955. "_useGrayscale": false,
  2956. "_atlas": null,
  2957. "_id": ""
  2958. },
  2959. {
  2960. "__type__": "cc.PrefabInfo",
  2961. "root": {
  2962. "__id__": 1
  2963. },
  2964. "asset": {
  2965. "__id__": 0
  2966. },
  2967. "fileId": "6b2/I0+2tLYqfWlZeOS1WK",
  2968. "sync": false,
  2969. "_synced": {
  2970. "default": false,
  2971. "serializable": false
  2972. }
  2973. },
  2974. {
  2975. "__type__": "cc.Node",
  2976. "_name": "DiamondNum",
  2977. "_objFlags": 0,
  2978. "_parent": {
  2979. "__id__": 88
  2980. },
  2981. "_children": [],
  2982. "_active": true,
  2983. "_components": [
  2984. {
  2985. "__id__": 99
  2986. },
  2987. {
  2988. "__id__": 100
  2989. }
  2990. ],
  2991. "_prefab": {
  2992. "__id__": 101
  2993. },
  2994. "_lpos": {
  2995. "__type__": "cc.Vec3",
  2996. "x": 3.073,
  2997. "y": -1,
  2998. "z": 0
  2999. },
  3000. "_lrot": {
  3001. "__type__": "cc.Quat",
  3002. "x": 0,
  3003. "y": 0,
  3004. "z": 0,
  3005. "w": 1
  3006. },
  3007. "_lscale": {
  3008. "__type__": "cc.Vec3",
  3009. "x": 1,
  3010. "y": 1,
  3011. "z": 1
  3012. },
  3013. "_layer": 33554432,
  3014. "_euler": {
  3015. "__type__": "cc.Vec3",
  3016. "x": 0,
  3017. "y": 0,
  3018. "z": 0
  3019. },
  3020. "_id": ""
  3021. },
  3022. {
  3023. "__type__": "cc.UITransformComponent",
  3024. "_name": "Label<UITransformComponent>",
  3025. "_objFlags": 0,
  3026. "node": {
  3027. "__id__": 98
  3028. },
  3029. "_enabled": true,
  3030. "_priority": 0,
  3031. "_contentSize": {
  3032. "__type__": "cc.Size",
  3033. "width": 16.68,
  3034. "height": 50.4
  3035. },
  3036. "_anchorPoint": {
  3037. "__type__": "cc.Vec2",
  3038. "x": 0,
  3039. "y": 0.5
  3040. },
  3041. "_id": ""
  3042. },
  3043. {
  3044. "__type__": "cc.LabelComponent",
  3045. "_name": "Label<LabelComponent>",
  3046. "_objFlags": 0,
  3047. "node": {
  3048. "__id__": 98
  3049. },
  3050. "_enabled": true,
  3051. "_srcBlendFactor": 2,
  3052. "_dstBlendFactor": 4,
  3053. "_color": {
  3054. "__type__": "cc.Color",
  3055. "r": 255,
  3056. "g": 237,
  3057. "b": 105,
  3058. "a": 255
  3059. },
  3060. "_sharedMaterial": null,
  3061. "_useOriginalSize": true,
  3062. "_string": "2",
  3063. "_horizontalAlign": 1,
  3064. "_verticalAlign": 1,
  3065. "_actualFontSize": 30,
  3066. "_fontSize": 30,
  3067. "_fontFamily": "Arial",
  3068. "_lineHeight": 40,
  3069. "_overflow": 0,
  3070. "_enableWrapText": true,
  3071. "_font": null,
  3072. "_isSystemFontUsed": true,
  3073. "_isItalic": false,
  3074. "_isBold": true,
  3075. "_isUnderline": false,
  3076. "_cacheMode": 0,
  3077. "_id": ""
  3078. },
  3079. {
  3080. "__type__": "cc.PrefabInfo",
  3081. "root": {
  3082. "__id__": 1
  3083. },
  3084. "asset": {
  3085. "__id__": 0
  3086. },
  3087. "fileId": "4d/88pEGRAYLiLayN1iSyS",
  3088. "sync": false,
  3089. "_synced": {
  3090. "default": false,
  3091. "serializable": false
  3092. }
  3093. },
  3094. {
  3095. "__type__": "cc.UITransformComponent",
  3096. "_name": "DiamondView<UITransformComponent>",
  3097. "_objFlags": 0,
  3098. "node": {
  3099. "__id__": 88
  3100. },
  3101. "_enabled": true,
  3102. "_priority": 0,
  3103. "_contentSize": {
  3104. "__type__": "cc.Size",
  3105. "width": 100,
  3106. "height": 100
  3107. },
  3108. "_anchorPoint": {
  3109. "__type__": "cc.Vec2",
  3110. "x": 0.5,
  3111. "y": 0.5
  3112. },
  3113. "_id": ""
  3114. },
  3115. {
  3116. "__type__": "cc.WidgetComponent",
  3117. "_name": "DiamondView<WidgetComponent>",
  3118. "_objFlags": 0,
  3119. "node": {
  3120. "__id__": 88
  3121. },
  3122. "_enabled": true,
  3123. "_alignFlags": 9,
  3124. "_target": null,
  3125. "_left": 368,
  3126. "_right": 0,
  3127. "_top": 38.090000000000146,
  3128. "_bottom": 0,
  3129. "_horizontalCenter": 0,
  3130. "_verticalCenter": 0,
  3131. "_isAbsLeft": true,
  3132. "_isAbsRight": true,
  3133. "_isAbsTop": true,
  3134. "_isAbsBottom": true,
  3135. "_isAbsHorizontalCenter": true,
  3136. "_isAbsVerticalCenter": true,
  3137. "_originalWidth": 0,
  3138. "_originalHeight": 0,
  3139. "_alignMode": 2,
  3140. "_lockFlags": 0,
  3141. "_id": ""
  3142. },
  3143. {
  3144. "__type__": "cc.WidgetComponent",
  3145. "_name": "DiamondView<WidgetComponent>",
  3146. "_objFlags": 0,
  3147. "node": {
  3148. "__id__": 88
  3149. },
  3150. "_enabled": true,
  3151. "_alignFlags": 9,
  3152. "_target": null,
  3153. "_left": -2928.6429999999987,
  3154. "_right": 0,
  3155. "_top": 38.09000000000617,
  3156. "_bottom": 0,
  3157. "_horizontalCenter": 0,
  3158. "_verticalCenter": 0,
  3159. "_isAbsLeft": true,
  3160. "_isAbsRight": true,
  3161. "_isAbsTop": true,
  3162. "_isAbsBottom": true,
  3163. "_isAbsHorizontalCenter": true,
  3164. "_isAbsVerticalCenter": true,
  3165. "_originalWidth": 0,
  3166. "_originalHeight": 0,
  3167. "_alignMode": 2,
  3168. "_lockFlags": 0,
  3169. "_id": ""
  3170. },
  3171. {
  3172. "__type__": "cc.PrefabInfo",
  3173. "root": {
  3174. "__id__": 1
  3175. },
  3176. "asset": {
  3177. "__id__": 0
  3178. },
  3179. "fileId": "f1JaTESNhIareLij/g/sf7",
  3180. "sync": false,
  3181. "_synced": {
  3182. "default": false,
  3183. "serializable": false
  3184. }
  3185. },
  3186. {
  3187. "__type__": "cc.Node",
  3188. "_name": "ExpGroup",
  3189. "_objFlags": 0,
  3190. "_parent": {
  3191. "__id__": 60
  3192. },
  3193. "_children": [
  3194. {
  3195. "__id__": 107
  3196. },
  3197. {
  3198. "__id__": 116
  3199. }
  3200. ],
  3201. "_active": false,
  3202. "_components": [
  3203. {
  3204. "__id__": 120
  3205. },
  3206. {
  3207. "__id__": 121
  3208. }
  3209. ],
  3210. "_prefab": {
  3211. "__id__": 122
  3212. },
  3213. "_lpos": {
  3214. "__type__": "cc.Vec3",
  3215. "x": -9,
  3216. "y": -27,
  3217. "z": 0
  3218. },
  3219. "_lrot": {
  3220. "__type__": "cc.Quat",
  3221. "x": 0,
  3222. "y": 0,
  3223. "z": 0,
  3224. "w": 1
  3225. },
  3226. "_lscale": {
  3227. "__type__": "cc.Vec3",
  3228. "x": 1,
  3229. "y": 1,
  3230. "z": 1
  3231. },
  3232. "_layer": 1073741824,
  3233. "_euler": {
  3234. "__type__": "cc.Vec3",
  3235. "x": 0,
  3236. "y": 0,
  3237. "z": 0
  3238. },
  3239. "_id": ""
  3240. },
  3241. {
  3242. "__type__": "cc.Node",
  3243. "_name": "ProgressBar",
  3244. "_objFlags": 0,
  3245. "_parent": {
  3246. "__id__": 106
  3247. },
  3248. "_children": [
  3249. {
  3250. "__id__": 108
  3251. }
  3252. ],
  3253. "_active": true,
  3254. "_components": [
  3255. {
  3256. "__id__": 112
  3257. },
  3258. {
  3259. "__id__": 113
  3260. },
  3261. {
  3262. "__id__": 114
  3263. }
  3264. ],
  3265. "_prefab": {
  3266. "__id__": 115
  3267. },
  3268. "_lpos": {
  3269. "__type__": "cc.Vec3",
  3270. "x": 0,
  3271. "y": 0,
  3272. "z": 0
  3273. },
  3274. "_lrot": {
  3275. "__type__": "cc.Quat",
  3276. "x": 0,
  3277. "y": 0,
  3278. "z": 0,
  3279. "w": 1
  3280. },
  3281. "_lscale": {
  3282. "__type__": "cc.Vec3",
  3283. "x": 1,
  3284. "y": 1,
  3285. "z": 1
  3286. },
  3287. "_layer": 33554432,
  3288. "_euler": {
  3289. "__type__": "cc.Vec3",
  3290. "x": 0,
  3291. "y": 0,
  3292. "z": 0
  3293. },
  3294. "_id": ""
  3295. },
  3296. {
  3297. "__type__": "cc.Node",
  3298. "_name": "Bar",
  3299. "_objFlags": 0,
  3300. "_parent": {
  3301. "__id__": 107
  3302. },
  3303. "_children": [],
  3304. "_active": true,
  3305. "_components": [
  3306. {
  3307. "__id__": 109
  3308. },
  3309. {
  3310. "__id__": 110
  3311. }
  3312. ],
  3313. "_prefab": {
  3314. "__id__": 111
  3315. },
  3316. "_lpos": {
  3317. "__type__": "cc.Vec3",
  3318. "x": -39,
  3319. "y": 1,
  3320. "z": 0
  3321. },
  3322. "_lrot": {
  3323. "__type__": "cc.Quat",
  3324. "x": 0,
  3325. "y": 0,
  3326. "z": 0,
  3327. "w": 1
  3328. },
  3329. "_lscale": {
  3330. "__type__": "cc.Vec3",
  3331. "x": 1,
  3332. "y": 1,
  3333. "z": 1
  3334. },
  3335. "_layer": 33554432,
  3336. "_euler": {
  3337. "__type__": "cc.Vec3",
  3338. "x": 0,
  3339. "y": 0,
  3340. "z": 0
  3341. },
  3342. "_id": ""
  3343. },
  3344. {
  3345. "__type__": "cc.UITransformComponent",
  3346. "_name": "",
  3347. "_objFlags": 0,
  3348. "node": {
  3349. "__id__": 108
  3350. },
  3351. "_enabled": true,
  3352. "_priority": 0,
  3353. "_contentSize": {
  3354. "__type__": "cc.Size",
  3355. "width": 76,
  3356. "height": 76
  3357. },
  3358. "_anchorPoint": {
  3359. "__type__": "cc.Vec2",
  3360. "x": 0,
  3361. "y": 0.5
  3362. },
  3363. "_id": ""
  3364. },
  3365. {
  3366. "__type__": "cc.SpriteComponent",
  3367. "_name": "",
  3368. "_objFlags": 0,
  3369. "node": {
  3370. "__id__": 108
  3371. },
  3372. "_enabled": true,
  3373. "_srcBlendFactor": 2,
  3374. "_dstBlendFactor": 4,
  3375. "_color": {
  3376. "__type__": "cc.Color",
  3377. "r": 255,
  3378. "g": 255,
  3379. "b": 255,
  3380. "a": 255
  3381. },
  3382. "_sharedMaterial": null,
  3383. "_spriteFrame": {
  3384. "__uuid__": "25c83d1e-bf10-4779-9e4a-2d5f6bb9b227@f9941"
  3385. },
  3386. "_type": 3,
  3387. "_fillType": 2,
  3388. "_sizeMode": 0,
  3389. "_fillCenter": {
  3390. "__type__": "cc.Vec2",
  3391. "x": 0.5,
  3392. "y": 0.5
  3393. },
  3394. "_fillStart": 0.25,
  3395. "_fillRange": 1,
  3396. "_isTrimmedMode": true,
  3397. "_useGrayscale": false,
  3398. "_atlas": null,
  3399. "_id": ""
  3400. },
  3401. {
  3402. "__type__": "cc.PrefabInfo",
  3403. "root": {
  3404. "__id__": 1
  3405. },
  3406. "asset": {
  3407. "__id__": 0
  3408. },
  3409. "fileId": "92qLzmBa9CbLIl//kyux1C",
  3410. "sync": false,
  3411. "_synced": {
  3412. "default": false,
  3413. "serializable": false
  3414. }
  3415. },
  3416. {
  3417. "__type__": "cc.UITransformComponent",
  3418. "_name": "",
  3419. "_objFlags": 0,
  3420. "node": {
  3421. "__id__": 107
  3422. },
  3423. "_enabled": true,
  3424. "_priority": 0,
  3425. "_contentSize": {
  3426. "__type__": "cc.Size",
  3427. "width": 78,
  3428. "height": 79
  3429. },
  3430. "_anchorPoint": {
  3431. "__type__": "cc.Vec2",
  3432. "x": 0.5,
  3433. "y": 0.5
  3434. },
  3435. "_id": ""
  3436. },
  3437. {
  3438. "__type__": "cc.SpriteComponent",
  3439. "_name": "",
  3440. "_objFlags": 0,
  3441. "node": {
  3442. "__id__": 107
  3443. },
  3444. "_enabled": true,
  3445. "_srcBlendFactor": 2,
  3446. "_dstBlendFactor": 4,
  3447. "_color": {
  3448. "__type__": "cc.Color",
  3449. "r": 255,
  3450. "g": 255,
  3451. "b": 255,
  3452. "a": 255
  3453. },
  3454. "_sharedMaterial": null,
  3455. "_spriteFrame": {
  3456. "__uuid__": "302e2930-0a05-417e-8b68-352ca89e9a6f@f9941"
  3457. },
  3458. "_type": 1,
  3459. "_fillType": 0,
  3460. "_sizeMode": 0,
  3461. "_fillCenter": {
  3462. "__type__": "cc.Vec2",
  3463. "x": 0,
  3464. "y": 0
  3465. },
  3466. "_fillStart": 0,
  3467. "_fillRange": 0,
  3468. "_isTrimmedMode": true,
  3469. "_useGrayscale": false,
  3470. "_atlas": null,
  3471. "_id": ""
  3472. },
  3473. {
  3474. "__type__": "cc.ProgressBarComponent",
  3475. "_name": "",
  3476. "_objFlags": 0,
  3477. "node": {
  3478. "__id__": 107
  3479. },
  3480. "_enabled": true,
  3481. "_barSprite": {
  3482. "__id__": 110
  3483. },
  3484. "_mode": 2,
  3485. "_totalLength": 1,
  3486. "_progress": 1,
  3487. "_reverse": false,
  3488. "_id": ""
  3489. },
  3490. {
  3491. "__type__": "cc.PrefabInfo",
  3492. "root": {
  3493. "__id__": 1
  3494. },
  3495. "asset": {
  3496. "__id__": 0
  3497. },
  3498. "fileId": "77ZklKitxKA7J346J+oPMo",
  3499. "sync": false,
  3500. "_synced": {
  3501. "default": false,
  3502. "serializable": false
  3503. }
  3504. },
  3505. {
  3506. "__type__": "cc.Node",
  3507. "_name": "Level",
  3508. "_objFlags": 0,
  3509. "_parent": {
  3510. "__id__": 106
  3511. },
  3512. "_children": [],
  3513. "_active": true,
  3514. "_components": [
  3515. {
  3516. "__id__": 117
  3517. },
  3518. {
  3519. "__id__": 118
  3520. }
  3521. ],
  3522. "_prefab": {
  3523. "__id__": 119
  3524. },
  3525. "_lpos": {
  3526. "__type__": "cc.Vec3",
  3527. "x": -1,
  3528. "y": -2,
  3529. "z": 0
  3530. },
  3531. "_lrot": {
  3532. "__type__": "cc.Quat",
  3533. "x": 0,
  3534. "y": 0,
  3535. "z": 0,
  3536. "w": 1
  3537. },
  3538. "_lscale": {
  3539. "__type__": "cc.Vec3",
  3540. "x": 1,
  3541. "y": 1,
  3542. "z": 1
  3543. },
  3544. "_layer": 33554432,
  3545. "_euler": {
  3546. "__type__": "cc.Vec3",
  3547. "x": 0,
  3548. "y": 0,
  3549. "z": 0
  3550. },
  3551. "_id": ""
  3552. },
  3553. {
  3554. "__type__": "cc.UITransformComponent",
  3555. "_name": "",
  3556. "_objFlags": 0,
  3557. "node": {
  3558. "__id__": 116
  3559. },
  3560. "_enabled": true,
  3561. "_priority": 0,
  3562. "_contentSize": {
  3563. "__type__": "cc.Size",
  3564. "width": 40.04,
  3565. "height": 50.4
  3566. },
  3567. "_anchorPoint": {
  3568. "__type__": "cc.Vec2",
  3569. "x": 0.5,
  3570. "y": 0.5
  3571. },
  3572. "_id": ""
  3573. },
  3574. {
  3575. "__type__": "cc.LabelComponent",
  3576. "_name": "",
  3577. "_objFlags": 0,
  3578. "node": {
  3579. "__id__": 116
  3580. },
  3581. "_enabled": true,
  3582. "_srcBlendFactor": 2,
  3583. "_dstBlendFactor": 4,
  3584. "_color": {
  3585. "__type__": "cc.Color",
  3586. "r": 255,
  3587. "g": 255,
  3588. "b": 255,
  3589. "a": 255
  3590. },
  3591. "_sharedMaterial": null,
  3592. "_useOriginalSize": true,
  3593. "_string": "10",
  3594. "_horizontalAlign": 1,
  3595. "_verticalAlign": 1,
  3596. "_actualFontSize": 36,
  3597. "_fontSize": 36,
  3598. "_fontFamily": "Arial",
  3599. "_lineHeight": 40,
  3600. "_overflow": 0,
  3601. "_enableWrapText": true,
  3602. "_font": null,
  3603. "_isSystemFontUsed": true,
  3604. "_isItalic": false,
  3605. "_isBold": false,
  3606. "_isUnderline": false,
  3607. "_cacheMode": 0,
  3608. "_id": ""
  3609. },
  3610. {
  3611. "__type__": "cc.PrefabInfo",
  3612. "root": {
  3613. "__id__": 1
  3614. },
  3615. "asset": {
  3616. "__id__": 0
  3617. },
  3618. "fileId": "beJyBBcehGHo4LMYyh4IML",
  3619. "sync": false,
  3620. "_synced": {
  3621. "default": false,
  3622. "serializable": false
  3623. }
  3624. },
  3625. {
  3626. "__type__": "cc.UITransformComponent",
  3627. "_name": "FenceUIGroup<UITransformComponent>",
  3628. "_objFlags": 0,
  3629. "node": {
  3630. "__id__": 106
  3631. },
  3632. "_enabled": true,
  3633. "_priority": 0,
  3634. "_contentSize": {
  3635. "__type__": "cc.Size",
  3636. "width": 78,
  3637. "height": 79
  3638. },
  3639. "_anchorPoint": {
  3640. "__type__": "cc.Vec2",
  3641. "x": 0.5,
  3642. "y": 0.5
  3643. },
  3644. "_id": ""
  3645. },
  3646. {
  3647. "__type__": "cc.WidgetComponent",
  3648. "_name": "ExpGroup<WidgetComponent>",
  3649. "_objFlags": 0,
  3650. "node": {
  3651. "__id__": 106
  3652. },
  3653. "_enabled": true,
  3654. "_alignFlags": 9,
  3655. "_target": null,
  3656. "_left": 2,
  3657. "_right": 0,
  3658. "_top": 37.5,
  3659. "_bottom": 0,
  3660. "_horizontalCenter": 0,
  3661. "_verticalCenter": 0,
  3662. "_isAbsLeft": true,
  3663. "_isAbsRight": true,
  3664. "_isAbsTop": true,
  3665. "_isAbsBottom": true,
  3666. "_isAbsHorizontalCenter": true,
  3667. "_isAbsVerticalCenter": true,
  3668. "_originalWidth": 0,
  3669. "_originalHeight": 0,
  3670. "_alignMode": 2,
  3671. "_lockFlags": 0,
  3672. "_id": ""
  3673. },
  3674. {
  3675. "__type__": "cc.PrefabInfo",
  3676. "root": {
  3677. "__id__": 1
  3678. },
  3679. "asset": {
  3680. "__id__": 0
  3681. },
  3682. "fileId": "ffHxXIMmBAvZOoRkvjYYQF",
  3683. "sync": false,
  3684. "_synced": {
  3685. "default": false,
  3686. "serializable": false
  3687. }
  3688. },
  3689. {
  3690. "__type__": "cc.Node",
  3691. "_name": "Buff1",
  3692. "_objFlags": 0,
  3693. "_parent": {
  3694. "__id__": 60
  3695. },
  3696. "_children": [
  3697. {
  3698. "__id__": 124
  3699. }
  3700. ],
  3701. "_active": false,
  3702. "_components": [
  3703. {
  3704. "__id__": 128
  3705. },
  3706. {
  3707. "__id__": 129
  3708. },
  3709. {
  3710. "__id__": 130
  3711. }
  3712. ],
  3713. "_prefab": {
  3714. "__id__": 131
  3715. },
  3716. "_lpos": {
  3717. "__type__": "cc.Vec3",
  3718. "x": -9,
  3719. "y": -103,
  3720. "z": 0
  3721. },
  3722. "_lrot": {
  3723. "__type__": "cc.Quat",
  3724. "x": 0,
  3725. "y": 0,
  3726. "z": 0,
  3727. "w": 1
  3728. },
  3729. "_lscale": {
  3730. "__type__": "cc.Vec3",
  3731. "x": 1,
  3732. "y": 1,
  3733. "z": 1
  3734. },
  3735. "_layer": 33554432,
  3736. "_euler": {
  3737. "__type__": "cc.Vec3",
  3738. "x": 0,
  3739. "y": 0,
  3740. "z": 0
  3741. },
  3742. "_id": ""
  3743. },
  3744. {
  3745. "__type__": "cc.Node",
  3746. "_name": "Label",
  3747. "_objFlags": 0,
  3748. "_parent": {
  3749. "__id__": 123
  3750. },
  3751. "_children": [],
  3752. "_active": true,
  3753. "_components": [
  3754. {
  3755. "__id__": 125
  3756. },
  3757. {
  3758. "__id__": 126
  3759. }
  3760. ],
  3761. "_prefab": {
  3762. "__id__": 127
  3763. },
  3764. "_lpos": {
  3765. "__type__": "cc.Vec3",
  3766. "x": 34,
  3767. "y": -4,
  3768. "z": 0
  3769. },
  3770. "_lrot": {
  3771. "__type__": "cc.Quat",
  3772. "x": 0,
  3773. "y": 0,
  3774. "z": 0,
  3775. "w": 1
  3776. },
  3777. "_lscale": {
  3778. "__type__": "cc.Vec3",
  3779. "x": 1,
  3780. "y": 1,
  3781. "z": 1
  3782. },
  3783. "_layer": 33554432,
  3784. "_euler": {
  3785. "__type__": "cc.Vec3",
  3786. "x": 0,
  3787. "y": 0,
  3788. "z": 0
  3789. },
  3790. "_id": ""
  3791. },
  3792. {
  3793. "__type__": "cc.UITransformComponent",
  3794. "_name": "",
  3795. "_objFlags": 0,
  3796. "node": {
  3797. "__id__": 124
  3798. },
  3799. "_enabled": true,
  3800. "_priority": 0,
  3801. "_contentSize": {
  3802. "__type__": "cc.Size",
  3803. "width": 131.5,
  3804. "height": 50.4
  3805. },
  3806. "_anchorPoint": {
  3807. "__type__": "cc.Vec2",
  3808. "x": 0,
  3809. "y": 0.5
  3810. },
  3811. "_id": ""
  3812. },
  3813. {
  3814. "__type__": "cc.LabelComponent",
  3815. "_name": "",
  3816. "_objFlags": 0,
  3817. "node": {
  3818. "__id__": 124
  3819. },
  3820. "_enabled": true,
  3821. "_srcBlendFactor": 2,
  3822. "_dstBlendFactor": 4,
  3823. "_color": {
  3824. "__type__": "cc.Color",
  3825. "r": 255,
  3826. "g": 255,
  3827. "b": 255,
  3828. "a": 255
  3829. },
  3830. "_sharedMaterial": null,
  3831. "_useOriginalSize": true,
  3832. "_string": "加速x100%",
  3833. "_horizontalAlign": 0,
  3834. "_verticalAlign": 1,
  3835. "_actualFontSize": 26,
  3836. "_fontSize": 26,
  3837. "_fontFamily": "Arial",
  3838. "_lineHeight": 40,
  3839. "_overflow": 0,
  3840. "_enableWrapText": true,
  3841. "_font": null,
  3842. "_isSystemFontUsed": true,
  3843. "_isItalic": false,
  3844. "_isBold": false,
  3845. "_isUnderline": false,
  3846. "_cacheMode": 0,
  3847. "_id": ""
  3848. },
  3849. {
  3850. "__type__": "cc.PrefabInfo",
  3851. "root": {
  3852. "__id__": 1
  3853. },
  3854. "asset": {
  3855. "__id__": 0
  3856. },
  3857. "fileId": "17mAcAe9FJ2I3upYOJFqCD",
  3858. "sync": false,
  3859. "_synced": {
  3860. "default": false,
  3861. "serializable": false
  3862. }
  3863. },
  3864. {
  3865. "__type__": "cc.UITransformComponent",
  3866. "_name": "Buff1<UITransformComponent>",
  3867. "_objFlags": 0,
  3868. "node": {
  3869. "__id__": 123
  3870. },
  3871. "_enabled": true,
  3872. "_priority": 0,
  3873. "_contentSize": {
  3874. "__type__": "cc.Size",
  3875. "width": 45,
  3876. "height": 45
  3877. },
  3878. "_anchorPoint": {
  3879. "__type__": "cc.Vec2",
  3880. "x": 0.5,
  3881. "y": 0.5
  3882. },
  3883. "_id": ""
  3884. },
  3885. {
  3886. "__type__": "cc.SpriteComponent",
  3887. "_name": "Buff1<SpriteComponent>",
  3888. "_objFlags": 0,
  3889. "node": {
  3890. "__id__": 123
  3891. },
  3892. "_enabled": true,
  3893. "_srcBlendFactor": 2,
  3894. "_dstBlendFactor": 4,
  3895. "_color": {
  3896. "__type__": "cc.Color",
  3897. "r": 255,
  3898. "g": 255,
  3899. "b": 255,
  3900. "a": 255
  3901. },
  3902. "_sharedMaterial": null,
  3903. "_spriteFrame": {
  3904. "__uuid__": "185bc8dd-d22e-47c0-a155-ff409d30f162@f9941"
  3905. },
  3906. "_type": 0,
  3907. "_fillType": 0,
  3908. "_sizeMode": 1,
  3909. "_fillCenter": {
  3910. "__type__": "cc.Vec2",
  3911. "x": 0,
  3912. "y": 0
  3913. },
  3914. "_fillStart": 0,
  3915. "_fillRange": 0,
  3916. "_isTrimmedMode": true,
  3917. "_useGrayscale": false,
  3918. "_atlas": null,
  3919. "_id": ""
  3920. },
  3921. {
  3922. "__type__": "cc.WidgetComponent",
  3923. "_name": "Buff1<WidgetComponent>",
  3924. "_objFlags": 0,
  3925. "node": {
  3926. "__id__": 123
  3927. },
  3928. "_enabled": true,
  3929. "_alignFlags": 9,
  3930. "_target": null,
  3931. "_left": 18.5,
  3932. "_right": 0,
  3933. "_top": 130.5,
  3934. "_bottom": 0,
  3935. "_horizontalCenter": 0,
  3936. "_verticalCenter": 0,
  3937. "_isAbsLeft": true,
  3938. "_isAbsRight": true,
  3939. "_isAbsTop": true,
  3940. "_isAbsBottom": true,
  3941. "_isAbsHorizontalCenter": true,
  3942. "_isAbsVerticalCenter": true,
  3943. "_originalWidth": 0,
  3944. "_originalHeight": 0,
  3945. "_alignMode": 2,
  3946. "_lockFlags": 0,
  3947. "_id": ""
  3948. },
  3949. {
  3950. "__type__": "cc.PrefabInfo",
  3951. "root": {
  3952. "__id__": 1
  3953. },
  3954. "asset": {
  3955. "__id__": 0
  3956. },
  3957. "fileId": "c2erqpm7RBDqiZzDLcNCBl",
  3958. "sync": false,
  3959. "_synced": {
  3960. "default": false,
  3961. "serializable": false
  3962. }
  3963. },
  3964. {
  3965. "__type__": "cc.Node",
  3966. "_name": "Buff2",
  3967. "_objFlags": 0,
  3968. "_parent": {
  3969. "__id__": 60
  3970. },
  3971. "_children": [
  3972. {
  3973. "__id__": 133
  3974. }
  3975. ],
  3976. "_active": false,
  3977. "_components": [
  3978. {
  3979. "__id__": 137
  3980. },
  3981. {
  3982. "__id__": 138
  3983. },
  3984. {
  3985. "__id__": 139
  3986. }
  3987. ],
  3988. "_prefab": {
  3989. "__id__": 140
  3990. },
  3991. "_lpos": {
  3992. "__type__": "cc.Vec3",
  3993. "x": 197,
  3994. "y": -103,
  3995. "z": 0
  3996. },
  3997. "_lrot": {
  3998. "__type__": "cc.Quat",
  3999. "x": 0,
  4000. "y": 0,
  4001. "z": 0,
  4002. "w": 1
  4003. },
  4004. "_lscale": {
  4005. "__type__": "cc.Vec3",
  4006. "x": 1,
  4007. "y": 1,
  4008. "z": 1
  4009. },
  4010. "_layer": 33554432,
  4011. "_euler": {
  4012. "__type__": "cc.Vec3",
  4013. "x": 0,
  4014. "y": 0,
  4015. "z": 0
  4016. },
  4017. "_id": ""
  4018. },
  4019. {
  4020. "__type__": "cc.Node",
  4021. "_name": "Label",
  4022. "_objFlags": 0,
  4023. "_parent": {
  4024. "__id__": 132
  4025. },
  4026. "_children": [],
  4027. "_active": true,
  4028. "_components": [
  4029. {
  4030. "__id__": 134
  4031. },
  4032. {
  4033. "__id__": 135
  4034. }
  4035. ],
  4036. "_prefab": {
  4037. "__id__": 136
  4038. },
  4039. "_lpos": {
  4040. "__type__": "cc.Vec3",
  4041. "x": 34,
  4042. "y": -4,
  4043. "z": 0
  4044. },
  4045. "_lrot": {
  4046. "__type__": "cc.Quat",
  4047. "x": 0,
  4048. "y": 0,
  4049. "z": 0,
  4050. "w": 1
  4051. },
  4052. "_lscale": {
  4053. "__type__": "cc.Vec3",
  4054. "x": 1,
  4055. "y": 1,
  4056. "z": 1
  4057. },
  4058. "_layer": 33554432,
  4059. "_euler": {
  4060. "__type__": "cc.Vec3",
  4061. "x": 0,
  4062. "y": 0,
  4063. "z": 0
  4064. },
  4065. "_id": ""
  4066. },
  4067. {
  4068. "__type__": "cc.UITransformComponent",
  4069. "_name": "",
  4070. "_objFlags": 0,
  4071. "node": {
  4072. "__id__": 133
  4073. },
  4074. "_enabled": true,
  4075. "_priority": 0,
  4076. "_contentSize": {
  4077. "__type__": "cc.Size",
  4078. "width": 131.5,
  4079. "height": 50.4
  4080. },
  4081. "_anchorPoint": {
  4082. "__type__": "cc.Vec2",
  4083. "x": 0,
  4084. "y": 0.5
  4085. },
  4086. "_id": ""
  4087. },
  4088. {
  4089. "__type__": "cc.LabelComponent",
  4090. "_name": "",
  4091. "_objFlags": 0,
  4092. "node": {
  4093. "__id__": 133
  4094. },
  4095. "_enabled": true,
  4096. "_srcBlendFactor": 2,
  4097. "_dstBlendFactor": 4,
  4098. "_color": {
  4099. "__type__": "cc.Color",
  4100. "r": 255,
  4101. "g": 255,
  4102. "b": 255,
  4103. "a": 255
  4104. },
  4105. "_sharedMaterial": null,
  4106. "_useOriginalSize": true,
  4107. "_string": "收益x100%",
  4108. "_horizontalAlign": 0,
  4109. "_verticalAlign": 1,
  4110. "_actualFontSize": 26,
  4111. "_fontSize": 26,
  4112. "_fontFamily": "Arial",
  4113. "_lineHeight": 40,
  4114. "_overflow": 0,
  4115. "_enableWrapText": true,
  4116. "_font": null,
  4117. "_isSystemFontUsed": true,
  4118. "_isItalic": false,
  4119. "_isBold": false,
  4120. "_isUnderline": false,
  4121. "_cacheMode": 0,
  4122. "_id": ""
  4123. },
  4124. {
  4125. "__type__": "cc.PrefabInfo",
  4126. "root": {
  4127. "__id__": 1
  4128. },
  4129. "asset": {
  4130. "__id__": 0
  4131. },
  4132. "fileId": "54BCX5pjtNAa6n+V1Ynvm+",
  4133. "sync": false,
  4134. "_synced": {
  4135. "default": false,
  4136. "serializable": false
  4137. }
  4138. },
  4139. {
  4140. "__type__": "cc.UITransformComponent",
  4141. "_name": "Buff2<UITransformComponent>",
  4142. "_objFlags": 0,
  4143. "node": {
  4144. "__id__": 132
  4145. },
  4146. "_enabled": true,
  4147. "_priority": 0,
  4148. "_contentSize": {
  4149. "__type__": "cc.Size",
  4150. "width": 45,
  4151. "height": 45
  4152. },
  4153. "_anchorPoint": {
  4154. "__type__": "cc.Vec2",
  4155. "x": 0.5,
  4156. "y": 0.5
  4157. },
  4158. "_id": ""
  4159. },
  4160. {
  4161. "__type__": "cc.SpriteComponent",
  4162. "_name": "Buff2<SpriteComponent>",
  4163. "_objFlags": 0,
  4164. "node": {
  4165. "__id__": 132
  4166. },
  4167. "_enabled": true,
  4168. "_srcBlendFactor": 2,
  4169. "_dstBlendFactor": 4,
  4170. "_color": {
  4171. "__type__": "cc.Color",
  4172. "r": 255,
  4173. "g": 255,
  4174. "b": 255,
  4175. "a": 255
  4176. },
  4177. "_sharedMaterial": null,
  4178. "_spriteFrame": {
  4179. "__uuid__": "09677fec-d4fc-4808-b3be-9bd25ffb9f05@f9941"
  4180. },
  4181. "_type": 0,
  4182. "_fillType": 0,
  4183. "_sizeMode": 1,
  4184. "_fillCenter": {
  4185. "__type__": "cc.Vec2",
  4186. "x": 0,
  4187. "y": 0
  4188. },
  4189. "_fillStart": 0,
  4190. "_fillRange": 0,
  4191. "_isTrimmedMode": true,
  4192. "_useGrayscale": false,
  4193. "_atlas": null,
  4194. "_id": ""
  4195. },
  4196. {
  4197. "__type__": "cc.WidgetComponent",
  4198. "_name": "Buff2<WidgetComponent>",
  4199. "_objFlags": 0,
  4200. "node": {
  4201. "__id__": 132
  4202. },
  4203. "_enabled": true,
  4204. "_alignFlags": 9,
  4205. "_target": null,
  4206. "_left": 224.5,
  4207. "_right": 0,
  4208. "_top": 130.5,
  4209. "_bottom": 0,
  4210. "_horizontalCenter": 0,
  4211. "_verticalCenter": 0,
  4212. "_isAbsLeft": true,
  4213. "_isAbsRight": true,
  4214. "_isAbsTop": true,
  4215. "_isAbsBottom": true,
  4216. "_isAbsHorizontalCenter": true,
  4217. "_isAbsVerticalCenter": true,
  4218. "_originalWidth": 0,
  4219. "_originalHeight": 0,
  4220. "_alignMode": 2,
  4221. "_lockFlags": 0,
  4222. "_id": ""
  4223. },
  4224. {
  4225. "__type__": "cc.PrefabInfo",
  4226. "root": {
  4227. "__id__": 1
  4228. },
  4229. "asset": {
  4230. "__id__": 0
  4231. },
  4232. "fileId": "d2SDcSZP9FI5jk1PQUrb9/",
  4233. "sync": false,
  4234. "_synced": {
  4235. "default": false,
  4236. "serializable": false
  4237. }
  4238. },
  4239. {
  4240. "__type__": "cc.UITransformComponent",
  4241. "_name": "TopGroup<UITransformComponent>",
  4242. "_objFlags": 0,
  4243. "node": {
  4244. "__id__": 60
  4245. },
  4246. "_enabled": true,
  4247. "_priority": 0,
  4248. "_contentSize": {
  4249. "__type__": "cc.Size",
  4250. "width": 100,
  4251. "height": 100
  4252. },
  4253. "_anchorPoint": {
  4254. "__type__": "cc.Vec2",
  4255. "x": 0.5,
  4256. "y": 0.5
  4257. },
  4258. "_id": ""
  4259. },
  4260. {
  4261. "__type__": "cc.WidgetComponent",
  4262. "_name": "TopGroup<WidgetComponent>",
  4263. "_objFlags": 0,
  4264. "node": {
  4265. "__id__": 60
  4266. },
  4267. "_enabled": true,
  4268. "_alignFlags": 9,
  4269. "_target": null,
  4270. "_left": -0.6120000000000232,
  4271. "_right": 0,
  4272. "_top": 17,
  4273. "_bottom": 0,
  4274. "_horizontalCenter": 0,
  4275. "_verticalCenter": 0,
  4276. "_isAbsLeft": true,
  4277. "_isAbsRight": true,
  4278. "_isAbsTop": true,
  4279. "_isAbsBottom": true,
  4280. "_isAbsHorizontalCenter": true,
  4281. "_isAbsVerticalCenter": true,
  4282. "_originalWidth": 0,
  4283. "_originalHeight": 0,
  4284. "_alignMode": 2,
  4285. "_lockFlags": 0,
  4286. "_id": ""
  4287. },
  4288. {
  4289. "__type__": "cc.PrefabInfo",
  4290. "root": {
  4291. "__id__": 1
  4292. },
  4293. "asset": {
  4294. "__id__": 0
  4295. },
  4296. "fileId": "6cmDqA8pJNMrayeCz25qR4",
  4297. "sync": false,
  4298. "_synced": {
  4299. "default": false,
  4300. "serializable": false
  4301. }
  4302. },
  4303. {
  4304. "__type__": "cc.Node",
  4305. "_name": "EnterGroup",
  4306. "_objFlags": 0,
  4307. "_parent": {
  4308. "__id__": 1
  4309. },
  4310. "_children": [
  4311. {
  4312. "__id__": 145
  4313. },
  4314. {
  4315. "__id__": 158
  4316. },
  4317. {
  4318. "__id__": 171
  4319. },
  4320. {
  4321. "__id__": 185
  4322. }
  4323. ],
  4324. "_active": true,
  4325. "_components": [
  4326. {
  4327. "__id__": 198
  4328. },
  4329. {
  4330. "__id__": 199
  4331. }
  4332. ],
  4333. "_prefab": {
  4334. "__id__": 200
  4335. },
  4336. "_lpos": {
  4337. "__type__": "cc.Vec3",
  4338. "x": 375,
  4339. "y": 1132.049,
  4340. "z": 0
  4341. },
  4342. "_lrot": {
  4343. "__type__": "cc.Quat",
  4344. "x": 0,
  4345. "y": 0,
  4346. "z": 0,
  4347. "w": 1
  4348. },
  4349. "_lscale": {
  4350. "__type__": "cc.Vec3",
  4351. "x": 1,
  4352. "y": 1,
  4353. "z": 1
  4354. },
  4355. "_layer": 1073741824,
  4356. "_euler": {
  4357. "__type__": "cc.Vec3",
  4358. "x": 0,
  4359. "y": 0,
  4360. "z": 0
  4361. },
  4362. "_id": ""
  4363. },
  4364. {
  4365. "__type__": "cc.Node",
  4366. "_name": "ButtonEnter1",
  4367. "_objFlags": 0,
  4368. "_parent": {
  4369. "__id__": 144
  4370. },
  4371. "_children": [
  4372. {
  4373. "__id__": 146
  4374. },
  4375. {
  4376. "__id__": 150
  4377. }
  4378. ],
  4379. "_active": false,
  4380. "_components": [
  4381. {
  4382. "__id__": 154
  4383. },
  4384. {
  4385. "__id__": 155
  4386. },
  4387. {
  4388. "__id__": 156
  4389. }
  4390. ],
  4391. "_prefab": {
  4392. "__id__": 157
  4393. },
  4394. "_lpos": {
  4395. "__type__": "cc.Vec3",
  4396. "x": -314,
  4397. "y": -55.619,
  4398. "z": 0
  4399. },
  4400. "_lrot": {
  4401. "__type__": "cc.Quat",
  4402. "x": 0,
  4403. "y": 0,
  4404. "z": 0,
  4405. "w": 1
  4406. },
  4407. "_lscale": {
  4408. "__type__": "cc.Vec3",
  4409. "x": 1,
  4410. "y": 1,
  4411. "z": 1
  4412. },
  4413. "_layer": 33554432,
  4414. "_euler": {
  4415. "__type__": "cc.Vec3",
  4416. "x": 0,
  4417. "y": 0,
  4418. "z": 0
  4419. },
  4420. "_id": ""
  4421. },
  4422. {
  4423. "__type__": "cc.Node",
  4424. "_name": "Label",
  4425. "_objFlags": 0,
  4426. "_parent": {
  4427. "__id__": 145
  4428. },
  4429. "_children": [],
  4430. "_active": true,
  4431. "_components": [
  4432. {
  4433. "__id__": 147
  4434. },
  4435. {
  4436. "__id__": 148
  4437. }
  4438. ],
  4439. "_prefab": {
  4440. "__id__": 149
  4441. },
  4442. "_lpos": {
  4443. "__type__": "cc.Vec3",
  4444. "x": -1.7530000000000001,
  4445. "y": -41.539999999999964,
  4446. "z": 0
  4447. },
  4448. "_lrot": {
  4449. "__type__": "cc.Quat",
  4450. "x": 0,
  4451. "y": 0,
  4452. "z": 0,
  4453. "w": 1
  4454. },
  4455. "_lscale": {
  4456. "__type__": "cc.Vec3",
  4457. "x": 1,
  4458. "y": 1,
  4459. "z": 1
  4460. },
  4461. "_layer": 33554432,
  4462. "_euler": {
  4463. "__type__": "cc.Vec3",
  4464. "x": 0,
  4465. "y": 0,
  4466. "z": 0
  4467. },
  4468. "_id": ""
  4469. },
  4470. {
  4471. "__type__": "cc.UITransformComponent",
  4472. "_name": "",
  4473. "_objFlags": 0,
  4474. "node": {
  4475. "__id__": 146
  4476. },
  4477. "_enabled": true,
  4478. "_priority": 0,
  4479. "_contentSize": {
  4480. "__type__": "cc.Size",
  4481. "width": 88,
  4482. "height": 50.4
  4483. },
  4484. "_anchorPoint": {
  4485. "__type__": "cc.Vec2",
  4486. "x": 0.5,
  4487. "y": 0.5
  4488. },
  4489. "_id": ""
  4490. },
  4491. {
  4492. "__type__": "cc.LabelComponent",
  4493. "_name": "",
  4494. "_objFlags": 0,
  4495. "node": {
  4496. "__id__": 146
  4497. },
  4498. "_enabled": true,
  4499. "_srcBlendFactor": 2,
  4500. "_dstBlendFactor": 4,
  4501. "_color": {
  4502. "__type__": "cc.Color",
  4503. "r": 255,
  4504. "g": 255,
  4505. "b": 255,
  4506. "a": 255
  4507. },
  4508. "_sharedMaterial": null,
  4509. "_useOriginalSize": true,
  4510. "_string": "自动合成",
  4511. "_horizontalAlign": 1,
  4512. "_verticalAlign": 1,
  4513. "_actualFontSize": 22,
  4514. "_fontSize": 22,
  4515. "_fontFamily": "Arial",
  4516. "_lineHeight": 40,
  4517. "_overflow": 0,
  4518. "_enableWrapText": true,
  4519. "_font": null,
  4520. "_isSystemFontUsed": true,
  4521. "_isItalic": false,
  4522. "_isBold": false,
  4523. "_isUnderline": false,
  4524. "_cacheMode": 0,
  4525. "_id": ""
  4526. },
  4527. {
  4528. "__type__": "cc.PrefabInfo",
  4529. "root": {
  4530. "__id__": 1
  4531. },
  4532. "asset": {
  4533. "__id__": 0
  4534. },
  4535. "fileId": "91XJ0UAM1I5LHfsB3osT8x",
  4536. "sync": false,
  4537. "_synced": {
  4538. "default": false,
  4539. "serializable": false
  4540. }
  4541. },
  4542. {
  4543. "__type__": "cc.Node",
  4544. "_name": "ImgHongdian",
  4545. "_objFlags": 0,
  4546. "_parent": {
  4547. "__id__": 145
  4548. },
  4549. "_children": [],
  4550. "_active": true,
  4551. "_components": [
  4552. {
  4553. "__id__": 151
  4554. },
  4555. {
  4556. "__id__": 152
  4557. }
  4558. ],
  4559. "_prefab": {
  4560. "__id__": 153
  4561. },
  4562. "_lpos": {
  4563. "__type__": "cc.Vec3",
  4564. "x": 40,
  4565. "y": 40,
  4566. "z": 0
  4567. },
  4568. "_lrot": {
  4569. "__type__": "cc.Quat",
  4570. "x": 0,
  4571. "y": 0,
  4572. "z": 0,
  4573. "w": 1
  4574. },
  4575. "_lscale": {
  4576. "__type__": "cc.Vec3",
  4577. "x": 1,
  4578. "y": 1,
  4579. "z": 1
  4580. },
  4581. "_layer": 33554432,
  4582. "_euler": {
  4583. "__type__": "cc.Vec3",
  4584. "x": 0,
  4585. "y": 0,
  4586. "z": 0
  4587. },
  4588. "_id": ""
  4589. },
  4590. {
  4591. "__type__": "cc.UITransformComponent",
  4592. "_name": "",
  4593. "_objFlags": 0,
  4594. "node": {
  4595. "__id__": 150
  4596. },
  4597. "_enabled": true,
  4598. "_priority": 0,
  4599. "_contentSize": {
  4600. "__type__": "cc.Size",
  4601. "width": 22,
  4602. "height": 22
  4603. },
  4604. "_anchorPoint": {
  4605. "__type__": "cc.Vec2",
  4606. "x": 0.5,
  4607. "y": 0.5
  4608. },
  4609. "_id": ""
  4610. },
  4611. {
  4612. "__type__": "cc.SpriteComponent",
  4613. "_name": "",
  4614. "_objFlags": 0,
  4615. "node": {
  4616. "__id__": 150
  4617. },
  4618. "_enabled": true,
  4619. "_srcBlendFactor": 2,
  4620. "_dstBlendFactor": 4,
  4621. "_color": {
  4622. "__type__": "cc.Color",
  4623. "r": 255,
  4624. "g": 255,
  4625. "b": 255,
  4626. "a": 255
  4627. },
  4628. "_sharedMaterial": null,
  4629. "_spriteFrame": {
  4630. "__uuid__": "eb859167-03ea-460c-86cf-e157149f19f9@f9941"
  4631. },
  4632. "_type": 0,
  4633. "_fillType": 0,
  4634. "_sizeMode": 1,
  4635. "_fillCenter": {
  4636. "__type__": "cc.Vec2",
  4637. "x": 0,
  4638. "y": 0
  4639. },
  4640. "_fillStart": 0,
  4641. "_fillRange": 0,
  4642. "_isTrimmedMode": true,
  4643. "_useGrayscale": false,
  4644. "_atlas": null,
  4645. "_id": ""
  4646. },
  4647. {
  4648. "__type__": "cc.PrefabInfo",
  4649. "root": {
  4650. "__id__": 1
  4651. },
  4652. "asset": {
  4653. "__id__": 0
  4654. },
  4655. "fileId": "56+cHcWcVK+JAoX09r1sWm",
  4656. "sync": false,
  4657. "_synced": {
  4658. "default": false,
  4659. "serializable": false
  4660. }
  4661. },
  4662. {
  4663. "__type__": "cc.UITransformComponent",
  4664. "_name": "",
  4665. "_objFlags": 0,
  4666. "node": {
  4667. "__id__": 145
  4668. },
  4669. "_enabled": true,
  4670. "_priority": 0,
  4671. "_contentSize": {
  4672. "__type__": "cc.Size",
  4673. "width": 77,
  4674. "height": 81
  4675. },
  4676. "_anchorPoint": {
  4677. "__type__": "cc.Vec2",
  4678. "x": 0.5,
  4679. "y": 0.5
  4680. },
  4681. "_id": ""
  4682. },
  4683. {
  4684. "__type__": "cc.SpriteComponent",
  4685. "_name": "",
  4686. "_objFlags": 0,
  4687. "node": {
  4688. "__id__": 145
  4689. },
  4690. "_enabled": true,
  4691. "_srcBlendFactor": 2,
  4692. "_dstBlendFactor": 4,
  4693. "_color": {
  4694. "__type__": "cc.Color",
  4695. "r": 255,
  4696. "g": 255,
  4697. "b": 255,
  4698. "a": 255
  4699. },
  4700. "_sharedMaterial": null,
  4701. "_spriteFrame": {
  4702. "__uuid__": "de21bfae-fb9d-4f9b-920c-d835787460c3@f9941"
  4703. },
  4704. "_type": 1,
  4705. "_fillType": 0,
  4706. "_sizeMode": 1,
  4707. "_fillCenter": {
  4708. "__type__": "cc.Vec2",
  4709. "x": 0,
  4710. "y": 0
  4711. },
  4712. "_fillStart": 0,
  4713. "_fillRange": 0,
  4714. "_isTrimmedMode": true,
  4715. "_useGrayscale": false,
  4716. "_atlas": null,
  4717. "_id": ""
  4718. },
  4719. {
  4720. "__type__": "cc.ButtonComponent",
  4721. "_name": "",
  4722. "_objFlags": 0,
  4723. "node": {
  4724. "__id__": 145
  4725. },
  4726. "_enabled": true,
  4727. "clickEvents": [],
  4728. "_interactable": true,
  4729. "_transition": 2,
  4730. "_normalColor": {
  4731. "__type__": "cc.Color",
  4732. "r": 214,
  4733. "g": 214,
  4734. "b": 214,
  4735. "a": 255
  4736. },
  4737. "_hoverColor": {
  4738. "__type__": "cc.Color",
  4739. "r": 211,
  4740. "g": 211,
  4741. "b": 211,
  4742. "a": 255
  4743. },
  4744. "_pressColor": {
  4745. "__type__": "cc.Color",
  4746. "r": 255,
  4747. "g": 255,
  4748. "b": 255,
  4749. "a": 255
  4750. },
  4751. "_disabledColor": {
  4752. "__type__": "cc.Color",
  4753. "r": 124,
  4754. "g": 124,
  4755. "b": 124,
  4756. "a": 255
  4757. },
  4758. "_normalSprite": {
  4759. "__uuid__": "de21bfae-fb9d-4f9b-920c-d835787460c3@f9941"
  4760. },
  4761. "_hoverSprite": {
  4762. "__uuid__": "de21bfae-fb9d-4f9b-920c-d835787460c3@f9941"
  4763. },
  4764. "_pressedSprite": {
  4765. "__uuid__": "de21bfae-fb9d-4f9b-920c-d835787460c3@f9941"
  4766. },
  4767. "_disabledSprite": {
  4768. "__uuid__": "de21bfae-fb9d-4f9b-920c-d835787460c3@f9941"
  4769. },
  4770. "_duration": 0.1,
  4771. "_zoomScale": 1.2,
  4772. "_target": {
  4773. "__id__": 145
  4774. },
  4775. "_id": ""
  4776. },
  4777. {
  4778. "__type__": "cc.PrefabInfo",
  4779. "root": {
  4780. "__id__": 1
  4781. },
  4782. "asset": {
  4783. "__id__": 0
  4784. },
  4785. "fileId": "46BFOGQTNK44YForSJlbhY",
  4786. "sync": false,
  4787. "_synced": {
  4788. "default": false,
  4789. "serializable": false
  4790. }
  4791. },
  4792. {
  4793. "__type__": "cc.Node",
  4794. "_name": "ButtonEnter2",
  4795. "_objFlags": 0,
  4796. "_parent": {
  4797. "__id__": 144
  4798. },
  4799. "_children": [
  4800. {
  4801. "__id__": 159
  4802. },
  4803. {
  4804. "__id__": 163
  4805. }
  4806. ],
  4807. "_active": false,
  4808. "_components": [
  4809. {
  4810. "__id__": 167
  4811. },
  4812. {
  4813. "__id__": 168
  4814. },
  4815. {
  4816. "__id__": 169
  4817. }
  4818. ],
  4819. "_prefab": {
  4820. "__id__": 170
  4821. },
  4822. "_lpos": {
  4823. "__type__": "cc.Vec3",
  4824. "x": -314,
  4825. "y": -173.619,
  4826. "z": 0
  4827. },
  4828. "_lrot": {
  4829. "__type__": "cc.Quat",
  4830. "x": 0,
  4831. "y": 0,
  4832. "z": 0,
  4833. "w": 1
  4834. },
  4835. "_lscale": {
  4836. "__type__": "cc.Vec3",
  4837. "x": 1,
  4838. "y": 1,
  4839. "z": 1
  4840. },
  4841. "_layer": 33554432,
  4842. "_euler": {
  4843. "__type__": "cc.Vec3",
  4844. "x": 0,
  4845. "y": 0,
  4846. "z": 0
  4847. },
  4848. "_id": ""
  4849. },
  4850. {
  4851. "__type__": "cc.Node",
  4852. "_name": "Label",
  4853. "_objFlags": 0,
  4854. "_parent": {
  4855. "__id__": 158
  4856. },
  4857. "_children": [],
  4858. "_active": true,
  4859. "_components": [
  4860. {
  4861. "__id__": 160
  4862. },
  4863. {
  4864. "__id__": 161
  4865. }
  4866. ],
  4867. "_prefab": {
  4868. "__id__": 162
  4869. },
  4870. "_lpos": {
  4871. "__type__": "cc.Vec3",
  4872. "x": -1.7530000000000001,
  4873. "y": -41.539999999999964,
  4874. "z": 0
  4875. },
  4876. "_lrot": {
  4877. "__type__": "cc.Quat",
  4878. "x": 0,
  4879. "y": 0,
  4880. "z": 0,
  4881. "w": 1
  4882. },
  4883. "_lscale": {
  4884. "__type__": "cc.Vec3",
  4885. "x": 1,
  4886. "y": 1,
  4887. "z": 1
  4888. },
  4889. "_layer": 33554432,
  4890. "_euler": {
  4891. "__type__": "cc.Vec3",
  4892. "x": 0,
  4893. "y": 0,
  4894. "z": 0
  4895. },
  4896. "_id": ""
  4897. },
  4898. {
  4899. "__type__": "cc.UITransformComponent",
  4900. "_name": "",
  4901. "_objFlags": 0,
  4902. "node": {
  4903. "__id__": 159
  4904. },
  4905. "_enabled": true,
  4906. "_priority": 0,
  4907. "_contentSize": {
  4908. "__type__": "cc.Size",
  4909. "width": 44,
  4910. "height": 50.4
  4911. },
  4912. "_anchorPoint": {
  4913. "__type__": "cc.Vec2",
  4914. "x": 0.5,
  4915. "y": 0.5
  4916. },
  4917. "_id": ""
  4918. },
  4919. {
  4920. "__type__": "cc.LabelComponent",
  4921. "_name": "",
  4922. "_objFlags": 0,
  4923. "node": {
  4924. "__id__": 159
  4925. },
  4926. "_enabled": true,
  4927. "_srcBlendFactor": 2,
  4928. "_dstBlendFactor": 4,
  4929. "_color": {
  4930. "__type__": "cc.Color",
  4931. "r": 255,
  4932. "g": 255,
  4933. "b": 255,
  4934. "a": 255
  4935. },
  4936. "_sharedMaterial": null,
  4937. "_useOriginalSize": true,
  4938. "_string": "签到",
  4939. "_horizontalAlign": 1,
  4940. "_verticalAlign": 1,
  4941. "_actualFontSize": 22,
  4942. "_fontSize": 22,
  4943. "_fontFamily": "Arial",
  4944. "_lineHeight": 40,
  4945. "_overflow": 0,
  4946. "_enableWrapText": true,
  4947. "_font": null,
  4948. "_isSystemFontUsed": true,
  4949. "_isItalic": false,
  4950. "_isBold": false,
  4951. "_isUnderline": false,
  4952. "_cacheMode": 0,
  4953. "_id": ""
  4954. },
  4955. {
  4956. "__type__": "cc.PrefabInfo",
  4957. "root": {
  4958. "__id__": 1
  4959. },
  4960. "asset": {
  4961. "__id__": 0
  4962. },
  4963. "fileId": "1eqquQ6wtMEImnhJxsAfpg",
  4964. "sync": false,
  4965. "_synced": {
  4966. "default": false,
  4967. "serializable": false
  4968. }
  4969. },
  4970. {
  4971. "__type__": "cc.Node",
  4972. "_name": "ImgHongdian",
  4973. "_objFlags": 0,
  4974. "_parent": {
  4975. "__id__": 158
  4976. },
  4977. "_children": [],
  4978. "_active": true,
  4979. "_components": [
  4980. {
  4981. "__id__": 164
  4982. },
  4983. {
  4984. "__id__": 165
  4985. }
  4986. ],
  4987. "_prefab": {
  4988. "__id__": 166
  4989. },
  4990. "_lpos": {
  4991. "__type__": "cc.Vec3",
  4992. "x": 40,
  4993. "y": 40,
  4994. "z": 0
  4995. },
  4996. "_lrot": {
  4997. "__type__": "cc.Quat",
  4998. "x": 0,
  4999. "y": 0,
  5000. "z": 0,
  5001. "w": 1
  5002. },
  5003. "_lscale": {
  5004. "__type__": "cc.Vec3",
  5005. "x": 1,
  5006. "y": 1,
  5007. "z": 1
  5008. },
  5009. "_layer": 33554432,
  5010. "_euler": {
  5011. "__type__": "cc.Vec3",
  5012. "x": 0,
  5013. "y": 0,
  5014. "z": 0
  5015. },
  5016. "_id": ""
  5017. },
  5018. {
  5019. "__type__": "cc.UITransformComponent",
  5020. "_name": "",
  5021. "_objFlags": 0,
  5022. "node": {
  5023. "__id__": 163
  5024. },
  5025. "_enabled": true,
  5026. "_priority": 0,
  5027. "_contentSize": {
  5028. "__type__": "cc.Size",
  5029. "width": 22,
  5030. "height": 22
  5031. },
  5032. "_anchorPoint": {
  5033. "__type__": "cc.Vec2",
  5034. "x": 0.5,
  5035. "y": 0.5
  5036. },
  5037. "_id": ""
  5038. },
  5039. {
  5040. "__type__": "cc.SpriteComponent",
  5041. "_name": "",
  5042. "_objFlags": 0,
  5043. "node": {
  5044. "__id__": 163
  5045. },
  5046. "_enabled": true,
  5047. "_srcBlendFactor": 2,
  5048. "_dstBlendFactor": 4,
  5049. "_color": {
  5050. "__type__": "cc.Color",
  5051. "r": 255,
  5052. "g": 255,
  5053. "b": 255,
  5054. "a": 255
  5055. },
  5056. "_sharedMaterial": null,
  5057. "_spriteFrame": {
  5058. "__uuid__": "eb859167-03ea-460c-86cf-e157149f19f9@f9941"
  5059. },
  5060. "_type": 0,
  5061. "_fillType": 0,
  5062. "_sizeMode": 1,
  5063. "_fillCenter": {
  5064. "__type__": "cc.Vec2",
  5065. "x": 0,
  5066. "y": 0
  5067. },
  5068. "_fillStart": 0,
  5069. "_fillRange": 0,
  5070. "_isTrimmedMode": true,
  5071. "_useGrayscale": false,
  5072. "_atlas": null,
  5073. "_id": ""
  5074. },
  5075. {
  5076. "__type__": "cc.PrefabInfo",
  5077. "root": {
  5078. "__id__": 1
  5079. },
  5080. "asset": {
  5081. "__id__": 0
  5082. },
  5083. "fileId": "c3r3ePKwxJ8ZE5w62z0iOz",
  5084. "sync": false,
  5085. "_synced": {
  5086. "default": false,
  5087. "serializable": false
  5088. }
  5089. },
  5090. {
  5091. "__type__": "cc.UITransformComponent",
  5092. "_name": "",
  5093. "_objFlags": 0,
  5094. "node": {
  5095. "__id__": 158
  5096. },
  5097. "_enabled": true,
  5098. "_priority": 0,
  5099. "_contentSize": {
  5100. "__type__": "cc.Size",
  5101. "width": 76,
  5102. "height": 82
  5103. },
  5104. "_anchorPoint": {
  5105. "__type__": "cc.Vec2",
  5106. "x": 0.5,
  5107. "y": 0.5
  5108. },
  5109. "_id": ""
  5110. },
  5111. {
  5112. "__type__": "cc.SpriteComponent",
  5113. "_name": "",
  5114. "_objFlags": 0,
  5115. "node": {
  5116. "__id__": 158
  5117. },
  5118. "_enabled": true,
  5119. "_srcBlendFactor": 2,
  5120. "_dstBlendFactor": 4,
  5121. "_color": {
  5122. "__type__": "cc.Color",
  5123. "r": 255,
  5124. "g": 255,
  5125. "b": 255,
  5126. "a": 255
  5127. },
  5128. "_sharedMaterial": null,
  5129. "_spriteFrame": {
  5130. "__uuid__": "f2667a30-03f5-4bfe-afaf-5ae0c9082122@f9941"
  5131. },
  5132. "_type": 1,
  5133. "_fillType": 0,
  5134. "_sizeMode": 1,
  5135. "_fillCenter": {
  5136. "__type__": "cc.Vec2",
  5137. "x": 0,
  5138. "y": 0
  5139. },
  5140. "_fillStart": 0,
  5141. "_fillRange": 0,
  5142. "_isTrimmedMode": true,
  5143. "_useGrayscale": false,
  5144. "_atlas": null,
  5145. "_id": ""
  5146. },
  5147. {
  5148. "__type__": "cc.ButtonComponent",
  5149. "_name": "",
  5150. "_objFlags": 0,
  5151. "node": {
  5152. "__id__": 158
  5153. },
  5154. "_enabled": true,
  5155. "clickEvents": [],
  5156. "_interactable": true,
  5157. "_transition": 2,
  5158. "_normalColor": {
  5159. "__type__": "cc.Color",
  5160. "r": 214,
  5161. "g": 214,
  5162. "b": 214,
  5163. "a": 255
  5164. },
  5165. "_hoverColor": {
  5166. "__type__": "cc.Color",
  5167. "r": 211,
  5168. "g": 211,
  5169. "b": 211,
  5170. "a": 255
  5171. },
  5172. "_pressColor": {
  5173. "__type__": "cc.Color",
  5174. "r": 255,
  5175. "g": 255,
  5176. "b": 255,
  5177. "a": 255
  5178. },
  5179. "_disabledColor": {
  5180. "__type__": "cc.Color",
  5181. "r": 124,
  5182. "g": 124,
  5183. "b": 124,
  5184. "a": 255
  5185. },
  5186. "_normalSprite": {
  5187. "__uuid__": "f2667a30-03f5-4bfe-afaf-5ae0c9082122@f9941"
  5188. },
  5189. "_hoverSprite": {
  5190. "__uuid__": "f2667a30-03f5-4bfe-afaf-5ae0c9082122@f9941"
  5191. },
  5192. "_pressedSprite": {
  5193. "__uuid__": "f2667a30-03f5-4bfe-afaf-5ae0c9082122@f9941"
  5194. },
  5195. "_disabledSprite": {
  5196. "__uuid__": "f2667a30-03f5-4bfe-afaf-5ae0c9082122@f9941"
  5197. },
  5198. "_duration": 0.1,
  5199. "_zoomScale": 1.2,
  5200. "_target": {
  5201. "__id__": 158
  5202. },
  5203. "_id": ""
  5204. },
  5205. {
  5206. "__type__": "cc.PrefabInfo",
  5207. "root": {
  5208. "__id__": 1
  5209. },
  5210. "asset": {
  5211. "__id__": 0
  5212. },
  5213. "fileId": "acOI8drglP4K725jPKXq+f",
  5214. "sync": false,
  5215. "_synced": {
  5216. "default": false,
  5217. "serializable": false
  5218. }
  5219. },
  5220. {
  5221. "__type__": "cc.Node",
  5222. "_name": "ButtonEnter3",
  5223. "_objFlags": 0,
  5224. "_parent": {
  5225. "__id__": 144
  5226. },
  5227. "_children": [
  5228. {
  5229. "__id__": 172
  5230. },
  5231. {
  5232. "__id__": 176
  5233. }
  5234. ],
  5235. "_active": true,
  5236. "_components": [
  5237. {
  5238. "__id__": 180
  5239. },
  5240. {
  5241. "__id__": 181
  5242. },
  5243. {
  5244. "__id__": 182
  5245. }
  5246. ],
  5247. "_prefab": {
  5248. "__id__": 184
  5249. },
  5250. "_lpos": {
  5251. "__type__": "cc.Vec3",
  5252. "x": -314,
  5253. "y": -285.619,
  5254. "z": 0
  5255. },
  5256. "_lrot": {
  5257. "__type__": "cc.Quat",
  5258. "x": 0,
  5259. "y": 0,
  5260. "z": 0,
  5261. "w": 1
  5262. },
  5263. "_lscale": {
  5264. "__type__": "cc.Vec3",
  5265. "x": 1,
  5266. "y": 1,
  5267. "z": 1
  5268. },
  5269. "_layer": 33554432,
  5270. "_euler": {
  5271. "__type__": "cc.Vec3",
  5272. "x": 0,
  5273. "y": 0,
  5274. "z": 0
  5275. },
  5276. "_id": ""
  5277. },
  5278. {
  5279. "__type__": "cc.Node",
  5280. "_name": "Label",
  5281. "_objFlags": 0,
  5282. "_parent": {
  5283. "__id__": 171
  5284. },
  5285. "_children": [],
  5286. "_active": true,
  5287. "_components": [
  5288. {
  5289. "__id__": 173
  5290. },
  5291. {
  5292. "__id__": 174
  5293. }
  5294. ],
  5295. "_prefab": {
  5296. "__id__": 175
  5297. },
  5298. "_lpos": {
  5299. "__type__": "cc.Vec3",
  5300. "x": -1.7530000000000001,
  5301. "y": -41.539999999999964,
  5302. "z": 0
  5303. },
  5304. "_lrot": {
  5305. "__type__": "cc.Quat",
  5306. "x": 0,
  5307. "y": 0,
  5308. "z": 0,
  5309. "w": 1
  5310. },
  5311. "_lscale": {
  5312. "__type__": "cc.Vec3",
  5313. "x": 1,
  5314. "y": 1,
  5315. "z": 1
  5316. },
  5317. "_layer": 33554432,
  5318. "_euler": {
  5319. "__type__": "cc.Vec3",
  5320. "x": 0,
  5321. "y": 0,
  5322. "z": 0
  5323. },
  5324. "_id": ""
  5325. },
  5326. {
  5327. "__type__": "cc.UITransformComponent",
  5328. "_name": "",
  5329. "_objFlags": 0,
  5330. "node": {
  5331. "__id__": 172
  5332. },
  5333. "_enabled": true,
  5334. "_priority": 0,
  5335. "_contentSize": {
  5336. "__type__": "cc.Size",
  5337. "width": 88,
  5338. "height": 50.4
  5339. },
  5340. "_anchorPoint": {
  5341. "__type__": "cc.Vec2",
  5342. "x": 0.5,
  5343. "y": 0.5
  5344. },
  5345. "_id": ""
  5346. },
  5347. {
  5348. "__type__": "cc.LabelComponent",
  5349. "_name": "",
  5350. "_objFlags": 0,
  5351. "node": {
  5352. "__id__": 172
  5353. },
  5354. "_enabled": true,
  5355. "_srcBlendFactor": 2,
  5356. "_dstBlendFactor": 4,
  5357. "_color": {
  5358. "__type__": "cc.Color",
  5359. "r": 255,
  5360. "g": 255,
  5361. "b": 255,
  5362. "a": 255
  5363. },
  5364. "_sharedMaterial": null,
  5365. "_useOriginalSize": true,
  5366. "_string": "免费金币",
  5367. "_horizontalAlign": 1,
  5368. "_verticalAlign": 1,
  5369. "_actualFontSize": 22,
  5370. "_fontSize": 22,
  5371. "_fontFamily": "Arial",
  5372. "_lineHeight": 40,
  5373. "_overflow": 0,
  5374. "_enableWrapText": true,
  5375. "_font": null,
  5376. "_isSystemFontUsed": true,
  5377. "_isItalic": false,
  5378. "_isBold": false,
  5379. "_isUnderline": false,
  5380. "_cacheMode": 0,
  5381. "_id": ""
  5382. },
  5383. {
  5384. "__type__": "cc.PrefabInfo",
  5385. "root": {
  5386. "__id__": 1
  5387. },
  5388. "asset": {
  5389. "__id__": 0
  5390. },
  5391. "fileId": "3bQVF7bbRCTLOY26i/7Uwh",
  5392. "sync": false,
  5393. "_synced": {
  5394. "default": false,
  5395. "serializable": false
  5396. }
  5397. },
  5398. {
  5399. "__type__": "cc.Node",
  5400. "_name": "ImgHongdian",
  5401. "_objFlags": 0,
  5402. "_parent": {
  5403. "__id__": 171
  5404. },
  5405. "_children": [],
  5406. "_active": true,
  5407. "_components": [
  5408. {
  5409. "__id__": 177
  5410. },
  5411. {
  5412. "__id__": 178
  5413. }
  5414. ],
  5415. "_prefab": {
  5416. "__id__": 179
  5417. },
  5418. "_lpos": {
  5419. "__type__": "cc.Vec3",
  5420. "x": 40,
  5421. "y": 40,
  5422. "z": 0
  5423. },
  5424. "_lrot": {
  5425. "__type__": "cc.Quat",
  5426. "x": 0,
  5427. "y": 0,
  5428. "z": 0,
  5429. "w": 1
  5430. },
  5431. "_lscale": {
  5432. "__type__": "cc.Vec3",
  5433. "x": 1,
  5434. "y": 1,
  5435. "z": 1
  5436. },
  5437. "_layer": 33554432,
  5438. "_euler": {
  5439. "__type__": "cc.Vec3",
  5440. "x": 0,
  5441. "y": 0,
  5442. "z": 0
  5443. },
  5444. "_id": ""
  5445. },
  5446. {
  5447. "__type__": "cc.UITransformComponent",
  5448. "_name": "",
  5449. "_objFlags": 0,
  5450. "node": {
  5451. "__id__": 176
  5452. },
  5453. "_enabled": true,
  5454. "_priority": 0,
  5455. "_contentSize": {
  5456. "__type__": "cc.Size",
  5457. "width": 22,
  5458. "height": 22
  5459. },
  5460. "_anchorPoint": {
  5461. "__type__": "cc.Vec2",
  5462. "x": 0.5,
  5463. "y": 0.5
  5464. },
  5465. "_id": ""
  5466. },
  5467. {
  5468. "__type__": "cc.SpriteComponent",
  5469. "_name": "",
  5470. "_objFlags": 0,
  5471. "node": {
  5472. "__id__": 176
  5473. },
  5474. "_enabled": true,
  5475. "_srcBlendFactor": 2,
  5476. "_dstBlendFactor": 4,
  5477. "_color": {
  5478. "__type__": "cc.Color",
  5479. "r": 255,
  5480. "g": 255,
  5481. "b": 255,
  5482. "a": 255
  5483. },
  5484. "_sharedMaterial": null,
  5485. "_spriteFrame": {
  5486. "__uuid__": "eb859167-03ea-460c-86cf-e157149f19f9@f9941"
  5487. },
  5488. "_type": 0,
  5489. "_fillType": 0,
  5490. "_sizeMode": 1,
  5491. "_fillCenter": {
  5492. "__type__": "cc.Vec2",
  5493. "x": 0,
  5494. "y": 0
  5495. },
  5496. "_fillStart": 0,
  5497. "_fillRange": 0,
  5498. "_isTrimmedMode": true,
  5499. "_useGrayscale": false,
  5500. "_atlas": null,
  5501. "_id": ""
  5502. },
  5503. {
  5504. "__type__": "cc.PrefabInfo",
  5505. "root": {
  5506. "__id__": 1
  5507. },
  5508. "asset": {
  5509. "__id__": 0
  5510. },
  5511. "fileId": "a4UCNHz1hBaYUohBwan8Dv",
  5512. "sync": false,
  5513. "_synced": {
  5514. "default": false,
  5515. "serializable": false
  5516. }
  5517. },
  5518. {
  5519. "__type__": "cc.UITransformComponent",
  5520. "_name": "",
  5521. "_objFlags": 0,
  5522. "node": {
  5523. "__id__": 171
  5524. },
  5525. "_enabled": true,
  5526. "_priority": 0,
  5527. "_contentSize": {
  5528. "__type__": "cc.Size",
  5529. "width": 77,
  5530. "height": 63
  5531. },
  5532. "_anchorPoint": {
  5533. "__type__": "cc.Vec2",
  5534. "x": 0.5,
  5535. "y": 0.5
  5536. },
  5537. "_id": ""
  5538. },
  5539. {
  5540. "__type__": "cc.SpriteComponent",
  5541. "_name": "",
  5542. "_objFlags": 0,
  5543. "node": {
  5544. "__id__": 171
  5545. },
  5546. "_enabled": true,
  5547. "_srcBlendFactor": 2,
  5548. "_dstBlendFactor": 4,
  5549. "_color": {
  5550. "__type__": "cc.Color",
  5551. "r": 255,
  5552. "g": 255,
  5553. "b": 255,
  5554. "a": 255
  5555. },
  5556. "_sharedMaterial": null,
  5557. "_spriteFrame": {
  5558. "__uuid__": "3e7472a8-3b7f-4f15-ba7a-2a4fe21ed515@f9941"
  5559. },
  5560. "_type": 1,
  5561. "_fillType": 0,
  5562. "_sizeMode": 1,
  5563. "_fillCenter": {
  5564. "__type__": "cc.Vec2",
  5565. "x": 0,
  5566. "y": 0
  5567. },
  5568. "_fillStart": 0,
  5569. "_fillRange": 0,
  5570. "_isTrimmedMode": true,
  5571. "_useGrayscale": false,
  5572. "_atlas": null,
  5573. "_id": ""
  5574. },
  5575. {
  5576. "__type__": "cc.ButtonComponent",
  5577. "_name": "",
  5578. "_objFlags": 0,
  5579. "node": {
  5580. "__id__": 171
  5581. },
  5582. "_enabled": true,
  5583. "clickEvents": [
  5584. {
  5585. "__id__": 183
  5586. }
  5587. ],
  5588. "_interactable": true,
  5589. "_transition": 2,
  5590. "_normalColor": {
  5591. "__type__": "cc.Color",
  5592. "r": 214,
  5593. "g": 214,
  5594. "b": 214,
  5595. "a": 255
  5596. },
  5597. "_hoverColor": {
  5598. "__type__": "cc.Color",
  5599. "r": 211,
  5600. "g": 211,
  5601. "b": 211,
  5602. "a": 255
  5603. },
  5604. "_pressColor": {
  5605. "__type__": "cc.Color",
  5606. "r": 255,
  5607. "g": 255,
  5608. "b": 255,
  5609. "a": 255
  5610. },
  5611. "_disabledColor": {
  5612. "__type__": "cc.Color",
  5613. "r": 124,
  5614. "g": 124,
  5615. "b": 124,
  5616. "a": 255
  5617. },
  5618. "_normalSprite": {
  5619. "__uuid__": "3e7472a8-3b7f-4f15-ba7a-2a4fe21ed515@f9941"
  5620. },
  5621. "_hoverSprite": {
  5622. "__uuid__": "3e7472a8-3b7f-4f15-ba7a-2a4fe21ed515@f9941"
  5623. },
  5624. "_pressedSprite": {
  5625. "__uuid__": "3e7472a8-3b7f-4f15-ba7a-2a4fe21ed515@f9941"
  5626. },
  5627. "_disabledSprite": {
  5628. "__uuid__": "3e7472a8-3b7f-4f15-ba7a-2a4fe21ed515@f9941"
  5629. },
  5630. "_duration": 0.1,
  5631. "_zoomScale": 1.2,
  5632. "_target": {
  5633. "__id__": 171
  5634. },
  5635. "_id": ""
  5636. },
  5637. {
  5638. "__type__": "cc.ClickEvent",
  5639. "target": {
  5640. "__id__": 1
  5641. },
  5642. "component": "",
  5643. "_componentId": "8fc93vzZ1xF6qpWn8Qq53+4",
  5644. "handler": "getAdGold",
  5645. "customEventData": ""
  5646. },
  5647. {
  5648. "__type__": "cc.PrefabInfo",
  5649. "root": {
  5650. "__id__": 1
  5651. },
  5652. "asset": {
  5653. "__id__": 0
  5654. },
  5655. "fileId": "7aq+nnJ8ZNPp7eEp20+xir",
  5656. "sync": false,
  5657. "_synced": {
  5658. "default": false,
  5659. "serializable": false
  5660. }
  5661. },
  5662. {
  5663. "__type__": "cc.Node",
  5664. "_name": "ButtonEnter4",
  5665. "_objFlags": 0,
  5666. "_parent": {
  5667. "__id__": 144
  5668. },
  5669. "_children": [
  5670. {
  5671. "__id__": 186
  5672. },
  5673. {
  5674. "__id__": 190
  5675. }
  5676. ],
  5677. "_active": false,
  5678. "_components": [
  5679. {
  5680. "__id__": 194
  5681. },
  5682. {
  5683. "__id__": 195
  5684. },
  5685. {
  5686. "__id__": 196
  5687. }
  5688. ],
  5689. "_prefab": {
  5690. "__id__": 197
  5691. },
  5692. "_lpos": {
  5693. "__type__": "cc.Vec3",
  5694. "x": 320,
  5695. "y": -326,
  5696. "z": 0
  5697. },
  5698. "_lrot": {
  5699. "__type__": "cc.Quat",
  5700. "x": 0,
  5701. "y": 0,
  5702. "z": 0,
  5703. "w": 1
  5704. },
  5705. "_lscale": {
  5706. "__type__": "cc.Vec3",
  5707. "x": 1,
  5708. "y": 1,
  5709. "z": 1
  5710. },
  5711. "_layer": 33554432,
  5712. "_euler": {
  5713. "__type__": "cc.Vec3",
  5714. "x": 0,
  5715. "y": 0,
  5716. "z": 0
  5717. },
  5718. "_id": ""
  5719. },
  5720. {
  5721. "__type__": "cc.Node",
  5722. "_name": "Label",
  5723. "_objFlags": 0,
  5724. "_parent": {
  5725. "__id__": 185
  5726. },
  5727. "_children": [],
  5728. "_active": true,
  5729. "_components": [
  5730. {
  5731. "__id__": 187
  5732. },
  5733. {
  5734. "__id__": 188
  5735. }
  5736. ],
  5737. "_prefab": {
  5738. "__id__": 189
  5739. },
  5740. "_lpos": {
  5741. "__type__": "cc.Vec3",
  5742. "x": -1.7530000000000001,
  5743. "y": -41.539999999999964,
  5744. "z": 0
  5745. },
  5746. "_lrot": {
  5747. "__type__": "cc.Quat",
  5748. "x": 0,
  5749. "y": 0,
  5750. "z": 0,
  5751. "w": 1
  5752. },
  5753. "_lscale": {
  5754. "__type__": "cc.Vec3",
  5755. "x": 1,
  5756. "y": 1,
  5757. "z": 1
  5758. },
  5759. "_layer": 33554432,
  5760. "_euler": {
  5761. "__type__": "cc.Vec3",
  5762. "x": 0,
  5763. "y": 0,
  5764. "z": 0
  5765. },
  5766. "_id": ""
  5767. },
  5768. {
  5769. "__type__": "cc.UITransformComponent",
  5770. "_name": "",
  5771. "_objFlags": 0,
  5772. "node": {
  5773. "__id__": 186
  5774. },
  5775. "_enabled": true,
  5776. "_priority": 0,
  5777. "_contentSize": {
  5778. "__type__": "cc.Size",
  5779. "width": 88,
  5780. "height": 50.4
  5781. },
  5782. "_anchorPoint": {
  5783. "__type__": "cc.Vec2",
  5784. "x": 0.5,
  5785. "y": 0.5
  5786. },
  5787. "_id": ""
  5788. },
  5789. {
  5790. "__type__": "cc.LabelComponent",
  5791. "_name": "",
  5792. "_objFlags": 0,
  5793. "node": {
  5794. "__id__": 186
  5795. },
  5796. "_enabled": true,
  5797. "_srcBlendFactor": 2,
  5798. "_dstBlendFactor": 4,
  5799. "_color": {
  5800. "__type__": "cc.Color",
  5801. "r": 255,
  5802. "g": 255,
  5803. "b": 255,
  5804. "a": 255
  5805. },
  5806. "_sharedMaterial": null,
  5807. "_useOriginalSize": true,
  5808. "_string": "金币兑换",
  5809. "_horizontalAlign": 1,
  5810. "_verticalAlign": 1,
  5811. "_actualFontSize": 22,
  5812. "_fontSize": 22,
  5813. "_fontFamily": "Arial",
  5814. "_lineHeight": 40,
  5815. "_overflow": 0,
  5816. "_enableWrapText": true,
  5817. "_font": null,
  5818. "_isSystemFontUsed": true,
  5819. "_isItalic": false,
  5820. "_isBold": false,
  5821. "_isUnderline": false,
  5822. "_cacheMode": 0,
  5823. "_id": ""
  5824. },
  5825. {
  5826. "__type__": "cc.PrefabInfo",
  5827. "root": {
  5828. "__id__": 1
  5829. },
  5830. "asset": {
  5831. "__id__": 0
  5832. },
  5833. "fileId": "c12ArxKwhDYL7/QwEPoKv2",
  5834. "sync": false,
  5835. "_synced": {
  5836. "default": false,
  5837. "serializable": false
  5838. }
  5839. },
  5840. {
  5841. "__type__": "cc.Node",
  5842. "_name": "ImgHongdian",
  5843. "_objFlags": 0,
  5844. "_parent": {
  5845. "__id__": 185
  5846. },
  5847. "_children": [],
  5848. "_active": true,
  5849. "_components": [
  5850. {
  5851. "__id__": 191
  5852. },
  5853. {
  5854. "__id__": 192
  5855. }
  5856. ],
  5857. "_prefab": {
  5858. "__id__": 193
  5859. },
  5860. "_lpos": {
  5861. "__type__": "cc.Vec3",
  5862. "x": 40,
  5863. "y": 40,
  5864. "z": 0
  5865. },
  5866. "_lrot": {
  5867. "__type__": "cc.Quat",
  5868. "x": 0,
  5869. "y": 0,
  5870. "z": 0,
  5871. "w": 1
  5872. },
  5873. "_lscale": {
  5874. "__type__": "cc.Vec3",
  5875. "x": 1,
  5876. "y": 1,
  5877. "z": 1
  5878. },
  5879. "_layer": 33554432,
  5880. "_euler": {
  5881. "__type__": "cc.Vec3",
  5882. "x": 0,
  5883. "y": 0,
  5884. "z": 0
  5885. },
  5886. "_id": ""
  5887. },
  5888. {
  5889. "__type__": "cc.UITransformComponent",
  5890. "_name": "",
  5891. "_objFlags": 0,
  5892. "node": {
  5893. "__id__": 190
  5894. },
  5895. "_enabled": true,
  5896. "_priority": 0,
  5897. "_contentSize": {
  5898. "__type__": "cc.Size",
  5899. "width": 22,
  5900. "height": 22
  5901. },
  5902. "_anchorPoint": {
  5903. "__type__": "cc.Vec2",
  5904. "x": 0.5,
  5905. "y": 0.5
  5906. },
  5907. "_id": ""
  5908. },
  5909. {
  5910. "__type__": "cc.SpriteComponent",
  5911. "_name": "",
  5912. "_objFlags": 0,
  5913. "node": {
  5914. "__id__": 190
  5915. },
  5916. "_enabled": true,
  5917. "_srcBlendFactor": 2,
  5918. "_dstBlendFactor": 4,
  5919. "_color": {
  5920. "__type__": "cc.Color",
  5921. "r": 255,
  5922. "g": 255,
  5923. "b": 255,
  5924. "a": 255
  5925. },
  5926. "_sharedMaterial": null,
  5927. "_spriteFrame": {
  5928. "__uuid__": "eb859167-03ea-460c-86cf-e157149f19f9@f9941"
  5929. },
  5930. "_type": 0,
  5931. "_fillType": 0,
  5932. "_sizeMode": 1,
  5933. "_fillCenter": {
  5934. "__type__": "cc.Vec2",
  5935. "x": 0,
  5936. "y": 0
  5937. },
  5938. "_fillStart": 0,
  5939. "_fillRange": 0,
  5940. "_isTrimmedMode": true,
  5941. "_useGrayscale": false,
  5942. "_atlas": null,
  5943. "_id": ""
  5944. },
  5945. {
  5946. "__type__": "cc.PrefabInfo",
  5947. "root": {
  5948. "__id__": 1
  5949. },
  5950. "asset": {
  5951. "__id__": 0
  5952. },
  5953. "fileId": "04WhYmwMRKX6L/+IO9Z3Ck",
  5954. "sync": false,
  5955. "_synced": {
  5956. "default": false,
  5957. "serializable": false
  5958. }
  5959. },
  5960. {
  5961. "__type__": "cc.UITransformComponent",
  5962. "_name": "",
  5963. "_objFlags": 0,
  5964. "node": {
  5965. "__id__": 185
  5966. },
  5967. "_enabled": true,
  5968. "_priority": 0,
  5969. "_contentSize": {
  5970. "__type__": "cc.Size",
  5971. "width": 82,
  5972. "height": 78
  5973. },
  5974. "_anchorPoint": {
  5975. "__type__": "cc.Vec2",
  5976. "x": 0.5,
  5977. "y": 0.5
  5978. },
  5979. "_id": ""
  5980. },
  5981. {
  5982. "__type__": "cc.SpriteComponent",
  5983. "_name": "",
  5984. "_objFlags": 0,
  5985. "node": {
  5986. "__id__": 185
  5987. },
  5988. "_enabled": true,
  5989. "_srcBlendFactor": 2,
  5990. "_dstBlendFactor": 4,
  5991. "_color": {
  5992. "__type__": "cc.Color",
  5993. "r": 255,
  5994. "g": 255,
  5995. "b": 255,
  5996. "a": 255
  5997. },
  5998. "_sharedMaterial": null,
  5999. "_spriteFrame": {
  6000. "__uuid__": "c4420b66-3232-41d6-a895-7c41ca5a8cda@f9941"
  6001. },
  6002. "_type": 1,
  6003. "_fillType": 0,
  6004. "_sizeMode": 1,
  6005. "_fillCenter": {
  6006. "__type__": "cc.Vec2",
  6007. "x": 0,
  6008. "y": 0
  6009. },
  6010. "_fillStart": 0,
  6011. "_fillRange": 0,
  6012. "_isTrimmedMode": true,
  6013. "_useGrayscale": false,
  6014. "_atlas": null,
  6015. "_id": ""
  6016. },
  6017. {
  6018. "__type__": "cc.ButtonComponent",
  6019. "_name": "",
  6020. "_objFlags": 0,
  6021. "node": {
  6022. "__id__": 185
  6023. },
  6024. "_enabled": true,
  6025. "clickEvents": [],
  6026. "_interactable": true,
  6027. "_transition": 2,
  6028. "_normalColor": {
  6029. "__type__": "cc.Color",
  6030. "r": 214,
  6031. "g": 214,
  6032. "b": 214,
  6033. "a": 255
  6034. },
  6035. "_hoverColor": {
  6036. "__type__": "cc.Color",
  6037. "r": 211,
  6038. "g": 211,
  6039. "b": 211,
  6040. "a": 255
  6041. },
  6042. "_pressColor": {
  6043. "__type__": "cc.Color",
  6044. "r": 255,
  6045. "g": 255,
  6046. "b": 255,
  6047. "a": 255
  6048. },
  6049. "_disabledColor": {
  6050. "__type__": "cc.Color",
  6051. "r": 124,
  6052. "g": 124,
  6053. "b": 124,
  6054. "a": 255
  6055. },
  6056. "_normalSprite": {
  6057. "__uuid__": "c4420b66-3232-41d6-a895-7c41ca5a8cda@f9941"
  6058. },
  6059. "_hoverSprite": {
  6060. "__uuid__": "c4420b66-3232-41d6-a895-7c41ca5a8cda@f9941"
  6061. },
  6062. "_pressedSprite": {
  6063. "__uuid__": "c4420b66-3232-41d6-a895-7c41ca5a8cda@f9941"
  6064. },
  6065. "_disabledSprite": {
  6066. "__uuid__": "c4420b66-3232-41d6-a895-7c41ca5a8cda@f9941"
  6067. },
  6068. "_duration": 0.1,
  6069. "_zoomScale": 1.2,
  6070. "_target": {
  6071. "__id__": 185
  6072. },
  6073. "_id": ""
  6074. },
  6075. {
  6076. "__type__": "cc.PrefabInfo",
  6077. "root": {
  6078. "__id__": 1
  6079. },
  6080. "asset": {
  6081. "__id__": 0
  6082. },
  6083. "fileId": "ec6OKimpNE6bksOCvYPlHH",
  6084. "sync": false,
  6085. "_synced": {
  6086. "default": false,
  6087. "serializable": false
  6088. }
  6089. },
  6090. {
  6091. "__type__": "cc.UITransformComponent",
  6092. "_name": "EnterGroup<UITransformComponent>",
  6093. "_objFlags": 0,
  6094. "node": {
  6095. "__id__": 144
  6096. },
  6097. "_enabled": true,
  6098. "_priority": 0,
  6099. "_contentSize": {
  6100. "__type__": "cc.Size",
  6101. "width": 750,
  6102. "height": 112
  6103. },
  6104. "_anchorPoint": {
  6105. "__type__": "cc.Vec2",
  6106. "x": 0.5,
  6107. "y": 0.5
  6108. },
  6109. "_id": ""
  6110. },
  6111. {
  6112. "__type__": "cc.WidgetComponent",
  6113. "_name": "EnterGroup<WidgetComponent>",
  6114. "_objFlags": 0,
  6115. "node": {
  6116. "__id__": 144
  6117. },
  6118. "_enabled": true,
  6119. "_alignFlags": 41,
  6120. "_target": null,
  6121. "_left": 0,
  6122. "_right": 0,
  6123. "_top": 145.95100000000002,
  6124. "_bottom": 0,
  6125. "_horizontalCenter": 0,
  6126. "_verticalCenter": 0,
  6127. "_isAbsLeft": true,
  6128. "_isAbsRight": true,
  6129. "_isAbsTop": true,
  6130. "_isAbsBottom": true,
  6131. "_isAbsHorizontalCenter": true,
  6132. "_isAbsVerticalCenter": true,
  6133. "_originalWidth": 100,
  6134. "_originalHeight": 0,
  6135. "_alignMode": 2,
  6136. "_lockFlags": 0,
  6137. "_id": ""
  6138. },
  6139. {
  6140. "__type__": "cc.PrefabInfo",
  6141. "root": {
  6142. "__id__": 1
  6143. },
  6144. "asset": {
  6145. "__id__": 0
  6146. },
  6147. "fileId": "02UIbCL4lONI9txsGJYgJk",
  6148. "sync": false,
  6149. "_synced": {
  6150. "default": false,
  6151. "serializable": false
  6152. }
  6153. },
  6154. {
  6155. "__type__": "cc.Node",
  6156. "_name": "BottomGroup",
  6157. "_objFlags": 0,
  6158. "_parent": {
  6159. "__id__": 1
  6160. },
  6161. "_children": [
  6162. {
  6163. "__id__": 202
  6164. },
  6165. {
  6166. "__id__": 207
  6167. },
  6168. {
  6169. "__id__": 220
  6170. },
  6171. {
  6172. "__id__": 233
  6173. }
  6174. ],
  6175. "_active": true,
  6176. "_components": [
  6177. {
  6178. "__id__": 250
  6179. }
  6180. ],
  6181. "_prefab": {
  6182. "__id__": 251
  6183. },
  6184. "_lpos": {
  6185. "__type__": "cc.Vec3",
  6186. "x": 366.622,
  6187. "y": 700,
  6188. "z": 0
  6189. },
  6190. "_lrot": {
  6191. "__type__": "cc.Quat",
  6192. "x": 0,
  6193. "y": 0,
  6194. "z": 0,
  6195. "w": 1
  6196. },
  6197. "_lscale": {
  6198. "__type__": "cc.Vec3",
  6199. "x": 1,
  6200. "y": 1,
  6201. "z": 1
  6202. },
  6203. "_layer": 1073741824,
  6204. "_euler": {
  6205. "__type__": "cc.Vec3",
  6206. "x": 0,
  6207. "y": 0,
  6208. "z": 0
  6209. },
  6210. "_id": ""
  6211. },
  6212. {
  6213. "__type__": "cc.Node",
  6214. "_name": "ButtonSellGun",
  6215. "_objFlags": 0,
  6216. "_parent": {
  6217. "__id__": 201
  6218. },
  6219. "_children": [],
  6220. "_active": true,
  6221. "_components": [
  6222. {
  6223. "__id__": 203
  6224. },
  6225. {
  6226. "__id__": 204
  6227. },
  6228. {
  6229. "__id__": 205
  6230. }
  6231. ],
  6232. "_prefab": {
  6233. "__id__": 206
  6234. },
  6235. "_lpos": {
  6236. "__type__": "cc.Vec3",
  6237. "x": -309.912,
  6238. "y": -394.599,
  6239. "z": 0
  6240. },
  6241. "_lrot": {
  6242. "__type__": "cc.Quat",
  6243. "x": 0,
  6244. "y": 0,
  6245. "z": 0,
  6246. "w": 1
  6247. },
  6248. "_lscale": {
  6249. "__type__": "cc.Vec3",
  6250. "x": 1,
  6251. "y": 1,
  6252. "z": 1
  6253. },
  6254. "_layer": 33554432,
  6255. "_euler": {
  6256. "__type__": "cc.Vec3",
  6257. "x": 0,
  6258. "y": 0,
  6259. "z": 0
  6260. },
  6261. "_id": ""
  6262. },
  6263. {
  6264. "__type__": "cc.UITransformComponent",
  6265. "_name": "",
  6266. "_objFlags": 0,
  6267. "node": {
  6268. "__id__": 202
  6269. },
  6270. "_enabled": true,
  6271. "_priority": 0,
  6272. "_contentSize": {
  6273. "__type__": "cc.Size",
  6274. "width": 68,
  6275. "height": 100
  6276. },
  6277. "_anchorPoint": {
  6278. "__type__": "cc.Vec2",
  6279. "x": 0.5,
  6280. "y": 0.5
  6281. },
  6282. "_id": ""
  6283. },
  6284. {
  6285. "__type__": "cc.SpriteComponent",
  6286. "_name": "",
  6287. "_objFlags": 0,
  6288. "node": {
  6289. "__id__": 202
  6290. },
  6291. "_enabled": true,
  6292. "_srcBlendFactor": 2,
  6293. "_dstBlendFactor": 4,
  6294. "_color": {
  6295. "__type__": "cc.Color",
  6296. "r": 255,
  6297. "g": 255,
  6298. "b": 255,
  6299. "a": 255
  6300. },
  6301. "_sharedMaterial": null,
  6302. "_spriteFrame": {
  6303. "__uuid__": "2aec04a0-5456-4f9f-bd6e-b349eca90450@f9941"
  6304. },
  6305. "_type": 1,
  6306. "_fillType": 0,
  6307. "_sizeMode": 1,
  6308. "_fillCenter": {
  6309. "__type__": "cc.Vec2",
  6310. "x": 0,
  6311. "y": 0
  6312. },
  6313. "_fillStart": 0,
  6314. "_fillRange": 0,
  6315. "_isTrimmedMode": true,
  6316. "_useGrayscale": false,
  6317. "_atlas": null,
  6318. "_id": ""
  6319. },
  6320. {
  6321. "__type__": "cc.ButtonComponent",
  6322. "_name": "",
  6323. "_objFlags": 0,
  6324. "node": {
  6325. "__id__": 202
  6326. },
  6327. "_enabled": true,
  6328. "clickEvents": [],
  6329. "_interactable": true,
  6330. "_transition": 2,
  6331. "_normalColor": {
  6332. "__type__": "cc.Color",
  6333. "r": 214,
  6334. "g": 214,
  6335. "b": 214,
  6336. "a": 255
  6337. },
  6338. "_hoverColor": {
  6339. "__type__": "cc.Color",
  6340. "r": 211,
  6341. "g": 211,
  6342. "b": 211,
  6343. "a": 255
  6344. },
  6345. "_pressColor": {
  6346. "__type__": "cc.Color",
  6347. "r": 255,
  6348. "g": 255,
  6349. "b": 255,
  6350. "a": 255
  6351. },
  6352. "_disabledColor": {
  6353. "__type__": "cc.Color",
  6354. "r": 124,
  6355. "g": 124,
  6356. "b": 124,
  6357. "a": 255
  6358. },
  6359. "_normalSprite": {
  6360. "__uuid__": "2aec04a0-5456-4f9f-bd6e-b349eca90450@f9941"
  6361. },
  6362. "_hoverSprite": {
  6363. "__uuid__": "2aec04a0-5456-4f9f-bd6e-b349eca90450@f9941"
  6364. },
  6365. "_pressedSprite": {
  6366. "__uuid__": "2aec04a0-5456-4f9f-bd6e-b349eca90450@f9941"
  6367. },
  6368. "_disabledSprite": {
  6369. "__uuid__": "2aec04a0-5456-4f9f-bd6e-b349eca90450@f9941"
  6370. },
  6371. "_duration": 0.1,
  6372. "_zoomScale": 1.2,
  6373. "_target": {
  6374. "__id__": 202
  6375. },
  6376. "_id": ""
  6377. },
  6378. {
  6379. "__type__": "cc.PrefabInfo",
  6380. "root": {
  6381. "__id__": 1
  6382. },
  6383. "asset": {
  6384. "__id__": 0
  6385. },
  6386. "fileId": "c2SyojjppAR5oOrFEtmDZU",
  6387. "sync": false,
  6388. "_synced": {
  6389. "default": false,
  6390. "serializable": false
  6391. }
  6392. },
  6393. {
  6394. "__type__": "cc.Node",
  6395. "_name": "ButtonShop",
  6396. "_objFlags": 0,
  6397. "_parent": {
  6398. "__id__": 201
  6399. },
  6400. "_children": [
  6401. {
  6402. "__id__": 208
  6403. },
  6404. {
  6405. "__id__": 212
  6406. }
  6407. ],
  6408. "_active": true,
  6409. "_components": [
  6410. {
  6411. "__id__": 216
  6412. },
  6413. {
  6414. "__id__": 217
  6415. },
  6416. {
  6417. "__id__": 218
  6418. }
  6419. ],
  6420. "_prefab": {
  6421. "__id__": 219
  6422. },
  6423. "_lpos": {
  6424. "__type__": "cc.Vec3",
  6425. "x": 297.74800000000005,
  6426. "y": -396,
  6427. "z": 0
  6428. },
  6429. "_lrot": {
  6430. "__type__": "cc.Quat",
  6431. "x": 0,
  6432. "y": 0,
  6433. "z": 0,
  6434. "w": 1
  6435. },
  6436. "_lscale": {
  6437. "__type__": "cc.Vec3",
  6438. "x": 1,
  6439. "y": 1,
  6440. "z": 1
  6441. },
  6442. "_layer": 33554432,
  6443. "_euler": {
  6444. "__type__": "cc.Vec3",
  6445. "x": 0,
  6446. "y": 0,
  6447. "z": 0
  6448. },
  6449. "_id": ""
  6450. },
  6451. {
  6452. "__type__": "cc.Node",
  6453. "_name": "Sprite",
  6454. "_objFlags": 0,
  6455. "_parent": {
  6456. "__id__": 207
  6457. },
  6458. "_children": [],
  6459. "_active": true,
  6460. "_components": [
  6461. {
  6462. "__id__": 209
  6463. },
  6464. {
  6465. "__id__": 210
  6466. }
  6467. ],
  6468. "_prefab": {
  6469. "__id__": 211
  6470. },
  6471. "_lpos": {
  6472. "__type__": "cc.Vec3",
  6473. "x": 1,
  6474. "y": 4,
  6475. "z": 0
  6476. },
  6477. "_lrot": {
  6478. "__type__": "cc.Quat",
  6479. "x": 0,
  6480. "y": 0,
  6481. "z": 0,
  6482. "w": 1
  6483. },
  6484. "_lscale": {
  6485. "__type__": "cc.Vec3",
  6486. "x": 1,
  6487. "y": 1,
  6488. "z": 1
  6489. },
  6490. "_layer": 33554432,
  6491. "_euler": {
  6492. "__type__": "cc.Vec3",
  6493. "x": 0,
  6494. "y": 0,
  6495. "z": 0
  6496. },
  6497. "_id": ""
  6498. },
  6499. {
  6500. "__type__": "cc.UITransformComponent",
  6501. "_name": "",
  6502. "_objFlags": 0,
  6503. "node": {
  6504. "__id__": 208
  6505. },
  6506. "_enabled": true,
  6507. "_priority": 0,
  6508. "_contentSize": {
  6509. "__type__": "cc.Size",
  6510. "width": 61,
  6511. "height": 77
  6512. },
  6513. "_anchorPoint": {
  6514. "__type__": "cc.Vec2",
  6515. "x": 0.5,
  6516. "y": 0.5
  6517. },
  6518. "_id": ""
  6519. },
  6520. {
  6521. "__type__": "cc.SpriteComponent",
  6522. "_name": "",
  6523. "_objFlags": 0,
  6524. "node": {
  6525. "__id__": 208
  6526. },
  6527. "_enabled": true,
  6528. "_srcBlendFactor": 2,
  6529. "_dstBlendFactor": 4,
  6530. "_color": {
  6531. "__type__": "cc.Color",
  6532. "r": 255,
  6533. "g": 255,
  6534. "b": 255,
  6535. "a": 255
  6536. },
  6537. "_sharedMaterial": null,
  6538. "_spriteFrame": {
  6539. "__uuid__": "5798d97b-f3e7-4192-984d-150994cb912a@f9941"
  6540. },
  6541. "_type": 0,
  6542. "_fillType": 0,
  6543. "_sizeMode": 1,
  6544. "_fillCenter": {
  6545. "__type__": "cc.Vec2",
  6546. "x": 0,
  6547. "y": 0
  6548. },
  6549. "_fillStart": 0,
  6550. "_fillRange": 0,
  6551. "_isTrimmedMode": true,
  6552. "_useGrayscale": false,
  6553. "_atlas": null,
  6554. "_id": ""
  6555. },
  6556. {
  6557. "__type__": "cc.PrefabInfo",
  6558. "root": {
  6559. "__id__": 1
  6560. },
  6561. "asset": {
  6562. "__id__": 0
  6563. },
  6564. "fileId": "dduTpda5NJy7ZfRpoWY4xn",
  6565. "sync": false,
  6566. "_synced": {
  6567. "default": false,
  6568. "serializable": false
  6569. }
  6570. },
  6571. {
  6572. "__type__": "cc.Node",
  6573. "_name": "tips",
  6574. "_objFlags": 0,
  6575. "_parent": {
  6576. "__id__": 207
  6577. },
  6578. "_children": [],
  6579. "_active": false,
  6580. "_components": [
  6581. {
  6582. "__id__": 213
  6583. },
  6584. {
  6585. "__id__": 214
  6586. }
  6587. ],
  6588. "_prefab": {
  6589. "__id__": 215
  6590. },
  6591. "_lpos": {
  6592. "__type__": "cc.Vec3",
  6593. "x": 52,
  6594. "y": 47,
  6595. "z": 0
  6596. },
  6597. "_lrot": {
  6598. "__type__": "cc.Quat",
  6599. "x": 0,
  6600. "y": 0,
  6601. "z": 0,
  6602. "w": 1
  6603. },
  6604. "_lscale": {
  6605. "__type__": "cc.Vec3",
  6606. "x": 1,
  6607. "y": 1,
  6608. "z": 1
  6609. },
  6610. "_layer": 33554432,
  6611. "_euler": {
  6612. "__type__": "cc.Vec3",
  6613. "x": 0,
  6614. "y": 0,
  6615. "z": 0
  6616. },
  6617. "_id": ""
  6618. },
  6619. {
  6620. "__type__": "cc.UITransformComponent",
  6621. "_name": "",
  6622. "_objFlags": 0,
  6623. "node": {
  6624. "__id__": 212
  6625. },
  6626. "_enabled": true,
  6627. "_priority": 0,
  6628. "_contentSize": {
  6629. "__type__": "cc.Size",
  6630. "width": 22,
  6631. "height": 22
  6632. },
  6633. "_anchorPoint": {
  6634. "__type__": "cc.Vec2",
  6635. "x": 0.5,
  6636. "y": 0.5
  6637. },
  6638. "_id": ""
  6639. },
  6640. {
  6641. "__type__": "cc.SpriteComponent",
  6642. "_name": "",
  6643. "_objFlags": 0,
  6644. "node": {
  6645. "__id__": 212
  6646. },
  6647. "_enabled": true,
  6648. "_srcBlendFactor": 2,
  6649. "_dstBlendFactor": 4,
  6650. "_color": {
  6651. "__type__": "cc.Color",
  6652. "r": 255,
  6653. "g": 255,
  6654. "b": 255,
  6655. "a": 255
  6656. },
  6657. "_sharedMaterial": null,
  6658. "_spriteFrame": {
  6659. "__uuid__": "eb859167-03ea-460c-86cf-e157149f19f9@f9941"
  6660. },
  6661. "_type": 0,
  6662. "_fillType": 0,
  6663. "_sizeMode": 1,
  6664. "_fillCenter": {
  6665. "__type__": "cc.Vec2",
  6666. "x": 0,
  6667. "y": 0
  6668. },
  6669. "_fillStart": 0,
  6670. "_fillRange": 0,
  6671. "_isTrimmedMode": true,
  6672. "_useGrayscale": false,
  6673. "_atlas": null,
  6674. "_id": ""
  6675. },
  6676. {
  6677. "__type__": "cc.PrefabInfo",
  6678. "root": {
  6679. "__id__": 1
  6680. },
  6681. "asset": {
  6682. "__id__": 0
  6683. },
  6684. "fileId": "bdELvGiqNBOY5vUSd2XbJL",
  6685. "sync": false,
  6686. "_synced": {
  6687. "default": false,
  6688. "serializable": false
  6689. }
  6690. },
  6691. {
  6692. "__type__": "cc.UITransformComponent",
  6693. "_name": "",
  6694. "_objFlags": 0,
  6695. "node": {
  6696. "__id__": 207
  6697. },
  6698. "_enabled": true,
  6699. "_priority": 0,
  6700. "_contentSize": {
  6701. "__type__": "cc.Size",
  6702. "width": 114,
  6703. "height": 100
  6704. },
  6705. "_anchorPoint": {
  6706. "__type__": "cc.Vec2",
  6707. "x": 0.5,
  6708. "y": 0.5
  6709. },
  6710. "_id": ""
  6711. },
  6712. {
  6713. "__type__": "cc.SpriteComponent",
  6714. "_name": "",
  6715. "_objFlags": 0,
  6716. "node": {
  6717. "__id__": 207
  6718. },
  6719. "_enabled": true,
  6720. "_srcBlendFactor": 2,
  6721. "_dstBlendFactor": 4,
  6722. "_color": {
  6723. "__type__": "cc.Color",
  6724. "r": 255,
  6725. "g": 255,
  6726. "b": 255,
  6727. "a": 255
  6728. },
  6729. "_sharedMaterial": null,
  6730. "_spriteFrame": {
  6731. "__uuid__": "d68f4e58-069e-476c-8112-05eb7851b775@f9941"
  6732. },
  6733. "_type": 1,
  6734. "_fillType": 0,
  6735. "_sizeMode": 0,
  6736. "_fillCenter": {
  6737. "__type__": "cc.Vec2",
  6738. "x": 0,
  6739. "y": 0
  6740. },
  6741. "_fillStart": 0,
  6742. "_fillRange": 0,
  6743. "_isTrimmedMode": true,
  6744. "_useGrayscale": false,
  6745. "_atlas": null,
  6746. "_id": ""
  6747. },
  6748. {
  6749. "__type__": "cc.ButtonComponent",
  6750. "_name": "",
  6751. "_objFlags": 0,
  6752. "node": {
  6753. "__id__": 207
  6754. },
  6755. "_enabled": true,
  6756. "clickEvents": [],
  6757. "_interactable": true,
  6758. "_transition": 2,
  6759. "_normalColor": {
  6760. "__type__": "cc.Color",
  6761. "r": 214,
  6762. "g": 214,
  6763. "b": 214,
  6764. "a": 255
  6765. },
  6766. "_hoverColor": {
  6767. "__type__": "cc.Color",
  6768. "r": 211,
  6769. "g": 211,
  6770. "b": 211,
  6771. "a": 255
  6772. },
  6773. "_pressColor": {
  6774. "__type__": "cc.Color",
  6775. "r": 255,
  6776. "g": 255,
  6777. "b": 255,
  6778. "a": 255
  6779. },
  6780. "_disabledColor": {
  6781. "__type__": "cc.Color",
  6782. "r": 124,
  6783. "g": 124,
  6784. "b": 124,
  6785. "a": 255
  6786. },
  6787. "_normalSprite": {
  6788. "__uuid__": "d68f4e58-069e-476c-8112-05eb7851b775@f9941"
  6789. },
  6790. "_hoverSprite": {
  6791. "__uuid__": "d68f4e58-069e-476c-8112-05eb7851b775@f9941"
  6792. },
  6793. "_pressedSprite": {
  6794. "__uuid__": "d68f4e58-069e-476c-8112-05eb7851b775@f9941"
  6795. },
  6796. "_disabledSprite": {
  6797. "__uuid__": "d68f4e58-069e-476c-8112-05eb7851b775@f9941"
  6798. },
  6799. "_duration": 0.1,
  6800. "_zoomScale": 1.2,
  6801. "_target": {
  6802. "__id__": 207
  6803. },
  6804. "_id": ""
  6805. },
  6806. {
  6807. "__type__": "cc.PrefabInfo",
  6808. "root": {
  6809. "__id__": 1
  6810. },
  6811. "asset": {
  6812. "__id__": 0
  6813. },
  6814. "fileId": "83Mo20qkNMcJ2UlNbTsCOr",
  6815. "sync": false,
  6816. "_synced": {
  6817. "default": false,
  6818. "serializable": false
  6819. }
  6820. },
  6821. {
  6822. "__type__": "cc.Node",
  6823. "_name": "ButtonDouble",
  6824. "_objFlags": 0,
  6825. "_parent": {
  6826. "__id__": 201
  6827. },
  6828. "_children": [
  6829. {
  6830. "__id__": 221
  6831. },
  6832. {
  6833. "__id__": 225
  6834. }
  6835. ],
  6836. "_active": false,
  6837. "_components": [
  6838. {
  6839. "__id__": 229
  6840. },
  6841. {
  6842. "__id__": 230
  6843. },
  6844. {
  6845. "__id__": 231
  6846. }
  6847. ],
  6848. "_prefab": {
  6849. "__id__": 232
  6850. },
  6851. "_lpos": {
  6852. "__type__": "cc.Vec3",
  6853. "x": -182,
  6854. "y": -396,
  6855. "z": 0
  6856. },
  6857. "_lrot": {
  6858. "__type__": "cc.Quat",
  6859. "x": 0,
  6860. "y": 0,
  6861. "z": 0,
  6862. "w": 1
  6863. },
  6864. "_lscale": {
  6865. "__type__": "cc.Vec3",
  6866. "x": 1,
  6867. "y": 1,
  6868. "z": 1
  6869. },
  6870. "_layer": 33554432,
  6871. "_euler": {
  6872. "__type__": "cc.Vec3",
  6873. "x": 0,
  6874. "y": 0,
  6875. "z": 0
  6876. },
  6877. "_id": ""
  6878. },
  6879. {
  6880. "__type__": "cc.Node",
  6881. "_name": "Sprite",
  6882. "_objFlags": 0,
  6883. "_parent": {
  6884. "__id__": 220
  6885. },
  6886. "_children": [],
  6887. "_active": true,
  6888. "_components": [
  6889. {
  6890. "__id__": 222
  6891. },
  6892. {
  6893. "__id__": 223
  6894. }
  6895. ],
  6896. "_prefab": {
  6897. "__id__": 224
  6898. },
  6899. "_lpos": {
  6900. "__type__": "cc.Vec3",
  6901. "x": -3,
  6902. "y": 4,
  6903. "z": 0
  6904. },
  6905. "_lrot": {
  6906. "__type__": "cc.Quat",
  6907. "x": 0,
  6908. "y": 0,
  6909. "z": 0,
  6910. "w": 1
  6911. },
  6912. "_lscale": {
  6913. "__type__": "cc.Vec3",
  6914. "x": 1,
  6915. "y": 1,
  6916. "z": 1
  6917. },
  6918. "_layer": 33554432,
  6919. "_euler": {
  6920. "__type__": "cc.Vec3",
  6921. "x": 0,
  6922. "y": 0,
  6923. "z": 0
  6924. },
  6925. "_id": ""
  6926. },
  6927. {
  6928. "__type__": "cc.UITransformComponent",
  6929. "_name": "",
  6930. "_objFlags": 0,
  6931. "node": {
  6932. "__id__": 221
  6933. },
  6934. "_enabled": true,
  6935. "_priority": 0,
  6936. "_contentSize": {
  6937. "__type__": "cc.Size",
  6938. "width": 63,
  6939. "height": 76
  6940. },
  6941. "_anchorPoint": {
  6942. "__type__": "cc.Vec2",
  6943. "x": 0.5,
  6944. "y": 0.5
  6945. },
  6946. "_id": ""
  6947. },
  6948. {
  6949. "__type__": "cc.SpriteComponent",
  6950. "_name": "",
  6951. "_objFlags": 0,
  6952. "node": {
  6953. "__id__": 221
  6954. },
  6955. "_enabled": true,
  6956. "_srcBlendFactor": 2,
  6957. "_dstBlendFactor": 4,
  6958. "_color": {
  6959. "__type__": "cc.Color",
  6960. "r": 255,
  6961. "g": 255,
  6962. "b": 255,
  6963. "a": 255
  6964. },
  6965. "_sharedMaterial": null,
  6966. "_spriteFrame": {
  6967. "__uuid__": "cbe9554a-6840-42ce-830d-784cfb01a026@f9941"
  6968. },
  6969. "_type": 0,
  6970. "_fillType": 0,
  6971. "_sizeMode": 1,
  6972. "_fillCenter": {
  6973. "__type__": "cc.Vec2",
  6974. "x": 0,
  6975. "y": 0
  6976. },
  6977. "_fillStart": 0,
  6978. "_fillRange": 0,
  6979. "_isTrimmedMode": true,
  6980. "_useGrayscale": false,
  6981. "_atlas": null,
  6982. "_id": ""
  6983. },
  6984. {
  6985. "__type__": "cc.PrefabInfo",
  6986. "root": {
  6987. "__id__": 1
  6988. },
  6989. "asset": {
  6990. "__id__": 0
  6991. },
  6992. "fileId": "50kBeS50pJ6KRE92h76n77",
  6993. "sync": false,
  6994. "_synced": {
  6995. "default": false,
  6996. "serializable": false
  6997. }
  6998. },
  6999. {
  7000. "__type__": "cc.Node",
  7001. "_name": "tips",
  7002. "_objFlags": 0,
  7003. "_parent": {
  7004. "__id__": 220
  7005. },
  7006. "_children": [],
  7007. "_active": true,
  7008. "_components": [
  7009. {
  7010. "__id__": 226
  7011. },
  7012. {
  7013. "__id__": 227
  7014. }
  7015. ],
  7016. "_prefab": {
  7017. "__id__": 228
  7018. },
  7019. "_lpos": {
  7020. "__type__": "cc.Vec3",
  7021. "x": 38,
  7022. "y": 50,
  7023. "z": 0
  7024. },
  7025. "_lrot": {
  7026. "__type__": "cc.Quat",
  7027. "x": 0,
  7028. "y": 0,
  7029. "z": 0,
  7030. "w": 1
  7031. },
  7032. "_lscale": {
  7033. "__type__": "cc.Vec3",
  7034. "x": 1,
  7035. "y": 1,
  7036. "z": 1
  7037. },
  7038. "_layer": 33554432,
  7039. "_euler": {
  7040. "__type__": "cc.Vec3",
  7041. "x": 0,
  7042. "y": 0,
  7043. "z": 0
  7044. },
  7045. "_id": ""
  7046. },
  7047. {
  7048. "__type__": "cc.UITransformComponent",
  7049. "_name": "",
  7050. "_objFlags": 0,
  7051. "node": {
  7052. "__id__": 225
  7053. },
  7054. "_enabled": true,
  7055. "_priority": 0,
  7056. "_contentSize": {
  7057. "__type__": "cc.Size",
  7058. "width": 45,
  7059. "height": 26
  7060. },
  7061. "_anchorPoint": {
  7062. "__type__": "cc.Vec2",
  7063. "x": 0.5,
  7064. "y": 0.5
  7065. },
  7066. "_id": ""
  7067. },
  7068. {
  7069. "__type__": "cc.SpriteComponent",
  7070. "_name": "",
  7071. "_objFlags": 0,
  7072. "node": {
  7073. "__id__": 225
  7074. },
  7075. "_enabled": true,
  7076. "_srcBlendFactor": 2,
  7077. "_dstBlendFactor": 4,
  7078. "_color": {
  7079. "__type__": "cc.Color",
  7080. "r": 255,
  7081. "g": 255,
  7082. "b": 255,
  7083. "a": 255
  7084. },
  7085. "_sharedMaterial": null,
  7086. "_spriteFrame": {
  7087. "__uuid__": "497c0d61-436a-43e8-b675-8f0ee9729b00@f9941"
  7088. },
  7089. "_type": 0,
  7090. "_fillType": 0,
  7091. "_sizeMode": 1,
  7092. "_fillCenter": {
  7093. "__type__": "cc.Vec2",
  7094. "x": 0,
  7095. "y": 0
  7096. },
  7097. "_fillStart": 0,
  7098. "_fillRange": 0,
  7099. "_isTrimmedMode": true,
  7100. "_useGrayscale": false,
  7101. "_atlas": null,
  7102. "_id": ""
  7103. },
  7104. {
  7105. "__type__": "cc.PrefabInfo",
  7106. "root": {
  7107. "__id__": 1
  7108. },
  7109. "asset": {
  7110. "__id__": 0
  7111. },
  7112. "fileId": "45LEH3I0NI/57UmqjJJHuZ",
  7113. "sync": false,
  7114. "_synced": {
  7115. "default": false,
  7116. "serializable": false
  7117. }
  7118. },
  7119. {
  7120. "__type__": "cc.UITransformComponent",
  7121. "_name": "",
  7122. "_objFlags": 0,
  7123. "node": {
  7124. "__id__": 220
  7125. },
  7126. "_enabled": true,
  7127. "_priority": 0,
  7128. "_contentSize": {
  7129. "__type__": "cc.Size",
  7130. "width": 114,
  7131. "height": 100
  7132. },
  7133. "_anchorPoint": {
  7134. "__type__": "cc.Vec2",
  7135. "x": 0.5,
  7136. "y": 0.5
  7137. },
  7138. "_id": ""
  7139. },
  7140. {
  7141. "__type__": "cc.SpriteComponent",
  7142. "_name": "",
  7143. "_objFlags": 0,
  7144. "node": {
  7145. "__id__": 220
  7146. },
  7147. "_enabled": true,
  7148. "_srcBlendFactor": 2,
  7149. "_dstBlendFactor": 4,
  7150. "_color": {
  7151. "__type__": "cc.Color",
  7152. "r": 255,
  7153. "g": 255,
  7154. "b": 255,
  7155. "a": 255
  7156. },
  7157. "_sharedMaterial": null,
  7158. "_spriteFrame": {
  7159. "__uuid__": "d68f4e58-069e-476c-8112-05eb7851b775@f9941"
  7160. },
  7161. "_type": 1,
  7162. "_fillType": 0,
  7163. "_sizeMode": 0,
  7164. "_fillCenter": {
  7165. "__type__": "cc.Vec2",
  7166. "x": 0,
  7167. "y": 0
  7168. },
  7169. "_fillStart": 0,
  7170. "_fillRange": 0,
  7171. "_isTrimmedMode": true,
  7172. "_useGrayscale": false,
  7173. "_atlas": null,
  7174. "_id": ""
  7175. },
  7176. {
  7177. "__type__": "cc.ButtonComponent",
  7178. "_name": "",
  7179. "_objFlags": 0,
  7180. "node": {
  7181. "__id__": 220
  7182. },
  7183. "_enabled": true,
  7184. "clickEvents": [],
  7185. "_interactable": true,
  7186. "_transition": 2,
  7187. "_normalColor": {
  7188. "__type__": "cc.Color",
  7189. "r": 214,
  7190. "g": 214,
  7191. "b": 214,
  7192. "a": 255
  7193. },
  7194. "_hoverColor": {
  7195. "__type__": "cc.Color",
  7196. "r": 211,
  7197. "g": 211,
  7198. "b": 211,
  7199. "a": 255
  7200. },
  7201. "_pressColor": {
  7202. "__type__": "cc.Color",
  7203. "r": 255,
  7204. "g": 255,
  7205. "b": 255,
  7206. "a": 255
  7207. },
  7208. "_disabledColor": {
  7209. "__type__": "cc.Color",
  7210. "r": 124,
  7211. "g": 124,
  7212. "b": 124,
  7213. "a": 255
  7214. },
  7215. "_normalSprite": {
  7216. "__uuid__": "d68f4e58-069e-476c-8112-05eb7851b775@f9941"
  7217. },
  7218. "_hoverSprite": {
  7219. "__uuid__": "d68f4e58-069e-476c-8112-05eb7851b775@f9941"
  7220. },
  7221. "_pressedSprite": {
  7222. "__uuid__": "d68f4e58-069e-476c-8112-05eb7851b775@f9941"
  7223. },
  7224. "_disabledSprite": {
  7225. "__uuid__": "d68f4e58-069e-476c-8112-05eb7851b775@f9941"
  7226. },
  7227. "_duration": 0.1,
  7228. "_zoomScale": 1.2,
  7229. "_target": {
  7230. "__id__": 220
  7231. },
  7232. "_id": ""
  7233. },
  7234. {
  7235. "__type__": "cc.PrefabInfo",
  7236. "root": {
  7237. "__id__": 1
  7238. },
  7239. "asset": {
  7240. "__id__": 0
  7241. },
  7242. "fileId": "ffTr3WrZVPgoqJ+KSB4CNq",
  7243. "sync": false,
  7244. "_synced": {
  7245. "default": false,
  7246. "serializable": false
  7247. }
  7248. },
  7249. {
  7250. "__type__": "cc.Node",
  7251. "_name": "ButtonBuyGun",
  7252. "_objFlags": 0,
  7253. "_parent": {
  7254. "__id__": 201
  7255. },
  7256. "_children": [
  7257. {
  7258. "__id__": 234
  7259. },
  7260. {
  7261. "__id__": 238
  7262. },
  7263. {
  7264. "__id__": 242
  7265. }
  7266. ],
  7267. "_active": true,
  7268. "_components": [
  7269. {
  7270. "__id__": 246
  7271. },
  7272. {
  7273. "__id__": 247
  7274. },
  7275. {
  7276. "__id__": 248
  7277. }
  7278. ],
  7279. "_prefab": {
  7280. "__id__": 249
  7281. },
  7282. "_lpos": {
  7283. "__type__": "cc.Vec3",
  7284. "x": 59,
  7285. "y": -396,
  7286. "z": 0
  7287. },
  7288. "_lrot": {
  7289. "__type__": "cc.Quat",
  7290. "x": 0,
  7291. "y": 0,
  7292. "z": 0,
  7293. "w": 1
  7294. },
  7295. "_lscale": {
  7296. "__type__": "cc.Vec3",
  7297. "x": 1,
  7298. "y": 1,
  7299. "z": 1
  7300. },
  7301. "_layer": 33554432,
  7302. "_euler": {
  7303. "__type__": "cc.Vec3",
  7304. "x": 0,
  7305. "y": 0,
  7306. "z": 0
  7307. },
  7308. "_id": ""
  7309. },
  7310. {
  7311. "__type__": "cc.Node",
  7312. "_name": "Sprite",
  7313. "_objFlags": 0,
  7314. "_parent": {
  7315. "__id__": 233
  7316. },
  7317. "_children": [],
  7318. "_active": true,
  7319. "_components": [
  7320. {
  7321. "__id__": 235
  7322. },
  7323. {
  7324. "__id__": 236
  7325. }
  7326. ],
  7327. "_prefab": {
  7328. "__id__": 237
  7329. },
  7330. "_lpos": {
  7331. "__type__": "cc.Vec3",
  7332. "x": -95,
  7333. "y": -13,
  7334. "z": 0
  7335. },
  7336. "_lrot": {
  7337. "__type__": "cc.Quat",
  7338. "x": 0,
  7339. "y": 0,
  7340. "z": 0,
  7341. "w": 1
  7342. },
  7343. "_lscale": {
  7344. "__type__": "cc.Vec3",
  7345. "x": 1,
  7346. "y": 1,
  7347. "z": 1
  7348. },
  7349. "_layer": 33554432,
  7350. "_euler": {
  7351. "__type__": "cc.Vec3",
  7352. "x": 0,
  7353. "y": 0,
  7354. "z": 0
  7355. },
  7356. "_id": ""
  7357. },
  7358. {
  7359. "__type__": "cc.UITransformComponent",
  7360. "_name": "",
  7361. "_objFlags": 0,
  7362. "node": {
  7363. "__id__": 234
  7364. },
  7365. "_enabled": true,
  7366. "_priority": 0,
  7367. "_contentSize": {
  7368. "__type__": "cc.Size",
  7369. "width": 50,
  7370. "height": 49
  7371. },
  7372. "_anchorPoint": {
  7373. "__type__": "cc.Vec2",
  7374. "x": 0.5,
  7375. "y": 0.5
  7376. },
  7377. "_id": ""
  7378. },
  7379. {
  7380. "__type__": "cc.SpriteComponent",
  7381. "_name": "",
  7382. "_objFlags": 0,
  7383. "node": {
  7384. "__id__": 234
  7385. },
  7386. "_enabled": true,
  7387. "_srcBlendFactor": 2,
  7388. "_dstBlendFactor": 4,
  7389. "_color": {
  7390. "__type__": "cc.Color",
  7391. "r": 255,
  7392. "g": 255,
  7393. "b": 255,
  7394. "a": 255
  7395. },
  7396. "_sharedMaterial": null,
  7397. "_spriteFrame": {
  7398. "__uuid__": "0b44fc8c-d664-46d8-bddf-1514caec8e51@f9941"
  7399. },
  7400. "_type": 0,
  7401. "_fillType": 0,
  7402. "_sizeMode": 1,
  7403. "_fillCenter": {
  7404. "__type__": "cc.Vec2",
  7405. "x": 0,
  7406. "y": 0
  7407. },
  7408. "_fillStart": 0,
  7409. "_fillRange": 0,
  7410. "_isTrimmedMode": true,
  7411. "_useGrayscale": false,
  7412. "_atlas": null,
  7413. "_id": ""
  7414. },
  7415. {
  7416. "__type__": "cc.PrefabInfo",
  7417. "root": {
  7418. "__id__": 1
  7419. },
  7420. "asset": {
  7421. "__id__": 0
  7422. },
  7423. "fileId": "c3GqGJbtRL55EMoS/E1s2q",
  7424. "sync": false,
  7425. "_synced": {
  7426. "default": false,
  7427. "serializable": false
  7428. }
  7429. },
  7430. {
  7431. "__type__": "cc.Node",
  7432. "_name": "PriceLabel",
  7433. "_objFlags": 0,
  7434. "_parent": {
  7435. "__id__": 233
  7436. },
  7437. "_children": [],
  7438. "_active": true,
  7439. "_components": [
  7440. {
  7441. "__id__": 239
  7442. },
  7443. {
  7444. "__id__": 240
  7445. }
  7446. ],
  7447. "_prefab": {
  7448. "__id__": 241
  7449. },
  7450. "_lpos": {
  7451. "__type__": "cc.Vec3",
  7452. "x": 15.823,
  7453. "y": -23,
  7454. "z": 0
  7455. },
  7456. "_lrot": {
  7457. "__type__": "cc.Quat",
  7458. "x": 0,
  7459. "y": 0,
  7460. "z": 0,
  7461. "w": 1
  7462. },
  7463. "_lscale": {
  7464. "__type__": "cc.Vec3",
  7465. "x": 1,
  7466. "y": 1,
  7467. "z": 1
  7468. },
  7469. "_layer": 33554432,
  7470. "_euler": {
  7471. "__type__": "cc.Vec3",
  7472. "x": 0,
  7473. "y": 0,
  7474. "z": 0
  7475. },
  7476. "_id": ""
  7477. },
  7478. {
  7479. "__type__": "cc.UITransformComponent",
  7480. "_name": "",
  7481. "_objFlags": 0,
  7482. "node": {
  7483. "__id__": 238
  7484. },
  7485. "_enabled": true,
  7486. "_priority": 0,
  7487. "_contentSize": {
  7488. "__type__": "cc.Size",
  7489. "width": 60.06,
  7490. "height": 50.4
  7491. },
  7492. "_anchorPoint": {
  7493. "__type__": "cc.Vec2",
  7494. "x": 0.5,
  7495. "y": 0.5
  7496. },
  7497. "_id": ""
  7498. },
  7499. {
  7500. "__type__": "cc.LabelComponent",
  7501. "_name": "",
  7502. "_objFlags": 0,
  7503. "node": {
  7504. "__id__": 238
  7505. },
  7506. "_enabled": true,
  7507. "_srcBlendFactor": 2,
  7508. "_dstBlendFactor": 4,
  7509. "_color": {
  7510. "__type__": "cc.Color",
  7511. "r": 255,
  7512. "g": 255,
  7513. "b": 255,
  7514. "a": 255
  7515. },
  7516. "_sharedMaterial": null,
  7517. "_useOriginalSize": true,
  7518. "_string": "100",
  7519. "_horizontalAlign": 1,
  7520. "_verticalAlign": 1,
  7521. "_actualFontSize": 36,
  7522. "_fontSize": 36,
  7523. "_fontFamily": "Arial",
  7524. "_lineHeight": 40,
  7525. "_overflow": 0,
  7526. "_enableWrapText": true,
  7527. "_font": null,
  7528. "_isSystemFontUsed": true,
  7529. "_isItalic": false,
  7530. "_isBold": false,
  7531. "_isUnderline": false,
  7532. "_cacheMode": 0,
  7533. "_id": ""
  7534. },
  7535. {
  7536. "__type__": "cc.PrefabInfo",
  7537. "root": {
  7538. "__id__": 1
  7539. },
  7540. "asset": {
  7541. "__id__": 0
  7542. },
  7543. "fileId": "7a32/3V0hAvLl1IsqUvmfr",
  7544. "sync": false,
  7545. "_synced": {
  7546. "default": false,
  7547. "serializable": false
  7548. }
  7549. },
  7550. {
  7551. "__type__": "cc.Node",
  7552. "_name": "GunIcon",
  7553. "_objFlags": 0,
  7554. "_parent": {
  7555. "__id__": 233
  7556. },
  7557. "_children": [],
  7558. "_active": true,
  7559. "_components": [
  7560. {
  7561. "__id__": 243
  7562. },
  7563. {
  7564. "__id__": 244
  7565. }
  7566. ],
  7567. "_prefab": {
  7568. "__id__": 245
  7569. },
  7570. "_lpos": {
  7571. "__type__": "cc.Vec3",
  7572. "x": 0,
  7573. "y": 22.341,
  7574. "z": 0
  7575. },
  7576. "_lrot": {
  7577. "__type__": "cc.Quat",
  7578. "x": 0,
  7579. "y": 0,
  7580. "z": 0,
  7581. "w": 1
  7582. },
  7583. "_lscale": {
  7584. "__type__": "cc.Vec3",
  7585. "x": 1,
  7586. "y": 1,
  7587. "z": 1
  7588. },
  7589. "_layer": 33554432,
  7590. "_euler": {
  7591. "__type__": "cc.Vec3",
  7592. "x": 0,
  7593. "y": 0,
  7594. "z": 0
  7595. },
  7596. "_id": ""
  7597. },
  7598. {
  7599. "__type__": "cc.UITransformComponent",
  7600. "_name": "",
  7601. "_objFlags": 0,
  7602. "node": {
  7603. "__id__": 242
  7604. },
  7605. "_enabled": true,
  7606. "_priority": 0,
  7607. "_contentSize": {
  7608. "__type__": "cc.Size",
  7609. "width": 40,
  7610. "height": 36
  7611. },
  7612. "_anchorPoint": {
  7613. "__type__": "cc.Vec2",
  7614. "x": 0.5,
  7615. "y": 0.5
  7616. },
  7617. "_id": ""
  7618. },
  7619. {
  7620. "__type__": "cc.SpriteComponent",
  7621. "_name": "",
  7622. "_objFlags": 0,
  7623. "node": {
  7624. "__id__": 242
  7625. },
  7626. "_enabled": true,
  7627. "_srcBlendFactor": 2,
  7628. "_dstBlendFactor": 4,
  7629. "_color": {
  7630. "__type__": "cc.Color",
  7631. "r": 255,
  7632. "g": 255,
  7633. "b": 255,
  7634. "a": 255
  7635. },
  7636. "_sharedMaterial": null,
  7637. "_spriteFrame": {
  7638. "__uuid__": "57520716-48c8-4a19-8acf-41c9f8777fb0@f9941"
  7639. },
  7640. "_type": 0,
  7641. "_fillType": 0,
  7642. "_sizeMode": 1,
  7643. "_fillCenter": {
  7644. "__type__": "cc.Vec2",
  7645. "x": 0,
  7646. "y": 0
  7647. },
  7648. "_fillStart": 0,
  7649. "_fillRange": 0,
  7650. "_isTrimmedMode": true,
  7651. "_useGrayscale": false,
  7652. "_atlas": null,
  7653. "_id": ""
  7654. },
  7655. {
  7656. "__type__": "cc.PrefabInfo",
  7657. "root": {
  7658. "__id__": 1
  7659. },
  7660. "asset": {
  7661. "__id__": 0
  7662. },
  7663. "fileId": "c0/SDBdAlH36zJ8l2cqR1n",
  7664. "sync": false,
  7665. "_synced": {
  7666. "default": false,
  7667. "serializable": false
  7668. }
  7669. },
  7670. {
  7671. "__type__": "cc.UITransformComponent",
  7672. "_name": "",
  7673. "_objFlags": 0,
  7674. "node": {
  7675. "__id__": 233
  7676. },
  7677. "_enabled": true,
  7678. "_priority": 0,
  7679. "_contentSize": {
  7680. "__type__": "cc.Size",
  7681. "width": 332,
  7682. "height": 100
  7683. },
  7684. "_anchorPoint": {
  7685. "__type__": "cc.Vec2",
  7686. "x": 0.5,
  7687. "y": 0.5
  7688. },
  7689. "_id": ""
  7690. },
  7691. {
  7692. "__type__": "cc.SpriteComponent",
  7693. "_name": "",
  7694. "_objFlags": 0,
  7695. "node": {
  7696. "__id__": 233
  7697. },
  7698. "_enabled": true,
  7699. "_srcBlendFactor": 2,
  7700. "_dstBlendFactor": 4,
  7701. "_color": {
  7702. "__type__": "cc.Color",
  7703. "r": 255,
  7704. "g": 255,
  7705. "b": 255,
  7706. "a": 255
  7707. },
  7708. "_sharedMaterial": null,
  7709. "_spriteFrame": {
  7710. "__uuid__": "d68f4e58-069e-476c-8112-05eb7851b775@f9941"
  7711. },
  7712. "_type": 1,
  7713. "_fillType": 0,
  7714. "_sizeMode": 0,
  7715. "_fillCenter": {
  7716. "__type__": "cc.Vec2",
  7717. "x": 0,
  7718. "y": 0
  7719. },
  7720. "_fillStart": 0,
  7721. "_fillRange": 0,
  7722. "_isTrimmedMode": true,
  7723. "_useGrayscale": false,
  7724. "_atlas": null,
  7725. "_id": ""
  7726. },
  7727. {
  7728. "__type__": "cc.ButtonComponent",
  7729. "_name": "",
  7730. "_objFlags": 0,
  7731. "node": {
  7732. "__id__": 233
  7733. },
  7734. "_enabled": true,
  7735. "clickEvents": [],
  7736. "_interactable": true,
  7737. "_transition": 2,
  7738. "_normalColor": {
  7739. "__type__": "cc.Color",
  7740. "r": 214,
  7741. "g": 214,
  7742. "b": 214,
  7743. "a": 255
  7744. },
  7745. "_hoverColor": {
  7746. "__type__": "cc.Color",
  7747. "r": 211,
  7748. "g": 211,
  7749. "b": 211,
  7750. "a": 255
  7751. },
  7752. "_pressColor": {
  7753. "__type__": "cc.Color",
  7754. "r": 255,
  7755. "g": 255,
  7756. "b": 255,
  7757. "a": 255
  7758. },
  7759. "_disabledColor": {
  7760. "__type__": "cc.Color",
  7761. "r": 124,
  7762. "g": 124,
  7763. "b": 124,
  7764. "a": 255
  7765. },
  7766. "_normalSprite": {
  7767. "__uuid__": "d68f4e58-069e-476c-8112-05eb7851b775@f9941"
  7768. },
  7769. "_hoverSprite": {
  7770. "__uuid__": "d68f4e58-069e-476c-8112-05eb7851b775@f9941"
  7771. },
  7772. "_pressedSprite": {
  7773. "__uuid__": "d68f4e58-069e-476c-8112-05eb7851b775@f9941"
  7774. },
  7775. "_disabledSprite": {
  7776. "__uuid__": "d68f4e58-069e-476c-8112-05eb7851b775@f9941"
  7777. },
  7778. "_duration": 0.1,
  7779. "_zoomScale": 1.2,
  7780. "_target": {
  7781. "__id__": 233
  7782. },
  7783. "_id": ""
  7784. },
  7785. {
  7786. "__type__": "cc.PrefabInfo",
  7787. "root": {
  7788. "__id__": 1
  7789. },
  7790. "asset": {
  7791. "__id__": 0
  7792. },
  7793. "fileId": "08p1uEfttJtquF+ExDmCbJ",
  7794. "sync": false,
  7795. "_synced": {
  7796. "default": false,
  7797. "serializable": false
  7798. }
  7799. },
  7800. {
  7801. "__type__": "cc.UITransformComponent",
  7802. "_name": "BottomGroup<UITransformComponent>",
  7803. "_objFlags": 0,
  7804. "node": {
  7805. "__id__": 201
  7806. },
  7807. "_enabled": true,
  7808. "_priority": 0,
  7809. "_contentSize": {
  7810. "__type__": "cc.Size",
  7811. "width": 100,
  7812. "height": 100
  7813. },
  7814. "_anchorPoint": {
  7815. "__type__": "cc.Vec2",
  7816. "x": 0.5,
  7817. "y": 0.5
  7818. },
  7819. "_id": ""
  7820. },
  7821. {
  7822. "__type__": "cc.PrefabInfo",
  7823. "root": {
  7824. "__id__": 1
  7825. },
  7826. "asset": {
  7827. "__id__": 0
  7828. },
  7829. "fileId": "e0q1J/UwpDBLKsnYkMysNB",
  7830. "sync": false,
  7831. "_synced": {
  7832. "default": false,
  7833. "serializable": false
  7834. }
  7835. },
  7836. {
  7837. "__type__": "cc.Node",
  7838. "_name": "Design",
  7839. "_objFlags": 0,
  7840. "_parent": {
  7841. "__id__": 1
  7842. },
  7843. "_children": [],
  7844. "_active": false,
  7845. "_components": [
  7846. {
  7847. "__id__": 253
  7848. },
  7849. {
  7850. "__id__": 254
  7851. },
  7852. {
  7853. "__id__": 255
  7854. }
  7855. ],
  7856. "_prefab": {
  7857. "__id__": 256
  7858. },
  7859. "_lpos": {
  7860. "__type__": "cc.Vec3",
  7861. "x": 0,
  7862. "y": 0,
  7863. "z": 0
  7864. },
  7865. "_lrot": {
  7866. "__type__": "cc.Quat",
  7867. "x": 0,
  7868. "y": 0,
  7869. "z": 0,
  7870. "w": 1
  7871. },
  7872. "_lscale": {
  7873. "__type__": "cc.Vec3",
  7874. "x": 1,
  7875. "y": 1,
  7876. "z": 1
  7877. },
  7878. "_layer": 33554432,
  7879. "_euler": {
  7880. "__type__": "cc.Vec3",
  7881. "x": 0,
  7882. "y": 0,
  7883. "z": 0
  7884. },
  7885. "_id": ""
  7886. },
  7887. {
  7888. "__type__": "cc.UITransformComponent",
  7889. "_name": "Design<UITransformComponent>",
  7890. "_objFlags": 0,
  7891. "node": {
  7892. "__id__": 252
  7893. },
  7894. "_enabled": true,
  7895. "_priority": 0,
  7896. "_contentSize": {
  7897. "__type__": "cc.Size",
  7898. "width": 750,
  7899. "height": 1334
  7900. },
  7901. "_anchorPoint": {
  7902. "__type__": "cc.Vec2",
  7903. "x": 0.5,
  7904. "y": 0.5
  7905. },
  7906. "_id": ""
  7907. },
  7908. {
  7909. "__type__": "cc.SpriteComponent",
  7910. "_name": "Design<SpriteComponent>",
  7911. "_objFlags": 0,
  7912. "node": {
  7913. "__id__": 252
  7914. },
  7915. "_enabled": true,
  7916. "_srcBlendFactor": 2,
  7917. "_dstBlendFactor": 4,
  7918. "_color": {
  7919. "__type__": "cc.Color",
  7920. "r": 255,
  7921. "g": 255,
  7922. "b": 255,
  7923. "a": 255
  7924. },
  7925. "_sharedMaterial": null,
  7926. "_spriteFrame": {
  7927. "__uuid__": "a4fbc0b5-a20c-4786-8af7-7d8d67f71b28@f9941"
  7928. },
  7929. "_type": 0,
  7930. "_fillType": 0,
  7931. "_sizeMode": 1,
  7932. "_fillCenter": {
  7933. "__type__": "cc.Vec2",
  7934. "x": 0,
  7935. "y": 0
  7936. },
  7937. "_fillStart": 0,
  7938. "_fillRange": 0,
  7939. "_isTrimmedMode": true,
  7940. "_useGrayscale": false,
  7941. "_atlas": null,
  7942. "_id": ""
  7943. },
  7944. {
  7945. "__type__": "cc.UIOpacityComponent",
  7946. "_name": "Design<UIOpacityComponent>",
  7947. "_objFlags": 0,
  7948. "node": {
  7949. "__id__": 252
  7950. },
  7951. "_enabled": true,
  7952. "_opacity": 80,
  7953. "_id": ""
  7954. },
  7955. {
  7956. "__type__": "cc.PrefabInfo",
  7957. "root": {
  7958. "__id__": 1
  7959. },
  7960. "asset": {
  7961. "__id__": 0
  7962. },
  7963. "fileId": "0ecneocDlDu4A6HIPyM7zo",
  7964. "sync": false,
  7965. "_synced": {
  7966. "default": false,
  7967. "serializable": false
  7968. }
  7969. },
  7970. {
  7971. "__type__": "cc.Node",
  7972. "_name": "DragLayer",
  7973. "_objFlags": 0,
  7974. "_parent": {
  7975. "__id__": 1
  7976. },
  7977. "_children": [
  7978. {
  7979. "__id__": 258
  7980. }
  7981. ],
  7982. "_active": true,
  7983. "_components": [
  7984. {
  7985. "__id__": 262
  7986. },
  7987. {
  7988. "__id__": 263
  7989. }
  7990. ],
  7991. "_prefab": {
  7992. "__id__": 264
  7993. },
  7994. "_lpos": {
  7995. "__type__": "cc.Vec3",
  7996. "x": 0,
  7997. "y": 0,
  7998. "z": 0
  7999. },
  8000. "_lrot": {
  8001. "__type__": "cc.Quat",
  8002. "x": 0,
  8003. "y": 0,
  8004. "z": 0,
  8005. "w": 1
  8006. },
  8007. "_lscale": {
  8008. "__type__": "cc.Vec3",
  8009. "x": 1,
  8010. "y": 1,
  8011. "z": 1
  8012. },
  8013. "_layer": 1073741824,
  8014. "_euler": {
  8015. "__type__": "cc.Vec3",
  8016. "x": 0,
  8017. "y": 0,
  8018. "z": 0
  8019. },
  8020. "_id": ""
  8021. },
  8022. {
  8023. "__type__": "cc.Node",
  8024. "_name": "WeaponIcon",
  8025. "_objFlags": 0,
  8026. "_parent": {
  8027. "__id__": 257
  8028. },
  8029. "_children": [],
  8030. "_active": true,
  8031. "_components": [
  8032. {
  8033. "__id__": 259
  8034. },
  8035. {
  8036. "__id__": 260
  8037. }
  8038. ],
  8039. "_prefab": {
  8040. "__id__": 261
  8041. },
  8042. "_lpos": {
  8043. "__type__": "cc.Vec3",
  8044. "x": 0,
  8045. "y": 0,
  8046. "z": 0
  8047. },
  8048. "_lrot": {
  8049. "__type__": "cc.Quat",
  8050. "x": 0,
  8051. "y": 0,
  8052. "z": 0,
  8053. "w": 1
  8054. },
  8055. "_lscale": {
  8056. "__type__": "cc.Vec3",
  8057. "x": 1,
  8058. "y": 1,
  8059. "z": 1
  8060. },
  8061. "_layer": 33554432,
  8062. "_euler": {
  8063. "__type__": "cc.Vec3",
  8064. "x": 0,
  8065. "y": 0,
  8066. "z": 0
  8067. },
  8068. "_id": ""
  8069. },
  8070. {
  8071. "__type__": "cc.UITransformComponent",
  8072. "_name": "",
  8073. "_objFlags": 0,
  8074. "node": {
  8075. "__id__": 258
  8076. },
  8077. "_enabled": true,
  8078. "_priority": 0,
  8079. "_contentSize": {
  8080. "__type__": "cc.Size",
  8081. "width": 40,
  8082. "height": 36
  8083. },
  8084. "_anchorPoint": {
  8085. "__type__": "cc.Vec2",
  8086. "x": 0.5,
  8087. "y": 0.5
  8088. },
  8089. "_id": ""
  8090. },
  8091. {
  8092. "__type__": "cc.SpriteComponent",
  8093. "_name": "",
  8094. "_objFlags": 0,
  8095. "node": {
  8096. "__id__": 258
  8097. },
  8098. "_enabled": true,
  8099. "_srcBlendFactor": 2,
  8100. "_dstBlendFactor": 4,
  8101. "_color": {
  8102. "__type__": "cc.Color",
  8103. "r": 255,
  8104. "g": 255,
  8105. "b": 255,
  8106. "a": 255
  8107. },
  8108. "_sharedMaterial": null,
  8109. "_spriteFrame": {
  8110. "__uuid__": "57520716-48c8-4a19-8acf-41c9f8777fb0@f9941"
  8111. },
  8112. "_type": 0,
  8113. "_fillType": 0,
  8114. "_sizeMode": 1,
  8115. "_fillCenter": {
  8116. "__type__": "cc.Vec2",
  8117. "x": 0,
  8118. "y": 0
  8119. },
  8120. "_fillStart": 0,
  8121. "_fillRange": 0,
  8122. "_isTrimmedMode": true,
  8123. "_useGrayscale": false,
  8124. "_atlas": null,
  8125. "_id": ""
  8126. },
  8127. {
  8128. "__type__": "cc.PrefabInfo",
  8129. "root": {
  8130. "__id__": 1
  8131. },
  8132. "asset": {
  8133. "__id__": 0
  8134. },
  8135. "fileId": "f0gxMGQ+tAs6VnYHt3THDz",
  8136. "sync": false,
  8137. "_synced": {
  8138. "default": false,
  8139. "serializable": false
  8140. }
  8141. },
  8142. {
  8143. "__type__": "cc.UITransformComponent",
  8144. "_name": "DragLayer<UITransformComponent>",
  8145. "_objFlags": 0,
  8146. "node": {
  8147. "__id__": 257
  8148. },
  8149. "_enabled": true,
  8150. "_priority": 0,
  8151. "_contentSize": {
  8152. "__type__": "cc.Size",
  8153. "width": 750,
  8154. "height": 1334
  8155. },
  8156. "_anchorPoint": {
  8157. "__type__": "cc.Vec2",
  8158. "x": 0,
  8159. "y": 0
  8160. },
  8161. "_id": ""
  8162. },
  8163. {
  8164. "__type__": "cc.WidgetComponent",
  8165. "_name": "DragLayer<WidgetComponent>",
  8166. "_objFlags": 0,
  8167. "node": {
  8168. "__id__": 257
  8169. },
  8170. "_enabled": true,
  8171. "_alignFlags": 45,
  8172. "_target": null,
  8173. "_left": 0,
  8174. "_right": 0,
  8175. "_top": 0,
  8176. "_bottom": 0,
  8177. "_horizontalCenter": 0,
  8178. "_verticalCenter": 0,
  8179. "_isAbsLeft": true,
  8180. "_isAbsRight": true,
  8181. "_isAbsTop": true,
  8182. "_isAbsBottom": true,
  8183. "_isAbsHorizontalCenter": true,
  8184. "_isAbsVerticalCenter": true,
  8185. "_originalWidth": 100,
  8186. "_originalHeight": 100,
  8187. "_alignMode": 2,
  8188. "_lockFlags": 0,
  8189. "_id": ""
  8190. },
  8191. {
  8192. "__type__": "cc.PrefabInfo",
  8193. "root": {
  8194. "__id__": 1
  8195. },
  8196. "asset": {
  8197. "__id__": 0
  8198. },
  8199. "fileId": "1fUaXPI/dEQZtqV4YDubOI",
  8200. "sync": false,
  8201. "_synced": {
  8202. "default": false,
  8203. "serializable": false
  8204. }
  8205. },
  8206. {
  8207. "__type__": "cc.UITransformComponent",
  8208. "_name": "PrepareUI<UITransformComponent>",
  8209. "_objFlags": 0,
  8210. "node": {
  8211. "__id__": 1
  8212. },
  8213. "_enabled": true,
  8214. "_priority": 0,
  8215. "_contentSize": {
  8216. "__type__": "cc.Size",
  8217. "width": 750,
  8218. "height": 1334
  8219. },
  8220. "_anchorPoint": {
  8221. "__type__": "cc.Vec2",
  8222. "x": 0,
  8223. "y": 0
  8224. },
  8225. "_id": ""
  8226. },
  8227. {
  8228. "__type__": "cc.WidgetComponent",
  8229. "_name": "PrepareUI<WidgetComponent>",
  8230. "_objFlags": 0,
  8231. "node": {
  8232. "__id__": 1
  8233. },
  8234. "_enabled": true,
  8235. "_alignFlags": 45,
  8236. "_target": null,
  8237. "_left": 0,
  8238. "_right": 0,
  8239. "_top": 0,
  8240. "_bottom": 0,
  8241. "_horizontalCenter": 0,
  8242. "_verticalCenter": 0,
  8243. "_isAbsLeft": true,
  8244. "_isAbsRight": true,
  8245. "_isAbsTop": true,
  8246. "_isAbsBottom": true,
  8247. "_isAbsHorizontalCenter": true,
  8248. "_isAbsVerticalCenter": true,
  8249. "_originalWidth": 100,
  8250. "_originalHeight": 100,
  8251. "_alignMode": 2,
  8252. "_lockFlags": 0,
  8253. "_id": ""
  8254. },
  8255. {
  8256. "__type__": "8fc93vzZ1xF6qpWn8Qq53+4",
  8257. "_name": "PrepareUI<PrepareMediator>",
  8258. "_objFlags": 0,
  8259. "node": {
  8260. "__id__": 1
  8261. },
  8262. "_enabled": true,
  8263. "glodLabel": {
  8264. "__id__": 78
  8265. },
  8266. "glodLabel1": {
  8267. "__id__": 82
  8268. },
  8269. "diamondLabel": {
  8270. "__id__": 100
  8271. },
  8272. "gunNameLabel": {
  8273. "__id__": 35
  8274. },
  8275. "levelLabel": {
  8276. "__id__": 48
  8277. },
  8278. "shopButton": {
  8279. "__id__": 218
  8280. },
  8281. "quickBuyButton": {
  8282. "__id__": 248
  8283. },
  8284. "quickBuyWeaponIcon": {
  8285. "__id__": 244
  8286. },
  8287. "quickBuyWeaponPriceLabel": {
  8288. "__id__": 240
  8289. },
  8290. "weaponDragIcon": {
  8291. "__id__": 260
  8292. },
  8293. "deleteWeaponNode": {
  8294. "__id__": 202
  8295. },
  8296. "equipWeaponNode": {
  8297. "__id__": 29
  8298. },
  8299. "WeaponCellPrefab": {
  8300. "__uuid__": "eb8a5df4-1c93-49a2-a673-06ed863b2c27"
  8301. },
  8302. "weaponList": {
  8303. "__id__": 58
  8304. },
  8305. "_id": ""
  8306. },
  8307. {
  8308. "__type__": "cc.PrefabInfo",
  8309. "root": {
  8310. "__id__": 1
  8311. },
  8312. "asset": {
  8313. "__id__": 0
  8314. },
  8315. "fileId": "54NQB7OnVAirjVxHlFJxQM",
  8316. "sync": false,
  8317. "_synced": {
  8318. "default": false,
  8319. "serializable": false
  8320. }
  8321. }
  8322. ]