PrepareUI.prefab 174 KB

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