PrepareUI.prefab 145 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370
  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__": 203
  48. },
  49. {
  50. "__id__": 255
  51. },
  52. {
  53. "__id__": 263
  54. }
  55. ],
  56. "_active": true,
  57. "_components": [
  58. {
  59. "__id__": 268
  60. },
  61. {
  62. "__id__": 269
  63. },
  64. {
  65. "__id__": 270
  66. }
  67. ],
  68. "_prefab": {
  69. "__id__": 271
  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": 50,
  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": true,
  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,
  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__": 159
  4316. },
  4317. {
  4318. "__id__": 172
  4319. },
  4320. {
  4321. "__id__": 186
  4322. }
  4323. ],
  4324. "_active": true,
  4325. "_components": [
  4326. {
  4327. "__id__": 200
  4328. },
  4329. {
  4330. "__id__": 201
  4331. }
  4332. ],
  4333. "_prefab": {
  4334. "__id__": 202
  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": true,
  4380. "_components": [
  4381. {
  4382. "__id__": 154
  4383. },
  4384. {
  4385. "__id__": 155
  4386. },
  4387. {
  4388. "__id__": 156
  4389. }
  4390. ],
  4391. "_prefab": {
  4392. "__id__": 158
  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. {
  4729. "__id__": 157
  4730. }
  4731. ],
  4732. "_interactable": true,
  4733. "_transition": 2,
  4734. "_normalColor": {
  4735. "__type__": "cc.Color",
  4736. "r": 214,
  4737. "g": 214,
  4738. "b": 214,
  4739. "a": 255
  4740. },
  4741. "_hoverColor": {
  4742. "__type__": "cc.Color",
  4743. "r": 211,
  4744. "g": 211,
  4745. "b": 211,
  4746. "a": 255
  4747. },
  4748. "_pressColor": {
  4749. "__type__": "cc.Color",
  4750. "r": 255,
  4751. "g": 255,
  4752. "b": 255,
  4753. "a": 255
  4754. },
  4755. "_disabledColor": {
  4756. "__type__": "cc.Color",
  4757. "r": 124,
  4758. "g": 124,
  4759. "b": 124,
  4760. "a": 255
  4761. },
  4762. "_normalSprite": {
  4763. "__uuid__": "de21bfae-fb9d-4f9b-920c-d835787460c3@f9941"
  4764. },
  4765. "_hoverSprite": {
  4766. "__uuid__": "de21bfae-fb9d-4f9b-920c-d835787460c3@f9941"
  4767. },
  4768. "_pressedSprite": {
  4769. "__uuid__": "de21bfae-fb9d-4f9b-920c-d835787460c3@f9941"
  4770. },
  4771. "_disabledSprite": {
  4772. "__uuid__": "de21bfae-fb9d-4f9b-920c-d835787460c3@f9941"
  4773. },
  4774. "_duration": 0.1,
  4775. "_zoomScale": 1.2,
  4776. "_target": {
  4777. "__id__": 145
  4778. },
  4779. "_id": ""
  4780. },
  4781. {
  4782. "__type__": "cc.ClickEvent",
  4783. "target": {
  4784. "__id__": 1
  4785. },
  4786. "component": "",
  4787. "_componentId": "8fc93vzZ1xF6qpWn8Qq53+4",
  4788. "handler": "AutoSynthesisButtonClickHandler",
  4789. "customEventData": ""
  4790. },
  4791. {
  4792. "__type__": "cc.PrefabInfo",
  4793. "root": {
  4794. "__id__": 1
  4795. },
  4796. "asset": {
  4797. "__id__": 0
  4798. },
  4799. "fileId": "46BFOGQTNK44YForSJlbhY",
  4800. "sync": false,
  4801. "_synced": {
  4802. "default": false,
  4803. "serializable": false
  4804. }
  4805. },
  4806. {
  4807. "__type__": "cc.Node",
  4808. "_name": "ButtonEnter2",
  4809. "_objFlags": 0,
  4810. "_parent": {
  4811. "__id__": 144
  4812. },
  4813. "_children": [
  4814. {
  4815. "__id__": 160
  4816. },
  4817. {
  4818. "__id__": 164
  4819. }
  4820. ],
  4821. "_active": false,
  4822. "_components": [
  4823. {
  4824. "__id__": 168
  4825. },
  4826. {
  4827. "__id__": 169
  4828. },
  4829. {
  4830. "__id__": 170
  4831. }
  4832. ],
  4833. "_prefab": {
  4834. "__id__": 171
  4835. },
  4836. "_lpos": {
  4837. "__type__": "cc.Vec3",
  4838. "x": -314,
  4839. "y": -173.619,
  4840. "z": 0
  4841. },
  4842. "_lrot": {
  4843. "__type__": "cc.Quat",
  4844. "x": 0,
  4845. "y": 0,
  4846. "z": 0,
  4847. "w": 1
  4848. },
  4849. "_lscale": {
  4850. "__type__": "cc.Vec3",
  4851. "x": 1,
  4852. "y": 1,
  4853. "z": 1
  4854. },
  4855. "_layer": 33554432,
  4856. "_euler": {
  4857. "__type__": "cc.Vec3",
  4858. "x": 0,
  4859. "y": 0,
  4860. "z": 0
  4861. },
  4862. "_id": ""
  4863. },
  4864. {
  4865. "__type__": "cc.Node",
  4866. "_name": "Label",
  4867. "_objFlags": 0,
  4868. "_parent": {
  4869. "__id__": 159
  4870. },
  4871. "_children": [],
  4872. "_active": true,
  4873. "_components": [
  4874. {
  4875. "__id__": 161
  4876. },
  4877. {
  4878. "__id__": 162
  4879. }
  4880. ],
  4881. "_prefab": {
  4882. "__id__": 163
  4883. },
  4884. "_lpos": {
  4885. "__type__": "cc.Vec3",
  4886. "x": -1.7530000000000001,
  4887. "y": -41.539999999999964,
  4888. "z": 0
  4889. },
  4890. "_lrot": {
  4891. "__type__": "cc.Quat",
  4892. "x": 0,
  4893. "y": 0,
  4894. "z": 0,
  4895. "w": 1
  4896. },
  4897. "_lscale": {
  4898. "__type__": "cc.Vec3",
  4899. "x": 1,
  4900. "y": 1,
  4901. "z": 1
  4902. },
  4903. "_layer": 33554432,
  4904. "_euler": {
  4905. "__type__": "cc.Vec3",
  4906. "x": 0,
  4907. "y": 0,
  4908. "z": 0
  4909. },
  4910. "_id": ""
  4911. },
  4912. {
  4913. "__type__": "cc.UITransformComponent",
  4914. "_name": "",
  4915. "_objFlags": 0,
  4916. "node": {
  4917. "__id__": 160
  4918. },
  4919. "_enabled": true,
  4920. "_priority": 0,
  4921. "_contentSize": {
  4922. "__type__": "cc.Size",
  4923. "width": 44,
  4924. "height": 50.4
  4925. },
  4926. "_anchorPoint": {
  4927. "__type__": "cc.Vec2",
  4928. "x": 0.5,
  4929. "y": 0.5
  4930. },
  4931. "_id": ""
  4932. },
  4933. {
  4934. "__type__": "cc.LabelComponent",
  4935. "_name": "",
  4936. "_objFlags": 0,
  4937. "node": {
  4938. "__id__": 160
  4939. },
  4940. "_enabled": true,
  4941. "_srcBlendFactor": 2,
  4942. "_dstBlendFactor": 4,
  4943. "_color": {
  4944. "__type__": "cc.Color",
  4945. "r": 255,
  4946. "g": 255,
  4947. "b": 255,
  4948. "a": 255
  4949. },
  4950. "_sharedMaterial": null,
  4951. "_useOriginalSize": true,
  4952. "_string": "签到",
  4953. "_horizontalAlign": 1,
  4954. "_verticalAlign": 1,
  4955. "_actualFontSize": 22,
  4956. "_fontSize": 22,
  4957. "_fontFamily": "Arial",
  4958. "_lineHeight": 40,
  4959. "_overflow": 0,
  4960. "_enableWrapText": true,
  4961. "_font": null,
  4962. "_isSystemFontUsed": true,
  4963. "_isItalic": false,
  4964. "_isBold": false,
  4965. "_isUnderline": false,
  4966. "_cacheMode": 0,
  4967. "_id": ""
  4968. },
  4969. {
  4970. "__type__": "cc.PrefabInfo",
  4971. "root": {
  4972. "__id__": 1
  4973. },
  4974. "asset": {
  4975. "__id__": 0
  4976. },
  4977. "fileId": "1eqquQ6wtMEImnhJxsAfpg",
  4978. "sync": false,
  4979. "_synced": {
  4980. "default": false,
  4981. "serializable": false
  4982. }
  4983. },
  4984. {
  4985. "__type__": "cc.Node",
  4986. "_name": "ImgHongdian",
  4987. "_objFlags": 0,
  4988. "_parent": {
  4989. "__id__": 159
  4990. },
  4991. "_children": [],
  4992. "_active": true,
  4993. "_components": [
  4994. {
  4995. "__id__": 165
  4996. },
  4997. {
  4998. "__id__": 166
  4999. }
  5000. ],
  5001. "_prefab": {
  5002. "__id__": 167
  5003. },
  5004. "_lpos": {
  5005. "__type__": "cc.Vec3",
  5006. "x": 40,
  5007. "y": 40,
  5008. "z": 0
  5009. },
  5010. "_lrot": {
  5011. "__type__": "cc.Quat",
  5012. "x": 0,
  5013. "y": 0,
  5014. "z": 0,
  5015. "w": 1
  5016. },
  5017. "_lscale": {
  5018. "__type__": "cc.Vec3",
  5019. "x": 1,
  5020. "y": 1,
  5021. "z": 1
  5022. },
  5023. "_layer": 33554432,
  5024. "_euler": {
  5025. "__type__": "cc.Vec3",
  5026. "x": 0,
  5027. "y": 0,
  5028. "z": 0
  5029. },
  5030. "_id": ""
  5031. },
  5032. {
  5033. "__type__": "cc.UITransformComponent",
  5034. "_name": "",
  5035. "_objFlags": 0,
  5036. "node": {
  5037. "__id__": 164
  5038. },
  5039. "_enabled": true,
  5040. "_priority": 0,
  5041. "_contentSize": {
  5042. "__type__": "cc.Size",
  5043. "width": 22,
  5044. "height": 22
  5045. },
  5046. "_anchorPoint": {
  5047. "__type__": "cc.Vec2",
  5048. "x": 0.5,
  5049. "y": 0.5
  5050. },
  5051. "_id": ""
  5052. },
  5053. {
  5054. "__type__": "cc.SpriteComponent",
  5055. "_name": "",
  5056. "_objFlags": 0,
  5057. "node": {
  5058. "__id__": 164
  5059. },
  5060. "_enabled": true,
  5061. "_srcBlendFactor": 2,
  5062. "_dstBlendFactor": 4,
  5063. "_color": {
  5064. "__type__": "cc.Color",
  5065. "r": 255,
  5066. "g": 255,
  5067. "b": 255,
  5068. "a": 255
  5069. },
  5070. "_sharedMaterial": null,
  5071. "_spriteFrame": {
  5072. "__uuid__": "eb859167-03ea-460c-86cf-e157149f19f9@f9941"
  5073. },
  5074. "_type": 0,
  5075. "_fillType": 0,
  5076. "_sizeMode": 1,
  5077. "_fillCenter": {
  5078. "__type__": "cc.Vec2",
  5079. "x": 0,
  5080. "y": 0
  5081. },
  5082. "_fillStart": 0,
  5083. "_fillRange": 0,
  5084. "_isTrimmedMode": true,
  5085. "_useGrayscale": false,
  5086. "_atlas": null,
  5087. "_id": ""
  5088. },
  5089. {
  5090. "__type__": "cc.PrefabInfo",
  5091. "root": {
  5092. "__id__": 1
  5093. },
  5094. "asset": {
  5095. "__id__": 0
  5096. },
  5097. "fileId": "c3r3ePKwxJ8ZE5w62z0iOz",
  5098. "sync": false,
  5099. "_synced": {
  5100. "default": false,
  5101. "serializable": false
  5102. }
  5103. },
  5104. {
  5105. "__type__": "cc.UITransformComponent",
  5106. "_name": "",
  5107. "_objFlags": 0,
  5108. "node": {
  5109. "__id__": 159
  5110. },
  5111. "_enabled": true,
  5112. "_priority": 0,
  5113. "_contentSize": {
  5114. "__type__": "cc.Size",
  5115. "width": 76,
  5116. "height": 82
  5117. },
  5118. "_anchorPoint": {
  5119. "__type__": "cc.Vec2",
  5120. "x": 0.5,
  5121. "y": 0.5
  5122. },
  5123. "_id": ""
  5124. },
  5125. {
  5126. "__type__": "cc.SpriteComponent",
  5127. "_name": "",
  5128. "_objFlags": 0,
  5129. "node": {
  5130. "__id__": 159
  5131. },
  5132. "_enabled": true,
  5133. "_srcBlendFactor": 2,
  5134. "_dstBlendFactor": 4,
  5135. "_color": {
  5136. "__type__": "cc.Color",
  5137. "r": 255,
  5138. "g": 255,
  5139. "b": 255,
  5140. "a": 255
  5141. },
  5142. "_sharedMaterial": null,
  5143. "_spriteFrame": {
  5144. "__uuid__": "f2667a30-03f5-4bfe-afaf-5ae0c9082122@f9941"
  5145. },
  5146. "_type": 1,
  5147. "_fillType": 0,
  5148. "_sizeMode": 1,
  5149. "_fillCenter": {
  5150. "__type__": "cc.Vec2",
  5151. "x": 0,
  5152. "y": 0
  5153. },
  5154. "_fillStart": 0,
  5155. "_fillRange": 0,
  5156. "_isTrimmedMode": true,
  5157. "_useGrayscale": false,
  5158. "_atlas": null,
  5159. "_id": ""
  5160. },
  5161. {
  5162. "__type__": "cc.ButtonComponent",
  5163. "_name": "",
  5164. "_objFlags": 0,
  5165. "node": {
  5166. "__id__": 159
  5167. },
  5168. "_enabled": true,
  5169. "clickEvents": [],
  5170. "_interactable": true,
  5171. "_transition": 2,
  5172. "_normalColor": {
  5173. "__type__": "cc.Color",
  5174. "r": 214,
  5175. "g": 214,
  5176. "b": 214,
  5177. "a": 255
  5178. },
  5179. "_hoverColor": {
  5180. "__type__": "cc.Color",
  5181. "r": 211,
  5182. "g": 211,
  5183. "b": 211,
  5184. "a": 255
  5185. },
  5186. "_pressColor": {
  5187. "__type__": "cc.Color",
  5188. "r": 255,
  5189. "g": 255,
  5190. "b": 255,
  5191. "a": 255
  5192. },
  5193. "_disabledColor": {
  5194. "__type__": "cc.Color",
  5195. "r": 124,
  5196. "g": 124,
  5197. "b": 124,
  5198. "a": 255
  5199. },
  5200. "_normalSprite": {
  5201. "__uuid__": "f2667a30-03f5-4bfe-afaf-5ae0c9082122@f9941"
  5202. },
  5203. "_hoverSprite": {
  5204. "__uuid__": "f2667a30-03f5-4bfe-afaf-5ae0c9082122@f9941"
  5205. },
  5206. "_pressedSprite": {
  5207. "__uuid__": "f2667a30-03f5-4bfe-afaf-5ae0c9082122@f9941"
  5208. },
  5209. "_disabledSprite": {
  5210. "__uuid__": "f2667a30-03f5-4bfe-afaf-5ae0c9082122@f9941"
  5211. },
  5212. "_duration": 0.1,
  5213. "_zoomScale": 1.2,
  5214. "_target": {
  5215. "__id__": 159
  5216. },
  5217. "_id": ""
  5218. },
  5219. {
  5220. "__type__": "cc.PrefabInfo",
  5221. "root": {
  5222. "__id__": 1
  5223. },
  5224. "asset": {
  5225. "__id__": 0
  5226. },
  5227. "fileId": "acOI8drglP4K725jPKXq+f",
  5228. "sync": false,
  5229. "_synced": {
  5230. "default": false,
  5231. "serializable": false
  5232. }
  5233. },
  5234. {
  5235. "__type__": "cc.Node",
  5236. "_name": "ButtonEnter3",
  5237. "_objFlags": 0,
  5238. "_parent": {
  5239. "__id__": 144
  5240. },
  5241. "_children": [
  5242. {
  5243. "__id__": 173
  5244. },
  5245. {
  5246. "__id__": 177
  5247. }
  5248. ],
  5249. "_active": true,
  5250. "_components": [
  5251. {
  5252. "__id__": 181
  5253. },
  5254. {
  5255. "__id__": 182
  5256. },
  5257. {
  5258. "__id__": 183
  5259. }
  5260. ],
  5261. "_prefab": {
  5262. "__id__": 185
  5263. },
  5264. "_lpos": {
  5265. "__type__": "cc.Vec3",
  5266. "x": -314,
  5267. "y": -285.619,
  5268. "z": 0
  5269. },
  5270. "_lrot": {
  5271. "__type__": "cc.Quat",
  5272. "x": 0,
  5273. "y": 0,
  5274. "z": 0,
  5275. "w": 1
  5276. },
  5277. "_lscale": {
  5278. "__type__": "cc.Vec3",
  5279. "x": 1,
  5280. "y": 1,
  5281. "z": 1
  5282. },
  5283. "_layer": 33554432,
  5284. "_euler": {
  5285. "__type__": "cc.Vec3",
  5286. "x": 0,
  5287. "y": 0,
  5288. "z": 0
  5289. },
  5290. "_id": ""
  5291. },
  5292. {
  5293. "__type__": "cc.Node",
  5294. "_name": "Label",
  5295. "_objFlags": 0,
  5296. "_parent": {
  5297. "__id__": 172
  5298. },
  5299. "_children": [],
  5300. "_active": true,
  5301. "_components": [
  5302. {
  5303. "__id__": 174
  5304. },
  5305. {
  5306. "__id__": 175
  5307. }
  5308. ],
  5309. "_prefab": {
  5310. "__id__": 176
  5311. },
  5312. "_lpos": {
  5313. "__type__": "cc.Vec3",
  5314. "x": -1.7530000000000001,
  5315. "y": -41.539999999999964,
  5316. "z": 0
  5317. },
  5318. "_lrot": {
  5319. "__type__": "cc.Quat",
  5320. "x": 0,
  5321. "y": 0,
  5322. "z": 0,
  5323. "w": 1
  5324. },
  5325. "_lscale": {
  5326. "__type__": "cc.Vec3",
  5327. "x": 1,
  5328. "y": 1,
  5329. "z": 1
  5330. },
  5331. "_layer": 33554432,
  5332. "_euler": {
  5333. "__type__": "cc.Vec3",
  5334. "x": 0,
  5335. "y": 0,
  5336. "z": 0
  5337. },
  5338. "_id": ""
  5339. },
  5340. {
  5341. "__type__": "cc.UITransformComponent",
  5342. "_name": "",
  5343. "_objFlags": 0,
  5344. "node": {
  5345. "__id__": 173
  5346. },
  5347. "_enabled": true,
  5348. "_priority": 0,
  5349. "_contentSize": {
  5350. "__type__": "cc.Size",
  5351. "width": 88,
  5352. "height": 50.4
  5353. },
  5354. "_anchorPoint": {
  5355. "__type__": "cc.Vec2",
  5356. "x": 0.5,
  5357. "y": 0.5
  5358. },
  5359. "_id": ""
  5360. },
  5361. {
  5362. "__type__": "cc.LabelComponent",
  5363. "_name": "",
  5364. "_objFlags": 0,
  5365. "node": {
  5366. "__id__": 173
  5367. },
  5368. "_enabled": true,
  5369. "_srcBlendFactor": 2,
  5370. "_dstBlendFactor": 4,
  5371. "_color": {
  5372. "__type__": "cc.Color",
  5373. "r": 255,
  5374. "g": 255,
  5375. "b": 255,
  5376. "a": 255
  5377. },
  5378. "_sharedMaterial": null,
  5379. "_useOriginalSize": true,
  5380. "_string": "免费金币",
  5381. "_horizontalAlign": 1,
  5382. "_verticalAlign": 1,
  5383. "_actualFontSize": 22,
  5384. "_fontSize": 22,
  5385. "_fontFamily": "Arial",
  5386. "_lineHeight": 40,
  5387. "_overflow": 0,
  5388. "_enableWrapText": true,
  5389. "_font": null,
  5390. "_isSystemFontUsed": true,
  5391. "_isItalic": false,
  5392. "_isBold": false,
  5393. "_isUnderline": false,
  5394. "_cacheMode": 0,
  5395. "_id": ""
  5396. },
  5397. {
  5398. "__type__": "cc.PrefabInfo",
  5399. "root": {
  5400. "__id__": 1
  5401. },
  5402. "asset": {
  5403. "__id__": 0
  5404. },
  5405. "fileId": "3bQVF7bbRCTLOY26i/7Uwh",
  5406. "sync": false,
  5407. "_synced": {
  5408. "default": false,
  5409. "serializable": false
  5410. }
  5411. },
  5412. {
  5413. "__type__": "cc.Node",
  5414. "_name": "ImgHongdian",
  5415. "_objFlags": 0,
  5416. "_parent": {
  5417. "__id__": 172
  5418. },
  5419. "_children": [],
  5420. "_active": true,
  5421. "_components": [
  5422. {
  5423. "__id__": 178
  5424. },
  5425. {
  5426. "__id__": 179
  5427. }
  5428. ],
  5429. "_prefab": {
  5430. "__id__": 180
  5431. },
  5432. "_lpos": {
  5433. "__type__": "cc.Vec3",
  5434. "x": 40,
  5435. "y": 40,
  5436. "z": 0
  5437. },
  5438. "_lrot": {
  5439. "__type__": "cc.Quat",
  5440. "x": 0,
  5441. "y": 0,
  5442. "z": 0,
  5443. "w": 1
  5444. },
  5445. "_lscale": {
  5446. "__type__": "cc.Vec3",
  5447. "x": 1,
  5448. "y": 1,
  5449. "z": 1
  5450. },
  5451. "_layer": 33554432,
  5452. "_euler": {
  5453. "__type__": "cc.Vec3",
  5454. "x": 0,
  5455. "y": 0,
  5456. "z": 0
  5457. },
  5458. "_id": ""
  5459. },
  5460. {
  5461. "__type__": "cc.UITransformComponent",
  5462. "_name": "",
  5463. "_objFlags": 0,
  5464. "node": {
  5465. "__id__": 177
  5466. },
  5467. "_enabled": true,
  5468. "_priority": 0,
  5469. "_contentSize": {
  5470. "__type__": "cc.Size",
  5471. "width": 22,
  5472. "height": 22
  5473. },
  5474. "_anchorPoint": {
  5475. "__type__": "cc.Vec2",
  5476. "x": 0.5,
  5477. "y": 0.5
  5478. },
  5479. "_id": ""
  5480. },
  5481. {
  5482. "__type__": "cc.SpriteComponent",
  5483. "_name": "",
  5484. "_objFlags": 0,
  5485. "node": {
  5486. "__id__": 177
  5487. },
  5488. "_enabled": true,
  5489. "_srcBlendFactor": 2,
  5490. "_dstBlendFactor": 4,
  5491. "_color": {
  5492. "__type__": "cc.Color",
  5493. "r": 255,
  5494. "g": 255,
  5495. "b": 255,
  5496. "a": 255
  5497. },
  5498. "_sharedMaterial": null,
  5499. "_spriteFrame": {
  5500. "__uuid__": "eb859167-03ea-460c-86cf-e157149f19f9@f9941"
  5501. },
  5502. "_type": 0,
  5503. "_fillType": 0,
  5504. "_sizeMode": 1,
  5505. "_fillCenter": {
  5506. "__type__": "cc.Vec2",
  5507. "x": 0,
  5508. "y": 0
  5509. },
  5510. "_fillStart": 0,
  5511. "_fillRange": 0,
  5512. "_isTrimmedMode": true,
  5513. "_useGrayscale": false,
  5514. "_atlas": null,
  5515. "_id": ""
  5516. },
  5517. {
  5518. "__type__": "cc.PrefabInfo",
  5519. "root": {
  5520. "__id__": 1
  5521. },
  5522. "asset": {
  5523. "__id__": 0
  5524. },
  5525. "fileId": "a4UCNHz1hBaYUohBwan8Dv",
  5526. "sync": false,
  5527. "_synced": {
  5528. "default": false,
  5529. "serializable": false
  5530. }
  5531. },
  5532. {
  5533. "__type__": "cc.UITransformComponent",
  5534. "_name": "",
  5535. "_objFlags": 0,
  5536. "node": {
  5537. "__id__": 172
  5538. },
  5539. "_enabled": true,
  5540. "_priority": 0,
  5541. "_contentSize": {
  5542. "__type__": "cc.Size",
  5543. "width": 77,
  5544. "height": 63
  5545. },
  5546. "_anchorPoint": {
  5547. "__type__": "cc.Vec2",
  5548. "x": 0.5,
  5549. "y": 0.5
  5550. },
  5551. "_id": ""
  5552. },
  5553. {
  5554. "__type__": "cc.SpriteComponent",
  5555. "_name": "",
  5556. "_objFlags": 0,
  5557. "node": {
  5558. "__id__": 172
  5559. },
  5560. "_enabled": true,
  5561. "_srcBlendFactor": 2,
  5562. "_dstBlendFactor": 4,
  5563. "_color": {
  5564. "__type__": "cc.Color",
  5565. "r": 255,
  5566. "g": 255,
  5567. "b": 255,
  5568. "a": 255
  5569. },
  5570. "_sharedMaterial": null,
  5571. "_spriteFrame": {
  5572. "__uuid__": "3e7472a8-3b7f-4f15-ba7a-2a4fe21ed515@f9941"
  5573. },
  5574. "_type": 1,
  5575. "_fillType": 0,
  5576. "_sizeMode": 1,
  5577. "_fillCenter": {
  5578. "__type__": "cc.Vec2",
  5579. "x": 0,
  5580. "y": 0
  5581. },
  5582. "_fillStart": 0,
  5583. "_fillRange": 0,
  5584. "_isTrimmedMode": true,
  5585. "_useGrayscale": false,
  5586. "_atlas": null,
  5587. "_id": ""
  5588. },
  5589. {
  5590. "__type__": "cc.ButtonComponent",
  5591. "_name": "",
  5592. "_objFlags": 0,
  5593. "node": {
  5594. "__id__": 172
  5595. },
  5596. "_enabled": true,
  5597. "clickEvents": [
  5598. {
  5599. "__id__": 184
  5600. }
  5601. ],
  5602. "_interactable": true,
  5603. "_transition": 2,
  5604. "_normalColor": {
  5605. "__type__": "cc.Color",
  5606. "r": 214,
  5607. "g": 214,
  5608. "b": 214,
  5609. "a": 255
  5610. },
  5611. "_hoverColor": {
  5612. "__type__": "cc.Color",
  5613. "r": 211,
  5614. "g": 211,
  5615. "b": 211,
  5616. "a": 255
  5617. },
  5618. "_pressColor": {
  5619. "__type__": "cc.Color",
  5620. "r": 255,
  5621. "g": 255,
  5622. "b": 255,
  5623. "a": 255
  5624. },
  5625. "_disabledColor": {
  5626. "__type__": "cc.Color",
  5627. "r": 124,
  5628. "g": 124,
  5629. "b": 124,
  5630. "a": 255
  5631. },
  5632. "_normalSprite": {
  5633. "__uuid__": "3e7472a8-3b7f-4f15-ba7a-2a4fe21ed515@f9941"
  5634. },
  5635. "_hoverSprite": {
  5636. "__uuid__": "3e7472a8-3b7f-4f15-ba7a-2a4fe21ed515@f9941"
  5637. },
  5638. "_pressedSprite": {
  5639. "__uuid__": "3e7472a8-3b7f-4f15-ba7a-2a4fe21ed515@f9941"
  5640. },
  5641. "_disabledSprite": {
  5642. "__uuid__": "3e7472a8-3b7f-4f15-ba7a-2a4fe21ed515@f9941"
  5643. },
  5644. "_duration": 0.1,
  5645. "_zoomScale": 1.2,
  5646. "_target": {
  5647. "__id__": 172
  5648. },
  5649. "_id": ""
  5650. },
  5651. {
  5652. "__type__": "cc.ClickEvent",
  5653. "target": {
  5654. "__id__": 1
  5655. },
  5656. "component": "",
  5657. "_componentId": "8fc93vzZ1xF6qpWn8Qq53+4",
  5658. "handler": "getAdGold",
  5659. "customEventData": ""
  5660. },
  5661. {
  5662. "__type__": "cc.PrefabInfo",
  5663. "root": {
  5664. "__id__": 1
  5665. },
  5666. "asset": {
  5667. "__id__": 0
  5668. },
  5669. "fileId": "7aq+nnJ8ZNPp7eEp20+xir",
  5670. "sync": false,
  5671. "_synced": {
  5672. "default": false,
  5673. "serializable": false
  5674. }
  5675. },
  5676. {
  5677. "__type__": "cc.Node",
  5678. "_name": "ButtonEnter4",
  5679. "_objFlags": 0,
  5680. "_parent": {
  5681. "__id__": 144
  5682. },
  5683. "_children": [
  5684. {
  5685. "__id__": 187
  5686. },
  5687. {
  5688. "__id__": 191
  5689. }
  5690. ],
  5691. "_active": true,
  5692. "_components": [
  5693. {
  5694. "__id__": 195
  5695. },
  5696. {
  5697. "__id__": 196
  5698. },
  5699. {
  5700. "__id__": 197
  5701. }
  5702. ],
  5703. "_prefab": {
  5704. "__id__": 199
  5705. },
  5706. "_lpos": {
  5707. "__type__": "cc.Vec3",
  5708. "x": 320,
  5709. "y": -313.074,
  5710. "z": 0
  5711. },
  5712. "_lrot": {
  5713. "__type__": "cc.Quat",
  5714. "x": 0,
  5715. "y": 0,
  5716. "z": 0,
  5717. "w": 1
  5718. },
  5719. "_lscale": {
  5720. "__type__": "cc.Vec3",
  5721. "x": 1,
  5722. "y": 1,
  5723. "z": 1
  5724. },
  5725. "_layer": 33554432,
  5726. "_euler": {
  5727. "__type__": "cc.Vec3",
  5728. "x": 0,
  5729. "y": 0,
  5730. "z": 0
  5731. },
  5732. "_id": ""
  5733. },
  5734. {
  5735. "__type__": "cc.Node",
  5736. "_name": "Label",
  5737. "_objFlags": 0,
  5738. "_parent": {
  5739. "__id__": 186
  5740. },
  5741. "_children": [],
  5742. "_active": true,
  5743. "_components": [
  5744. {
  5745. "__id__": 188
  5746. },
  5747. {
  5748. "__id__": 189
  5749. }
  5750. ],
  5751. "_prefab": {
  5752. "__id__": 190
  5753. },
  5754. "_lpos": {
  5755. "__type__": "cc.Vec3",
  5756. "x": -1.7530000000000001,
  5757. "y": -41.539999999999964,
  5758. "z": 0
  5759. },
  5760. "_lrot": {
  5761. "__type__": "cc.Quat",
  5762. "x": 0,
  5763. "y": 0,
  5764. "z": 0,
  5765. "w": 1
  5766. },
  5767. "_lscale": {
  5768. "__type__": "cc.Vec3",
  5769. "x": 1,
  5770. "y": 1,
  5771. "z": 1
  5772. },
  5773. "_layer": 33554432,
  5774. "_euler": {
  5775. "__type__": "cc.Vec3",
  5776. "x": 0,
  5777. "y": 0,
  5778. "z": 0
  5779. },
  5780. "_id": ""
  5781. },
  5782. {
  5783. "__type__": "cc.UITransformComponent",
  5784. "_name": "",
  5785. "_objFlags": 0,
  5786. "node": {
  5787. "__id__": 187
  5788. },
  5789. "_enabled": true,
  5790. "_priority": 0,
  5791. "_contentSize": {
  5792. "__type__": "cc.Size",
  5793. "width": 88,
  5794. "height": 50.4
  5795. },
  5796. "_anchorPoint": {
  5797. "__type__": "cc.Vec2",
  5798. "x": 0.5,
  5799. "y": 0.5
  5800. },
  5801. "_id": ""
  5802. },
  5803. {
  5804. "__type__": "cc.LabelComponent",
  5805. "_name": "",
  5806. "_objFlags": 0,
  5807. "node": {
  5808. "__id__": 187
  5809. },
  5810. "_enabled": true,
  5811. "_srcBlendFactor": 2,
  5812. "_dstBlendFactor": 4,
  5813. "_color": {
  5814. "__type__": "cc.Color",
  5815. "r": 255,
  5816. "g": 255,
  5817. "b": 255,
  5818. "a": 255
  5819. },
  5820. "_sharedMaterial": null,
  5821. "_useOriginalSize": true,
  5822. "_string": "金币兑换",
  5823. "_horizontalAlign": 1,
  5824. "_verticalAlign": 1,
  5825. "_actualFontSize": 22,
  5826. "_fontSize": 22,
  5827. "_fontFamily": "Arial",
  5828. "_lineHeight": 40,
  5829. "_overflow": 0,
  5830. "_enableWrapText": true,
  5831. "_font": null,
  5832. "_isSystemFontUsed": true,
  5833. "_isItalic": false,
  5834. "_isBold": false,
  5835. "_isUnderline": false,
  5836. "_cacheMode": 0,
  5837. "_id": ""
  5838. },
  5839. {
  5840. "__type__": "cc.PrefabInfo",
  5841. "root": {
  5842. "__id__": 1
  5843. },
  5844. "asset": {
  5845. "__id__": 0
  5846. },
  5847. "fileId": "c12ArxKwhDYL7/QwEPoKv2",
  5848. "sync": false,
  5849. "_synced": {
  5850. "default": false,
  5851. "serializable": false
  5852. }
  5853. },
  5854. {
  5855. "__type__": "cc.Node",
  5856. "_name": "ImgHongdian",
  5857. "_objFlags": 0,
  5858. "_parent": {
  5859. "__id__": 186
  5860. },
  5861. "_children": [],
  5862. "_active": true,
  5863. "_components": [
  5864. {
  5865. "__id__": 192
  5866. },
  5867. {
  5868. "__id__": 193
  5869. }
  5870. ],
  5871. "_prefab": {
  5872. "__id__": 194
  5873. },
  5874. "_lpos": {
  5875. "__type__": "cc.Vec3",
  5876. "x": 40,
  5877. "y": 40,
  5878. "z": 0
  5879. },
  5880. "_lrot": {
  5881. "__type__": "cc.Quat",
  5882. "x": 0,
  5883. "y": 0,
  5884. "z": 0,
  5885. "w": 1
  5886. },
  5887. "_lscale": {
  5888. "__type__": "cc.Vec3",
  5889. "x": 1,
  5890. "y": 1,
  5891. "z": 1
  5892. },
  5893. "_layer": 33554432,
  5894. "_euler": {
  5895. "__type__": "cc.Vec3",
  5896. "x": 0,
  5897. "y": 0,
  5898. "z": 0
  5899. },
  5900. "_id": ""
  5901. },
  5902. {
  5903. "__type__": "cc.UITransformComponent",
  5904. "_name": "",
  5905. "_objFlags": 0,
  5906. "node": {
  5907. "__id__": 191
  5908. },
  5909. "_enabled": true,
  5910. "_priority": 0,
  5911. "_contentSize": {
  5912. "__type__": "cc.Size",
  5913. "width": 22,
  5914. "height": 22
  5915. },
  5916. "_anchorPoint": {
  5917. "__type__": "cc.Vec2",
  5918. "x": 0.5,
  5919. "y": 0.5
  5920. },
  5921. "_id": ""
  5922. },
  5923. {
  5924. "__type__": "cc.SpriteComponent",
  5925. "_name": "",
  5926. "_objFlags": 0,
  5927. "node": {
  5928. "__id__": 191
  5929. },
  5930. "_enabled": true,
  5931. "_srcBlendFactor": 2,
  5932. "_dstBlendFactor": 4,
  5933. "_color": {
  5934. "__type__": "cc.Color",
  5935. "r": 255,
  5936. "g": 255,
  5937. "b": 255,
  5938. "a": 255
  5939. },
  5940. "_sharedMaterial": null,
  5941. "_spriteFrame": {
  5942. "__uuid__": "eb859167-03ea-460c-86cf-e157149f19f9@f9941"
  5943. },
  5944. "_type": 0,
  5945. "_fillType": 0,
  5946. "_sizeMode": 1,
  5947. "_fillCenter": {
  5948. "__type__": "cc.Vec2",
  5949. "x": 0,
  5950. "y": 0
  5951. },
  5952. "_fillStart": 0,
  5953. "_fillRange": 0,
  5954. "_isTrimmedMode": true,
  5955. "_useGrayscale": false,
  5956. "_atlas": null,
  5957. "_id": ""
  5958. },
  5959. {
  5960. "__type__": "cc.PrefabInfo",
  5961. "root": {
  5962. "__id__": 1
  5963. },
  5964. "asset": {
  5965. "__id__": 0
  5966. },
  5967. "fileId": "04WhYmwMRKX6L/+IO9Z3Ck",
  5968. "sync": false,
  5969. "_synced": {
  5970. "default": false,
  5971. "serializable": false
  5972. }
  5973. },
  5974. {
  5975. "__type__": "cc.UITransformComponent",
  5976. "_name": "",
  5977. "_objFlags": 0,
  5978. "node": {
  5979. "__id__": 186
  5980. },
  5981. "_enabled": true,
  5982. "_priority": 0,
  5983. "_contentSize": {
  5984. "__type__": "cc.Size",
  5985. "width": 82,
  5986. "height": 78
  5987. },
  5988. "_anchorPoint": {
  5989. "__type__": "cc.Vec2",
  5990. "x": 0.5,
  5991. "y": 0.5
  5992. },
  5993. "_id": ""
  5994. },
  5995. {
  5996. "__type__": "cc.SpriteComponent",
  5997. "_name": "",
  5998. "_objFlags": 0,
  5999. "node": {
  6000. "__id__": 186
  6001. },
  6002. "_enabled": true,
  6003. "_srcBlendFactor": 2,
  6004. "_dstBlendFactor": 4,
  6005. "_color": {
  6006. "__type__": "cc.Color",
  6007. "r": 255,
  6008. "g": 255,
  6009. "b": 255,
  6010. "a": 255
  6011. },
  6012. "_sharedMaterial": null,
  6013. "_spriteFrame": {
  6014. "__uuid__": "c4420b66-3232-41d6-a895-7c41ca5a8cda@f9941"
  6015. },
  6016. "_type": 1,
  6017. "_fillType": 0,
  6018. "_sizeMode": 1,
  6019. "_fillCenter": {
  6020. "__type__": "cc.Vec2",
  6021. "x": 0,
  6022. "y": 0
  6023. },
  6024. "_fillStart": 0,
  6025. "_fillRange": 0,
  6026. "_isTrimmedMode": true,
  6027. "_useGrayscale": false,
  6028. "_atlas": null,
  6029. "_id": ""
  6030. },
  6031. {
  6032. "__type__": "cc.ButtonComponent",
  6033. "_name": "",
  6034. "_objFlags": 0,
  6035. "node": {
  6036. "__id__": 186
  6037. },
  6038. "_enabled": true,
  6039. "clickEvents": [
  6040. {
  6041. "__id__": 198
  6042. }
  6043. ],
  6044. "_interactable": true,
  6045. "_transition": 2,
  6046. "_normalColor": {
  6047. "__type__": "cc.Color",
  6048. "r": 214,
  6049. "g": 214,
  6050. "b": 214,
  6051. "a": 255
  6052. },
  6053. "_hoverColor": {
  6054. "__type__": "cc.Color",
  6055. "r": 211,
  6056. "g": 211,
  6057. "b": 211,
  6058. "a": 255
  6059. },
  6060. "_pressColor": {
  6061. "__type__": "cc.Color",
  6062. "r": 255,
  6063. "g": 255,
  6064. "b": 255,
  6065. "a": 255
  6066. },
  6067. "_disabledColor": {
  6068. "__type__": "cc.Color",
  6069. "r": 124,
  6070. "g": 124,
  6071. "b": 124,
  6072. "a": 255
  6073. },
  6074. "_normalSprite": {
  6075. "__uuid__": "c4420b66-3232-41d6-a895-7c41ca5a8cda@f9941"
  6076. },
  6077. "_hoverSprite": {
  6078. "__uuid__": "c4420b66-3232-41d6-a895-7c41ca5a8cda@f9941"
  6079. },
  6080. "_pressedSprite": {
  6081. "__uuid__": "c4420b66-3232-41d6-a895-7c41ca5a8cda@f9941"
  6082. },
  6083. "_disabledSprite": {
  6084. "__uuid__": "c4420b66-3232-41d6-a895-7c41ca5a8cda@f9941"
  6085. },
  6086. "_duration": 0.1,
  6087. "_zoomScale": 1.2,
  6088. "_target": {
  6089. "__id__": 186
  6090. },
  6091. "_id": ""
  6092. },
  6093. {
  6094. "__type__": "cc.ClickEvent",
  6095. "target": {
  6096. "__id__": 1
  6097. },
  6098. "component": "",
  6099. "_componentId": "8fc93vzZ1xF6qpWn8Qq53+4",
  6100. "handler": "ExchangeButtonClickHandler",
  6101. "customEventData": ""
  6102. },
  6103. {
  6104. "__type__": "cc.PrefabInfo",
  6105. "root": {
  6106. "__id__": 1
  6107. },
  6108. "asset": {
  6109. "__id__": 0
  6110. },
  6111. "fileId": "ec6OKimpNE6bksOCvYPlHH",
  6112. "sync": false,
  6113. "_synced": {
  6114. "default": false,
  6115. "serializable": false
  6116. }
  6117. },
  6118. {
  6119. "__type__": "cc.UITransformComponent",
  6120. "_name": "EnterGroup<UITransformComponent>",
  6121. "_objFlags": 0,
  6122. "node": {
  6123. "__id__": 144
  6124. },
  6125. "_enabled": true,
  6126. "_priority": 0,
  6127. "_contentSize": {
  6128. "__type__": "cc.Size",
  6129. "width": 750,
  6130. "height": 112
  6131. },
  6132. "_anchorPoint": {
  6133. "__type__": "cc.Vec2",
  6134. "x": 0.5,
  6135. "y": 0.5
  6136. },
  6137. "_id": ""
  6138. },
  6139. {
  6140. "__type__": "cc.WidgetComponent",
  6141. "_name": "EnterGroup<WidgetComponent>",
  6142. "_objFlags": 0,
  6143. "node": {
  6144. "__id__": 144
  6145. },
  6146. "_enabled": true,
  6147. "_alignFlags": 41,
  6148. "_target": null,
  6149. "_left": 0,
  6150. "_right": 0,
  6151. "_top": 145.95100000000002,
  6152. "_bottom": 0,
  6153. "_horizontalCenter": 0,
  6154. "_verticalCenter": 0,
  6155. "_isAbsLeft": true,
  6156. "_isAbsRight": true,
  6157. "_isAbsTop": true,
  6158. "_isAbsBottom": true,
  6159. "_isAbsHorizontalCenter": true,
  6160. "_isAbsVerticalCenter": true,
  6161. "_originalWidth": 100,
  6162. "_originalHeight": 0,
  6163. "_alignMode": 2,
  6164. "_lockFlags": 0,
  6165. "_id": ""
  6166. },
  6167. {
  6168. "__type__": "cc.PrefabInfo",
  6169. "root": {
  6170. "__id__": 1
  6171. },
  6172. "asset": {
  6173. "__id__": 0
  6174. },
  6175. "fileId": "02UIbCL4lONI9txsGJYgJk",
  6176. "sync": false,
  6177. "_synced": {
  6178. "default": false,
  6179. "serializable": false
  6180. }
  6181. },
  6182. {
  6183. "__type__": "cc.Node",
  6184. "_name": "BottomGroup",
  6185. "_objFlags": 0,
  6186. "_parent": {
  6187. "__id__": 1
  6188. },
  6189. "_children": [
  6190. {
  6191. "__id__": 204
  6192. },
  6193. {
  6194. "__id__": 209
  6195. },
  6196. {
  6197. "__id__": 222
  6198. },
  6199. {
  6200. "__id__": 236
  6201. }
  6202. ],
  6203. "_active": true,
  6204. "_components": [
  6205. {
  6206. "__id__": 253
  6207. }
  6208. ],
  6209. "_prefab": {
  6210. "__id__": 254
  6211. },
  6212. "_lpos": {
  6213. "__type__": "cc.Vec3",
  6214. "x": 366.622,
  6215. "y": 700,
  6216. "z": 0
  6217. },
  6218. "_lrot": {
  6219. "__type__": "cc.Quat",
  6220. "x": 0,
  6221. "y": 0,
  6222. "z": 0,
  6223. "w": 1
  6224. },
  6225. "_lscale": {
  6226. "__type__": "cc.Vec3",
  6227. "x": 1,
  6228. "y": 1,
  6229. "z": 1
  6230. },
  6231. "_layer": 1073741824,
  6232. "_euler": {
  6233. "__type__": "cc.Vec3",
  6234. "x": 0,
  6235. "y": 0,
  6236. "z": 0
  6237. },
  6238. "_id": ""
  6239. },
  6240. {
  6241. "__type__": "cc.Node",
  6242. "_name": "ButtonSellGun",
  6243. "_objFlags": 0,
  6244. "_parent": {
  6245. "__id__": 203
  6246. },
  6247. "_children": [],
  6248. "_active": true,
  6249. "_components": [
  6250. {
  6251. "__id__": 205
  6252. },
  6253. {
  6254. "__id__": 206
  6255. },
  6256. {
  6257. "__id__": 207
  6258. }
  6259. ],
  6260. "_prefab": {
  6261. "__id__": 208
  6262. },
  6263. "_lpos": {
  6264. "__type__": "cc.Vec3",
  6265. "x": -309.912,
  6266. "y": -394.599,
  6267. "z": 0
  6268. },
  6269. "_lrot": {
  6270. "__type__": "cc.Quat",
  6271. "x": 0,
  6272. "y": 0,
  6273. "z": 0,
  6274. "w": 1
  6275. },
  6276. "_lscale": {
  6277. "__type__": "cc.Vec3",
  6278. "x": 1,
  6279. "y": 1,
  6280. "z": 1
  6281. },
  6282. "_layer": 33554432,
  6283. "_euler": {
  6284. "__type__": "cc.Vec3",
  6285. "x": 0,
  6286. "y": 0,
  6287. "z": 0
  6288. },
  6289. "_id": ""
  6290. },
  6291. {
  6292. "__type__": "cc.UITransformComponent",
  6293. "_name": "",
  6294. "_objFlags": 0,
  6295. "node": {
  6296. "__id__": 204
  6297. },
  6298. "_enabled": true,
  6299. "_priority": 0,
  6300. "_contentSize": {
  6301. "__type__": "cc.Size",
  6302. "width": 68,
  6303. "height": 100
  6304. },
  6305. "_anchorPoint": {
  6306. "__type__": "cc.Vec2",
  6307. "x": 0.5,
  6308. "y": 0.5
  6309. },
  6310. "_id": ""
  6311. },
  6312. {
  6313. "__type__": "cc.SpriteComponent",
  6314. "_name": "",
  6315. "_objFlags": 0,
  6316. "node": {
  6317. "__id__": 204
  6318. },
  6319. "_enabled": true,
  6320. "_srcBlendFactor": 2,
  6321. "_dstBlendFactor": 4,
  6322. "_color": {
  6323. "__type__": "cc.Color",
  6324. "r": 255,
  6325. "g": 255,
  6326. "b": 255,
  6327. "a": 255
  6328. },
  6329. "_sharedMaterial": null,
  6330. "_spriteFrame": {
  6331. "__uuid__": "2aec04a0-5456-4f9f-bd6e-b349eca90450@f9941"
  6332. },
  6333. "_type": 1,
  6334. "_fillType": 0,
  6335. "_sizeMode": 1,
  6336. "_fillCenter": {
  6337. "__type__": "cc.Vec2",
  6338. "x": 0,
  6339. "y": 0
  6340. },
  6341. "_fillStart": 0,
  6342. "_fillRange": 0,
  6343. "_isTrimmedMode": true,
  6344. "_useGrayscale": false,
  6345. "_atlas": null,
  6346. "_id": ""
  6347. },
  6348. {
  6349. "__type__": "cc.ButtonComponent",
  6350. "_name": "",
  6351. "_objFlags": 0,
  6352. "node": {
  6353. "__id__": 204
  6354. },
  6355. "_enabled": true,
  6356. "clickEvents": [],
  6357. "_interactable": true,
  6358. "_transition": 2,
  6359. "_normalColor": {
  6360. "__type__": "cc.Color",
  6361. "r": 214,
  6362. "g": 214,
  6363. "b": 214,
  6364. "a": 255
  6365. },
  6366. "_hoverColor": {
  6367. "__type__": "cc.Color",
  6368. "r": 211,
  6369. "g": 211,
  6370. "b": 211,
  6371. "a": 255
  6372. },
  6373. "_pressColor": {
  6374. "__type__": "cc.Color",
  6375. "r": 255,
  6376. "g": 255,
  6377. "b": 255,
  6378. "a": 255
  6379. },
  6380. "_disabledColor": {
  6381. "__type__": "cc.Color",
  6382. "r": 124,
  6383. "g": 124,
  6384. "b": 124,
  6385. "a": 255
  6386. },
  6387. "_normalSprite": {
  6388. "__uuid__": "2aec04a0-5456-4f9f-bd6e-b349eca90450@f9941"
  6389. },
  6390. "_hoverSprite": {
  6391. "__uuid__": "2aec04a0-5456-4f9f-bd6e-b349eca90450@f9941"
  6392. },
  6393. "_pressedSprite": {
  6394. "__uuid__": "2aec04a0-5456-4f9f-bd6e-b349eca90450@f9941"
  6395. },
  6396. "_disabledSprite": {
  6397. "__uuid__": "2aec04a0-5456-4f9f-bd6e-b349eca90450@f9941"
  6398. },
  6399. "_duration": 0.1,
  6400. "_zoomScale": 1.2,
  6401. "_target": {
  6402. "__id__": 204
  6403. },
  6404. "_id": ""
  6405. },
  6406. {
  6407. "__type__": "cc.PrefabInfo",
  6408. "root": {
  6409. "__id__": 1
  6410. },
  6411. "asset": {
  6412. "__id__": 0
  6413. },
  6414. "fileId": "c2SyojjppAR5oOrFEtmDZU",
  6415. "sync": false,
  6416. "_synced": {
  6417. "default": false,
  6418. "serializable": false
  6419. }
  6420. },
  6421. {
  6422. "__type__": "cc.Node",
  6423. "_name": "ButtonShop",
  6424. "_objFlags": 0,
  6425. "_parent": {
  6426. "__id__": 203
  6427. },
  6428. "_children": [
  6429. {
  6430. "__id__": 210
  6431. },
  6432. {
  6433. "__id__": 214
  6434. }
  6435. ],
  6436. "_active": true,
  6437. "_components": [
  6438. {
  6439. "__id__": 218
  6440. },
  6441. {
  6442. "__id__": 219
  6443. },
  6444. {
  6445. "__id__": 220
  6446. }
  6447. ],
  6448. "_prefab": {
  6449. "__id__": 221
  6450. },
  6451. "_lpos": {
  6452. "__type__": "cc.Vec3",
  6453. "x": 297.74800000000005,
  6454. "y": -396,
  6455. "z": 0
  6456. },
  6457. "_lrot": {
  6458. "__type__": "cc.Quat",
  6459. "x": 0,
  6460. "y": 0,
  6461. "z": 0,
  6462. "w": 1
  6463. },
  6464. "_lscale": {
  6465. "__type__": "cc.Vec3",
  6466. "x": 1,
  6467. "y": 1,
  6468. "z": 1
  6469. },
  6470. "_layer": 33554432,
  6471. "_euler": {
  6472. "__type__": "cc.Vec3",
  6473. "x": 0,
  6474. "y": 0,
  6475. "z": 0
  6476. },
  6477. "_id": ""
  6478. },
  6479. {
  6480. "__type__": "cc.Node",
  6481. "_name": "Sprite",
  6482. "_objFlags": 0,
  6483. "_parent": {
  6484. "__id__": 209
  6485. },
  6486. "_children": [],
  6487. "_active": true,
  6488. "_components": [
  6489. {
  6490. "__id__": 211
  6491. },
  6492. {
  6493. "__id__": 212
  6494. }
  6495. ],
  6496. "_prefab": {
  6497. "__id__": 213
  6498. },
  6499. "_lpos": {
  6500. "__type__": "cc.Vec3",
  6501. "x": 1,
  6502. "y": 4,
  6503. "z": 0
  6504. },
  6505. "_lrot": {
  6506. "__type__": "cc.Quat",
  6507. "x": 0,
  6508. "y": 0,
  6509. "z": 0,
  6510. "w": 1
  6511. },
  6512. "_lscale": {
  6513. "__type__": "cc.Vec3",
  6514. "x": 1,
  6515. "y": 1,
  6516. "z": 1
  6517. },
  6518. "_layer": 33554432,
  6519. "_euler": {
  6520. "__type__": "cc.Vec3",
  6521. "x": 0,
  6522. "y": 0,
  6523. "z": 0
  6524. },
  6525. "_id": ""
  6526. },
  6527. {
  6528. "__type__": "cc.UITransformComponent",
  6529. "_name": "",
  6530. "_objFlags": 0,
  6531. "node": {
  6532. "__id__": 210
  6533. },
  6534. "_enabled": true,
  6535. "_priority": 0,
  6536. "_contentSize": {
  6537. "__type__": "cc.Size",
  6538. "width": 61,
  6539. "height": 77
  6540. },
  6541. "_anchorPoint": {
  6542. "__type__": "cc.Vec2",
  6543. "x": 0.5,
  6544. "y": 0.5
  6545. },
  6546. "_id": ""
  6547. },
  6548. {
  6549. "__type__": "cc.SpriteComponent",
  6550. "_name": "",
  6551. "_objFlags": 0,
  6552. "node": {
  6553. "__id__": 210
  6554. },
  6555. "_enabled": true,
  6556. "_srcBlendFactor": 2,
  6557. "_dstBlendFactor": 4,
  6558. "_color": {
  6559. "__type__": "cc.Color",
  6560. "r": 255,
  6561. "g": 255,
  6562. "b": 255,
  6563. "a": 255
  6564. },
  6565. "_sharedMaterial": null,
  6566. "_spriteFrame": {
  6567. "__uuid__": "5798d97b-f3e7-4192-984d-150994cb912a@f9941"
  6568. },
  6569. "_type": 0,
  6570. "_fillType": 0,
  6571. "_sizeMode": 1,
  6572. "_fillCenter": {
  6573. "__type__": "cc.Vec2",
  6574. "x": 0,
  6575. "y": 0
  6576. },
  6577. "_fillStart": 0,
  6578. "_fillRange": 0,
  6579. "_isTrimmedMode": true,
  6580. "_useGrayscale": false,
  6581. "_atlas": null,
  6582. "_id": ""
  6583. },
  6584. {
  6585. "__type__": "cc.PrefabInfo",
  6586. "root": {
  6587. "__id__": 1
  6588. },
  6589. "asset": {
  6590. "__id__": 0
  6591. },
  6592. "fileId": "dduTpda5NJy7ZfRpoWY4xn",
  6593. "sync": false,
  6594. "_synced": {
  6595. "default": false,
  6596. "serializable": false
  6597. }
  6598. },
  6599. {
  6600. "__type__": "cc.Node",
  6601. "_name": "tips",
  6602. "_objFlags": 0,
  6603. "_parent": {
  6604. "__id__": 209
  6605. },
  6606. "_children": [],
  6607. "_active": false,
  6608. "_components": [
  6609. {
  6610. "__id__": 215
  6611. },
  6612. {
  6613. "__id__": 216
  6614. }
  6615. ],
  6616. "_prefab": {
  6617. "__id__": 217
  6618. },
  6619. "_lpos": {
  6620. "__type__": "cc.Vec3",
  6621. "x": 52,
  6622. "y": 47,
  6623. "z": 0
  6624. },
  6625. "_lrot": {
  6626. "__type__": "cc.Quat",
  6627. "x": 0,
  6628. "y": 0,
  6629. "z": 0,
  6630. "w": 1
  6631. },
  6632. "_lscale": {
  6633. "__type__": "cc.Vec3",
  6634. "x": 1,
  6635. "y": 1,
  6636. "z": 1
  6637. },
  6638. "_layer": 33554432,
  6639. "_euler": {
  6640. "__type__": "cc.Vec3",
  6641. "x": 0,
  6642. "y": 0,
  6643. "z": 0
  6644. },
  6645. "_id": ""
  6646. },
  6647. {
  6648. "__type__": "cc.UITransformComponent",
  6649. "_name": "",
  6650. "_objFlags": 0,
  6651. "node": {
  6652. "__id__": 214
  6653. },
  6654. "_enabled": true,
  6655. "_priority": 0,
  6656. "_contentSize": {
  6657. "__type__": "cc.Size",
  6658. "width": 22,
  6659. "height": 22
  6660. },
  6661. "_anchorPoint": {
  6662. "__type__": "cc.Vec2",
  6663. "x": 0.5,
  6664. "y": 0.5
  6665. },
  6666. "_id": ""
  6667. },
  6668. {
  6669. "__type__": "cc.SpriteComponent",
  6670. "_name": "",
  6671. "_objFlags": 0,
  6672. "node": {
  6673. "__id__": 214
  6674. },
  6675. "_enabled": true,
  6676. "_srcBlendFactor": 2,
  6677. "_dstBlendFactor": 4,
  6678. "_color": {
  6679. "__type__": "cc.Color",
  6680. "r": 255,
  6681. "g": 255,
  6682. "b": 255,
  6683. "a": 255
  6684. },
  6685. "_sharedMaterial": null,
  6686. "_spriteFrame": {
  6687. "__uuid__": "eb859167-03ea-460c-86cf-e157149f19f9@f9941"
  6688. },
  6689. "_type": 0,
  6690. "_fillType": 0,
  6691. "_sizeMode": 1,
  6692. "_fillCenter": {
  6693. "__type__": "cc.Vec2",
  6694. "x": 0,
  6695. "y": 0
  6696. },
  6697. "_fillStart": 0,
  6698. "_fillRange": 0,
  6699. "_isTrimmedMode": true,
  6700. "_useGrayscale": false,
  6701. "_atlas": null,
  6702. "_id": ""
  6703. },
  6704. {
  6705. "__type__": "cc.PrefabInfo",
  6706. "root": {
  6707. "__id__": 1
  6708. },
  6709. "asset": {
  6710. "__id__": 0
  6711. },
  6712. "fileId": "bdELvGiqNBOY5vUSd2XbJL",
  6713. "sync": false,
  6714. "_synced": {
  6715. "default": false,
  6716. "serializable": false
  6717. }
  6718. },
  6719. {
  6720. "__type__": "cc.UITransformComponent",
  6721. "_name": "",
  6722. "_objFlags": 0,
  6723. "node": {
  6724. "__id__": 209
  6725. },
  6726. "_enabled": true,
  6727. "_priority": 0,
  6728. "_contentSize": {
  6729. "__type__": "cc.Size",
  6730. "width": 114,
  6731. "height": 100
  6732. },
  6733. "_anchorPoint": {
  6734. "__type__": "cc.Vec2",
  6735. "x": 0.5,
  6736. "y": 0.5
  6737. },
  6738. "_id": ""
  6739. },
  6740. {
  6741. "__type__": "cc.SpriteComponent",
  6742. "_name": "",
  6743. "_objFlags": 0,
  6744. "node": {
  6745. "__id__": 209
  6746. },
  6747. "_enabled": true,
  6748. "_srcBlendFactor": 2,
  6749. "_dstBlendFactor": 4,
  6750. "_color": {
  6751. "__type__": "cc.Color",
  6752. "r": 255,
  6753. "g": 255,
  6754. "b": 255,
  6755. "a": 255
  6756. },
  6757. "_sharedMaterial": null,
  6758. "_spriteFrame": {
  6759. "__uuid__": "d68f4e58-069e-476c-8112-05eb7851b775@f9941"
  6760. },
  6761. "_type": 1,
  6762. "_fillType": 0,
  6763. "_sizeMode": 0,
  6764. "_fillCenter": {
  6765. "__type__": "cc.Vec2",
  6766. "x": 0,
  6767. "y": 0
  6768. },
  6769. "_fillStart": 0,
  6770. "_fillRange": 0,
  6771. "_isTrimmedMode": true,
  6772. "_useGrayscale": false,
  6773. "_atlas": null,
  6774. "_id": ""
  6775. },
  6776. {
  6777. "__type__": "cc.ButtonComponent",
  6778. "_name": "",
  6779. "_objFlags": 0,
  6780. "node": {
  6781. "__id__": 209
  6782. },
  6783. "_enabled": true,
  6784. "clickEvents": [],
  6785. "_interactable": true,
  6786. "_transition": 2,
  6787. "_normalColor": {
  6788. "__type__": "cc.Color",
  6789. "r": 214,
  6790. "g": 214,
  6791. "b": 214,
  6792. "a": 255
  6793. },
  6794. "_hoverColor": {
  6795. "__type__": "cc.Color",
  6796. "r": 211,
  6797. "g": 211,
  6798. "b": 211,
  6799. "a": 255
  6800. },
  6801. "_pressColor": {
  6802. "__type__": "cc.Color",
  6803. "r": 255,
  6804. "g": 255,
  6805. "b": 255,
  6806. "a": 255
  6807. },
  6808. "_disabledColor": {
  6809. "__type__": "cc.Color",
  6810. "r": 124,
  6811. "g": 124,
  6812. "b": 124,
  6813. "a": 255
  6814. },
  6815. "_normalSprite": {
  6816. "__uuid__": "d68f4e58-069e-476c-8112-05eb7851b775@f9941"
  6817. },
  6818. "_hoverSprite": {
  6819. "__uuid__": "d68f4e58-069e-476c-8112-05eb7851b775@f9941"
  6820. },
  6821. "_pressedSprite": {
  6822. "__uuid__": "d68f4e58-069e-476c-8112-05eb7851b775@f9941"
  6823. },
  6824. "_disabledSprite": {
  6825. "__uuid__": "d68f4e58-069e-476c-8112-05eb7851b775@f9941"
  6826. },
  6827. "_duration": 0.1,
  6828. "_zoomScale": 1.2,
  6829. "_target": {
  6830. "__id__": 209
  6831. },
  6832. "_id": ""
  6833. },
  6834. {
  6835. "__type__": "cc.PrefabInfo",
  6836. "root": {
  6837. "__id__": 1
  6838. },
  6839. "asset": {
  6840. "__id__": 0
  6841. },
  6842. "fileId": "83Mo20qkNMcJ2UlNbTsCOr",
  6843. "sync": false,
  6844. "_synced": {
  6845. "default": false,
  6846. "serializable": false
  6847. }
  6848. },
  6849. {
  6850. "__type__": "cc.Node",
  6851. "_name": "ButtonDouble",
  6852. "_objFlags": 0,
  6853. "_parent": {
  6854. "__id__": 203
  6855. },
  6856. "_children": [
  6857. {
  6858. "__id__": 223
  6859. },
  6860. {
  6861. "__id__": 227
  6862. }
  6863. ],
  6864. "_active": true,
  6865. "_components": [
  6866. {
  6867. "__id__": 231
  6868. },
  6869. {
  6870. "__id__": 232
  6871. },
  6872. {
  6873. "__id__": 233
  6874. }
  6875. ],
  6876. "_prefab": {
  6877. "__id__": 235
  6878. },
  6879. "_lpos": {
  6880. "__type__": "cc.Vec3",
  6881. "x": -182,
  6882. "y": -396,
  6883. "z": 0
  6884. },
  6885. "_lrot": {
  6886. "__type__": "cc.Quat",
  6887. "x": 0,
  6888. "y": 0,
  6889. "z": 0,
  6890. "w": 1
  6891. },
  6892. "_lscale": {
  6893. "__type__": "cc.Vec3",
  6894. "x": 1,
  6895. "y": 1,
  6896. "z": 1
  6897. },
  6898. "_layer": 33554432,
  6899. "_euler": {
  6900. "__type__": "cc.Vec3",
  6901. "x": 0,
  6902. "y": 0,
  6903. "z": 0
  6904. },
  6905. "_id": ""
  6906. },
  6907. {
  6908. "__type__": "cc.Node",
  6909. "_name": "Sprite",
  6910. "_objFlags": 0,
  6911. "_parent": {
  6912. "__id__": 222
  6913. },
  6914. "_children": [],
  6915. "_active": true,
  6916. "_components": [
  6917. {
  6918. "__id__": 224
  6919. },
  6920. {
  6921. "__id__": 225
  6922. }
  6923. ],
  6924. "_prefab": {
  6925. "__id__": 226
  6926. },
  6927. "_lpos": {
  6928. "__type__": "cc.Vec3",
  6929. "x": -3,
  6930. "y": 4,
  6931. "z": 0
  6932. },
  6933. "_lrot": {
  6934. "__type__": "cc.Quat",
  6935. "x": 0,
  6936. "y": 0,
  6937. "z": 0,
  6938. "w": 1
  6939. },
  6940. "_lscale": {
  6941. "__type__": "cc.Vec3",
  6942. "x": 1,
  6943. "y": 1,
  6944. "z": 1
  6945. },
  6946. "_layer": 33554432,
  6947. "_euler": {
  6948. "__type__": "cc.Vec3",
  6949. "x": 0,
  6950. "y": 0,
  6951. "z": 0
  6952. },
  6953. "_id": ""
  6954. },
  6955. {
  6956. "__type__": "cc.UITransformComponent",
  6957. "_name": "",
  6958. "_objFlags": 0,
  6959. "node": {
  6960. "__id__": 223
  6961. },
  6962. "_enabled": true,
  6963. "_priority": 0,
  6964. "_contentSize": {
  6965. "__type__": "cc.Size",
  6966. "width": 63,
  6967. "height": 76
  6968. },
  6969. "_anchorPoint": {
  6970. "__type__": "cc.Vec2",
  6971. "x": 0.5,
  6972. "y": 0.5
  6973. },
  6974. "_id": ""
  6975. },
  6976. {
  6977. "__type__": "cc.SpriteComponent",
  6978. "_name": "",
  6979. "_objFlags": 0,
  6980. "node": {
  6981. "__id__": 223
  6982. },
  6983. "_enabled": true,
  6984. "_srcBlendFactor": 2,
  6985. "_dstBlendFactor": 4,
  6986. "_color": {
  6987. "__type__": "cc.Color",
  6988. "r": 255,
  6989. "g": 255,
  6990. "b": 255,
  6991. "a": 255
  6992. },
  6993. "_sharedMaterial": null,
  6994. "_spriteFrame": {
  6995. "__uuid__": "cbe9554a-6840-42ce-830d-784cfb01a026@f9941"
  6996. },
  6997. "_type": 0,
  6998. "_fillType": 0,
  6999. "_sizeMode": 1,
  7000. "_fillCenter": {
  7001. "__type__": "cc.Vec2",
  7002. "x": 0,
  7003. "y": 0
  7004. },
  7005. "_fillStart": 0,
  7006. "_fillRange": 0,
  7007. "_isTrimmedMode": true,
  7008. "_useGrayscale": false,
  7009. "_atlas": null,
  7010. "_id": ""
  7011. },
  7012. {
  7013. "__type__": "cc.PrefabInfo",
  7014. "root": {
  7015. "__id__": 1
  7016. },
  7017. "asset": {
  7018. "__id__": 0
  7019. },
  7020. "fileId": "50kBeS50pJ6KRE92h76n77",
  7021. "sync": false,
  7022. "_synced": {
  7023. "default": false,
  7024. "serializable": false
  7025. }
  7026. },
  7027. {
  7028. "__type__": "cc.Node",
  7029. "_name": "tips",
  7030. "_objFlags": 0,
  7031. "_parent": {
  7032. "__id__": 222
  7033. },
  7034. "_children": [],
  7035. "_active": true,
  7036. "_components": [
  7037. {
  7038. "__id__": 228
  7039. },
  7040. {
  7041. "__id__": 229
  7042. }
  7043. ],
  7044. "_prefab": {
  7045. "__id__": 230
  7046. },
  7047. "_lpos": {
  7048. "__type__": "cc.Vec3",
  7049. "x": 38,
  7050. "y": 50,
  7051. "z": 0
  7052. },
  7053. "_lrot": {
  7054. "__type__": "cc.Quat",
  7055. "x": 0,
  7056. "y": 0,
  7057. "z": 0,
  7058. "w": 1
  7059. },
  7060. "_lscale": {
  7061. "__type__": "cc.Vec3",
  7062. "x": 1,
  7063. "y": 1,
  7064. "z": 1
  7065. },
  7066. "_layer": 33554432,
  7067. "_euler": {
  7068. "__type__": "cc.Vec3",
  7069. "x": 0,
  7070. "y": 0,
  7071. "z": 0
  7072. },
  7073. "_id": ""
  7074. },
  7075. {
  7076. "__type__": "cc.UITransformComponent",
  7077. "_name": "",
  7078. "_objFlags": 0,
  7079. "node": {
  7080. "__id__": 227
  7081. },
  7082. "_enabled": true,
  7083. "_priority": 0,
  7084. "_contentSize": {
  7085. "__type__": "cc.Size",
  7086. "width": 45,
  7087. "height": 26
  7088. },
  7089. "_anchorPoint": {
  7090. "__type__": "cc.Vec2",
  7091. "x": 0.5,
  7092. "y": 0.5
  7093. },
  7094. "_id": ""
  7095. },
  7096. {
  7097. "__type__": "cc.SpriteComponent",
  7098. "_name": "",
  7099. "_objFlags": 0,
  7100. "node": {
  7101. "__id__": 227
  7102. },
  7103. "_enabled": true,
  7104. "_srcBlendFactor": 2,
  7105. "_dstBlendFactor": 4,
  7106. "_color": {
  7107. "__type__": "cc.Color",
  7108. "r": 255,
  7109. "g": 255,
  7110. "b": 255,
  7111. "a": 255
  7112. },
  7113. "_sharedMaterial": null,
  7114. "_spriteFrame": {
  7115. "__uuid__": "497c0d61-436a-43e8-b675-8f0ee9729b00@f9941"
  7116. },
  7117. "_type": 0,
  7118. "_fillType": 0,
  7119. "_sizeMode": 1,
  7120. "_fillCenter": {
  7121. "__type__": "cc.Vec2",
  7122. "x": 0,
  7123. "y": 0
  7124. },
  7125. "_fillStart": 0,
  7126. "_fillRange": 0,
  7127. "_isTrimmedMode": true,
  7128. "_useGrayscale": false,
  7129. "_atlas": null,
  7130. "_id": ""
  7131. },
  7132. {
  7133. "__type__": "cc.PrefabInfo",
  7134. "root": {
  7135. "__id__": 1
  7136. },
  7137. "asset": {
  7138. "__id__": 0
  7139. },
  7140. "fileId": "45LEH3I0NI/57UmqjJJHuZ",
  7141. "sync": false,
  7142. "_synced": {
  7143. "default": false,
  7144. "serializable": false
  7145. }
  7146. },
  7147. {
  7148. "__type__": "cc.UITransformComponent",
  7149. "_name": "",
  7150. "_objFlags": 0,
  7151. "node": {
  7152. "__id__": 222
  7153. },
  7154. "_enabled": true,
  7155. "_priority": 0,
  7156. "_contentSize": {
  7157. "__type__": "cc.Size",
  7158. "width": 114,
  7159. "height": 100
  7160. },
  7161. "_anchorPoint": {
  7162. "__type__": "cc.Vec2",
  7163. "x": 0.5,
  7164. "y": 0.5
  7165. },
  7166. "_id": ""
  7167. },
  7168. {
  7169. "__type__": "cc.SpriteComponent",
  7170. "_name": "",
  7171. "_objFlags": 0,
  7172. "node": {
  7173. "__id__": 222
  7174. },
  7175. "_enabled": true,
  7176. "_srcBlendFactor": 2,
  7177. "_dstBlendFactor": 4,
  7178. "_color": {
  7179. "__type__": "cc.Color",
  7180. "r": 255,
  7181. "g": 255,
  7182. "b": 255,
  7183. "a": 255
  7184. },
  7185. "_sharedMaterial": null,
  7186. "_spriteFrame": {
  7187. "__uuid__": "d68f4e58-069e-476c-8112-05eb7851b775@f9941"
  7188. },
  7189. "_type": 1,
  7190. "_fillType": 0,
  7191. "_sizeMode": 0,
  7192. "_fillCenter": {
  7193. "__type__": "cc.Vec2",
  7194. "x": 0,
  7195. "y": 0
  7196. },
  7197. "_fillStart": 0,
  7198. "_fillRange": 0,
  7199. "_isTrimmedMode": true,
  7200. "_useGrayscale": false,
  7201. "_atlas": null,
  7202. "_id": ""
  7203. },
  7204. {
  7205. "__type__": "cc.ButtonComponent",
  7206. "_name": "",
  7207. "_objFlags": 0,
  7208. "node": {
  7209. "__id__": 222
  7210. },
  7211. "_enabled": true,
  7212. "clickEvents": [
  7213. {
  7214. "__id__": 234
  7215. }
  7216. ],
  7217. "_interactable": true,
  7218. "_transition": 2,
  7219. "_normalColor": {
  7220. "__type__": "cc.Color",
  7221. "r": 214,
  7222. "g": 214,
  7223. "b": 214,
  7224. "a": 255
  7225. },
  7226. "_hoverColor": {
  7227. "__type__": "cc.Color",
  7228. "r": 211,
  7229. "g": 211,
  7230. "b": 211,
  7231. "a": 255
  7232. },
  7233. "_pressColor": {
  7234. "__type__": "cc.Color",
  7235. "r": 255,
  7236. "g": 255,
  7237. "b": 255,
  7238. "a": 255
  7239. },
  7240. "_disabledColor": {
  7241. "__type__": "cc.Color",
  7242. "r": 124,
  7243. "g": 124,
  7244. "b": 124,
  7245. "a": 255
  7246. },
  7247. "_normalSprite": {
  7248. "__uuid__": "d68f4e58-069e-476c-8112-05eb7851b775@f9941"
  7249. },
  7250. "_hoverSprite": {
  7251. "__uuid__": "d68f4e58-069e-476c-8112-05eb7851b775@f9941"
  7252. },
  7253. "_pressedSprite": {
  7254. "__uuid__": "d68f4e58-069e-476c-8112-05eb7851b775@f9941"
  7255. },
  7256. "_disabledSprite": {
  7257. "__uuid__": "d68f4e58-069e-476c-8112-05eb7851b775@f9941"
  7258. },
  7259. "_duration": 0.1,
  7260. "_zoomScale": 1.2,
  7261. "_target": {
  7262. "__id__": 222
  7263. },
  7264. "_id": ""
  7265. },
  7266. {
  7267. "__type__": "cc.ClickEvent",
  7268. "target": {
  7269. "__id__": 1
  7270. },
  7271. "component": "",
  7272. "_componentId": "8fc93vzZ1xF6qpWn8Qq53+4",
  7273. "handler": "AccelerateButtonClickHandler",
  7274. "customEventData": ""
  7275. },
  7276. {
  7277. "__type__": "cc.PrefabInfo",
  7278. "root": {
  7279. "__id__": 1
  7280. },
  7281. "asset": {
  7282. "__id__": 0
  7283. },
  7284. "fileId": "ffTr3WrZVPgoqJ+KSB4CNq",
  7285. "sync": false,
  7286. "_synced": {
  7287. "default": false,
  7288. "serializable": false
  7289. }
  7290. },
  7291. {
  7292. "__type__": "cc.Node",
  7293. "_name": "ButtonBuyGun",
  7294. "_objFlags": 0,
  7295. "_parent": {
  7296. "__id__": 203
  7297. },
  7298. "_children": [
  7299. {
  7300. "__id__": 237
  7301. },
  7302. {
  7303. "__id__": 241
  7304. },
  7305. {
  7306. "__id__": 245
  7307. }
  7308. ],
  7309. "_active": true,
  7310. "_components": [
  7311. {
  7312. "__id__": 249
  7313. },
  7314. {
  7315. "__id__": 250
  7316. },
  7317. {
  7318. "__id__": 251
  7319. }
  7320. ],
  7321. "_prefab": {
  7322. "__id__": 252
  7323. },
  7324. "_lpos": {
  7325. "__type__": "cc.Vec3",
  7326. "x": 59,
  7327. "y": -396,
  7328. "z": 0
  7329. },
  7330. "_lrot": {
  7331. "__type__": "cc.Quat",
  7332. "x": 0,
  7333. "y": 0,
  7334. "z": 0,
  7335. "w": 1
  7336. },
  7337. "_lscale": {
  7338. "__type__": "cc.Vec3",
  7339. "x": 1,
  7340. "y": 1,
  7341. "z": 1
  7342. },
  7343. "_layer": 33554432,
  7344. "_euler": {
  7345. "__type__": "cc.Vec3",
  7346. "x": 0,
  7347. "y": 0,
  7348. "z": 0
  7349. },
  7350. "_id": ""
  7351. },
  7352. {
  7353. "__type__": "cc.Node",
  7354. "_name": "Sprite",
  7355. "_objFlags": 0,
  7356. "_parent": {
  7357. "__id__": 236
  7358. },
  7359. "_children": [],
  7360. "_active": true,
  7361. "_components": [
  7362. {
  7363. "__id__": 238
  7364. },
  7365. {
  7366. "__id__": 239
  7367. }
  7368. ],
  7369. "_prefab": {
  7370. "__id__": 240
  7371. },
  7372. "_lpos": {
  7373. "__type__": "cc.Vec3",
  7374. "x": -95,
  7375. "y": -13,
  7376. "z": 0
  7377. },
  7378. "_lrot": {
  7379. "__type__": "cc.Quat",
  7380. "x": 0,
  7381. "y": 0,
  7382. "z": 0,
  7383. "w": 1
  7384. },
  7385. "_lscale": {
  7386. "__type__": "cc.Vec3",
  7387. "x": 1,
  7388. "y": 1,
  7389. "z": 1
  7390. },
  7391. "_layer": 33554432,
  7392. "_euler": {
  7393. "__type__": "cc.Vec3",
  7394. "x": 0,
  7395. "y": 0,
  7396. "z": 0
  7397. },
  7398. "_id": ""
  7399. },
  7400. {
  7401. "__type__": "cc.UITransformComponent",
  7402. "_name": "",
  7403. "_objFlags": 0,
  7404. "node": {
  7405. "__id__": 237
  7406. },
  7407. "_enabled": true,
  7408. "_priority": 0,
  7409. "_contentSize": {
  7410. "__type__": "cc.Size",
  7411. "width": 50,
  7412. "height": 49
  7413. },
  7414. "_anchorPoint": {
  7415. "__type__": "cc.Vec2",
  7416. "x": 0.5,
  7417. "y": 0.5
  7418. },
  7419. "_id": ""
  7420. },
  7421. {
  7422. "__type__": "cc.SpriteComponent",
  7423. "_name": "",
  7424. "_objFlags": 0,
  7425. "node": {
  7426. "__id__": 237
  7427. },
  7428. "_enabled": true,
  7429. "_srcBlendFactor": 2,
  7430. "_dstBlendFactor": 4,
  7431. "_color": {
  7432. "__type__": "cc.Color",
  7433. "r": 255,
  7434. "g": 255,
  7435. "b": 255,
  7436. "a": 255
  7437. },
  7438. "_sharedMaterial": null,
  7439. "_spriteFrame": {
  7440. "__uuid__": "0b44fc8c-d664-46d8-bddf-1514caec8e51@f9941"
  7441. },
  7442. "_type": 0,
  7443. "_fillType": 0,
  7444. "_sizeMode": 1,
  7445. "_fillCenter": {
  7446. "__type__": "cc.Vec2",
  7447. "x": 0,
  7448. "y": 0
  7449. },
  7450. "_fillStart": 0,
  7451. "_fillRange": 0,
  7452. "_isTrimmedMode": true,
  7453. "_useGrayscale": false,
  7454. "_atlas": null,
  7455. "_id": ""
  7456. },
  7457. {
  7458. "__type__": "cc.PrefabInfo",
  7459. "root": {
  7460. "__id__": 1
  7461. },
  7462. "asset": {
  7463. "__id__": 0
  7464. },
  7465. "fileId": "c3GqGJbtRL55EMoS/E1s2q",
  7466. "sync": false,
  7467. "_synced": {
  7468. "default": false,
  7469. "serializable": false
  7470. }
  7471. },
  7472. {
  7473. "__type__": "cc.Node",
  7474. "_name": "PriceLabel",
  7475. "_objFlags": 0,
  7476. "_parent": {
  7477. "__id__": 236
  7478. },
  7479. "_children": [],
  7480. "_active": true,
  7481. "_components": [
  7482. {
  7483. "__id__": 242
  7484. },
  7485. {
  7486. "__id__": 243
  7487. }
  7488. ],
  7489. "_prefab": {
  7490. "__id__": 244
  7491. },
  7492. "_lpos": {
  7493. "__type__": "cc.Vec3",
  7494. "x": 15.823,
  7495. "y": -23,
  7496. "z": 0
  7497. },
  7498. "_lrot": {
  7499. "__type__": "cc.Quat",
  7500. "x": 0,
  7501. "y": 0,
  7502. "z": 0,
  7503. "w": 1
  7504. },
  7505. "_lscale": {
  7506. "__type__": "cc.Vec3",
  7507. "x": 1,
  7508. "y": 1,
  7509. "z": 1
  7510. },
  7511. "_layer": 33554432,
  7512. "_euler": {
  7513. "__type__": "cc.Vec3",
  7514. "x": 0,
  7515. "y": 0,
  7516. "z": 0
  7517. },
  7518. "_id": ""
  7519. },
  7520. {
  7521. "__type__": "cc.UITransformComponent",
  7522. "_name": "",
  7523. "_objFlags": 0,
  7524. "node": {
  7525. "__id__": 241
  7526. },
  7527. "_enabled": true,
  7528. "_priority": 0,
  7529. "_contentSize": {
  7530. "__type__": "cc.Size",
  7531. "width": 60.06,
  7532. "height": 50.4
  7533. },
  7534. "_anchorPoint": {
  7535. "__type__": "cc.Vec2",
  7536. "x": 0.5,
  7537. "y": 0.5
  7538. },
  7539. "_id": ""
  7540. },
  7541. {
  7542. "__type__": "cc.LabelComponent",
  7543. "_name": "",
  7544. "_objFlags": 0,
  7545. "node": {
  7546. "__id__": 241
  7547. },
  7548. "_enabled": true,
  7549. "_srcBlendFactor": 2,
  7550. "_dstBlendFactor": 4,
  7551. "_color": {
  7552. "__type__": "cc.Color",
  7553. "r": 255,
  7554. "g": 255,
  7555. "b": 255,
  7556. "a": 255
  7557. },
  7558. "_sharedMaterial": null,
  7559. "_useOriginalSize": true,
  7560. "_string": "100",
  7561. "_horizontalAlign": 1,
  7562. "_verticalAlign": 1,
  7563. "_actualFontSize": 36,
  7564. "_fontSize": 36,
  7565. "_fontFamily": "Arial",
  7566. "_lineHeight": 40,
  7567. "_overflow": 0,
  7568. "_enableWrapText": true,
  7569. "_font": null,
  7570. "_isSystemFontUsed": true,
  7571. "_isItalic": false,
  7572. "_isBold": false,
  7573. "_isUnderline": false,
  7574. "_cacheMode": 0,
  7575. "_id": ""
  7576. },
  7577. {
  7578. "__type__": "cc.PrefabInfo",
  7579. "root": {
  7580. "__id__": 1
  7581. },
  7582. "asset": {
  7583. "__id__": 0
  7584. },
  7585. "fileId": "7a32/3V0hAvLl1IsqUvmfr",
  7586. "sync": false,
  7587. "_synced": {
  7588. "default": false,
  7589. "serializable": false
  7590. }
  7591. },
  7592. {
  7593. "__type__": "cc.Node",
  7594. "_name": "GunIcon",
  7595. "_objFlags": 0,
  7596. "_parent": {
  7597. "__id__": 236
  7598. },
  7599. "_children": [],
  7600. "_active": true,
  7601. "_components": [
  7602. {
  7603. "__id__": 246
  7604. },
  7605. {
  7606. "__id__": 247
  7607. }
  7608. ],
  7609. "_prefab": {
  7610. "__id__": 248
  7611. },
  7612. "_lpos": {
  7613. "__type__": "cc.Vec3",
  7614. "x": 0,
  7615. "y": 22.341,
  7616. "z": 0
  7617. },
  7618. "_lrot": {
  7619. "__type__": "cc.Quat",
  7620. "x": 0,
  7621. "y": 0,
  7622. "z": 0,
  7623. "w": 1
  7624. },
  7625. "_lscale": {
  7626. "__type__": "cc.Vec3",
  7627. "x": 1,
  7628. "y": 1,
  7629. "z": 1
  7630. },
  7631. "_layer": 33554432,
  7632. "_euler": {
  7633. "__type__": "cc.Vec3",
  7634. "x": 0,
  7635. "y": 0,
  7636. "z": 0
  7637. },
  7638. "_id": ""
  7639. },
  7640. {
  7641. "__type__": "cc.UITransformComponent",
  7642. "_name": "",
  7643. "_objFlags": 0,
  7644. "node": {
  7645. "__id__": 245
  7646. },
  7647. "_enabled": true,
  7648. "_priority": 0,
  7649. "_contentSize": {
  7650. "__type__": "cc.Size",
  7651. "width": 40,
  7652. "height": 36
  7653. },
  7654. "_anchorPoint": {
  7655. "__type__": "cc.Vec2",
  7656. "x": 0.5,
  7657. "y": 0.5
  7658. },
  7659. "_id": ""
  7660. },
  7661. {
  7662. "__type__": "cc.SpriteComponent",
  7663. "_name": "",
  7664. "_objFlags": 0,
  7665. "node": {
  7666. "__id__": 245
  7667. },
  7668. "_enabled": true,
  7669. "_srcBlendFactor": 2,
  7670. "_dstBlendFactor": 4,
  7671. "_color": {
  7672. "__type__": "cc.Color",
  7673. "r": 255,
  7674. "g": 255,
  7675. "b": 255,
  7676. "a": 255
  7677. },
  7678. "_sharedMaterial": null,
  7679. "_spriteFrame": {
  7680. "__uuid__": "57520716-48c8-4a19-8acf-41c9f8777fb0@f9941"
  7681. },
  7682. "_type": 0,
  7683. "_fillType": 0,
  7684. "_sizeMode": 1,
  7685. "_fillCenter": {
  7686. "__type__": "cc.Vec2",
  7687. "x": 0,
  7688. "y": 0
  7689. },
  7690. "_fillStart": 0,
  7691. "_fillRange": 0,
  7692. "_isTrimmedMode": true,
  7693. "_useGrayscale": false,
  7694. "_atlas": null,
  7695. "_id": ""
  7696. },
  7697. {
  7698. "__type__": "cc.PrefabInfo",
  7699. "root": {
  7700. "__id__": 1
  7701. },
  7702. "asset": {
  7703. "__id__": 0
  7704. },
  7705. "fileId": "c0/SDBdAlH36zJ8l2cqR1n",
  7706. "sync": false,
  7707. "_synced": {
  7708. "default": false,
  7709. "serializable": false
  7710. }
  7711. },
  7712. {
  7713. "__type__": "cc.UITransformComponent",
  7714. "_name": "",
  7715. "_objFlags": 0,
  7716. "node": {
  7717. "__id__": 236
  7718. },
  7719. "_enabled": true,
  7720. "_priority": 0,
  7721. "_contentSize": {
  7722. "__type__": "cc.Size",
  7723. "width": 332,
  7724. "height": 100
  7725. },
  7726. "_anchorPoint": {
  7727. "__type__": "cc.Vec2",
  7728. "x": 0.5,
  7729. "y": 0.5
  7730. },
  7731. "_id": ""
  7732. },
  7733. {
  7734. "__type__": "cc.SpriteComponent",
  7735. "_name": "",
  7736. "_objFlags": 0,
  7737. "node": {
  7738. "__id__": 236
  7739. },
  7740. "_enabled": true,
  7741. "_srcBlendFactor": 2,
  7742. "_dstBlendFactor": 4,
  7743. "_color": {
  7744. "__type__": "cc.Color",
  7745. "r": 255,
  7746. "g": 255,
  7747. "b": 255,
  7748. "a": 255
  7749. },
  7750. "_sharedMaterial": null,
  7751. "_spriteFrame": {
  7752. "__uuid__": "d68f4e58-069e-476c-8112-05eb7851b775@f9941"
  7753. },
  7754. "_type": 1,
  7755. "_fillType": 0,
  7756. "_sizeMode": 0,
  7757. "_fillCenter": {
  7758. "__type__": "cc.Vec2",
  7759. "x": 0,
  7760. "y": 0
  7761. },
  7762. "_fillStart": 0,
  7763. "_fillRange": 0,
  7764. "_isTrimmedMode": true,
  7765. "_useGrayscale": false,
  7766. "_atlas": null,
  7767. "_id": ""
  7768. },
  7769. {
  7770. "__type__": "cc.ButtonComponent",
  7771. "_name": "",
  7772. "_objFlags": 0,
  7773. "node": {
  7774. "__id__": 236
  7775. },
  7776. "_enabled": true,
  7777. "clickEvents": [],
  7778. "_interactable": true,
  7779. "_transition": 2,
  7780. "_normalColor": {
  7781. "__type__": "cc.Color",
  7782. "r": 214,
  7783. "g": 214,
  7784. "b": 214,
  7785. "a": 255
  7786. },
  7787. "_hoverColor": {
  7788. "__type__": "cc.Color",
  7789. "r": 211,
  7790. "g": 211,
  7791. "b": 211,
  7792. "a": 255
  7793. },
  7794. "_pressColor": {
  7795. "__type__": "cc.Color",
  7796. "r": 255,
  7797. "g": 255,
  7798. "b": 255,
  7799. "a": 255
  7800. },
  7801. "_disabledColor": {
  7802. "__type__": "cc.Color",
  7803. "r": 124,
  7804. "g": 124,
  7805. "b": 124,
  7806. "a": 255
  7807. },
  7808. "_normalSprite": {
  7809. "__uuid__": "d68f4e58-069e-476c-8112-05eb7851b775@f9941"
  7810. },
  7811. "_hoverSprite": {
  7812. "__uuid__": "d68f4e58-069e-476c-8112-05eb7851b775@f9941"
  7813. },
  7814. "_pressedSprite": {
  7815. "__uuid__": "d68f4e58-069e-476c-8112-05eb7851b775@f9941"
  7816. },
  7817. "_disabledSprite": {
  7818. "__uuid__": "d68f4e58-069e-476c-8112-05eb7851b775@f9941"
  7819. },
  7820. "_duration": 0.1,
  7821. "_zoomScale": 1.2,
  7822. "_target": {
  7823. "__id__": 236
  7824. },
  7825. "_id": ""
  7826. },
  7827. {
  7828. "__type__": "cc.PrefabInfo",
  7829. "root": {
  7830. "__id__": 1
  7831. },
  7832. "asset": {
  7833. "__id__": 0
  7834. },
  7835. "fileId": "08p1uEfttJtquF+ExDmCbJ",
  7836. "sync": false,
  7837. "_synced": {
  7838. "default": false,
  7839. "serializable": false
  7840. }
  7841. },
  7842. {
  7843. "__type__": "cc.UITransformComponent",
  7844. "_name": "BottomGroup<UITransformComponent>",
  7845. "_objFlags": 0,
  7846. "node": {
  7847. "__id__": 203
  7848. },
  7849. "_enabled": true,
  7850. "_priority": 0,
  7851. "_contentSize": {
  7852. "__type__": "cc.Size",
  7853. "width": 100,
  7854. "height": 100
  7855. },
  7856. "_anchorPoint": {
  7857. "__type__": "cc.Vec2",
  7858. "x": 0.5,
  7859. "y": 0.5
  7860. },
  7861. "_id": ""
  7862. },
  7863. {
  7864. "__type__": "cc.PrefabInfo",
  7865. "root": {
  7866. "__id__": 1
  7867. },
  7868. "asset": {
  7869. "__id__": 0
  7870. },
  7871. "fileId": "e0q1J/UwpDBLKsnYkMysNB",
  7872. "sync": false,
  7873. "_synced": {
  7874. "default": false,
  7875. "serializable": false
  7876. }
  7877. },
  7878. {
  7879. "__type__": "cc.Node",
  7880. "_name": "DragLayer",
  7881. "_objFlags": 0,
  7882. "_parent": {
  7883. "__id__": 1
  7884. },
  7885. "_children": [
  7886. {
  7887. "__id__": 256
  7888. }
  7889. ],
  7890. "_active": true,
  7891. "_components": [
  7892. {
  7893. "__id__": 260
  7894. },
  7895. {
  7896. "__id__": 261
  7897. }
  7898. ],
  7899. "_prefab": {
  7900. "__id__": 262
  7901. },
  7902. "_lpos": {
  7903. "__type__": "cc.Vec3",
  7904. "x": 0,
  7905. "y": 0,
  7906. "z": 0
  7907. },
  7908. "_lrot": {
  7909. "__type__": "cc.Quat",
  7910. "x": 0,
  7911. "y": 0,
  7912. "z": 0,
  7913. "w": 1
  7914. },
  7915. "_lscale": {
  7916. "__type__": "cc.Vec3",
  7917. "x": 1,
  7918. "y": 1,
  7919. "z": 1
  7920. },
  7921. "_layer": 1073741824,
  7922. "_euler": {
  7923. "__type__": "cc.Vec3",
  7924. "x": 0,
  7925. "y": 0,
  7926. "z": 0
  7927. },
  7928. "_id": ""
  7929. },
  7930. {
  7931. "__type__": "cc.Node",
  7932. "_name": "WeaponIcon",
  7933. "_objFlags": 0,
  7934. "_parent": {
  7935. "__id__": 255
  7936. },
  7937. "_children": [],
  7938. "_active": true,
  7939. "_components": [
  7940. {
  7941. "__id__": 257
  7942. },
  7943. {
  7944. "__id__": 258
  7945. }
  7946. ],
  7947. "_prefab": {
  7948. "__id__": 259
  7949. },
  7950. "_lpos": {
  7951. "__type__": "cc.Vec3",
  7952. "x": 0,
  7953. "y": 0,
  7954. "z": 0
  7955. },
  7956. "_lrot": {
  7957. "__type__": "cc.Quat",
  7958. "x": 0,
  7959. "y": 0,
  7960. "z": 0,
  7961. "w": 1
  7962. },
  7963. "_lscale": {
  7964. "__type__": "cc.Vec3",
  7965. "x": 1,
  7966. "y": 1,
  7967. "z": 1
  7968. },
  7969. "_layer": 33554432,
  7970. "_euler": {
  7971. "__type__": "cc.Vec3",
  7972. "x": 0,
  7973. "y": 0,
  7974. "z": 0
  7975. },
  7976. "_id": ""
  7977. },
  7978. {
  7979. "__type__": "cc.UITransformComponent",
  7980. "_name": "",
  7981. "_objFlags": 0,
  7982. "node": {
  7983. "__id__": 256
  7984. },
  7985. "_enabled": true,
  7986. "_priority": 0,
  7987. "_contentSize": {
  7988. "__type__": "cc.Size",
  7989. "width": 40,
  7990. "height": 36
  7991. },
  7992. "_anchorPoint": {
  7993. "__type__": "cc.Vec2",
  7994. "x": 0.5,
  7995. "y": 0.5
  7996. },
  7997. "_id": ""
  7998. },
  7999. {
  8000. "__type__": "cc.SpriteComponent",
  8001. "_name": "",
  8002. "_objFlags": 0,
  8003. "node": {
  8004. "__id__": 256
  8005. },
  8006. "_enabled": true,
  8007. "_srcBlendFactor": 2,
  8008. "_dstBlendFactor": 4,
  8009. "_color": {
  8010. "__type__": "cc.Color",
  8011. "r": 255,
  8012. "g": 255,
  8013. "b": 255,
  8014. "a": 255
  8015. },
  8016. "_sharedMaterial": null,
  8017. "_spriteFrame": {
  8018. "__uuid__": "57520716-48c8-4a19-8acf-41c9f8777fb0@f9941"
  8019. },
  8020. "_type": 0,
  8021. "_fillType": 0,
  8022. "_sizeMode": 1,
  8023. "_fillCenter": {
  8024. "__type__": "cc.Vec2",
  8025. "x": 0,
  8026. "y": 0
  8027. },
  8028. "_fillStart": 0,
  8029. "_fillRange": 0,
  8030. "_isTrimmedMode": true,
  8031. "_useGrayscale": false,
  8032. "_atlas": null,
  8033. "_id": ""
  8034. },
  8035. {
  8036. "__type__": "cc.PrefabInfo",
  8037. "root": {
  8038. "__id__": 1
  8039. },
  8040. "asset": {
  8041. "__id__": 0
  8042. },
  8043. "fileId": "f0gxMGQ+tAs6VnYHt3THDz",
  8044. "sync": false,
  8045. "_synced": {
  8046. "default": false,
  8047. "serializable": false
  8048. }
  8049. },
  8050. {
  8051. "__type__": "cc.UITransformComponent",
  8052. "_name": "DragLayer<UITransformComponent>",
  8053. "_objFlags": 0,
  8054. "node": {
  8055. "__id__": 255
  8056. },
  8057. "_enabled": true,
  8058. "_priority": 0,
  8059. "_contentSize": {
  8060. "__type__": "cc.Size",
  8061. "width": 750,
  8062. "height": 1334
  8063. },
  8064. "_anchorPoint": {
  8065. "__type__": "cc.Vec2",
  8066. "x": 0,
  8067. "y": 0
  8068. },
  8069. "_id": ""
  8070. },
  8071. {
  8072. "__type__": "cc.WidgetComponent",
  8073. "_name": "DragLayer<WidgetComponent>",
  8074. "_objFlags": 0,
  8075. "node": {
  8076. "__id__": 255
  8077. },
  8078. "_enabled": true,
  8079. "_alignFlags": 45,
  8080. "_target": null,
  8081. "_left": 0,
  8082. "_right": 0,
  8083. "_top": 0,
  8084. "_bottom": 0,
  8085. "_horizontalCenter": 0,
  8086. "_verticalCenter": 0,
  8087. "_isAbsLeft": true,
  8088. "_isAbsRight": true,
  8089. "_isAbsTop": true,
  8090. "_isAbsBottom": true,
  8091. "_isAbsHorizontalCenter": true,
  8092. "_isAbsVerticalCenter": true,
  8093. "_originalWidth": 100,
  8094. "_originalHeight": 100,
  8095. "_alignMode": 2,
  8096. "_lockFlags": 0,
  8097. "_id": ""
  8098. },
  8099. {
  8100. "__type__": "cc.PrefabInfo",
  8101. "root": {
  8102. "__id__": 1
  8103. },
  8104. "asset": {
  8105. "__id__": 0
  8106. },
  8107. "fileId": "1fUaXPI/dEQZtqV4YDubOI",
  8108. "sync": false,
  8109. "_synced": {
  8110. "default": false,
  8111. "serializable": false
  8112. }
  8113. },
  8114. {
  8115. "__type__": "cc.Node",
  8116. "_name": "Design",
  8117. "_objFlags": 0,
  8118. "_parent": {
  8119. "__id__": 1
  8120. },
  8121. "_children": [],
  8122. "_active": false,
  8123. "_components": [
  8124. {
  8125. "__id__": 264
  8126. },
  8127. {
  8128. "__id__": 265
  8129. },
  8130. {
  8131. "__id__": 266
  8132. }
  8133. ],
  8134. "_prefab": {
  8135. "__id__": 267
  8136. },
  8137. "_lpos": {
  8138. "__type__": "cc.Vec3",
  8139. "x": 375,
  8140. "y": 667,
  8141. "z": 0
  8142. },
  8143. "_lrot": {
  8144. "__type__": "cc.Quat",
  8145. "x": 0,
  8146. "y": 0,
  8147. "z": 0,
  8148. "w": 1
  8149. },
  8150. "_lscale": {
  8151. "__type__": "cc.Vec3",
  8152. "x": 1,
  8153. "y": 1,
  8154. "z": 1
  8155. },
  8156. "_layer": 33554432,
  8157. "_euler": {
  8158. "__type__": "cc.Vec3",
  8159. "x": 0,
  8160. "y": 0,
  8161. "z": 0
  8162. },
  8163. "_id": ""
  8164. },
  8165. {
  8166. "__type__": "cc.UITransformComponent",
  8167. "_name": "Design<UITransformComponent>",
  8168. "_objFlags": 0,
  8169. "node": {
  8170. "__id__": 263
  8171. },
  8172. "_enabled": true,
  8173. "_priority": 0,
  8174. "_contentSize": {
  8175. "__type__": "cc.Size",
  8176. "width": 750,
  8177. "height": 1334
  8178. },
  8179. "_anchorPoint": {
  8180. "__type__": "cc.Vec2",
  8181. "x": 0.5,
  8182. "y": 0.5
  8183. },
  8184. "_id": ""
  8185. },
  8186. {
  8187. "__type__": "cc.SpriteComponent",
  8188. "_name": "Design<SpriteComponent>",
  8189. "_objFlags": 0,
  8190. "node": {
  8191. "__id__": 263
  8192. },
  8193. "_enabled": true,
  8194. "_srcBlendFactor": 2,
  8195. "_dstBlendFactor": 4,
  8196. "_color": {
  8197. "__type__": "cc.Color",
  8198. "r": 255,
  8199. "g": 255,
  8200. "b": 255,
  8201. "a": 255
  8202. },
  8203. "_sharedMaterial": null,
  8204. "_spriteFrame": {
  8205. "__uuid__": "a4fbc0b5-a20c-4786-8af7-7d8d67f71b28@f9941"
  8206. },
  8207. "_type": 0,
  8208. "_fillType": 0,
  8209. "_sizeMode": 1,
  8210. "_fillCenter": {
  8211. "__type__": "cc.Vec2",
  8212. "x": 0,
  8213. "y": 0
  8214. },
  8215. "_fillStart": 0,
  8216. "_fillRange": 0,
  8217. "_isTrimmedMode": true,
  8218. "_useGrayscale": false,
  8219. "_atlas": null,
  8220. "_id": ""
  8221. },
  8222. {
  8223. "__type__": "cc.UIOpacityComponent",
  8224. "_name": "Design<UIOpacityComponent>",
  8225. "_objFlags": 0,
  8226. "node": {
  8227. "__id__": 263
  8228. },
  8229. "_enabled": true,
  8230. "_opacity": 80,
  8231. "_id": ""
  8232. },
  8233. {
  8234. "__type__": "cc.PrefabInfo",
  8235. "root": {
  8236. "__id__": 1
  8237. },
  8238. "asset": {
  8239. "__id__": 0
  8240. },
  8241. "fileId": "0ecneocDlDu4A6HIPyM7zo",
  8242. "sync": false,
  8243. "_synced": {
  8244. "default": false,
  8245. "serializable": false
  8246. }
  8247. },
  8248. {
  8249. "__type__": "cc.UITransformComponent",
  8250. "_name": "PrepareUI<UITransformComponent>",
  8251. "_objFlags": 0,
  8252. "node": {
  8253. "__id__": 1
  8254. },
  8255. "_enabled": true,
  8256. "_priority": 0,
  8257. "_contentSize": {
  8258. "__type__": "cc.Size",
  8259. "width": 750,
  8260. "height": 1334
  8261. },
  8262. "_anchorPoint": {
  8263. "__type__": "cc.Vec2",
  8264. "x": 0,
  8265. "y": 0
  8266. },
  8267. "_id": ""
  8268. },
  8269. {
  8270. "__type__": "cc.WidgetComponent",
  8271. "_name": "PrepareUI<WidgetComponent>",
  8272. "_objFlags": 0,
  8273. "node": {
  8274. "__id__": 1
  8275. },
  8276. "_enabled": true,
  8277. "_alignFlags": 45,
  8278. "_target": null,
  8279. "_left": 0,
  8280. "_right": 0,
  8281. "_top": 0,
  8282. "_bottom": 0,
  8283. "_horizontalCenter": 0,
  8284. "_verticalCenter": 0,
  8285. "_isAbsLeft": true,
  8286. "_isAbsRight": true,
  8287. "_isAbsTop": true,
  8288. "_isAbsBottom": true,
  8289. "_isAbsHorizontalCenter": true,
  8290. "_isAbsVerticalCenter": true,
  8291. "_originalWidth": 100,
  8292. "_originalHeight": 100,
  8293. "_alignMode": 2,
  8294. "_lockFlags": 0,
  8295. "_id": ""
  8296. },
  8297. {
  8298. "__type__": "8fc93vzZ1xF6qpWn8Qq53+4",
  8299. "_name": "PrepareUI<PrepareMediator>",
  8300. "_objFlags": 0,
  8301. "node": {
  8302. "__id__": 1
  8303. },
  8304. "_enabled": true,
  8305. "bufferNode": {
  8306. "__id__": 123
  8307. },
  8308. "glodLabel": {
  8309. "__id__": 78
  8310. },
  8311. "glodLabel1": {
  8312. "__id__": 82
  8313. },
  8314. "diamondLabel": {
  8315. "__id__": 100
  8316. },
  8317. "gunNameLabel": {
  8318. "__id__": 35
  8319. },
  8320. "levelLabel": {
  8321. "__id__": 48
  8322. },
  8323. "shopButton": {
  8324. "__id__": 220
  8325. },
  8326. "autoSynthesisLabel": {
  8327. "__id__": 148
  8328. },
  8329. "quickBuyButton": {
  8330. "__id__": 251
  8331. },
  8332. "quickBuyWeaponIcon": {
  8333. "__id__": 247
  8334. },
  8335. "quickBuyWeaponPriceLabel": {
  8336. "__id__": 243
  8337. },
  8338. "weaponDragIcon": {
  8339. "__id__": 258
  8340. },
  8341. "deleteWeaponNode": {
  8342. "__id__": 204
  8343. },
  8344. "equipWeaponNode": {
  8345. "__id__": 29
  8346. },
  8347. "WeaponCellPrefab": {
  8348. "__uuid__": "eb8a5df4-1c93-49a2-a673-06ed863b2c27"
  8349. },
  8350. "weaponList": {
  8351. "__id__": 58
  8352. },
  8353. "_id": ""
  8354. },
  8355. {
  8356. "__type__": "cc.PrefabInfo",
  8357. "root": {
  8358. "__id__": 1
  8359. },
  8360. "asset": {
  8361. "__id__": 0
  8362. },
  8363. "fileId": "54NQB7OnVAirjVxHlFJxQM",
  8364. "sync": false,
  8365. "_synced": {
  8366. "default": false,
  8367. "serializable": false
  8368. }
  8369. }
  8370. ]