gunfightShootUI.prefab 159 KB

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