arsenalUI.prefab 156 KB

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