arsenalUI.prefab 157 KB

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