gunfightShootUI.prefab 155 KB

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