PlayerExplosion.prefab 226 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785
  1. %YAML 1.1
  2. %TAG !u! tag:unity3d.com,2011:
  3. --- !u!1 &100000
  4. GameObject:
  5. m_ObjectHideFlags: 0
  6. m_PrefabParentObject: {fileID: 0}
  7. m_PrefabInternal: {fileID: 100100000}
  8. serializedVersion: 4
  9. m_Component:
  10. - 4: {fileID: 400008}
  11. - 198: {fileID: 19800008}
  12. - 199: {fileID: 19900008}
  13. m_Layer: 0
  14. m_Name: part_burst
  15. m_TagString: Untagged
  16. m_Icon: {fileID: 0}
  17. m_NavMeshLayer: 0
  18. m_StaticEditorFlags: 0
  19. m_IsActive: 1
  20. --- !u!1 &100002
  21. GameObject:
  22. m_ObjectHideFlags: 0
  23. m_PrefabParentObject: {fileID: 0}
  24. m_PrefabInternal: {fileID: 100100000}
  25. serializedVersion: 4
  26. m_Component:
  27. - 4: {fileID: 400000}
  28. - 198: {fileID: 19800000}
  29. - 199: {fileID: 19900000}
  30. m_Layer: 0
  31. m_Name: part_sparks_short
  32. m_TagString: Untagged
  33. m_Icon: {fileID: 0}
  34. m_NavMeshLayer: 0
  35. m_StaticEditorFlags: 0
  36. m_IsActive: 1
  37. --- !u!1 &100004
  38. GameObject:
  39. m_ObjectHideFlags: 0
  40. m_PrefabParentObject: {fileID: 0}
  41. m_PrefabInternal: {fileID: 100100000}
  42. serializedVersion: 4
  43. m_Component:
  44. - 4: {fileID: 400002}
  45. - 198: {fileID: 19800002}
  46. - 199: {fileID: 19900002}
  47. m_Layer: 0
  48. m_Name: part_shower
  49. m_TagString: Untagged
  50. m_Icon: {fileID: 0}
  51. m_NavMeshLayer: 0
  52. m_StaticEditorFlags: 0
  53. m_IsActive: 1
  54. --- !u!1 &100006
  55. GameObject:
  56. m_ObjectHideFlags: 0
  57. m_PrefabParentObject: {fileID: 0}
  58. m_PrefabInternal: {fileID: 100100000}
  59. serializedVersion: 4
  60. m_Component:
  61. - 4: {fileID: 400006}
  62. - 198: {fileID: 19800006}
  63. - 199: {fileID: 19900006}
  64. m_Layer: 0
  65. m_Name: part_shockwave
  66. m_TagString: Untagged
  67. m_Icon: {fileID: 0}
  68. m_NavMeshLayer: 0
  69. m_StaticEditorFlags: 0
  70. m_IsActive: 1
  71. --- !u!1 &100008
  72. GameObject:
  73. m_ObjectHideFlags: 0
  74. m_PrefabParentObject: {fileID: 0}
  75. m_PrefabInternal: {fileID: 100100000}
  76. serializedVersion: 4
  77. m_Component:
  78. - 4: {fileID: 400010}
  79. - 198: {fileID: 19800010}
  80. - 199: {fileID: 19900010}
  81. m_Layer: 0
  82. m_Name: PlayerExplosion
  83. m_TagString: Untagged
  84. m_Icon: {fileID: 0}
  85. m_NavMeshLayer: 0
  86. m_StaticEditorFlags: 0
  87. m_IsActive: 1
  88. --- !u!1 &100010
  89. GameObject:
  90. m_ObjectHideFlags: 1
  91. m_PrefabParentObject: {fileID: 0}
  92. m_PrefabInternal: {fileID: 100100000}
  93. serializedVersion: 4
  94. m_Component:
  95. - 4: {fileID: 400012}
  96. - 198: {fileID: 19800012}
  97. - 199: {fileID: 19900012}
  98. m_Layer: 0
  99. m_Name: part_sparkTrails
  100. m_TagString: Untagged
  101. m_Icon: {fileID: 0}
  102. m_NavMeshLayer: 0
  103. m_StaticEditorFlags: 0
  104. m_IsActive: 1
  105. --- !u!1 &100012
  106. GameObject:
  107. m_ObjectHideFlags: 0
  108. m_PrefabParentObject: {fileID: 0}
  109. m_PrefabInternal: {fileID: 100100000}
  110. serializedVersion: 4
  111. m_Component:
  112. - 4: {fileID: 400004}
  113. - 198: {fileID: 19800004}
  114. - 199: {fileID: 19900004}
  115. m_Layer: 0
  116. m_Name: part_fizzle
  117. m_TagString: Untagged
  118. m_Icon: {fileID: 0}
  119. m_NavMeshLayer: 0
  120. m_StaticEditorFlags: 0
  121. m_IsActive: 1
  122. --- !u!4 &400000
  123. Transform:
  124. m_ObjectHideFlags: 1
  125. m_PrefabParentObject: {fileID: 0}
  126. m_PrefabInternal: {fileID: 100100000}
  127. m_GameObject: {fileID: 100002}
  128. m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
  129. m_LocalPosition: {x: 0, y: 0, z: 0}
  130. m_LocalScale: {x: 1, y: 1, z: 1}
  131. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  132. m_Children: []
  133. m_Father: {fileID: 400010}
  134. m_RootOrder: 4
  135. --- !u!4 &400002
  136. Transform:
  137. m_ObjectHideFlags: 1
  138. m_PrefabParentObject: {fileID: 0}
  139. m_PrefabInternal: {fileID: 100100000}
  140. m_GameObject: {fileID: 100004}
  141. m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
  142. m_LocalPosition: {x: 0, y: 0, z: 0}
  143. m_LocalScale: {x: 1, y: 1, z: 1}
  144. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  145. m_Children: []
  146. m_Father: {fileID: 400010}
  147. m_RootOrder: 3
  148. --- !u!4 &400004
  149. Transform:
  150. m_ObjectHideFlags: 1
  151. m_PrefabParentObject: {fileID: 0}
  152. m_PrefabInternal: {fileID: 100100000}
  153. m_GameObject: {fileID: 100012}
  154. m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
  155. m_LocalPosition: {x: 0, y: 0, z: 0}
  156. m_LocalScale: {x: 1, y: 1, z: 1}
  157. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  158. m_Children:
  159. - {fileID: 400012}
  160. m_Father: {fileID: 400010}
  161. m_RootOrder: 1
  162. --- !u!4 &400006
  163. Transform:
  164. m_ObjectHideFlags: 1
  165. m_PrefabParentObject: {fileID: 0}
  166. m_PrefabInternal: {fileID: 100100000}
  167. m_GameObject: {fileID: 100006}
  168. m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
  169. m_LocalPosition: {x: 0, y: 0, z: 0}
  170. m_LocalScale: {x: 1, y: 1, z: 1}
  171. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  172. m_Children: []
  173. m_Father: {fileID: 400010}
  174. m_RootOrder: 0
  175. --- !u!4 &400008
  176. Transform:
  177. m_ObjectHideFlags: 1
  178. m_PrefabParentObject: {fileID: 0}
  179. m_PrefabInternal: {fileID: 100100000}
  180. m_GameObject: {fileID: 100000}
  181. m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
  182. m_LocalPosition: {x: 0, y: 0, z: 0}
  183. m_LocalScale: {x: 1, y: 1, z: 1}
  184. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  185. m_Children: []
  186. m_Father: {fileID: 400010}
  187. m_RootOrder: 2
  188. --- !u!4 &400010
  189. Transform:
  190. m_ObjectHideFlags: 1
  191. m_PrefabParentObject: {fileID: 0}
  192. m_PrefabInternal: {fileID: 100100000}
  193. m_GameObject: {fileID: 100008}
  194. m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
  195. m_LocalPosition: {x: 0, y: 0, z: 0}
  196. m_LocalScale: {x: 1, y: 1, z: 1}
  197. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  198. m_Children:
  199. - {fileID: 400006}
  200. - {fileID: 400004}
  201. - {fileID: 400008}
  202. - {fileID: 400002}
  203. - {fileID: 400000}
  204. m_Father: {fileID: 0}
  205. m_RootOrder: 0
  206. --- !u!4 &400012
  207. Transform:
  208. m_ObjectHideFlags: 1
  209. m_PrefabParentObject: {fileID: 0}
  210. m_PrefabInternal: {fileID: 100100000}
  211. m_GameObject: {fileID: 100010}
  212. m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
  213. m_LocalPosition: {x: 0, y: 0, z: 0}
  214. m_LocalScale: {x: 1, y: 1, z: 1}
  215. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  216. m_Children: []
  217. m_Father: {fileID: 400004}
  218. m_RootOrder: 0
  219. --- !u!198 &19800000
  220. ParticleSystem:
  221. m_ObjectHideFlags: 1
  222. m_PrefabParentObject: {fileID: 0}
  223. m_PrefabInternal: {fileID: 100100000}
  224. m_GameObject: {fileID: 100002}
  225. serializedVersion: 2
  226. lengthInSec: 4
  227. startDelay:
  228. scalar: 0.05
  229. maxCurve:
  230. serializedVersion: 2
  231. m_Curve:
  232. - time: 0
  233. value: 1
  234. inSlope: 0
  235. outSlope: 0
  236. tangentMode: 0
  237. - time: 1
  238. value: 1
  239. inSlope: 0
  240. outSlope: 0
  241. tangentMode: 0
  242. m_PreInfinity: 2
  243. m_PostInfinity: 2
  244. m_RotationOrder: 4
  245. minCurve:
  246. serializedVersion: 2
  247. m_Curve:
  248. - time: 0
  249. value: 0
  250. inSlope: 0
  251. outSlope: 0
  252. tangentMode: 0
  253. - time: 1
  254. value: 0
  255. inSlope: 0
  256. outSlope: 0
  257. tangentMode: 0
  258. m_PreInfinity: 2
  259. m_PostInfinity: 2
  260. m_RotationOrder: 4
  261. minMaxState: 0
  262. speed: 1
  263. randomSeed: 0
  264. looping: 0
  265. prewarm: 0
  266. playOnAwake: 1
  267. moveWithTransform: 1
  268. scalingMode: 2
  269. InitialModule:
  270. serializedVersion: 2
  271. enabled: 1
  272. startLifetime:
  273. scalar: 1.4
  274. maxCurve:
  275. serializedVersion: 2
  276. m_Curve:
  277. - time: 0
  278. value: 1
  279. inSlope: 0
  280. outSlope: 0
  281. tangentMode: 0
  282. m_PreInfinity: 2
  283. m_PostInfinity: 2
  284. m_RotationOrder: 4
  285. minCurve:
  286. serializedVersion: 2
  287. m_Curve:
  288. - time: 0
  289. value: 0.14285716
  290. inSlope: 0
  291. outSlope: 0
  292. tangentMode: 0
  293. m_PreInfinity: 2
  294. m_PostInfinity: 2
  295. m_RotationOrder: 4
  296. minMaxState: 3
  297. startSpeed:
  298. scalar: 16
  299. maxCurve:
  300. serializedVersion: 2
  301. m_Curve:
  302. - time: 0
  303. value: 1
  304. inSlope: 0
  305. outSlope: 0
  306. tangentMode: 0
  307. m_PreInfinity: 2
  308. m_PostInfinity: 2
  309. m_RotationOrder: 4
  310. minCurve:
  311. serializedVersion: 2
  312. m_Curve:
  313. - time: 0
  314. value: 0.5
  315. inSlope: 0
  316. outSlope: 0
  317. tangentMode: 0
  318. m_PreInfinity: 2
  319. m_PostInfinity: 2
  320. m_RotationOrder: 4
  321. minMaxState: 0
  322. startColor:
  323. maxGradient:
  324. key0:
  325. serializedVersion: 2
  326. rgba: 4294967295
  327. key1:
  328. serializedVersion: 2
  329. rgba: 4294967295
  330. key2:
  331. serializedVersion: 2
  332. rgba: 0
  333. key3:
  334. serializedVersion: 2
  335. rgba: 0
  336. key4:
  337. serializedVersion: 2
  338. rgba: 0
  339. key5:
  340. serializedVersion: 2
  341. rgba: 0
  342. key6:
  343. serializedVersion: 2
  344. rgba: 0
  345. key7:
  346. serializedVersion: 2
  347. rgba: 0
  348. ctime0: 0
  349. ctime1: 65535
  350. ctime2: 0
  351. ctime3: 0
  352. ctime4: 0
  353. ctime5: 0
  354. ctime6: 0
  355. ctime7: 0
  356. atime0: 0
  357. atime1: 65535
  358. atime2: 0
  359. atime3: 0
  360. atime4: 0
  361. atime5: 0
  362. atime6: 0
  363. atime7: 0
  364. m_NumColorKeys: 2
  365. m_NumAlphaKeys: 2
  366. minGradient:
  367. key0:
  368. serializedVersion: 2
  369. rgba: 4294967295
  370. key1:
  371. serializedVersion: 2
  372. rgba: 4294967295
  373. key2:
  374. serializedVersion: 2
  375. rgba: 0
  376. key3:
  377. serializedVersion: 2
  378. rgba: 0
  379. key4:
  380. serializedVersion: 2
  381. rgba: 0
  382. key5:
  383. serializedVersion: 2
  384. rgba: 0
  385. key6:
  386. serializedVersion: 2
  387. rgba: 0
  388. key7:
  389. serializedVersion: 2
  390. rgba: 0
  391. ctime0: 0
  392. ctime1: 65535
  393. ctime2: 0
  394. ctime3: 0
  395. ctime4: 0
  396. ctime5: 0
  397. ctime6: 0
  398. ctime7: 0
  399. atime0: 0
  400. atime1: 65535
  401. atime2: 0
  402. atime3: 0
  403. atime4: 0
  404. atime5: 0
  405. atime6: 0
  406. atime7: 0
  407. m_NumColorKeys: 2
  408. m_NumAlphaKeys: 2
  409. minColor:
  410. serializedVersion: 2
  411. rgba: 4294967295
  412. maxColor:
  413. serializedVersion: 2
  414. rgba: 4294967295
  415. minMaxState: 0
  416. startSize:
  417. scalar: 0.15
  418. maxCurve:
  419. serializedVersion: 2
  420. m_Curve:
  421. - time: 0
  422. value: 1
  423. inSlope: 0
  424. outSlope: 0
  425. tangentMode: 0
  426. m_PreInfinity: 2
  427. m_PostInfinity: 2
  428. m_RotationOrder: 4
  429. minCurve:
  430. serializedVersion: 2
  431. m_Curve:
  432. - time: 0
  433. value: 0.06666666
  434. inSlope: 0
  435. outSlope: 0
  436. tangentMode: 0
  437. m_PreInfinity: 2
  438. m_PostInfinity: 2
  439. m_RotationOrder: 4
  440. minMaxState: 3
  441. startRotationX:
  442. scalar: 1
  443. maxCurve:
  444. serializedVersion: 2
  445. m_Curve:
  446. - time: 0
  447. value: 1
  448. inSlope: 0
  449. outSlope: 0
  450. tangentMode: 0
  451. - time: 1
  452. value: 1
  453. inSlope: 0
  454. outSlope: 0
  455. tangentMode: 0
  456. m_PreInfinity: 2
  457. m_PostInfinity: 2
  458. m_RotationOrder: 4
  459. minCurve:
  460. serializedVersion: 2
  461. m_Curve:
  462. - time: 0
  463. value: 0
  464. inSlope: 0
  465. outSlope: 0
  466. tangentMode: 0
  467. - time: 1
  468. value: 0
  469. inSlope: 0
  470. outSlope: 0
  471. tangentMode: 0
  472. m_PreInfinity: 2
  473. m_PostInfinity: 2
  474. m_RotationOrder: 4
  475. minMaxState: 0
  476. startRotationY:
  477. scalar: 1
  478. maxCurve:
  479. serializedVersion: 2
  480. m_Curve:
  481. - time: 0
  482. value: 1
  483. inSlope: 0
  484. outSlope: 0
  485. tangentMode: 0
  486. - time: 1
  487. value: 1
  488. inSlope: 0
  489. outSlope: 0
  490. tangentMode: 0
  491. m_PreInfinity: 2
  492. m_PostInfinity: 2
  493. m_RotationOrder: 4
  494. minCurve:
  495. serializedVersion: 2
  496. m_Curve:
  497. - time: 0
  498. value: 0
  499. inSlope: 0
  500. outSlope: 0
  501. tangentMode: 0
  502. - time: 1
  503. value: 0
  504. inSlope: 0
  505. outSlope: 0
  506. tangentMode: 0
  507. m_PreInfinity: 2
  508. m_PostInfinity: 2
  509. m_RotationOrder: 4
  510. minMaxState: 0
  511. startRotation:
  512. scalar: 0
  513. maxCurve:
  514. serializedVersion: 2
  515. m_Curve:
  516. - time: 0
  517. value: 1
  518. inSlope: 0
  519. outSlope: 0
  520. tangentMode: 0
  521. m_PreInfinity: 2
  522. m_PostInfinity: 2
  523. m_RotationOrder: 4
  524. minCurve:
  525. serializedVersion: 2
  526. m_Curve:
  527. - time: 0
  528. value: -1
  529. inSlope: 0
  530. outSlope: 0
  531. tangentMode: 0
  532. m_PreInfinity: 2
  533. m_PostInfinity: 2
  534. m_RotationOrder: 4
  535. minMaxState: 0
  536. randomizeRotationDirection: 0
  537. gravityModifier: 2.4
  538. maxNumParticles: 30
  539. rotation3D: 0
  540. ShapeModule:
  541. serializedVersion: 2
  542. enabled: 1
  543. type: 1
  544. radius: 0.4
  545. angle: 25
  546. length: 5
  547. boxX: 4
  548. boxY: 4
  549. boxZ: 4
  550. arc: 360
  551. placementMode: 0
  552. m_Mesh: {fileID: 0}
  553. m_MeshRenderer: {fileID: 0}
  554. m_SkinnedMeshRenderer: {fileID: 0}
  555. m_MeshMaterialIndex: 0
  556. m_MeshNormalOffset: 0
  557. m_UseMeshMaterialIndex: 0
  558. m_UseMeshColors: 1
  559. randomDirection: 0
  560. EmissionModule:
  561. enabled: 1
  562. serializedVersion: 2
  563. m_Type: 0
  564. rate:
  565. scalar: 0
  566. maxCurve:
  567. serializedVersion: 2
  568. m_Curve:
  569. - time: 0
  570. value: 1
  571. inSlope: 0
  572. outSlope: 0
  573. tangentMode: 0
  574. - time: 1
  575. value: 1
  576. inSlope: 0
  577. outSlope: 0
  578. tangentMode: 0
  579. m_PreInfinity: 2
  580. m_PostInfinity: 2
  581. m_RotationOrder: 4
  582. minCurve:
  583. serializedVersion: 2
  584. m_Curve:
  585. - time: 0
  586. value: 0
  587. inSlope: 0
  588. outSlope: 0
  589. tangentMode: 0
  590. - time: 1
  591. value: 0
  592. inSlope: 0
  593. outSlope: 0
  594. tangentMode: 0
  595. m_PreInfinity: 2
  596. m_PostInfinity: 2
  597. m_RotationOrder: 4
  598. minMaxState: 0
  599. cnt0: 25
  600. cnt1: 8
  601. cnt2: 8
  602. cnt3: 8
  603. cntmax0: 25
  604. cntmax1: 8
  605. cntmax2: 8
  606. cntmax3: 8
  607. time0: 0
  608. time1: 0.2
  609. time2: 0.4
  610. time3: 0.5
  611. m_BurstCount: 1
  612. SizeModule:
  613. enabled: 1
  614. curve:
  615. scalar: 1
  616. maxCurve:
  617. serializedVersion: 2
  618. m_Curve:
  619. - time: 0
  620. value: 0.39867103
  621. inSlope: 2
  622. outSlope: 2
  623. tangentMode: 0
  624. - time: 0.34722224
  625. value: 0.7641196
  626. inSlope: 0.8239188
  627. outSlope: 0.8239188
  628. tangentMode: 0
  629. - time: 1
  630. value: 0.99003303
  631. inSlope: 0
  632. outSlope: 0
  633. tangentMode: 0
  634. m_PreInfinity: 2
  635. m_PostInfinity: 2
  636. m_RotationOrder: 4
  637. minCurve:
  638. serializedVersion: 2
  639. m_Curve:
  640. - time: 0
  641. value: 0
  642. inSlope: 0
  643. outSlope: 0
  644. tangentMode: 0
  645. - time: 1
  646. value: 0
  647. inSlope: 0
  648. outSlope: 0
  649. tangentMode: 0
  650. m_PreInfinity: 2
  651. m_PostInfinity: 2
  652. m_RotationOrder: 4
  653. minMaxState: 1
  654. RotationModule:
  655. enabled: 0
  656. x:
  657. scalar: 1
  658. maxCurve:
  659. serializedVersion: 2
  660. m_Curve:
  661. - time: 0
  662. value: 1
  663. inSlope: 0
  664. outSlope: 0
  665. tangentMode: 0
  666. - time: 1
  667. value: 1
  668. inSlope: 0
  669. outSlope: 0
  670. tangentMode: 0
  671. m_PreInfinity: 2
  672. m_PostInfinity: 2
  673. m_RotationOrder: 4
  674. minCurve:
  675. serializedVersion: 2
  676. m_Curve:
  677. - time: 0
  678. value: 0
  679. inSlope: 0
  680. outSlope: 0
  681. tangentMode: 0
  682. - time: 1
  683. value: 0
  684. inSlope: 0
  685. outSlope: 0
  686. tangentMode: 0
  687. m_PreInfinity: 2
  688. m_PostInfinity: 2
  689. m_RotationOrder: 4
  690. minMaxState: 0
  691. y:
  692. scalar: 1
  693. maxCurve:
  694. serializedVersion: 2
  695. m_Curve:
  696. - time: 0
  697. value: 1
  698. inSlope: 0
  699. outSlope: 0
  700. tangentMode: 0
  701. - time: 1
  702. value: 1
  703. inSlope: 0
  704. outSlope: 0
  705. tangentMode: 0
  706. m_PreInfinity: 2
  707. m_PostInfinity: 2
  708. m_RotationOrder: 4
  709. minCurve:
  710. serializedVersion: 2
  711. m_Curve:
  712. - time: 0
  713. value: 0
  714. inSlope: 0
  715. outSlope: 0
  716. tangentMode: 0
  717. - time: 1
  718. value: 0
  719. inSlope: 0
  720. outSlope: 0
  721. tangentMode: 0
  722. m_PreInfinity: 2
  723. m_PostInfinity: 2
  724. m_RotationOrder: 4
  725. minMaxState: 0
  726. curve:
  727. scalar: 0.43633232
  728. maxCurve:
  729. serializedVersion: 2
  730. m_Curve:
  731. - time: 0
  732. value: 1
  733. inSlope: 0
  734. outSlope: 0
  735. tangentMode: 0
  736. m_PreInfinity: 2
  737. m_PostInfinity: 2
  738. m_RotationOrder: 4
  739. minCurve:
  740. serializedVersion: 2
  741. m_Curve:
  742. - time: 0
  743. value: -1
  744. inSlope: 0
  745. outSlope: 0
  746. tangentMode: 0
  747. m_PreInfinity: 2
  748. m_PostInfinity: 2
  749. m_RotationOrder: 4
  750. minMaxState: 3
  751. separateAxes: 0
  752. ColorModule:
  753. enabled: 1
  754. gradient:
  755. maxGradient:
  756. key0:
  757. serializedVersion: 2
  758. rgba: 4294967295
  759. key1:
  760. serializedVersion: 2
  761. rgba: 4292344063
  762. key2:
  763. serializedVersion: 2
  764. rgba: 7926271
  765. key3:
  766. serializedVersion: 2
  767. rgba: 7064575
  768. key4:
  769. serializedVersion: 2
  770. rgba: 12983
  771. key5:
  772. serializedVersion: 2
  773. rgba: 12983
  774. key6:
  775. serializedVersion: 2
  776. rgba: 0
  777. key7:
  778. serializedVersion: 2
  779. rgba: 0
  780. ctime0: 0
  781. ctime1: 5012
  782. ctime2: 16384
  783. ctime3: 33731
  784. ctime4: 51079
  785. ctime5: 55512
  786. ctime6: 0
  787. ctime7: 0
  788. atime0: 0
  789. atime1: 52428
  790. atime2: 65535
  791. atime3: 65535
  792. atime4: 0
  793. atime5: 0
  794. atime6: 0
  795. atime7: 0
  796. m_NumColorKeys: 5
  797. m_NumAlphaKeys: 3
  798. minGradient:
  799. key0:
  800. serializedVersion: 2
  801. rgba: 4294967295
  802. key1:
  803. serializedVersion: 2
  804. rgba: 4294967295
  805. key2:
  806. serializedVersion: 2
  807. rgba: 0
  808. key3:
  809. serializedVersion: 2
  810. rgba: 0
  811. key4:
  812. serializedVersion: 2
  813. rgba: 0
  814. key5:
  815. serializedVersion: 2
  816. rgba: 0
  817. key6:
  818. serializedVersion: 2
  819. rgba: 0
  820. key7:
  821. serializedVersion: 2
  822. rgba: 0
  823. ctime0: 0
  824. ctime1: 65535
  825. ctime2: 0
  826. ctime3: 0
  827. ctime4: 0
  828. ctime5: 0
  829. ctime6: 0
  830. ctime7: 0
  831. atime0: 0
  832. atime1: 65535
  833. atime2: 0
  834. atime3: 0
  835. atime4: 0
  836. atime5: 0
  837. atime6: 0
  838. atime7: 0
  839. m_NumColorKeys: 2
  840. m_NumAlphaKeys: 2
  841. minColor:
  842. serializedVersion: 2
  843. rgba: 4294967295
  844. maxColor:
  845. serializedVersion: 2
  846. rgba: 4294967295
  847. minMaxState: 1
  848. UVModule:
  849. enabled: 0
  850. frameOverTime:
  851. scalar: 1
  852. maxCurve:
  853. serializedVersion: 2
  854. m_Curve:
  855. - time: 0
  856. value: 0
  857. inSlope: 0
  858. outSlope: 1
  859. tangentMode: 0
  860. - time: 1
  861. value: 1
  862. inSlope: 1
  863. outSlope: 0
  864. tangentMode: 0
  865. m_PreInfinity: 2
  866. m_PostInfinity: 2
  867. m_RotationOrder: 4
  868. minCurve:
  869. serializedVersion: 2
  870. m_Curve:
  871. - time: 0
  872. value: 0
  873. inSlope: 0
  874. outSlope: 1
  875. tangentMode: 0
  876. - time: 1
  877. value: 1
  878. inSlope: 1
  879. outSlope: 0
  880. tangentMode: 0
  881. m_PreInfinity: 2
  882. m_PostInfinity: 2
  883. m_RotationOrder: 4
  884. minMaxState: 1
  885. tilesX: 1
  886. tilesY: 1
  887. animationType: 0
  888. rowIndex: 0
  889. cycles: 1
  890. randomRow: 1
  891. VelocityModule:
  892. enabled: 0
  893. x:
  894. scalar: 0
  895. maxCurve:
  896. serializedVersion: 2
  897. m_Curve:
  898. - time: 0
  899. value: 1
  900. inSlope: 0
  901. outSlope: 0
  902. tangentMode: 0
  903. - time: 1
  904. value: 1
  905. inSlope: 0
  906. outSlope: 0
  907. tangentMode: 0
  908. m_PreInfinity: 2
  909. m_PostInfinity: 2
  910. m_RotationOrder: 4
  911. minCurve:
  912. serializedVersion: 2
  913. m_Curve:
  914. - time: 0
  915. value: 0
  916. inSlope: 0
  917. outSlope: 0
  918. tangentMode: 0
  919. - time: 1
  920. value: 0
  921. inSlope: 0
  922. outSlope: 0
  923. tangentMode: 0
  924. m_PreInfinity: 2
  925. m_PostInfinity: 2
  926. m_RotationOrder: 4
  927. minMaxState: 0
  928. y:
  929. scalar: 0.2
  930. maxCurve:
  931. serializedVersion: 2
  932. m_Curve:
  933. - time: 0
  934. value: 1
  935. inSlope: 0
  936. outSlope: 0
  937. tangentMode: 0
  938. - time: 1
  939. value: 1
  940. inSlope: 0
  941. outSlope: 0
  942. tangentMode: 0
  943. m_PreInfinity: 2
  944. m_PostInfinity: 2
  945. m_RotationOrder: 4
  946. minCurve:
  947. serializedVersion: 2
  948. m_Curve:
  949. - time: 0
  950. value: 0
  951. inSlope: 0
  952. outSlope: 0
  953. tangentMode: 0
  954. - time: 1
  955. value: 0
  956. inSlope: 0
  957. outSlope: 0
  958. tangentMode: 0
  959. m_PreInfinity: 2
  960. m_PostInfinity: 2
  961. m_RotationOrder: 4
  962. minMaxState: 0
  963. z:
  964. scalar: 0
  965. maxCurve:
  966. serializedVersion: 2
  967. m_Curve:
  968. - time: 0
  969. value: 1
  970. inSlope: 0
  971. outSlope: 0
  972. tangentMode: 0
  973. - time: 1
  974. value: 1
  975. inSlope: 0
  976. outSlope: 0
  977. tangentMode: 0
  978. m_PreInfinity: 2
  979. m_PostInfinity: 2
  980. m_RotationOrder: 4
  981. minCurve:
  982. serializedVersion: 2
  983. m_Curve:
  984. - time: 0
  985. value: 0
  986. inSlope: 0
  987. outSlope: 0
  988. tangentMode: 0
  989. - time: 1
  990. value: 0
  991. inSlope: 0
  992. outSlope: 0
  993. tangentMode: 0
  994. m_PreInfinity: 2
  995. m_PostInfinity: 2
  996. m_RotationOrder: 4
  997. minMaxState: 0
  998. inWorldSpace: 1
  999. InheritVelocityModule:
  1000. enabled: 0
  1001. m_Mode: 0
  1002. m_Curve:
  1003. scalar: 1
  1004. maxCurve:
  1005. serializedVersion: 2
  1006. m_Curve:
  1007. - time: 0
  1008. value: 1
  1009. inSlope: 0
  1010. outSlope: 0
  1011. tangentMode: 0
  1012. - time: 1
  1013. value: 1
  1014. inSlope: 0
  1015. outSlope: 0
  1016. tangentMode: 0
  1017. m_PreInfinity: 2
  1018. m_PostInfinity: 2
  1019. m_RotationOrder: 4
  1020. minCurve:
  1021. serializedVersion: 2
  1022. m_Curve:
  1023. - time: 0
  1024. value: 0
  1025. inSlope: 0
  1026. outSlope: 0
  1027. tangentMode: 0
  1028. - time: 1
  1029. value: 0
  1030. inSlope: 0
  1031. outSlope: 0
  1032. tangentMode: 0
  1033. m_PreInfinity: 2
  1034. m_PostInfinity: 2
  1035. m_RotationOrder: 4
  1036. minMaxState: 0
  1037. ForceModule:
  1038. enabled: 0
  1039. x:
  1040. scalar: 0
  1041. maxCurve:
  1042. serializedVersion: 2
  1043. m_Curve:
  1044. - time: 0
  1045. value: 1
  1046. inSlope: 0
  1047. outSlope: 0
  1048. tangentMode: 0
  1049. - time: 1
  1050. value: 1
  1051. inSlope: 0
  1052. outSlope: 0
  1053. tangentMode: 0
  1054. m_PreInfinity: 2
  1055. m_PostInfinity: 2
  1056. m_RotationOrder: 4
  1057. minCurve:
  1058. serializedVersion: 2
  1059. m_Curve:
  1060. - time: 0
  1061. value: 0
  1062. inSlope: 0
  1063. outSlope: 0
  1064. tangentMode: 0
  1065. - time: 1
  1066. value: 0
  1067. inSlope: 0
  1068. outSlope: 0
  1069. tangentMode: 0
  1070. m_PreInfinity: 2
  1071. m_PostInfinity: 2
  1072. m_RotationOrder: 4
  1073. minMaxState: 0
  1074. y:
  1075. scalar: 0
  1076. maxCurve:
  1077. serializedVersion: 2
  1078. m_Curve:
  1079. - time: 0
  1080. value: 1
  1081. inSlope: 0
  1082. outSlope: 0
  1083. tangentMode: 0
  1084. - time: 1
  1085. value: 1
  1086. inSlope: 0
  1087. outSlope: 0
  1088. tangentMode: 0
  1089. m_PreInfinity: 2
  1090. m_PostInfinity: 2
  1091. m_RotationOrder: 4
  1092. minCurve:
  1093. serializedVersion: 2
  1094. m_Curve:
  1095. - time: 0
  1096. value: 0
  1097. inSlope: 0
  1098. outSlope: 0
  1099. tangentMode: 0
  1100. - time: 1
  1101. value: 0
  1102. inSlope: 0
  1103. outSlope: 0
  1104. tangentMode: 0
  1105. m_PreInfinity: 2
  1106. m_PostInfinity: 2
  1107. m_RotationOrder: 4
  1108. minMaxState: 0
  1109. z:
  1110. scalar: 0
  1111. maxCurve:
  1112. serializedVersion: 2
  1113. m_Curve:
  1114. - time: 0
  1115. value: 1
  1116. inSlope: 0
  1117. outSlope: 0
  1118. tangentMode: 0
  1119. - time: 1
  1120. value: 1
  1121. inSlope: 0
  1122. outSlope: 0
  1123. tangentMode: 0
  1124. m_PreInfinity: 2
  1125. m_PostInfinity: 2
  1126. m_RotationOrder: 4
  1127. minCurve:
  1128. serializedVersion: 2
  1129. m_Curve:
  1130. - time: 0
  1131. value: 0
  1132. inSlope: 0
  1133. outSlope: 0
  1134. tangentMode: 0
  1135. - time: 1
  1136. value: 0
  1137. inSlope: 0
  1138. outSlope: 0
  1139. tangentMode: 0
  1140. m_PreInfinity: 2
  1141. m_PostInfinity: 2
  1142. m_RotationOrder: 4
  1143. minMaxState: 0
  1144. inWorldSpace: 0
  1145. randomizePerFrame: 0
  1146. ExternalForcesModule:
  1147. enabled: 0
  1148. multiplier: 1
  1149. ClampVelocityModule:
  1150. enabled: 0
  1151. x:
  1152. scalar: 1
  1153. maxCurve:
  1154. serializedVersion: 2
  1155. m_Curve:
  1156. - time: 0
  1157. value: 1
  1158. inSlope: 0
  1159. outSlope: 0
  1160. tangentMode: 0
  1161. - time: 1
  1162. value: 1
  1163. inSlope: 0
  1164. outSlope: 0
  1165. tangentMode: 0
  1166. m_PreInfinity: 2
  1167. m_PostInfinity: 2
  1168. m_RotationOrder: 4
  1169. minCurve:
  1170. serializedVersion: 2
  1171. m_Curve:
  1172. - time: 0
  1173. value: 0
  1174. inSlope: 0
  1175. outSlope: 0
  1176. tangentMode: 0
  1177. - time: 1
  1178. value: 0
  1179. inSlope: 0
  1180. outSlope: 0
  1181. tangentMode: 0
  1182. m_PreInfinity: 2
  1183. m_PostInfinity: 2
  1184. m_RotationOrder: 4
  1185. minMaxState: 0
  1186. y:
  1187. scalar: 1
  1188. maxCurve:
  1189. serializedVersion: 2
  1190. m_Curve:
  1191. - time: 0
  1192. value: 1
  1193. inSlope: 0
  1194. outSlope: 0
  1195. tangentMode: 0
  1196. - time: 1
  1197. value: 1
  1198. inSlope: 0
  1199. outSlope: 0
  1200. tangentMode: 0
  1201. m_PreInfinity: 2
  1202. m_PostInfinity: 2
  1203. m_RotationOrder: 4
  1204. minCurve:
  1205. serializedVersion: 2
  1206. m_Curve:
  1207. - time: 0
  1208. value: 0
  1209. inSlope: 0
  1210. outSlope: 0
  1211. tangentMode: 0
  1212. - time: 1
  1213. value: 0
  1214. inSlope: 0
  1215. outSlope: 0
  1216. tangentMode: 0
  1217. m_PreInfinity: 2
  1218. m_PostInfinity: 2
  1219. m_RotationOrder: 4
  1220. minMaxState: 0
  1221. z:
  1222. scalar: 1
  1223. maxCurve:
  1224. serializedVersion: 2
  1225. m_Curve:
  1226. - time: 0
  1227. value: 1
  1228. inSlope: 0
  1229. outSlope: 0
  1230. tangentMode: 0
  1231. - time: 1
  1232. value: 1
  1233. inSlope: 0
  1234. outSlope: 0
  1235. tangentMode: 0
  1236. m_PreInfinity: 2
  1237. m_PostInfinity: 2
  1238. m_RotationOrder: 4
  1239. minCurve:
  1240. serializedVersion: 2
  1241. m_Curve:
  1242. - time: 0
  1243. value: 0
  1244. inSlope: 0
  1245. outSlope: 0
  1246. tangentMode: 0
  1247. - time: 1
  1248. value: 0
  1249. inSlope: 0
  1250. outSlope: 0
  1251. tangentMode: 0
  1252. m_PreInfinity: 2
  1253. m_PostInfinity: 2
  1254. m_RotationOrder: 4
  1255. minMaxState: 0
  1256. magnitude:
  1257. scalar: 1
  1258. maxCurve:
  1259. serializedVersion: 2
  1260. m_Curve:
  1261. - time: 0
  1262. value: 1
  1263. inSlope: 0
  1264. outSlope: 0
  1265. tangentMode: 0
  1266. - time: 1
  1267. value: 1
  1268. inSlope: 0
  1269. outSlope: 0
  1270. tangentMode: 0
  1271. m_PreInfinity: 2
  1272. m_PostInfinity: 2
  1273. m_RotationOrder: 4
  1274. minCurve:
  1275. serializedVersion: 2
  1276. m_Curve:
  1277. - time: 0
  1278. value: 0
  1279. inSlope: 0
  1280. outSlope: 0
  1281. tangentMode: 0
  1282. - time: 1
  1283. value: 0
  1284. inSlope: 0
  1285. outSlope: 0
  1286. tangentMode: 0
  1287. m_PreInfinity: 2
  1288. m_PostInfinity: 2
  1289. m_RotationOrder: 4
  1290. minMaxState: 0
  1291. separateAxis: 0
  1292. inWorldSpace: 0
  1293. dampen: 1
  1294. SizeBySpeedModule:
  1295. enabled: 0
  1296. curve:
  1297. scalar: 1
  1298. maxCurve:
  1299. serializedVersion: 2
  1300. m_Curve:
  1301. - time: 0
  1302. value: 1
  1303. inSlope: 0
  1304. outSlope: 0
  1305. tangentMode: 0
  1306. - time: 1
  1307. value: 1
  1308. inSlope: 0
  1309. outSlope: 0
  1310. tangentMode: 0
  1311. m_PreInfinity: 2
  1312. m_PostInfinity: 2
  1313. m_RotationOrder: 4
  1314. minCurve:
  1315. serializedVersion: 2
  1316. m_Curve:
  1317. - time: 0
  1318. value: 0
  1319. inSlope: 0
  1320. outSlope: 0
  1321. tangentMode: 0
  1322. - time: 1
  1323. value: 0
  1324. inSlope: 0
  1325. outSlope: 0
  1326. tangentMode: 0
  1327. m_PreInfinity: 2
  1328. m_PostInfinity: 2
  1329. m_RotationOrder: 4
  1330. minMaxState: 1
  1331. range: {x: 0, y: 1}
  1332. RotationBySpeedModule:
  1333. enabled: 0
  1334. x:
  1335. scalar: 1
  1336. maxCurve:
  1337. serializedVersion: 2
  1338. m_Curve:
  1339. - time: 0
  1340. value: 1
  1341. inSlope: 0
  1342. outSlope: 0
  1343. tangentMode: 0
  1344. - time: 1
  1345. value: 1
  1346. inSlope: 0
  1347. outSlope: 0
  1348. tangentMode: 0
  1349. m_PreInfinity: 2
  1350. m_PostInfinity: 2
  1351. m_RotationOrder: 4
  1352. minCurve:
  1353. serializedVersion: 2
  1354. m_Curve:
  1355. - time: 0
  1356. value: 0
  1357. inSlope: 0
  1358. outSlope: 0
  1359. tangentMode: 0
  1360. - time: 1
  1361. value: 0
  1362. inSlope: 0
  1363. outSlope: 0
  1364. tangentMode: 0
  1365. m_PreInfinity: 2
  1366. m_PostInfinity: 2
  1367. m_RotationOrder: 4
  1368. minMaxState: 0
  1369. y:
  1370. scalar: 1
  1371. maxCurve:
  1372. serializedVersion: 2
  1373. m_Curve:
  1374. - time: 0
  1375. value: 1
  1376. inSlope: 0
  1377. outSlope: 0
  1378. tangentMode: 0
  1379. - time: 1
  1380. value: 1
  1381. inSlope: 0
  1382. outSlope: 0
  1383. tangentMode: 0
  1384. m_PreInfinity: 2
  1385. m_PostInfinity: 2
  1386. m_RotationOrder: 4
  1387. minCurve:
  1388. serializedVersion: 2
  1389. m_Curve:
  1390. - time: 0
  1391. value: 0
  1392. inSlope: 0
  1393. outSlope: 0
  1394. tangentMode: 0
  1395. - time: 1
  1396. value: 0
  1397. inSlope: 0
  1398. outSlope: 0
  1399. tangentMode: 0
  1400. m_PreInfinity: 2
  1401. m_PostInfinity: 2
  1402. m_RotationOrder: 4
  1403. minMaxState: 0
  1404. curve:
  1405. scalar: 0.43633232
  1406. maxCurve:
  1407. serializedVersion: 2
  1408. m_Curve:
  1409. - time: 0
  1410. value: 1
  1411. inSlope: 0
  1412. outSlope: 0
  1413. tangentMode: 0
  1414. m_PreInfinity: 2
  1415. m_PostInfinity: 2
  1416. m_RotationOrder: 4
  1417. minCurve:
  1418. serializedVersion: 2
  1419. m_Curve:
  1420. - time: 0
  1421. value: -1
  1422. inSlope: 0
  1423. outSlope: 0
  1424. tangentMode: 0
  1425. m_PreInfinity: 2
  1426. m_PostInfinity: 2
  1427. m_RotationOrder: 4
  1428. minMaxState: 3
  1429. separateAxes: 0
  1430. range: {x: 0, y: 1}
  1431. ColorBySpeedModule:
  1432. enabled: 0
  1433. gradient:
  1434. maxGradient:
  1435. key0:
  1436. serializedVersion: 2
  1437. rgba: 4294967295
  1438. key1:
  1439. serializedVersion: 2
  1440. rgba: 4294967295
  1441. key2:
  1442. serializedVersion: 2
  1443. rgba: 0
  1444. key3:
  1445. serializedVersion: 2
  1446. rgba: 0
  1447. key4:
  1448. serializedVersion: 2
  1449. rgba: 0
  1450. key5:
  1451. serializedVersion: 2
  1452. rgba: 0
  1453. key6:
  1454. serializedVersion: 2
  1455. rgba: 0
  1456. key7:
  1457. serializedVersion: 2
  1458. rgba: 0
  1459. ctime0: 0
  1460. ctime1: 65535
  1461. ctime2: 0
  1462. ctime3: 0
  1463. ctime4: 0
  1464. ctime5: 0
  1465. ctime6: 0
  1466. ctime7: 0
  1467. atime0: 0
  1468. atime1: 65535
  1469. atime2: 0
  1470. atime3: 0
  1471. atime4: 0
  1472. atime5: 0
  1473. atime6: 0
  1474. atime7: 0
  1475. m_NumColorKeys: 2
  1476. m_NumAlphaKeys: 2
  1477. minGradient:
  1478. key0:
  1479. serializedVersion: 2
  1480. rgba: 4294967295
  1481. key1:
  1482. serializedVersion: 2
  1483. rgba: 4294967295
  1484. key2:
  1485. serializedVersion: 2
  1486. rgba: 0
  1487. key3:
  1488. serializedVersion: 2
  1489. rgba: 0
  1490. key4:
  1491. serializedVersion: 2
  1492. rgba: 0
  1493. key5:
  1494. serializedVersion: 2
  1495. rgba: 0
  1496. key6:
  1497. serializedVersion: 2
  1498. rgba: 0
  1499. key7:
  1500. serializedVersion: 2
  1501. rgba: 0
  1502. ctime0: 0
  1503. ctime1: 65535
  1504. ctime2: 0
  1505. ctime3: 0
  1506. ctime4: 0
  1507. ctime5: 0
  1508. ctime6: 0
  1509. ctime7: 0
  1510. atime0: 0
  1511. atime1: 65535
  1512. atime2: 0
  1513. atime3: 0
  1514. atime4: 0
  1515. atime5: 0
  1516. atime6: 0
  1517. atime7: 0
  1518. m_NumColorKeys: 2
  1519. m_NumAlphaKeys: 2
  1520. minColor:
  1521. serializedVersion: 2
  1522. rgba: 4294967295
  1523. maxColor:
  1524. serializedVersion: 2
  1525. rgba: 4294967295
  1526. minMaxState: 1
  1527. range: {x: 0, y: 1}
  1528. CollisionModule:
  1529. enabled: 0
  1530. serializedVersion: 2
  1531. type: 0
  1532. collisionMode: 0
  1533. plane0: {fileID: 0}
  1534. plane1: {fileID: 0}
  1535. plane2: {fileID: 0}
  1536. plane3: {fileID: 0}
  1537. plane4: {fileID: 0}
  1538. plane5: {fileID: 0}
  1539. m_Dampen:
  1540. scalar: 0
  1541. maxCurve:
  1542. serializedVersion: 2
  1543. m_Curve:
  1544. - time: 0
  1545. value: 1
  1546. inSlope: 0
  1547. outSlope: 0
  1548. tangentMode: 0
  1549. - time: 1
  1550. value: 1
  1551. inSlope: 0
  1552. outSlope: 0
  1553. tangentMode: 0
  1554. m_PreInfinity: 2
  1555. m_PostInfinity: 2
  1556. m_RotationOrder: 4
  1557. minCurve:
  1558. serializedVersion: 2
  1559. m_Curve:
  1560. - time: 0
  1561. value: 0
  1562. inSlope: 0
  1563. outSlope: 0
  1564. tangentMode: 0
  1565. - time: 1
  1566. value: 0
  1567. inSlope: 0
  1568. outSlope: 0
  1569. tangentMode: 0
  1570. m_PreInfinity: 2
  1571. m_PostInfinity: 2
  1572. m_RotationOrder: 4
  1573. minMaxState: 0
  1574. m_Bounce:
  1575. scalar: 1
  1576. maxCurve:
  1577. serializedVersion: 2
  1578. m_Curve:
  1579. - time: 0
  1580. value: 1
  1581. inSlope: 0
  1582. outSlope: 0
  1583. tangentMode: 0
  1584. - time: 1
  1585. value: 1
  1586. inSlope: 0
  1587. outSlope: 0
  1588. tangentMode: 0
  1589. m_PreInfinity: 2
  1590. m_PostInfinity: 2
  1591. m_RotationOrder: 4
  1592. minCurve:
  1593. serializedVersion: 2
  1594. m_Curve:
  1595. - time: 0
  1596. value: 0
  1597. inSlope: 0
  1598. outSlope: 0
  1599. tangentMode: 0
  1600. - time: 1
  1601. value: 0
  1602. inSlope: 0
  1603. outSlope: 0
  1604. tangentMode: 0
  1605. m_PreInfinity: 2
  1606. m_PostInfinity: 2
  1607. m_RotationOrder: 4
  1608. minMaxState: 0
  1609. m_EnergyLossOnCollision:
  1610. scalar: 0
  1611. maxCurve:
  1612. serializedVersion: 2
  1613. m_Curve:
  1614. - time: 0
  1615. value: 1
  1616. inSlope: 0
  1617. outSlope: 0
  1618. tangentMode: 0
  1619. - time: 1
  1620. value: 1
  1621. inSlope: 0
  1622. outSlope: 0
  1623. tangentMode: 0
  1624. m_PreInfinity: 2
  1625. m_PostInfinity: 2
  1626. m_RotationOrder: 4
  1627. minCurve:
  1628. serializedVersion: 2
  1629. m_Curve:
  1630. - time: 0
  1631. value: 0
  1632. inSlope: 0
  1633. outSlope: 0
  1634. tangentMode: 0
  1635. - time: 1
  1636. value: 0
  1637. inSlope: 0
  1638. outSlope: 0
  1639. tangentMode: 0
  1640. m_PreInfinity: 2
  1641. m_PostInfinity: 2
  1642. m_RotationOrder: 4
  1643. minMaxState: 0
  1644. minKillSpeed: 0
  1645. radiusScale: 1
  1646. collidesWith:
  1647. serializedVersion: 2
  1648. m_Bits: 4294967295
  1649. maxCollisionShapes: 256
  1650. quality: 0
  1651. voxelSize: 0.5
  1652. collisionMessages: 0
  1653. collidesWithDynamic: 1
  1654. interiorCollisions: 1
  1655. SubModule:
  1656. enabled: 0
  1657. subEmitterBirth: {fileID: 0}
  1658. subEmitterBirth1: {fileID: 0}
  1659. subEmitterCollision: {fileID: 0}
  1660. subEmitterCollision1: {fileID: 0}
  1661. subEmitterDeath: {fileID: 0}
  1662. subEmitterDeath1: {fileID: 0}
  1663. --- !u!198 &19800002
  1664. ParticleSystem:
  1665. m_ObjectHideFlags: 1
  1666. m_PrefabParentObject: {fileID: 0}
  1667. m_PrefabInternal: {fileID: 100100000}
  1668. m_GameObject: {fileID: 100004}
  1669. serializedVersion: 2
  1670. lengthInSec: 2
  1671. startDelay:
  1672. scalar: 0
  1673. maxCurve:
  1674. serializedVersion: 2
  1675. m_Curve:
  1676. - time: 0
  1677. value: 1
  1678. inSlope: 0
  1679. outSlope: 0
  1680. tangentMode: 0
  1681. - time: 1
  1682. value: 1
  1683. inSlope: 0
  1684. outSlope: 0
  1685. tangentMode: 0
  1686. m_PreInfinity: 2
  1687. m_PostInfinity: 2
  1688. m_RotationOrder: 4
  1689. minCurve:
  1690. serializedVersion: 2
  1691. m_Curve:
  1692. - time: 0
  1693. value: 0
  1694. inSlope: 0
  1695. outSlope: 0
  1696. tangentMode: 0
  1697. - time: 1
  1698. value: 0
  1699. inSlope: 0
  1700. outSlope: 0
  1701. tangentMode: 0
  1702. m_PreInfinity: 2
  1703. m_PostInfinity: 2
  1704. m_RotationOrder: 4
  1705. minMaxState: 0
  1706. speed: 1
  1707. randomSeed: 0
  1708. looping: 0
  1709. prewarm: 0
  1710. playOnAwake: 1
  1711. moveWithTransform: 1
  1712. scalingMode: 2
  1713. InitialModule:
  1714. serializedVersion: 2
  1715. enabled: 1
  1716. startLifetime:
  1717. scalar: 0.3
  1718. maxCurve:
  1719. serializedVersion: 2
  1720. m_Curve:
  1721. - time: 0
  1722. value: 1
  1723. inSlope: 0
  1724. outSlope: 0
  1725. tangentMode: 0
  1726. m_PreInfinity: 2
  1727. m_PostInfinity: 2
  1728. m_RotationOrder: 4
  1729. minCurve:
  1730. serializedVersion: 2
  1731. m_Curve:
  1732. - time: 0
  1733. value: 0.3333333
  1734. inSlope: 0
  1735. outSlope: 0
  1736. tangentMode: 0
  1737. m_PreInfinity: 2
  1738. m_PostInfinity: 2
  1739. m_RotationOrder: 4
  1740. minMaxState: 3
  1741. startSpeed:
  1742. scalar: 20
  1743. maxCurve:
  1744. serializedVersion: 2
  1745. m_Curve:
  1746. - time: 0
  1747. value: 1
  1748. inSlope: 0
  1749. outSlope: 0
  1750. tangentMode: 0
  1751. m_PreInfinity: 2
  1752. m_PostInfinity: 2
  1753. m_RotationOrder: 4
  1754. minCurve:
  1755. serializedVersion: 2
  1756. m_Curve:
  1757. - time: 0
  1758. value: 0.5
  1759. inSlope: 0
  1760. outSlope: 0
  1761. tangentMode: 0
  1762. m_PreInfinity: 2
  1763. m_PostInfinity: 2
  1764. m_RotationOrder: 4
  1765. minMaxState: 3
  1766. startColor:
  1767. maxGradient:
  1768. key0:
  1769. serializedVersion: 2
  1770. rgba: 4294967295
  1771. key1:
  1772. serializedVersion: 2
  1773. rgba: 4294967295
  1774. key2:
  1775. serializedVersion: 2
  1776. rgba: 0
  1777. key3:
  1778. serializedVersion: 2
  1779. rgba: 0
  1780. key4:
  1781. serializedVersion: 2
  1782. rgba: 0
  1783. key5:
  1784. serializedVersion: 2
  1785. rgba: 0
  1786. key6:
  1787. serializedVersion: 2
  1788. rgba: 0
  1789. key7:
  1790. serializedVersion: 2
  1791. rgba: 0
  1792. ctime0: 0
  1793. ctime1: 65535
  1794. ctime2: 0
  1795. ctime3: 0
  1796. ctime4: 0
  1797. ctime5: 0
  1798. ctime6: 0
  1799. ctime7: 0
  1800. atime0: 0
  1801. atime1: 65535
  1802. atime2: 0
  1803. atime3: 0
  1804. atime4: 0
  1805. atime5: 0
  1806. atime6: 0
  1807. atime7: 0
  1808. m_NumColorKeys: 2
  1809. m_NumAlphaKeys: 2
  1810. minGradient:
  1811. key0:
  1812. serializedVersion: 2
  1813. rgba: 4294967295
  1814. key1:
  1815. serializedVersion: 2
  1816. rgba: 4294967295
  1817. key2:
  1818. serializedVersion: 2
  1819. rgba: 0
  1820. key3:
  1821. serializedVersion: 2
  1822. rgba: 0
  1823. key4:
  1824. serializedVersion: 2
  1825. rgba: 0
  1826. key5:
  1827. serializedVersion: 2
  1828. rgba: 0
  1829. key6:
  1830. serializedVersion: 2
  1831. rgba: 0
  1832. key7:
  1833. serializedVersion: 2
  1834. rgba: 0
  1835. ctime0: 0
  1836. ctime1: 65535
  1837. ctime2: 0
  1838. ctime3: 0
  1839. ctime4: 0
  1840. ctime5: 0
  1841. ctime6: 0
  1842. ctime7: 0
  1843. atime0: 0
  1844. atime1: 65535
  1845. atime2: 0
  1846. atime3: 0
  1847. atime4: 0
  1848. atime5: 0
  1849. atime6: 0
  1850. atime7: 0
  1851. m_NumColorKeys: 2
  1852. m_NumAlphaKeys: 2
  1853. minColor:
  1854. serializedVersion: 2
  1855. rgba: 4294967295
  1856. maxColor:
  1857. serializedVersion: 2
  1858. rgba: 4294967295
  1859. minMaxState: 0
  1860. startSize:
  1861. scalar: 0.1
  1862. maxCurve:
  1863. serializedVersion: 2
  1864. m_Curve:
  1865. - time: 0
  1866. value: 1
  1867. inSlope: 0
  1868. outSlope: 0
  1869. tangentMode: 0
  1870. m_PreInfinity: 2
  1871. m_PostInfinity: 2
  1872. m_RotationOrder: 4
  1873. minCurve:
  1874. serializedVersion: 2
  1875. m_Curve:
  1876. - time: 0
  1877. value: 0.5
  1878. inSlope: 0
  1879. outSlope: 0
  1880. tangentMode: 0
  1881. m_PreInfinity: 2
  1882. m_PostInfinity: 2
  1883. m_RotationOrder: 4
  1884. minMaxState: 3
  1885. startRotationX:
  1886. scalar: 1
  1887. maxCurve:
  1888. serializedVersion: 2
  1889. m_Curve:
  1890. - time: 0
  1891. value: 1
  1892. inSlope: 0
  1893. outSlope: 0
  1894. tangentMode: 0
  1895. - time: 1
  1896. value: 1
  1897. inSlope: 0
  1898. outSlope: 0
  1899. tangentMode: 0
  1900. m_PreInfinity: 2
  1901. m_PostInfinity: 2
  1902. m_RotationOrder: 4
  1903. minCurve:
  1904. serializedVersion: 2
  1905. m_Curve:
  1906. - time: 0
  1907. value: 0
  1908. inSlope: 0
  1909. outSlope: 0
  1910. tangentMode: 0
  1911. - time: 1
  1912. value: 0
  1913. inSlope: 0
  1914. outSlope: 0
  1915. tangentMode: 0
  1916. m_PreInfinity: 2
  1917. m_PostInfinity: 2
  1918. m_RotationOrder: 4
  1919. minMaxState: 0
  1920. startRotationY:
  1921. scalar: 1
  1922. maxCurve:
  1923. serializedVersion: 2
  1924. m_Curve:
  1925. - time: 0
  1926. value: 1
  1927. inSlope: 0
  1928. outSlope: 0
  1929. tangentMode: 0
  1930. - time: 1
  1931. value: 1
  1932. inSlope: 0
  1933. outSlope: 0
  1934. tangentMode: 0
  1935. m_PreInfinity: 2
  1936. m_PostInfinity: 2
  1937. m_RotationOrder: 4
  1938. minCurve:
  1939. serializedVersion: 2
  1940. m_Curve:
  1941. - time: 0
  1942. value: 0
  1943. inSlope: 0
  1944. outSlope: 0
  1945. tangentMode: 0
  1946. - time: 1
  1947. value: 0
  1948. inSlope: 0
  1949. outSlope: 0
  1950. tangentMode: 0
  1951. m_PreInfinity: 2
  1952. m_PostInfinity: 2
  1953. m_RotationOrder: 4
  1954. minMaxState: 0
  1955. startRotation:
  1956. scalar: 0
  1957. maxCurve:
  1958. serializedVersion: 2
  1959. m_Curve:
  1960. - time: 0
  1961. value: 1
  1962. inSlope: 0
  1963. outSlope: 0
  1964. tangentMode: 0
  1965. m_PreInfinity: 2
  1966. m_PostInfinity: 2
  1967. m_RotationOrder: 4
  1968. minCurve:
  1969. serializedVersion: 2
  1970. m_Curve:
  1971. - time: 0
  1972. value: -1
  1973. inSlope: 0
  1974. outSlope: 0
  1975. tangentMode: 0
  1976. m_PreInfinity: 2
  1977. m_PostInfinity: 2
  1978. m_RotationOrder: 4
  1979. minMaxState: 0
  1980. randomizeRotationDirection: 0
  1981. gravityModifier: 2.4
  1982. maxNumParticles: 28
  1983. rotation3D: 0
  1984. ShapeModule:
  1985. serializedVersion: 2
  1986. enabled: 1
  1987. type: 1
  1988. radius: 0.4
  1989. angle: 25
  1990. length: 5
  1991. boxX: 4
  1992. boxY: 4
  1993. boxZ: 4
  1994. arc: 360
  1995. placementMode: 0
  1996. m_Mesh: {fileID: 0}
  1997. m_MeshRenderer: {fileID: 0}
  1998. m_SkinnedMeshRenderer: {fileID: 0}
  1999. m_MeshMaterialIndex: 0
  2000. m_MeshNormalOffset: 0
  2001. m_UseMeshMaterialIndex: 0
  2002. m_UseMeshColors: 1
  2003. randomDirection: 0
  2004. EmissionModule:
  2005. enabled: 1
  2006. serializedVersion: 2
  2007. m_Type: 0
  2008. rate:
  2009. scalar: 0
  2010. maxCurve:
  2011. serializedVersion: 2
  2012. m_Curve:
  2013. - time: 0
  2014. value: 1
  2015. inSlope: 0
  2016. outSlope: 0
  2017. tangentMode: 0
  2018. - time: 1
  2019. value: 1
  2020. inSlope: 0
  2021. outSlope: 0
  2022. tangentMode: 0
  2023. m_PreInfinity: 2
  2024. m_PostInfinity: 2
  2025. m_RotationOrder: 4
  2026. minCurve:
  2027. serializedVersion: 2
  2028. m_Curve:
  2029. - time: 0
  2030. value: 0
  2031. inSlope: 0
  2032. outSlope: 0
  2033. tangentMode: 0
  2034. - time: 1
  2035. value: 0
  2036. inSlope: 0
  2037. outSlope: 0
  2038. tangentMode: 0
  2039. m_PreInfinity: 2
  2040. m_PostInfinity: 2
  2041. m_RotationOrder: 4
  2042. minMaxState: 0
  2043. cnt0: 50
  2044. cnt1: 8
  2045. cnt2: 8
  2046. cnt3: 8
  2047. cntmax0: 50
  2048. cntmax1: 8
  2049. cntmax2: 8
  2050. cntmax3: 8
  2051. time0: 0
  2052. time1: 0.2
  2053. time2: 0.4
  2054. time3: 0.5
  2055. m_BurstCount: 1
  2056. SizeModule:
  2057. enabled: 1
  2058. curve:
  2059. scalar: 1
  2060. maxCurve:
  2061. serializedVersion: 2
  2062. m_Curve:
  2063. - time: 0
  2064. value: 0.39867103
  2065. inSlope: 2
  2066. outSlope: 2
  2067. tangentMode: 0
  2068. - time: 0.34722224
  2069. value: 0.7641196
  2070. inSlope: 0.8239188
  2071. outSlope: 0.8239188
  2072. tangentMode: 0
  2073. - time: 1
  2074. value: 0.99003303
  2075. inSlope: 0
  2076. outSlope: 0
  2077. tangentMode: 0
  2078. m_PreInfinity: 2
  2079. m_PostInfinity: 2
  2080. m_RotationOrder: 4
  2081. minCurve:
  2082. serializedVersion: 2
  2083. m_Curve:
  2084. - time: 0
  2085. value: 0
  2086. inSlope: 0
  2087. outSlope: 0
  2088. tangentMode: 0
  2089. - time: 1
  2090. value: 0
  2091. inSlope: 0
  2092. outSlope: 0
  2093. tangentMode: 0
  2094. m_PreInfinity: 2
  2095. m_PostInfinity: 2
  2096. m_RotationOrder: 4
  2097. minMaxState: 1
  2098. RotationModule:
  2099. enabled: 0
  2100. x:
  2101. scalar: 1
  2102. maxCurve:
  2103. serializedVersion: 2
  2104. m_Curve:
  2105. - time: 0
  2106. value: 1
  2107. inSlope: 0
  2108. outSlope: 0
  2109. tangentMode: 0
  2110. - time: 1
  2111. value: 1
  2112. inSlope: 0
  2113. outSlope: 0
  2114. tangentMode: 0
  2115. m_PreInfinity: 2
  2116. m_PostInfinity: 2
  2117. m_RotationOrder: 4
  2118. minCurve:
  2119. serializedVersion: 2
  2120. m_Curve:
  2121. - time: 0
  2122. value: 0
  2123. inSlope: 0
  2124. outSlope: 0
  2125. tangentMode: 0
  2126. - time: 1
  2127. value: 0
  2128. inSlope: 0
  2129. outSlope: 0
  2130. tangentMode: 0
  2131. m_PreInfinity: 2
  2132. m_PostInfinity: 2
  2133. m_RotationOrder: 4
  2134. minMaxState: 0
  2135. y:
  2136. scalar: 1
  2137. maxCurve:
  2138. serializedVersion: 2
  2139. m_Curve:
  2140. - time: 0
  2141. value: 1
  2142. inSlope: 0
  2143. outSlope: 0
  2144. tangentMode: 0
  2145. - time: 1
  2146. value: 1
  2147. inSlope: 0
  2148. outSlope: 0
  2149. tangentMode: 0
  2150. m_PreInfinity: 2
  2151. m_PostInfinity: 2
  2152. m_RotationOrder: 4
  2153. minCurve:
  2154. serializedVersion: 2
  2155. m_Curve:
  2156. - time: 0
  2157. value: 0
  2158. inSlope: 0
  2159. outSlope: 0
  2160. tangentMode: 0
  2161. - time: 1
  2162. value: 0
  2163. inSlope: 0
  2164. outSlope: 0
  2165. tangentMode: 0
  2166. m_PreInfinity: 2
  2167. m_PostInfinity: 2
  2168. m_RotationOrder: 4
  2169. minMaxState: 0
  2170. curve:
  2171. scalar: 0.43633232
  2172. maxCurve:
  2173. serializedVersion: 2
  2174. m_Curve:
  2175. - time: 0
  2176. value: 1
  2177. inSlope: 0
  2178. outSlope: 0
  2179. tangentMode: 0
  2180. m_PreInfinity: 2
  2181. m_PostInfinity: 2
  2182. m_RotationOrder: 4
  2183. minCurve:
  2184. serializedVersion: 2
  2185. m_Curve:
  2186. - time: 0
  2187. value: -1
  2188. inSlope: 0
  2189. outSlope: 0
  2190. tangentMode: 0
  2191. m_PreInfinity: 2
  2192. m_PostInfinity: 2
  2193. m_RotationOrder: 4
  2194. minMaxState: 3
  2195. separateAxes: 0
  2196. ColorModule:
  2197. enabled: 1
  2198. gradient:
  2199. maxGradient:
  2200. key0:
  2201. serializedVersion: 2
  2202. rgba: 4294967295
  2203. key1:
  2204. serializedVersion: 2
  2205. rgba: 4292344831
  2206. key2:
  2207. serializedVersion: 2
  2208. rgba: 7926271
  2209. key3:
  2210. serializedVersion: 2
  2211. rgba: 7064575
  2212. key4:
  2213. serializedVersion: 2
  2214. rgba: 12983
  2215. key5:
  2216. serializedVersion: 2
  2217. rgba: 12983
  2218. key6:
  2219. serializedVersion: 2
  2220. rgba: 0
  2221. key7:
  2222. serializedVersion: 2
  2223. rgba: 0
  2224. ctime0: 0
  2225. ctime1: 13107
  2226. ctime2: 26214
  2227. ctime3: 45875
  2228. ctime4: 65535
  2229. ctime5: 55512
  2230. ctime6: 0
  2231. ctime7: 0
  2232. atime0: 0
  2233. atime1: 26214
  2234. atime2: 65535
  2235. atime3: 65535
  2236. atime4: 0
  2237. atime5: 0
  2238. atime6: 0
  2239. atime7: 0
  2240. m_NumColorKeys: 5
  2241. m_NumAlphaKeys: 3
  2242. minGradient:
  2243. key0:
  2244. serializedVersion: 2
  2245. rgba: 4294967295
  2246. key1:
  2247. serializedVersion: 2
  2248. rgba: 4294967295
  2249. key2:
  2250. serializedVersion: 2
  2251. rgba: 0
  2252. key3:
  2253. serializedVersion: 2
  2254. rgba: 0
  2255. key4:
  2256. serializedVersion: 2
  2257. rgba: 0
  2258. key5:
  2259. serializedVersion: 2
  2260. rgba: 0
  2261. key6:
  2262. serializedVersion: 2
  2263. rgba: 0
  2264. key7:
  2265. serializedVersion: 2
  2266. rgba: 0
  2267. ctime0: 0
  2268. ctime1: 65535
  2269. ctime2: 0
  2270. ctime3: 0
  2271. ctime4: 0
  2272. ctime5: 0
  2273. ctime6: 0
  2274. ctime7: 0
  2275. atime0: 0
  2276. atime1: 65535
  2277. atime2: 0
  2278. atime3: 0
  2279. atime4: 0
  2280. atime5: 0
  2281. atime6: 0
  2282. atime7: 0
  2283. m_NumColorKeys: 2
  2284. m_NumAlphaKeys: 2
  2285. minColor:
  2286. serializedVersion: 2
  2287. rgba: 4294967295
  2288. maxColor:
  2289. serializedVersion: 2
  2290. rgba: 4294967295
  2291. minMaxState: 1
  2292. UVModule:
  2293. enabled: 0
  2294. frameOverTime:
  2295. scalar: 1
  2296. maxCurve:
  2297. serializedVersion: 2
  2298. m_Curve:
  2299. - time: 0
  2300. value: 0
  2301. inSlope: 0
  2302. outSlope: 1
  2303. tangentMode: 0
  2304. - time: 1
  2305. value: 1
  2306. inSlope: 1
  2307. outSlope: 0
  2308. tangentMode: 0
  2309. m_PreInfinity: 2
  2310. m_PostInfinity: 2
  2311. m_RotationOrder: 4
  2312. minCurve:
  2313. serializedVersion: 2
  2314. m_Curve:
  2315. - time: 0
  2316. value: 0
  2317. inSlope: 0
  2318. outSlope: 1
  2319. tangentMode: 0
  2320. - time: 1
  2321. value: 1
  2322. inSlope: 1
  2323. outSlope: 0
  2324. tangentMode: 0
  2325. m_PreInfinity: 2
  2326. m_PostInfinity: 2
  2327. m_RotationOrder: 4
  2328. minMaxState: 1
  2329. tilesX: 1
  2330. tilesY: 1
  2331. animationType: 0
  2332. rowIndex: 0
  2333. cycles: 1
  2334. randomRow: 1
  2335. VelocityModule:
  2336. enabled: 0
  2337. x:
  2338. scalar: 0
  2339. maxCurve:
  2340. serializedVersion: 2
  2341. m_Curve:
  2342. - time: 0
  2343. value: 1
  2344. inSlope: 0
  2345. outSlope: 0
  2346. tangentMode: 0
  2347. - time: 1
  2348. value: 1
  2349. inSlope: 0
  2350. outSlope: 0
  2351. tangentMode: 0
  2352. m_PreInfinity: 2
  2353. m_PostInfinity: 2
  2354. m_RotationOrder: 4
  2355. minCurve:
  2356. serializedVersion: 2
  2357. m_Curve:
  2358. - time: 0
  2359. value: 0
  2360. inSlope: 0
  2361. outSlope: 0
  2362. tangentMode: 0
  2363. - time: 1
  2364. value: 0
  2365. inSlope: 0
  2366. outSlope: 0
  2367. tangentMode: 0
  2368. m_PreInfinity: 2
  2369. m_PostInfinity: 2
  2370. m_RotationOrder: 4
  2371. minMaxState: 0
  2372. y:
  2373. scalar: 0.2
  2374. maxCurve:
  2375. serializedVersion: 2
  2376. m_Curve:
  2377. - time: 0
  2378. value: 1
  2379. inSlope: 0
  2380. outSlope: 0
  2381. tangentMode: 0
  2382. - time: 1
  2383. value: 1
  2384. inSlope: 0
  2385. outSlope: 0
  2386. tangentMode: 0
  2387. m_PreInfinity: 2
  2388. m_PostInfinity: 2
  2389. m_RotationOrder: 4
  2390. minCurve:
  2391. serializedVersion: 2
  2392. m_Curve:
  2393. - time: 0
  2394. value: 0
  2395. inSlope: 0
  2396. outSlope: 0
  2397. tangentMode: 0
  2398. - time: 1
  2399. value: 0
  2400. inSlope: 0
  2401. outSlope: 0
  2402. tangentMode: 0
  2403. m_PreInfinity: 2
  2404. m_PostInfinity: 2
  2405. m_RotationOrder: 4
  2406. minMaxState: 0
  2407. z:
  2408. scalar: 0
  2409. maxCurve:
  2410. serializedVersion: 2
  2411. m_Curve:
  2412. - time: 0
  2413. value: 1
  2414. inSlope: 0
  2415. outSlope: 0
  2416. tangentMode: 0
  2417. - time: 1
  2418. value: 1
  2419. inSlope: 0
  2420. outSlope: 0
  2421. tangentMode: 0
  2422. m_PreInfinity: 2
  2423. m_PostInfinity: 2
  2424. m_RotationOrder: 4
  2425. minCurve:
  2426. serializedVersion: 2
  2427. m_Curve:
  2428. - time: 0
  2429. value: 0
  2430. inSlope: 0
  2431. outSlope: 0
  2432. tangentMode: 0
  2433. - time: 1
  2434. value: 0
  2435. inSlope: 0
  2436. outSlope: 0
  2437. tangentMode: 0
  2438. m_PreInfinity: 2
  2439. m_PostInfinity: 2
  2440. m_RotationOrder: 4
  2441. minMaxState: 0
  2442. inWorldSpace: 1
  2443. InheritVelocityModule:
  2444. enabled: 0
  2445. m_Mode: 0
  2446. m_Curve:
  2447. scalar: 1
  2448. maxCurve:
  2449. serializedVersion: 2
  2450. m_Curve:
  2451. - time: 0
  2452. value: 1
  2453. inSlope: 0
  2454. outSlope: 0
  2455. tangentMode: 0
  2456. - time: 1
  2457. value: 1
  2458. inSlope: 0
  2459. outSlope: 0
  2460. tangentMode: 0
  2461. m_PreInfinity: 2
  2462. m_PostInfinity: 2
  2463. m_RotationOrder: 4
  2464. minCurve:
  2465. serializedVersion: 2
  2466. m_Curve:
  2467. - time: 0
  2468. value: 0
  2469. inSlope: 0
  2470. outSlope: 0
  2471. tangentMode: 0
  2472. - time: 1
  2473. value: 0
  2474. inSlope: 0
  2475. outSlope: 0
  2476. tangentMode: 0
  2477. m_PreInfinity: 2
  2478. m_PostInfinity: 2
  2479. m_RotationOrder: 4
  2480. minMaxState: 0
  2481. ForceModule:
  2482. enabled: 0
  2483. x:
  2484. scalar: 0
  2485. maxCurve:
  2486. serializedVersion: 2
  2487. m_Curve:
  2488. - time: 0
  2489. value: 1
  2490. inSlope: 0
  2491. outSlope: 0
  2492. tangentMode: 0
  2493. - time: 1
  2494. value: 1
  2495. inSlope: 0
  2496. outSlope: 0
  2497. tangentMode: 0
  2498. m_PreInfinity: 2
  2499. m_PostInfinity: 2
  2500. m_RotationOrder: 4
  2501. minCurve:
  2502. serializedVersion: 2
  2503. m_Curve:
  2504. - time: 0
  2505. value: 0
  2506. inSlope: 0
  2507. outSlope: 0
  2508. tangentMode: 0
  2509. - time: 1
  2510. value: 0
  2511. inSlope: 0
  2512. outSlope: 0
  2513. tangentMode: 0
  2514. m_PreInfinity: 2
  2515. m_PostInfinity: 2
  2516. m_RotationOrder: 4
  2517. minMaxState: 0
  2518. y:
  2519. scalar: 0
  2520. maxCurve:
  2521. serializedVersion: 2
  2522. m_Curve:
  2523. - time: 0
  2524. value: 1
  2525. inSlope: 0
  2526. outSlope: 0
  2527. tangentMode: 0
  2528. - time: 1
  2529. value: 1
  2530. inSlope: 0
  2531. outSlope: 0
  2532. tangentMode: 0
  2533. m_PreInfinity: 2
  2534. m_PostInfinity: 2
  2535. m_RotationOrder: 4
  2536. minCurve:
  2537. serializedVersion: 2
  2538. m_Curve:
  2539. - time: 0
  2540. value: 0
  2541. inSlope: 0
  2542. outSlope: 0
  2543. tangentMode: 0
  2544. - time: 1
  2545. value: 0
  2546. inSlope: 0
  2547. outSlope: 0
  2548. tangentMode: 0
  2549. m_PreInfinity: 2
  2550. m_PostInfinity: 2
  2551. m_RotationOrder: 4
  2552. minMaxState: 0
  2553. z:
  2554. scalar: 0
  2555. maxCurve:
  2556. serializedVersion: 2
  2557. m_Curve:
  2558. - time: 0
  2559. value: 1
  2560. inSlope: 0
  2561. outSlope: 0
  2562. tangentMode: 0
  2563. - time: 1
  2564. value: 1
  2565. inSlope: 0
  2566. outSlope: 0
  2567. tangentMode: 0
  2568. m_PreInfinity: 2
  2569. m_PostInfinity: 2
  2570. m_RotationOrder: 4
  2571. minCurve:
  2572. serializedVersion: 2
  2573. m_Curve:
  2574. - time: 0
  2575. value: 0
  2576. inSlope: 0
  2577. outSlope: 0
  2578. tangentMode: 0
  2579. - time: 1
  2580. value: 0
  2581. inSlope: 0
  2582. outSlope: 0
  2583. tangentMode: 0
  2584. m_PreInfinity: 2
  2585. m_PostInfinity: 2
  2586. m_RotationOrder: 4
  2587. minMaxState: 0
  2588. inWorldSpace: 0
  2589. randomizePerFrame: 0
  2590. ExternalForcesModule:
  2591. enabled: 0
  2592. multiplier: 1
  2593. ClampVelocityModule:
  2594. enabled: 1
  2595. x:
  2596. scalar: 1
  2597. maxCurve:
  2598. serializedVersion: 2
  2599. m_Curve:
  2600. - time: 0
  2601. value: 1
  2602. inSlope: 0
  2603. outSlope: 0
  2604. tangentMode: 0
  2605. - time: 1
  2606. value: 1
  2607. inSlope: 0
  2608. outSlope: 0
  2609. tangentMode: 0
  2610. m_PreInfinity: 2
  2611. m_PostInfinity: 2
  2612. m_RotationOrder: 4
  2613. minCurve:
  2614. serializedVersion: 2
  2615. m_Curve:
  2616. - time: 0
  2617. value: 0
  2618. inSlope: 0
  2619. outSlope: 0
  2620. tangentMode: 0
  2621. - time: 1
  2622. value: 0
  2623. inSlope: 0
  2624. outSlope: 0
  2625. tangentMode: 0
  2626. m_PreInfinity: 2
  2627. m_PostInfinity: 2
  2628. m_RotationOrder: 4
  2629. minMaxState: 0
  2630. y:
  2631. scalar: 1
  2632. maxCurve:
  2633. serializedVersion: 2
  2634. m_Curve:
  2635. - time: 0
  2636. value: 1
  2637. inSlope: 0
  2638. outSlope: 0
  2639. tangentMode: 0
  2640. - time: 1
  2641. value: 1
  2642. inSlope: 0
  2643. outSlope: 0
  2644. tangentMode: 0
  2645. m_PreInfinity: 2
  2646. m_PostInfinity: 2
  2647. m_RotationOrder: 4
  2648. minCurve:
  2649. serializedVersion: 2
  2650. m_Curve:
  2651. - time: 0
  2652. value: 0
  2653. inSlope: 0
  2654. outSlope: 0
  2655. tangentMode: 0
  2656. - time: 1
  2657. value: 0
  2658. inSlope: 0
  2659. outSlope: 0
  2660. tangentMode: 0
  2661. m_PreInfinity: 2
  2662. m_PostInfinity: 2
  2663. m_RotationOrder: 4
  2664. minMaxState: 0
  2665. z:
  2666. scalar: 1
  2667. maxCurve:
  2668. serializedVersion: 2
  2669. m_Curve:
  2670. - time: 0
  2671. value: 1
  2672. inSlope: 0
  2673. outSlope: 0
  2674. tangentMode: 0
  2675. - time: 1
  2676. value: 1
  2677. inSlope: 0
  2678. outSlope: 0
  2679. tangentMode: 0
  2680. m_PreInfinity: 2
  2681. m_PostInfinity: 2
  2682. m_RotationOrder: 4
  2683. minCurve:
  2684. serializedVersion: 2
  2685. m_Curve:
  2686. - time: 0
  2687. value: 0
  2688. inSlope: 0
  2689. outSlope: 0
  2690. tangentMode: 0
  2691. - time: 1
  2692. value: 0
  2693. inSlope: 0
  2694. outSlope: 0
  2695. tangentMode: 0
  2696. m_PreInfinity: 2
  2697. m_PostInfinity: 2
  2698. m_RotationOrder: 4
  2699. minMaxState: 0
  2700. magnitude:
  2701. scalar: 40
  2702. maxCurve:
  2703. serializedVersion: 2
  2704. m_Curve:
  2705. - time: 0
  2706. value: 1
  2707. inSlope: -0.9391007
  2708. outSlope: -0.9391007
  2709. tangentMode: 10
  2710. - time: 0.7967213
  2711. value: 0.2517985
  2712. inSlope: -0.9391007
  2713. outSlope: -0.30082327
  2714. tangentMode: 21
  2715. - time: 1
  2716. value: 0.19064754
  2717. inSlope: -0.30082327
  2718. outSlope: 1.2484496
  2719. tangentMode: 5
  2720. m_PreInfinity: 2
  2721. m_PostInfinity: 2
  2722. m_RotationOrder: 4
  2723. minCurve:
  2724. serializedVersion: 2
  2725. m_Curve:
  2726. - time: 0
  2727. value: 0
  2728. inSlope: 0
  2729. outSlope: 0
  2730. tangentMode: 0
  2731. - time: 1
  2732. value: 0
  2733. inSlope: 0
  2734. outSlope: 0
  2735. tangentMode: 0
  2736. m_PreInfinity: 2
  2737. m_PostInfinity: 2
  2738. m_RotationOrder: 4
  2739. minMaxState: 1
  2740. separateAxis: 0
  2741. inWorldSpace: 0
  2742. dampen: 1
  2743. SizeBySpeedModule:
  2744. enabled: 0
  2745. curve:
  2746. scalar: 1
  2747. maxCurve:
  2748. serializedVersion: 2
  2749. m_Curve:
  2750. - time: 0
  2751. value: 1
  2752. inSlope: 0
  2753. outSlope: 0
  2754. tangentMode: 0
  2755. - time: 1
  2756. value: 1
  2757. inSlope: 0
  2758. outSlope: 0
  2759. tangentMode: 0
  2760. m_PreInfinity: 2
  2761. m_PostInfinity: 2
  2762. m_RotationOrder: 4
  2763. minCurve:
  2764. serializedVersion: 2
  2765. m_Curve:
  2766. - time: 0
  2767. value: 0
  2768. inSlope: 0
  2769. outSlope: 0
  2770. tangentMode: 0
  2771. - time: 1
  2772. value: 0
  2773. inSlope: 0
  2774. outSlope: 0
  2775. tangentMode: 0
  2776. m_PreInfinity: 2
  2777. m_PostInfinity: 2
  2778. m_RotationOrder: 4
  2779. minMaxState: 1
  2780. range: {x: 0, y: 1}
  2781. RotationBySpeedModule:
  2782. enabled: 0
  2783. x:
  2784. scalar: 1
  2785. maxCurve:
  2786. serializedVersion: 2
  2787. m_Curve:
  2788. - time: 0
  2789. value: 1
  2790. inSlope: 0
  2791. outSlope: 0
  2792. tangentMode: 0
  2793. - time: 1
  2794. value: 1
  2795. inSlope: 0
  2796. outSlope: 0
  2797. tangentMode: 0
  2798. m_PreInfinity: 2
  2799. m_PostInfinity: 2
  2800. m_RotationOrder: 4
  2801. minCurve:
  2802. serializedVersion: 2
  2803. m_Curve:
  2804. - time: 0
  2805. value: 0
  2806. inSlope: 0
  2807. outSlope: 0
  2808. tangentMode: 0
  2809. - time: 1
  2810. value: 0
  2811. inSlope: 0
  2812. outSlope: 0
  2813. tangentMode: 0
  2814. m_PreInfinity: 2
  2815. m_PostInfinity: 2
  2816. m_RotationOrder: 4
  2817. minMaxState: 0
  2818. y:
  2819. scalar: 1
  2820. maxCurve:
  2821. serializedVersion: 2
  2822. m_Curve:
  2823. - time: 0
  2824. value: 1
  2825. inSlope: 0
  2826. outSlope: 0
  2827. tangentMode: 0
  2828. - time: 1
  2829. value: 1
  2830. inSlope: 0
  2831. outSlope: 0
  2832. tangentMode: 0
  2833. m_PreInfinity: 2
  2834. m_PostInfinity: 2
  2835. m_RotationOrder: 4
  2836. minCurve:
  2837. serializedVersion: 2
  2838. m_Curve:
  2839. - time: 0
  2840. value: 0
  2841. inSlope: 0
  2842. outSlope: 0
  2843. tangentMode: 0
  2844. - time: 1
  2845. value: 0
  2846. inSlope: 0
  2847. outSlope: 0
  2848. tangentMode: 0
  2849. m_PreInfinity: 2
  2850. m_PostInfinity: 2
  2851. m_RotationOrder: 4
  2852. minMaxState: 0
  2853. curve:
  2854. scalar: 0.43633232
  2855. maxCurve:
  2856. serializedVersion: 2
  2857. m_Curve:
  2858. - time: 0
  2859. value: 1
  2860. inSlope: 0
  2861. outSlope: 0
  2862. tangentMode: 0
  2863. m_PreInfinity: 2
  2864. m_PostInfinity: 2
  2865. m_RotationOrder: 4
  2866. minCurve:
  2867. serializedVersion: 2
  2868. m_Curve:
  2869. - time: 0
  2870. value: -1
  2871. inSlope: 0
  2872. outSlope: 0
  2873. tangentMode: 0
  2874. m_PreInfinity: 2
  2875. m_PostInfinity: 2
  2876. m_RotationOrder: 4
  2877. minMaxState: 3
  2878. separateAxes: 0
  2879. range: {x: 0, y: 1}
  2880. ColorBySpeedModule:
  2881. enabled: 0
  2882. gradient:
  2883. maxGradient:
  2884. key0:
  2885. serializedVersion: 2
  2886. rgba: 4294967295
  2887. key1:
  2888. serializedVersion: 2
  2889. rgba: 4294967295
  2890. key2:
  2891. serializedVersion: 2
  2892. rgba: 0
  2893. key3:
  2894. serializedVersion: 2
  2895. rgba: 0
  2896. key4:
  2897. serializedVersion: 2
  2898. rgba: 0
  2899. key5:
  2900. serializedVersion: 2
  2901. rgba: 0
  2902. key6:
  2903. serializedVersion: 2
  2904. rgba: 0
  2905. key7:
  2906. serializedVersion: 2
  2907. rgba: 0
  2908. ctime0: 0
  2909. ctime1: 65535
  2910. ctime2: 0
  2911. ctime3: 0
  2912. ctime4: 0
  2913. ctime5: 0
  2914. ctime6: 0
  2915. ctime7: 0
  2916. atime0: 0
  2917. atime1: 65535
  2918. atime2: 0
  2919. atime3: 0
  2920. atime4: 0
  2921. atime5: 0
  2922. atime6: 0
  2923. atime7: 0
  2924. m_NumColorKeys: 2
  2925. m_NumAlphaKeys: 2
  2926. minGradient:
  2927. key0:
  2928. serializedVersion: 2
  2929. rgba: 4294967295
  2930. key1:
  2931. serializedVersion: 2
  2932. rgba: 4294967295
  2933. key2:
  2934. serializedVersion: 2
  2935. rgba: 0
  2936. key3:
  2937. serializedVersion: 2
  2938. rgba: 0
  2939. key4:
  2940. serializedVersion: 2
  2941. rgba: 0
  2942. key5:
  2943. serializedVersion: 2
  2944. rgba: 0
  2945. key6:
  2946. serializedVersion: 2
  2947. rgba: 0
  2948. key7:
  2949. serializedVersion: 2
  2950. rgba: 0
  2951. ctime0: 0
  2952. ctime1: 65535
  2953. ctime2: 0
  2954. ctime3: 0
  2955. ctime4: 0
  2956. ctime5: 0
  2957. ctime6: 0
  2958. ctime7: 0
  2959. atime0: 0
  2960. atime1: 65535
  2961. atime2: 0
  2962. atime3: 0
  2963. atime4: 0
  2964. atime5: 0
  2965. atime6: 0
  2966. atime7: 0
  2967. m_NumColorKeys: 2
  2968. m_NumAlphaKeys: 2
  2969. minColor:
  2970. serializedVersion: 2
  2971. rgba: 4294967295
  2972. maxColor:
  2973. serializedVersion: 2
  2974. rgba: 4294967295
  2975. minMaxState: 1
  2976. range: {x: 0, y: 1}
  2977. CollisionModule:
  2978. enabled: 0
  2979. serializedVersion: 2
  2980. type: 0
  2981. collisionMode: 0
  2982. plane0: {fileID: 0}
  2983. plane1: {fileID: 0}
  2984. plane2: {fileID: 0}
  2985. plane3: {fileID: 0}
  2986. plane4: {fileID: 0}
  2987. plane5: {fileID: 0}
  2988. m_Dampen:
  2989. scalar: 0
  2990. maxCurve:
  2991. serializedVersion: 2
  2992. m_Curve:
  2993. - time: 0
  2994. value: 1
  2995. inSlope: 0
  2996. outSlope: 0
  2997. tangentMode: 0
  2998. - time: 1
  2999. value: 1
  3000. inSlope: 0
  3001. outSlope: 0
  3002. tangentMode: 0
  3003. m_PreInfinity: 2
  3004. m_PostInfinity: 2
  3005. m_RotationOrder: 4
  3006. minCurve:
  3007. serializedVersion: 2
  3008. m_Curve:
  3009. - time: 0
  3010. value: 0
  3011. inSlope: 0
  3012. outSlope: 0
  3013. tangentMode: 0
  3014. - time: 1
  3015. value: 0
  3016. inSlope: 0
  3017. outSlope: 0
  3018. tangentMode: 0
  3019. m_PreInfinity: 2
  3020. m_PostInfinity: 2
  3021. m_RotationOrder: 4
  3022. minMaxState: 0
  3023. m_Bounce:
  3024. scalar: 1
  3025. maxCurve:
  3026. serializedVersion: 2
  3027. m_Curve:
  3028. - time: 0
  3029. value: 1
  3030. inSlope: 0
  3031. outSlope: 0
  3032. tangentMode: 0
  3033. - time: 1
  3034. value: 1
  3035. inSlope: 0
  3036. outSlope: 0
  3037. tangentMode: 0
  3038. m_PreInfinity: 2
  3039. m_PostInfinity: 2
  3040. m_RotationOrder: 4
  3041. minCurve:
  3042. serializedVersion: 2
  3043. m_Curve:
  3044. - time: 0
  3045. value: 0
  3046. inSlope: 0
  3047. outSlope: 0
  3048. tangentMode: 0
  3049. - time: 1
  3050. value: 0
  3051. inSlope: 0
  3052. outSlope: 0
  3053. tangentMode: 0
  3054. m_PreInfinity: 2
  3055. m_PostInfinity: 2
  3056. m_RotationOrder: 4
  3057. minMaxState: 0
  3058. m_EnergyLossOnCollision:
  3059. scalar: 0
  3060. maxCurve:
  3061. serializedVersion: 2
  3062. m_Curve:
  3063. - time: 0
  3064. value: 1
  3065. inSlope: 0
  3066. outSlope: 0
  3067. tangentMode: 0
  3068. - time: 1
  3069. value: 1
  3070. inSlope: 0
  3071. outSlope: 0
  3072. tangentMode: 0
  3073. m_PreInfinity: 2
  3074. m_PostInfinity: 2
  3075. m_RotationOrder: 4
  3076. minCurve:
  3077. serializedVersion: 2
  3078. m_Curve:
  3079. - time: 0
  3080. value: 0
  3081. inSlope: 0
  3082. outSlope: 0
  3083. tangentMode: 0
  3084. - time: 1
  3085. value: 0
  3086. inSlope: 0
  3087. outSlope: 0
  3088. tangentMode: 0
  3089. m_PreInfinity: 2
  3090. m_PostInfinity: 2
  3091. m_RotationOrder: 4
  3092. minMaxState: 0
  3093. minKillSpeed: 0
  3094. radiusScale: 1
  3095. collidesWith:
  3096. serializedVersion: 2
  3097. m_Bits: 4294967295
  3098. maxCollisionShapes: 256
  3099. quality: 0
  3100. voxelSize: 0.5
  3101. collisionMessages: 0
  3102. collidesWithDynamic: 1
  3103. interiorCollisions: 1
  3104. SubModule:
  3105. enabled: 0
  3106. subEmitterBirth: {fileID: 0}
  3107. subEmitterBirth1: {fileID: 0}
  3108. subEmitterCollision: {fileID: 0}
  3109. subEmitterCollision1: {fileID: 0}
  3110. subEmitterDeath: {fileID: 0}
  3111. subEmitterDeath1: {fileID: 0}
  3112. --- !u!198 &19800004
  3113. ParticleSystem:
  3114. m_ObjectHideFlags: 1
  3115. m_PrefabParentObject: {fileID: 0}
  3116. m_PrefabInternal: {fileID: 100100000}
  3117. m_GameObject: {fileID: 100012}
  3118. serializedVersion: 2
  3119. lengthInSec: 2
  3120. startDelay:
  3121. scalar: 0
  3122. maxCurve:
  3123. serializedVersion: 2
  3124. m_Curve:
  3125. - time: 0
  3126. value: 1
  3127. inSlope: 0
  3128. outSlope: 0
  3129. tangentMode: 0
  3130. - time: 1
  3131. value: 1
  3132. inSlope: 0
  3133. outSlope: 0
  3134. tangentMode: 0
  3135. m_PreInfinity: 2
  3136. m_PostInfinity: 2
  3137. m_RotationOrder: 4
  3138. minCurve:
  3139. serializedVersion: 2
  3140. m_Curve:
  3141. - time: 0
  3142. value: 0
  3143. inSlope: 0
  3144. outSlope: 0
  3145. tangentMode: 0
  3146. - time: 1
  3147. value: 0
  3148. inSlope: 0
  3149. outSlope: 0
  3150. tangentMode: 0
  3151. m_PreInfinity: 2
  3152. m_PostInfinity: 2
  3153. m_RotationOrder: 4
  3154. minMaxState: 0
  3155. speed: 1
  3156. randomSeed: 0
  3157. looping: 0
  3158. prewarm: 0
  3159. playOnAwake: 1
  3160. moveWithTransform: 0
  3161. scalingMode: 2
  3162. InitialModule:
  3163. serializedVersion: 2
  3164. enabled: 1
  3165. startLifetime:
  3166. scalar: 2
  3167. maxCurve:
  3168. serializedVersion: 2
  3169. m_Curve:
  3170. - time: 0
  3171. value: 1
  3172. inSlope: 0
  3173. outSlope: 0
  3174. tangentMode: 0
  3175. m_PreInfinity: 2
  3176. m_PostInfinity: 2
  3177. m_RotationOrder: 4
  3178. minCurve:
  3179. serializedVersion: 2
  3180. m_Curve:
  3181. - time: 0
  3182. value: 0.75
  3183. inSlope: 0
  3184. outSlope: 0
  3185. tangentMode: 0
  3186. m_PreInfinity: 2
  3187. m_PostInfinity: 2
  3188. m_RotationOrder: 4
  3189. minMaxState: 3
  3190. startSpeed:
  3191. scalar: 2
  3192. maxCurve:
  3193. serializedVersion: 2
  3194. m_Curve:
  3195. - time: 0
  3196. value: 1
  3197. inSlope: 0
  3198. outSlope: 0
  3199. tangentMode: 0
  3200. - time: 1
  3201. value: 1
  3202. inSlope: 0
  3203. outSlope: 0
  3204. tangentMode: 0
  3205. m_PreInfinity: 2
  3206. m_PostInfinity: 2
  3207. m_RotationOrder: 4
  3208. minCurve:
  3209. serializedVersion: 2
  3210. m_Curve:
  3211. - time: 0
  3212. value: 0
  3213. inSlope: 0
  3214. outSlope: 0
  3215. tangentMode: 0
  3216. - time: 1
  3217. value: 0
  3218. inSlope: 0
  3219. outSlope: 0
  3220. tangentMode: 0
  3221. m_PreInfinity: 2
  3222. m_PostInfinity: 2
  3223. m_RotationOrder: 4
  3224. minMaxState: 0
  3225. startColor:
  3226. maxGradient:
  3227. key0:
  3228. serializedVersion: 2
  3229. rgba: 4294967295
  3230. key1:
  3231. serializedVersion: 2
  3232. rgba: 4294967295
  3233. key2:
  3234. serializedVersion: 2
  3235. rgba: 0
  3236. key3:
  3237. serializedVersion: 2
  3238. rgba: 0
  3239. key4:
  3240. serializedVersion: 2
  3241. rgba: 0
  3242. key5:
  3243. serializedVersion: 2
  3244. rgba: 0
  3245. key6:
  3246. serializedVersion: 2
  3247. rgba: 0
  3248. key7:
  3249. serializedVersion: 2
  3250. rgba: 0
  3251. ctime0: 0
  3252. ctime1: 65535
  3253. ctime2: 0
  3254. ctime3: 0
  3255. ctime4: 0
  3256. ctime5: 0
  3257. ctime6: 0
  3258. ctime7: 0
  3259. atime0: 0
  3260. atime1: 65535
  3261. atime2: 0
  3262. atime3: 0
  3263. atime4: 0
  3264. atime5: 0
  3265. atime6: 0
  3266. atime7: 0
  3267. m_NumColorKeys: 2
  3268. m_NumAlphaKeys: 2
  3269. minGradient:
  3270. key0:
  3271. serializedVersion: 2
  3272. rgba: 4294967295
  3273. key1:
  3274. serializedVersion: 2
  3275. rgba: 4294967295
  3276. key2:
  3277. serializedVersion: 2
  3278. rgba: 0
  3279. key3:
  3280. serializedVersion: 2
  3281. rgba: 0
  3282. key4:
  3283. serializedVersion: 2
  3284. rgba: 0
  3285. key5:
  3286. serializedVersion: 2
  3287. rgba: 0
  3288. key6:
  3289. serializedVersion: 2
  3290. rgba: 0
  3291. key7:
  3292. serializedVersion: 2
  3293. rgba: 0
  3294. ctime0: 0
  3295. ctime1: 65535
  3296. ctime2: 0
  3297. ctime3: 0
  3298. ctime4: 0
  3299. ctime5: 0
  3300. ctime6: 0
  3301. ctime7: 0
  3302. atime0: 0
  3303. atime1: 65535
  3304. atime2: 0
  3305. atime3: 0
  3306. atime4: 0
  3307. atime5: 0
  3308. atime6: 0
  3309. atime7: 0
  3310. m_NumColorKeys: 2
  3311. m_NumAlphaKeys: 2
  3312. minColor:
  3313. serializedVersion: 2
  3314. rgba: 4294967295
  3315. maxColor:
  3316. serializedVersion: 2
  3317. rgba: 4290500850
  3318. minMaxState: 0
  3319. startSize:
  3320. scalar: 0.2
  3321. maxCurve:
  3322. serializedVersion: 2
  3323. m_Curve:
  3324. - time: 0
  3325. value: 1
  3326. inSlope: 0
  3327. outSlope: 0
  3328. tangentMode: 0
  3329. m_PreInfinity: 2
  3330. m_PostInfinity: 2
  3331. m_RotationOrder: 4
  3332. minCurve:
  3333. serializedVersion: 2
  3334. m_Curve:
  3335. - time: 0
  3336. value: 0.25
  3337. inSlope: 0
  3338. outSlope: 0
  3339. tangentMode: 0
  3340. m_PreInfinity: 2
  3341. m_PostInfinity: 2
  3342. m_RotationOrder: 4
  3343. minMaxState: 3
  3344. startRotationX:
  3345. scalar: 1
  3346. maxCurve:
  3347. serializedVersion: 2
  3348. m_Curve:
  3349. - time: 0
  3350. value: 1
  3351. inSlope: 0
  3352. outSlope: 0
  3353. tangentMode: 0
  3354. - time: 1
  3355. value: 1
  3356. inSlope: 0
  3357. outSlope: 0
  3358. tangentMode: 0
  3359. m_PreInfinity: 2
  3360. m_PostInfinity: 2
  3361. m_RotationOrder: 4
  3362. minCurve:
  3363. serializedVersion: 2
  3364. m_Curve:
  3365. - time: 0
  3366. value: 0
  3367. inSlope: 0
  3368. outSlope: 0
  3369. tangentMode: 0
  3370. - time: 1
  3371. value: 0
  3372. inSlope: 0
  3373. outSlope: 0
  3374. tangentMode: 0
  3375. m_PreInfinity: 2
  3376. m_PostInfinity: 2
  3377. m_RotationOrder: 4
  3378. minMaxState: 0
  3379. startRotationY:
  3380. scalar: 1
  3381. maxCurve:
  3382. serializedVersion: 2
  3383. m_Curve:
  3384. - time: 0
  3385. value: 1
  3386. inSlope: 0
  3387. outSlope: 0
  3388. tangentMode: 0
  3389. - time: 1
  3390. value: 1
  3391. inSlope: 0
  3392. outSlope: 0
  3393. tangentMode: 0
  3394. m_PreInfinity: 2
  3395. m_PostInfinity: 2
  3396. m_RotationOrder: 4
  3397. minCurve:
  3398. serializedVersion: 2
  3399. m_Curve:
  3400. - time: 0
  3401. value: 0
  3402. inSlope: 0
  3403. outSlope: 0
  3404. tangentMode: 0
  3405. - time: 1
  3406. value: 0
  3407. inSlope: 0
  3408. outSlope: 0
  3409. tangentMode: 0
  3410. m_PreInfinity: 2
  3411. m_PostInfinity: 2
  3412. m_RotationOrder: 4
  3413. minMaxState: 0
  3414. startRotation:
  3415. scalar: 6.283185
  3416. maxCurve:
  3417. serializedVersion: 2
  3418. m_Curve:
  3419. - time: 0
  3420. value: 1
  3421. inSlope: 0
  3422. outSlope: 0
  3423. tangentMode: 0
  3424. m_PreInfinity: 2
  3425. m_PostInfinity: 2
  3426. m_RotationOrder: 4
  3427. minCurve:
  3428. serializedVersion: 2
  3429. m_Curve:
  3430. - time: 0
  3431. value: 0
  3432. inSlope: 0
  3433. outSlope: 0
  3434. tangentMode: 0
  3435. m_PreInfinity: 2
  3436. m_PostInfinity: 2
  3437. m_RotationOrder: 4
  3438. minMaxState: 3
  3439. randomizeRotationDirection: 0
  3440. gravityModifier: 0
  3441. maxNumParticles: 50
  3442. rotation3D: 0
  3443. ShapeModule:
  3444. serializedVersion: 2
  3445. enabled: 1
  3446. type: 1
  3447. radius: 0.01
  3448. angle: 25
  3449. length: 5
  3450. boxX: 1
  3451. boxY: 1
  3452. boxZ: 1
  3453. arc: 360
  3454. placementMode: 0
  3455. m_Mesh: {fileID: 0}
  3456. m_MeshRenderer: {fileID: 0}
  3457. m_SkinnedMeshRenderer: {fileID: 0}
  3458. m_MeshMaterialIndex: 0
  3459. m_MeshNormalOffset: 0
  3460. m_UseMeshMaterialIndex: 0
  3461. m_UseMeshColors: 1
  3462. randomDirection: 1
  3463. EmissionModule:
  3464. enabled: 1
  3465. serializedVersion: 2
  3466. m_Type: 0
  3467. rate:
  3468. scalar: 0
  3469. maxCurve:
  3470. serializedVersion: 2
  3471. m_Curve:
  3472. - time: 0
  3473. value: 1
  3474. inSlope: 0
  3475. outSlope: 0
  3476. tangentMode: 0
  3477. - time: 1
  3478. value: 1
  3479. inSlope: 0
  3480. outSlope: 0
  3481. tangentMode: 0
  3482. m_PreInfinity: 2
  3483. m_PostInfinity: 2
  3484. m_RotationOrder: 4
  3485. minCurve:
  3486. serializedVersion: 2
  3487. m_Curve:
  3488. - time: 0
  3489. value: 0
  3490. inSlope: 0
  3491. outSlope: 0
  3492. tangentMode: 0
  3493. - time: 1
  3494. value: 0
  3495. inSlope: 0
  3496. outSlope: 0
  3497. tangentMode: 0
  3498. m_PreInfinity: 2
  3499. m_PostInfinity: 2
  3500. m_RotationOrder: 4
  3501. minMaxState: 0
  3502. cnt0: 50
  3503. cnt1: 100
  3504. cnt2: 100
  3505. cnt3: 100
  3506. cntmax0: 50
  3507. cntmax1: 100
  3508. cntmax2: 100
  3509. cntmax3: 100
  3510. time0: 0
  3511. time1: 0.1
  3512. time2: 0.2
  3513. time3: 0.3
  3514. m_BurstCount: 1
  3515. SizeModule:
  3516. enabled: 1
  3517. curve:
  3518. scalar: 1
  3519. maxCurve:
  3520. serializedVersion: 2
  3521. m_Curve:
  3522. - time: 0
  3523. value: 1
  3524. inSlope: -6.81637
  3525. outSlope: -6.81637
  3526. tangentMode: 10
  3527. - time: 0.056542404
  3528. value: 0.61458606
  3529. inSlope: -1.0897257
  3530. outSlope: -1.0897257
  3531. tangentMode: 10
  3532. - time: 0.12509787
  3533. value: 0.93247217
  3534. inSlope: -0.035754442
  3535. outSlope: -0.035754442
  3536. tangentMode: 10
  3537. - time: 0.20259817
  3538. value: 0.56756765
  3539. inSlope: -0.52445734
  3540. outSlope: -0.52445734
  3541. tangentMode: 10
  3542. - time: 0.285517
  3543. value: 0.8710102
  3544. inSlope: -0.71699464
  3545. outSlope: -0.71699464
  3546. tangentMode: 10
  3547. - time: 0.34509146
  3548. value: 0.5675676
  3549. inSlope: 0.58743334
  3550. outSlope: 0.58743334
  3551. tangentMode: 10
  3552. - time: 0.3989871
  3553. value: 0.9054054
  3554. inSlope: -0.021812677
  3555. outSlope: -0.021812677
  3556. tangentMode: 10
  3557. - time: 0.45679212
  3558. value: 0.5405406
  3559. inSlope: 2.8124678
  3560. outSlope: 2.8124678
  3561. tangentMode: 10
  3562. - time: 0.4849186
  3563. value: 0.87628436
  3564. inSlope: 3.5944245
  3565. outSlope: 3.5944245
  3566. tangentMode: 10
  3567. - time: 0.55278397
  3568. value: 0.5540541
  3569. inSlope: 0.3759172
  3570. outSlope: 0.3759172
  3571. tangentMode: 10
  3572. - time: 0.6006373
  3573. value: 0.81724346
  3574. inSlope: 0.03904128
  3575. outSlope: 0.03904128
  3576. tangentMode: 10
  3577. - time: 0.6690492
  3578. value: 0.44632566
  3579. inSlope: -0.617398
  3580. outSlope: -0.617398
  3581. tangentMode: 10
  3582. - time: 0.7123481
  3583. value: 0.62761974
  3584. inSlope: -2.0749197
  3585. outSlope: -2.0749197
  3586. tangentMode: 10
  3587. - time: 0.7450527
  3588. value: 0.35496563
  3589. inSlope: -2.979307
  3590. outSlope: -2.979307
  3591. tangentMode: 10
  3592. - time: 0.80298555
  3593. value: 0.49274513
  3594. inSlope: -1.8570583
  3595. outSlope: -1.8570583
  3596. tangentMode: 10
  3597. - time: 0.8417865
  3598. value: 0.25635502
  3599. inSlope: -3.8136382
  3600. outSlope: -3.8136382
  3601. tangentMode: 10
  3602. - time: 1
  3603. value: 0.013513505
  3604. inSlope: -1.5348976
  3605. outSlope: -1.5348976
  3606. tangentMode: 10
  3607. m_PreInfinity: 2
  3608. m_PostInfinity: 2
  3609. m_RotationOrder: 4
  3610. minCurve:
  3611. serializedVersion: 2
  3612. m_Curve:
  3613. - time: 0
  3614. value: 0
  3615. inSlope: 0
  3616. outSlope: 0
  3617. tangentMode: 0
  3618. - time: 1
  3619. value: 0
  3620. inSlope: 0
  3621. outSlope: 0
  3622. tangentMode: 0
  3623. m_PreInfinity: 2
  3624. m_PostInfinity: 2
  3625. m_RotationOrder: 4
  3626. minMaxState: 1
  3627. RotationModule:
  3628. enabled: 1
  3629. x:
  3630. scalar: 1
  3631. maxCurve:
  3632. serializedVersion: 2
  3633. m_Curve:
  3634. - time: 0
  3635. value: 1
  3636. inSlope: 0
  3637. outSlope: 0
  3638. tangentMode: 0
  3639. - time: 1
  3640. value: 1
  3641. inSlope: 0
  3642. outSlope: 0
  3643. tangentMode: 0
  3644. m_PreInfinity: 2
  3645. m_PostInfinity: 2
  3646. m_RotationOrder: 4
  3647. minCurve:
  3648. serializedVersion: 2
  3649. m_Curve:
  3650. - time: 0
  3651. value: 0
  3652. inSlope: 0
  3653. outSlope: 0
  3654. tangentMode: 0
  3655. - time: 1
  3656. value: 0
  3657. inSlope: 0
  3658. outSlope: 0
  3659. tangentMode: 0
  3660. m_PreInfinity: 2
  3661. m_PostInfinity: 2
  3662. m_RotationOrder: 4
  3663. minMaxState: 0
  3664. y:
  3665. scalar: 1
  3666. maxCurve:
  3667. serializedVersion: 2
  3668. m_Curve:
  3669. - time: 0
  3670. value: 1
  3671. inSlope: 0
  3672. outSlope: 0
  3673. tangentMode: 0
  3674. - time: 1
  3675. value: 1
  3676. inSlope: 0
  3677. outSlope: 0
  3678. tangentMode: 0
  3679. m_PreInfinity: 2
  3680. m_PostInfinity: 2
  3681. m_RotationOrder: 4
  3682. minCurve:
  3683. serializedVersion: 2
  3684. m_Curve:
  3685. - time: 0
  3686. value: 0
  3687. inSlope: 0
  3688. outSlope: 0
  3689. tangentMode: 0
  3690. - time: 1
  3691. value: 0
  3692. inSlope: 0
  3693. outSlope: 0
  3694. tangentMode: 0
  3695. m_PreInfinity: 2
  3696. m_PostInfinity: 2
  3697. m_RotationOrder: 4
  3698. minMaxState: 0
  3699. curve:
  3700. scalar: 1.7453293
  3701. maxCurve:
  3702. serializedVersion: 2
  3703. m_Curve:
  3704. - time: 0
  3705. value: 1
  3706. inSlope: 0
  3707. outSlope: 0
  3708. tangentMode: 0
  3709. m_PreInfinity: 2
  3710. m_PostInfinity: 2
  3711. m_RotationOrder: 4
  3712. minCurve:
  3713. serializedVersion: 2
  3714. m_Curve:
  3715. - time: 0
  3716. value: 0
  3717. inSlope: 0
  3718. outSlope: 0
  3719. tangentMode: 0
  3720. m_PreInfinity: 2
  3721. m_PostInfinity: 2
  3722. m_RotationOrder: 4
  3723. minMaxState: 3
  3724. separateAxes: 0
  3725. ColorModule:
  3726. enabled: 0
  3727. gradient:
  3728. maxGradient:
  3729. key0:
  3730. serializedVersion: 2
  3731. rgba: 16777215
  3732. key1:
  3733. serializedVersion: 2
  3734. rgba: 352321535
  3735. key2:
  3736. serializedVersion: 2
  3737. rgba: 335544320
  3738. key3:
  3739. serializedVersion: 2
  3740. rgba: 0
  3741. key4:
  3742. serializedVersion: 2
  3743. rgba: 0
  3744. key5:
  3745. serializedVersion: 2
  3746. rgba: 0
  3747. key6:
  3748. serializedVersion: 2
  3749. rgba: 0
  3750. key7:
  3751. serializedVersion: 2
  3752. rgba: 0
  3753. ctime0: 0
  3754. ctime1: 65535
  3755. ctime2: 0
  3756. ctime3: 0
  3757. ctime4: 0
  3758. ctime5: 0
  3759. ctime6: 0
  3760. ctime7: 0
  3761. atime0: 0
  3762. atime1: 9638
  3763. atime2: 38165
  3764. atime3: 65535
  3765. atime4: 65535
  3766. atime5: 0
  3767. atime6: 0
  3768. atime7: 0
  3769. m_NumColorKeys: 2
  3770. m_NumAlphaKeys: 4
  3771. minGradient:
  3772. key0:
  3773. serializedVersion: 2
  3774. rgba: 4294967295
  3775. key1:
  3776. serializedVersion: 2
  3777. rgba: 4294967295
  3778. key2:
  3779. serializedVersion: 2
  3780. rgba: 0
  3781. key3:
  3782. serializedVersion: 2
  3783. rgba: 0
  3784. key4:
  3785. serializedVersion: 2
  3786. rgba: 0
  3787. key5:
  3788. serializedVersion: 2
  3789. rgba: 0
  3790. key6:
  3791. serializedVersion: 2
  3792. rgba: 0
  3793. key7:
  3794. serializedVersion: 2
  3795. rgba: 0
  3796. ctime0: 0
  3797. ctime1: 65535
  3798. ctime2: 0
  3799. ctime3: 0
  3800. ctime4: 0
  3801. ctime5: 0
  3802. ctime6: 0
  3803. ctime7: 0
  3804. atime0: 0
  3805. atime1: 65535
  3806. atime2: 0
  3807. atime3: 0
  3808. atime4: 0
  3809. atime5: 0
  3810. atime6: 0
  3811. atime7: 0
  3812. m_NumColorKeys: 2
  3813. m_NumAlphaKeys: 2
  3814. minColor:
  3815. serializedVersion: 2
  3816. rgba: 4294967295
  3817. maxColor:
  3818. serializedVersion: 2
  3819. rgba: 4294967295
  3820. minMaxState: 1
  3821. UVModule:
  3822. enabled: 0
  3823. frameOverTime:
  3824. scalar: 1
  3825. maxCurve:
  3826. serializedVersion: 2
  3827. m_Curve:
  3828. - time: 0
  3829. value: 0
  3830. inSlope: 0
  3831. outSlope: 1
  3832. tangentMode: 0
  3833. - time: 1
  3834. value: 1
  3835. inSlope: 1
  3836. outSlope: 0
  3837. tangentMode: 0
  3838. m_PreInfinity: 2
  3839. m_PostInfinity: 2
  3840. m_RotationOrder: 4
  3841. minCurve:
  3842. serializedVersion: 2
  3843. m_Curve:
  3844. - time: 0
  3845. value: 0
  3846. inSlope: 0
  3847. outSlope: 1
  3848. tangentMode: 0
  3849. - time: 1
  3850. value: 1
  3851. inSlope: 1
  3852. outSlope: 0
  3853. tangentMode: 0
  3854. m_PreInfinity: 2
  3855. m_PostInfinity: 2
  3856. m_RotationOrder: 4
  3857. minMaxState: 1
  3858. tilesX: 1
  3859. tilesY: 1
  3860. animationType: 0
  3861. rowIndex: 0
  3862. cycles: 1
  3863. randomRow: 1
  3864. VelocityModule:
  3865. enabled: 1
  3866. x:
  3867. scalar: 15
  3868. maxCurve:
  3869. serializedVersion: 2
  3870. m_Curve:
  3871. - time: 0
  3872. value: 1
  3873. inSlope: 0
  3874. outSlope: 0
  3875. tangentMode: 0
  3876. - time: 0.83095723
  3877. value: -0.0047392845
  3878. inSlope: -5.24965
  3879. outSlope: -5.24965
  3880. tangentMode: 0
  3881. m_PreInfinity: 2
  3882. m_PostInfinity: 2
  3883. m_RotationOrder: 4
  3884. minCurve:
  3885. serializedVersion: 2
  3886. m_Curve:
  3887. - time: 0
  3888. value: -1
  3889. inSlope: 0
  3890. outSlope: 0
  3891. tangentMode: 0
  3892. - time: 0.83095723
  3893. value: -0.004739344
  3894. inSlope: 4.8624663
  3895. outSlope: 4.8624663
  3896. tangentMode: 0
  3897. m_PreInfinity: 2
  3898. m_PostInfinity: 2
  3899. m_RotationOrder: 4
  3900. minMaxState: 2
  3901. y:
  3902. scalar: 15
  3903. maxCurve:
  3904. serializedVersion: 2
  3905. m_Curve:
  3906. - time: 0
  3907. value: 1
  3908. inSlope: 0
  3909. outSlope: 0
  3910. tangentMode: 0
  3911. - time: 0.83095723
  3912. value: -0.014217973
  3913. inSlope: -5.398248
  3914. outSlope: -5.398248
  3915. tangentMode: 0
  3916. m_PreInfinity: 2
  3917. m_PostInfinity: 2
  3918. m_RotationOrder: 4
  3919. minCurve:
  3920. serializedVersion: 2
  3921. m_Curve:
  3922. - time: 0
  3923. value: -0.9905213
  3924. inSlope: 0
  3925. outSlope: 0
  3926. tangentMode: 0
  3927. - time: 0.83095723
  3928. value: -0.014217973
  3929. inSlope: 4.968486
  3930. outSlope: 4.968486
  3931. tangentMode: 0
  3932. m_PreInfinity: 2
  3933. m_PostInfinity: 2
  3934. m_RotationOrder: 4
  3935. minMaxState: 2
  3936. z:
  3937. scalar: 15
  3938. maxCurve:
  3939. serializedVersion: 2
  3940. m_Curve:
  3941. - time: 0
  3942. value: 1
  3943. inSlope: 0
  3944. outSlope: 0
  3945. tangentMode: 0
  3946. - time: 0.83095723
  3947. value: -0.014217973
  3948. inSlope: -5.5375094
  3949. outSlope: -5.5375094
  3950. tangentMode: 0
  3951. m_PreInfinity: 2
  3952. m_PostInfinity: 2
  3953. m_RotationOrder: 4
  3954. minCurve:
  3955. serializedVersion: 2
  3956. m_Curve:
  3957. - time: 0
  3958. value: -1
  3959. inSlope: 0
  3960. outSlope: 0
  3961. tangentMode: 0
  3962. - time: 0.83095723
  3963. value: -0.014218032
  3964. inSlope: 4.4700637
  3965. outSlope: 4.4700637
  3966. tangentMode: 0
  3967. m_PreInfinity: 2
  3968. m_PostInfinity: 2
  3969. m_RotationOrder: 4
  3970. minMaxState: 2
  3971. inWorldSpace: 1
  3972. InheritVelocityModule:
  3973. enabled: 0
  3974. m_Mode: 0
  3975. m_Curve:
  3976. scalar: 1
  3977. maxCurve:
  3978. serializedVersion: 2
  3979. m_Curve:
  3980. - time: 0
  3981. value: 1
  3982. inSlope: 0
  3983. outSlope: 0
  3984. tangentMode: 0
  3985. - time: 1
  3986. value: 1
  3987. inSlope: 0
  3988. outSlope: 0
  3989. tangentMode: 0
  3990. m_PreInfinity: 2
  3991. m_PostInfinity: 2
  3992. m_RotationOrder: 4
  3993. minCurve:
  3994. serializedVersion: 2
  3995. m_Curve:
  3996. - time: 0
  3997. value: 0
  3998. inSlope: 0
  3999. outSlope: 0
  4000. tangentMode: 0
  4001. - time: 1
  4002. value: 0
  4003. inSlope: 0
  4004. outSlope: 0
  4005. tangentMode: 0
  4006. m_PreInfinity: 2
  4007. m_PostInfinity: 2
  4008. m_RotationOrder: 4
  4009. minMaxState: 0
  4010. ForceModule:
  4011. enabled: 0
  4012. x:
  4013. scalar: 100
  4014. maxCurve:
  4015. serializedVersion: 2
  4016. m_Curve:
  4017. - time: 0
  4018. value: 1
  4019. inSlope: 0
  4020. outSlope: 0
  4021. tangentMode: 0
  4022. m_PreInfinity: 2
  4023. m_PostInfinity: 2
  4024. m_RotationOrder: 4
  4025. minCurve:
  4026. serializedVersion: 2
  4027. m_Curve:
  4028. - time: 0
  4029. value: -1
  4030. inSlope: 0
  4031. outSlope: 0
  4032. tangentMode: 0
  4033. m_PreInfinity: 2
  4034. m_PostInfinity: 2
  4035. m_RotationOrder: 4
  4036. minMaxState: 3
  4037. y:
  4038. scalar: 100
  4039. maxCurve:
  4040. serializedVersion: 2
  4041. m_Curve:
  4042. - time: 0
  4043. value: 1
  4044. inSlope: 0
  4045. outSlope: 0
  4046. tangentMode: 0
  4047. m_PreInfinity: 2
  4048. m_PostInfinity: 2
  4049. m_RotationOrder: 4
  4050. minCurve:
  4051. serializedVersion: 2
  4052. m_Curve:
  4053. - time: 0
  4054. value: -1
  4055. inSlope: 0
  4056. outSlope: 0
  4057. tangentMode: 0
  4058. m_PreInfinity: 2
  4059. m_PostInfinity: 2
  4060. m_RotationOrder: 4
  4061. minMaxState: 3
  4062. z:
  4063. scalar: 100
  4064. maxCurve:
  4065. serializedVersion: 2
  4066. m_Curve:
  4067. - time: 0
  4068. value: 1
  4069. inSlope: 0
  4070. outSlope: 0
  4071. tangentMode: 0
  4072. m_PreInfinity: 2
  4073. m_PostInfinity: 2
  4074. m_RotationOrder: 4
  4075. minCurve:
  4076. serializedVersion: 2
  4077. m_Curve:
  4078. - time: 0
  4079. value: -1
  4080. inSlope: 0
  4081. outSlope: 0
  4082. tangentMode: 0
  4083. m_PreInfinity: 2
  4084. m_PostInfinity: 2
  4085. m_RotationOrder: 4
  4086. minMaxState: 3
  4087. inWorldSpace: 1
  4088. randomizePerFrame: 1
  4089. ExternalForcesModule:
  4090. enabled: 0
  4091. multiplier: 1
  4092. ClampVelocityModule:
  4093. enabled: 0
  4094. x:
  4095. scalar: 1
  4096. maxCurve:
  4097. serializedVersion: 2
  4098. m_Curve:
  4099. - time: 0
  4100. value: 1
  4101. inSlope: 0
  4102. outSlope: 0
  4103. tangentMode: 0
  4104. - time: 1
  4105. value: 1
  4106. inSlope: 0
  4107. outSlope: 0
  4108. tangentMode: 0
  4109. m_PreInfinity: 2
  4110. m_PostInfinity: 2
  4111. m_RotationOrder: 4
  4112. minCurve:
  4113. serializedVersion: 2
  4114. m_Curve:
  4115. - time: 0
  4116. value: 0
  4117. inSlope: 0
  4118. outSlope: 0
  4119. tangentMode: 0
  4120. - time: 1
  4121. value: 0
  4122. inSlope: 0
  4123. outSlope: 0
  4124. tangentMode: 0
  4125. m_PreInfinity: 2
  4126. m_PostInfinity: 2
  4127. m_RotationOrder: 4
  4128. minMaxState: 0
  4129. y:
  4130. scalar: 1
  4131. maxCurve:
  4132. serializedVersion: 2
  4133. m_Curve:
  4134. - time: 0
  4135. value: 1
  4136. inSlope: 0
  4137. outSlope: 0
  4138. tangentMode: 0
  4139. - time: 1
  4140. value: 1
  4141. inSlope: 0
  4142. outSlope: 0
  4143. tangentMode: 0
  4144. m_PreInfinity: 2
  4145. m_PostInfinity: 2
  4146. m_RotationOrder: 4
  4147. minCurve:
  4148. serializedVersion: 2
  4149. m_Curve:
  4150. - time: 0
  4151. value: 0
  4152. inSlope: 0
  4153. outSlope: 0
  4154. tangentMode: 0
  4155. - time: 1
  4156. value: 0
  4157. inSlope: 0
  4158. outSlope: 0
  4159. tangentMode: 0
  4160. m_PreInfinity: 2
  4161. m_PostInfinity: 2
  4162. m_RotationOrder: 4
  4163. minMaxState: 0
  4164. z:
  4165. scalar: 1
  4166. maxCurve:
  4167. serializedVersion: 2
  4168. m_Curve:
  4169. - time: 0
  4170. value: 1
  4171. inSlope: 0
  4172. outSlope: 0
  4173. tangentMode: 0
  4174. - time: 1
  4175. value: 1
  4176. inSlope: 0
  4177. outSlope: 0
  4178. tangentMode: 0
  4179. m_PreInfinity: 2
  4180. m_PostInfinity: 2
  4181. m_RotationOrder: 4
  4182. minCurve:
  4183. serializedVersion: 2
  4184. m_Curve:
  4185. - time: 0
  4186. value: 0
  4187. inSlope: 0
  4188. outSlope: 0
  4189. tangentMode: 0
  4190. - time: 1
  4191. value: 0
  4192. inSlope: 0
  4193. outSlope: 0
  4194. tangentMode: 0
  4195. m_PreInfinity: 2
  4196. m_PostInfinity: 2
  4197. m_RotationOrder: 4
  4198. minMaxState: 0
  4199. magnitude:
  4200. scalar: 75
  4201. maxCurve:
  4202. serializedVersion: 2
  4203. m_Curve:
  4204. - time: 0
  4205. value: 1
  4206. inSlope: 0
  4207. outSlope: 0
  4208. tangentMode: 0
  4209. - time: 1
  4210. value: 1
  4211. inSlope: 0
  4212. outSlope: 0
  4213. tangentMode: 0
  4214. m_PreInfinity: 2
  4215. m_PostInfinity: 2
  4216. m_RotationOrder: 4
  4217. minCurve:
  4218. serializedVersion: 2
  4219. m_Curve:
  4220. - time: 0
  4221. value: 0
  4222. inSlope: 0
  4223. outSlope: 0
  4224. tangentMode: 0
  4225. - time: 1
  4226. value: 0
  4227. inSlope: 0
  4228. outSlope: 0
  4229. tangentMode: 0
  4230. m_PreInfinity: 2
  4231. m_PostInfinity: 2
  4232. m_RotationOrder: 4
  4233. minMaxState: 0
  4234. separateAxis: 0
  4235. inWorldSpace: 0
  4236. dampen: 1
  4237. SizeBySpeedModule:
  4238. enabled: 0
  4239. curve:
  4240. scalar: 1
  4241. maxCurve:
  4242. serializedVersion: 2
  4243. m_Curve:
  4244. - time: 0
  4245. value: 1
  4246. inSlope: 0
  4247. outSlope: 0
  4248. tangentMode: 0
  4249. - time: 1
  4250. value: 1
  4251. inSlope: 0
  4252. outSlope: 0
  4253. tangentMode: 0
  4254. m_PreInfinity: 2
  4255. m_PostInfinity: 2
  4256. m_RotationOrder: 4
  4257. minCurve:
  4258. serializedVersion: 2
  4259. m_Curve:
  4260. - time: 0
  4261. value: 0
  4262. inSlope: 0
  4263. outSlope: 0
  4264. tangentMode: 0
  4265. - time: 1
  4266. value: 0
  4267. inSlope: 0
  4268. outSlope: 0
  4269. tangentMode: 0
  4270. m_PreInfinity: 2
  4271. m_PostInfinity: 2
  4272. m_RotationOrder: 4
  4273. minMaxState: 1
  4274. range: {x: 0, y: 1}
  4275. RotationBySpeedModule:
  4276. enabled: 0
  4277. x:
  4278. scalar: 1
  4279. maxCurve:
  4280. serializedVersion: 2
  4281. m_Curve:
  4282. - time: 0
  4283. value: 1
  4284. inSlope: 0
  4285. outSlope: 0
  4286. tangentMode: 0
  4287. - time: 1
  4288. value: 1
  4289. inSlope: 0
  4290. outSlope: 0
  4291. tangentMode: 0
  4292. m_PreInfinity: 2
  4293. m_PostInfinity: 2
  4294. m_RotationOrder: 4
  4295. minCurve:
  4296. serializedVersion: 2
  4297. m_Curve:
  4298. - time: 0
  4299. value: 0
  4300. inSlope: 0
  4301. outSlope: 0
  4302. tangentMode: 0
  4303. - time: 1
  4304. value: 0
  4305. inSlope: 0
  4306. outSlope: 0
  4307. tangentMode: 0
  4308. m_PreInfinity: 2
  4309. m_PostInfinity: 2
  4310. m_RotationOrder: 4
  4311. minMaxState: 0
  4312. y:
  4313. scalar: 1
  4314. maxCurve:
  4315. serializedVersion: 2
  4316. m_Curve:
  4317. - time: 0
  4318. value: 1
  4319. inSlope: 0
  4320. outSlope: 0
  4321. tangentMode: 0
  4322. - time: 1
  4323. value: 1
  4324. inSlope: 0
  4325. outSlope: 0
  4326. tangentMode: 0
  4327. m_PreInfinity: 2
  4328. m_PostInfinity: 2
  4329. m_RotationOrder: 4
  4330. minCurve:
  4331. serializedVersion: 2
  4332. m_Curve:
  4333. - time: 0
  4334. value: 0
  4335. inSlope: 0
  4336. outSlope: 0
  4337. tangentMode: 0
  4338. - time: 1
  4339. value: 0
  4340. inSlope: 0
  4341. outSlope: 0
  4342. tangentMode: 0
  4343. m_PreInfinity: 2
  4344. m_PostInfinity: 2
  4345. m_RotationOrder: 4
  4346. minMaxState: 0
  4347. curve:
  4348. scalar: 0.7853982
  4349. maxCurve:
  4350. serializedVersion: 2
  4351. m_Curve:
  4352. - time: 0
  4353. value: 1
  4354. inSlope: 0
  4355. outSlope: 0
  4356. tangentMode: 0
  4357. - time: 1
  4358. value: 1
  4359. inSlope: 0
  4360. outSlope: 0
  4361. tangentMode: 0
  4362. m_PreInfinity: 2
  4363. m_PostInfinity: 2
  4364. m_RotationOrder: 4
  4365. minCurve:
  4366. serializedVersion: 2
  4367. m_Curve:
  4368. - time: 0
  4369. value: 0
  4370. inSlope: 0
  4371. outSlope: 0
  4372. tangentMode: 0
  4373. - time: 1
  4374. value: 0
  4375. inSlope: 0
  4376. outSlope: 0
  4377. tangentMode: 0
  4378. m_PreInfinity: 2
  4379. m_PostInfinity: 2
  4380. m_RotationOrder: 4
  4381. minMaxState: 0
  4382. separateAxes: 0
  4383. range: {x: 0, y: 1}
  4384. ColorBySpeedModule:
  4385. enabled: 0
  4386. gradient:
  4387. maxGradient:
  4388. key0:
  4389. serializedVersion: 2
  4390. rgba: 4294967295
  4391. key1:
  4392. serializedVersion: 2
  4393. rgba: 4294967295
  4394. key2:
  4395. serializedVersion: 2
  4396. rgba: 0
  4397. key3:
  4398. serializedVersion: 2
  4399. rgba: 0
  4400. key4:
  4401. serializedVersion: 2
  4402. rgba: 0
  4403. key5:
  4404. serializedVersion: 2
  4405. rgba: 0
  4406. key6:
  4407. serializedVersion: 2
  4408. rgba: 0
  4409. key7:
  4410. serializedVersion: 2
  4411. rgba: 0
  4412. ctime0: 0
  4413. ctime1: 65535
  4414. ctime2: 0
  4415. ctime3: 0
  4416. ctime4: 0
  4417. ctime5: 0
  4418. ctime6: 0
  4419. ctime7: 0
  4420. atime0: 0
  4421. atime1: 65535
  4422. atime2: 0
  4423. atime3: 0
  4424. atime4: 0
  4425. atime5: 0
  4426. atime6: 0
  4427. atime7: 0
  4428. m_NumColorKeys: 2
  4429. m_NumAlphaKeys: 2
  4430. minGradient:
  4431. key0:
  4432. serializedVersion: 2
  4433. rgba: 4294967295
  4434. key1:
  4435. serializedVersion: 2
  4436. rgba: 4294967295
  4437. key2:
  4438. serializedVersion: 2
  4439. rgba: 0
  4440. key3:
  4441. serializedVersion: 2
  4442. rgba: 0
  4443. key4:
  4444. serializedVersion: 2
  4445. rgba: 0
  4446. key5:
  4447. serializedVersion: 2
  4448. rgba: 0
  4449. key6:
  4450. serializedVersion: 2
  4451. rgba: 0
  4452. key7:
  4453. serializedVersion: 2
  4454. rgba: 0
  4455. ctime0: 0
  4456. ctime1: 65535
  4457. ctime2: 0
  4458. ctime3: 0
  4459. ctime4: 0
  4460. ctime5: 0
  4461. ctime6: 0
  4462. ctime7: 0
  4463. atime0: 0
  4464. atime1: 65535
  4465. atime2: 0
  4466. atime3: 0
  4467. atime4: 0
  4468. atime5: 0
  4469. atime6: 0
  4470. atime7: 0
  4471. m_NumColorKeys: 2
  4472. m_NumAlphaKeys: 2
  4473. minColor:
  4474. serializedVersion: 2
  4475. rgba: 4294967295
  4476. maxColor:
  4477. serializedVersion: 2
  4478. rgba: 4294967295
  4479. minMaxState: 1
  4480. range: {x: 0, y: 1}
  4481. CollisionModule:
  4482. enabled: 0
  4483. serializedVersion: 2
  4484. type: 0
  4485. collisionMode: 0
  4486. plane0: {fileID: 0}
  4487. plane1: {fileID: 0}
  4488. plane2: {fileID: 0}
  4489. plane3: {fileID: 0}
  4490. plane4: {fileID: 0}
  4491. plane5: {fileID: 0}
  4492. m_Dampen:
  4493. scalar: 0
  4494. maxCurve:
  4495. serializedVersion: 2
  4496. m_Curve:
  4497. - time: 0
  4498. value: 1
  4499. inSlope: 0
  4500. outSlope: 0
  4501. tangentMode: 0
  4502. - time: 1
  4503. value: 1
  4504. inSlope: 0
  4505. outSlope: 0
  4506. tangentMode: 0
  4507. m_PreInfinity: 2
  4508. m_PostInfinity: 2
  4509. m_RotationOrder: 4
  4510. minCurve:
  4511. serializedVersion: 2
  4512. m_Curve:
  4513. - time: 0
  4514. value: 0
  4515. inSlope: 0
  4516. outSlope: 0
  4517. tangentMode: 0
  4518. - time: 1
  4519. value: 0
  4520. inSlope: 0
  4521. outSlope: 0
  4522. tangentMode: 0
  4523. m_PreInfinity: 2
  4524. m_PostInfinity: 2
  4525. m_RotationOrder: 4
  4526. minMaxState: 0
  4527. m_Bounce:
  4528. scalar: 1
  4529. maxCurve:
  4530. serializedVersion: 2
  4531. m_Curve:
  4532. - time: 0
  4533. value: 1
  4534. inSlope: 0
  4535. outSlope: 0
  4536. tangentMode: 0
  4537. - time: 1
  4538. value: 1
  4539. inSlope: 0
  4540. outSlope: 0
  4541. tangentMode: 0
  4542. m_PreInfinity: 2
  4543. m_PostInfinity: 2
  4544. m_RotationOrder: 4
  4545. minCurve:
  4546. serializedVersion: 2
  4547. m_Curve:
  4548. - time: 0
  4549. value: 0
  4550. inSlope: 0
  4551. outSlope: 0
  4552. tangentMode: 0
  4553. - time: 1
  4554. value: 0
  4555. inSlope: 0
  4556. outSlope: 0
  4557. tangentMode: 0
  4558. m_PreInfinity: 2
  4559. m_PostInfinity: 2
  4560. m_RotationOrder: 4
  4561. minMaxState: 0
  4562. m_EnergyLossOnCollision:
  4563. scalar: 0
  4564. maxCurve:
  4565. serializedVersion: 2
  4566. m_Curve:
  4567. - time: 0
  4568. value: 1
  4569. inSlope: 0
  4570. outSlope: 0
  4571. tangentMode: 0
  4572. - time: 1
  4573. value: 1
  4574. inSlope: 0
  4575. outSlope: 0
  4576. tangentMode: 0
  4577. m_PreInfinity: 2
  4578. m_PostInfinity: 2
  4579. m_RotationOrder: 4
  4580. minCurve:
  4581. serializedVersion: 2
  4582. m_Curve:
  4583. - time: 0
  4584. value: 0
  4585. inSlope: 0
  4586. outSlope: 0
  4587. tangentMode: 0
  4588. - time: 1
  4589. value: 0
  4590. inSlope: 0
  4591. outSlope: 0
  4592. tangentMode: 0
  4593. m_PreInfinity: 2
  4594. m_PostInfinity: 2
  4595. m_RotationOrder: 4
  4596. minMaxState: 0
  4597. minKillSpeed: 0
  4598. radiusScale: 1
  4599. collidesWith:
  4600. serializedVersion: 2
  4601. m_Bits: 4294967295
  4602. maxCollisionShapes: 256
  4603. quality: 0
  4604. voxelSize: 0.5
  4605. collisionMessages: 0
  4606. collidesWithDynamic: 1
  4607. interiorCollisions: 1
  4608. SubModule:
  4609. enabled: 1
  4610. subEmitterBirth: {fileID: 19800012}
  4611. subEmitterBirth1: {fileID: 0}
  4612. subEmitterCollision: {fileID: 0}
  4613. subEmitterCollision1: {fileID: 0}
  4614. subEmitterDeath: {fileID: 0}
  4615. subEmitterDeath1: {fileID: 0}
  4616. --- !u!198 &19800006
  4617. ParticleSystem:
  4618. m_ObjectHideFlags: 1
  4619. m_PrefabParentObject: {fileID: 0}
  4620. m_PrefabInternal: {fileID: 100100000}
  4621. m_GameObject: {fileID: 100006}
  4622. serializedVersion: 2
  4623. lengthInSec: 2
  4624. startDelay:
  4625. scalar: 0
  4626. maxCurve:
  4627. serializedVersion: 2
  4628. m_Curve:
  4629. - time: 0
  4630. value: 1
  4631. inSlope: 0
  4632. outSlope: 0
  4633. tangentMode: 0
  4634. - time: 1
  4635. value: 1
  4636. inSlope: 0
  4637. outSlope: 0
  4638. tangentMode: 0
  4639. m_PreInfinity: 2
  4640. m_PostInfinity: 2
  4641. m_RotationOrder: 4
  4642. minCurve:
  4643. serializedVersion: 2
  4644. m_Curve:
  4645. - time: 0
  4646. value: 0
  4647. inSlope: 0
  4648. outSlope: 0
  4649. tangentMode: 0
  4650. - time: 1
  4651. value: 0
  4652. inSlope: 0
  4653. outSlope: 0
  4654. tangentMode: 0
  4655. m_PreInfinity: 2
  4656. m_PostInfinity: 2
  4657. m_RotationOrder: 4
  4658. minMaxState: 0
  4659. speed: 1
  4660. randomSeed: 0
  4661. looping: 0
  4662. prewarm: 0
  4663. playOnAwake: 1
  4664. moveWithTransform: 1
  4665. scalingMode: 2
  4666. InitialModule:
  4667. serializedVersion: 2
  4668. enabled: 1
  4669. startLifetime:
  4670. scalar: 0.4
  4671. maxCurve:
  4672. serializedVersion: 2
  4673. m_Curve:
  4674. - time: 0
  4675. value: 1
  4676. inSlope: 0
  4677. outSlope: 0
  4678. tangentMode: 0
  4679. m_PreInfinity: 2
  4680. m_PostInfinity: 2
  4681. m_RotationOrder: 4
  4682. minCurve:
  4683. serializedVersion: 2
  4684. m_Curve:
  4685. - time: 0
  4686. value: 0.75
  4687. inSlope: 0
  4688. outSlope: 0
  4689. tangentMode: 0
  4690. m_PreInfinity: 2
  4691. m_PostInfinity: 2
  4692. m_RotationOrder: 4
  4693. minMaxState: 3
  4694. startSpeed:
  4695. scalar: 0
  4696. maxCurve:
  4697. serializedVersion: 2
  4698. m_Curve:
  4699. - time: 0
  4700. value: 1
  4701. inSlope: 0
  4702. outSlope: 0
  4703. tangentMode: 0
  4704. - time: 1
  4705. value: 1
  4706. inSlope: 0
  4707. outSlope: 0
  4708. tangentMode: 0
  4709. m_PreInfinity: 2
  4710. m_PostInfinity: 2
  4711. m_RotationOrder: 4
  4712. minCurve:
  4713. serializedVersion: 2
  4714. m_Curve:
  4715. - time: 0
  4716. value: 0
  4717. inSlope: 0
  4718. outSlope: 0
  4719. tangentMode: 0
  4720. - time: 1
  4721. value: 0
  4722. inSlope: 0
  4723. outSlope: 0
  4724. tangentMode: 0
  4725. m_PreInfinity: 2
  4726. m_PostInfinity: 2
  4727. m_RotationOrder: 4
  4728. minMaxState: 0
  4729. startColor:
  4730. maxGradient:
  4731. key0:
  4732. serializedVersion: 2
  4733. rgba: 4294967295
  4734. key1:
  4735. serializedVersion: 2
  4736. rgba: 4294967295
  4737. key2:
  4738. serializedVersion: 2
  4739. rgba: 0
  4740. key3:
  4741. serializedVersion: 2
  4742. rgba: 0
  4743. key4:
  4744. serializedVersion: 2
  4745. rgba: 0
  4746. key5:
  4747. serializedVersion: 2
  4748. rgba: 0
  4749. key6:
  4750. serializedVersion: 2
  4751. rgba: 0
  4752. key7:
  4753. serializedVersion: 2
  4754. rgba: 0
  4755. ctime0: 0
  4756. ctime1: 65535
  4757. ctime2: 0
  4758. ctime3: 0
  4759. ctime4: 0
  4760. ctime5: 0
  4761. ctime6: 0
  4762. ctime7: 0
  4763. atime0: 0
  4764. atime1: 65535
  4765. atime2: 0
  4766. atime3: 0
  4767. atime4: 0
  4768. atime5: 0
  4769. atime6: 0
  4770. atime7: 0
  4771. m_NumColorKeys: 2
  4772. m_NumAlphaKeys: 2
  4773. minGradient:
  4774. key0:
  4775. serializedVersion: 2
  4776. rgba: 4294967295
  4777. key1:
  4778. serializedVersion: 2
  4779. rgba: 4294967295
  4780. key2:
  4781. serializedVersion: 2
  4782. rgba: 0
  4783. key3:
  4784. serializedVersion: 2
  4785. rgba: 0
  4786. key4:
  4787. serializedVersion: 2
  4788. rgba: 0
  4789. key5:
  4790. serializedVersion: 2
  4791. rgba: 0
  4792. key6:
  4793. serializedVersion: 2
  4794. rgba: 0
  4795. key7:
  4796. serializedVersion: 2
  4797. rgba: 0
  4798. ctime0: 0
  4799. ctime1: 65535
  4800. ctime2: 0
  4801. ctime3: 0
  4802. ctime4: 0
  4803. ctime5: 0
  4804. ctime6: 0
  4805. ctime7: 0
  4806. atime0: 0
  4807. atime1: 65535
  4808. atime2: 0
  4809. atime3: 0
  4810. atime4: 0
  4811. atime5: 0
  4812. atime6: 0
  4813. atime7: 0
  4814. m_NumColorKeys: 2
  4815. m_NumAlphaKeys: 2
  4816. minColor:
  4817. serializedVersion: 2
  4818. rgba: 4285361517
  4819. maxColor:
  4820. serializedVersion: 2
  4821. rgba: 4282992969
  4822. minMaxState: 0
  4823. startSize:
  4824. scalar: 1.5
  4825. maxCurve:
  4826. serializedVersion: 2
  4827. m_Curve:
  4828. - time: 0
  4829. value: 1
  4830. inSlope: 0
  4831. outSlope: 0
  4832. tangentMode: 0
  4833. m_PreInfinity: 2
  4834. m_PostInfinity: 2
  4835. m_RotationOrder: 4
  4836. minCurve:
  4837. serializedVersion: 2
  4838. m_Curve:
  4839. - time: 0
  4840. value: 0.33333334
  4841. inSlope: 0
  4842. outSlope: 0
  4843. tangentMode: 0
  4844. m_PreInfinity: 2
  4845. m_PostInfinity: 2
  4846. m_RotationOrder: 4
  4847. minMaxState: 3
  4848. startRotationX:
  4849. scalar: 1
  4850. maxCurve:
  4851. serializedVersion: 2
  4852. m_Curve:
  4853. - time: 0
  4854. value: 1
  4855. inSlope: 0
  4856. outSlope: 0
  4857. tangentMode: 0
  4858. - time: 1
  4859. value: 1
  4860. inSlope: 0
  4861. outSlope: 0
  4862. tangentMode: 0
  4863. m_PreInfinity: 2
  4864. m_PostInfinity: 2
  4865. m_RotationOrder: 4
  4866. minCurve:
  4867. serializedVersion: 2
  4868. m_Curve:
  4869. - time: 0
  4870. value: 0
  4871. inSlope: 0
  4872. outSlope: 0
  4873. tangentMode: 0
  4874. - time: 1
  4875. value: 0
  4876. inSlope: 0
  4877. outSlope: 0
  4878. tangentMode: 0
  4879. m_PreInfinity: 2
  4880. m_PostInfinity: 2
  4881. m_RotationOrder: 4
  4882. minMaxState: 0
  4883. startRotationY:
  4884. scalar: 1
  4885. maxCurve:
  4886. serializedVersion: 2
  4887. m_Curve:
  4888. - time: 0
  4889. value: 1
  4890. inSlope: 0
  4891. outSlope: 0
  4892. tangentMode: 0
  4893. - time: 1
  4894. value: 1
  4895. inSlope: 0
  4896. outSlope: 0
  4897. tangentMode: 0
  4898. m_PreInfinity: 2
  4899. m_PostInfinity: 2
  4900. m_RotationOrder: 4
  4901. minCurve:
  4902. serializedVersion: 2
  4903. m_Curve:
  4904. - time: 0
  4905. value: 0
  4906. inSlope: 0
  4907. outSlope: 0
  4908. tangentMode: 0
  4909. - time: 1
  4910. value: 0
  4911. inSlope: 0
  4912. outSlope: 0
  4913. tangentMode: 0
  4914. m_PreInfinity: 2
  4915. m_PostInfinity: 2
  4916. m_RotationOrder: 4
  4917. minMaxState: 0
  4918. startRotation:
  4919. scalar: 6.283185
  4920. maxCurve:
  4921. serializedVersion: 2
  4922. m_Curve:
  4923. - time: 0
  4924. value: 1
  4925. inSlope: 0
  4926. outSlope: 0
  4927. tangentMode: 0
  4928. m_PreInfinity: 2
  4929. m_PostInfinity: 2
  4930. m_RotationOrder: 4
  4931. minCurve:
  4932. serializedVersion: 2
  4933. m_Curve:
  4934. - time: 0
  4935. value: -1
  4936. inSlope: 0
  4937. outSlope: 0
  4938. tangentMode: 0
  4939. m_PreInfinity: 2
  4940. m_PostInfinity: 2
  4941. m_RotationOrder: 4
  4942. minMaxState: 3
  4943. randomizeRotationDirection: 0
  4944. gravityModifier: 0
  4945. maxNumParticles: 8
  4946. rotation3D: 0
  4947. ShapeModule:
  4948. serializedVersion: 2
  4949. enabled: 0
  4950. type: 0
  4951. radius: 0.01
  4952. angle: 25
  4953. length: 5
  4954. boxX: 1
  4955. boxY: 1
  4956. boxZ: 1
  4957. arc: 360
  4958. placementMode: 0
  4959. m_Mesh: {fileID: 0}
  4960. m_MeshRenderer: {fileID: 0}
  4961. m_SkinnedMeshRenderer: {fileID: 0}
  4962. m_MeshMaterialIndex: 0
  4963. m_MeshNormalOffset: 0
  4964. m_UseMeshMaterialIndex: 0
  4965. m_UseMeshColors: 1
  4966. randomDirection: 0
  4967. EmissionModule:
  4968. enabled: 1
  4969. serializedVersion: 2
  4970. m_Type: 0
  4971. rate:
  4972. scalar: 0
  4973. maxCurve:
  4974. serializedVersion: 2
  4975. m_Curve:
  4976. - time: 0
  4977. value: 1
  4978. inSlope: 0
  4979. outSlope: 0
  4980. tangentMode: 0
  4981. - time: 1
  4982. value: 1
  4983. inSlope: 0
  4984. outSlope: 0
  4985. tangentMode: 0
  4986. m_PreInfinity: 2
  4987. m_PostInfinity: 2
  4988. m_RotationOrder: 4
  4989. minCurve:
  4990. serializedVersion: 2
  4991. m_Curve:
  4992. - time: 0
  4993. value: 0
  4994. inSlope: 0
  4995. outSlope: 0
  4996. tangentMode: 0
  4997. - time: 1
  4998. value: 0
  4999. inSlope: 0
  5000. outSlope: 0
  5001. tangentMode: 0
  5002. m_PreInfinity: 2
  5003. m_PostInfinity: 2
  5004. m_RotationOrder: 4
  5005. minMaxState: 0
  5006. cnt0: 6
  5007. cnt1: 2
  5008. cnt2: 4
  5009. cnt3: 30
  5010. cntmax0: 6
  5011. cntmax1: 2
  5012. cntmax2: 4
  5013. cntmax3: 30
  5014. time0: 0
  5015. time1: 0.1
  5016. time2: 0.4
  5017. time3: 0
  5018. m_BurstCount: 1
  5019. SizeModule:
  5020. enabled: 1
  5021. curve:
  5022. scalar: 12
  5023. maxCurve:
  5024. serializedVersion: 2
  5025. m_Curve:
  5026. - time: 0
  5027. value: 0
  5028. inSlope: 2
  5029. outSlope: 2
  5030. tangentMode: 0
  5031. - time: 1
  5032. value: 1
  5033. inSlope: 0
  5034. outSlope: 0
  5035. tangentMode: 0
  5036. m_PreInfinity: 2
  5037. m_PostInfinity: 2
  5038. m_RotationOrder: 4
  5039. minCurve:
  5040. serializedVersion: 2
  5041. m_Curve:
  5042. - time: 0
  5043. value: 0
  5044. inSlope: 0
  5045. outSlope: 0
  5046. tangentMode: 0
  5047. - time: 1
  5048. value: 0
  5049. inSlope: 0
  5050. outSlope: 0
  5051. tangentMode: 0
  5052. m_PreInfinity: 2
  5053. m_PostInfinity: 2
  5054. m_RotationOrder: 4
  5055. minMaxState: 1
  5056. RotationModule:
  5057. enabled: 0
  5058. x:
  5059. scalar: 1
  5060. maxCurve:
  5061. serializedVersion: 2
  5062. m_Curve:
  5063. - time: 0
  5064. value: 1
  5065. inSlope: 0
  5066. outSlope: 0
  5067. tangentMode: 0
  5068. - time: 1
  5069. value: 1
  5070. inSlope: 0
  5071. outSlope: 0
  5072. tangentMode: 0
  5073. m_PreInfinity: 2
  5074. m_PostInfinity: 2
  5075. m_RotationOrder: 4
  5076. minCurve:
  5077. serializedVersion: 2
  5078. m_Curve:
  5079. - time: 0
  5080. value: 0
  5081. inSlope: 0
  5082. outSlope: 0
  5083. tangentMode: 0
  5084. - time: 1
  5085. value: 0
  5086. inSlope: 0
  5087. outSlope: 0
  5088. tangentMode: 0
  5089. m_PreInfinity: 2
  5090. m_PostInfinity: 2
  5091. m_RotationOrder: 4
  5092. minMaxState: 0
  5093. y:
  5094. scalar: 1
  5095. maxCurve:
  5096. serializedVersion: 2
  5097. m_Curve:
  5098. - time: 0
  5099. value: 1
  5100. inSlope: 0
  5101. outSlope: 0
  5102. tangentMode: 0
  5103. - time: 1
  5104. value: 1
  5105. inSlope: 0
  5106. outSlope: 0
  5107. tangentMode: 0
  5108. m_PreInfinity: 2
  5109. m_PostInfinity: 2
  5110. m_RotationOrder: 4
  5111. minCurve:
  5112. serializedVersion: 2
  5113. m_Curve:
  5114. - time: 0
  5115. value: 0
  5116. inSlope: 0
  5117. outSlope: 0
  5118. tangentMode: 0
  5119. - time: 1
  5120. value: 0
  5121. inSlope: 0
  5122. outSlope: 0
  5123. tangentMode: 0
  5124. m_PreInfinity: 2
  5125. m_PostInfinity: 2
  5126. m_RotationOrder: 4
  5127. minMaxState: 0
  5128. curve:
  5129. scalar: 6.283185
  5130. maxCurve:
  5131. serializedVersion: 2
  5132. m_Curve:
  5133. - time: 0
  5134. value: 1
  5135. inSlope: 0
  5136. outSlope: 0
  5137. tangentMode: 0
  5138. m_PreInfinity: 2
  5139. m_PostInfinity: 2
  5140. m_RotationOrder: 4
  5141. minCurve:
  5142. serializedVersion: 2
  5143. m_Curve:
  5144. - time: 0
  5145. value: -1
  5146. inSlope: 0
  5147. outSlope: 0
  5148. tangentMode: 0
  5149. m_PreInfinity: 2
  5150. m_PostInfinity: 2
  5151. m_RotationOrder: 4
  5152. minMaxState: 3
  5153. separateAxes: 0
  5154. ColorModule:
  5155. enabled: 1
  5156. gradient:
  5157. maxGradient:
  5158. key0:
  5159. serializedVersion: 2
  5160. rgba: 4278190080
  5161. key1:
  5162. serializedVersion: 2
  5163. rgba: 4288589236
  5164. key2:
  5165. serializedVersion: 2
  5166. rgba: 8295064
  5167. key3:
  5168. serializedVersion: 2
  5169. rgba: 3885395
  5170. key4:
  5171. serializedVersion: 2
  5172. rgba: 0
  5173. key5:
  5174. serializedVersion: 2
  5175. rgba: 0
  5176. key6:
  5177. serializedVersion: 2
  5178. rgba: 0
  5179. key7:
  5180. serializedVersion: 2
  5181. rgba: 0
  5182. ctime0: 0
  5183. ctime1: 5975
  5184. ctime2: 17733
  5185. ctime3: 31418
  5186. ctime4: 58403
  5187. ctime5: 0
  5188. ctime6: 0
  5189. ctime7: 0
  5190. atime0: 0
  5191. atime1: 65342
  5192. atime2: 65149
  5193. atime3: 65149
  5194. atime4: 0
  5195. atime5: 0
  5196. atime6: 0
  5197. atime7: 0
  5198. m_NumColorKeys: 5
  5199. m_NumAlphaKeys: 2
  5200. minGradient:
  5201. key0:
  5202. serializedVersion: 2
  5203. rgba: 4294967295
  5204. key1:
  5205. serializedVersion: 2
  5206. rgba: 4294967295
  5207. key2:
  5208. serializedVersion: 2
  5209. rgba: 0
  5210. key3:
  5211. serializedVersion: 2
  5212. rgba: 0
  5213. key4:
  5214. serializedVersion: 2
  5215. rgba: 0
  5216. key5:
  5217. serializedVersion: 2
  5218. rgba: 0
  5219. key6:
  5220. serializedVersion: 2
  5221. rgba: 0
  5222. key7:
  5223. serializedVersion: 2
  5224. rgba: 0
  5225. ctime0: 0
  5226. ctime1: 65535
  5227. ctime2: 0
  5228. ctime3: 0
  5229. ctime4: 0
  5230. ctime5: 0
  5231. ctime6: 0
  5232. ctime7: 0
  5233. atime0: 0
  5234. atime1: 65535
  5235. atime2: 0
  5236. atime3: 0
  5237. atime4: 0
  5238. atime5: 0
  5239. atime6: 0
  5240. atime7: 0
  5241. m_NumColorKeys: 2
  5242. m_NumAlphaKeys: 2
  5243. minColor:
  5244. serializedVersion: 2
  5245. rgba: 4294967295
  5246. maxColor:
  5247. serializedVersion: 2
  5248. rgba: 4294967295
  5249. minMaxState: 1
  5250. UVModule:
  5251. enabled: 0
  5252. frameOverTime:
  5253. scalar: 1
  5254. maxCurve:
  5255. serializedVersion: 2
  5256. m_Curve:
  5257. - time: 0
  5258. value: 0
  5259. inSlope: 0
  5260. outSlope: 1
  5261. tangentMode: 0
  5262. - time: 1
  5263. value: 1
  5264. inSlope: 1
  5265. outSlope: 0
  5266. tangentMode: 0
  5267. m_PreInfinity: 2
  5268. m_PostInfinity: 2
  5269. m_RotationOrder: 4
  5270. minCurve:
  5271. serializedVersion: 2
  5272. m_Curve:
  5273. - time: 0
  5274. value: 0
  5275. inSlope: 0
  5276. outSlope: 1
  5277. tangentMode: 0
  5278. - time: 1
  5279. value: 1
  5280. inSlope: 1
  5281. outSlope: 0
  5282. tangentMode: 0
  5283. m_PreInfinity: 2
  5284. m_PostInfinity: 2
  5285. m_RotationOrder: 4
  5286. minMaxState: 1
  5287. tilesX: 1
  5288. tilesY: 1
  5289. animationType: 0
  5290. rowIndex: 0
  5291. cycles: 1
  5292. randomRow: 1
  5293. VelocityModule:
  5294. enabled: 0
  5295. x:
  5296. scalar: 0
  5297. maxCurve:
  5298. serializedVersion: 2
  5299. m_Curve:
  5300. - time: 0
  5301. value: 1
  5302. inSlope: 0
  5303. outSlope: 0
  5304. tangentMode: 0
  5305. - time: 1
  5306. value: 1
  5307. inSlope: 0
  5308. outSlope: 0
  5309. tangentMode: 0
  5310. m_PreInfinity: 2
  5311. m_PostInfinity: 2
  5312. m_RotationOrder: 4
  5313. minCurve:
  5314. serializedVersion: 2
  5315. m_Curve:
  5316. - time: 0
  5317. value: 0
  5318. inSlope: 0
  5319. outSlope: 0
  5320. tangentMode: 0
  5321. - time: 1
  5322. value: 0
  5323. inSlope: 0
  5324. outSlope: 0
  5325. tangentMode: 0
  5326. m_PreInfinity: 2
  5327. m_PostInfinity: 2
  5328. m_RotationOrder: 4
  5329. minMaxState: 0
  5330. y:
  5331. scalar: 0
  5332. maxCurve:
  5333. serializedVersion: 2
  5334. m_Curve:
  5335. - time: 0
  5336. value: 1
  5337. inSlope: 0
  5338. outSlope: 0
  5339. tangentMode: 0
  5340. - time: 1
  5341. value: 1
  5342. inSlope: 0
  5343. outSlope: 0
  5344. tangentMode: 0
  5345. m_PreInfinity: 2
  5346. m_PostInfinity: 2
  5347. m_RotationOrder: 4
  5348. minCurve:
  5349. serializedVersion: 2
  5350. m_Curve:
  5351. - time: 0
  5352. value: 0
  5353. inSlope: 0
  5354. outSlope: 0
  5355. tangentMode: 0
  5356. - time: 1
  5357. value: 0
  5358. inSlope: 0
  5359. outSlope: 0
  5360. tangentMode: 0
  5361. m_PreInfinity: 2
  5362. m_PostInfinity: 2
  5363. m_RotationOrder: 4
  5364. minMaxState: 0
  5365. z:
  5366. scalar: 0
  5367. maxCurve:
  5368. serializedVersion: 2
  5369. m_Curve:
  5370. - time: 0
  5371. value: 1
  5372. inSlope: 0
  5373. outSlope: 0
  5374. tangentMode: 0
  5375. - time: 1
  5376. value: 1
  5377. inSlope: 0
  5378. outSlope: 0
  5379. tangentMode: 0
  5380. m_PreInfinity: 2
  5381. m_PostInfinity: 2
  5382. m_RotationOrder: 4
  5383. minCurve:
  5384. serializedVersion: 2
  5385. m_Curve:
  5386. - time: 0
  5387. value: 0
  5388. inSlope: 0
  5389. outSlope: 0
  5390. tangentMode: 0
  5391. - time: 1
  5392. value: 0
  5393. inSlope: 0
  5394. outSlope: 0
  5395. tangentMode: 0
  5396. m_PreInfinity: 2
  5397. m_PostInfinity: 2
  5398. m_RotationOrder: 4
  5399. minMaxState: 0
  5400. inWorldSpace: 0
  5401. InheritVelocityModule:
  5402. enabled: 0
  5403. m_Mode: 0
  5404. m_Curve:
  5405. scalar: 1
  5406. maxCurve:
  5407. serializedVersion: 2
  5408. m_Curve:
  5409. - time: 0
  5410. value: 1
  5411. inSlope: 0
  5412. outSlope: 0
  5413. tangentMode: 0
  5414. - time: 1
  5415. value: 1
  5416. inSlope: 0
  5417. outSlope: 0
  5418. tangentMode: 0
  5419. m_PreInfinity: 2
  5420. m_PostInfinity: 2
  5421. m_RotationOrder: 4
  5422. minCurve:
  5423. serializedVersion: 2
  5424. m_Curve:
  5425. - time: 0
  5426. value: 0
  5427. inSlope: 0
  5428. outSlope: 0
  5429. tangentMode: 0
  5430. - time: 1
  5431. value: 0
  5432. inSlope: 0
  5433. outSlope: 0
  5434. tangentMode: 0
  5435. m_PreInfinity: 2
  5436. m_PostInfinity: 2
  5437. m_RotationOrder: 4
  5438. minMaxState: 0
  5439. ForceModule:
  5440. enabled: 0
  5441. x:
  5442. scalar: 0
  5443. maxCurve:
  5444. serializedVersion: 2
  5445. m_Curve:
  5446. - time: 0
  5447. value: 1
  5448. inSlope: 0
  5449. outSlope: 0
  5450. tangentMode: 0
  5451. - time: 1
  5452. value: 1
  5453. inSlope: 0
  5454. outSlope: 0
  5455. tangentMode: 0
  5456. m_PreInfinity: 2
  5457. m_PostInfinity: 2
  5458. m_RotationOrder: 4
  5459. minCurve:
  5460. serializedVersion: 2
  5461. m_Curve:
  5462. - time: 0
  5463. value: 0
  5464. inSlope: 0
  5465. outSlope: 0
  5466. tangentMode: 0
  5467. - time: 1
  5468. value: 0
  5469. inSlope: 0
  5470. outSlope: 0
  5471. tangentMode: 0
  5472. m_PreInfinity: 2
  5473. m_PostInfinity: 2
  5474. m_RotationOrder: 4
  5475. minMaxState: 0
  5476. y:
  5477. scalar: 0
  5478. maxCurve:
  5479. serializedVersion: 2
  5480. m_Curve:
  5481. - time: 0
  5482. value: 1
  5483. inSlope: 0
  5484. outSlope: 0
  5485. tangentMode: 0
  5486. - time: 1
  5487. value: 1
  5488. inSlope: 0
  5489. outSlope: 0
  5490. tangentMode: 0
  5491. m_PreInfinity: 2
  5492. m_PostInfinity: 2
  5493. m_RotationOrder: 4
  5494. minCurve:
  5495. serializedVersion: 2
  5496. m_Curve:
  5497. - time: 0
  5498. value: 0
  5499. inSlope: 0
  5500. outSlope: 0
  5501. tangentMode: 0
  5502. - time: 1
  5503. value: 0
  5504. inSlope: 0
  5505. outSlope: 0
  5506. tangentMode: 0
  5507. m_PreInfinity: 2
  5508. m_PostInfinity: 2
  5509. m_RotationOrder: 4
  5510. minMaxState: 0
  5511. z:
  5512. scalar: 0
  5513. maxCurve:
  5514. serializedVersion: 2
  5515. m_Curve:
  5516. - time: 0
  5517. value: 1
  5518. inSlope: 0
  5519. outSlope: 0
  5520. tangentMode: 0
  5521. - time: 1
  5522. value: 1
  5523. inSlope: 0
  5524. outSlope: 0
  5525. tangentMode: 0
  5526. m_PreInfinity: 2
  5527. m_PostInfinity: 2
  5528. m_RotationOrder: 4
  5529. minCurve:
  5530. serializedVersion: 2
  5531. m_Curve:
  5532. - time: 0
  5533. value: 0
  5534. inSlope: 0
  5535. outSlope: 0
  5536. tangentMode: 0
  5537. - time: 1
  5538. value: 0
  5539. inSlope: 0
  5540. outSlope: 0
  5541. tangentMode: 0
  5542. m_PreInfinity: 2
  5543. m_PostInfinity: 2
  5544. m_RotationOrder: 4
  5545. minMaxState: 0
  5546. inWorldSpace: 0
  5547. randomizePerFrame: 0
  5548. ExternalForcesModule:
  5549. enabled: 0
  5550. multiplier: 1
  5551. ClampVelocityModule:
  5552. enabled: 0
  5553. x:
  5554. scalar: 1
  5555. maxCurve:
  5556. serializedVersion: 2
  5557. m_Curve:
  5558. - time: 0
  5559. value: 1
  5560. inSlope: 0
  5561. outSlope: 0
  5562. tangentMode: 0
  5563. - time: 1
  5564. value: 1
  5565. inSlope: 0
  5566. outSlope: 0
  5567. tangentMode: 0
  5568. m_PreInfinity: 2
  5569. m_PostInfinity: 2
  5570. m_RotationOrder: 4
  5571. minCurve:
  5572. serializedVersion: 2
  5573. m_Curve:
  5574. - time: 0
  5575. value: 0
  5576. inSlope: 0
  5577. outSlope: 0
  5578. tangentMode: 0
  5579. - time: 1
  5580. value: 0
  5581. inSlope: 0
  5582. outSlope: 0
  5583. tangentMode: 0
  5584. m_PreInfinity: 2
  5585. m_PostInfinity: 2
  5586. m_RotationOrder: 4
  5587. minMaxState: 0
  5588. y:
  5589. scalar: 1
  5590. maxCurve:
  5591. serializedVersion: 2
  5592. m_Curve:
  5593. - time: 0
  5594. value: 1
  5595. inSlope: 0
  5596. outSlope: 0
  5597. tangentMode: 0
  5598. - time: 1
  5599. value: 1
  5600. inSlope: 0
  5601. outSlope: 0
  5602. tangentMode: 0
  5603. m_PreInfinity: 2
  5604. m_PostInfinity: 2
  5605. m_RotationOrder: 4
  5606. minCurve:
  5607. serializedVersion: 2
  5608. m_Curve:
  5609. - time: 0
  5610. value: 0
  5611. inSlope: 0
  5612. outSlope: 0
  5613. tangentMode: 0
  5614. - time: 1
  5615. value: 0
  5616. inSlope: 0
  5617. outSlope: 0
  5618. tangentMode: 0
  5619. m_PreInfinity: 2
  5620. m_PostInfinity: 2
  5621. m_RotationOrder: 4
  5622. minMaxState: 0
  5623. z:
  5624. scalar: 1
  5625. maxCurve:
  5626. serializedVersion: 2
  5627. m_Curve:
  5628. - time: 0
  5629. value: 1
  5630. inSlope: 0
  5631. outSlope: 0
  5632. tangentMode: 0
  5633. - time: 1
  5634. value: 1
  5635. inSlope: 0
  5636. outSlope: 0
  5637. tangentMode: 0
  5638. m_PreInfinity: 2
  5639. m_PostInfinity: 2
  5640. m_RotationOrder: 4
  5641. minCurve:
  5642. serializedVersion: 2
  5643. m_Curve:
  5644. - time: 0
  5645. value: 0
  5646. inSlope: 0
  5647. outSlope: 0
  5648. tangentMode: 0
  5649. - time: 1
  5650. value: 0
  5651. inSlope: 0
  5652. outSlope: 0
  5653. tangentMode: 0
  5654. m_PreInfinity: 2
  5655. m_PostInfinity: 2
  5656. m_RotationOrder: 4
  5657. minMaxState: 0
  5658. magnitude:
  5659. scalar: 1
  5660. maxCurve:
  5661. serializedVersion: 2
  5662. m_Curve:
  5663. - time: 0
  5664. value: 1
  5665. inSlope: 0
  5666. outSlope: 0
  5667. tangentMode: 0
  5668. - time: 1
  5669. value: 1
  5670. inSlope: 0
  5671. outSlope: 0
  5672. tangentMode: 0
  5673. m_PreInfinity: 2
  5674. m_PostInfinity: 2
  5675. m_RotationOrder: 4
  5676. minCurve:
  5677. serializedVersion: 2
  5678. m_Curve:
  5679. - time: 0
  5680. value: 0
  5681. inSlope: 0
  5682. outSlope: 0
  5683. tangentMode: 0
  5684. - time: 1
  5685. value: 0
  5686. inSlope: 0
  5687. outSlope: 0
  5688. tangentMode: 0
  5689. m_PreInfinity: 2
  5690. m_PostInfinity: 2
  5691. m_RotationOrder: 4
  5692. minMaxState: 0
  5693. separateAxis: 0
  5694. inWorldSpace: 0
  5695. dampen: 1
  5696. SizeBySpeedModule:
  5697. enabled: 0
  5698. curve:
  5699. scalar: 1
  5700. maxCurve:
  5701. serializedVersion: 2
  5702. m_Curve:
  5703. - time: 0
  5704. value: 1
  5705. inSlope: 0
  5706. outSlope: 0
  5707. tangentMode: 0
  5708. - time: 1
  5709. value: 1
  5710. inSlope: 0
  5711. outSlope: 0
  5712. tangentMode: 0
  5713. m_PreInfinity: 2
  5714. m_PostInfinity: 2
  5715. m_RotationOrder: 4
  5716. minCurve:
  5717. serializedVersion: 2
  5718. m_Curve:
  5719. - time: 0
  5720. value: 0
  5721. inSlope: 0
  5722. outSlope: 0
  5723. tangentMode: 0
  5724. - time: 1
  5725. value: 0
  5726. inSlope: 0
  5727. outSlope: 0
  5728. tangentMode: 0
  5729. m_PreInfinity: 2
  5730. m_PostInfinity: 2
  5731. m_RotationOrder: 4
  5732. minMaxState: 1
  5733. range: {x: 0, y: 1}
  5734. RotationBySpeedModule:
  5735. enabled: 0
  5736. x:
  5737. scalar: 1
  5738. maxCurve:
  5739. serializedVersion: 2
  5740. m_Curve:
  5741. - time: 0
  5742. value: 1
  5743. inSlope: 0
  5744. outSlope: 0
  5745. tangentMode: 0
  5746. - time: 1
  5747. value: 1
  5748. inSlope: 0
  5749. outSlope: 0
  5750. tangentMode: 0
  5751. m_PreInfinity: 2
  5752. m_PostInfinity: 2
  5753. m_RotationOrder: 4
  5754. minCurve:
  5755. serializedVersion: 2
  5756. m_Curve:
  5757. - time: 0
  5758. value: 0
  5759. inSlope: 0
  5760. outSlope: 0
  5761. tangentMode: 0
  5762. - time: 1
  5763. value: 0
  5764. inSlope: 0
  5765. outSlope: 0
  5766. tangentMode: 0
  5767. m_PreInfinity: 2
  5768. m_PostInfinity: 2
  5769. m_RotationOrder: 4
  5770. minMaxState: 0
  5771. y:
  5772. scalar: 1
  5773. maxCurve:
  5774. serializedVersion: 2
  5775. m_Curve:
  5776. - time: 0
  5777. value: 1
  5778. inSlope: 0
  5779. outSlope: 0
  5780. tangentMode: 0
  5781. - time: 1
  5782. value: 1
  5783. inSlope: 0
  5784. outSlope: 0
  5785. tangentMode: 0
  5786. m_PreInfinity: 2
  5787. m_PostInfinity: 2
  5788. m_RotationOrder: 4
  5789. minCurve:
  5790. serializedVersion: 2
  5791. m_Curve:
  5792. - time: 0
  5793. value: 0
  5794. inSlope: 0
  5795. outSlope: 0
  5796. tangentMode: 0
  5797. - time: 1
  5798. value: 0
  5799. inSlope: 0
  5800. outSlope: 0
  5801. tangentMode: 0
  5802. m_PreInfinity: 2
  5803. m_PostInfinity: 2
  5804. m_RotationOrder: 4
  5805. minMaxState: 0
  5806. curve:
  5807. scalar: 0.7853982
  5808. maxCurve:
  5809. serializedVersion: 2
  5810. m_Curve:
  5811. - time: 0
  5812. value: 1
  5813. inSlope: 0
  5814. outSlope: 0
  5815. tangentMode: 0
  5816. - time: 1
  5817. value: 1
  5818. inSlope: 0
  5819. outSlope: 0
  5820. tangentMode: 0
  5821. m_PreInfinity: 2
  5822. m_PostInfinity: 2
  5823. m_RotationOrder: 4
  5824. minCurve:
  5825. serializedVersion: 2
  5826. m_Curve:
  5827. - time: 0
  5828. value: 0
  5829. inSlope: 0
  5830. outSlope: 0
  5831. tangentMode: 0
  5832. - time: 1
  5833. value: 0
  5834. inSlope: 0
  5835. outSlope: 0
  5836. tangentMode: 0
  5837. m_PreInfinity: 2
  5838. m_PostInfinity: 2
  5839. m_RotationOrder: 4
  5840. minMaxState: 0
  5841. separateAxes: 0
  5842. range: {x: 0, y: 1}
  5843. ColorBySpeedModule:
  5844. enabled: 0
  5845. gradient:
  5846. maxGradient:
  5847. key0:
  5848. serializedVersion: 2
  5849. rgba: 4294967295
  5850. key1:
  5851. serializedVersion: 2
  5852. rgba: 4294967295
  5853. key2:
  5854. serializedVersion: 2
  5855. rgba: 0
  5856. key3:
  5857. serializedVersion: 2
  5858. rgba: 0
  5859. key4:
  5860. serializedVersion: 2
  5861. rgba: 0
  5862. key5:
  5863. serializedVersion: 2
  5864. rgba: 0
  5865. key6:
  5866. serializedVersion: 2
  5867. rgba: 0
  5868. key7:
  5869. serializedVersion: 2
  5870. rgba: 0
  5871. ctime0: 0
  5872. ctime1: 65535
  5873. ctime2: 0
  5874. ctime3: 0
  5875. ctime4: 0
  5876. ctime5: 0
  5877. ctime6: 0
  5878. ctime7: 0
  5879. atime0: 0
  5880. atime1: 65535
  5881. atime2: 0
  5882. atime3: 0
  5883. atime4: 0
  5884. atime5: 0
  5885. atime6: 0
  5886. atime7: 0
  5887. m_NumColorKeys: 2
  5888. m_NumAlphaKeys: 2
  5889. minGradient:
  5890. key0:
  5891. serializedVersion: 2
  5892. rgba: 4294967295
  5893. key1:
  5894. serializedVersion: 2
  5895. rgba: 4294967295
  5896. key2:
  5897. serializedVersion: 2
  5898. rgba: 0
  5899. key3:
  5900. serializedVersion: 2
  5901. rgba: 0
  5902. key4:
  5903. serializedVersion: 2
  5904. rgba: 0
  5905. key5:
  5906. serializedVersion: 2
  5907. rgba: 0
  5908. key6:
  5909. serializedVersion: 2
  5910. rgba: 0
  5911. key7:
  5912. serializedVersion: 2
  5913. rgba: 0
  5914. ctime0: 0
  5915. ctime1: 65535
  5916. ctime2: 0
  5917. ctime3: 0
  5918. ctime4: 0
  5919. ctime5: 0
  5920. ctime6: 0
  5921. ctime7: 0
  5922. atime0: 0
  5923. atime1: 65535
  5924. atime2: 0
  5925. atime3: 0
  5926. atime4: 0
  5927. atime5: 0
  5928. atime6: 0
  5929. atime7: 0
  5930. m_NumColorKeys: 2
  5931. m_NumAlphaKeys: 2
  5932. minColor:
  5933. serializedVersion: 2
  5934. rgba: 4294967295
  5935. maxColor:
  5936. serializedVersion: 2
  5937. rgba: 4294967295
  5938. minMaxState: 1
  5939. range: {x: 0, y: 1}
  5940. CollisionModule:
  5941. enabled: 0
  5942. serializedVersion: 2
  5943. type: 0
  5944. collisionMode: 0
  5945. plane0: {fileID: 0}
  5946. plane1: {fileID: 0}
  5947. plane2: {fileID: 0}
  5948. plane3: {fileID: 0}
  5949. plane4: {fileID: 0}
  5950. plane5: {fileID: 0}
  5951. m_Dampen:
  5952. scalar: 0
  5953. maxCurve:
  5954. serializedVersion: 2
  5955. m_Curve:
  5956. - time: 0
  5957. value: 1
  5958. inSlope: 0
  5959. outSlope: 0
  5960. tangentMode: 0
  5961. - time: 1
  5962. value: 1
  5963. inSlope: 0
  5964. outSlope: 0
  5965. tangentMode: 0
  5966. m_PreInfinity: 2
  5967. m_PostInfinity: 2
  5968. m_RotationOrder: 4
  5969. minCurve:
  5970. serializedVersion: 2
  5971. m_Curve:
  5972. - time: 0
  5973. value: 0
  5974. inSlope: 0
  5975. outSlope: 0
  5976. tangentMode: 0
  5977. - time: 1
  5978. value: 0
  5979. inSlope: 0
  5980. outSlope: 0
  5981. tangentMode: 0
  5982. m_PreInfinity: 2
  5983. m_PostInfinity: 2
  5984. m_RotationOrder: 4
  5985. minMaxState: 0
  5986. m_Bounce:
  5987. scalar: 1
  5988. maxCurve:
  5989. serializedVersion: 2
  5990. m_Curve:
  5991. - time: 0
  5992. value: 1
  5993. inSlope: 0
  5994. outSlope: 0
  5995. tangentMode: 0
  5996. - time: 1
  5997. value: 1
  5998. inSlope: 0
  5999. outSlope: 0
  6000. tangentMode: 0
  6001. m_PreInfinity: 2
  6002. m_PostInfinity: 2
  6003. m_RotationOrder: 4
  6004. minCurve:
  6005. serializedVersion: 2
  6006. m_Curve:
  6007. - time: 0
  6008. value: 0
  6009. inSlope: 0
  6010. outSlope: 0
  6011. tangentMode: 0
  6012. - time: 1
  6013. value: 0
  6014. inSlope: 0
  6015. outSlope: 0
  6016. tangentMode: 0
  6017. m_PreInfinity: 2
  6018. m_PostInfinity: 2
  6019. m_RotationOrder: 4
  6020. minMaxState: 0
  6021. m_EnergyLossOnCollision:
  6022. scalar: 0
  6023. maxCurve:
  6024. serializedVersion: 2
  6025. m_Curve:
  6026. - time: 0
  6027. value: 1
  6028. inSlope: 0
  6029. outSlope: 0
  6030. tangentMode: 0
  6031. - time: 1
  6032. value: 1
  6033. inSlope: 0
  6034. outSlope: 0
  6035. tangentMode: 0
  6036. m_PreInfinity: 2
  6037. m_PostInfinity: 2
  6038. m_RotationOrder: 4
  6039. minCurve:
  6040. serializedVersion: 2
  6041. m_Curve:
  6042. - time: 0
  6043. value: 0
  6044. inSlope: 0
  6045. outSlope: 0
  6046. tangentMode: 0
  6047. - time: 1
  6048. value: 0
  6049. inSlope: 0
  6050. outSlope: 0
  6051. tangentMode: 0
  6052. m_PreInfinity: 2
  6053. m_PostInfinity: 2
  6054. m_RotationOrder: 4
  6055. minMaxState: 0
  6056. minKillSpeed: 0
  6057. radiusScale: 1
  6058. collidesWith:
  6059. serializedVersion: 2
  6060. m_Bits: 4294967295
  6061. maxCollisionShapes: 256
  6062. quality: 0
  6063. voxelSize: 0.5
  6064. collisionMessages: 0
  6065. collidesWithDynamic: 1
  6066. interiorCollisions: 1
  6067. SubModule:
  6068. enabled: 0
  6069. subEmitterBirth: {fileID: 0}
  6070. subEmitterBirth1: {fileID: 0}
  6071. subEmitterCollision: {fileID: 0}
  6072. subEmitterCollision1: {fileID: 0}
  6073. subEmitterDeath: {fileID: 0}
  6074. subEmitterDeath1: {fileID: 0}
  6075. --- !u!198 &19800008
  6076. ParticleSystem:
  6077. m_ObjectHideFlags: 1
  6078. m_PrefabParentObject: {fileID: 0}
  6079. m_PrefabInternal: {fileID: 100100000}
  6080. m_GameObject: {fileID: 100000}
  6081. serializedVersion: 2
  6082. lengthInSec: 1
  6083. startDelay:
  6084. scalar: 0
  6085. maxCurve:
  6086. serializedVersion: 2
  6087. m_Curve:
  6088. - time: 0
  6089. value: 1
  6090. inSlope: 0
  6091. outSlope: 0
  6092. tangentMode: 0
  6093. - time: 1
  6094. value: 1
  6095. inSlope: 0
  6096. outSlope: 0
  6097. tangentMode: 0
  6098. m_PreInfinity: 2
  6099. m_PostInfinity: 2
  6100. m_RotationOrder: 4
  6101. minCurve:
  6102. serializedVersion: 2
  6103. m_Curve:
  6104. - time: 0
  6105. value: 0
  6106. inSlope: 0
  6107. outSlope: 0
  6108. tangentMode: 0
  6109. - time: 1
  6110. value: 0
  6111. inSlope: 0
  6112. outSlope: 0
  6113. tangentMode: 0
  6114. m_PreInfinity: 2
  6115. m_PostInfinity: 2
  6116. m_RotationOrder: 4
  6117. minMaxState: 0
  6118. speed: 1
  6119. randomSeed: 0
  6120. looping: 0
  6121. prewarm: 0
  6122. playOnAwake: 1
  6123. moveWithTransform: 0
  6124. scalingMode: 2
  6125. InitialModule:
  6126. serializedVersion: 2
  6127. enabled: 1
  6128. startLifetime:
  6129. scalar: 0.8
  6130. maxCurve:
  6131. serializedVersion: 2
  6132. m_Curve:
  6133. - time: 0
  6134. value: 1
  6135. inSlope: 0
  6136. outSlope: 0
  6137. tangentMode: 0
  6138. - time: 1
  6139. value: 1
  6140. inSlope: 0
  6141. outSlope: 0
  6142. tangentMode: 0
  6143. m_PreInfinity: 2
  6144. m_PostInfinity: 2
  6145. m_RotationOrder: 4
  6146. minCurve:
  6147. serializedVersion: 2
  6148. m_Curve:
  6149. - time: 0
  6150. value: 0
  6151. inSlope: 0
  6152. outSlope: 0
  6153. tangentMode: 0
  6154. - time: 1
  6155. value: 0
  6156. inSlope: 0
  6157. outSlope: 0
  6158. tangentMode: 0
  6159. m_PreInfinity: 2
  6160. m_PostInfinity: 2
  6161. m_RotationOrder: 4
  6162. minMaxState: 0
  6163. startSpeed:
  6164. scalar: 8
  6165. maxCurve:
  6166. serializedVersion: 2
  6167. m_Curve:
  6168. - time: 0
  6169. value: 1
  6170. inSlope: 0
  6171. outSlope: 0
  6172. tangentMode: 0
  6173. - time: 1
  6174. value: 1
  6175. inSlope: 0
  6176. outSlope: 0
  6177. tangentMode: 0
  6178. m_PreInfinity: 2
  6179. m_PostInfinity: 2
  6180. m_RotationOrder: 4
  6181. minCurve:
  6182. serializedVersion: 2
  6183. m_Curve:
  6184. - time: 0
  6185. value: 0
  6186. inSlope: 0
  6187. outSlope: 0
  6188. tangentMode: 0
  6189. - time: 1
  6190. value: 0
  6191. inSlope: 0
  6192. outSlope: 0
  6193. tangentMode: 0
  6194. m_PreInfinity: 2
  6195. m_PostInfinity: 2
  6196. m_RotationOrder: 4
  6197. minMaxState: 0
  6198. startColor:
  6199. maxGradient:
  6200. key0:
  6201. serializedVersion: 2
  6202. rgba: 4294967295
  6203. key1:
  6204. serializedVersion: 2
  6205. rgba: 4294967295
  6206. key2:
  6207. serializedVersion: 2
  6208. rgba: 0
  6209. key3:
  6210. serializedVersion: 2
  6211. rgba: 0
  6212. key4:
  6213. serializedVersion: 2
  6214. rgba: 0
  6215. key5:
  6216. serializedVersion: 2
  6217. rgba: 0
  6218. key6:
  6219. serializedVersion: 2
  6220. rgba: 0
  6221. key7:
  6222. serializedVersion: 2
  6223. rgba: 0
  6224. ctime0: 0
  6225. ctime1: 65535
  6226. ctime2: 0
  6227. ctime3: 0
  6228. ctime4: 0
  6229. ctime5: 0
  6230. ctime6: 0
  6231. ctime7: 0
  6232. atime0: 0
  6233. atime1: 65535
  6234. atime2: 0
  6235. atime3: 0
  6236. atime4: 0
  6237. atime5: 0
  6238. atime6: 0
  6239. atime7: 0
  6240. m_NumColorKeys: 2
  6241. m_NumAlphaKeys: 2
  6242. minGradient:
  6243. key0:
  6244. serializedVersion: 2
  6245. rgba: 4294967295
  6246. key1:
  6247. serializedVersion: 2
  6248. rgba: 4294967295
  6249. key2:
  6250. serializedVersion: 2
  6251. rgba: 0
  6252. key3:
  6253. serializedVersion: 2
  6254. rgba: 0
  6255. key4:
  6256. serializedVersion: 2
  6257. rgba: 0
  6258. key5:
  6259. serializedVersion: 2
  6260. rgba: 0
  6261. key6:
  6262. serializedVersion: 2
  6263. rgba: 0
  6264. key7:
  6265. serializedVersion: 2
  6266. rgba: 0
  6267. ctime0: 0
  6268. ctime1: 65535
  6269. ctime2: 0
  6270. ctime3: 0
  6271. ctime4: 0
  6272. ctime5: 0
  6273. ctime6: 0
  6274. ctime7: 0
  6275. atime0: 0
  6276. atime1: 65535
  6277. atime2: 0
  6278. atime3: 0
  6279. atime4: 0
  6280. atime5: 0
  6281. atime6: 0
  6282. atime7: 0
  6283. m_NumColorKeys: 2
  6284. m_NumAlphaKeys: 2
  6285. minColor:
  6286. serializedVersion: 2
  6287. rgba: 4294967295
  6288. maxColor:
  6289. serializedVersion: 2
  6290. rgba: 4294967295
  6291. minMaxState: 0
  6292. startSize:
  6293. scalar: 0.18
  6294. maxCurve:
  6295. serializedVersion: 2
  6296. m_Curve:
  6297. - time: 0
  6298. value: 1
  6299. inSlope: 0
  6300. outSlope: 0
  6301. tangentMode: 0
  6302. m_PreInfinity: 2
  6303. m_PostInfinity: 2
  6304. m_RotationOrder: 4
  6305. minCurve:
  6306. serializedVersion: 2
  6307. m_Curve:
  6308. - time: 0
  6309. value: 0.27777776
  6310. inSlope: 0
  6311. outSlope: 0
  6312. tangentMode: 0
  6313. m_PreInfinity: 2
  6314. m_PostInfinity: 2
  6315. m_RotationOrder: 4
  6316. minMaxState: 3
  6317. startRotationX:
  6318. scalar: 1
  6319. maxCurve:
  6320. serializedVersion: 2
  6321. m_Curve:
  6322. - time: 0
  6323. value: 1
  6324. inSlope: 0
  6325. outSlope: 0
  6326. tangentMode: 0
  6327. - time: 1
  6328. value: 1
  6329. inSlope: 0
  6330. outSlope: 0
  6331. tangentMode: 0
  6332. m_PreInfinity: 2
  6333. m_PostInfinity: 2
  6334. m_RotationOrder: 4
  6335. minCurve:
  6336. serializedVersion: 2
  6337. m_Curve:
  6338. - time: 0
  6339. value: 0
  6340. inSlope: 0
  6341. outSlope: 0
  6342. tangentMode: 0
  6343. - time: 1
  6344. value: 0
  6345. inSlope: 0
  6346. outSlope: 0
  6347. tangentMode: 0
  6348. m_PreInfinity: 2
  6349. m_PostInfinity: 2
  6350. m_RotationOrder: 4
  6351. minMaxState: 0
  6352. startRotationY:
  6353. scalar: 1
  6354. maxCurve:
  6355. serializedVersion: 2
  6356. m_Curve:
  6357. - time: 0
  6358. value: 1
  6359. inSlope: 0
  6360. outSlope: 0
  6361. tangentMode: 0
  6362. - time: 1
  6363. value: 1
  6364. inSlope: 0
  6365. outSlope: 0
  6366. tangentMode: 0
  6367. m_PreInfinity: 2
  6368. m_PostInfinity: 2
  6369. m_RotationOrder: 4
  6370. minCurve:
  6371. serializedVersion: 2
  6372. m_Curve:
  6373. - time: 0
  6374. value: 0
  6375. inSlope: 0
  6376. outSlope: 0
  6377. tangentMode: 0
  6378. - time: 1
  6379. value: 0
  6380. inSlope: 0
  6381. outSlope: 0
  6382. tangentMode: 0
  6383. m_PreInfinity: 2
  6384. m_PostInfinity: 2
  6385. m_RotationOrder: 4
  6386. minMaxState: 0
  6387. startRotation:
  6388. scalar: 6.283185
  6389. maxCurve:
  6390. serializedVersion: 2
  6391. m_Curve:
  6392. - time: 0
  6393. value: 1
  6394. inSlope: 0
  6395. outSlope: 0
  6396. tangentMode: 0
  6397. m_PreInfinity: 2
  6398. m_PostInfinity: 2
  6399. m_RotationOrder: 4
  6400. minCurve:
  6401. serializedVersion: 2
  6402. m_Curve:
  6403. - time: 0
  6404. value: 0
  6405. inSlope: 0
  6406. outSlope: 0
  6407. tangentMode: 0
  6408. m_PreInfinity: 2
  6409. m_PostInfinity: 2
  6410. m_RotationOrder: 4
  6411. minMaxState: 0
  6412. randomizeRotationDirection: 0
  6413. gravityModifier: 0
  6414. maxNumParticles: 60
  6415. rotation3D: 0
  6416. ShapeModule:
  6417. serializedVersion: 2
  6418. enabled: 1
  6419. type: 0
  6420. radius: 0.15
  6421. angle: 25
  6422. length: 5
  6423. boxX: 1
  6424. boxY: 1
  6425. boxZ: 1
  6426. arc: 360
  6427. placementMode: 0
  6428. m_Mesh: {fileID: 0}
  6429. m_MeshRenderer: {fileID: 0}
  6430. m_SkinnedMeshRenderer: {fileID: 0}
  6431. m_MeshMaterialIndex: 0
  6432. m_MeshNormalOffset: 0
  6433. m_UseMeshMaterialIndex: 0
  6434. m_UseMeshColors: 1
  6435. randomDirection: 0
  6436. EmissionModule:
  6437. enabled: 1
  6438. serializedVersion: 2
  6439. m_Type: 0
  6440. rate:
  6441. scalar: 0
  6442. maxCurve:
  6443. serializedVersion: 2
  6444. m_Curve:
  6445. - time: 0
  6446. value: 1
  6447. inSlope: 0
  6448. outSlope: 0
  6449. tangentMode: 0
  6450. - time: 1
  6451. value: 1
  6452. inSlope: 0
  6453. outSlope: 0
  6454. tangentMode: 0
  6455. m_PreInfinity: 2
  6456. m_PostInfinity: 2
  6457. m_RotationOrder: 4
  6458. minCurve:
  6459. serializedVersion: 2
  6460. m_Curve:
  6461. - time: 0
  6462. value: 0
  6463. inSlope: 0
  6464. outSlope: 0
  6465. tangentMode: 0
  6466. - time: 1
  6467. value: 0
  6468. inSlope: 0
  6469. outSlope: 0
  6470. tangentMode: 0
  6471. m_PreInfinity: 2
  6472. m_PostInfinity: 2
  6473. m_RotationOrder: 4
  6474. minMaxState: 0
  6475. cnt0: 30
  6476. cnt1: 30
  6477. cnt2: 30
  6478. cnt3: 30
  6479. cntmax0: 30
  6480. cntmax1: 30
  6481. cntmax2: 30
  6482. cntmax3: 30
  6483. time0: 0
  6484. time1: 0
  6485. time2: 0
  6486. time3: 0
  6487. m_BurstCount: 1
  6488. SizeModule:
  6489. enabled: 1
  6490. curve:
  6491. scalar: 1
  6492. maxCurve:
  6493. serializedVersion: 2
  6494. m_Curve:
  6495. - time: 0
  6496. value: 0
  6497. inSlope: 0
  6498. outSlope: 0
  6499. tangentMode: 0
  6500. - time: 0.07537711
  6501. value: 1
  6502. inSlope: 0
  6503. outSlope: 0
  6504. tangentMode: 0
  6505. - time: 1
  6506. value: 0
  6507. inSlope: 0
  6508. outSlope: 0
  6509. tangentMode: 0
  6510. m_PreInfinity: 2
  6511. m_PostInfinity: 2
  6512. m_RotationOrder: 4
  6513. minCurve:
  6514. serializedVersion: 2
  6515. m_Curve:
  6516. - time: 0
  6517. value: 0
  6518. inSlope: 0
  6519. outSlope: 0
  6520. tangentMode: 0
  6521. - time: 1
  6522. value: 0
  6523. inSlope: 0
  6524. outSlope: 0
  6525. tangentMode: 0
  6526. m_PreInfinity: 2
  6527. m_PostInfinity: 2
  6528. m_RotationOrder: 4
  6529. minMaxState: 1
  6530. RotationModule:
  6531. enabled: 0
  6532. x:
  6533. scalar: 1
  6534. maxCurve:
  6535. serializedVersion: 2
  6536. m_Curve:
  6537. - time: 0
  6538. value: 1
  6539. inSlope: 0
  6540. outSlope: 0
  6541. tangentMode: 0
  6542. - time: 1
  6543. value: 1
  6544. inSlope: 0
  6545. outSlope: 0
  6546. tangentMode: 0
  6547. m_PreInfinity: 2
  6548. m_PostInfinity: 2
  6549. m_RotationOrder: 4
  6550. minCurve:
  6551. serializedVersion: 2
  6552. m_Curve:
  6553. - time: 0
  6554. value: 0
  6555. inSlope: 0
  6556. outSlope: 0
  6557. tangentMode: 0
  6558. - time: 1
  6559. value: 0
  6560. inSlope: 0
  6561. outSlope: 0
  6562. tangentMode: 0
  6563. m_PreInfinity: 2
  6564. m_PostInfinity: 2
  6565. m_RotationOrder: 4
  6566. minMaxState: 0
  6567. y:
  6568. scalar: 1
  6569. maxCurve:
  6570. serializedVersion: 2
  6571. m_Curve:
  6572. - time: 0
  6573. value: 1
  6574. inSlope: 0
  6575. outSlope: 0
  6576. tangentMode: 0
  6577. - time: 1
  6578. value: 1
  6579. inSlope: 0
  6580. outSlope: 0
  6581. tangentMode: 0
  6582. m_PreInfinity: 2
  6583. m_PostInfinity: 2
  6584. m_RotationOrder: 4
  6585. minCurve:
  6586. serializedVersion: 2
  6587. m_Curve:
  6588. - time: 0
  6589. value: 0
  6590. inSlope: 0
  6591. outSlope: 0
  6592. tangentMode: 0
  6593. - time: 1
  6594. value: 0
  6595. inSlope: 0
  6596. outSlope: 0
  6597. tangentMode: 0
  6598. m_PreInfinity: 2
  6599. m_PostInfinity: 2
  6600. m_RotationOrder: 4
  6601. minMaxState: 0
  6602. curve:
  6603. scalar: 6.283185
  6604. maxCurve:
  6605. serializedVersion: 2
  6606. m_Curve:
  6607. - time: 0
  6608. value: 1
  6609. inSlope: 0
  6610. outSlope: 0
  6611. tangentMode: 0
  6612. - time: 1
  6613. value: 1
  6614. inSlope: 0
  6615. outSlope: 0
  6616. tangentMode: 0
  6617. m_PreInfinity: 2
  6618. m_PostInfinity: 2
  6619. m_RotationOrder: 4
  6620. minCurve:
  6621. serializedVersion: 2
  6622. m_Curve:
  6623. - time: 0
  6624. value: 0
  6625. inSlope: 0
  6626. outSlope: 0
  6627. tangentMode: 0
  6628. - time: 1
  6629. value: 0
  6630. inSlope: 0
  6631. outSlope: 0
  6632. tangentMode: 0
  6633. m_PreInfinity: 2
  6634. m_PostInfinity: 2
  6635. m_RotationOrder: 4
  6636. minMaxState: 0
  6637. separateAxes: 0
  6638. ColorModule:
  6639. enabled: 0
  6640. gradient:
  6641. maxGradient:
  6642. key0:
  6643. serializedVersion: 2
  6644. rgba: 4294967295
  6645. key1:
  6646. serializedVersion: 2
  6647. rgba: 4294967295
  6648. key2:
  6649. serializedVersion: 2
  6650. rgba: 0
  6651. key3:
  6652. serializedVersion: 2
  6653. rgba: 0
  6654. key4:
  6655. serializedVersion: 2
  6656. rgba: 0
  6657. key5:
  6658. serializedVersion: 2
  6659. rgba: 0
  6660. key6:
  6661. serializedVersion: 2
  6662. rgba: 0
  6663. key7:
  6664. serializedVersion: 2
  6665. rgba: 0
  6666. ctime0: 0
  6667. ctime1: 65535
  6668. ctime2: 0
  6669. ctime3: 0
  6670. ctime4: 0
  6671. ctime5: 0
  6672. ctime6: 0
  6673. ctime7: 0
  6674. atime0: 0
  6675. atime1: 65535
  6676. atime2: 0
  6677. atime3: 0
  6678. atime4: 0
  6679. atime5: 0
  6680. atime6: 0
  6681. atime7: 0
  6682. m_NumColorKeys: 2
  6683. m_NumAlphaKeys: 2
  6684. minGradient:
  6685. key0:
  6686. serializedVersion: 2
  6687. rgba: 4278190335
  6688. key1:
  6689. serializedVersion: 2
  6690. rgba: 4294967295
  6691. key2:
  6692. serializedVersion: 2
  6693. rgba: 0
  6694. key3:
  6695. serializedVersion: 2
  6696. rgba: 0
  6697. key4:
  6698. serializedVersion: 2
  6699. rgba: 0
  6700. key5:
  6701. serializedVersion: 2
  6702. rgba: 0
  6703. key6:
  6704. serializedVersion: 2
  6705. rgba: 0
  6706. key7:
  6707. serializedVersion: 2
  6708. rgba: 0
  6709. ctime0: 0
  6710. ctime1: 65535
  6711. ctime2: 0
  6712. ctime3: 0
  6713. ctime4: 0
  6714. ctime5: 0
  6715. ctime6: 0
  6716. ctime7: 0
  6717. atime0: 0
  6718. atime1: 65535
  6719. atime2: 0
  6720. atime3: 0
  6721. atime4: 0
  6722. atime5: 0
  6723. atime6: 0
  6724. atime7: 0
  6725. m_NumColorKeys: 2
  6726. m_NumAlphaKeys: 2
  6727. minColor:
  6728. serializedVersion: 2
  6729. rgba: 4294967295
  6730. maxColor:
  6731. serializedVersion: 2
  6732. rgba: 4294967295
  6733. minMaxState: 1
  6734. UVModule:
  6735. enabled: 0
  6736. frameOverTime:
  6737. scalar: 1
  6738. maxCurve:
  6739. serializedVersion: 2
  6740. m_Curve:
  6741. - time: 0
  6742. value: 0
  6743. inSlope: 0
  6744. outSlope: 1
  6745. tangentMode: 0
  6746. - time: 1
  6747. value: 1
  6748. inSlope: 1
  6749. outSlope: 0
  6750. tangentMode: 0
  6751. m_PreInfinity: 2
  6752. m_PostInfinity: 2
  6753. m_RotationOrder: 4
  6754. minCurve:
  6755. serializedVersion: 2
  6756. m_Curve:
  6757. - time: 0
  6758. value: 0
  6759. inSlope: 0
  6760. outSlope: 1
  6761. tangentMode: 0
  6762. - time: 1
  6763. value: 1
  6764. inSlope: 1
  6765. outSlope: 0
  6766. tangentMode: 0
  6767. m_PreInfinity: 2
  6768. m_PostInfinity: 2
  6769. m_RotationOrder: 4
  6770. minMaxState: 1
  6771. tilesX: 1
  6772. tilesY: 1
  6773. animationType: 0
  6774. rowIndex: 0
  6775. cycles: 1
  6776. randomRow: 1
  6777. VelocityModule:
  6778. enabled: 0
  6779. x:
  6780. scalar: 0
  6781. maxCurve:
  6782. serializedVersion: 2
  6783. m_Curve:
  6784. - time: 0
  6785. value: 1
  6786. inSlope: 0
  6787. outSlope: 0
  6788. tangentMode: 0
  6789. - time: 1
  6790. value: 1
  6791. inSlope: 0
  6792. outSlope: 0
  6793. tangentMode: 0
  6794. m_PreInfinity: 2
  6795. m_PostInfinity: 2
  6796. m_RotationOrder: 4
  6797. minCurve:
  6798. serializedVersion: 2
  6799. m_Curve:
  6800. - time: 0
  6801. value: 0
  6802. inSlope: 0
  6803. outSlope: 0
  6804. tangentMode: 0
  6805. - time: 1
  6806. value: 0
  6807. inSlope: 0
  6808. outSlope: 0
  6809. tangentMode: 0
  6810. m_PreInfinity: 2
  6811. m_PostInfinity: 2
  6812. m_RotationOrder: 4
  6813. minMaxState: 0
  6814. y:
  6815. scalar: 0
  6816. maxCurve:
  6817. serializedVersion: 2
  6818. m_Curve:
  6819. - time: 0
  6820. value: 1
  6821. inSlope: 0
  6822. outSlope: 0
  6823. tangentMode: 0
  6824. - time: 1
  6825. value: 1
  6826. inSlope: 0
  6827. outSlope: 0
  6828. tangentMode: 0
  6829. m_PreInfinity: 2
  6830. m_PostInfinity: 2
  6831. m_RotationOrder: 4
  6832. minCurve:
  6833. serializedVersion: 2
  6834. m_Curve:
  6835. - time: 0
  6836. value: 0
  6837. inSlope: 0
  6838. outSlope: 0
  6839. tangentMode: 0
  6840. - time: 1
  6841. value: 0
  6842. inSlope: 0
  6843. outSlope: 0
  6844. tangentMode: 0
  6845. m_PreInfinity: 2
  6846. m_PostInfinity: 2
  6847. m_RotationOrder: 4
  6848. minMaxState: 0
  6849. z:
  6850. scalar: 0
  6851. maxCurve:
  6852. serializedVersion: 2
  6853. m_Curve:
  6854. - time: 0
  6855. value: 1
  6856. inSlope: 0
  6857. outSlope: 0
  6858. tangentMode: 0
  6859. - time: 1
  6860. value: 1
  6861. inSlope: 0
  6862. outSlope: 0
  6863. tangentMode: 0
  6864. m_PreInfinity: 2
  6865. m_PostInfinity: 2
  6866. m_RotationOrder: 4
  6867. minCurve:
  6868. serializedVersion: 2
  6869. m_Curve:
  6870. - time: 0
  6871. value: 0
  6872. inSlope: 0
  6873. outSlope: 0
  6874. tangentMode: 0
  6875. - time: 1
  6876. value: 0
  6877. inSlope: 0
  6878. outSlope: 0
  6879. tangentMode: 0
  6880. m_PreInfinity: 2
  6881. m_PostInfinity: 2
  6882. m_RotationOrder: 4
  6883. minMaxState: 0
  6884. inWorldSpace: 0
  6885. InheritVelocityModule:
  6886. enabled: 0
  6887. m_Mode: 0
  6888. m_Curve:
  6889. scalar: 1
  6890. maxCurve:
  6891. serializedVersion: 2
  6892. m_Curve:
  6893. - time: 0
  6894. value: 1
  6895. inSlope: 0
  6896. outSlope: 0
  6897. tangentMode: 0
  6898. - time: 1
  6899. value: 1
  6900. inSlope: 0
  6901. outSlope: 0
  6902. tangentMode: 0
  6903. m_PreInfinity: 2
  6904. m_PostInfinity: 2
  6905. m_RotationOrder: 4
  6906. minCurve:
  6907. serializedVersion: 2
  6908. m_Curve:
  6909. - time: 0
  6910. value: 0
  6911. inSlope: 0
  6912. outSlope: 0
  6913. tangentMode: 0
  6914. - time: 1
  6915. value: 0
  6916. inSlope: 0
  6917. outSlope: 0
  6918. tangentMode: 0
  6919. m_PreInfinity: 2
  6920. m_PostInfinity: 2
  6921. m_RotationOrder: 4
  6922. minMaxState: 0
  6923. ForceModule:
  6924. enabled: 0
  6925. x:
  6926. scalar: 0
  6927. maxCurve:
  6928. serializedVersion: 2
  6929. m_Curve:
  6930. - time: 0
  6931. value: 1
  6932. inSlope: 0
  6933. outSlope: 0
  6934. tangentMode: 0
  6935. - time: 1
  6936. value: 1
  6937. inSlope: 0
  6938. outSlope: 0
  6939. tangentMode: 0
  6940. m_PreInfinity: 2
  6941. m_PostInfinity: 2
  6942. m_RotationOrder: 4
  6943. minCurve:
  6944. serializedVersion: 2
  6945. m_Curve:
  6946. - time: 0
  6947. value: 0
  6948. inSlope: 0
  6949. outSlope: 0
  6950. tangentMode: 0
  6951. - time: 1
  6952. value: 0
  6953. inSlope: 0
  6954. outSlope: 0
  6955. tangentMode: 0
  6956. m_PreInfinity: 2
  6957. m_PostInfinity: 2
  6958. m_RotationOrder: 4
  6959. minMaxState: 0
  6960. y:
  6961. scalar: 0
  6962. maxCurve:
  6963. serializedVersion: 2
  6964. m_Curve:
  6965. - time: 0
  6966. value: 1
  6967. inSlope: 0
  6968. outSlope: 0
  6969. tangentMode: 0
  6970. - time: 1
  6971. value: 1
  6972. inSlope: 0
  6973. outSlope: 0
  6974. tangentMode: 0
  6975. m_PreInfinity: 2
  6976. m_PostInfinity: 2
  6977. m_RotationOrder: 4
  6978. minCurve:
  6979. serializedVersion: 2
  6980. m_Curve:
  6981. - time: 0
  6982. value: 0
  6983. inSlope: 0
  6984. outSlope: 0
  6985. tangentMode: 0
  6986. - time: 1
  6987. value: 0
  6988. inSlope: 0
  6989. outSlope: 0
  6990. tangentMode: 0
  6991. m_PreInfinity: 2
  6992. m_PostInfinity: 2
  6993. m_RotationOrder: 4
  6994. minMaxState: 0
  6995. z:
  6996. scalar: 0
  6997. maxCurve:
  6998. serializedVersion: 2
  6999. m_Curve:
  7000. - time: 0
  7001. value: 1
  7002. inSlope: 0
  7003. outSlope: 0
  7004. tangentMode: 0
  7005. - time: 1
  7006. value: 1
  7007. inSlope: 0
  7008. outSlope: 0
  7009. tangentMode: 0
  7010. m_PreInfinity: 2
  7011. m_PostInfinity: 2
  7012. m_RotationOrder: 4
  7013. minCurve:
  7014. serializedVersion: 2
  7015. m_Curve:
  7016. - time: 0
  7017. value: 0
  7018. inSlope: 0
  7019. outSlope: 0
  7020. tangentMode: 0
  7021. - time: 1
  7022. value: 0
  7023. inSlope: 0
  7024. outSlope: 0
  7025. tangentMode: 0
  7026. m_PreInfinity: 2
  7027. m_PostInfinity: 2
  7028. m_RotationOrder: 4
  7029. minMaxState: 0
  7030. inWorldSpace: 0
  7031. randomizePerFrame: 0
  7032. ExternalForcesModule:
  7033. enabled: 0
  7034. multiplier: 1
  7035. ClampVelocityModule:
  7036. enabled: 0
  7037. x:
  7038. scalar: 1
  7039. maxCurve:
  7040. serializedVersion: 2
  7041. m_Curve:
  7042. - time: 0
  7043. value: 1
  7044. inSlope: 0
  7045. outSlope: 0
  7046. tangentMode: 0
  7047. - time: 1
  7048. value: 1
  7049. inSlope: 0
  7050. outSlope: 0
  7051. tangentMode: 0
  7052. m_PreInfinity: 2
  7053. m_PostInfinity: 2
  7054. m_RotationOrder: 4
  7055. minCurve:
  7056. serializedVersion: 2
  7057. m_Curve:
  7058. - time: 0
  7059. value: 0
  7060. inSlope: 0
  7061. outSlope: 0
  7062. tangentMode: 0
  7063. - time: 1
  7064. value: 0
  7065. inSlope: 0
  7066. outSlope: 0
  7067. tangentMode: 0
  7068. m_PreInfinity: 2
  7069. m_PostInfinity: 2
  7070. m_RotationOrder: 4
  7071. minMaxState: 0
  7072. y:
  7073. scalar: 1
  7074. maxCurve:
  7075. serializedVersion: 2
  7076. m_Curve:
  7077. - time: 0
  7078. value: 1
  7079. inSlope: 0
  7080. outSlope: 0
  7081. tangentMode: 0
  7082. - time: 1
  7083. value: 1
  7084. inSlope: 0
  7085. outSlope: 0
  7086. tangentMode: 0
  7087. m_PreInfinity: 2
  7088. m_PostInfinity: 2
  7089. m_RotationOrder: 4
  7090. minCurve:
  7091. serializedVersion: 2
  7092. m_Curve:
  7093. - time: 0
  7094. value: 0
  7095. inSlope: 0
  7096. outSlope: 0
  7097. tangentMode: 0
  7098. - time: 1
  7099. value: 0
  7100. inSlope: 0
  7101. outSlope: 0
  7102. tangentMode: 0
  7103. m_PreInfinity: 2
  7104. m_PostInfinity: 2
  7105. m_RotationOrder: 4
  7106. minMaxState: 0
  7107. z:
  7108. scalar: 1
  7109. maxCurve:
  7110. serializedVersion: 2
  7111. m_Curve:
  7112. - time: 0
  7113. value: 1
  7114. inSlope: 0
  7115. outSlope: 0
  7116. tangentMode: 0
  7117. - time: 1
  7118. value: 1
  7119. inSlope: 0
  7120. outSlope: 0
  7121. tangentMode: 0
  7122. m_PreInfinity: 2
  7123. m_PostInfinity: 2
  7124. m_RotationOrder: 4
  7125. minCurve:
  7126. serializedVersion: 2
  7127. m_Curve:
  7128. - time: 0
  7129. value: 0
  7130. inSlope: 0
  7131. outSlope: 0
  7132. tangentMode: 0
  7133. - time: 1
  7134. value: 0
  7135. inSlope: 0
  7136. outSlope: 0
  7137. tangentMode: 0
  7138. m_PreInfinity: 2
  7139. m_PostInfinity: 2
  7140. m_RotationOrder: 4
  7141. minMaxState: 0
  7142. magnitude:
  7143. scalar: 1
  7144. maxCurve:
  7145. serializedVersion: 2
  7146. m_Curve:
  7147. - time: 0
  7148. value: 1
  7149. inSlope: 0
  7150. outSlope: 0
  7151. tangentMode: 0
  7152. - time: 1
  7153. value: 1
  7154. inSlope: 0
  7155. outSlope: 0
  7156. tangentMode: 0
  7157. m_PreInfinity: 2
  7158. m_PostInfinity: 2
  7159. m_RotationOrder: 4
  7160. minCurve:
  7161. serializedVersion: 2
  7162. m_Curve:
  7163. - time: 0
  7164. value: 0
  7165. inSlope: 0
  7166. outSlope: 0
  7167. tangentMode: 0
  7168. - time: 1
  7169. value: 0
  7170. inSlope: 0
  7171. outSlope: 0
  7172. tangentMode: 0
  7173. m_PreInfinity: 2
  7174. m_PostInfinity: 2
  7175. m_RotationOrder: 4
  7176. minMaxState: 0
  7177. separateAxis: 0
  7178. inWorldSpace: 0
  7179. dampen: 1
  7180. SizeBySpeedModule:
  7181. enabled: 0
  7182. curve:
  7183. scalar: 1
  7184. maxCurve:
  7185. serializedVersion: 2
  7186. m_Curve:
  7187. - time: 0
  7188. value: 1
  7189. inSlope: 0
  7190. outSlope: 0
  7191. tangentMode: 0
  7192. - time: 1
  7193. value: 1
  7194. inSlope: 0
  7195. outSlope: 0
  7196. tangentMode: 0
  7197. m_PreInfinity: 2
  7198. m_PostInfinity: 2
  7199. m_RotationOrder: 4
  7200. minCurve:
  7201. serializedVersion: 2
  7202. m_Curve:
  7203. - time: 0
  7204. value: 0
  7205. inSlope: 0
  7206. outSlope: 0
  7207. tangentMode: 0
  7208. - time: 1
  7209. value: 0
  7210. inSlope: 0
  7211. outSlope: 0
  7212. tangentMode: 0
  7213. m_PreInfinity: 2
  7214. m_PostInfinity: 2
  7215. m_RotationOrder: 4
  7216. minMaxState: 1
  7217. range: {x: 0, y: 1}
  7218. RotationBySpeedModule:
  7219. enabled: 0
  7220. x:
  7221. scalar: 1
  7222. maxCurve:
  7223. serializedVersion: 2
  7224. m_Curve:
  7225. - time: 0
  7226. value: 1
  7227. inSlope: 0
  7228. outSlope: 0
  7229. tangentMode: 0
  7230. - time: 1
  7231. value: 1
  7232. inSlope: 0
  7233. outSlope: 0
  7234. tangentMode: 0
  7235. m_PreInfinity: 2
  7236. m_PostInfinity: 2
  7237. m_RotationOrder: 4
  7238. minCurve:
  7239. serializedVersion: 2
  7240. m_Curve:
  7241. - time: 0
  7242. value: 0
  7243. inSlope: 0
  7244. outSlope: 0
  7245. tangentMode: 0
  7246. - time: 1
  7247. value: 0
  7248. inSlope: 0
  7249. outSlope: 0
  7250. tangentMode: 0
  7251. m_PreInfinity: 2
  7252. m_PostInfinity: 2
  7253. m_RotationOrder: 4
  7254. minMaxState: 0
  7255. y:
  7256. scalar: 1
  7257. maxCurve:
  7258. serializedVersion: 2
  7259. m_Curve:
  7260. - time: 0
  7261. value: 1
  7262. inSlope: 0
  7263. outSlope: 0
  7264. tangentMode: 0
  7265. - time: 1
  7266. value: 1
  7267. inSlope: 0
  7268. outSlope: 0
  7269. tangentMode: 0
  7270. m_PreInfinity: 2
  7271. m_PostInfinity: 2
  7272. m_RotationOrder: 4
  7273. minCurve:
  7274. serializedVersion: 2
  7275. m_Curve:
  7276. - time: 0
  7277. value: 0
  7278. inSlope: 0
  7279. outSlope: 0
  7280. tangentMode: 0
  7281. - time: 1
  7282. value: 0
  7283. inSlope: 0
  7284. outSlope: 0
  7285. tangentMode: 0
  7286. m_PreInfinity: 2
  7287. m_PostInfinity: 2
  7288. m_RotationOrder: 4
  7289. minMaxState: 0
  7290. curve:
  7291. scalar: 1.351583
  7292. maxCurve:
  7293. serializedVersion: 2
  7294. m_Curve:
  7295. - time: 0
  7296. value: 1
  7297. inSlope: 0
  7298. outSlope: 0
  7299. tangentMode: 0
  7300. - time: 1
  7301. value: 1
  7302. inSlope: 0
  7303. outSlope: 0
  7304. tangentMode: 0
  7305. m_PreInfinity: 2
  7306. m_PostInfinity: 2
  7307. m_RotationOrder: 4
  7308. minCurve:
  7309. serializedVersion: 2
  7310. m_Curve:
  7311. - time: 0
  7312. value: 0
  7313. inSlope: 0
  7314. outSlope: 0
  7315. tangentMode: 0
  7316. - time: 1
  7317. value: 0
  7318. inSlope: 0
  7319. outSlope: 0
  7320. tangentMode: 0
  7321. m_PreInfinity: 2
  7322. m_PostInfinity: 2
  7323. m_RotationOrder: 4
  7324. minMaxState: 0
  7325. separateAxes: 0
  7326. range: {x: 0, y: 1}
  7327. ColorBySpeedModule:
  7328. enabled: 0
  7329. gradient:
  7330. maxGradient:
  7331. key0:
  7332. serializedVersion: 2
  7333. rgba: 4294967295
  7334. key1:
  7335. serializedVersion: 2
  7336. rgba: 4294967295
  7337. key2:
  7338. serializedVersion: 2
  7339. rgba: 0
  7340. key3:
  7341. serializedVersion: 2
  7342. rgba: 0
  7343. key4:
  7344. serializedVersion: 2
  7345. rgba: 0
  7346. key5:
  7347. serializedVersion: 2
  7348. rgba: 0
  7349. key6:
  7350. serializedVersion: 2
  7351. rgba: 0
  7352. key7:
  7353. serializedVersion: 2
  7354. rgba: 0
  7355. ctime0: 0
  7356. ctime1: 65535
  7357. ctime2: 0
  7358. ctime3: 0
  7359. ctime4: 0
  7360. ctime5: 0
  7361. ctime6: 0
  7362. ctime7: 0
  7363. atime0: 0
  7364. atime1: 65535
  7365. atime2: 0
  7366. atime3: 0
  7367. atime4: 0
  7368. atime5: 0
  7369. atime6: 0
  7370. atime7: 0
  7371. m_NumColorKeys: 2
  7372. m_NumAlphaKeys: 2
  7373. minGradient:
  7374. key0:
  7375. serializedVersion: 2
  7376. rgba: 4294967295
  7377. key1:
  7378. serializedVersion: 2
  7379. rgba: 4294967295
  7380. key2:
  7381. serializedVersion: 2
  7382. rgba: 0
  7383. key3:
  7384. serializedVersion: 2
  7385. rgba: 0
  7386. key4:
  7387. serializedVersion: 2
  7388. rgba: 0
  7389. key5:
  7390. serializedVersion: 2
  7391. rgba: 0
  7392. key6:
  7393. serializedVersion: 2
  7394. rgba: 0
  7395. key7:
  7396. serializedVersion: 2
  7397. rgba: 0
  7398. ctime0: 0
  7399. ctime1: 65535
  7400. ctime2: 0
  7401. ctime3: 0
  7402. ctime4: 0
  7403. ctime5: 0
  7404. ctime6: 0
  7405. ctime7: 0
  7406. atime0: 0
  7407. atime1: 65535
  7408. atime2: 0
  7409. atime3: 0
  7410. atime4: 0
  7411. atime5: 0
  7412. atime6: 0
  7413. atime7: 0
  7414. m_NumColorKeys: 2
  7415. m_NumAlphaKeys: 2
  7416. minColor:
  7417. serializedVersion: 2
  7418. rgba: 4294967295
  7419. maxColor:
  7420. serializedVersion: 2
  7421. rgba: 4294967295
  7422. minMaxState: 1
  7423. range: {x: 0, y: 1}
  7424. CollisionModule:
  7425. enabled: 0
  7426. serializedVersion: 2
  7427. type: 0
  7428. collisionMode: 0
  7429. plane0: {fileID: 0}
  7430. plane1: {fileID: 0}
  7431. plane2: {fileID: 0}
  7432. plane3: {fileID: 0}
  7433. plane4: {fileID: 0}
  7434. plane5: {fileID: 0}
  7435. m_Dampen:
  7436. scalar: 0
  7437. maxCurve:
  7438. serializedVersion: 2
  7439. m_Curve:
  7440. - time: 0
  7441. value: 1
  7442. inSlope: 0
  7443. outSlope: 0
  7444. tangentMode: 0
  7445. - time: 1
  7446. value: 1
  7447. inSlope: 0
  7448. outSlope: 0
  7449. tangentMode: 0
  7450. m_PreInfinity: 2
  7451. m_PostInfinity: 2
  7452. m_RotationOrder: 4
  7453. minCurve:
  7454. serializedVersion: 2
  7455. m_Curve:
  7456. - time: 0
  7457. value: 0
  7458. inSlope: 0
  7459. outSlope: 0
  7460. tangentMode: 0
  7461. - time: 1
  7462. value: 0
  7463. inSlope: 0
  7464. outSlope: 0
  7465. tangentMode: 0
  7466. m_PreInfinity: 2
  7467. m_PostInfinity: 2
  7468. m_RotationOrder: 4
  7469. minMaxState: 0
  7470. m_Bounce:
  7471. scalar: 1
  7472. maxCurve:
  7473. serializedVersion: 2
  7474. m_Curve:
  7475. - time: 0
  7476. value: 1
  7477. inSlope: 0
  7478. outSlope: 0
  7479. tangentMode: 0
  7480. - time: 1
  7481. value: 1
  7482. inSlope: 0
  7483. outSlope: 0
  7484. tangentMode: 0
  7485. m_PreInfinity: 2
  7486. m_PostInfinity: 2
  7487. m_RotationOrder: 4
  7488. minCurve:
  7489. serializedVersion: 2
  7490. m_Curve:
  7491. - time: 0
  7492. value: 0
  7493. inSlope: 0
  7494. outSlope: 0
  7495. tangentMode: 0
  7496. - time: 1
  7497. value: 0
  7498. inSlope: 0
  7499. outSlope: 0
  7500. tangentMode: 0
  7501. m_PreInfinity: 2
  7502. m_PostInfinity: 2
  7503. m_RotationOrder: 4
  7504. minMaxState: 0
  7505. m_EnergyLossOnCollision:
  7506. scalar: 0
  7507. maxCurve:
  7508. serializedVersion: 2
  7509. m_Curve:
  7510. - time: 0
  7511. value: 1
  7512. inSlope: 0
  7513. outSlope: 0
  7514. tangentMode: 0
  7515. - time: 1
  7516. value: 1
  7517. inSlope: 0
  7518. outSlope: 0
  7519. tangentMode: 0
  7520. m_PreInfinity: 2
  7521. m_PostInfinity: 2
  7522. m_RotationOrder: 4
  7523. minCurve:
  7524. serializedVersion: 2
  7525. m_Curve:
  7526. - time: 0
  7527. value: 0
  7528. inSlope: 0
  7529. outSlope: 0
  7530. tangentMode: 0
  7531. - time: 1
  7532. value: 0
  7533. inSlope: 0
  7534. outSlope: 0
  7535. tangentMode: 0
  7536. m_PreInfinity: 2
  7537. m_PostInfinity: 2
  7538. m_RotationOrder: 4
  7539. minMaxState: 0
  7540. minKillSpeed: 0
  7541. radiusScale: 1
  7542. collidesWith:
  7543. serializedVersion: 2
  7544. m_Bits: 4294967295
  7545. maxCollisionShapes: 256
  7546. quality: 0
  7547. voxelSize: 0.5
  7548. collisionMessages: 0
  7549. collidesWithDynamic: 1
  7550. interiorCollisions: 1
  7551. SubModule:
  7552. enabled: 0
  7553. subEmitterBirth: {fileID: 0}
  7554. subEmitterBirth1: {fileID: 0}
  7555. subEmitterCollision: {fileID: 0}
  7556. subEmitterCollision1: {fileID: 0}
  7557. subEmitterDeath: {fileID: 0}
  7558. subEmitterDeath1: {fileID: 0}
  7559. --- !u!198 &19800010
  7560. ParticleSystem:
  7561. m_ObjectHideFlags: 1
  7562. m_PrefabParentObject: {fileID: 0}
  7563. m_PrefabInternal: {fileID: 100100000}
  7564. m_GameObject: {fileID: 100008}
  7565. serializedVersion: 2
  7566. lengthInSec: 1
  7567. startDelay:
  7568. scalar: 0
  7569. maxCurve:
  7570. serializedVersion: 2
  7571. m_Curve:
  7572. - time: 0
  7573. value: 1
  7574. inSlope: 0
  7575. outSlope: 0
  7576. tangentMode: 0
  7577. - time: 1
  7578. value: 1
  7579. inSlope: 0
  7580. outSlope: 0
  7581. tangentMode: 0
  7582. m_PreInfinity: 2
  7583. m_PostInfinity: 2
  7584. m_RotationOrder: 4
  7585. minCurve:
  7586. serializedVersion: 2
  7587. m_Curve:
  7588. - time: 0
  7589. value: 0
  7590. inSlope: 0
  7591. outSlope: 0
  7592. tangentMode: 0
  7593. - time: 1
  7594. value: 0
  7595. inSlope: 0
  7596. outSlope: 0
  7597. tangentMode: 0
  7598. m_PreInfinity: 2
  7599. m_PostInfinity: 2
  7600. m_RotationOrder: 4
  7601. minMaxState: 0
  7602. speed: 1
  7603. randomSeed: 0
  7604. looping: 0
  7605. prewarm: 0
  7606. playOnAwake: 1
  7607. moveWithTransform: 1
  7608. scalingMode: 2
  7609. InitialModule:
  7610. serializedVersion: 2
  7611. enabled: 1
  7612. startLifetime:
  7613. scalar: 0.1
  7614. maxCurve:
  7615. serializedVersion: 2
  7616. m_Curve:
  7617. - time: 0
  7618. value: 1
  7619. inSlope: 0
  7620. outSlope: 0
  7621. tangentMode: 0
  7622. - time: 1
  7623. value: 1
  7624. inSlope: 0
  7625. outSlope: 0
  7626. tangentMode: 0
  7627. m_PreInfinity: 2
  7628. m_PostInfinity: 2
  7629. m_RotationOrder: 4
  7630. minCurve:
  7631. serializedVersion: 2
  7632. m_Curve:
  7633. - time: 0
  7634. value: 0
  7635. inSlope: 0
  7636. outSlope: 0
  7637. tangentMode: 0
  7638. - time: 1
  7639. value: 0
  7640. inSlope: 0
  7641. outSlope: 0
  7642. tangentMode: 0
  7643. m_PreInfinity: 2
  7644. m_PostInfinity: 2
  7645. m_RotationOrder: 4
  7646. minMaxState: 0
  7647. startSpeed:
  7648. scalar: 0.01
  7649. maxCurve:
  7650. serializedVersion: 2
  7651. m_Curve:
  7652. - time: 0
  7653. value: 1
  7654. inSlope: 0
  7655. outSlope: 0
  7656. tangentMode: 0
  7657. - time: 1
  7658. value: 1
  7659. inSlope: 0
  7660. outSlope: 0
  7661. tangentMode: 0
  7662. m_PreInfinity: 2
  7663. m_PostInfinity: 2
  7664. m_RotationOrder: 4
  7665. minCurve:
  7666. serializedVersion: 2
  7667. m_Curve:
  7668. - time: 0
  7669. value: 0
  7670. inSlope: 0
  7671. outSlope: 0
  7672. tangentMode: 0
  7673. - time: 1
  7674. value: 0
  7675. inSlope: 0
  7676. outSlope: 0
  7677. tangentMode: 0
  7678. m_PreInfinity: 2
  7679. m_PostInfinity: 2
  7680. m_RotationOrder: 4
  7681. minMaxState: 0
  7682. startColor:
  7683. maxGradient:
  7684. key0:
  7685. serializedVersion: 2
  7686. rgba: 4294967295
  7687. key1:
  7688. serializedVersion: 2
  7689. rgba: 4294967295
  7690. key2:
  7691. serializedVersion: 2
  7692. rgba: 0
  7693. key3:
  7694. serializedVersion: 2
  7695. rgba: 0
  7696. key4:
  7697. serializedVersion: 2
  7698. rgba: 0
  7699. key5:
  7700. serializedVersion: 2
  7701. rgba: 0
  7702. key6:
  7703. serializedVersion: 2
  7704. rgba: 0
  7705. key7:
  7706. serializedVersion: 2
  7707. rgba: 0
  7708. ctime0: 0
  7709. ctime1: 65535
  7710. ctime2: 0
  7711. ctime3: 0
  7712. ctime4: 0
  7713. ctime5: 0
  7714. ctime6: 0
  7715. ctime7: 0
  7716. atime0: 0
  7717. atime1: 65535
  7718. atime2: 0
  7719. atime3: 0
  7720. atime4: 0
  7721. atime5: 0
  7722. atime6: 0
  7723. atime7: 0
  7724. m_NumColorKeys: 2
  7725. m_NumAlphaKeys: 2
  7726. minGradient:
  7727. key0:
  7728. serializedVersion: 2
  7729. rgba: 4294967295
  7730. key1:
  7731. serializedVersion: 2
  7732. rgba: 4294967295
  7733. key2:
  7734. serializedVersion: 2
  7735. rgba: 0
  7736. key3:
  7737. serializedVersion: 2
  7738. rgba: 0
  7739. key4:
  7740. serializedVersion: 2
  7741. rgba: 0
  7742. key5:
  7743. serializedVersion: 2
  7744. rgba: 0
  7745. key6:
  7746. serializedVersion: 2
  7747. rgba: 0
  7748. key7:
  7749. serializedVersion: 2
  7750. rgba: 0
  7751. ctime0: 0
  7752. ctime1: 65535
  7753. ctime2: 0
  7754. ctime3: 0
  7755. ctime4: 0
  7756. ctime5: 0
  7757. ctime6: 0
  7758. ctime7: 0
  7759. atime0: 0
  7760. atime1: 65535
  7761. atime2: 0
  7762. atime3: 0
  7763. atime4: 0
  7764. atime5: 0
  7765. atime6: 0
  7766. atime7: 0
  7767. m_NumColorKeys: 2
  7768. m_NumAlphaKeys: 2
  7769. minColor:
  7770. serializedVersion: 2
  7771. rgba: 4294967295
  7772. maxColor:
  7773. serializedVersion: 2
  7774. rgba: 4292340479
  7775. minMaxState: 0
  7776. startSize:
  7777. scalar: 5
  7778. maxCurve:
  7779. serializedVersion: 2
  7780. m_Curve:
  7781. - time: 0
  7782. value: 1
  7783. inSlope: 0
  7784. outSlope: 0
  7785. tangentMode: 0
  7786. m_PreInfinity: 2
  7787. m_PostInfinity: 2
  7788. m_RotationOrder: 4
  7789. minCurve:
  7790. serializedVersion: 2
  7791. m_Curve:
  7792. - time: 0
  7793. value: 0
  7794. inSlope: 0
  7795. outSlope: 0
  7796. tangentMode: 0
  7797. - time: 1
  7798. value: 0
  7799. inSlope: 0
  7800. outSlope: 0
  7801. tangentMode: 0
  7802. m_PreInfinity: 2
  7803. m_PostInfinity: 2
  7804. m_RotationOrder: 4
  7805. minMaxState: 1
  7806. startRotationX:
  7807. scalar: 1
  7808. maxCurve:
  7809. serializedVersion: 2
  7810. m_Curve:
  7811. - time: 0
  7812. value: 1
  7813. inSlope: 0
  7814. outSlope: 0
  7815. tangentMode: 0
  7816. - time: 1
  7817. value: 1
  7818. inSlope: 0
  7819. outSlope: 0
  7820. tangentMode: 0
  7821. m_PreInfinity: 2
  7822. m_PostInfinity: 2
  7823. m_RotationOrder: 4
  7824. minCurve:
  7825. serializedVersion: 2
  7826. m_Curve:
  7827. - time: 0
  7828. value: 0
  7829. inSlope: 0
  7830. outSlope: 0
  7831. tangentMode: 0
  7832. - time: 1
  7833. value: 0
  7834. inSlope: 0
  7835. outSlope: 0
  7836. tangentMode: 0
  7837. m_PreInfinity: 2
  7838. m_PostInfinity: 2
  7839. m_RotationOrder: 4
  7840. minMaxState: 0
  7841. startRotationY:
  7842. scalar: 1
  7843. maxCurve:
  7844. serializedVersion: 2
  7845. m_Curve:
  7846. - time: 0
  7847. value: 1
  7848. inSlope: 0
  7849. outSlope: 0
  7850. tangentMode: 0
  7851. - time: 1
  7852. value: 1
  7853. inSlope: 0
  7854. outSlope: 0
  7855. tangentMode: 0
  7856. m_PreInfinity: 2
  7857. m_PostInfinity: 2
  7858. m_RotationOrder: 4
  7859. minCurve:
  7860. serializedVersion: 2
  7861. m_Curve:
  7862. - time: 0
  7863. value: 0
  7864. inSlope: 0
  7865. outSlope: 0
  7866. tangentMode: 0
  7867. - time: 1
  7868. value: 0
  7869. inSlope: 0
  7870. outSlope: 0
  7871. tangentMode: 0
  7872. m_PreInfinity: 2
  7873. m_PostInfinity: 2
  7874. m_RotationOrder: 4
  7875. minMaxState: 0
  7876. startRotation:
  7877. scalar: 3.1415925
  7878. maxCurve:
  7879. serializedVersion: 2
  7880. m_Curve:
  7881. - time: 0
  7882. value: 1
  7883. inSlope: 0
  7884. outSlope: 0
  7885. tangentMode: 0
  7886. m_PreInfinity: 2
  7887. m_PostInfinity: 2
  7888. m_RotationOrder: 4
  7889. minCurve:
  7890. serializedVersion: 2
  7891. m_Curve:
  7892. - time: 0
  7893. value: -1
  7894. inSlope: 0
  7895. outSlope: 0
  7896. tangentMode: 0
  7897. m_PreInfinity: 2
  7898. m_PostInfinity: 2
  7899. m_RotationOrder: 4
  7900. minMaxState: 3
  7901. randomizeRotationDirection: 0
  7902. gravityModifier: 0
  7903. maxNumParticles: 3
  7904. rotation3D: 0
  7905. ShapeModule:
  7906. serializedVersion: 2
  7907. enabled: 1
  7908. type: 1
  7909. radius: 0.01
  7910. angle: 25
  7911. length: 5
  7912. boxX: 2
  7913. boxY: 2
  7914. boxZ: 2
  7915. arc: 360
  7916. placementMode: 0
  7917. m_Mesh: {fileID: 0}
  7918. m_MeshRenderer: {fileID: 0}
  7919. m_SkinnedMeshRenderer: {fileID: 0}
  7920. m_MeshMaterialIndex: 0
  7921. m_MeshNormalOffset: 0
  7922. m_UseMeshMaterialIndex: 0
  7923. m_UseMeshColors: 1
  7924. randomDirection: 0
  7925. EmissionModule:
  7926. enabled: 1
  7927. serializedVersion: 2
  7928. m_Type: 0
  7929. rate:
  7930. scalar: 0
  7931. maxCurve:
  7932. serializedVersion: 2
  7933. m_Curve:
  7934. - time: 0
  7935. value: 1
  7936. inSlope: 0
  7937. outSlope: 0
  7938. tangentMode: 0
  7939. - time: 1
  7940. value: 1
  7941. inSlope: 0
  7942. outSlope: 0
  7943. tangentMode: 0
  7944. m_PreInfinity: 2
  7945. m_PostInfinity: 2
  7946. m_RotationOrder: 4
  7947. minCurve:
  7948. serializedVersion: 2
  7949. m_Curve:
  7950. - time: 0
  7951. value: 0
  7952. inSlope: 0
  7953. outSlope: 0
  7954. tangentMode: 0
  7955. - time: 1
  7956. value: 0
  7957. inSlope: 0
  7958. outSlope: 0
  7959. tangentMode: 0
  7960. m_PreInfinity: 2
  7961. m_PostInfinity: 2
  7962. m_RotationOrder: 4
  7963. minMaxState: 0
  7964. cnt0: 3
  7965. cnt1: 2
  7966. cnt2: 30
  7967. cnt3: 30
  7968. cntmax0: 3
  7969. cntmax1: 2
  7970. cntmax2: 30
  7971. cntmax3: 30
  7972. time0: 0
  7973. time1: 0.1
  7974. time2: 0
  7975. time3: 0
  7976. m_BurstCount: 1
  7977. SizeModule:
  7978. enabled: 1
  7979. curve:
  7980. scalar: 1.2
  7981. maxCurve:
  7982. serializedVersion: 2
  7983. m_Curve:
  7984. - time: 0
  7985. value: 0.5052584
  7986. inSlope: 0.5450415
  7987. outSlope: 0.5450415
  7988. tangentMode: 10
  7989. - time: 0.90771365
  7990. value: 1
  7991. inSlope: 0
  7992. outSlope: 0
  7993. tangentMode: 0
  7994. - time: 1
  7995. value: 1
  7996. inSlope: 0
  7997. outSlope: 0
  7998. tangentMode: 10
  7999. m_PreInfinity: 2
  8000. m_PostInfinity: 2
  8001. m_RotationOrder: 4
  8002. minCurve:
  8003. serializedVersion: 2
  8004. m_Curve:
  8005. - time: 0
  8006. value: 0
  8007. inSlope: 0
  8008. outSlope: 0
  8009. tangentMode: 0
  8010. - time: 1
  8011. value: 0
  8012. inSlope: 0
  8013. outSlope: 0
  8014. tangentMode: 0
  8015. m_PreInfinity: 2
  8016. m_PostInfinity: 2
  8017. m_RotationOrder: 4
  8018. minMaxState: 1
  8019. RotationModule:
  8020. enabled: 0
  8021. x:
  8022. scalar: 1
  8023. maxCurve:
  8024. serializedVersion: 2
  8025. m_Curve:
  8026. - time: 0
  8027. value: 1
  8028. inSlope: 0
  8029. outSlope: 0
  8030. tangentMode: 0
  8031. - time: 1
  8032. value: 1
  8033. inSlope: 0
  8034. outSlope: 0
  8035. tangentMode: 0
  8036. m_PreInfinity: 2
  8037. m_PostInfinity: 2
  8038. m_RotationOrder: 4
  8039. minCurve:
  8040. serializedVersion: 2
  8041. m_Curve:
  8042. - time: 0
  8043. value: 0
  8044. inSlope: 0
  8045. outSlope: 0
  8046. tangentMode: 0
  8047. - time: 1
  8048. value: 0
  8049. inSlope: 0
  8050. outSlope: 0
  8051. tangentMode: 0
  8052. m_PreInfinity: 2
  8053. m_PostInfinity: 2
  8054. m_RotationOrder: 4
  8055. minMaxState: 0
  8056. y:
  8057. scalar: 1
  8058. maxCurve:
  8059. serializedVersion: 2
  8060. m_Curve:
  8061. - time: 0
  8062. value: 1
  8063. inSlope: 0
  8064. outSlope: 0
  8065. tangentMode: 0
  8066. - time: 1
  8067. value: 1
  8068. inSlope: 0
  8069. outSlope: 0
  8070. tangentMode: 0
  8071. m_PreInfinity: 2
  8072. m_PostInfinity: 2
  8073. m_RotationOrder: 4
  8074. minCurve:
  8075. serializedVersion: 2
  8076. m_Curve:
  8077. - time: 0
  8078. value: 0
  8079. inSlope: 0
  8080. outSlope: 0
  8081. tangentMode: 0
  8082. - time: 1
  8083. value: 0
  8084. inSlope: 0
  8085. outSlope: 0
  8086. tangentMode: 0
  8087. m_PreInfinity: 2
  8088. m_PostInfinity: 2
  8089. m_RotationOrder: 4
  8090. minMaxState: 0
  8091. curve:
  8092. scalar: 0.7853982
  8093. maxCurve:
  8094. serializedVersion: 2
  8095. m_Curve:
  8096. - time: 0
  8097. value: 1
  8098. inSlope: 0
  8099. outSlope: 0
  8100. tangentMode: 0
  8101. - time: 1
  8102. value: 1
  8103. inSlope: 0
  8104. outSlope: 0
  8105. tangentMode: 0
  8106. m_PreInfinity: 2
  8107. m_PostInfinity: 2
  8108. m_RotationOrder: 4
  8109. minCurve:
  8110. serializedVersion: 2
  8111. m_Curve:
  8112. - time: 0
  8113. value: 0
  8114. inSlope: 0
  8115. outSlope: 0
  8116. tangentMode: 0
  8117. - time: 1
  8118. value: 0
  8119. inSlope: 0
  8120. outSlope: 0
  8121. tangentMode: 0
  8122. m_PreInfinity: 2
  8123. m_PostInfinity: 2
  8124. m_RotationOrder: 4
  8125. minMaxState: 0
  8126. separateAxes: 0
  8127. ColorModule:
  8128. enabled: 1
  8129. gradient:
  8130. maxGradient:
  8131. key0:
  8132. serializedVersion: 2
  8133. rgba: 4294967295
  8134. key1:
  8135. serializedVersion: 2
  8136. rgba: 4289323519
  8137. key2:
  8138. serializedVersion: 2
  8139. rgba: 1000631
  8140. key3:
  8141. serializedVersion: 2
  8142. rgba: 986939
  8143. key4:
  8144. serializedVersion: 2
  8145. rgba: 0
  8146. key5:
  8147. serializedVersion: 2
  8148. rgba: 0
  8149. key6:
  8150. serializedVersion: 2
  8151. rgba: 0
  8152. key7:
  8153. serializedVersion: 2
  8154. rgba: 0
  8155. ctime0: 0
  8156. ctime1: 26214
  8157. ctime2: 39321
  8158. ctime3: 52428
  8159. ctime4: 0
  8160. ctime5: 0
  8161. ctime6: 0
  8162. ctime7: 0
  8163. atime0: 0
  8164. atime1: 45875
  8165. atime2: 65535
  8166. atime3: 0
  8167. atime4: 0
  8168. atime5: 0
  8169. atime6: 0
  8170. atime7: 0
  8171. m_NumColorKeys: 4
  8172. m_NumAlphaKeys: 3
  8173. minGradient:
  8174. key0:
  8175. serializedVersion: 2
  8176. rgba: 4294967295
  8177. key1:
  8178. serializedVersion: 2
  8179. rgba: 4294967295
  8180. key2:
  8181. serializedVersion: 2
  8182. rgba: 0
  8183. key3:
  8184. serializedVersion: 2
  8185. rgba: 0
  8186. key4:
  8187. serializedVersion: 2
  8188. rgba: 0
  8189. key5:
  8190. serializedVersion: 2
  8191. rgba: 0
  8192. key6:
  8193. serializedVersion: 2
  8194. rgba: 0
  8195. key7:
  8196. serializedVersion: 2
  8197. rgba: 0
  8198. ctime0: 0
  8199. ctime1: 65535
  8200. ctime2: 0
  8201. ctime3: 0
  8202. ctime4: 0
  8203. ctime5: 0
  8204. ctime6: 0
  8205. ctime7: 0
  8206. atime0: 0
  8207. atime1: 65535
  8208. atime2: 0
  8209. atime3: 0
  8210. atime4: 0
  8211. atime5: 0
  8212. atime6: 0
  8213. atime7: 0
  8214. m_NumColorKeys: 2
  8215. m_NumAlphaKeys: 2
  8216. minColor:
  8217. serializedVersion: 2
  8218. rgba: 4294967295
  8219. maxColor:
  8220. serializedVersion: 2
  8221. rgba: 4294967295
  8222. minMaxState: 1
  8223. UVModule:
  8224. enabled: 0
  8225. frameOverTime:
  8226. scalar: 1
  8227. maxCurve:
  8228. serializedVersion: 2
  8229. m_Curve:
  8230. - time: 0
  8231. value: 0
  8232. inSlope: 0
  8233. outSlope: 1
  8234. tangentMode: 0
  8235. - time: 1
  8236. value: 1
  8237. inSlope: 1
  8238. outSlope: 0
  8239. tangentMode: 0
  8240. m_PreInfinity: 2
  8241. m_PostInfinity: 2
  8242. m_RotationOrder: 4
  8243. minCurve:
  8244. serializedVersion: 2
  8245. m_Curve:
  8246. - time: 0
  8247. value: 0
  8248. inSlope: 0
  8249. outSlope: 1
  8250. tangentMode: 0
  8251. - time: 1
  8252. value: 1
  8253. inSlope: 1
  8254. outSlope: 0
  8255. tangentMode: 0
  8256. m_PreInfinity: 2
  8257. m_PostInfinity: 2
  8258. m_RotationOrder: 4
  8259. minMaxState: 1
  8260. tilesX: 1
  8261. tilesY: 1
  8262. animationType: 0
  8263. rowIndex: 0
  8264. cycles: 1
  8265. randomRow: 1
  8266. VelocityModule:
  8267. enabled: 0
  8268. x:
  8269. scalar: 0
  8270. maxCurve:
  8271. serializedVersion: 2
  8272. m_Curve:
  8273. - time: 0
  8274. value: 1
  8275. inSlope: 0
  8276. outSlope: 0
  8277. tangentMode: 0
  8278. - time: 1
  8279. value: 1
  8280. inSlope: 0
  8281. outSlope: 0
  8282. tangentMode: 0
  8283. m_PreInfinity: 2
  8284. m_PostInfinity: 2
  8285. m_RotationOrder: 4
  8286. minCurve:
  8287. serializedVersion: 2
  8288. m_Curve:
  8289. - time: 0
  8290. value: 0
  8291. inSlope: 0
  8292. outSlope: 0
  8293. tangentMode: 0
  8294. - time: 1
  8295. value: 0
  8296. inSlope: 0
  8297. outSlope: 0
  8298. tangentMode: 0
  8299. m_PreInfinity: 2
  8300. m_PostInfinity: 2
  8301. m_RotationOrder: 4
  8302. minMaxState: 0
  8303. y:
  8304. scalar: 0
  8305. maxCurve:
  8306. serializedVersion: 2
  8307. m_Curve:
  8308. - time: 0
  8309. value: 1
  8310. inSlope: 0
  8311. outSlope: 0
  8312. tangentMode: 0
  8313. - time: 1
  8314. value: 1
  8315. inSlope: 0
  8316. outSlope: 0
  8317. tangentMode: 0
  8318. m_PreInfinity: 2
  8319. m_PostInfinity: 2
  8320. m_RotationOrder: 4
  8321. minCurve:
  8322. serializedVersion: 2
  8323. m_Curve:
  8324. - time: 0
  8325. value: 0
  8326. inSlope: 0
  8327. outSlope: 0
  8328. tangentMode: 0
  8329. - time: 1
  8330. value: 0
  8331. inSlope: 0
  8332. outSlope: 0
  8333. tangentMode: 0
  8334. m_PreInfinity: 2
  8335. m_PostInfinity: 2
  8336. m_RotationOrder: 4
  8337. minMaxState: 0
  8338. z:
  8339. scalar: 0
  8340. maxCurve:
  8341. serializedVersion: 2
  8342. m_Curve:
  8343. - time: 0
  8344. value: 1
  8345. inSlope: 0
  8346. outSlope: 0
  8347. tangentMode: 0
  8348. - time: 1
  8349. value: 1
  8350. inSlope: 0
  8351. outSlope: 0
  8352. tangentMode: 0
  8353. m_PreInfinity: 2
  8354. m_PostInfinity: 2
  8355. m_RotationOrder: 4
  8356. minCurve:
  8357. serializedVersion: 2
  8358. m_Curve:
  8359. - time: 0
  8360. value: 0
  8361. inSlope: 0
  8362. outSlope: 0
  8363. tangentMode: 0
  8364. - time: 1
  8365. value: 0
  8366. inSlope: 0
  8367. outSlope: 0
  8368. tangentMode: 0
  8369. m_PreInfinity: 2
  8370. m_PostInfinity: 2
  8371. m_RotationOrder: 4
  8372. minMaxState: 0
  8373. inWorldSpace: 0
  8374. InheritVelocityModule:
  8375. enabled: 0
  8376. m_Mode: 0
  8377. m_Curve:
  8378. scalar: 1
  8379. maxCurve:
  8380. serializedVersion: 2
  8381. m_Curve:
  8382. - time: 0
  8383. value: 1
  8384. inSlope: 0
  8385. outSlope: 0
  8386. tangentMode: 0
  8387. - time: 1
  8388. value: 1
  8389. inSlope: 0
  8390. outSlope: 0
  8391. tangentMode: 0
  8392. m_PreInfinity: 2
  8393. m_PostInfinity: 2
  8394. m_RotationOrder: 4
  8395. minCurve:
  8396. serializedVersion: 2
  8397. m_Curve:
  8398. - time: 0
  8399. value: 0
  8400. inSlope: 0
  8401. outSlope: 0
  8402. tangentMode: 0
  8403. - time: 1
  8404. value: 0
  8405. inSlope: 0
  8406. outSlope: 0
  8407. tangentMode: 0
  8408. m_PreInfinity: 2
  8409. m_PostInfinity: 2
  8410. m_RotationOrder: 4
  8411. minMaxState: 0
  8412. ForceModule:
  8413. enabled: 0
  8414. x:
  8415. scalar: 0
  8416. maxCurve:
  8417. serializedVersion: 2
  8418. m_Curve:
  8419. - time: 0
  8420. value: 1
  8421. inSlope: 0
  8422. outSlope: 0
  8423. tangentMode: 0
  8424. - time: 1
  8425. value: 1
  8426. inSlope: 0
  8427. outSlope: 0
  8428. tangentMode: 0
  8429. m_PreInfinity: 2
  8430. m_PostInfinity: 2
  8431. m_RotationOrder: 4
  8432. minCurve:
  8433. serializedVersion: 2
  8434. m_Curve:
  8435. - time: 0
  8436. value: 0
  8437. inSlope: 0
  8438. outSlope: 0
  8439. tangentMode: 0
  8440. - time: 1
  8441. value: 0
  8442. inSlope: 0
  8443. outSlope: 0
  8444. tangentMode: 0
  8445. m_PreInfinity: 2
  8446. m_PostInfinity: 2
  8447. m_RotationOrder: 4
  8448. minMaxState: 0
  8449. y:
  8450. scalar: 0
  8451. maxCurve:
  8452. serializedVersion: 2
  8453. m_Curve:
  8454. - time: 0
  8455. value: 1
  8456. inSlope: 0
  8457. outSlope: 0
  8458. tangentMode: 0
  8459. - time: 1
  8460. value: 1
  8461. inSlope: 0
  8462. outSlope: 0
  8463. tangentMode: 0
  8464. m_PreInfinity: 2
  8465. m_PostInfinity: 2
  8466. m_RotationOrder: 4
  8467. minCurve:
  8468. serializedVersion: 2
  8469. m_Curve:
  8470. - time: 0
  8471. value: 0
  8472. inSlope: 0
  8473. outSlope: 0
  8474. tangentMode: 0
  8475. - time: 1
  8476. value: 0
  8477. inSlope: 0
  8478. outSlope: 0
  8479. tangentMode: 0
  8480. m_PreInfinity: 2
  8481. m_PostInfinity: 2
  8482. m_RotationOrder: 4
  8483. minMaxState: 0
  8484. z:
  8485. scalar: 0
  8486. maxCurve:
  8487. serializedVersion: 2
  8488. m_Curve:
  8489. - time: 0
  8490. value: 1
  8491. inSlope: 0
  8492. outSlope: 0
  8493. tangentMode: 0
  8494. - time: 1
  8495. value: 1
  8496. inSlope: 0
  8497. outSlope: 0
  8498. tangentMode: 0
  8499. m_PreInfinity: 2
  8500. m_PostInfinity: 2
  8501. m_RotationOrder: 4
  8502. minCurve:
  8503. serializedVersion: 2
  8504. m_Curve:
  8505. - time: 0
  8506. value: 0
  8507. inSlope: 0
  8508. outSlope: 0
  8509. tangentMode: 0
  8510. - time: 1
  8511. value: 0
  8512. inSlope: 0
  8513. outSlope: 0
  8514. tangentMode: 0
  8515. m_PreInfinity: 2
  8516. m_PostInfinity: 2
  8517. m_RotationOrder: 4
  8518. minMaxState: 0
  8519. inWorldSpace: 0
  8520. randomizePerFrame: 0
  8521. ExternalForcesModule:
  8522. enabled: 0
  8523. multiplier: 1
  8524. ClampVelocityModule:
  8525. enabled: 0
  8526. x:
  8527. scalar: 1
  8528. maxCurve:
  8529. serializedVersion: 2
  8530. m_Curve:
  8531. - time: 0
  8532. value: 1
  8533. inSlope: 0
  8534. outSlope: 0
  8535. tangentMode: 0
  8536. - time: 1
  8537. value: 1
  8538. inSlope: 0
  8539. outSlope: 0
  8540. tangentMode: 0
  8541. m_PreInfinity: 2
  8542. m_PostInfinity: 2
  8543. m_RotationOrder: 4
  8544. minCurve:
  8545. serializedVersion: 2
  8546. m_Curve:
  8547. - time: 0
  8548. value: 0
  8549. inSlope: 0
  8550. outSlope: 0
  8551. tangentMode: 0
  8552. - time: 1
  8553. value: 0
  8554. inSlope: 0
  8555. outSlope: 0
  8556. tangentMode: 0
  8557. m_PreInfinity: 2
  8558. m_PostInfinity: 2
  8559. m_RotationOrder: 4
  8560. minMaxState: 0
  8561. y:
  8562. scalar: 1
  8563. maxCurve:
  8564. serializedVersion: 2
  8565. m_Curve:
  8566. - time: 0
  8567. value: 1
  8568. inSlope: 0
  8569. outSlope: 0
  8570. tangentMode: 0
  8571. - time: 1
  8572. value: 1
  8573. inSlope: 0
  8574. outSlope: 0
  8575. tangentMode: 0
  8576. m_PreInfinity: 2
  8577. m_PostInfinity: 2
  8578. m_RotationOrder: 4
  8579. minCurve:
  8580. serializedVersion: 2
  8581. m_Curve:
  8582. - time: 0
  8583. value: 0
  8584. inSlope: 0
  8585. outSlope: 0
  8586. tangentMode: 0
  8587. - time: 1
  8588. value: 0
  8589. inSlope: 0
  8590. outSlope: 0
  8591. tangentMode: 0
  8592. m_PreInfinity: 2
  8593. m_PostInfinity: 2
  8594. m_RotationOrder: 4
  8595. minMaxState: 0
  8596. z:
  8597. scalar: 1
  8598. maxCurve:
  8599. serializedVersion: 2
  8600. m_Curve:
  8601. - time: 0
  8602. value: 1
  8603. inSlope: 0
  8604. outSlope: 0
  8605. tangentMode: 0
  8606. - time: 1
  8607. value: 1
  8608. inSlope: 0
  8609. outSlope: 0
  8610. tangentMode: 0
  8611. m_PreInfinity: 2
  8612. m_PostInfinity: 2
  8613. m_RotationOrder: 4
  8614. minCurve:
  8615. serializedVersion: 2
  8616. m_Curve:
  8617. - time: 0
  8618. value: 0
  8619. inSlope: 0
  8620. outSlope: 0
  8621. tangentMode: 0
  8622. - time: 1
  8623. value: 0
  8624. inSlope: 0
  8625. outSlope: 0
  8626. tangentMode: 0
  8627. m_PreInfinity: 2
  8628. m_PostInfinity: 2
  8629. m_RotationOrder: 4
  8630. minMaxState: 0
  8631. magnitude:
  8632. scalar: 1
  8633. maxCurve:
  8634. serializedVersion: 2
  8635. m_Curve:
  8636. - time: 0
  8637. value: 1
  8638. inSlope: 0
  8639. outSlope: 0
  8640. tangentMode: 0
  8641. - time: 1
  8642. value: 1
  8643. inSlope: 0
  8644. outSlope: 0
  8645. tangentMode: 0
  8646. m_PreInfinity: 2
  8647. m_PostInfinity: 2
  8648. m_RotationOrder: 4
  8649. minCurve:
  8650. serializedVersion: 2
  8651. m_Curve:
  8652. - time: 0
  8653. value: 0
  8654. inSlope: 0
  8655. outSlope: 0
  8656. tangentMode: 0
  8657. - time: 1
  8658. value: 0
  8659. inSlope: 0
  8660. outSlope: 0
  8661. tangentMode: 0
  8662. m_PreInfinity: 2
  8663. m_PostInfinity: 2
  8664. m_RotationOrder: 4
  8665. minMaxState: 0
  8666. separateAxis: 0
  8667. inWorldSpace: 0
  8668. dampen: 1
  8669. SizeBySpeedModule:
  8670. enabled: 0
  8671. curve:
  8672. scalar: 1
  8673. maxCurve:
  8674. serializedVersion: 2
  8675. m_Curve:
  8676. - time: 0
  8677. value: 1
  8678. inSlope: 0
  8679. outSlope: 0
  8680. tangentMode: 0
  8681. - time: 1
  8682. value: 1
  8683. inSlope: 0
  8684. outSlope: 0
  8685. tangentMode: 0
  8686. m_PreInfinity: 2
  8687. m_PostInfinity: 2
  8688. m_RotationOrder: 4
  8689. minCurve:
  8690. serializedVersion: 2
  8691. m_Curve:
  8692. - time: 0
  8693. value: 0
  8694. inSlope: 0
  8695. outSlope: 0
  8696. tangentMode: 0
  8697. - time: 1
  8698. value: 0
  8699. inSlope: 0
  8700. outSlope: 0
  8701. tangentMode: 0
  8702. m_PreInfinity: 2
  8703. m_PostInfinity: 2
  8704. m_RotationOrder: 4
  8705. minMaxState: 1
  8706. range: {x: 0, y: 1}
  8707. RotationBySpeedModule:
  8708. enabled: 0
  8709. x:
  8710. scalar: 1
  8711. maxCurve:
  8712. serializedVersion: 2
  8713. m_Curve:
  8714. - time: 0
  8715. value: 1
  8716. inSlope: 0
  8717. outSlope: 0
  8718. tangentMode: 0
  8719. - time: 1
  8720. value: 1
  8721. inSlope: 0
  8722. outSlope: 0
  8723. tangentMode: 0
  8724. m_PreInfinity: 2
  8725. m_PostInfinity: 2
  8726. m_RotationOrder: 4
  8727. minCurve:
  8728. serializedVersion: 2
  8729. m_Curve:
  8730. - time: 0
  8731. value: 0
  8732. inSlope: 0
  8733. outSlope: 0
  8734. tangentMode: 0
  8735. - time: 1
  8736. value: 0
  8737. inSlope: 0
  8738. outSlope: 0
  8739. tangentMode: 0
  8740. m_PreInfinity: 2
  8741. m_PostInfinity: 2
  8742. m_RotationOrder: 4
  8743. minMaxState: 0
  8744. y:
  8745. scalar: 1
  8746. maxCurve:
  8747. serializedVersion: 2
  8748. m_Curve:
  8749. - time: 0
  8750. value: 1
  8751. inSlope: 0
  8752. outSlope: 0
  8753. tangentMode: 0
  8754. - time: 1
  8755. value: 1
  8756. inSlope: 0
  8757. outSlope: 0
  8758. tangentMode: 0
  8759. m_PreInfinity: 2
  8760. m_PostInfinity: 2
  8761. m_RotationOrder: 4
  8762. minCurve:
  8763. serializedVersion: 2
  8764. m_Curve:
  8765. - time: 0
  8766. value: 0
  8767. inSlope: 0
  8768. outSlope: 0
  8769. tangentMode: 0
  8770. - time: 1
  8771. value: 0
  8772. inSlope: 0
  8773. outSlope: 0
  8774. tangentMode: 0
  8775. m_PreInfinity: 2
  8776. m_PostInfinity: 2
  8777. m_RotationOrder: 4
  8778. minMaxState: 0
  8779. curve:
  8780. scalar: 0.7853982
  8781. maxCurve:
  8782. serializedVersion: 2
  8783. m_Curve:
  8784. - time: 0
  8785. value: 1
  8786. inSlope: 0
  8787. outSlope: 0
  8788. tangentMode: 0
  8789. - time: 1
  8790. value: 1
  8791. inSlope: 0
  8792. outSlope: 0
  8793. tangentMode: 0
  8794. m_PreInfinity: 2
  8795. m_PostInfinity: 2
  8796. m_RotationOrder: 4
  8797. minCurve:
  8798. serializedVersion: 2
  8799. m_Curve:
  8800. - time: 0
  8801. value: 0
  8802. inSlope: 0
  8803. outSlope: 0
  8804. tangentMode: 0
  8805. - time: 1
  8806. value: 0
  8807. inSlope: 0
  8808. outSlope: 0
  8809. tangentMode: 0
  8810. m_PreInfinity: 2
  8811. m_PostInfinity: 2
  8812. m_RotationOrder: 4
  8813. minMaxState: 0
  8814. separateAxes: 0
  8815. range: {x: 0, y: 1}
  8816. ColorBySpeedModule:
  8817. enabled: 0
  8818. gradient:
  8819. maxGradient:
  8820. key0:
  8821. serializedVersion: 2
  8822. rgba: 4294967295
  8823. key1:
  8824. serializedVersion: 2
  8825. rgba: 4294967295
  8826. key2:
  8827. serializedVersion: 2
  8828. rgba: 0
  8829. key3:
  8830. serializedVersion: 2
  8831. rgba: 0
  8832. key4:
  8833. serializedVersion: 2
  8834. rgba: 0
  8835. key5:
  8836. serializedVersion: 2
  8837. rgba: 0
  8838. key6:
  8839. serializedVersion: 2
  8840. rgba: 0
  8841. key7:
  8842. serializedVersion: 2
  8843. rgba: 0
  8844. ctime0: 0
  8845. ctime1: 65535
  8846. ctime2: 0
  8847. ctime3: 0
  8848. ctime4: 0
  8849. ctime5: 0
  8850. ctime6: 0
  8851. ctime7: 0
  8852. atime0: 0
  8853. atime1: 65535
  8854. atime2: 0
  8855. atime3: 0
  8856. atime4: 0
  8857. atime5: 0
  8858. atime6: 0
  8859. atime7: 0
  8860. m_NumColorKeys: 2
  8861. m_NumAlphaKeys: 2
  8862. minGradient:
  8863. key0:
  8864. serializedVersion: 2
  8865. rgba: 4294967295
  8866. key1:
  8867. serializedVersion: 2
  8868. rgba: 4294967295
  8869. key2:
  8870. serializedVersion: 2
  8871. rgba: 0
  8872. key3:
  8873. serializedVersion: 2
  8874. rgba: 0
  8875. key4:
  8876. serializedVersion: 2
  8877. rgba: 0
  8878. key5:
  8879. serializedVersion: 2
  8880. rgba: 0
  8881. key6:
  8882. serializedVersion: 2
  8883. rgba: 0
  8884. key7:
  8885. serializedVersion: 2
  8886. rgba: 0
  8887. ctime0: 0
  8888. ctime1: 65535
  8889. ctime2: 0
  8890. ctime3: 0
  8891. ctime4: 0
  8892. ctime5: 0
  8893. ctime6: 0
  8894. ctime7: 0
  8895. atime0: 0
  8896. atime1: 65535
  8897. atime2: 0
  8898. atime3: 0
  8899. atime4: 0
  8900. atime5: 0
  8901. atime6: 0
  8902. atime7: 0
  8903. m_NumColorKeys: 2
  8904. m_NumAlphaKeys: 2
  8905. minColor:
  8906. serializedVersion: 2
  8907. rgba: 4294967295
  8908. maxColor:
  8909. serializedVersion: 2
  8910. rgba: 4294967295
  8911. minMaxState: 1
  8912. range: {x: 0, y: 1}
  8913. CollisionModule:
  8914. enabled: 0
  8915. serializedVersion: 2
  8916. type: 0
  8917. collisionMode: 0
  8918. plane0: {fileID: 0}
  8919. plane1: {fileID: 0}
  8920. plane2: {fileID: 0}
  8921. plane3: {fileID: 0}
  8922. plane4: {fileID: 0}
  8923. plane5: {fileID: 0}
  8924. m_Dampen:
  8925. scalar: 0
  8926. maxCurve:
  8927. serializedVersion: 2
  8928. m_Curve:
  8929. - time: 0
  8930. value: 1
  8931. inSlope: 0
  8932. outSlope: 0
  8933. tangentMode: 0
  8934. - time: 1
  8935. value: 1
  8936. inSlope: 0
  8937. outSlope: 0
  8938. tangentMode: 0
  8939. m_PreInfinity: 2
  8940. m_PostInfinity: 2
  8941. m_RotationOrder: 4
  8942. minCurve:
  8943. serializedVersion: 2
  8944. m_Curve:
  8945. - time: 0
  8946. value: 0
  8947. inSlope: 0
  8948. outSlope: 0
  8949. tangentMode: 0
  8950. - time: 1
  8951. value: 0
  8952. inSlope: 0
  8953. outSlope: 0
  8954. tangentMode: 0
  8955. m_PreInfinity: 2
  8956. m_PostInfinity: 2
  8957. m_RotationOrder: 4
  8958. minMaxState: 0
  8959. m_Bounce:
  8960. scalar: 1
  8961. maxCurve:
  8962. serializedVersion: 2
  8963. m_Curve:
  8964. - time: 0
  8965. value: 1
  8966. inSlope: 0
  8967. outSlope: 0
  8968. tangentMode: 0
  8969. - time: 1
  8970. value: 1
  8971. inSlope: 0
  8972. outSlope: 0
  8973. tangentMode: 0
  8974. m_PreInfinity: 2
  8975. m_PostInfinity: 2
  8976. m_RotationOrder: 4
  8977. minCurve:
  8978. serializedVersion: 2
  8979. m_Curve:
  8980. - time: 0
  8981. value: 0
  8982. inSlope: 0
  8983. outSlope: 0
  8984. tangentMode: 0
  8985. - time: 1
  8986. value: 0
  8987. inSlope: 0
  8988. outSlope: 0
  8989. tangentMode: 0
  8990. m_PreInfinity: 2
  8991. m_PostInfinity: 2
  8992. m_RotationOrder: 4
  8993. minMaxState: 0
  8994. m_EnergyLossOnCollision:
  8995. scalar: 0
  8996. maxCurve:
  8997. serializedVersion: 2
  8998. m_Curve:
  8999. - time: 0
  9000. value: 1
  9001. inSlope: 0
  9002. outSlope: 0
  9003. tangentMode: 0
  9004. - time: 1
  9005. value: 1
  9006. inSlope: 0
  9007. outSlope: 0
  9008. tangentMode: 0
  9009. m_PreInfinity: 2
  9010. m_PostInfinity: 2
  9011. m_RotationOrder: 4
  9012. minCurve:
  9013. serializedVersion: 2
  9014. m_Curve:
  9015. - time: 0
  9016. value: 0
  9017. inSlope: 0
  9018. outSlope: 0
  9019. tangentMode: 0
  9020. - time: 1
  9021. value: 0
  9022. inSlope: 0
  9023. outSlope: 0
  9024. tangentMode: 0
  9025. m_PreInfinity: 2
  9026. m_PostInfinity: 2
  9027. m_RotationOrder: 4
  9028. minMaxState: 0
  9029. minKillSpeed: 0
  9030. radiusScale: 1
  9031. collidesWith:
  9032. serializedVersion: 2
  9033. m_Bits: 4294967295
  9034. maxCollisionShapes: 256
  9035. quality: 0
  9036. voxelSize: 0.5
  9037. collisionMessages: 0
  9038. collidesWithDynamic: 1
  9039. interiorCollisions: 1
  9040. SubModule:
  9041. enabled: 0
  9042. subEmitterBirth: {fileID: 0}
  9043. subEmitterBirth1: {fileID: 0}
  9044. subEmitterCollision: {fileID: 0}
  9045. subEmitterCollision1: {fileID: 0}
  9046. subEmitterDeath: {fileID: 0}
  9047. subEmitterDeath1: {fileID: 0}
  9048. --- !u!198 &19800012
  9049. ParticleSystem:
  9050. m_ObjectHideFlags: 1
  9051. m_PrefabParentObject: {fileID: 0}
  9052. m_PrefabInternal: {fileID: 100100000}
  9053. m_GameObject: {fileID: 100010}
  9054. serializedVersion: 2
  9055. lengthInSec: 3
  9056. startDelay:
  9057. scalar: 0
  9058. maxCurve:
  9059. serializedVersion: 2
  9060. m_Curve:
  9061. - time: 0
  9062. value: 1
  9063. inSlope: 0
  9064. outSlope: 0
  9065. tangentMode: 0
  9066. - time: 1
  9067. value: 1
  9068. inSlope: 0
  9069. outSlope: 0
  9070. tangentMode: 0
  9071. m_PreInfinity: 2
  9072. m_PostInfinity: 2
  9073. m_RotationOrder: 4
  9074. minCurve:
  9075. serializedVersion: 2
  9076. m_Curve:
  9077. - time: 0
  9078. value: 0
  9079. inSlope: 0
  9080. outSlope: 0
  9081. tangentMode: 0
  9082. - time: 1
  9083. value: 0
  9084. inSlope: 0
  9085. outSlope: 0
  9086. tangentMode: 0
  9087. m_PreInfinity: 2
  9088. m_PostInfinity: 2
  9089. m_RotationOrder: 4
  9090. minMaxState: 0
  9091. speed: 1
  9092. randomSeed: 0
  9093. looping: 0
  9094. prewarm: 0
  9095. playOnAwake: 1
  9096. moveWithTransform: 0
  9097. scalingMode: 2
  9098. InitialModule:
  9099. serializedVersion: 2
  9100. enabled: 1
  9101. startLifetime:
  9102. scalar: 0.68
  9103. maxCurve:
  9104. serializedVersion: 2
  9105. m_Curve:
  9106. - time: 0
  9107. value: 0.5882352
  9108. inSlope: 0
  9109. outSlope: 0
  9110. tangentMode: 0
  9111. m_PreInfinity: 2
  9112. m_PostInfinity: 2
  9113. m_RotationOrder: 4
  9114. minCurve:
  9115. serializedVersion: 2
  9116. m_Curve:
  9117. - time: 0
  9118. value: 1
  9119. inSlope: 0
  9120. outSlope: 0
  9121. tangentMode: 0
  9122. m_PreInfinity: 2
  9123. m_PostInfinity: 2
  9124. m_RotationOrder: 4
  9125. minMaxState: 3
  9126. startSpeed:
  9127. scalar: 0
  9128. maxCurve:
  9129. serializedVersion: 2
  9130. m_Curve:
  9131. - time: 0
  9132. value: 1
  9133. inSlope: 0
  9134. outSlope: 0
  9135. tangentMode: 0
  9136. - time: 1
  9137. value: 1
  9138. inSlope: 0
  9139. outSlope: 0
  9140. tangentMode: 0
  9141. m_PreInfinity: 2
  9142. m_PostInfinity: 2
  9143. m_RotationOrder: 4
  9144. minCurve:
  9145. serializedVersion: 2
  9146. m_Curve:
  9147. - time: 0
  9148. value: 0
  9149. inSlope: 0
  9150. outSlope: 0
  9151. tangentMode: 0
  9152. - time: 1
  9153. value: 0
  9154. inSlope: 0
  9155. outSlope: 0
  9156. tangentMode: 0
  9157. m_PreInfinity: 2
  9158. m_PostInfinity: 2
  9159. m_RotationOrder: 4
  9160. minMaxState: 0
  9161. startColor:
  9162. maxGradient:
  9163. key0:
  9164. serializedVersion: 2
  9165. rgba: 4285136640
  9166. key1:
  9167. serializedVersion: 2
  9168. rgba: 4290051840
  9169. key2:
  9170. serializedVersion: 2
  9171. rgba: 0
  9172. key3:
  9173. serializedVersion: 2
  9174. rgba: 0
  9175. key4:
  9176. serializedVersion: 2
  9177. rgba: 0
  9178. key5:
  9179. serializedVersion: 2
  9180. rgba: 0
  9181. key6:
  9182. serializedVersion: 2
  9183. rgba: 0
  9184. key7:
  9185. serializedVersion: 2
  9186. rgba: 0
  9187. ctime0: 0
  9188. ctime1: 65535
  9189. ctime2: 0
  9190. ctime3: 0
  9191. ctime4: 0
  9192. ctime5: 0
  9193. ctime6: 0
  9194. ctime7: 0
  9195. atime0: 0
  9196. atime1: 65535
  9197. atime2: 0
  9198. atime3: 0
  9199. atime4: 0
  9200. atime5: 0
  9201. atime6: 0
  9202. atime7: 0
  9203. m_NumColorKeys: 2
  9204. m_NumAlphaKeys: 2
  9205. minGradient:
  9206. key0:
  9207. serializedVersion: 2
  9208. rgba: 4294967295
  9209. key1:
  9210. serializedVersion: 2
  9211. rgba: 4294967295
  9212. key2:
  9213. serializedVersion: 2
  9214. rgba: 0
  9215. key3:
  9216. serializedVersion: 2
  9217. rgba: 0
  9218. key4:
  9219. serializedVersion: 2
  9220. rgba: 0
  9221. key5:
  9222. serializedVersion: 2
  9223. rgba: 0
  9224. key6:
  9225. serializedVersion: 2
  9226. rgba: 0
  9227. key7:
  9228. serializedVersion: 2
  9229. rgba: 0
  9230. ctime0: 0
  9231. ctime1: 65535
  9232. ctime2: 0
  9233. ctime3: 0
  9234. ctime4: 0
  9235. ctime5: 0
  9236. ctime6: 0
  9237. ctime7: 0
  9238. atime0: 0
  9239. atime1: 65535
  9240. atime2: 0
  9241. atime3: 0
  9242. atime4: 0
  9243. atime5: 0
  9244. atime6: 0
  9245. atime7: 0
  9246. m_NumColorKeys: 2
  9247. m_NumAlphaKeys: 2
  9248. minColor:
  9249. serializedVersion: 2
  9250. rgba: 4294967295
  9251. maxColor:
  9252. serializedVersion: 2
  9253. rgba: 4294967295
  9254. minMaxState: 0
  9255. startSize:
  9256. scalar: 0.1
  9257. maxCurve:
  9258. serializedVersion: 2
  9259. m_Curve:
  9260. - time: 0
  9261. value: 1
  9262. inSlope: 0
  9263. outSlope: 0
  9264. tangentMode: 0
  9265. m_PreInfinity: 2
  9266. m_PostInfinity: 2
  9267. m_RotationOrder: 4
  9268. minCurve:
  9269. serializedVersion: 2
  9270. m_Curve:
  9271. - time: 0
  9272. value: 0.5
  9273. inSlope: 0
  9274. outSlope: 0
  9275. tangentMode: 0
  9276. m_PreInfinity: 2
  9277. m_PostInfinity: 2
  9278. m_RotationOrder: 4
  9279. minMaxState: 3
  9280. startRotationX:
  9281. scalar: 1
  9282. maxCurve:
  9283. serializedVersion: 2
  9284. m_Curve:
  9285. - time: 0
  9286. value: 1
  9287. inSlope: 0
  9288. outSlope: 0
  9289. tangentMode: 0
  9290. - time: 1
  9291. value: 1
  9292. inSlope: 0
  9293. outSlope: 0
  9294. tangentMode: 0
  9295. m_PreInfinity: 2
  9296. m_PostInfinity: 2
  9297. m_RotationOrder: 4
  9298. minCurve:
  9299. serializedVersion: 2
  9300. m_Curve:
  9301. - time: 0
  9302. value: 0
  9303. inSlope: 0
  9304. outSlope: 0
  9305. tangentMode: 0
  9306. - time: 1
  9307. value: 0
  9308. inSlope: 0
  9309. outSlope: 0
  9310. tangentMode: 0
  9311. m_PreInfinity: 2
  9312. m_PostInfinity: 2
  9313. m_RotationOrder: 4
  9314. minMaxState: 0
  9315. startRotationY:
  9316. scalar: 1
  9317. maxCurve:
  9318. serializedVersion: 2
  9319. m_Curve:
  9320. - time: 0
  9321. value: 1
  9322. inSlope: 0
  9323. outSlope: 0
  9324. tangentMode: 0
  9325. - time: 1
  9326. value: 1
  9327. inSlope: 0
  9328. outSlope: 0
  9329. tangentMode: 0
  9330. m_PreInfinity: 2
  9331. m_PostInfinity: 2
  9332. m_RotationOrder: 4
  9333. minCurve:
  9334. serializedVersion: 2
  9335. m_Curve:
  9336. - time: 0
  9337. value: 0
  9338. inSlope: 0
  9339. outSlope: 0
  9340. tangentMode: 0
  9341. - time: 1
  9342. value: 0
  9343. inSlope: 0
  9344. outSlope: 0
  9345. tangentMode: 0
  9346. m_PreInfinity: 2
  9347. m_PostInfinity: 2
  9348. m_RotationOrder: 4
  9349. minMaxState: 0
  9350. startRotation:
  9351. scalar: 6.283185
  9352. maxCurve:
  9353. serializedVersion: 2
  9354. m_Curve:
  9355. - time: 0
  9356. value: 1
  9357. inSlope: 0
  9358. outSlope: 0
  9359. tangentMode: 0
  9360. m_PreInfinity: 2
  9361. m_PostInfinity: 2
  9362. m_RotationOrder: 4
  9363. minCurve:
  9364. serializedVersion: 2
  9365. m_Curve:
  9366. - time: 0
  9367. value: 0
  9368. inSlope: 0
  9369. outSlope: 0
  9370. tangentMode: 0
  9371. m_PreInfinity: 2
  9372. m_PostInfinity: 2
  9373. m_RotationOrder: 4
  9374. minMaxState: 3
  9375. randomizeRotationDirection: 0
  9376. gravityModifier: 0
  9377. maxNumParticles: 10
  9378. rotation3D: 0
  9379. ShapeModule:
  9380. serializedVersion: 2
  9381. enabled: 1
  9382. type: 0
  9383. radius: 0.01
  9384. angle: 25
  9385. length: 5
  9386. boxX: 1
  9387. boxY: 1
  9388. boxZ: 1
  9389. arc: 360
  9390. placementMode: 0
  9391. m_Mesh: {fileID: 0}
  9392. m_MeshRenderer: {fileID: 0}
  9393. m_SkinnedMeshRenderer: {fileID: 0}
  9394. m_MeshMaterialIndex: 0
  9395. m_MeshNormalOffset: 0
  9396. m_UseMeshMaterialIndex: 0
  9397. m_UseMeshColors: 1
  9398. randomDirection: 0
  9399. EmissionModule:
  9400. enabled: 1
  9401. serializedVersion: 2
  9402. m_Type: 0
  9403. rate:
  9404. scalar: 10
  9405. maxCurve:
  9406. serializedVersion: 2
  9407. m_Curve:
  9408. - time: 0
  9409. value: 1
  9410. inSlope: 0
  9411. outSlope: 0
  9412. tangentMode: 0
  9413. - time: 1
  9414. value: 1
  9415. inSlope: 0
  9416. outSlope: 0
  9417. tangentMode: 0
  9418. m_PreInfinity: 2
  9419. m_PostInfinity: 2
  9420. m_RotationOrder: 4
  9421. minCurve:
  9422. serializedVersion: 2
  9423. m_Curve:
  9424. - time: 0
  9425. value: 0
  9426. inSlope: 0
  9427. outSlope: 0
  9428. tangentMode: 0
  9429. - time: 1
  9430. value: 0
  9431. inSlope: 0
  9432. outSlope: 0
  9433. tangentMode: 0
  9434. m_PreInfinity: 2
  9435. m_PostInfinity: 2
  9436. m_RotationOrder: 4
  9437. minMaxState: 0
  9438. cnt0: 30
  9439. cnt1: 30
  9440. cnt2: 30
  9441. cnt3: 30
  9442. cntmax0: 30
  9443. cntmax1: 30
  9444. cntmax2: 30
  9445. cntmax3: 30
  9446. time0: 0
  9447. time1: 0
  9448. time2: 0
  9449. time3: 0
  9450. m_BurstCount: 0
  9451. SizeModule:
  9452. enabled: 1
  9453. curve:
  9454. scalar: 1
  9455. maxCurve:
  9456. serializedVersion: 2
  9457. m_Curve:
  9458. - time: 0
  9459. value: 1
  9460. inSlope: -1
  9461. outSlope: -1
  9462. tangentMode: 10
  9463. - time: 1
  9464. value: 0
  9465. inSlope: -1
  9466. outSlope: -1
  9467. tangentMode: 10
  9468. m_PreInfinity: 2
  9469. m_PostInfinity: 2
  9470. m_RotationOrder: 4
  9471. minCurve:
  9472. serializedVersion: 2
  9473. m_Curve:
  9474. - time: 0
  9475. value: 0
  9476. inSlope: 0
  9477. outSlope: 0
  9478. tangentMode: 0
  9479. - time: 1
  9480. value: 0
  9481. inSlope: 0
  9482. outSlope: 0
  9483. tangentMode: 0
  9484. m_PreInfinity: 2
  9485. m_PostInfinity: 2
  9486. m_RotationOrder: 4
  9487. minMaxState: 1
  9488. RotationModule:
  9489. enabled: 0
  9490. x:
  9491. scalar: 1
  9492. maxCurve:
  9493. serializedVersion: 2
  9494. m_Curve:
  9495. - time: 0
  9496. value: 1
  9497. inSlope: 0
  9498. outSlope: 0
  9499. tangentMode: 0
  9500. - time: 1
  9501. value: 1
  9502. inSlope: 0
  9503. outSlope: 0
  9504. tangentMode: 0
  9505. m_PreInfinity: 2
  9506. m_PostInfinity: 2
  9507. m_RotationOrder: 4
  9508. minCurve:
  9509. serializedVersion: 2
  9510. m_Curve:
  9511. - time: 0
  9512. value: 0
  9513. inSlope: 0
  9514. outSlope: 0
  9515. tangentMode: 0
  9516. - time: 1
  9517. value: 0
  9518. inSlope: 0
  9519. outSlope: 0
  9520. tangentMode: 0
  9521. m_PreInfinity: 2
  9522. m_PostInfinity: 2
  9523. m_RotationOrder: 4
  9524. minMaxState: 0
  9525. y:
  9526. scalar: 1
  9527. maxCurve:
  9528. serializedVersion: 2
  9529. m_Curve:
  9530. - time: 0
  9531. value: 1
  9532. inSlope: 0
  9533. outSlope: 0
  9534. tangentMode: 0
  9535. - time: 1
  9536. value: 1
  9537. inSlope: 0
  9538. outSlope: 0
  9539. tangentMode: 0
  9540. m_PreInfinity: 2
  9541. m_PostInfinity: 2
  9542. m_RotationOrder: 4
  9543. minCurve:
  9544. serializedVersion: 2
  9545. m_Curve:
  9546. - time: 0
  9547. value: 0
  9548. inSlope: 0
  9549. outSlope: 0
  9550. tangentMode: 0
  9551. - time: 1
  9552. value: 0
  9553. inSlope: 0
  9554. outSlope: 0
  9555. tangentMode: 0
  9556. m_PreInfinity: 2
  9557. m_PostInfinity: 2
  9558. m_RotationOrder: 4
  9559. minMaxState: 0
  9560. curve:
  9561. scalar: 0.7853982
  9562. maxCurve:
  9563. serializedVersion: 2
  9564. m_Curve:
  9565. - time: 0
  9566. value: 1
  9567. inSlope: 0
  9568. outSlope: 0
  9569. tangentMode: 0
  9570. - time: 1
  9571. value: 1
  9572. inSlope: 0
  9573. outSlope: 0
  9574. tangentMode: 0
  9575. m_PreInfinity: 2
  9576. m_PostInfinity: 2
  9577. m_RotationOrder: 4
  9578. minCurve:
  9579. serializedVersion: 2
  9580. m_Curve:
  9581. - time: 0
  9582. value: 0
  9583. inSlope: 0
  9584. outSlope: 0
  9585. tangentMode: 0
  9586. - time: 1
  9587. value: 0
  9588. inSlope: 0
  9589. outSlope: 0
  9590. tangentMode: 0
  9591. m_PreInfinity: 2
  9592. m_PostInfinity: 2
  9593. m_RotationOrder: 4
  9594. minMaxState: 0
  9595. separateAxes: 0
  9596. ColorModule:
  9597. enabled: 1
  9598. gradient:
  9599. maxGradient:
  9600. key0:
  9601. serializedVersion: 2
  9602. rgba: 4278190335
  9603. key1:
  9604. serializedVersion: 2
  9605. rgba: 4278235647
  9606. key2:
  9607. serializedVersion: 2
  9608. rgba: 255
  9609. key3:
  9610. serializedVersion: 2
  9611. rgba: 16449791
  9612. key4:
  9613. serializedVersion: 2
  9614. rgba: 16449791
  9615. key5:
  9616. serializedVersion: 2
  9617. rgba: 16777215
  9618. key6:
  9619. serializedVersion: 2
  9620. rgba: 16777215
  9621. key7:
  9622. serializedVersion: 2
  9623. rgba: 16777215
  9624. ctime0: 0
  9625. ctime1: 52235
  9626. ctime2: 65535
  9627. ctime3: 65535
  9628. ctime4: 65535
  9629. ctime5: 65535
  9630. ctime6: 65535
  9631. ctime7: 65535
  9632. atime0: 0
  9633. atime1: 65535
  9634. atime2: 0
  9635. atime3: 0
  9636. atime4: 0
  9637. atime5: 0
  9638. atime6: 0
  9639. atime7: 0
  9640. m_NumColorKeys: 3
  9641. m_NumAlphaKeys: 2
  9642. minGradient:
  9643. key0:
  9644. serializedVersion: 2
  9645. rgba: 4294967295
  9646. key1:
  9647. serializedVersion: 2
  9648. rgba: 4294967295
  9649. key2:
  9650. serializedVersion: 2
  9651. rgba: 0
  9652. key3:
  9653. serializedVersion: 2
  9654. rgba: 0
  9655. key4:
  9656. serializedVersion: 2
  9657. rgba: 0
  9658. key5:
  9659. serializedVersion: 2
  9660. rgba: 0
  9661. key6:
  9662. serializedVersion: 2
  9663. rgba: 0
  9664. key7:
  9665. serializedVersion: 2
  9666. rgba: 0
  9667. ctime0: 0
  9668. ctime1: 65535
  9669. ctime2: 0
  9670. ctime3: 0
  9671. ctime4: 0
  9672. ctime5: 0
  9673. ctime6: 0
  9674. ctime7: 0
  9675. atime0: 0
  9676. atime1: 65535
  9677. atime2: 0
  9678. atime3: 0
  9679. atime4: 0
  9680. atime5: 0
  9681. atime6: 0
  9682. atime7: 0
  9683. m_NumColorKeys: 2
  9684. m_NumAlphaKeys: 2
  9685. minColor:
  9686. serializedVersion: 2
  9687. rgba: 4294967295
  9688. maxColor:
  9689. serializedVersion: 2
  9690. rgba: 4294967295
  9691. minMaxState: 1
  9692. UVModule:
  9693. enabled: 0
  9694. frameOverTime:
  9695. scalar: 1
  9696. maxCurve:
  9697. serializedVersion: 2
  9698. m_Curve:
  9699. - time: 0
  9700. value: 0
  9701. inSlope: 0
  9702. outSlope: 1
  9703. tangentMode: 0
  9704. - time: 1
  9705. value: 1
  9706. inSlope: 1
  9707. outSlope: 0
  9708. tangentMode: 0
  9709. m_PreInfinity: 2
  9710. m_PostInfinity: 2
  9711. m_RotationOrder: 4
  9712. minCurve:
  9713. serializedVersion: 2
  9714. m_Curve:
  9715. - time: 0
  9716. value: 0
  9717. inSlope: 0
  9718. outSlope: 1
  9719. tangentMode: 0
  9720. - time: 1
  9721. value: 1
  9722. inSlope: 1
  9723. outSlope: 0
  9724. tangentMode: 0
  9725. m_PreInfinity: 2
  9726. m_PostInfinity: 2
  9727. m_RotationOrder: 4
  9728. minMaxState: 1
  9729. tilesX: 4
  9730. tilesY: 4
  9731. animationType: 0
  9732. rowIndex: 0
  9733. cycles: 1
  9734. randomRow: 1
  9735. VelocityModule:
  9736. enabled: 0
  9737. x:
  9738. scalar: 0
  9739. maxCurve:
  9740. serializedVersion: 2
  9741. m_Curve:
  9742. - time: 0
  9743. value: 1
  9744. inSlope: 0
  9745. outSlope: 0
  9746. tangentMode: 0
  9747. - time: 1
  9748. value: 1
  9749. inSlope: 0
  9750. outSlope: 0
  9751. tangentMode: 0
  9752. m_PreInfinity: 2
  9753. m_PostInfinity: 2
  9754. m_RotationOrder: 4
  9755. minCurve:
  9756. serializedVersion: 2
  9757. m_Curve:
  9758. - time: 0
  9759. value: 0
  9760. inSlope: 0
  9761. outSlope: 0
  9762. tangentMode: 0
  9763. - time: 1
  9764. value: 0
  9765. inSlope: 0
  9766. outSlope: 0
  9767. tangentMode: 0
  9768. m_PreInfinity: 2
  9769. m_PostInfinity: 2
  9770. m_RotationOrder: 4
  9771. minMaxState: 0
  9772. y:
  9773. scalar: 0
  9774. maxCurve:
  9775. serializedVersion: 2
  9776. m_Curve:
  9777. - time: 0
  9778. value: 1
  9779. inSlope: 0
  9780. outSlope: 0
  9781. tangentMode: 0
  9782. - time: 1
  9783. value: 1
  9784. inSlope: 0
  9785. outSlope: 0
  9786. tangentMode: 0
  9787. m_PreInfinity: 2
  9788. m_PostInfinity: 2
  9789. m_RotationOrder: 4
  9790. minCurve:
  9791. serializedVersion: 2
  9792. m_Curve:
  9793. - time: 0
  9794. value: 0
  9795. inSlope: 0
  9796. outSlope: 0
  9797. tangentMode: 0
  9798. - time: 1
  9799. value: 0
  9800. inSlope: 0
  9801. outSlope: 0
  9802. tangentMode: 0
  9803. m_PreInfinity: 2
  9804. m_PostInfinity: 2
  9805. m_RotationOrder: 4
  9806. minMaxState: 0
  9807. z:
  9808. scalar: 0
  9809. maxCurve:
  9810. serializedVersion: 2
  9811. m_Curve:
  9812. - time: 0
  9813. value: 1
  9814. inSlope: 0
  9815. outSlope: 0
  9816. tangentMode: 0
  9817. - time: 1
  9818. value: 1
  9819. inSlope: 0
  9820. outSlope: 0
  9821. tangentMode: 0
  9822. m_PreInfinity: 2
  9823. m_PostInfinity: 2
  9824. m_RotationOrder: 4
  9825. minCurve:
  9826. serializedVersion: 2
  9827. m_Curve:
  9828. - time: 0
  9829. value: 0
  9830. inSlope: 0
  9831. outSlope: 0
  9832. tangentMode: 0
  9833. - time: 1
  9834. value: 0
  9835. inSlope: 0
  9836. outSlope: 0
  9837. tangentMode: 0
  9838. m_PreInfinity: 2
  9839. m_PostInfinity: 2
  9840. m_RotationOrder: 4
  9841. minMaxState: 0
  9842. inWorldSpace: 0
  9843. InheritVelocityModule:
  9844. enabled: 1
  9845. m_Mode: 0
  9846. m_Curve:
  9847. scalar: 0.5
  9848. maxCurve:
  9849. serializedVersion: 2
  9850. m_Curve:
  9851. - time: 0
  9852. value: 1
  9853. inSlope: 0
  9854. outSlope: 0
  9855. tangentMode: 0
  9856. - time: 1
  9857. value: 1
  9858. inSlope: 0
  9859. outSlope: 0
  9860. tangentMode: 0
  9861. m_PreInfinity: 2
  9862. m_PostInfinity: 2
  9863. m_RotationOrder: 4
  9864. minCurve:
  9865. serializedVersion: 2
  9866. m_Curve:
  9867. - time: 0
  9868. value: 0
  9869. inSlope: 0
  9870. outSlope: 0
  9871. tangentMode: 0
  9872. - time: 1
  9873. value: 0
  9874. inSlope: 0
  9875. outSlope: 0
  9876. tangentMode: 0
  9877. m_PreInfinity: 2
  9878. m_PostInfinity: 2
  9879. m_RotationOrder: 4
  9880. minMaxState: 0
  9881. ForceModule:
  9882. enabled: 0
  9883. x:
  9884. scalar: 100
  9885. maxCurve:
  9886. serializedVersion: 2
  9887. m_Curve:
  9888. - time: 0
  9889. value: 1
  9890. inSlope: 0
  9891. outSlope: 0
  9892. tangentMode: 0
  9893. m_PreInfinity: 2
  9894. m_PostInfinity: 2
  9895. m_RotationOrder: 4
  9896. minCurve:
  9897. serializedVersion: 2
  9898. m_Curve:
  9899. - time: 0
  9900. value: -1
  9901. inSlope: 0
  9902. outSlope: 0
  9903. tangentMode: 0
  9904. m_PreInfinity: 2
  9905. m_PostInfinity: 2
  9906. m_RotationOrder: 4
  9907. minMaxState: 3
  9908. y:
  9909. scalar: 100
  9910. maxCurve:
  9911. serializedVersion: 2
  9912. m_Curve:
  9913. - time: 0
  9914. value: 1
  9915. inSlope: 0
  9916. outSlope: 0
  9917. tangentMode: 0
  9918. m_PreInfinity: 2
  9919. m_PostInfinity: 2
  9920. m_RotationOrder: 4
  9921. minCurve:
  9922. serializedVersion: 2
  9923. m_Curve:
  9924. - time: 0
  9925. value: -1
  9926. inSlope: 0
  9927. outSlope: 0
  9928. tangentMode: 0
  9929. m_PreInfinity: 2
  9930. m_PostInfinity: 2
  9931. m_RotationOrder: 4
  9932. minMaxState: 3
  9933. z:
  9934. scalar: 100
  9935. maxCurve:
  9936. serializedVersion: 2
  9937. m_Curve:
  9938. - time: 0
  9939. value: 1
  9940. inSlope: 0
  9941. outSlope: 0
  9942. tangentMode: 0
  9943. m_PreInfinity: 2
  9944. m_PostInfinity: 2
  9945. m_RotationOrder: 4
  9946. minCurve:
  9947. serializedVersion: 2
  9948. m_Curve:
  9949. - time: 0
  9950. value: -1
  9951. inSlope: 0
  9952. outSlope: 0
  9953. tangentMode: 0
  9954. m_PreInfinity: 2
  9955. m_PostInfinity: 2
  9956. m_RotationOrder: 4
  9957. minMaxState: 3
  9958. inWorldSpace: 0
  9959. randomizePerFrame: 1
  9960. ExternalForcesModule:
  9961. enabled: 0
  9962. multiplier: 1
  9963. ClampVelocityModule:
  9964. enabled: 0
  9965. x:
  9966. scalar: 1
  9967. maxCurve:
  9968. serializedVersion: 2
  9969. m_Curve:
  9970. - time: 0
  9971. value: 1
  9972. inSlope: 0
  9973. outSlope: 0
  9974. tangentMode: 0
  9975. - time: 1
  9976. value: 1
  9977. inSlope: 0
  9978. outSlope: 0
  9979. tangentMode: 0
  9980. m_PreInfinity: 2
  9981. m_PostInfinity: 2
  9982. m_RotationOrder: 4
  9983. minCurve:
  9984. serializedVersion: 2
  9985. m_Curve:
  9986. - time: 0
  9987. value: 0
  9988. inSlope: 0
  9989. outSlope: 0
  9990. tangentMode: 0
  9991. - time: 1
  9992. value: 0
  9993. inSlope: 0
  9994. outSlope: 0
  9995. tangentMode: 0
  9996. m_PreInfinity: 2
  9997. m_PostInfinity: 2
  9998. m_RotationOrder: 4
  9999. minMaxState: 0
  10000. y:
  10001. scalar: 1
  10002. maxCurve:
  10003. serializedVersion: 2
  10004. m_Curve:
  10005. - time: 0
  10006. value: 1
  10007. inSlope: 0
  10008. outSlope: 0
  10009. tangentMode: 0
  10010. - time: 1
  10011. value: 1
  10012. inSlope: 0
  10013. outSlope: 0
  10014. tangentMode: 0
  10015. m_PreInfinity: 2
  10016. m_PostInfinity: 2
  10017. m_RotationOrder: 4
  10018. minCurve:
  10019. serializedVersion: 2
  10020. m_Curve:
  10021. - time: 0
  10022. value: 0
  10023. inSlope: 0
  10024. outSlope: 0
  10025. tangentMode: 0
  10026. - time: 1
  10027. value: 0
  10028. inSlope: 0
  10029. outSlope: 0
  10030. tangentMode: 0
  10031. m_PreInfinity: 2
  10032. m_PostInfinity: 2
  10033. m_RotationOrder: 4
  10034. minMaxState: 0
  10035. z:
  10036. scalar: 1
  10037. maxCurve:
  10038. serializedVersion: 2
  10039. m_Curve:
  10040. - time: 0
  10041. value: 1
  10042. inSlope: 0
  10043. outSlope: 0
  10044. tangentMode: 0
  10045. - time: 1
  10046. value: 1
  10047. inSlope: 0
  10048. outSlope: 0
  10049. tangentMode: 0
  10050. m_PreInfinity: 2
  10051. m_PostInfinity: 2
  10052. m_RotationOrder: 4
  10053. minCurve:
  10054. serializedVersion: 2
  10055. m_Curve:
  10056. - time: 0
  10057. value: 0
  10058. inSlope: 0
  10059. outSlope: 0
  10060. tangentMode: 0
  10061. - time: 1
  10062. value: 0
  10063. inSlope: 0
  10064. outSlope: 0
  10065. tangentMode: 0
  10066. m_PreInfinity: 2
  10067. m_PostInfinity: 2
  10068. m_RotationOrder: 4
  10069. minMaxState: 0
  10070. magnitude:
  10071. scalar: 1
  10072. maxCurve:
  10073. serializedVersion: 2
  10074. m_Curve:
  10075. - time: 0
  10076. value: 1
  10077. inSlope: 0
  10078. outSlope: 0
  10079. tangentMode: 0
  10080. - time: 1
  10081. value: 1
  10082. inSlope: 0
  10083. outSlope: 0
  10084. tangentMode: 0
  10085. m_PreInfinity: 2
  10086. m_PostInfinity: 2
  10087. m_RotationOrder: 4
  10088. minCurve:
  10089. serializedVersion: 2
  10090. m_Curve:
  10091. - time: 0
  10092. value: 0
  10093. inSlope: 0
  10094. outSlope: 0
  10095. tangentMode: 0
  10096. - time: 1
  10097. value: 0
  10098. inSlope: 0
  10099. outSlope: 0
  10100. tangentMode: 0
  10101. m_PreInfinity: 2
  10102. m_PostInfinity: 2
  10103. m_RotationOrder: 4
  10104. minMaxState: 0
  10105. separateAxis: 0
  10106. inWorldSpace: 0
  10107. dampen: 1
  10108. SizeBySpeedModule:
  10109. enabled: 0
  10110. curve:
  10111. scalar: 1
  10112. maxCurve:
  10113. serializedVersion: 2
  10114. m_Curve:
  10115. - time: 0
  10116. value: 1
  10117. inSlope: 0
  10118. outSlope: 0
  10119. tangentMode: 0
  10120. - time: 1
  10121. value: 1
  10122. inSlope: 0
  10123. outSlope: 0
  10124. tangentMode: 0
  10125. m_PreInfinity: 2
  10126. m_PostInfinity: 2
  10127. m_RotationOrder: 4
  10128. minCurve:
  10129. serializedVersion: 2
  10130. m_Curve:
  10131. - time: 0
  10132. value: 0
  10133. inSlope: 0
  10134. outSlope: 0
  10135. tangentMode: 0
  10136. - time: 1
  10137. value: 0
  10138. inSlope: 0
  10139. outSlope: 0
  10140. tangentMode: 0
  10141. m_PreInfinity: 2
  10142. m_PostInfinity: 2
  10143. m_RotationOrder: 4
  10144. minMaxState: 1
  10145. range: {x: 0, y: 1}
  10146. RotationBySpeedModule:
  10147. enabled: 0
  10148. x:
  10149. scalar: 1
  10150. maxCurve:
  10151. serializedVersion: 2
  10152. m_Curve:
  10153. - time: 0
  10154. value: 1
  10155. inSlope: 0
  10156. outSlope: 0
  10157. tangentMode: 0
  10158. - time: 1
  10159. value: 1
  10160. inSlope: 0
  10161. outSlope: 0
  10162. tangentMode: 0
  10163. m_PreInfinity: 2
  10164. m_PostInfinity: 2
  10165. m_RotationOrder: 4
  10166. minCurve:
  10167. serializedVersion: 2
  10168. m_Curve:
  10169. - time: 0
  10170. value: 0
  10171. inSlope: 0
  10172. outSlope: 0
  10173. tangentMode: 0
  10174. - time: 1
  10175. value: 0
  10176. inSlope: 0
  10177. outSlope: 0
  10178. tangentMode: 0
  10179. m_PreInfinity: 2
  10180. m_PostInfinity: 2
  10181. m_RotationOrder: 4
  10182. minMaxState: 0
  10183. y:
  10184. scalar: 1
  10185. maxCurve:
  10186. serializedVersion: 2
  10187. m_Curve:
  10188. - time: 0
  10189. value: 1
  10190. inSlope: 0
  10191. outSlope: 0
  10192. tangentMode: 0
  10193. - time: 1
  10194. value: 1
  10195. inSlope: 0
  10196. outSlope: 0
  10197. tangentMode: 0
  10198. m_PreInfinity: 2
  10199. m_PostInfinity: 2
  10200. m_RotationOrder: 4
  10201. minCurve:
  10202. serializedVersion: 2
  10203. m_Curve:
  10204. - time: 0
  10205. value: 0
  10206. inSlope: 0
  10207. outSlope: 0
  10208. tangentMode: 0
  10209. - time: 1
  10210. value: 0
  10211. inSlope: 0
  10212. outSlope: 0
  10213. tangentMode: 0
  10214. m_PreInfinity: 2
  10215. m_PostInfinity: 2
  10216. m_RotationOrder: 4
  10217. minMaxState: 0
  10218. curve:
  10219. scalar: 0.7853982
  10220. maxCurve:
  10221. serializedVersion: 2
  10222. m_Curve:
  10223. - time: 0
  10224. value: 1
  10225. inSlope: 0
  10226. outSlope: 0
  10227. tangentMode: 0
  10228. - time: 1
  10229. value: 1
  10230. inSlope: 0
  10231. outSlope: 0
  10232. tangentMode: 0
  10233. m_PreInfinity: 2
  10234. m_PostInfinity: 2
  10235. m_RotationOrder: 4
  10236. minCurve:
  10237. serializedVersion: 2
  10238. m_Curve:
  10239. - time: 0
  10240. value: 0
  10241. inSlope: 0
  10242. outSlope: 0
  10243. tangentMode: 0
  10244. - time: 1
  10245. value: 0
  10246. inSlope: 0
  10247. outSlope: 0
  10248. tangentMode: 0
  10249. m_PreInfinity: 2
  10250. m_PostInfinity: 2
  10251. m_RotationOrder: 4
  10252. minMaxState: 0
  10253. separateAxes: 0
  10254. range: {x: 0, y: 1}
  10255. ColorBySpeedModule:
  10256. enabled: 0
  10257. gradient:
  10258. maxGradient:
  10259. key0:
  10260. serializedVersion: 2
  10261. rgba: 4294967295
  10262. key1:
  10263. serializedVersion: 2
  10264. rgba: 4294967295
  10265. key2:
  10266. serializedVersion: 2
  10267. rgba: 0
  10268. key3:
  10269. serializedVersion: 2
  10270. rgba: 0
  10271. key4:
  10272. serializedVersion: 2
  10273. rgba: 0
  10274. key5:
  10275. serializedVersion: 2
  10276. rgba: 0
  10277. key6:
  10278. serializedVersion: 2
  10279. rgba: 0
  10280. key7:
  10281. serializedVersion: 2
  10282. rgba: 0
  10283. ctime0: 0
  10284. ctime1: 65535
  10285. ctime2: 0
  10286. ctime3: 0
  10287. ctime4: 0
  10288. ctime5: 0
  10289. ctime6: 0
  10290. ctime7: 0
  10291. atime0: 0
  10292. atime1: 65535
  10293. atime2: 0
  10294. atime3: 0
  10295. atime4: 0
  10296. atime5: 0
  10297. atime6: 0
  10298. atime7: 0
  10299. m_NumColorKeys: 2
  10300. m_NumAlphaKeys: 2
  10301. minGradient:
  10302. key0:
  10303. serializedVersion: 2
  10304. rgba: 4294967295
  10305. key1:
  10306. serializedVersion: 2
  10307. rgba: 4294967295
  10308. key2:
  10309. serializedVersion: 2
  10310. rgba: 0
  10311. key3:
  10312. serializedVersion: 2
  10313. rgba: 0
  10314. key4:
  10315. serializedVersion: 2
  10316. rgba: 0
  10317. key5:
  10318. serializedVersion: 2
  10319. rgba: 0
  10320. key6:
  10321. serializedVersion: 2
  10322. rgba: 0
  10323. key7:
  10324. serializedVersion: 2
  10325. rgba: 0
  10326. ctime0: 0
  10327. ctime1: 65535
  10328. ctime2: 0
  10329. ctime3: 0
  10330. ctime4: 0
  10331. ctime5: 0
  10332. ctime6: 0
  10333. ctime7: 0
  10334. atime0: 0
  10335. atime1: 65535
  10336. atime2: 0
  10337. atime3: 0
  10338. atime4: 0
  10339. atime5: 0
  10340. atime6: 0
  10341. atime7: 0
  10342. m_NumColorKeys: 2
  10343. m_NumAlphaKeys: 2
  10344. minColor:
  10345. serializedVersion: 2
  10346. rgba: 4294967295
  10347. maxColor:
  10348. serializedVersion: 2
  10349. rgba: 4294967295
  10350. minMaxState: 1
  10351. range: {x: 0, y: 1}
  10352. CollisionModule:
  10353. enabled: 0
  10354. serializedVersion: 2
  10355. type: 0
  10356. collisionMode: 0
  10357. plane0: {fileID: 0}
  10358. plane1: {fileID: 0}
  10359. plane2: {fileID: 0}
  10360. plane3: {fileID: 0}
  10361. plane4: {fileID: 0}
  10362. plane5: {fileID: 0}
  10363. m_Dampen:
  10364. scalar: 0
  10365. maxCurve:
  10366. serializedVersion: 2
  10367. m_Curve:
  10368. - time: 0
  10369. value: 1
  10370. inSlope: 0
  10371. outSlope: 0
  10372. tangentMode: 0
  10373. - time: 1
  10374. value: 1
  10375. inSlope: 0
  10376. outSlope: 0
  10377. tangentMode: 0
  10378. m_PreInfinity: 2
  10379. m_PostInfinity: 2
  10380. m_RotationOrder: 4
  10381. minCurve:
  10382. serializedVersion: 2
  10383. m_Curve:
  10384. - time: 0
  10385. value: 0
  10386. inSlope: 0
  10387. outSlope: 0
  10388. tangentMode: 0
  10389. - time: 1
  10390. value: 0
  10391. inSlope: 0
  10392. outSlope: 0
  10393. tangentMode: 0
  10394. m_PreInfinity: 2
  10395. m_PostInfinity: 2
  10396. m_RotationOrder: 4
  10397. minMaxState: 0
  10398. m_Bounce:
  10399. scalar: 1
  10400. maxCurve:
  10401. serializedVersion: 2
  10402. m_Curve:
  10403. - time: 0
  10404. value: 1
  10405. inSlope: 0
  10406. outSlope: 0
  10407. tangentMode: 0
  10408. - time: 1
  10409. value: 1
  10410. inSlope: 0
  10411. outSlope: 0
  10412. tangentMode: 0
  10413. m_PreInfinity: 2
  10414. m_PostInfinity: 2
  10415. m_RotationOrder: 4
  10416. minCurve:
  10417. serializedVersion: 2
  10418. m_Curve:
  10419. - time: 0
  10420. value: 0
  10421. inSlope: 0
  10422. outSlope: 0
  10423. tangentMode: 0
  10424. - time: 1
  10425. value: 0
  10426. inSlope: 0
  10427. outSlope: 0
  10428. tangentMode: 0
  10429. m_PreInfinity: 2
  10430. m_PostInfinity: 2
  10431. m_RotationOrder: 4
  10432. minMaxState: 0
  10433. m_EnergyLossOnCollision:
  10434. scalar: 0
  10435. maxCurve:
  10436. serializedVersion: 2
  10437. m_Curve:
  10438. - time: 0
  10439. value: 1
  10440. inSlope: 0
  10441. outSlope: 0
  10442. tangentMode: 0
  10443. - time: 1
  10444. value: 1
  10445. inSlope: 0
  10446. outSlope: 0
  10447. tangentMode: 0
  10448. m_PreInfinity: 2
  10449. m_PostInfinity: 2
  10450. m_RotationOrder: 4
  10451. minCurve:
  10452. serializedVersion: 2
  10453. m_Curve:
  10454. - time: 0
  10455. value: 0
  10456. inSlope: 0
  10457. outSlope: 0
  10458. tangentMode: 0
  10459. - time: 1
  10460. value: 0
  10461. inSlope: 0
  10462. outSlope: 0
  10463. tangentMode: 0
  10464. m_PreInfinity: 2
  10465. m_PostInfinity: 2
  10466. m_RotationOrder: 4
  10467. minMaxState: 0
  10468. minKillSpeed: 0
  10469. radiusScale: 1
  10470. collidesWith:
  10471. serializedVersion: 2
  10472. m_Bits: 4294967295
  10473. maxCollisionShapes: 256
  10474. quality: 0
  10475. voxelSize: 0.5
  10476. collisionMessages: 0
  10477. collidesWithDynamic: 1
  10478. interiorCollisions: 1
  10479. SubModule:
  10480. enabled: 0
  10481. subEmitterBirth: {fileID: 0}
  10482. subEmitterBirth1: {fileID: 0}
  10483. subEmitterCollision: {fileID: 0}
  10484. subEmitterCollision1: {fileID: 0}
  10485. subEmitterDeath: {fileID: 0}
  10486. subEmitterDeath1: {fileID: 0}
  10487. --- !u!199 &19900000
  10488. ParticleSystemRenderer:
  10489. m_ObjectHideFlags: 1
  10490. m_PrefabParentObject: {fileID: 0}
  10491. m_PrefabInternal: {fileID: 100100000}
  10492. m_GameObject: {fileID: 100002}
  10493. m_Enabled: 1
  10494. m_CastShadows: 0
  10495. m_ReceiveShadows: 0
  10496. m_Materials:
  10497. - {fileID: 2100000, guid: 0f995b3145e0e7247a42da6cef1dbf23, type: 2}
  10498. m_SubsetIndices:
  10499. m_StaticBatchRoot: {fileID: 0}
  10500. m_UseLightProbes: 0
  10501. m_ReflectionProbeUsage: 0
  10502. m_ProbeAnchor: {fileID: 0}
  10503. m_ScaleInLightmap: 1
  10504. m_PreserveUVs: 0
  10505. m_IgnoreNormalsForChartDetection: 0
  10506. m_ImportantGI: 0
  10507. m_MinimumChartSize: 4
  10508. m_AutoUVMaxDistance: 0.5
  10509. m_AutoUVMaxAngle: 89
  10510. m_LightmapParameters: {fileID: 0}
  10511. m_SortingLayerID: 0
  10512. m_SortingOrder: 0
  10513. m_RenderMode: 1
  10514. m_SortMode: 0
  10515. m_MinParticleSize: 0
  10516. m_MaxParticleSize: 1
  10517. m_CameraVelocityScale: 0
  10518. m_VelocityScale: 0.2
  10519. m_LengthScale: 3
  10520. m_SortingFudge: 0
  10521. m_NormalDirection: 1
  10522. m_RenderAlignment: 0
  10523. m_Pivot: {x: 0, y: 0, z: 0}
  10524. m_Mesh: {fileID: 10207, guid: 0000000000000000e000000000000000, type: 0}
  10525. m_Mesh1: {fileID: 0}
  10526. m_Mesh2: {fileID: 0}
  10527. m_Mesh3: {fileID: 0}
  10528. --- !u!199 &19900002
  10529. ParticleSystemRenderer:
  10530. m_ObjectHideFlags: 1
  10531. m_PrefabParentObject: {fileID: 0}
  10532. m_PrefabInternal: {fileID: 100100000}
  10533. m_GameObject: {fileID: 100004}
  10534. m_Enabled: 1
  10535. m_CastShadows: 0
  10536. m_ReceiveShadows: 0
  10537. m_Materials:
  10538. - {fileID: 2100000, guid: a23eef5e20ff8cb46adf33491fc443fb, type: 2}
  10539. m_SubsetIndices:
  10540. m_StaticBatchRoot: {fileID: 0}
  10541. m_UseLightProbes: 0
  10542. m_ReflectionProbeUsage: 0
  10543. m_ProbeAnchor: {fileID: 0}
  10544. m_ScaleInLightmap: 1
  10545. m_PreserveUVs: 0
  10546. m_IgnoreNormalsForChartDetection: 0
  10547. m_ImportantGI: 0
  10548. m_MinimumChartSize: 4
  10549. m_AutoUVMaxDistance: 0.5
  10550. m_AutoUVMaxAngle: 89
  10551. m_LightmapParameters: {fileID: 0}
  10552. m_SortingLayerID: 0
  10553. m_SortingOrder: 0
  10554. m_RenderMode: 1
  10555. m_SortMode: 0
  10556. m_MinParticleSize: 0
  10557. m_MaxParticleSize: 1
  10558. m_CameraVelocityScale: 0
  10559. m_VelocityScale: 0.1
  10560. m_LengthScale: 0
  10561. m_SortingFudge: 0
  10562. m_NormalDirection: 1
  10563. m_RenderAlignment: 0
  10564. m_Pivot: {x: 0, y: 0, z: 0}
  10565. m_Mesh: {fileID: 10207, guid: 0000000000000000e000000000000000, type: 0}
  10566. m_Mesh1: {fileID: 0}
  10567. m_Mesh2: {fileID: 0}
  10568. m_Mesh3: {fileID: 0}
  10569. --- !u!199 &19900004
  10570. ParticleSystemRenderer:
  10571. m_ObjectHideFlags: 1
  10572. m_PrefabParentObject: {fileID: 0}
  10573. m_PrefabInternal: {fileID: 100100000}
  10574. m_GameObject: {fileID: 100012}
  10575. m_Enabled: 1
  10576. m_CastShadows: 1
  10577. m_ReceiveShadows: 1
  10578. m_Materials:
  10579. - {fileID: 2100000, guid: a23eef5e20ff8cb46adf33491fc443fb, type: 2}
  10580. m_SubsetIndices:
  10581. m_StaticBatchRoot: {fileID: 0}
  10582. m_UseLightProbes: 0
  10583. m_ReflectionProbeUsage: 0
  10584. m_ProbeAnchor: {fileID: 0}
  10585. m_ScaleInLightmap: 1
  10586. m_PreserveUVs: 0
  10587. m_IgnoreNormalsForChartDetection: 0
  10588. m_ImportantGI: 0
  10589. m_MinimumChartSize: 4
  10590. m_AutoUVMaxDistance: 0.5
  10591. m_AutoUVMaxAngle: 89
  10592. m_LightmapParameters: {fileID: 0}
  10593. m_SortingLayerID: 0
  10594. m_SortingOrder: 0
  10595. m_RenderMode: 0
  10596. m_SortMode: 0
  10597. m_MinParticleSize: 0
  10598. m_MaxParticleSize: 0.5
  10599. m_CameraVelocityScale: 0
  10600. m_VelocityScale: -0.32
  10601. m_LengthScale: 0.04
  10602. m_SortingFudge: 0
  10603. m_NormalDirection: 1
  10604. m_RenderAlignment: 0
  10605. m_Pivot: {x: 0, y: 0, z: 0}
  10606. m_Mesh: {fileID: 0}
  10607. m_Mesh1: {fileID: 0}
  10608. m_Mesh2: {fileID: 0}
  10609. m_Mesh3: {fileID: 0}
  10610. --- !u!199 &19900006
  10611. ParticleSystemRenderer:
  10612. m_ObjectHideFlags: 1
  10613. m_PrefabParentObject: {fileID: 0}
  10614. m_PrefabInternal: {fileID: 100100000}
  10615. m_GameObject: {fileID: 100006}
  10616. m_Enabled: 1
  10617. m_CastShadows: 0
  10618. m_ReceiveShadows: 0
  10619. m_Materials:
  10620. - {fileID: 2100000, guid: 1d46a17a95a444c08830612bc1146d1d, type: 2}
  10621. m_SubsetIndices:
  10622. m_StaticBatchRoot: {fileID: 0}
  10623. m_UseLightProbes: 0
  10624. m_ReflectionProbeUsage: 0
  10625. m_ProbeAnchor: {fileID: 0}
  10626. m_ScaleInLightmap: 1
  10627. m_PreserveUVs: 0
  10628. m_IgnoreNormalsForChartDetection: 0
  10629. m_ImportantGI: 0
  10630. m_MinimumChartSize: 4
  10631. m_AutoUVMaxDistance: 0.5
  10632. m_AutoUVMaxAngle: 89
  10633. m_LightmapParameters: {fileID: 0}
  10634. m_SortingLayerID: 0
  10635. m_SortingOrder: 0
  10636. m_RenderMode: 0
  10637. m_SortMode: 0
  10638. m_MinParticleSize: 0
  10639. m_MaxParticleSize: 0.5
  10640. m_CameraVelocityScale: 0
  10641. m_VelocityScale: 0
  10642. m_LengthScale: 2
  10643. m_SortingFudge: 0
  10644. m_NormalDirection: 1
  10645. m_RenderAlignment: 0
  10646. m_Pivot: {x: 0, y: 0, z: 0}
  10647. m_Mesh: {fileID: 0}
  10648. m_Mesh1: {fileID: 0}
  10649. m_Mesh2: {fileID: 0}
  10650. m_Mesh3: {fileID: 0}
  10651. --- !u!199 &19900008
  10652. ParticleSystemRenderer:
  10653. m_ObjectHideFlags: 1
  10654. m_PrefabParentObject: {fileID: 0}
  10655. m_PrefabInternal: {fileID: 100100000}
  10656. m_GameObject: {fileID: 100000}
  10657. m_Enabled: 1
  10658. m_CastShadows: 0
  10659. m_ReceiveShadows: 0
  10660. m_Materials:
  10661. - {fileID: 2100000, guid: 97b1f8b25cca2bc458cb9d6127c8d186, type: 2}
  10662. m_SubsetIndices:
  10663. m_StaticBatchRoot: {fileID: 0}
  10664. m_UseLightProbes: 0
  10665. m_ReflectionProbeUsage: 0
  10666. m_ProbeAnchor: {fileID: 0}
  10667. m_ScaleInLightmap: 1
  10668. m_PreserveUVs: 0
  10669. m_IgnoreNormalsForChartDetection: 0
  10670. m_ImportantGI: 0
  10671. m_MinimumChartSize: 4
  10672. m_AutoUVMaxDistance: 0.5
  10673. m_AutoUVMaxAngle: 89
  10674. m_LightmapParameters: {fileID: 0}
  10675. m_SortingLayerID: 0
  10676. m_SortingOrder: 0
  10677. m_RenderMode: 1
  10678. m_SortMode: 1
  10679. m_MinParticleSize: 0
  10680. m_MaxParticleSize: 0.5
  10681. m_CameraVelocityScale: 0
  10682. m_VelocityScale: 0.06
  10683. m_LengthScale: 2
  10684. m_SortingFudge: 0
  10685. m_NormalDirection: 1
  10686. m_RenderAlignment: 0
  10687. m_Pivot: {x: 0, y: 0, z: 0}
  10688. m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0}
  10689. m_Mesh1: {fileID: 0}
  10690. m_Mesh2: {fileID: 0}
  10691. m_Mesh3: {fileID: 0}
  10692. --- !u!199 &19900010
  10693. ParticleSystemRenderer:
  10694. m_ObjectHideFlags: 1
  10695. m_PrefabParentObject: {fileID: 0}
  10696. m_PrefabInternal: {fileID: 100100000}
  10697. m_GameObject: {fileID: 100008}
  10698. m_Enabled: 1
  10699. m_CastShadows: 0
  10700. m_ReceiveShadows: 0
  10701. m_Materials:
  10702. - {fileID: 2100000, guid: 1cfe02ffd0b74854ea5bcd1a3c63ac3c, type: 2}
  10703. m_SubsetIndices:
  10704. m_StaticBatchRoot: {fileID: 0}
  10705. m_UseLightProbes: 0
  10706. m_ReflectionProbeUsage: 0
  10707. m_ProbeAnchor: {fileID: 0}
  10708. m_ScaleInLightmap: 1
  10709. m_PreserveUVs: 0
  10710. m_IgnoreNormalsForChartDetection: 0
  10711. m_ImportantGI: 0
  10712. m_MinimumChartSize: 4
  10713. m_AutoUVMaxDistance: 0.5
  10714. m_AutoUVMaxAngle: 89
  10715. m_LightmapParameters: {fileID: 0}
  10716. m_SortingLayerID: 0
  10717. m_SortingOrder: 0
  10718. m_RenderMode: 0
  10719. m_SortMode: 0
  10720. m_MinParticleSize: 0
  10721. m_MaxParticleSize: 10
  10722. m_CameraVelocityScale: 0
  10723. m_VelocityScale: 0
  10724. m_LengthScale: 1
  10725. m_SortingFudge: 0
  10726. m_NormalDirection: 1
  10727. m_RenderAlignment: 0
  10728. m_Pivot: {x: 0, y: 0, z: 0}
  10729. m_Mesh: {fileID: 10207, guid: 0000000000000000e000000000000000, type: 0}
  10730. m_Mesh1: {fileID: 0}
  10731. m_Mesh2: {fileID: 0}
  10732. m_Mesh3: {fileID: 0}
  10733. --- !u!199 &19900012
  10734. ParticleSystemRenderer:
  10735. m_ObjectHideFlags: 1
  10736. m_PrefabParentObject: {fileID: 0}
  10737. m_PrefabInternal: {fileID: 100100000}
  10738. m_GameObject: {fileID: 100010}
  10739. m_Enabled: 1
  10740. m_CastShadows: 1
  10741. m_ReceiveShadows: 1
  10742. m_Materials:
  10743. - {fileID: 2100000, guid: 0f995b3145e0e7247a42da6cef1dbf23, type: 2}
  10744. m_SubsetIndices:
  10745. m_StaticBatchRoot: {fileID: 0}
  10746. m_UseLightProbes: 0
  10747. m_ReflectionProbeUsage: 0
  10748. m_ProbeAnchor: {fileID: 0}
  10749. m_ScaleInLightmap: 1
  10750. m_PreserveUVs: 0
  10751. m_IgnoreNormalsForChartDetection: 0
  10752. m_ImportantGI: 0
  10753. m_MinimumChartSize: 4
  10754. m_AutoUVMaxDistance: 0.5
  10755. m_AutoUVMaxAngle: 89
  10756. m_LightmapParameters: {fileID: 0}
  10757. m_SortingLayerID: 0
  10758. m_SortingOrder: 0
  10759. m_RenderMode: 0
  10760. m_SortMode: 1
  10761. m_MinParticleSize: 0
  10762. m_MaxParticleSize: 0.5
  10763. m_CameraVelocityScale: 0
  10764. m_VelocityScale: 0
  10765. m_LengthScale: 2
  10766. m_SortingFudge: 0
  10767. m_NormalDirection: 1
  10768. m_RenderAlignment: 0
  10769. m_Pivot: {x: 0, y: 0, z: 0}
  10770. m_Mesh: {fileID: 0}
  10771. m_Mesh1: {fileID: 0}
  10772. m_Mesh2: {fileID: 0}
  10773. m_Mesh3: {fileID: 0}
  10774. --- !u!1001 &100100000
  10775. Prefab:
  10776. m_ObjectHideFlags: 1
  10777. serializedVersion: 2
  10778. m_Modification:
  10779. m_TransformParent: {fileID: 0}
  10780. m_Modifications: []
  10781. m_RemovedComponents: []
  10782. m_ParentPrefab: {fileID: 0}
  10783. m_RootGameObject: {fileID: 100008}
  10784. m_IsPrefabParent: 1