PrepareUI.prefab 152 KB

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