gunfightShootUI.prefab 169 KB

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