PrepareUI.prefab 165 KB

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