FX_Gunshot_Shotgun_01.prefab 152 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786
  1. %YAML 1.1
  2. %TAG !u! tag:unity3d.com,2011:
  3. --- !u!1001 &100100000
  4. Prefab:
  5. m_ObjectHideFlags: 1
  6. serializedVersion: 2
  7. m_Modification:
  8. m_TransformParent: {fileID: 0}
  9. m_Modifications: []
  10. m_RemovedComponents: []
  11. m_ParentPrefab: {fileID: 0}
  12. m_RootGameObject: {fileID: 1792092052645256}
  13. m_IsPrefabParent: 1
  14. --- !u!1 &1199387749997026
  15. GameObject:
  16. m_ObjectHideFlags: 0
  17. m_PrefabParentObject: {fileID: 0}
  18. m_PrefabInternal: {fileID: 100100000}
  19. serializedVersion: 5
  20. m_Component:
  21. - component: {fileID: 4879099127165158}
  22. - component: {fileID: 198994897263029524}
  23. - component: {fileID: 199066132636078472}
  24. m_Layer: 0
  25. m_Name: FX_Gunshot_Shotgun_Flash_01
  26. m_TagString: Untagged
  27. m_Icon: {fileID: 0}
  28. m_NavMeshLayer: 0
  29. m_StaticEditorFlags: 0
  30. m_IsActive: 1
  31. --- !u!1 &1792092052645256
  32. GameObject:
  33. m_ObjectHideFlags: 0
  34. m_PrefabParentObject: {fileID: 0}
  35. m_PrefabInternal: {fileID: 100100000}
  36. serializedVersion: 5
  37. m_Component:
  38. - component: {fileID: 4573121468440114}
  39. - component: {fileID: 198586439706424864}
  40. - component: {fileID: 199115488141885032}
  41. m_Layer: 0
  42. m_Name: FX_Gunshot_Shotgun_01
  43. m_TagString: Untagged
  44. m_Icon: {fileID: 0}
  45. m_NavMeshLayer: 0
  46. m_StaticEditorFlags: 0
  47. m_IsActive: 1
  48. --- !u!1 &1880413776039800
  49. GameObject:
  50. m_ObjectHideFlags: 1
  51. m_PrefabParentObject: {fileID: 0}
  52. m_PrefabInternal: {fileID: 100100000}
  53. serializedVersion: 5
  54. m_Component:
  55. - component: {fileID: 4063536017684390}
  56. - component: {fileID: 108192328974972184}
  57. m_Layer: 0
  58. m_Name: FX_Gunshot_Light
  59. m_TagString: Untagged
  60. m_Icon: {fileID: 0}
  61. m_NavMeshLayer: 0
  62. m_StaticEditorFlags: 0
  63. m_IsActive: 0
  64. --- !u!4 &4063536017684390
  65. Transform:
  66. m_ObjectHideFlags: 1
  67. m_PrefabParentObject: {fileID: 0}
  68. m_PrefabInternal: {fileID: 100100000}
  69. m_GameObject: {fileID: 1880413776039800}
  70. m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
  71. m_LocalPosition: {x: 0, y: 0, z: 0}
  72. m_LocalScale: {x: 1, y: 1, z: 1}
  73. m_Children: []
  74. m_Father: {fileID: 4879099127165158}
  75. m_RootOrder: 0
  76. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  77. --- !u!4 &4573121468440114
  78. Transform:
  79. m_ObjectHideFlags: 1
  80. m_PrefabParentObject: {fileID: 0}
  81. m_PrefabInternal: {fileID: 100100000}
  82. m_GameObject: {fileID: 1792092052645256}
  83. m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
  84. m_LocalPosition: {x: 0, y: 0, z: 0}
  85. m_LocalScale: {x: 1, y: 1, z: 1}
  86. m_Children:
  87. - {fileID: 4879099127165158}
  88. m_Father: {fileID: 0}
  89. m_RootOrder: 0
  90. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  91. --- !u!4 &4879099127165158
  92. Transform:
  93. m_ObjectHideFlags: 1
  94. m_PrefabParentObject: {fileID: 0}
  95. m_PrefabInternal: {fileID: 100100000}
  96. m_GameObject: {fileID: 1199387749997026}
  97. m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
  98. m_LocalPosition: {x: 0, y: 0, z: 0}
  99. m_LocalScale: {x: 1, y: 1, z: 1}
  100. m_Children:
  101. - {fileID: 4063536017684390}
  102. m_Father: {fileID: 4573121468440114}
  103. m_RootOrder: 0
  104. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  105. --- !u!108 &108192328974972184
  106. Light:
  107. m_ObjectHideFlags: 1
  108. m_PrefabParentObject: {fileID: 0}
  109. m_PrefabInternal: {fileID: 100100000}
  110. m_GameObject: {fileID: 1880413776039800}
  111. m_Enabled: 1
  112. serializedVersion: 8
  113. m_Type: 2
  114. m_Color: {r: 1, g: 1, b: 1, a: 1}
  115. m_Intensity: 3
  116. m_Range: 5
  117. m_SpotAngle: 30
  118. m_CookieSize: 10
  119. m_Shadows:
  120. m_Type: 0
  121. m_Resolution: -1
  122. m_CustomResolution: -1
  123. m_Strength: 1
  124. m_Bias: 0.05
  125. m_NormalBias: 0.4
  126. m_NearPlane: 0.2
  127. m_Cookie: {fileID: 0}
  128. m_DrawHalo: 0
  129. m_Flare: {fileID: 0}
  130. m_RenderMode: 0
  131. m_CullingMask:
  132. serializedVersion: 2
  133. m_Bits: 4294967295
  134. m_Lightmapping: 4
  135. m_AreaSize: {x: 1, y: 1}
  136. m_BounceIntensity: 1
  137. m_ColorTemperature: 6570
  138. m_UseColorTemperature: 0
  139. m_ShadowRadius: 0
  140. m_ShadowAngle: 0
  141. --- !u!198 &198586439706424864
  142. ParticleSystem:
  143. m_ObjectHideFlags: 1
  144. m_PrefabParentObject: {fileID: 0}
  145. m_PrefabInternal: {fileID: 100100000}
  146. m_GameObject: {fileID: 1792092052645256}
  147. serializedVersion: 5
  148. lengthInSec: 2
  149. simulationSpeed: 1
  150. stopAction: 0
  151. looping: 0
  152. prewarm: 0
  153. playOnAwake: 1
  154. useUnscaledTime: 0
  155. autoRandomSeed: 1
  156. useRigidbodyForVelocity: 1
  157. startDelay:
  158. serializedVersion: 2
  159. minMaxState: 0
  160. scalar: 0
  161. minScalar: 0
  162. maxCurve:
  163. serializedVersion: 2
  164. m_Curve:
  165. - serializedVersion: 2
  166. time: 0
  167. value: 1
  168. inSlope: 0
  169. outSlope: 0
  170. tangentMode: 0
  171. - serializedVersion: 2
  172. time: 1
  173. value: 1
  174. inSlope: 0
  175. outSlope: 0
  176. tangentMode: 0
  177. m_PreInfinity: 2
  178. m_PostInfinity: 2
  179. m_RotationOrder: 4
  180. minCurve:
  181. serializedVersion: 2
  182. m_Curve:
  183. - serializedVersion: 2
  184. time: 0
  185. value: 0
  186. inSlope: 0
  187. outSlope: 0
  188. tangentMode: 0
  189. - serializedVersion: 2
  190. time: 1
  191. value: 0
  192. inSlope: 0
  193. outSlope: 0
  194. tangentMode: 0
  195. m_PreInfinity: 2
  196. m_PostInfinity: 2
  197. m_RotationOrder: 4
  198. moveWithTransform: 1
  199. moveWithCustomTransform: {fileID: 0}
  200. scalingMode: 2
  201. randomSeed: -2028035003
  202. InitialModule:
  203. serializedVersion: 3
  204. enabled: 1
  205. startLifetime:
  206. serializedVersion: 2
  207. minMaxState: 3
  208. scalar: 3
  209. minScalar: 0.5
  210. maxCurve:
  211. serializedVersion: 2
  212. m_Curve:
  213. - serializedVersion: 2
  214. time: 0
  215. value: 1
  216. inSlope: 0
  217. outSlope: 0
  218. tangentMode: 0
  219. m_PreInfinity: 2
  220. m_PostInfinity: 2
  221. m_RotationOrder: 4
  222. minCurve:
  223. serializedVersion: 2
  224. m_Curve:
  225. - serializedVersion: 2
  226. time: 0
  227. value: 0.16666667
  228. inSlope: 0
  229. outSlope: 0
  230. tangentMode: 0
  231. m_PreInfinity: 2
  232. m_PostInfinity: 2
  233. m_RotationOrder: 4
  234. startSpeed:
  235. serializedVersion: 2
  236. minMaxState: 3
  237. scalar: 30
  238. minScalar: 0
  239. maxCurve:
  240. serializedVersion: 2
  241. m_Curve:
  242. - serializedVersion: 2
  243. time: 0
  244. value: 1
  245. inSlope: 0
  246. outSlope: 0
  247. tangentMode: 0
  248. m_PreInfinity: 2
  249. m_PostInfinity: 2
  250. m_RotationOrder: 4
  251. minCurve:
  252. serializedVersion: 2
  253. m_Curve:
  254. - serializedVersion: 2
  255. time: 0
  256. value: 0.2
  257. inSlope: 0
  258. outSlope: 0
  259. tangentMode: 0
  260. m_PreInfinity: 2
  261. m_PostInfinity: 2
  262. m_RotationOrder: 4
  263. startColor:
  264. serializedVersion: 2
  265. minMaxState: 0
  266. minColor: {r: 1, g: 1, b: 1, a: 1}
  267. maxColor: {r: 1, g: 1, b: 1, a: 1}
  268. maxGradient:
  269. serializedVersion: 2
  270. key0: {r: 1, g: 1, b: 1, a: 1}
  271. key1: {r: 1, g: 1, b: 1, a: 1}
  272. key2: {r: 0, g: 0, b: 0, a: 0}
  273. key3: {r: 0, g: 0, b: 0, a: 0}
  274. key4: {r: 0, g: 0, b: 0, a: 0}
  275. key5: {r: 0, g: 0, b: 0, a: 0}
  276. key6: {r: 0, g: 0, b: 0, a: 0}
  277. key7: {r: 0, g: 0, b: 0, a: 0}
  278. ctime0: 0
  279. ctime1: 65535
  280. ctime2: 0
  281. ctime3: 0
  282. ctime4: 0
  283. ctime5: 0
  284. ctime6: 0
  285. ctime7: 0
  286. atime0: 0
  287. atime1: 65535
  288. atime2: 0
  289. atime3: 0
  290. atime4: 0
  291. atime5: 0
  292. atime6: 0
  293. atime7: 0
  294. m_Mode: 0
  295. m_NumColorKeys: 2
  296. m_NumAlphaKeys: 2
  297. minGradient:
  298. serializedVersion: 2
  299. key0: {r: 1, g: 1, b: 1, a: 1}
  300. key1: {r: 1, g: 1, b: 1, a: 1}
  301. key2: {r: 0, g: 0, b: 0, a: 0}
  302. key3: {r: 0, g: 0, b: 0, a: 0}
  303. key4: {r: 0, g: 0, b: 0, a: 0}
  304. key5: {r: 0, g: 0, b: 0, a: 0}
  305. key6: {r: 0, g: 0, b: 0, a: 0}
  306. key7: {r: 0, g: 0, b: 0, a: 0}
  307. ctime0: 0
  308. ctime1: 65535
  309. ctime2: 0
  310. ctime3: 0
  311. ctime4: 0
  312. ctime5: 0
  313. ctime6: 0
  314. ctime7: 0
  315. atime0: 0
  316. atime1: 65535
  317. atime2: 0
  318. atime3: 0
  319. atime4: 0
  320. atime5: 0
  321. atime6: 0
  322. atime7: 0
  323. m_Mode: 0
  324. m_NumColorKeys: 2
  325. m_NumAlphaKeys: 2
  326. startSize:
  327. serializedVersion: 2
  328. minMaxState: 3
  329. scalar: 4
  330. minScalar: 0.5
  331. maxCurve:
  332. serializedVersion: 2
  333. m_Curve:
  334. - serializedVersion: 2
  335. time: 0
  336. value: 1
  337. inSlope: 0
  338. outSlope: 0
  339. tangentMode: 0
  340. m_PreInfinity: 2
  341. m_PostInfinity: 2
  342. m_RotationOrder: 0
  343. minCurve:
  344. serializedVersion: 2
  345. m_Curve:
  346. - serializedVersion: 2
  347. time: 0
  348. value: 0.25
  349. inSlope: 0
  350. outSlope: 0
  351. tangentMode: 0
  352. m_PreInfinity: 2
  353. m_PostInfinity: 2
  354. m_RotationOrder: 0
  355. startSizeY:
  356. serializedVersion: 2
  357. minMaxState: 3
  358. scalar: 1
  359. minScalar: 0
  360. maxCurve:
  361. serializedVersion: 2
  362. m_Curve:
  363. - serializedVersion: 2
  364. time: 0
  365. value: 1
  366. inSlope: 0
  367. outSlope: 0
  368. tangentMode: 0
  369. m_PreInfinity: 2
  370. m_PostInfinity: 2
  371. m_RotationOrder: 0
  372. minCurve:
  373. serializedVersion: 2
  374. m_Curve:
  375. - serializedVersion: 2
  376. time: 0
  377. value: 0
  378. inSlope: 0
  379. outSlope: 0
  380. tangentMode: 0
  381. m_PreInfinity: 2
  382. m_PostInfinity: 2
  383. m_RotationOrder: 0
  384. startSizeZ:
  385. serializedVersion: 2
  386. minMaxState: 3
  387. scalar: 1
  388. minScalar: 0
  389. maxCurve:
  390. serializedVersion: 2
  391. m_Curve:
  392. - serializedVersion: 2
  393. time: 0
  394. value: 1
  395. inSlope: 0
  396. outSlope: 0
  397. tangentMode: 0
  398. m_PreInfinity: 2
  399. m_PostInfinity: 2
  400. m_RotationOrder: 0
  401. minCurve:
  402. serializedVersion: 2
  403. m_Curve:
  404. - serializedVersion: 2
  405. time: 0
  406. value: 0
  407. inSlope: 0
  408. outSlope: 0
  409. tangentMode: 0
  410. m_PreInfinity: 2
  411. m_PostInfinity: 2
  412. m_RotationOrder: 0
  413. startRotationX:
  414. serializedVersion: 2
  415. minMaxState: 0
  416. scalar: 0
  417. minScalar: 0
  418. maxCurve:
  419. serializedVersion: 2
  420. m_Curve:
  421. - serializedVersion: 2
  422. time: 0
  423. value: 1
  424. inSlope: 0
  425. outSlope: 0
  426. tangentMode: 0
  427. - serializedVersion: 2
  428. time: 1
  429. value: 1
  430. inSlope: 0
  431. outSlope: 0
  432. tangentMode: 0
  433. m_PreInfinity: 2
  434. m_PostInfinity: 2
  435. m_RotationOrder: 4
  436. minCurve:
  437. serializedVersion: 2
  438. m_Curve:
  439. - serializedVersion: 2
  440. time: 0
  441. value: 0
  442. inSlope: 0
  443. outSlope: 0
  444. tangentMode: 0
  445. - serializedVersion: 2
  446. time: 1
  447. value: 0
  448. inSlope: 0
  449. outSlope: 0
  450. tangentMode: 0
  451. m_PreInfinity: 2
  452. m_PostInfinity: 2
  453. m_RotationOrder: 4
  454. startRotationY:
  455. serializedVersion: 2
  456. minMaxState: 0
  457. scalar: 0
  458. minScalar: 0
  459. maxCurve:
  460. serializedVersion: 2
  461. m_Curve:
  462. - serializedVersion: 2
  463. time: 0
  464. value: 1
  465. inSlope: 0
  466. outSlope: 0
  467. tangentMode: 0
  468. - serializedVersion: 2
  469. time: 1
  470. value: 1
  471. inSlope: 0
  472. outSlope: 0
  473. tangentMode: 0
  474. m_PreInfinity: 2
  475. m_PostInfinity: 2
  476. m_RotationOrder: 4
  477. minCurve:
  478. serializedVersion: 2
  479. m_Curve:
  480. - serializedVersion: 2
  481. time: 0
  482. value: 0
  483. inSlope: 0
  484. outSlope: 0
  485. tangentMode: 0
  486. - serializedVersion: 2
  487. time: 1
  488. value: 0
  489. inSlope: 0
  490. outSlope: 0
  491. tangentMode: 0
  492. m_PreInfinity: 2
  493. m_PostInfinity: 2
  494. m_RotationOrder: 4
  495. startRotation:
  496. serializedVersion: 2
  497. minMaxState: 0
  498. scalar: 0
  499. minScalar: 0
  500. maxCurve:
  501. serializedVersion: 2
  502. m_Curve:
  503. - serializedVersion: 2
  504. time: 0
  505. value: 1
  506. inSlope: 0
  507. outSlope: 0
  508. tangentMode: 0
  509. - serializedVersion: 2
  510. time: 1
  511. value: 1
  512. inSlope: 0
  513. outSlope: 0
  514. tangentMode: 0
  515. m_PreInfinity: 2
  516. m_PostInfinity: 2
  517. m_RotationOrder: 4
  518. minCurve:
  519. serializedVersion: 2
  520. m_Curve:
  521. - serializedVersion: 2
  522. time: 0
  523. value: 0
  524. inSlope: 0
  525. outSlope: 0
  526. tangentMode: 0
  527. - serializedVersion: 2
  528. time: 1
  529. value: 0
  530. inSlope: 0
  531. outSlope: 0
  532. tangentMode: 0
  533. m_PreInfinity: 2
  534. m_PostInfinity: 2
  535. m_RotationOrder: 4
  536. randomizeRotationDirection: 0
  537. maxNumParticles: 50
  538. size3D: 0
  539. rotation3D: 0
  540. gravityModifier:
  541. serializedVersion: 2
  542. minMaxState: 3
  543. scalar: -0.05
  544. minScalar: 0
  545. maxCurve:
  546. serializedVersion: 2
  547. m_Curve:
  548. - serializedVersion: 2
  549. time: 0
  550. value: 1
  551. inSlope: 0
  552. outSlope: 0
  553. tangentMode: 0
  554. - serializedVersion: 2
  555. time: 1
  556. value: 1
  557. inSlope: 0
  558. outSlope: 0
  559. tangentMode: 0
  560. m_PreInfinity: 2
  561. m_PostInfinity: 2
  562. m_RotationOrder: 4
  563. minCurve:
  564. serializedVersion: 2
  565. m_Curve:
  566. - serializedVersion: 2
  567. time: 0
  568. value: 0
  569. inSlope: 0
  570. outSlope: 0
  571. tangentMode: 0
  572. - serializedVersion: 2
  573. time: 1
  574. value: 0
  575. inSlope: 0
  576. outSlope: 0
  577. tangentMode: 0
  578. m_PreInfinity: 2
  579. m_PostInfinity: 2
  580. m_RotationOrder: 4
  581. ShapeModule:
  582. serializedVersion: 5
  583. enabled: 1
  584. type: 0
  585. angle: 78.9
  586. length: 5
  587. boxThickness: {x: 0, y: 0, z: 0}
  588. radiusThickness: 1
  589. donutRadius: 0.2
  590. m_Position: {x: 0, y: 0, z: 0}
  591. m_Rotation: {x: 0, y: 0, z: 0}
  592. m_Scale: {x: 1, y: 1, z: 1}
  593. placementMode: 0
  594. m_Mesh: {fileID: 0}
  595. m_MeshRenderer: {fileID: 0}
  596. m_SkinnedMeshRenderer: {fileID: 0}
  597. m_MeshMaterialIndex: 0
  598. m_MeshNormalOffset: 0
  599. m_UseMeshMaterialIndex: 0
  600. m_UseMeshColors: 1
  601. alignToDirection: 0
  602. randomDirectionAmount: 0
  603. sphericalDirectionAmount: 0
  604. randomPositionAmount: 0
  605. radius:
  606. value: 0.01
  607. mode: 0
  608. spread: 0
  609. speed:
  610. serializedVersion: 2
  611. minMaxState: 0
  612. scalar: 1
  613. minScalar: 1
  614. maxCurve:
  615. serializedVersion: 2
  616. m_Curve:
  617. - serializedVersion: 2
  618. time: 0
  619. value: 1
  620. inSlope: 0
  621. outSlope: 0
  622. tangentMode: 0
  623. - serializedVersion: 2
  624. time: 1
  625. value: 1
  626. inSlope: 0
  627. outSlope: 0
  628. tangentMode: 0
  629. m_PreInfinity: 2
  630. m_PostInfinity: 2
  631. m_RotationOrder: 4
  632. minCurve:
  633. serializedVersion: 2
  634. m_Curve:
  635. - serializedVersion: 2
  636. time: 0
  637. value: 0
  638. inSlope: 0
  639. outSlope: 0
  640. tangentMode: 0
  641. - serializedVersion: 2
  642. time: 1
  643. value: 0
  644. inSlope: 0
  645. outSlope: 0
  646. tangentMode: 0
  647. m_PreInfinity: 2
  648. m_PostInfinity: 2
  649. m_RotationOrder: 4
  650. arc:
  651. value: 360
  652. mode: 0
  653. spread: 0
  654. speed:
  655. serializedVersion: 2
  656. minMaxState: 0
  657. scalar: 1
  658. minScalar: 1
  659. maxCurve:
  660. serializedVersion: 2
  661. m_Curve:
  662. - serializedVersion: 2
  663. time: 0
  664. value: 1
  665. inSlope: 0
  666. outSlope: 0
  667. tangentMode: 0
  668. - serializedVersion: 2
  669. time: 1
  670. value: 1
  671. inSlope: 0
  672. outSlope: 0
  673. tangentMode: 0
  674. m_PreInfinity: 2
  675. m_PostInfinity: 2
  676. m_RotationOrder: 4
  677. minCurve:
  678. serializedVersion: 2
  679. m_Curve:
  680. - serializedVersion: 2
  681. time: 0
  682. value: 0
  683. inSlope: 0
  684. outSlope: 0
  685. tangentMode: 0
  686. - serializedVersion: 2
  687. time: 1
  688. value: 0
  689. inSlope: 0
  690. outSlope: 0
  691. tangentMode: 0
  692. m_PreInfinity: 2
  693. m_PostInfinity: 2
  694. m_RotationOrder: 4
  695. EmissionModule:
  696. enabled: 1
  697. serializedVersion: 4
  698. rateOverTime:
  699. serializedVersion: 2
  700. minMaxState: 0
  701. scalar: 0
  702. minScalar: 10
  703. maxCurve:
  704. serializedVersion: 2
  705. m_Curve:
  706. - serializedVersion: 2
  707. time: 0
  708. value: 1
  709. inSlope: 0
  710. outSlope: 0
  711. tangentMode: 0
  712. - serializedVersion: 2
  713. time: 1
  714. value: 1
  715. inSlope: 0
  716. outSlope: 0
  717. tangentMode: 0
  718. m_PreInfinity: 2
  719. m_PostInfinity: 2
  720. m_RotationOrder: 4
  721. minCurve:
  722. serializedVersion: 2
  723. m_Curve:
  724. - serializedVersion: 2
  725. time: 0
  726. value: 0
  727. inSlope: 0
  728. outSlope: 0
  729. tangentMode: 0
  730. - serializedVersion: 2
  731. time: 1
  732. value: 0
  733. inSlope: 0
  734. outSlope: 0
  735. tangentMode: 0
  736. m_PreInfinity: 2
  737. m_PostInfinity: 2
  738. m_RotationOrder: 4
  739. rateOverDistance:
  740. serializedVersion: 2
  741. minMaxState: 0
  742. scalar: 0
  743. minScalar: 0
  744. maxCurve:
  745. serializedVersion: 2
  746. m_Curve:
  747. - serializedVersion: 2
  748. time: 0
  749. value: 1
  750. inSlope: 0
  751. outSlope: 0
  752. tangentMode: 0
  753. - serializedVersion: 2
  754. time: 1
  755. value: 1
  756. inSlope: 0
  757. outSlope: 0
  758. tangentMode: 0
  759. m_PreInfinity: 2
  760. m_PostInfinity: 2
  761. m_RotationOrder: 4
  762. minCurve:
  763. serializedVersion: 2
  764. m_Curve:
  765. - serializedVersion: 2
  766. time: 0
  767. value: 0
  768. inSlope: 0
  769. outSlope: 0
  770. tangentMode: 0
  771. - serializedVersion: 2
  772. time: 1
  773. value: 0
  774. inSlope: 0
  775. outSlope: 0
  776. tangentMode: 0
  777. m_PreInfinity: 2
  778. m_PostInfinity: 2
  779. m_RotationOrder: 4
  780. m_BurstCount: 1
  781. m_Bursts:
  782. - serializedVersion: 2
  783. time: 0
  784. countCurve:
  785. serializedVersion: 2
  786. minMaxState: 0
  787. scalar: 20
  788. minScalar: 20
  789. maxCurve:
  790. serializedVersion: 2
  791. m_Curve:
  792. - serializedVersion: 2
  793. time: 0
  794. value: 1
  795. inSlope: 0
  796. outSlope: 0
  797. tangentMode: 0
  798. - serializedVersion: 2
  799. time: 1
  800. value: 1
  801. inSlope: 0
  802. outSlope: 0
  803. tangentMode: 0
  804. m_PreInfinity: 2
  805. m_PostInfinity: 2
  806. m_RotationOrder: 4
  807. minCurve:
  808. serializedVersion: 2
  809. m_Curve:
  810. - serializedVersion: 2
  811. time: 0
  812. value: 1
  813. inSlope: 0
  814. outSlope: 0
  815. tangentMode: 0
  816. - serializedVersion: 2
  817. time: 1
  818. value: 1
  819. inSlope: 0
  820. outSlope: 0
  821. tangentMode: 0
  822. m_PreInfinity: 2
  823. m_PostInfinity: 2
  824. m_RotationOrder: 4
  825. cycleCount: 1
  826. repeatInterval: 0.01
  827. SizeModule:
  828. enabled: 1
  829. curve:
  830. serializedVersion: 2
  831. minMaxState: 1
  832. scalar: 1
  833. minScalar: 1
  834. maxCurve:
  835. serializedVersion: 2
  836. m_Curve:
  837. - serializedVersion: 2
  838. time: 0
  839. value: 0
  840. inSlope: 0
  841. outSlope: 0
  842. tangentMode: 0
  843. - serializedVersion: 2
  844. time: 0.060041443
  845. value: 0.40540546
  846. inSlope: 0
  847. outSlope: 0
  848. tangentMode: 0
  849. - serializedVersion: 2
  850. time: 0.51138717
  851. value: 1
  852. inSlope: 0
  853. outSlope: 0
  854. tangentMode: 0
  855. - serializedVersion: 2
  856. time: 1
  857. value: 1
  858. inSlope: 0
  859. outSlope: 0
  860. tangentMode: 0
  861. m_PreInfinity: 2
  862. m_PostInfinity: 2
  863. m_RotationOrder: 0
  864. minCurve:
  865. serializedVersion: 2
  866. m_Curve:
  867. - serializedVersion: 2
  868. time: 0
  869. value: 0
  870. inSlope: 0
  871. outSlope: 0
  872. tangentMode: 0
  873. - serializedVersion: 2
  874. time: 1
  875. value: 0
  876. inSlope: 0
  877. outSlope: 0
  878. tangentMode: 0
  879. m_PreInfinity: 2
  880. m_PostInfinity: 2
  881. m_RotationOrder: 4
  882. y:
  883. serializedVersion: 2
  884. minMaxState: 1
  885. scalar: 1
  886. minScalar: 1
  887. maxCurve:
  888. serializedVersion: 2
  889. m_Curve:
  890. - serializedVersion: 2
  891. time: 0
  892. value: 1
  893. inSlope: 0
  894. outSlope: 0
  895. tangentMode: 0
  896. - serializedVersion: 2
  897. time: 1
  898. value: 1
  899. inSlope: 0
  900. outSlope: 0
  901. tangentMode: 0
  902. m_PreInfinity: 2
  903. m_PostInfinity: 2
  904. m_RotationOrder: 4
  905. minCurve:
  906. serializedVersion: 2
  907. m_Curve:
  908. - serializedVersion: 2
  909. time: 0
  910. value: 0
  911. inSlope: 0
  912. outSlope: 0
  913. tangentMode: 0
  914. - serializedVersion: 2
  915. time: 1
  916. value: 0
  917. inSlope: 0
  918. outSlope: 0
  919. tangentMode: 0
  920. m_PreInfinity: 2
  921. m_PostInfinity: 2
  922. m_RotationOrder: 4
  923. z:
  924. serializedVersion: 2
  925. minMaxState: 1
  926. scalar: 1
  927. minScalar: 1
  928. maxCurve:
  929. serializedVersion: 2
  930. m_Curve:
  931. - serializedVersion: 2
  932. time: 0
  933. value: 1
  934. inSlope: 0
  935. outSlope: 0
  936. tangentMode: 0
  937. - serializedVersion: 2
  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. - serializedVersion: 2
  950. time: 0
  951. value: 0
  952. inSlope: 0
  953. outSlope: 0
  954. tangentMode: 0
  955. - serializedVersion: 2
  956. time: 1
  957. value: 0
  958. inSlope: 0
  959. outSlope: 0
  960. tangentMode: 0
  961. m_PreInfinity: 2
  962. m_PostInfinity: 2
  963. m_RotationOrder: 4
  964. separateAxes: 0
  965. RotationModule:
  966. enabled: 1
  967. x:
  968. serializedVersion: 2
  969. minMaxState: 3
  970. scalar: 0
  971. minScalar: 0
  972. maxCurve:
  973. serializedVersion: 2
  974. m_Curve:
  975. - serializedVersion: 2
  976. time: 0
  977. value: 0
  978. inSlope: 0
  979. outSlope: 0
  980. tangentMode: 0
  981. m_PreInfinity: 2
  982. m_PostInfinity: 2
  983. m_RotationOrder: 0
  984. minCurve:
  985. serializedVersion: 2
  986. m_Curve:
  987. - serializedVersion: 2
  988. time: 0
  989. value: 0
  990. inSlope: 0
  991. outSlope: 0
  992. tangentMode: 0
  993. m_PreInfinity: 2
  994. m_PostInfinity: 2
  995. m_RotationOrder: 0
  996. y:
  997. serializedVersion: 2
  998. minMaxState: 3
  999. scalar: 0
  1000. minScalar: 0
  1001. maxCurve:
  1002. serializedVersion: 2
  1003. m_Curve:
  1004. - serializedVersion: 2
  1005. time: 0
  1006. value: 0
  1007. inSlope: 0
  1008. outSlope: 0
  1009. tangentMode: 0
  1010. m_PreInfinity: 2
  1011. m_PostInfinity: 2
  1012. m_RotationOrder: 0
  1013. minCurve:
  1014. serializedVersion: 2
  1015. m_Curve:
  1016. - serializedVersion: 2
  1017. time: 0
  1018. value: 0
  1019. inSlope: 0
  1020. outSlope: 0
  1021. tangentMode: 0
  1022. m_PreInfinity: 2
  1023. m_PostInfinity: 2
  1024. m_RotationOrder: 0
  1025. curve:
  1026. serializedVersion: 2
  1027. minMaxState: 3
  1028. scalar: 1.7453293
  1029. minScalar: 0.87266463
  1030. maxCurve:
  1031. serializedVersion: 2
  1032. m_Curve:
  1033. - serializedVersion: 2
  1034. time: 0
  1035. value: 1
  1036. inSlope: 0
  1037. outSlope: 0
  1038. tangentMode: 0
  1039. m_PreInfinity: 2
  1040. m_PostInfinity: 2
  1041. m_RotationOrder: 4
  1042. minCurve:
  1043. serializedVersion: 2
  1044. m_Curve:
  1045. - serializedVersion: 2
  1046. time: 0
  1047. value: 0.5
  1048. inSlope: 0
  1049. outSlope: 0
  1050. tangentMode: 0
  1051. m_PreInfinity: 2
  1052. m_PostInfinity: 2
  1053. m_RotationOrder: 4
  1054. separateAxes: 0
  1055. ColorModule:
  1056. enabled: 1
  1057. gradient:
  1058. serializedVersion: 2
  1059. minMaxState: 1
  1060. minColor: {r: 1, g: 1, b: 1, a: 1}
  1061. maxColor: {r: 1, g: 1, b: 1, a: 1}
  1062. maxGradient:
  1063. serializedVersion: 2
  1064. key0: {r: 1, g: 1, b: 1, a: 0.24313726}
  1065. key1: {r: 1, g: 1, b: 1, a: 0}
  1066. key2: {r: 0, g: 0, b: 0, a: 0}
  1067. key3: {r: 0, g: 0, b: 0, a: 0}
  1068. key4: {r: 0, g: 0, b: 0, a: 0}
  1069. key5: {r: 0, g: 0, b: 0, a: 0}
  1070. key6: {r: 0, g: 0, b: 0, a: 0}
  1071. key7: {r: 0, g: 0, b: 0, a: 0}
  1072. ctime0: 0
  1073. ctime1: 65535
  1074. ctime2: 0
  1075. ctime3: 0
  1076. ctime4: 0
  1077. ctime5: 0
  1078. ctime6: 0
  1079. ctime7: 0
  1080. atime0: 0
  1081. atime1: 65535
  1082. atime2: 0
  1083. atime3: 0
  1084. atime4: 0
  1085. atime5: 0
  1086. atime6: 0
  1087. atime7: 0
  1088. m_Mode: 0
  1089. m_NumColorKeys: 2
  1090. m_NumAlphaKeys: 2
  1091. minGradient:
  1092. serializedVersion: 2
  1093. key0: {r: 1, g: 1, b: 1, a: 1}
  1094. key1: {r: 1, g: 1, b: 1, a: 1}
  1095. key2: {r: 0, g: 0, b: 0, a: 0}
  1096. key3: {r: 0, g: 0, b: 0, a: 0}
  1097. key4: {r: 0, g: 0, b: 0, a: 0}
  1098. key5: {r: 0, g: 0, b: 0, a: 0}
  1099. key6: {r: 0, g: 0, b: 0, a: 0}
  1100. key7: {r: 0, g: 0, b: 0, a: 0}
  1101. ctime0: 0
  1102. ctime1: 65535
  1103. ctime2: 0
  1104. ctime3: 0
  1105. ctime4: 0
  1106. ctime5: 0
  1107. ctime6: 0
  1108. ctime7: 0
  1109. atime0: 0
  1110. atime1: 65535
  1111. atime2: 0
  1112. atime3: 0
  1113. atime4: 0
  1114. atime5: 0
  1115. atime6: 0
  1116. atime7: 0
  1117. m_Mode: 0
  1118. m_NumColorKeys: 2
  1119. m_NumAlphaKeys: 2
  1120. UVModule:
  1121. enabled: 0
  1122. mode: 0
  1123. frameOverTime:
  1124. serializedVersion: 2
  1125. minMaxState: 1
  1126. scalar: 0.9999
  1127. minScalar: 0.9999
  1128. maxCurve:
  1129. serializedVersion: 2
  1130. m_Curve:
  1131. - serializedVersion: 2
  1132. time: 0
  1133. value: 0
  1134. inSlope: 0
  1135. outSlope: 1
  1136. tangentMode: 0
  1137. - serializedVersion: 2
  1138. time: 1
  1139. value: 1
  1140. inSlope: 1
  1141. outSlope: 0
  1142. tangentMode: 0
  1143. m_PreInfinity: 2
  1144. m_PostInfinity: 2
  1145. m_RotationOrder: 4
  1146. minCurve:
  1147. serializedVersion: 2
  1148. m_Curve:
  1149. - serializedVersion: 2
  1150. time: 0
  1151. value: 0
  1152. inSlope: 0
  1153. outSlope: 1
  1154. tangentMode: 0
  1155. - serializedVersion: 2
  1156. time: 1
  1157. value: 1
  1158. inSlope: 1
  1159. outSlope: 0
  1160. tangentMode: 0
  1161. m_PreInfinity: 2
  1162. m_PostInfinity: 2
  1163. m_RotationOrder: 4
  1164. startFrame:
  1165. serializedVersion: 2
  1166. minMaxState: 0
  1167. scalar: 0
  1168. minScalar: 0
  1169. maxCurve:
  1170. serializedVersion: 2
  1171. m_Curve:
  1172. - serializedVersion: 2
  1173. time: 0
  1174. value: 1
  1175. inSlope: 0
  1176. outSlope: 0
  1177. tangentMode: 0
  1178. - serializedVersion: 2
  1179. time: 1
  1180. value: 1
  1181. inSlope: 0
  1182. outSlope: 0
  1183. tangentMode: 0
  1184. m_PreInfinity: 2
  1185. m_PostInfinity: 2
  1186. m_RotationOrder: 4
  1187. minCurve:
  1188. serializedVersion: 2
  1189. m_Curve:
  1190. - serializedVersion: 2
  1191. time: 0
  1192. value: 0
  1193. inSlope: 0
  1194. outSlope: 0
  1195. tangentMode: 0
  1196. - serializedVersion: 2
  1197. time: 1
  1198. value: 0
  1199. inSlope: 0
  1200. outSlope: 0
  1201. tangentMode: 0
  1202. m_PreInfinity: 2
  1203. m_PostInfinity: 2
  1204. m_RotationOrder: 4
  1205. tilesX: 1
  1206. tilesY: 1
  1207. animationType: 0
  1208. rowIndex: 0
  1209. cycles: 1
  1210. uvChannelMask: -1
  1211. flipU: 0
  1212. flipV: 0
  1213. randomRow: 1
  1214. sprites:
  1215. - sprite: {fileID: 0}
  1216. VelocityModule:
  1217. enabled: 0
  1218. x:
  1219. serializedVersion: 2
  1220. minMaxState: 3
  1221. scalar: 1
  1222. minScalar: -1
  1223. maxCurve:
  1224. serializedVersion: 2
  1225. m_Curve:
  1226. - serializedVersion: 2
  1227. time: 0
  1228. value: 1
  1229. inSlope: 0
  1230. outSlope: 0
  1231. tangentMode: 0
  1232. m_PreInfinity: 2
  1233. m_PostInfinity: 2
  1234. m_RotationOrder: 4
  1235. minCurve:
  1236. serializedVersion: 2
  1237. m_Curve:
  1238. - serializedVersion: 2
  1239. time: 0
  1240. value: -1
  1241. inSlope: 0
  1242. outSlope: 0
  1243. tangentMode: 0
  1244. m_PreInfinity: 2
  1245. m_PostInfinity: 2
  1246. m_RotationOrder: 4
  1247. y:
  1248. serializedVersion: 2
  1249. minMaxState: 3
  1250. scalar: 1
  1251. minScalar: -1
  1252. maxCurve:
  1253. serializedVersion: 2
  1254. m_Curve:
  1255. - serializedVersion: 2
  1256. time: 0
  1257. value: 1
  1258. inSlope: 0
  1259. outSlope: 0
  1260. tangentMode: 0
  1261. m_PreInfinity: 2
  1262. m_PostInfinity: 2
  1263. m_RotationOrder: 4
  1264. minCurve:
  1265. serializedVersion: 2
  1266. m_Curve:
  1267. - serializedVersion: 2
  1268. time: 0
  1269. value: -1
  1270. inSlope: 0
  1271. outSlope: 0
  1272. tangentMode: 0
  1273. m_PreInfinity: 2
  1274. m_PostInfinity: 2
  1275. m_RotationOrder: 4
  1276. z:
  1277. serializedVersion: 2
  1278. minMaxState: 3
  1279. scalar: 1
  1280. minScalar: -1
  1281. maxCurve:
  1282. serializedVersion: 2
  1283. m_Curve:
  1284. - serializedVersion: 2
  1285. time: 0
  1286. value: 1
  1287. inSlope: 0
  1288. outSlope: 0
  1289. tangentMode: 0
  1290. m_PreInfinity: 2
  1291. m_PostInfinity: 2
  1292. m_RotationOrder: 4
  1293. minCurve:
  1294. serializedVersion: 2
  1295. m_Curve:
  1296. - serializedVersion: 2
  1297. time: 0
  1298. value: -1
  1299. inSlope: 0
  1300. outSlope: 0
  1301. tangentMode: 0
  1302. m_PreInfinity: 2
  1303. m_PostInfinity: 2
  1304. m_RotationOrder: 4
  1305. inWorldSpace: 1
  1306. InheritVelocityModule:
  1307. enabled: 1
  1308. m_Mode: 0
  1309. m_Curve:
  1310. serializedVersion: 2
  1311. minMaxState: 0
  1312. scalar: 2
  1313. minScalar: 0
  1314. maxCurve:
  1315. serializedVersion: 2
  1316. m_Curve:
  1317. - serializedVersion: 2
  1318. time: 0
  1319. value: 1
  1320. inSlope: 0
  1321. outSlope: 0
  1322. tangentMode: 0
  1323. - serializedVersion: 2
  1324. time: 1
  1325. value: 1
  1326. inSlope: 0
  1327. outSlope: 0
  1328. tangentMode: 0
  1329. m_PreInfinity: 2
  1330. m_PostInfinity: 2
  1331. m_RotationOrder: 4
  1332. minCurve:
  1333. serializedVersion: 2
  1334. m_Curve:
  1335. - serializedVersion: 2
  1336. time: 0
  1337. value: 0
  1338. inSlope: 0
  1339. outSlope: 0
  1340. tangentMode: 0
  1341. - serializedVersion: 2
  1342. time: 1
  1343. value: 0
  1344. inSlope: 0
  1345. outSlope: 0
  1346. tangentMode: 0
  1347. m_PreInfinity: 2
  1348. m_PostInfinity: 2
  1349. m_RotationOrder: 4
  1350. ForceModule:
  1351. enabled: 0
  1352. x:
  1353. serializedVersion: 2
  1354. minMaxState: 0
  1355. scalar: 0
  1356. minScalar: 0
  1357. maxCurve:
  1358. serializedVersion: 2
  1359. m_Curve:
  1360. - serializedVersion: 2
  1361. time: 0
  1362. value: 1
  1363. inSlope: 0
  1364. outSlope: 0
  1365. tangentMode: 0
  1366. - serializedVersion: 2
  1367. time: 1
  1368. value: 1
  1369. inSlope: 0
  1370. outSlope: 0
  1371. tangentMode: 0
  1372. m_PreInfinity: 2
  1373. m_PostInfinity: 2
  1374. m_RotationOrder: 4
  1375. minCurve:
  1376. serializedVersion: 2
  1377. m_Curve:
  1378. - serializedVersion: 2
  1379. time: 0
  1380. value: 0
  1381. inSlope: 0
  1382. outSlope: 0
  1383. tangentMode: 0
  1384. - serializedVersion: 2
  1385. time: 1
  1386. value: 0
  1387. inSlope: 0
  1388. outSlope: 0
  1389. tangentMode: 0
  1390. m_PreInfinity: 2
  1391. m_PostInfinity: 2
  1392. m_RotationOrder: 4
  1393. y:
  1394. serializedVersion: 2
  1395. minMaxState: 0
  1396. scalar: 0
  1397. minScalar: 0
  1398. maxCurve:
  1399. serializedVersion: 2
  1400. m_Curve:
  1401. - serializedVersion: 2
  1402. time: 0
  1403. value: 1
  1404. inSlope: 0
  1405. outSlope: 0
  1406. tangentMode: 0
  1407. - serializedVersion: 2
  1408. time: 1
  1409. value: 1
  1410. inSlope: 0
  1411. outSlope: 0
  1412. tangentMode: 0
  1413. m_PreInfinity: 2
  1414. m_PostInfinity: 2
  1415. m_RotationOrder: 4
  1416. minCurve:
  1417. serializedVersion: 2
  1418. m_Curve:
  1419. - serializedVersion: 2
  1420. time: 0
  1421. value: 0
  1422. inSlope: 0
  1423. outSlope: 0
  1424. tangentMode: 0
  1425. - serializedVersion: 2
  1426. time: 1
  1427. value: 0
  1428. inSlope: 0
  1429. outSlope: 0
  1430. tangentMode: 0
  1431. m_PreInfinity: 2
  1432. m_PostInfinity: 2
  1433. m_RotationOrder: 4
  1434. z:
  1435. serializedVersion: 2
  1436. minMaxState: 0
  1437. scalar: 0
  1438. minScalar: 0
  1439. maxCurve:
  1440. serializedVersion: 2
  1441. m_Curve:
  1442. - serializedVersion: 2
  1443. time: 0
  1444. value: 1
  1445. inSlope: 0
  1446. outSlope: 0
  1447. tangentMode: 0
  1448. - serializedVersion: 2
  1449. time: 1
  1450. value: 1
  1451. inSlope: 0
  1452. outSlope: 0
  1453. tangentMode: 0
  1454. m_PreInfinity: 2
  1455. m_PostInfinity: 2
  1456. m_RotationOrder: 4
  1457. minCurve:
  1458. serializedVersion: 2
  1459. m_Curve:
  1460. - serializedVersion: 2
  1461. time: 0
  1462. value: 0
  1463. inSlope: 0
  1464. outSlope: 0
  1465. tangentMode: 0
  1466. - serializedVersion: 2
  1467. time: 1
  1468. value: 0
  1469. inSlope: 0
  1470. outSlope: 0
  1471. tangentMode: 0
  1472. m_PreInfinity: 2
  1473. m_PostInfinity: 2
  1474. m_RotationOrder: 4
  1475. inWorldSpace: 0
  1476. randomizePerFrame: 0
  1477. ExternalForcesModule:
  1478. enabled: 0
  1479. multiplier: 1
  1480. ClampVelocityModule:
  1481. enabled: 1
  1482. x:
  1483. serializedVersion: 2
  1484. minMaxState: 3
  1485. scalar: 0.1
  1486. minScalar: 0
  1487. maxCurve:
  1488. serializedVersion: 2
  1489. m_Curve:
  1490. - serializedVersion: 2
  1491. time: 0
  1492. value: 1
  1493. inSlope: 0
  1494. outSlope: 0
  1495. tangentMode: 0
  1496. - serializedVersion: 2
  1497. time: 1
  1498. value: 1
  1499. inSlope: 0
  1500. outSlope: 0
  1501. tangentMode: 0
  1502. m_PreInfinity: 2
  1503. m_PostInfinity: 2
  1504. m_RotationOrder: 4
  1505. minCurve:
  1506. serializedVersion: 2
  1507. m_Curve:
  1508. - serializedVersion: 2
  1509. time: 0
  1510. value: 0
  1511. inSlope: 0
  1512. outSlope: 0
  1513. tangentMode: 0
  1514. - serializedVersion: 2
  1515. time: 1
  1516. value: 0
  1517. inSlope: 0
  1518. outSlope: 0
  1519. tangentMode: 0
  1520. m_PreInfinity: 2
  1521. m_PostInfinity: 2
  1522. m_RotationOrder: 4
  1523. y:
  1524. serializedVersion: 2
  1525. minMaxState: 3
  1526. scalar: 0
  1527. minScalar: 0
  1528. maxCurve:
  1529. serializedVersion: 2
  1530. m_Curve:
  1531. - serializedVersion: 2
  1532. time: 0
  1533. value: 1
  1534. inSlope: 0
  1535. outSlope: 0
  1536. tangentMode: 0
  1537. - serializedVersion: 2
  1538. time: 1
  1539. value: 1
  1540. inSlope: 0
  1541. outSlope: 0
  1542. tangentMode: 0
  1543. m_PreInfinity: 2
  1544. m_PostInfinity: 2
  1545. m_RotationOrder: 4
  1546. minCurve:
  1547. serializedVersion: 2
  1548. m_Curve:
  1549. - serializedVersion: 2
  1550. time: 0
  1551. value: 0
  1552. inSlope: 0
  1553. outSlope: 0
  1554. tangentMode: 0
  1555. - serializedVersion: 2
  1556. time: 1
  1557. value: 0
  1558. inSlope: 0
  1559. outSlope: 0
  1560. tangentMode: 0
  1561. m_PreInfinity: 2
  1562. m_PostInfinity: 2
  1563. m_RotationOrder: 4
  1564. z:
  1565. serializedVersion: 2
  1566. minMaxState: 3
  1567. scalar: 0.5
  1568. minScalar: 0
  1569. maxCurve:
  1570. serializedVersion: 2
  1571. m_Curve:
  1572. - serializedVersion: 2
  1573. time: 0
  1574. value: 1
  1575. inSlope: 0
  1576. outSlope: 0
  1577. tangentMode: 0
  1578. - serializedVersion: 2
  1579. time: 1
  1580. value: 1
  1581. inSlope: 0
  1582. outSlope: 0
  1583. tangentMode: 0
  1584. m_PreInfinity: 2
  1585. m_PostInfinity: 2
  1586. m_RotationOrder: 4
  1587. minCurve:
  1588. serializedVersion: 2
  1589. m_Curve:
  1590. - serializedVersion: 2
  1591. time: 0
  1592. value: 0
  1593. inSlope: 0
  1594. outSlope: 0
  1595. tangentMode: 0
  1596. - serializedVersion: 2
  1597. time: 1
  1598. value: 0
  1599. inSlope: 0
  1600. outSlope: 0
  1601. tangentMode: 0
  1602. m_PreInfinity: 2
  1603. m_PostInfinity: 2
  1604. m_RotationOrder: 4
  1605. magnitude:
  1606. serializedVersion: 2
  1607. minMaxState: 1
  1608. scalar: 0.1
  1609. minScalar: 0.4
  1610. maxCurve:
  1611. serializedVersion: 2
  1612. m_Curve:
  1613. - serializedVersion: 2
  1614. time: 0
  1615. value: 0.9520316
  1616. inSlope: 0
  1617. outSlope: 0
  1618. tangentMode: 0
  1619. - serializedVersion: 2
  1620. time: 1
  1621. value: 0
  1622. inSlope: 0
  1623. outSlope: 0
  1624. tangentMode: 0
  1625. m_PreInfinity: 2
  1626. m_PostInfinity: 2
  1627. m_RotationOrder: 0
  1628. minCurve:
  1629. serializedVersion: 2
  1630. m_Curve:
  1631. - serializedVersion: 2
  1632. time: 0
  1633. value: 1
  1634. inSlope: 0
  1635. outSlope: 0
  1636. tangentMode: 0
  1637. m_PreInfinity: 2
  1638. m_PostInfinity: 2
  1639. m_RotationOrder: 4
  1640. separateAxis: 1
  1641. inWorldSpace: 0
  1642. multiplyDragByParticleSize: 1
  1643. multiplyDragByParticleVelocity: 1
  1644. dampen: 0.81
  1645. drag:
  1646. serializedVersion: 2
  1647. minMaxState: 0
  1648. scalar: 0
  1649. minScalar: 0
  1650. maxCurve:
  1651. serializedVersion: 2
  1652. m_Curve:
  1653. - serializedVersion: 2
  1654. time: 0
  1655. value: 0
  1656. inSlope: 0
  1657. outSlope: 0
  1658. tangentMode: 0
  1659. - serializedVersion: 2
  1660. time: 1
  1661. value: 0
  1662. inSlope: 0
  1663. outSlope: 0
  1664. tangentMode: 0
  1665. m_PreInfinity: 2
  1666. m_PostInfinity: 2
  1667. m_RotationOrder: 4
  1668. minCurve:
  1669. serializedVersion: 2
  1670. m_Curve:
  1671. - serializedVersion: 2
  1672. time: 0
  1673. value: 0
  1674. inSlope: 0
  1675. outSlope: 0
  1676. tangentMode: 0
  1677. - serializedVersion: 2
  1678. time: 1
  1679. value: 0
  1680. inSlope: 0
  1681. outSlope: 0
  1682. tangentMode: 0
  1683. m_PreInfinity: 2
  1684. m_PostInfinity: 2
  1685. m_RotationOrder: 4
  1686. NoiseModule:
  1687. enabled: 0
  1688. strength:
  1689. serializedVersion: 2
  1690. minMaxState: 0
  1691. scalar: 1
  1692. minScalar: 1
  1693. maxCurve:
  1694. serializedVersion: 2
  1695. m_Curve:
  1696. - serializedVersion: 2
  1697. time: 0
  1698. value: 1
  1699. inSlope: 0
  1700. outSlope: 0
  1701. tangentMode: 0
  1702. - serializedVersion: 2
  1703. time: 1
  1704. value: 1
  1705. inSlope: 0
  1706. outSlope: 0
  1707. tangentMode: 0
  1708. m_PreInfinity: 2
  1709. m_PostInfinity: 2
  1710. m_RotationOrder: 4
  1711. minCurve:
  1712. serializedVersion: 2
  1713. m_Curve:
  1714. - serializedVersion: 2
  1715. time: 0
  1716. value: 0
  1717. inSlope: 0
  1718. outSlope: 0
  1719. tangentMode: 0
  1720. - serializedVersion: 2
  1721. time: 1
  1722. value: 0
  1723. inSlope: 0
  1724. outSlope: 0
  1725. tangentMode: 0
  1726. m_PreInfinity: 2
  1727. m_PostInfinity: 2
  1728. m_RotationOrder: 4
  1729. strengthY:
  1730. serializedVersion: 2
  1731. minMaxState: 0
  1732. scalar: 1
  1733. minScalar: 1
  1734. maxCurve:
  1735. serializedVersion: 2
  1736. m_Curve:
  1737. - serializedVersion: 2
  1738. time: 0
  1739. value: 1
  1740. inSlope: 0
  1741. outSlope: 0
  1742. tangentMode: 0
  1743. - serializedVersion: 2
  1744. time: 1
  1745. value: 1
  1746. inSlope: 0
  1747. outSlope: 0
  1748. tangentMode: 0
  1749. m_PreInfinity: 2
  1750. m_PostInfinity: 2
  1751. m_RotationOrder: 4
  1752. minCurve:
  1753. serializedVersion: 2
  1754. m_Curve:
  1755. - serializedVersion: 2
  1756. time: 0
  1757. value: 0
  1758. inSlope: 0
  1759. outSlope: 0
  1760. tangentMode: 0
  1761. - serializedVersion: 2
  1762. time: 1
  1763. value: 0
  1764. inSlope: 0
  1765. outSlope: 0
  1766. tangentMode: 0
  1767. m_PreInfinity: 2
  1768. m_PostInfinity: 2
  1769. m_RotationOrder: 4
  1770. strengthZ:
  1771. serializedVersion: 2
  1772. minMaxState: 0
  1773. scalar: 1
  1774. minScalar: 1
  1775. maxCurve:
  1776. serializedVersion: 2
  1777. m_Curve:
  1778. - serializedVersion: 2
  1779. time: 0
  1780. value: 1
  1781. inSlope: 0
  1782. outSlope: 0
  1783. tangentMode: 0
  1784. - serializedVersion: 2
  1785. time: 1
  1786. value: 1
  1787. inSlope: 0
  1788. outSlope: 0
  1789. tangentMode: 0
  1790. m_PreInfinity: 2
  1791. m_PostInfinity: 2
  1792. m_RotationOrder: 4
  1793. minCurve:
  1794. serializedVersion: 2
  1795. m_Curve:
  1796. - serializedVersion: 2
  1797. time: 0
  1798. value: 0
  1799. inSlope: 0
  1800. outSlope: 0
  1801. tangentMode: 0
  1802. - serializedVersion: 2
  1803. time: 1
  1804. value: 0
  1805. inSlope: 0
  1806. outSlope: 0
  1807. tangentMode: 0
  1808. m_PreInfinity: 2
  1809. m_PostInfinity: 2
  1810. m_RotationOrder: 4
  1811. separateAxes: 0
  1812. frequency: 0.5
  1813. damping: 1
  1814. octaves: 1
  1815. octaveMultiplier: 0.5
  1816. octaveScale: 2
  1817. quality: 2
  1818. scrollSpeed:
  1819. serializedVersion: 2
  1820. minMaxState: 0
  1821. scalar: 0
  1822. minScalar: 0
  1823. maxCurve:
  1824. serializedVersion: 2
  1825. m_Curve:
  1826. - serializedVersion: 2
  1827. time: 0
  1828. value: 1
  1829. inSlope: 0
  1830. outSlope: 0
  1831. tangentMode: 0
  1832. - serializedVersion: 2
  1833. time: 1
  1834. value: 1
  1835. inSlope: 0
  1836. outSlope: 0
  1837. tangentMode: 0
  1838. m_PreInfinity: 2
  1839. m_PostInfinity: 2
  1840. m_RotationOrder: 4
  1841. minCurve:
  1842. serializedVersion: 2
  1843. m_Curve:
  1844. - serializedVersion: 2
  1845. time: 0
  1846. value: 0
  1847. inSlope: 0
  1848. outSlope: 0
  1849. tangentMode: 0
  1850. - serializedVersion: 2
  1851. time: 1
  1852. value: 0
  1853. inSlope: 0
  1854. outSlope: 0
  1855. tangentMode: 0
  1856. m_PreInfinity: 2
  1857. m_PostInfinity: 2
  1858. m_RotationOrder: 4
  1859. remap:
  1860. serializedVersion: 2
  1861. minMaxState: 1
  1862. scalar: 1
  1863. minScalar: 1
  1864. maxCurve:
  1865. serializedVersion: 2
  1866. m_Curve:
  1867. - serializedVersion: 2
  1868. time: 0
  1869. value: -1
  1870. inSlope: 0
  1871. outSlope: 2
  1872. tangentMode: 0
  1873. - serializedVersion: 2
  1874. time: 1
  1875. value: 1
  1876. inSlope: 2
  1877. outSlope: 0
  1878. tangentMode: 0
  1879. m_PreInfinity: 2
  1880. m_PostInfinity: 2
  1881. m_RotationOrder: 4
  1882. minCurve:
  1883. serializedVersion: 2
  1884. m_Curve:
  1885. - serializedVersion: 2
  1886. time: 0
  1887. value: 0
  1888. inSlope: 0
  1889. outSlope: 0
  1890. tangentMode: 0
  1891. - serializedVersion: 2
  1892. time: 1
  1893. value: 0
  1894. inSlope: 0
  1895. outSlope: 0
  1896. tangentMode: 0
  1897. m_PreInfinity: 2
  1898. m_PostInfinity: 2
  1899. m_RotationOrder: 4
  1900. remapY:
  1901. serializedVersion: 2
  1902. minMaxState: 1
  1903. scalar: 1
  1904. minScalar: 1
  1905. maxCurve:
  1906. serializedVersion: 2
  1907. m_Curve:
  1908. - serializedVersion: 2
  1909. time: 0
  1910. value: -1
  1911. inSlope: 0
  1912. outSlope: 2
  1913. tangentMode: 0
  1914. - serializedVersion: 2
  1915. time: 1
  1916. value: 1
  1917. inSlope: 2
  1918. outSlope: 0
  1919. tangentMode: 0
  1920. m_PreInfinity: 2
  1921. m_PostInfinity: 2
  1922. m_RotationOrder: 4
  1923. minCurve:
  1924. serializedVersion: 2
  1925. m_Curve:
  1926. - serializedVersion: 2
  1927. time: 0
  1928. value: 0
  1929. inSlope: 0
  1930. outSlope: 0
  1931. tangentMode: 0
  1932. - serializedVersion: 2
  1933. time: 1
  1934. value: 0
  1935. inSlope: 0
  1936. outSlope: 0
  1937. tangentMode: 0
  1938. m_PreInfinity: 2
  1939. m_PostInfinity: 2
  1940. m_RotationOrder: 4
  1941. remapZ:
  1942. serializedVersion: 2
  1943. minMaxState: 1
  1944. scalar: 1
  1945. minScalar: 1
  1946. maxCurve:
  1947. serializedVersion: 2
  1948. m_Curve:
  1949. - serializedVersion: 2
  1950. time: 0
  1951. value: -1
  1952. inSlope: 0
  1953. outSlope: 2
  1954. tangentMode: 0
  1955. - serializedVersion: 2
  1956. time: 1
  1957. value: 1
  1958. inSlope: 2
  1959. outSlope: 0
  1960. tangentMode: 0
  1961. m_PreInfinity: 2
  1962. m_PostInfinity: 2
  1963. m_RotationOrder: 4
  1964. minCurve:
  1965. serializedVersion: 2
  1966. m_Curve:
  1967. - serializedVersion: 2
  1968. time: 0
  1969. value: 0
  1970. inSlope: 0
  1971. outSlope: 0
  1972. tangentMode: 0
  1973. - serializedVersion: 2
  1974. time: 1
  1975. value: 0
  1976. inSlope: 0
  1977. outSlope: 0
  1978. tangentMode: 0
  1979. m_PreInfinity: 2
  1980. m_PostInfinity: 2
  1981. m_RotationOrder: 4
  1982. remapEnabled: 0
  1983. positionAmount:
  1984. serializedVersion: 2
  1985. minMaxState: 0
  1986. scalar: 1
  1987. minScalar: 1
  1988. maxCurve:
  1989. serializedVersion: 2
  1990. m_Curve:
  1991. - serializedVersion: 2
  1992. time: 0
  1993. value: 1
  1994. inSlope: 0
  1995. outSlope: 0
  1996. tangentMode: 0
  1997. - serializedVersion: 2
  1998. time: 1
  1999. value: 1
  2000. inSlope: 0
  2001. outSlope: 0
  2002. tangentMode: 0
  2003. m_PreInfinity: 2
  2004. m_PostInfinity: 2
  2005. m_RotationOrder: 4
  2006. minCurve:
  2007. serializedVersion: 2
  2008. m_Curve:
  2009. - serializedVersion: 2
  2010. time: 0
  2011. value: 1
  2012. inSlope: 0
  2013. outSlope: 0
  2014. tangentMode: 0
  2015. - serializedVersion: 2
  2016. time: 1
  2017. value: 1
  2018. inSlope: 0
  2019. outSlope: 0
  2020. tangentMode: 0
  2021. m_PreInfinity: 2
  2022. m_PostInfinity: 2
  2023. m_RotationOrder: 4
  2024. rotationAmount:
  2025. serializedVersion: 2
  2026. minMaxState: 0
  2027. scalar: 0
  2028. minScalar: 0
  2029. maxCurve:
  2030. serializedVersion: 2
  2031. m_Curve:
  2032. - serializedVersion: 2
  2033. time: 0
  2034. value: 0
  2035. inSlope: 0
  2036. outSlope: 0
  2037. tangentMode: 0
  2038. - serializedVersion: 2
  2039. time: 1
  2040. value: 0
  2041. inSlope: 0
  2042. outSlope: 0
  2043. tangentMode: 0
  2044. m_PreInfinity: 2
  2045. m_PostInfinity: 2
  2046. m_RotationOrder: 4
  2047. minCurve:
  2048. serializedVersion: 2
  2049. m_Curve:
  2050. - serializedVersion: 2
  2051. time: 0
  2052. value: 0
  2053. inSlope: 0
  2054. outSlope: 0
  2055. tangentMode: 0
  2056. - serializedVersion: 2
  2057. time: 1
  2058. value: 0
  2059. inSlope: 0
  2060. outSlope: 0
  2061. tangentMode: 0
  2062. m_PreInfinity: 2
  2063. m_PostInfinity: 2
  2064. m_RotationOrder: 4
  2065. sizeAmount:
  2066. serializedVersion: 2
  2067. minMaxState: 0
  2068. scalar: 0
  2069. minScalar: 0
  2070. maxCurve:
  2071. serializedVersion: 2
  2072. m_Curve:
  2073. - serializedVersion: 2
  2074. time: 0
  2075. value: 0
  2076. inSlope: 0
  2077. outSlope: 0
  2078. tangentMode: 0
  2079. - serializedVersion: 2
  2080. time: 1
  2081. value: 0
  2082. inSlope: 0
  2083. outSlope: 0
  2084. tangentMode: 0
  2085. m_PreInfinity: 2
  2086. m_PostInfinity: 2
  2087. m_RotationOrder: 4
  2088. minCurve:
  2089. serializedVersion: 2
  2090. m_Curve:
  2091. - serializedVersion: 2
  2092. time: 0
  2093. value: 0
  2094. inSlope: 0
  2095. outSlope: 0
  2096. tangentMode: 0
  2097. - serializedVersion: 2
  2098. time: 1
  2099. value: 0
  2100. inSlope: 0
  2101. outSlope: 0
  2102. tangentMode: 0
  2103. m_PreInfinity: 2
  2104. m_PostInfinity: 2
  2105. m_RotationOrder: 4
  2106. SizeBySpeedModule:
  2107. enabled: 0
  2108. curve:
  2109. serializedVersion: 2
  2110. minMaxState: 1
  2111. scalar: 1
  2112. minScalar: 1
  2113. maxCurve:
  2114. serializedVersion: 2
  2115. m_Curve:
  2116. - serializedVersion: 2
  2117. time: 0
  2118. value: 1
  2119. inSlope: 0
  2120. outSlope: 0
  2121. tangentMode: 0
  2122. - serializedVersion: 2
  2123. time: 1
  2124. value: 1
  2125. inSlope: 0
  2126. outSlope: 0
  2127. tangentMode: 0
  2128. m_PreInfinity: 2
  2129. m_PostInfinity: 2
  2130. m_RotationOrder: 4
  2131. minCurve:
  2132. serializedVersion: 2
  2133. m_Curve:
  2134. - serializedVersion: 2
  2135. time: 0
  2136. value: 0
  2137. inSlope: 0
  2138. outSlope: 0
  2139. tangentMode: 0
  2140. - serializedVersion: 2
  2141. time: 1
  2142. value: 0
  2143. inSlope: 0
  2144. outSlope: 0
  2145. tangentMode: 0
  2146. m_PreInfinity: 2
  2147. m_PostInfinity: 2
  2148. m_RotationOrder: 4
  2149. y:
  2150. serializedVersion: 2
  2151. minMaxState: 1
  2152. scalar: 1
  2153. minScalar: 1
  2154. maxCurve:
  2155. serializedVersion: 2
  2156. m_Curve:
  2157. - serializedVersion: 2
  2158. time: 0
  2159. value: 1
  2160. inSlope: 0
  2161. outSlope: 0
  2162. tangentMode: 0
  2163. - serializedVersion: 2
  2164. time: 1
  2165. value: 1
  2166. inSlope: 0
  2167. outSlope: 0
  2168. tangentMode: 0
  2169. m_PreInfinity: 2
  2170. m_PostInfinity: 2
  2171. m_RotationOrder: 4
  2172. minCurve:
  2173. serializedVersion: 2
  2174. m_Curve:
  2175. - serializedVersion: 2
  2176. time: 0
  2177. value: 0
  2178. inSlope: 0
  2179. outSlope: 0
  2180. tangentMode: 0
  2181. - serializedVersion: 2
  2182. time: 1
  2183. value: 0
  2184. inSlope: 0
  2185. outSlope: 0
  2186. tangentMode: 0
  2187. m_PreInfinity: 2
  2188. m_PostInfinity: 2
  2189. m_RotationOrder: 4
  2190. z:
  2191. serializedVersion: 2
  2192. minMaxState: 1
  2193. scalar: 1
  2194. minScalar: 1
  2195. maxCurve:
  2196. serializedVersion: 2
  2197. m_Curve:
  2198. - serializedVersion: 2
  2199. time: 0
  2200. value: 1
  2201. inSlope: 0
  2202. outSlope: 0
  2203. tangentMode: 0
  2204. - serializedVersion: 2
  2205. time: 1
  2206. value: 1
  2207. inSlope: 0
  2208. outSlope: 0
  2209. tangentMode: 0
  2210. m_PreInfinity: 2
  2211. m_PostInfinity: 2
  2212. m_RotationOrder: 4
  2213. minCurve:
  2214. serializedVersion: 2
  2215. m_Curve:
  2216. - serializedVersion: 2
  2217. time: 0
  2218. value: 0
  2219. inSlope: 0
  2220. outSlope: 0
  2221. tangentMode: 0
  2222. - serializedVersion: 2
  2223. time: 1
  2224. value: 0
  2225. inSlope: 0
  2226. outSlope: 0
  2227. tangentMode: 0
  2228. m_PreInfinity: 2
  2229. m_PostInfinity: 2
  2230. m_RotationOrder: 4
  2231. range: {x: 0, y: 1}
  2232. separateAxes: 0
  2233. RotationBySpeedModule:
  2234. enabled: 0
  2235. x:
  2236. serializedVersion: 2
  2237. minMaxState: 0
  2238. scalar: 0
  2239. minScalar: 0
  2240. maxCurve:
  2241. serializedVersion: 2
  2242. m_Curve:
  2243. - serializedVersion: 2
  2244. time: 0
  2245. value: 1
  2246. inSlope: 0
  2247. outSlope: 0
  2248. tangentMode: 0
  2249. - serializedVersion: 2
  2250. time: 1
  2251. value: 1
  2252. inSlope: 0
  2253. outSlope: 0
  2254. tangentMode: 0
  2255. m_PreInfinity: 2
  2256. m_PostInfinity: 2
  2257. m_RotationOrder: 4
  2258. minCurve:
  2259. serializedVersion: 2
  2260. m_Curve:
  2261. - serializedVersion: 2
  2262. time: 0
  2263. value: 0
  2264. inSlope: 0
  2265. outSlope: 0
  2266. tangentMode: 0
  2267. - serializedVersion: 2
  2268. time: 1
  2269. value: 0
  2270. inSlope: 0
  2271. outSlope: 0
  2272. tangentMode: 0
  2273. m_PreInfinity: 2
  2274. m_PostInfinity: 2
  2275. m_RotationOrder: 4
  2276. y:
  2277. serializedVersion: 2
  2278. minMaxState: 0
  2279. scalar: 0
  2280. minScalar: 0
  2281. maxCurve:
  2282. serializedVersion: 2
  2283. m_Curve:
  2284. - serializedVersion: 2
  2285. time: 0
  2286. value: 1
  2287. inSlope: 0
  2288. outSlope: 0
  2289. tangentMode: 0
  2290. - serializedVersion: 2
  2291. time: 1
  2292. value: 1
  2293. inSlope: 0
  2294. outSlope: 0
  2295. tangentMode: 0
  2296. m_PreInfinity: 2
  2297. m_PostInfinity: 2
  2298. m_RotationOrder: 4
  2299. minCurve:
  2300. serializedVersion: 2
  2301. m_Curve:
  2302. - serializedVersion: 2
  2303. time: 0
  2304. value: 0
  2305. inSlope: 0
  2306. outSlope: 0
  2307. tangentMode: 0
  2308. - serializedVersion: 2
  2309. time: 1
  2310. value: 0
  2311. inSlope: 0
  2312. outSlope: 0
  2313. tangentMode: 0
  2314. m_PreInfinity: 2
  2315. m_PostInfinity: 2
  2316. m_RotationOrder: 4
  2317. curve:
  2318. serializedVersion: 2
  2319. minMaxState: 0
  2320. scalar: 0.7853982
  2321. minScalar: 0.7853982
  2322. maxCurve:
  2323. serializedVersion: 2
  2324. m_Curve:
  2325. - serializedVersion: 2
  2326. time: 0
  2327. value: 1
  2328. inSlope: 0
  2329. outSlope: 0
  2330. tangentMode: 0
  2331. - serializedVersion: 2
  2332. time: 1
  2333. value: 1
  2334. inSlope: 0
  2335. outSlope: 0
  2336. tangentMode: 0
  2337. m_PreInfinity: 2
  2338. m_PostInfinity: 2
  2339. m_RotationOrder: 4
  2340. minCurve:
  2341. serializedVersion: 2
  2342. m_Curve:
  2343. - serializedVersion: 2
  2344. time: 0
  2345. value: 0
  2346. inSlope: 0
  2347. outSlope: 0
  2348. tangentMode: 0
  2349. - serializedVersion: 2
  2350. time: 1
  2351. value: 0
  2352. inSlope: 0
  2353. outSlope: 0
  2354. tangentMode: 0
  2355. m_PreInfinity: 2
  2356. m_PostInfinity: 2
  2357. m_RotationOrder: 4
  2358. separateAxes: 0
  2359. range: {x: 0, y: 1}
  2360. ColorBySpeedModule:
  2361. enabled: 0
  2362. gradient:
  2363. serializedVersion: 2
  2364. minMaxState: 1
  2365. minColor: {r: 1, g: 1, b: 1, a: 1}
  2366. maxColor: {r: 1, g: 1, b: 1, a: 1}
  2367. maxGradient:
  2368. serializedVersion: 2
  2369. key0: {r: 1, g: 1, b: 1, a: 1}
  2370. key1: {r: 1, g: 1, b: 1, a: 1}
  2371. key2: {r: 0, g: 0, b: 0, a: 0}
  2372. key3: {r: 0, g: 0, b: 0, a: 0}
  2373. key4: {r: 0, g: 0, b: 0, a: 0}
  2374. key5: {r: 0, g: 0, b: 0, a: 0}
  2375. key6: {r: 0, g: 0, b: 0, a: 0}
  2376. key7: {r: 0, g: 0, b: 0, a: 0}
  2377. ctime0: 0
  2378. ctime1: 65535
  2379. ctime2: 0
  2380. ctime3: 0
  2381. ctime4: 0
  2382. ctime5: 0
  2383. ctime6: 0
  2384. ctime7: 0
  2385. atime0: 0
  2386. atime1: 65535
  2387. atime2: 0
  2388. atime3: 0
  2389. atime4: 0
  2390. atime5: 0
  2391. atime6: 0
  2392. atime7: 0
  2393. m_Mode: 0
  2394. m_NumColorKeys: 2
  2395. m_NumAlphaKeys: 2
  2396. minGradient:
  2397. serializedVersion: 2
  2398. key0: {r: 1, g: 1, b: 1, a: 1}
  2399. key1: {r: 1, g: 1, b: 1, a: 1}
  2400. key2: {r: 0, g: 0, b: 0, a: 0}
  2401. key3: {r: 0, g: 0, b: 0, a: 0}
  2402. key4: {r: 0, g: 0, b: 0, a: 0}
  2403. key5: {r: 0, g: 0, b: 0, a: 0}
  2404. key6: {r: 0, g: 0, b: 0, a: 0}
  2405. key7: {r: 0, g: 0, b: 0, a: 0}
  2406. ctime0: 0
  2407. ctime1: 65535
  2408. ctime2: 0
  2409. ctime3: 0
  2410. ctime4: 0
  2411. ctime5: 0
  2412. ctime6: 0
  2413. ctime7: 0
  2414. atime0: 0
  2415. atime1: 65535
  2416. atime2: 0
  2417. atime3: 0
  2418. atime4: 0
  2419. atime5: 0
  2420. atime6: 0
  2421. atime7: 0
  2422. m_Mode: 0
  2423. m_NumColorKeys: 2
  2424. m_NumAlphaKeys: 2
  2425. range: {x: 0, y: 1}
  2426. CollisionModule:
  2427. enabled: 0
  2428. serializedVersion: 3
  2429. type: 0
  2430. collisionMode: 0
  2431. colliderForce: 0
  2432. multiplyColliderForceByParticleSize: 0
  2433. multiplyColliderForceByParticleSpeed: 0
  2434. multiplyColliderForceByCollisionAngle: 1
  2435. plane0: {fileID: 0}
  2436. plane1: {fileID: 0}
  2437. plane2: {fileID: 0}
  2438. plane3: {fileID: 0}
  2439. plane4: {fileID: 0}
  2440. plane5: {fileID: 0}
  2441. m_Dampen:
  2442. serializedVersion: 2
  2443. minMaxState: 0
  2444. scalar: 0
  2445. minScalar: 0
  2446. maxCurve:
  2447. serializedVersion: 2
  2448. m_Curve:
  2449. - serializedVersion: 2
  2450. time: 0
  2451. value: 1
  2452. inSlope: 0
  2453. outSlope: 0
  2454. tangentMode: 0
  2455. - serializedVersion: 2
  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. - serializedVersion: 2
  2468. time: 0
  2469. value: 0
  2470. inSlope: 0
  2471. outSlope: 0
  2472. tangentMode: 0
  2473. - serializedVersion: 2
  2474. time: 1
  2475. value: 0
  2476. inSlope: 0
  2477. outSlope: 0
  2478. tangentMode: 0
  2479. m_PreInfinity: 2
  2480. m_PostInfinity: 2
  2481. m_RotationOrder: 4
  2482. m_Bounce:
  2483. serializedVersion: 2
  2484. minMaxState: 0
  2485. scalar: 1
  2486. minScalar: 1
  2487. maxCurve:
  2488. serializedVersion: 2
  2489. m_Curve:
  2490. - serializedVersion: 2
  2491. time: 0
  2492. value: 1
  2493. inSlope: 0
  2494. outSlope: 0
  2495. tangentMode: 0
  2496. - serializedVersion: 2
  2497. time: 1
  2498. value: 1
  2499. inSlope: 0
  2500. outSlope: 0
  2501. tangentMode: 0
  2502. m_PreInfinity: 2
  2503. m_PostInfinity: 2
  2504. m_RotationOrder: 4
  2505. minCurve:
  2506. serializedVersion: 2
  2507. m_Curve:
  2508. - serializedVersion: 2
  2509. time: 0
  2510. value: 0
  2511. inSlope: 0
  2512. outSlope: 0
  2513. tangentMode: 0
  2514. - serializedVersion: 2
  2515. time: 1
  2516. value: 0
  2517. inSlope: 0
  2518. outSlope: 0
  2519. tangentMode: 0
  2520. m_PreInfinity: 2
  2521. m_PostInfinity: 2
  2522. m_RotationOrder: 4
  2523. m_EnergyLossOnCollision:
  2524. serializedVersion: 2
  2525. minMaxState: 0
  2526. scalar: 0
  2527. minScalar: 0
  2528. maxCurve:
  2529. serializedVersion: 2
  2530. m_Curve:
  2531. - serializedVersion: 2
  2532. time: 0
  2533. value: 1
  2534. inSlope: 0
  2535. outSlope: 0
  2536. tangentMode: 0
  2537. - serializedVersion: 2
  2538. time: 1
  2539. value: 1
  2540. inSlope: 0
  2541. outSlope: 0
  2542. tangentMode: 0
  2543. m_PreInfinity: 2
  2544. m_PostInfinity: 2
  2545. m_RotationOrder: 4
  2546. minCurve:
  2547. serializedVersion: 2
  2548. m_Curve:
  2549. - serializedVersion: 2
  2550. time: 0
  2551. value: 0
  2552. inSlope: 0
  2553. outSlope: 0
  2554. tangentMode: 0
  2555. - serializedVersion: 2
  2556. time: 1
  2557. value: 0
  2558. inSlope: 0
  2559. outSlope: 0
  2560. tangentMode: 0
  2561. m_PreInfinity: 2
  2562. m_PostInfinity: 2
  2563. m_RotationOrder: 4
  2564. minKillSpeed: 0
  2565. maxKillSpeed: 10000
  2566. radiusScale: 1
  2567. collidesWith:
  2568. serializedVersion: 2
  2569. m_Bits: 4294967295
  2570. maxCollisionShapes: 256
  2571. quality: 0
  2572. voxelSize: 0.5
  2573. collisionMessages: 0
  2574. collidesWithDynamic: 1
  2575. interiorCollisions: 1
  2576. TriggerModule:
  2577. enabled: 0
  2578. collisionShape0: {fileID: 0}
  2579. collisionShape1: {fileID: 0}
  2580. collisionShape2: {fileID: 0}
  2581. collisionShape3: {fileID: 0}
  2582. collisionShape4: {fileID: 0}
  2583. collisionShape5: {fileID: 0}
  2584. inside: 1
  2585. outside: 0
  2586. enter: 0
  2587. exit: 0
  2588. radiusScale: 1
  2589. SubModule:
  2590. serializedVersion: 2
  2591. enabled: 0
  2592. subEmitters:
  2593. - serializedVersion: 2
  2594. emitter: {fileID: 0}
  2595. type: 0
  2596. properties: 0
  2597. LightsModule:
  2598. enabled: 0
  2599. ratio: 0
  2600. light: {fileID: 0}
  2601. randomDistribution: 1
  2602. color: 1
  2603. range: 1
  2604. intensity: 1
  2605. rangeCurve:
  2606. serializedVersion: 2
  2607. minMaxState: 0
  2608. scalar: 1
  2609. minScalar: 1
  2610. maxCurve:
  2611. serializedVersion: 2
  2612. m_Curve:
  2613. - serializedVersion: 2
  2614. time: 0
  2615. value: 1
  2616. inSlope: 0
  2617. outSlope: 0
  2618. tangentMode: 0
  2619. - serializedVersion: 2
  2620. time: 1
  2621. value: 1
  2622. inSlope: 0
  2623. outSlope: 0
  2624. tangentMode: 0
  2625. m_PreInfinity: 2
  2626. m_PostInfinity: 2
  2627. m_RotationOrder: 4
  2628. minCurve:
  2629. serializedVersion: 2
  2630. m_Curve:
  2631. - serializedVersion: 2
  2632. time: 0
  2633. value: 0
  2634. inSlope: 0
  2635. outSlope: 0
  2636. tangentMode: 0
  2637. - serializedVersion: 2
  2638. time: 1
  2639. value: 0
  2640. inSlope: 0
  2641. outSlope: 0
  2642. tangentMode: 0
  2643. m_PreInfinity: 2
  2644. m_PostInfinity: 2
  2645. m_RotationOrder: 4
  2646. intensityCurve:
  2647. serializedVersion: 2
  2648. minMaxState: 0
  2649. scalar: 1
  2650. minScalar: 1
  2651. maxCurve:
  2652. serializedVersion: 2
  2653. m_Curve:
  2654. - serializedVersion: 2
  2655. time: 0
  2656. value: 1
  2657. inSlope: 0
  2658. outSlope: 0
  2659. tangentMode: 0
  2660. - serializedVersion: 2
  2661. time: 1
  2662. value: 1
  2663. inSlope: 0
  2664. outSlope: 0
  2665. tangentMode: 0
  2666. m_PreInfinity: 2
  2667. m_PostInfinity: 2
  2668. m_RotationOrder: 4
  2669. minCurve:
  2670. serializedVersion: 2
  2671. m_Curve:
  2672. - serializedVersion: 2
  2673. time: 0
  2674. value: 0
  2675. inSlope: 0
  2676. outSlope: 0
  2677. tangentMode: 0
  2678. - serializedVersion: 2
  2679. time: 1
  2680. value: 0
  2681. inSlope: 0
  2682. outSlope: 0
  2683. tangentMode: 0
  2684. m_PreInfinity: 2
  2685. m_PostInfinity: 2
  2686. m_RotationOrder: 4
  2687. maxLights: 20
  2688. TrailModule:
  2689. enabled: 0
  2690. ratio: 1
  2691. lifetime:
  2692. serializedVersion: 2
  2693. minMaxState: 0
  2694. scalar: 1
  2695. minScalar: 1
  2696. maxCurve:
  2697. serializedVersion: 2
  2698. m_Curve:
  2699. - serializedVersion: 2
  2700. time: 0
  2701. value: 1
  2702. inSlope: 0
  2703. outSlope: 0
  2704. tangentMode: 0
  2705. - serializedVersion: 2
  2706. time: 1
  2707. value: 1
  2708. inSlope: 0
  2709. outSlope: 0
  2710. tangentMode: 0
  2711. m_PreInfinity: 2
  2712. m_PostInfinity: 2
  2713. m_RotationOrder: 4
  2714. minCurve:
  2715. serializedVersion: 2
  2716. m_Curve:
  2717. - serializedVersion: 2
  2718. time: 0
  2719. value: 0
  2720. inSlope: 0
  2721. outSlope: 0
  2722. tangentMode: 0
  2723. - serializedVersion: 2
  2724. time: 1
  2725. value: 0
  2726. inSlope: 0
  2727. outSlope: 0
  2728. tangentMode: 0
  2729. m_PreInfinity: 2
  2730. m_PostInfinity: 2
  2731. m_RotationOrder: 4
  2732. minVertexDistance: 0.2
  2733. textureMode: 0
  2734. worldSpace: 0
  2735. dieWithParticles: 1
  2736. sizeAffectsWidth: 1
  2737. sizeAffectsLifetime: 0
  2738. inheritParticleColor: 1
  2739. generateLightingData: 0
  2740. colorOverLifetime:
  2741. serializedVersion: 2
  2742. minMaxState: 0
  2743. minColor: {r: 1, g: 1, b: 1, a: 1}
  2744. maxColor: {r: 1, g: 1, b: 1, a: 1}
  2745. maxGradient:
  2746. serializedVersion: 2
  2747. key0: {r: 1, g: 1, b: 1, a: 1}
  2748. key1: {r: 1, g: 1, b: 1, a: 1}
  2749. key2: {r: 0, g: 0, b: 0, a: 0}
  2750. key3: {r: 0, g: 0, b: 0, a: 0}
  2751. key4: {r: 0, g: 0, b: 0, a: 0}
  2752. key5: {r: 0, g: 0, b: 0, a: 0}
  2753. key6: {r: 0, g: 0, b: 0, a: 0}
  2754. key7: {r: 0, g: 0, b: 0, a: 0}
  2755. ctime0: 0
  2756. ctime1: 65535
  2757. ctime2: 0
  2758. ctime3: 0
  2759. ctime4: 0
  2760. ctime5: 0
  2761. ctime6: 0
  2762. ctime7: 0
  2763. atime0: 0
  2764. atime1: 65535
  2765. atime2: 0
  2766. atime3: 0
  2767. atime4: 0
  2768. atime5: 0
  2769. atime6: 0
  2770. atime7: 0
  2771. m_Mode: 0
  2772. m_NumColorKeys: 2
  2773. m_NumAlphaKeys: 2
  2774. minGradient:
  2775. serializedVersion: 2
  2776. key0: {r: 1, g: 1, b: 1, a: 1}
  2777. key1: {r: 1, g: 1, b: 1, a: 1}
  2778. key2: {r: 0, g: 0, b: 0, a: 0}
  2779. key3: {r: 0, g: 0, b: 0, a: 0}
  2780. key4: {r: 0, g: 0, b: 0, a: 0}
  2781. key5: {r: 0, g: 0, b: 0, a: 0}
  2782. key6: {r: 0, g: 0, b: 0, a: 0}
  2783. key7: {r: 0, g: 0, b: 0, a: 0}
  2784. ctime0: 0
  2785. ctime1: 65535
  2786. ctime2: 0
  2787. ctime3: 0
  2788. ctime4: 0
  2789. ctime5: 0
  2790. ctime6: 0
  2791. ctime7: 0
  2792. atime0: 0
  2793. atime1: 65535
  2794. atime2: 0
  2795. atime3: 0
  2796. atime4: 0
  2797. atime5: 0
  2798. atime6: 0
  2799. atime7: 0
  2800. m_Mode: 0
  2801. m_NumColorKeys: 2
  2802. m_NumAlphaKeys: 2
  2803. widthOverTrail:
  2804. serializedVersion: 2
  2805. minMaxState: 0
  2806. scalar: 1
  2807. minScalar: 1
  2808. maxCurve:
  2809. serializedVersion: 2
  2810. m_Curve:
  2811. - serializedVersion: 2
  2812. time: 0
  2813. value: 1
  2814. inSlope: 0
  2815. outSlope: 0
  2816. tangentMode: 0
  2817. - serializedVersion: 2
  2818. time: 1
  2819. value: 1
  2820. inSlope: 0
  2821. outSlope: 0
  2822. tangentMode: 0
  2823. m_PreInfinity: 2
  2824. m_PostInfinity: 2
  2825. m_RotationOrder: 4
  2826. minCurve:
  2827. serializedVersion: 2
  2828. m_Curve:
  2829. - serializedVersion: 2
  2830. time: 0
  2831. value: 0
  2832. inSlope: 0
  2833. outSlope: 0
  2834. tangentMode: 0
  2835. - serializedVersion: 2
  2836. time: 1
  2837. value: 0
  2838. inSlope: 0
  2839. outSlope: 0
  2840. tangentMode: 0
  2841. m_PreInfinity: 2
  2842. m_PostInfinity: 2
  2843. m_RotationOrder: 4
  2844. colorOverTrail:
  2845. serializedVersion: 2
  2846. minMaxState: 0
  2847. minColor: {r: 1, g: 1, b: 1, a: 1}
  2848. maxColor: {r: 1, g: 1, b: 1, a: 1}
  2849. maxGradient:
  2850. serializedVersion: 2
  2851. key0: {r: 1, g: 1, b: 1, a: 1}
  2852. key1: {r: 1, g: 1, b: 1, a: 1}
  2853. key2: {r: 0, g: 0, b: 0, a: 0}
  2854. key3: {r: 0, g: 0, b: 0, a: 0}
  2855. key4: {r: 0, g: 0, b: 0, a: 0}
  2856. key5: {r: 0, g: 0, b: 0, a: 0}
  2857. key6: {r: 0, g: 0, b: 0, a: 0}
  2858. key7: {r: 0, g: 0, b: 0, a: 0}
  2859. ctime0: 0
  2860. ctime1: 65535
  2861. ctime2: 0
  2862. ctime3: 0
  2863. ctime4: 0
  2864. ctime5: 0
  2865. ctime6: 0
  2866. ctime7: 0
  2867. atime0: 0
  2868. atime1: 65535
  2869. atime2: 0
  2870. atime3: 0
  2871. atime4: 0
  2872. atime5: 0
  2873. atime6: 0
  2874. atime7: 0
  2875. m_Mode: 0
  2876. m_NumColorKeys: 2
  2877. m_NumAlphaKeys: 2
  2878. minGradient:
  2879. serializedVersion: 2
  2880. key0: {r: 1, g: 1, b: 1, a: 1}
  2881. key1: {r: 1, g: 1, b: 1, a: 1}
  2882. key2: {r: 0, g: 0, b: 0, a: 0}
  2883. key3: {r: 0, g: 0, b: 0, a: 0}
  2884. key4: {r: 0, g: 0, b: 0, a: 0}
  2885. key5: {r: 0, g: 0, b: 0, a: 0}
  2886. key6: {r: 0, g: 0, b: 0, a: 0}
  2887. key7: {r: 0, g: 0, b: 0, a: 0}
  2888. ctime0: 0
  2889. ctime1: 65535
  2890. ctime2: 0
  2891. ctime3: 0
  2892. ctime4: 0
  2893. ctime5: 0
  2894. ctime6: 0
  2895. ctime7: 0
  2896. atime0: 0
  2897. atime1: 65535
  2898. atime2: 0
  2899. atime3: 0
  2900. atime4: 0
  2901. atime5: 0
  2902. atime6: 0
  2903. atime7: 0
  2904. m_Mode: 0
  2905. m_NumColorKeys: 2
  2906. m_NumAlphaKeys: 2
  2907. CustomDataModule:
  2908. enabled: 0
  2909. mode0: 0
  2910. vectorComponentCount0: 4
  2911. color0:
  2912. serializedVersion: 2
  2913. minMaxState: 0
  2914. minColor: {r: 1, g: 1, b: 1, a: 1}
  2915. maxColor: {r: 1, g: 1, b: 1, a: 1}
  2916. maxGradient:
  2917. serializedVersion: 2
  2918. key0: {r: 1, g: 1, b: 1, a: 1}
  2919. key1: {r: 1, g: 1, b: 1, a: 1}
  2920. key2: {r: 0, g: 0, b: 0, a: 0}
  2921. key3: {r: 0, g: 0, b: 0, a: 0}
  2922. key4: {r: 0, g: 0, b: 0, a: 0}
  2923. key5: {r: 0, g: 0, b: 0, a: 0}
  2924. key6: {r: 0, g: 0, b: 0, a: 0}
  2925. key7: {r: 0, g: 0, b: 0, a: 0}
  2926. ctime0: 0
  2927. ctime1: 65535
  2928. ctime2: 0
  2929. ctime3: 0
  2930. ctime4: 0
  2931. ctime5: 0
  2932. ctime6: 0
  2933. ctime7: 0
  2934. atime0: 0
  2935. atime1: 65535
  2936. atime2: 0
  2937. atime3: 0
  2938. atime4: 0
  2939. atime5: 0
  2940. atime6: 0
  2941. atime7: 0
  2942. m_Mode: 0
  2943. m_NumColorKeys: 2
  2944. m_NumAlphaKeys: 2
  2945. minGradient:
  2946. serializedVersion: 2
  2947. key0: {r: 1, g: 1, b: 1, a: 1}
  2948. key1: {r: 1, g: 1, b: 1, a: 1}
  2949. key2: {r: 0, g: 0, b: 0, a: 0}
  2950. key3: {r: 0, g: 0, b: 0, a: 0}
  2951. key4: {r: 0, g: 0, b: 0, a: 0}
  2952. key5: {r: 0, g: 0, b: 0, a: 0}
  2953. key6: {r: 0, g: 0, b: 0, a: 0}
  2954. key7: {r: 0, g: 0, b: 0, a: 0}
  2955. ctime0: 0
  2956. ctime1: 65535
  2957. ctime2: 0
  2958. ctime3: 0
  2959. ctime4: 0
  2960. ctime5: 0
  2961. ctime6: 0
  2962. ctime7: 0
  2963. atime0: 0
  2964. atime1: 65535
  2965. atime2: 0
  2966. atime3: 0
  2967. atime4: 0
  2968. atime5: 0
  2969. atime6: 0
  2970. atime7: 0
  2971. m_Mode: 0
  2972. m_NumColorKeys: 2
  2973. m_NumAlphaKeys: 2
  2974. colorLabel0: Color
  2975. vector0_0:
  2976. serializedVersion: 2
  2977. minMaxState: 0
  2978. scalar: 0
  2979. minScalar: 0
  2980. maxCurve:
  2981. serializedVersion: 2
  2982. m_Curve:
  2983. - serializedVersion: 2
  2984. time: 0
  2985. value: 1
  2986. inSlope: 0
  2987. outSlope: 0
  2988. tangentMode: 0
  2989. - serializedVersion: 2
  2990. time: 1
  2991. value: 1
  2992. inSlope: 0
  2993. outSlope: 0
  2994. tangentMode: 0
  2995. m_PreInfinity: 2
  2996. m_PostInfinity: 2
  2997. m_RotationOrder: 4
  2998. minCurve:
  2999. serializedVersion: 2
  3000. m_Curve:
  3001. - serializedVersion: 2
  3002. time: 0
  3003. value: 0
  3004. inSlope: 0
  3005. outSlope: 0
  3006. tangentMode: 0
  3007. - serializedVersion: 2
  3008. time: 1
  3009. value: 0
  3010. inSlope: 0
  3011. outSlope: 0
  3012. tangentMode: 0
  3013. m_PreInfinity: 2
  3014. m_PostInfinity: 2
  3015. m_RotationOrder: 4
  3016. vectorLabel0_0: X
  3017. vector0_1:
  3018. serializedVersion: 2
  3019. minMaxState: 0
  3020. scalar: 0
  3021. minScalar: 0
  3022. maxCurve:
  3023. serializedVersion: 2
  3024. m_Curve:
  3025. - serializedVersion: 2
  3026. time: 0
  3027. value: 1
  3028. inSlope: 0
  3029. outSlope: 0
  3030. tangentMode: 0
  3031. - serializedVersion: 2
  3032. time: 1
  3033. value: 1
  3034. inSlope: 0
  3035. outSlope: 0
  3036. tangentMode: 0
  3037. m_PreInfinity: 2
  3038. m_PostInfinity: 2
  3039. m_RotationOrder: 4
  3040. minCurve:
  3041. serializedVersion: 2
  3042. m_Curve:
  3043. - serializedVersion: 2
  3044. time: 0
  3045. value: 0
  3046. inSlope: 0
  3047. outSlope: 0
  3048. tangentMode: 0
  3049. - serializedVersion: 2
  3050. time: 1
  3051. value: 0
  3052. inSlope: 0
  3053. outSlope: 0
  3054. tangentMode: 0
  3055. m_PreInfinity: 2
  3056. m_PostInfinity: 2
  3057. m_RotationOrder: 4
  3058. vectorLabel0_1: Y
  3059. vector0_2:
  3060. serializedVersion: 2
  3061. minMaxState: 0
  3062. scalar: 0
  3063. minScalar: 0
  3064. maxCurve:
  3065. serializedVersion: 2
  3066. m_Curve:
  3067. - serializedVersion: 2
  3068. time: 0
  3069. value: 1
  3070. inSlope: 0
  3071. outSlope: 0
  3072. tangentMode: 0
  3073. - serializedVersion: 2
  3074. time: 1
  3075. value: 1
  3076. inSlope: 0
  3077. outSlope: 0
  3078. tangentMode: 0
  3079. m_PreInfinity: 2
  3080. m_PostInfinity: 2
  3081. m_RotationOrder: 4
  3082. minCurve:
  3083. serializedVersion: 2
  3084. m_Curve:
  3085. - serializedVersion: 2
  3086. time: 0
  3087. value: 0
  3088. inSlope: 0
  3089. outSlope: 0
  3090. tangentMode: 0
  3091. - serializedVersion: 2
  3092. time: 1
  3093. value: 0
  3094. inSlope: 0
  3095. outSlope: 0
  3096. tangentMode: 0
  3097. m_PreInfinity: 2
  3098. m_PostInfinity: 2
  3099. m_RotationOrder: 4
  3100. vectorLabel0_2: Z
  3101. vector0_3:
  3102. serializedVersion: 2
  3103. minMaxState: 0
  3104. scalar: 0
  3105. minScalar: 0
  3106. maxCurve:
  3107. serializedVersion: 2
  3108. m_Curve:
  3109. - serializedVersion: 2
  3110. time: 0
  3111. value: 1
  3112. inSlope: 0
  3113. outSlope: 0
  3114. tangentMode: 0
  3115. - serializedVersion: 2
  3116. time: 1
  3117. value: 1
  3118. inSlope: 0
  3119. outSlope: 0
  3120. tangentMode: 0
  3121. m_PreInfinity: 2
  3122. m_PostInfinity: 2
  3123. m_RotationOrder: 4
  3124. minCurve:
  3125. serializedVersion: 2
  3126. m_Curve:
  3127. - serializedVersion: 2
  3128. time: 0
  3129. value: 0
  3130. inSlope: 0
  3131. outSlope: 0
  3132. tangentMode: 0
  3133. - serializedVersion: 2
  3134. time: 1
  3135. value: 0
  3136. inSlope: 0
  3137. outSlope: 0
  3138. tangentMode: 0
  3139. m_PreInfinity: 2
  3140. m_PostInfinity: 2
  3141. m_RotationOrder: 4
  3142. vectorLabel0_3: W
  3143. mode1: 0
  3144. vectorComponentCount1: 4
  3145. color1:
  3146. serializedVersion: 2
  3147. minMaxState: 0
  3148. minColor: {r: 1, g: 1, b: 1, a: 1}
  3149. maxColor: {r: 1, g: 1, b: 1, a: 1}
  3150. maxGradient:
  3151. serializedVersion: 2
  3152. key0: {r: 1, g: 1, b: 1, a: 1}
  3153. key1: {r: 1, g: 1, b: 1, a: 1}
  3154. key2: {r: 0, g: 0, b: 0, a: 0}
  3155. key3: {r: 0, g: 0, b: 0, a: 0}
  3156. key4: {r: 0, g: 0, b: 0, a: 0}
  3157. key5: {r: 0, g: 0, b: 0, a: 0}
  3158. key6: {r: 0, g: 0, b: 0, a: 0}
  3159. key7: {r: 0, g: 0, b: 0, a: 0}
  3160. ctime0: 0
  3161. ctime1: 65535
  3162. ctime2: 0
  3163. ctime3: 0
  3164. ctime4: 0
  3165. ctime5: 0
  3166. ctime6: 0
  3167. ctime7: 0
  3168. atime0: 0
  3169. atime1: 65535
  3170. atime2: 0
  3171. atime3: 0
  3172. atime4: 0
  3173. atime5: 0
  3174. atime6: 0
  3175. atime7: 0
  3176. m_Mode: 0
  3177. m_NumColorKeys: 2
  3178. m_NumAlphaKeys: 2
  3179. minGradient:
  3180. serializedVersion: 2
  3181. key0: {r: 1, g: 1, b: 1, a: 1}
  3182. key1: {r: 1, g: 1, b: 1, a: 1}
  3183. key2: {r: 0, g: 0, b: 0, a: 0}
  3184. key3: {r: 0, g: 0, b: 0, a: 0}
  3185. key4: {r: 0, g: 0, b: 0, a: 0}
  3186. key5: {r: 0, g: 0, b: 0, a: 0}
  3187. key6: {r: 0, g: 0, b: 0, a: 0}
  3188. key7: {r: 0, g: 0, b: 0, a: 0}
  3189. ctime0: 0
  3190. ctime1: 65535
  3191. ctime2: 0
  3192. ctime3: 0
  3193. ctime4: 0
  3194. ctime5: 0
  3195. ctime6: 0
  3196. ctime7: 0
  3197. atime0: 0
  3198. atime1: 65535
  3199. atime2: 0
  3200. atime3: 0
  3201. atime4: 0
  3202. atime5: 0
  3203. atime6: 0
  3204. atime7: 0
  3205. m_Mode: 0
  3206. m_NumColorKeys: 2
  3207. m_NumAlphaKeys: 2
  3208. colorLabel1: Color
  3209. vector1_0:
  3210. serializedVersion: 2
  3211. minMaxState: 0
  3212. scalar: 0
  3213. minScalar: 0
  3214. maxCurve:
  3215. serializedVersion: 2
  3216. m_Curve:
  3217. - serializedVersion: 2
  3218. time: 0
  3219. value: 1
  3220. inSlope: 0
  3221. outSlope: 0
  3222. tangentMode: 0
  3223. - serializedVersion: 2
  3224. time: 1
  3225. value: 1
  3226. inSlope: 0
  3227. outSlope: 0
  3228. tangentMode: 0
  3229. m_PreInfinity: 2
  3230. m_PostInfinity: 2
  3231. m_RotationOrder: 4
  3232. minCurve:
  3233. serializedVersion: 2
  3234. m_Curve:
  3235. - serializedVersion: 2
  3236. time: 0
  3237. value: 0
  3238. inSlope: 0
  3239. outSlope: 0
  3240. tangentMode: 0
  3241. - serializedVersion: 2
  3242. time: 1
  3243. value: 0
  3244. inSlope: 0
  3245. outSlope: 0
  3246. tangentMode: 0
  3247. m_PreInfinity: 2
  3248. m_PostInfinity: 2
  3249. m_RotationOrder: 4
  3250. vectorLabel1_0: X
  3251. vector1_1:
  3252. serializedVersion: 2
  3253. minMaxState: 0
  3254. scalar: 0
  3255. minScalar: 0
  3256. maxCurve:
  3257. serializedVersion: 2
  3258. m_Curve:
  3259. - serializedVersion: 2
  3260. time: 0
  3261. value: 1
  3262. inSlope: 0
  3263. outSlope: 0
  3264. tangentMode: 0
  3265. - serializedVersion: 2
  3266. time: 1
  3267. value: 1
  3268. inSlope: 0
  3269. outSlope: 0
  3270. tangentMode: 0
  3271. m_PreInfinity: 2
  3272. m_PostInfinity: 2
  3273. m_RotationOrder: 4
  3274. minCurve:
  3275. serializedVersion: 2
  3276. m_Curve:
  3277. - serializedVersion: 2
  3278. time: 0
  3279. value: 0
  3280. inSlope: 0
  3281. outSlope: 0
  3282. tangentMode: 0
  3283. - serializedVersion: 2
  3284. time: 1
  3285. value: 0
  3286. inSlope: 0
  3287. outSlope: 0
  3288. tangentMode: 0
  3289. m_PreInfinity: 2
  3290. m_PostInfinity: 2
  3291. m_RotationOrder: 4
  3292. vectorLabel1_1: Y
  3293. vector1_2:
  3294. serializedVersion: 2
  3295. minMaxState: 0
  3296. scalar: 0
  3297. minScalar: 0
  3298. maxCurve:
  3299. serializedVersion: 2
  3300. m_Curve:
  3301. - serializedVersion: 2
  3302. time: 0
  3303. value: 1
  3304. inSlope: 0
  3305. outSlope: 0
  3306. tangentMode: 0
  3307. - serializedVersion: 2
  3308. time: 1
  3309. value: 1
  3310. inSlope: 0
  3311. outSlope: 0
  3312. tangentMode: 0
  3313. m_PreInfinity: 2
  3314. m_PostInfinity: 2
  3315. m_RotationOrder: 4
  3316. minCurve:
  3317. serializedVersion: 2
  3318. m_Curve:
  3319. - serializedVersion: 2
  3320. time: 0
  3321. value: 0
  3322. inSlope: 0
  3323. outSlope: 0
  3324. tangentMode: 0
  3325. - serializedVersion: 2
  3326. time: 1
  3327. value: 0
  3328. inSlope: 0
  3329. outSlope: 0
  3330. tangentMode: 0
  3331. m_PreInfinity: 2
  3332. m_PostInfinity: 2
  3333. m_RotationOrder: 4
  3334. vectorLabel1_2: Z
  3335. vector1_3:
  3336. serializedVersion: 2
  3337. minMaxState: 0
  3338. scalar: 0
  3339. minScalar: 0
  3340. maxCurve:
  3341. serializedVersion: 2
  3342. m_Curve:
  3343. - serializedVersion: 2
  3344. time: 0
  3345. value: 1
  3346. inSlope: 0
  3347. outSlope: 0
  3348. tangentMode: 0
  3349. - serializedVersion: 2
  3350. time: 1
  3351. value: 1
  3352. inSlope: 0
  3353. outSlope: 0
  3354. tangentMode: 0
  3355. m_PreInfinity: 2
  3356. m_PostInfinity: 2
  3357. m_RotationOrder: 4
  3358. minCurve:
  3359. serializedVersion: 2
  3360. m_Curve:
  3361. - serializedVersion: 2
  3362. time: 0
  3363. value: 0
  3364. inSlope: 0
  3365. outSlope: 0
  3366. tangentMode: 0
  3367. - serializedVersion: 2
  3368. time: 1
  3369. value: 0
  3370. inSlope: 0
  3371. outSlope: 0
  3372. tangentMode: 0
  3373. m_PreInfinity: 2
  3374. m_PostInfinity: 2
  3375. m_RotationOrder: 4
  3376. vectorLabel1_3: W
  3377. --- !u!198 &198994897263029524
  3378. ParticleSystem:
  3379. m_ObjectHideFlags: 1
  3380. m_PrefabParentObject: {fileID: 0}
  3381. m_PrefabInternal: {fileID: 100100000}
  3382. m_GameObject: {fileID: 1199387749997026}
  3383. serializedVersion: 5
  3384. lengthInSec: 2
  3385. simulationSpeed: 1
  3386. stopAction: 0
  3387. looping: 0
  3388. prewarm: 0
  3389. playOnAwake: 1
  3390. useUnscaledTime: 0
  3391. autoRandomSeed: 1
  3392. useRigidbodyForVelocity: 1
  3393. startDelay:
  3394. serializedVersion: 2
  3395. minMaxState: 0
  3396. scalar: 0
  3397. minScalar: 0
  3398. maxCurve:
  3399. serializedVersion: 2
  3400. m_Curve:
  3401. - serializedVersion: 2
  3402. time: 0
  3403. value: 1
  3404. inSlope: 0
  3405. outSlope: 0
  3406. tangentMode: 0
  3407. - serializedVersion: 2
  3408. time: 1
  3409. value: 1
  3410. inSlope: 0
  3411. outSlope: 0
  3412. tangentMode: 0
  3413. m_PreInfinity: 2
  3414. m_PostInfinity: 2
  3415. m_RotationOrder: 4
  3416. minCurve:
  3417. serializedVersion: 2
  3418. m_Curve:
  3419. - serializedVersion: 2
  3420. time: 0
  3421. value: 0
  3422. inSlope: 0
  3423. outSlope: 0
  3424. tangentMode: 0
  3425. - serializedVersion: 2
  3426. time: 1
  3427. value: 0
  3428. inSlope: 0
  3429. outSlope: 0
  3430. tangentMode: 0
  3431. m_PreInfinity: 2
  3432. m_PostInfinity: 2
  3433. m_RotationOrder: 4
  3434. moveWithTransform: 0
  3435. moveWithCustomTransform: {fileID: 0}
  3436. scalingMode: 2
  3437. randomSeed: 1721898579
  3438. InitialModule:
  3439. serializedVersion: 3
  3440. enabled: 1
  3441. startLifetime:
  3442. serializedVersion: 2
  3443. minMaxState: 3
  3444. scalar: 0.2
  3445. minScalar: 0.1
  3446. maxCurve:
  3447. serializedVersion: 2
  3448. m_Curve:
  3449. - serializedVersion: 2
  3450. time: 0
  3451. value: 1
  3452. inSlope: 0
  3453. outSlope: 0
  3454. tangentMode: 0
  3455. m_PreInfinity: 2
  3456. m_PostInfinity: 2
  3457. m_RotationOrder: 0
  3458. minCurve:
  3459. serializedVersion: 2
  3460. m_Curve:
  3461. - serializedVersion: 2
  3462. time: 0
  3463. value: 0.5
  3464. inSlope: 0
  3465. outSlope: 0
  3466. tangentMode: 0
  3467. m_PreInfinity: 2
  3468. m_PostInfinity: 2
  3469. m_RotationOrder: 0
  3470. startSpeed:
  3471. serializedVersion: 2
  3472. minMaxState: 3
  3473. scalar: 0
  3474. minScalar: 0
  3475. maxCurve:
  3476. serializedVersion: 2
  3477. m_Curve:
  3478. - serializedVersion: 2
  3479. time: 0
  3480. value: 0
  3481. inSlope: 0
  3482. outSlope: 0
  3483. tangentMode: 0
  3484. m_PreInfinity: 2
  3485. m_PostInfinity: 2
  3486. m_RotationOrder: 0
  3487. minCurve:
  3488. serializedVersion: 2
  3489. m_Curve:
  3490. - serializedVersion: 2
  3491. time: 0
  3492. value: 0
  3493. inSlope: 0
  3494. outSlope: 0
  3495. tangentMode: 0
  3496. m_PreInfinity: 2
  3497. m_PostInfinity: 2
  3498. m_RotationOrder: 0
  3499. startColor:
  3500. serializedVersion: 2
  3501. minMaxState: 0
  3502. minColor: {r: 1, g: 1, b: 1, a: 1}
  3503. maxColor: {r: 0.95686275, g: 0.8039216, b: 0.47843137, a: 1}
  3504. maxGradient:
  3505. serializedVersion: 2
  3506. key0: {r: 1, g: 1, b: 1, a: 1}
  3507. key1: {r: 1, g: 1, b: 1, a: 1}
  3508. key2: {r: 0, g: 0, b: 0, a: 0}
  3509. key3: {r: 0, g: 0, b: 0, a: 0}
  3510. key4: {r: 0, g: 0, b: 0, a: 0}
  3511. key5: {r: 0, g: 0, b: 0, a: 0}
  3512. key6: {r: 0, g: 0, b: 0, a: 0}
  3513. key7: {r: 0, g: 0, b: 0, a: 0}
  3514. ctime0: 0
  3515. ctime1: 65535
  3516. ctime2: 0
  3517. ctime3: 0
  3518. ctime4: 0
  3519. ctime5: 0
  3520. ctime6: 0
  3521. ctime7: 0
  3522. atime0: 0
  3523. atime1: 65535
  3524. atime2: 0
  3525. atime3: 0
  3526. atime4: 0
  3527. atime5: 0
  3528. atime6: 0
  3529. atime7: 0
  3530. m_Mode: 0
  3531. m_NumColorKeys: 2
  3532. m_NumAlphaKeys: 2
  3533. minGradient:
  3534. serializedVersion: 2
  3535. key0: {r: 1, g: 1, b: 1, a: 1}
  3536. key1: {r: 1, g: 1, b: 1, a: 1}
  3537. key2: {r: 0, g: 0, b: 0, a: 0}
  3538. key3: {r: 0, g: 0, b: 0, a: 0}
  3539. key4: {r: 0, g: 0, b: 0, a: 0}
  3540. key5: {r: 0, g: 0, b: 0, a: 0}
  3541. key6: {r: 0, g: 0, b: 0, a: 0}
  3542. key7: {r: 0, g: 0, b: 0, a: 0}
  3543. ctime0: 0
  3544. ctime1: 65535
  3545. ctime2: 0
  3546. ctime3: 0
  3547. ctime4: 0
  3548. ctime5: 0
  3549. ctime6: 0
  3550. ctime7: 0
  3551. atime0: 0
  3552. atime1: 65535
  3553. atime2: 0
  3554. atime3: 0
  3555. atime4: 0
  3556. atime5: 0
  3557. atime6: 0
  3558. atime7: 0
  3559. m_Mode: 0
  3560. m_NumColorKeys: 2
  3561. m_NumAlphaKeys: 2
  3562. startSize:
  3563. serializedVersion: 2
  3564. minMaxState: 3
  3565. scalar: 1
  3566. minScalar: 3
  3567. maxCurve:
  3568. serializedVersion: 2
  3569. m_Curve:
  3570. - serializedVersion: 2
  3571. time: 0
  3572. value: 1
  3573. inSlope: 0
  3574. outSlope: 0
  3575. tangentMode: 0
  3576. m_PreInfinity: 2
  3577. m_PostInfinity: 2
  3578. m_RotationOrder: 0
  3579. minCurve:
  3580. serializedVersion: 2
  3581. m_Curve:
  3582. - serializedVersion: 2
  3583. time: 0
  3584. value: 0.46666667
  3585. inSlope: 0
  3586. outSlope: 0
  3587. tangentMode: 0
  3588. m_PreInfinity: 2
  3589. m_PostInfinity: 2
  3590. m_RotationOrder: 0
  3591. startSizeY:
  3592. serializedVersion: 2
  3593. minMaxState: 3
  3594. scalar: 1
  3595. minScalar: 2
  3596. maxCurve:
  3597. serializedVersion: 2
  3598. m_Curve:
  3599. - serializedVersion: 2
  3600. time: 0
  3601. value: 1
  3602. inSlope: 0
  3603. outSlope: 0
  3604. tangentMode: 0
  3605. m_PreInfinity: 2
  3606. m_PostInfinity: 2
  3607. m_RotationOrder: 0
  3608. minCurve:
  3609. serializedVersion: 2
  3610. m_Curve:
  3611. - serializedVersion: 2
  3612. time: 0
  3613. value: 0
  3614. inSlope: 0
  3615. outSlope: 0
  3616. tangentMode: 0
  3617. m_PreInfinity: 2
  3618. m_PostInfinity: 2
  3619. m_RotationOrder: 0
  3620. startSizeZ:
  3621. serializedVersion: 2
  3622. minMaxState: 3
  3623. scalar: 1
  3624. minScalar: 2
  3625. maxCurve:
  3626. serializedVersion: 2
  3627. m_Curve:
  3628. - serializedVersion: 2
  3629. time: 0
  3630. value: 1
  3631. inSlope: 0
  3632. outSlope: 0
  3633. tangentMode: 0
  3634. m_PreInfinity: 2
  3635. m_PostInfinity: 2
  3636. m_RotationOrder: 0
  3637. minCurve:
  3638. serializedVersion: 2
  3639. m_Curve:
  3640. - serializedVersion: 2
  3641. time: 0
  3642. value: 0
  3643. inSlope: 0
  3644. outSlope: 0
  3645. tangentMode: 0
  3646. m_PreInfinity: 2
  3647. m_PostInfinity: 2
  3648. m_RotationOrder: 0
  3649. startRotationX:
  3650. serializedVersion: 2
  3651. minMaxState: 3
  3652. scalar: 1.8325957
  3653. minScalar: 1.3089969
  3654. maxCurve:
  3655. serializedVersion: 2
  3656. m_Curve:
  3657. - serializedVersion: 2
  3658. time: 0
  3659. value: 1
  3660. inSlope: 0
  3661. outSlope: 0
  3662. tangentMode: 0
  3663. - serializedVersion: 2
  3664. time: 1
  3665. value: 1
  3666. inSlope: 0
  3667. outSlope: 0
  3668. tangentMode: 0
  3669. m_PreInfinity: 2
  3670. m_PostInfinity: 2
  3671. m_RotationOrder: 4
  3672. minCurve:
  3673. serializedVersion: 2
  3674. m_Curve:
  3675. - serializedVersion: 2
  3676. time: 0
  3677. value: 0
  3678. inSlope: 0
  3679. outSlope: 0
  3680. tangentMode: 0
  3681. - serializedVersion: 2
  3682. time: 1
  3683. value: 0
  3684. inSlope: 0
  3685. outSlope: 0
  3686. tangentMode: 0
  3687. m_PreInfinity: 2
  3688. m_PostInfinity: 2
  3689. m_RotationOrder: 4
  3690. startRotationY:
  3691. serializedVersion: 2
  3692. minMaxState: 3
  3693. scalar: 0.43633232
  3694. minScalar: -0.43633232
  3695. maxCurve:
  3696. serializedVersion: 2
  3697. m_Curve:
  3698. - serializedVersion: 2
  3699. time: 0
  3700. value: 1
  3701. inSlope: 0
  3702. outSlope: 0
  3703. tangentMode: 0
  3704. - serializedVersion: 2
  3705. time: 1
  3706. value: 1
  3707. inSlope: 0
  3708. outSlope: 0
  3709. tangentMode: 0
  3710. m_PreInfinity: 2
  3711. m_PostInfinity: 2
  3712. m_RotationOrder: 4
  3713. minCurve:
  3714. serializedVersion: 2
  3715. m_Curve:
  3716. - serializedVersion: 2
  3717. time: 0
  3718. value: 0
  3719. inSlope: 0
  3720. outSlope: 0
  3721. tangentMode: 0
  3722. - serializedVersion: 2
  3723. time: 1
  3724. value: 0
  3725. inSlope: 0
  3726. outSlope: 0
  3727. tangentMode: 0
  3728. m_PreInfinity: 2
  3729. m_PostInfinity: 2
  3730. m_RotationOrder: 4
  3731. startRotation:
  3732. serializedVersion: 2
  3733. minMaxState: 3
  3734. scalar: 0.43633232
  3735. minScalar: -0.43633232
  3736. maxCurve:
  3737. serializedVersion: 2
  3738. m_Curve:
  3739. - serializedVersion: 2
  3740. time: 0
  3741. value: 1
  3742. inSlope: 0
  3743. outSlope: 0
  3744. tangentMode: 0
  3745. - serializedVersion: 2
  3746. time: 1
  3747. value: 1
  3748. inSlope: 0
  3749. outSlope: 0
  3750. tangentMode: 0
  3751. m_PreInfinity: 2
  3752. m_PostInfinity: 2
  3753. m_RotationOrder: 4
  3754. minCurve:
  3755. serializedVersion: 2
  3756. m_Curve:
  3757. - serializedVersion: 2
  3758. time: 0
  3759. value: 0
  3760. inSlope: 0
  3761. outSlope: 0
  3762. tangentMode: 0
  3763. - serializedVersion: 2
  3764. time: 1
  3765. value: 0
  3766. inSlope: 0
  3767. outSlope: 0
  3768. tangentMode: 0
  3769. m_PreInfinity: 2
  3770. m_PostInfinity: 2
  3771. m_RotationOrder: 4
  3772. randomizeRotationDirection: 0
  3773. maxNumParticles: 500
  3774. size3D: 1
  3775. rotation3D: 1
  3776. gravityModifier:
  3777. serializedVersion: 2
  3778. minMaxState: 0
  3779. scalar: 0
  3780. minScalar: 0
  3781. maxCurve:
  3782. serializedVersion: 2
  3783. m_Curve:
  3784. - serializedVersion: 2
  3785. time: 0
  3786. value: 1
  3787. inSlope: 0
  3788. outSlope: 0
  3789. tangentMode: 0
  3790. - serializedVersion: 2
  3791. time: 1
  3792. value: 1
  3793. inSlope: 0
  3794. outSlope: 0
  3795. tangentMode: 0
  3796. m_PreInfinity: 2
  3797. m_PostInfinity: 2
  3798. m_RotationOrder: 4
  3799. minCurve:
  3800. serializedVersion: 2
  3801. m_Curve:
  3802. - serializedVersion: 2
  3803. time: 0
  3804. value: 0
  3805. inSlope: 0
  3806. outSlope: 0
  3807. tangentMode: 0
  3808. - serializedVersion: 2
  3809. time: 1
  3810. value: 0
  3811. inSlope: 0
  3812. outSlope: 0
  3813. tangentMode: 0
  3814. m_PreInfinity: 2
  3815. m_PostInfinity: 2
  3816. m_RotationOrder: 4
  3817. ShapeModule:
  3818. serializedVersion: 5
  3819. enabled: 1
  3820. type: 4
  3821. angle: 30.33
  3822. length: 5
  3823. boxThickness: {x: 0, y: 0, z: 0}
  3824. radiusThickness: 1
  3825. donutRadius: 0.2
  3826. m_Position: {x: 0, y: 0, z: 0}
  3827. m_Rotation: {x: 0, y: 0, z: 0}
  3828. m_Scale: {x: 1, y: 1, z: 1}
  3829. placementMode: 0
  3830. m_Mesh: {fileID: 0}
  3831. m_MeshRenderer: {fileID: 0}
  3832. m_SkinnedMeshRenderer: {fileID: 0}
  3833. m_MeshMaterialIndex: 0
  3834. m_MeshNormalOffset: 0
  3835. m_UseMeshMaterialIndex: 0
  3836. m_UseMeshColors: 1
  3837. alignToDirection: 0
  3838. randomDirectionAmount: 0
  3839. sphericalDirectionAmount: 0
  3840. randomPositionAmount: 0
  3841. radius:
  3842. value: 0.01
  3843. mode: 0
  3844. spread: 0
  3845. speed:
  3846. serializedVersion: 2
  3847. minMaxState: 0
  3848. scalar: 1
  3849. minScalar: 1
  3850. maxCurve:
  3851. serializedVersion: 2
  3852. m_Curve:
  3853. - serializedVersion: 2
  3854. time: 0
  3855. value: 1
  3856. inSlope: 0
  3857. outSlope: 0
  3858. tangentMode: 0
  3859. - serializedVersion: 2
  3860. time: 1
  3861. value: 1
  3862. inSlope: 0
  3863. outSlope: 0
  3864. tangentMode: 0
  3865. m_PreInfinity: 2
  3866. m_PostInfinity: 2
  3867. m_RotationOrder: 4
  3868. minCurve:
  3869. serializedVersion: 2
  3870. m_Curve:
  3871. - serializedVersion: 2
  3872. time: 0
  3873. value: 0
  3874. inSlope: 0
  3875. outSlope: 0
  3876. tangentMode: 0
  3877. - serializedVersion: 2
  3878. time: 1
  3879. value: 0
  3880. inSlope: 0
  3881. outSlope: 0
  3882. tangentMode: 0
  3883. m_PreInfinity: 2
  3884. m_PostInfinity: 2
  3885. m_RotationOrder: 4
  3886. arc:
  3887. value: 360
  3888. mode: 0
  3889. spread: 0
  3890. speed:
  3891. serializedVersion: 2
  3892. minMaxState: 0
  3893. scalar: 1
  3894. minScalar: 1
  3895. maxCurve:
  3896. serializedVersion: 2
  3897. m_Curve:
  3898. - serializedVersion: 2
  3899. time: 0
  3900. value: 1
  3901. inSlope: 0
  3902. outSlope: 0
  3903. tangentMode: 0
  3904. - serializedVersion: 2
  3905. time: 1
  3906. value: 1
  3907. inSlope: 0
  3908. outSlope: 0
  3909. tangentMode: 0
  3910. m_PreInfinity: 2
  3911. m_PostInfinity: 2
  3912. m_RotationOrder: 4
  3913. minCurve:
  3914. serializedVersion: 2
  3915. m_Curve:
  3916. - serializedVersion: 2
  3917. time: 0
  3918. value: 0
  3919. inSlope: 0
  3920. outSlope: 0
  3921. tangentMode: 0
  3922. - serializedVersion: 2
  3923. time: 1
  3924. value: 0
  3925. inSlope: 0
  3926. outSlope: 0
  3927. tangentMode: 0
  3928. m_PreInfinity: 2
  3929. m_PostInfinity: 2
  3930. m_RotationOrder: 4
  3931. EmissionModule:
  3932. enabled: 1
  3933. serializedVersion: 4
  3934. rateOverTime:
  3935. serializedVersion: 2
  3936. minMaxState: 0
  3937. scalar: 0
  3938. minScalar: 10
  3939. maxCurve:
  3940. serializedVersion: 2
  3941. m_Curve:
  3942. - serializedVersion: 2
  3943. time: 0
  3944. value: 1
  3945. inSlope: 0
  3946. outSlope: 0
  3947. tangentMode: 0
  3948. - serializedVersion: 2
  3949. time: 1
  3950. value: 1
  3951. inSlope: 0
  3952. outSlope: 0
  3953. tangentMode: 0
  3954. m_PreInfinity: 2
  3955. m_PostInfinity: 2
  3956. m_RotationOrder: 4
  3957. minCurve:
  3958. serializedVersion: 2
  3959. m_Curve:
  3960. - serializedVersion: 2
  3961. time: 0
  3962. value: 0
  3963. inSlope: 0
  3964. outSlope: 0
  3965. tangentMode: 0
  3966. - serializedVersion: 2
  3967. time: 1
  3968. value: 0
  3969. inSlope: 0
  3970. outSlope: 0
  3971. tangentMode: 0
  3972. m_PreInfinity: 2
  3973. m_PostInfinity: 2
  3974. m_RotationOrder: 4
  3975. rateOverDistance:
  3976. serializedVersion: 2
  3977. minMaxState: 0
  3978. scalar: 0
  3979. minScalar: 0
  3980. maxCurve:
  3981. serializedVersion: 2
  3982. m_Curve:
  3983. - serializedVersion: 2
  3984. time: 0
  3985. value: 1
  3986. inSlope: 0
  3987. outSlope: 0
  3988. tangentMode: 0
  3989. - serializedVersion: 2
  3990. time: 1
  3991. value: 1
  3992. inSlope: 0
  3993. outSlope: 0
  3994. tangentMode: 0
  3995. m_PreInfinity: 2
  3996. m_PostInfinity: 2
  3997. m_RotationOrder: 4
  3998. minCurve:
  3999. serializedVersion: 2
  4000. m_Curve:
  4001. - serializedVersion: 2
  4002. time: 0
  4003. value: 0
  4004. inSlope: 0
  4005. outSlope: 0
  4006. tangentMode: 0
  4007. - serializedVersion: 2
  4008. time: 1
  4009. value: 0
  4010. inSlope: 0
  4011. outSlope: 0
  4012. tangentMode: 0
  4013. m_PreInfinity: 2
  4014. m_PostInfinity: 2
  4015. m_RotationOrder: 4
  4016. m_BurstCount: 1
  4017. m_Bursts:
  4018. - serializedVersion: 2
  4019. time: 0
  4020. countCurve:
  4021. serializedVersion: 2
  4022. minMaxState: 0
  4023. scalar: 3
  4024. minScalar: 3
  4025. maxCurve:
  4026. serializedVersion: 2
  4027. m_Curve:
  4028. - serializedVersion: 2
  4029. time: 0
  4030. value: 1
  4031. inSlope: 0
  4032. outSlope: 0
  4033. tangentMode: 0
  4034. - serializedVersion: 2
  4035. time: 1
  4036. value: 1
  4037. inSlope: 0
  4038. outSlope: 0
  4039. tangentMode: 0
  4040. m_PreInfinity: 2
  4041. m_PostInfinity: 2
  4042. m_RotationOrder: 4
  4043. minCurve:
  4044. serializedVersion: 2
  4045. m_Curve:
  4046. - serializedVersion: 2
  4047. time: 0
  4048. value: 1
  4049. inSlope: 0
  4050. outSlope: 0
  4051. tangentMode: 0
  4052. - serializedVersion: 2
  4053. time: 1
  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. cycleCount: 1
  4062. repeatInterval: 0.01
  4063. SizeModule:
  4064. enabled: 1
  4065. curve:
  4066. serializedVersion: 2
  4067. minMaxState: 1
  4068. scalar: 1
  4069. minScalar: 1
  4070. maxCurve:
  4071. serializedVersion: 2
  4072. m_Curve:
  4073. - serializedVersion: 2
  4074. time: 0
  4075. value: 0
  4076. inSlope: 1.8209459
  4077. outSlope: 1.8209459
  4078. tangentMode: 0
  4079. - serializedVersion: 2
  4080. time: 1
  4081. value: 1
  4082. inSlope: 0
  4083. outSlope: 0
  4084. tangentMode: 0
  4085. m_PreInfinity: 2
  4086. m_PostInfinity: 2
  4087. m_RotationOrder: 0
  4088. minCurve:
  4089. serializedVersion: 2
  4090. m_Curve:
  4091. - serializedVersion: 2
  4092. time: 0
  4093. value: 0
  4094. inSlope: 0
  4095. outSlope: 0
  4096. tangentMode: 0
  4097. - serializedVersion: 2
  4098. time: 1
  4099. value: 0
  4100. inSlope: 0
  4101. outSlope: 0
  4102. tangentMode: 0
  4103. m_PreInfinity: 2
  4104. m_PostInfinity: 2
  4105. m_RotationOrder: 4
  4106. y:
  4107. serializedVersion: 2
  4108. minMaxState: 1
  4109. scalar: 1
  4110. minScalar: 1
  4111. maxCurve:
  4112. serializedVersion: 2
  4113. m_Curve:
  4114. - serializedVersion: 2
  4115. time: 0
  4116. value: 1
  4117. inSlope: 0
  4118. outSlope: 0
  4119. tangentMode: 0
  4120. - serializedVersion: 2
  4121. time: 1
  4122. value: 1
  4123. inSlope: 0
  4124. outSlope: 0
  4125. tangentMode: 0
  4126. m_PreInfinity: 2
  4127. m_PostInfinity: 2
  4128. m_RotationOrder: 4
  4129. minCurve:
  4130. serializedVersion: 2
  4131. m_Curve:
  4132. - serializedVersion: 2
  4133. time: 0
  4134. value: 0
  4135. inSlope: 0
  4136. outSlope: 0
  4137. tangentMode: 0
  4138. - serializedVersion: 2
  4139. time: 1
  4140. value: 0
  4141. inSlope: 0
  4142. outSlope: 0
  4143. tangentMode: 0
  4144. m_PreInfinity: 2
  4145. m_PostInfinity: 2
  4146. m_RotationOrder: 4
  4147. z:
  4148. serializedVersion: 2
  4149. minMaxState: 1
  4150. scalar: 1
  4151. minScalar: 1
  4152. maxCurve:
  4153. serializedVersion: 2
  4154. m_Curve:
  4155. - serializedVersion: 2
  4156. time: 0
  4157. value: 1
  4158. inSlope: 0
  4159. outSlope: 0
  4160. tangentMode: 0
  4161. - serializedVersion: 2
  4162. time: 1
  4163. value: 1
  4164. inSlope: 0
  4165. outSlope: 0
  4166. tangentMode: 0
  4167. m_PreInfinity: 2
  4168. m_PostInfinity: 2
  4169. m_RotationOrder: 4
  4170. minCurve:
  4171. serializedVersion: 2
  4172. m_Curve:
  4173. - serializedVersion: 2
  4174. time: 0
  4175. value: 0
  4176. inSlope: 0
  4177. outSlope: 0
  4178. tangentMode: 0
  4179. - serializedVersion: 2
  4180. time: 1
  4181. value: 0
  4182. inSlope: 0
  4183. outSlope: 0
  4184. tangentMode: 0
  4185. m_PreInfinity: 2
  4186. m_PostInfinity: 2
  4187. m_RotationOrder: 4
  4188. separateAxes: 0
  4189. RotationModule:
  4190. enabled: 0
  4191. x:
  4192. serializedVersion: 2
  4193. minMaxState: 0
  4194. scalar: 0
  4195. minScalar: 0
  4196. maxCurve:
  4197. serializedVersion: 2
  4198. m_Curve:
  4199. - serializedVersion: 2
  4200. time: 0
  4201. value: 1
  4202. inSlope: 0
  4203. outSlope: 0
  4204. tangentMode: 0
  4205. - serializedVersion: 2
  4206. time: 1
  4207. value: 1
  4208. inSlope: 0
  4209. outSlope: 0
  4210. tangentMode: 0
  4211. m_PreInfinity: 2
  4212. m_PostInfinity: 2
  4213. m_RotationOrder: 4
  4214. minCurve:
  4215. serializedVersion: 2
  4216. m_Curve:
  4217. - serializedVersion: 2
  4218. time: 0
  4219. value: 0
  4220. inSlope: 0
  4221. outSlope: 0
  4222. tangentMode: 0
  4223. - serializedVersion: 2
  4224. time: 1
  4225. value: 0
  4226. inSlope: 0
  4227. outSlope: 0
  4228. tangentMode: 0
  4229. m_PreInfinity: 2
  4230. m_PostInfinity: 2
  4231. m_RotationOrder: 4
  4232. y:
  4233. serializedVersion: 2
  4234. minMaxState: 0
  4235. scalar: 0
  4236. minScalar: 0
  4237. maxCurve:
  4238. serializedVersion: 2
  4239. m_Curve:
  4240. - serializedVersion: 2
  4241. time: 0
  4242. value: 1
  4243. inSlope: 0
  4244. outSlope: 0
  4245. tangentMode: 0
  4246. - serializedVersion: 2
  4247. time: 1
  4248. value: 1
  4249. inSlope: 0
  4250. outSlope: 0
  4251. tangentMode: 0
  4252. m_PreInfinity: 2
  4253. m_PostInfinity: 2
  4254. m_RotationOrder: 4
  4255. minCurve:
  4256. serializedVersion: 2
  4257. m_Curve:
  4258. - serializedVersion: 2
  4259. time: 0
  4260. value: 0
  4261. inSlope: 0
  4262. outSlope: 0
  4263. tangentMode: 0
  4264. - serializedVersion: 2
  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. curve:
  4274. serializedVersion: 2
  4275. minMaxState: 0
  4276. scalar: 6.283185
  4277. minScalar: 0.7853982
  4278. maxCurve:
  4279. serializedVersion: 2
  4280. m_Curve:
  4281. - serializedVersion: 2
  4282. time: 0
  4283. value: 1
  4284. inSlope: 0
  4285. outSlope: 0
  4286. tangentMode: 0
  4287. - serializedVersion: 2
  4288. time: 1
  4289. value: 1
  4290. inSlope: 0
  4291. outSlope: 0
  4292. tangentMode: 0
  4293. m_PreInfinity: 2
  4294. m_PostInfinity: 2
  4295. m_RotationOrder: 4
  4296. minCurve:
  4297. serializedVersion: 2
  4298. m_Curve:
  4299. - serializedVersion: 2
  4300. time: 0
  4301. value: 0
  4302. inSlope: 0
  4303. outSlope: 0
  4304. tangentMode: 0
  4305. - serializedVersion: 2
  4306. time: 1
  4307. value: 0
  4308. inSlope: 0
  4309. outSlope: 0
  4310. tangentMode: 0
  4311. m_PreInfinity: 2
  4312. m_PostInfinity: 2
  4313. m_RotationOrder: 4
  4314. separateAxes: 0
  4315. ColorModule:
  4316. enabled: 1
  4317. gradient:
  4318. serializedVersion: 2
  4319. minMaxState: 1
  4320. minColor: {r: 1, g: 1, b: 1, a: 1}
  4321. maxColor: {r: 1, g: 1, b: 1, a: 1}
  4322. maxGradient:
  4323. serializedVersion: 2
  4324. key0: {r: 1, g: 1, b: 1, a: 1}
  4325. key1: {r: 1, g: 1, b: 1, a: 0}
  4326. key2: {r: 0, g: 0, b: 0, a: 0}
  4327. key3: {r: 0, g: 0, b: 0, a: 0}
  4328. key4: {r: 0, g: 0, b: 0, a: 0}
  4329. key5: {r: 0, g: 0, b: 0, a: 0}
  4330. key6: {r: 0, g: 0, b: 0, a: 0}
  4331. key7: {r: 0, g: 0, b: 0, a: 0}
  4332. ctime0: 0
  4333. ctime1: 65535
  4334. ctime2: 0
  4335. ctime3: 0
  4336. ctime4: 0
  4337. ctime5: 0
  4338. ctime6: 0
  4339. ctime7: 0
  4340. atime0: 0
  4341. atime1: 65535
  4342. atime2: 0
  4343. atime3: 0
  4344. atime4: 0
  4345. atime5: 0
  4346. atime6: 0
  4347. atime7: 0
  4348. m_Mode: 0
  4349. m_NumColorKeys: 2
  4350. m_NumAlphaKeys: 2
  4351. minGradient:
  4352. serializedVersion: 2
  4353. key0: {r: 1, g: 1, b: 1, a: 1}
  4354. key1: {r: 1, g: 1, b: 1, a: 1}
  4355. key2: {r: 0, g: 0, b: 0, a: 0}
  4356. key3: {r: 0, g: 0, b: 0, a: 0}
  4357. key4: {r: 0, g: 0, b: 0, a: 0}
  4358. key5: {r: 0, g: 0, b: 0, a: 0}
  4359. key6: {r: 0, g: 0, b: 0, a: 0}
  4360. key7: {r: 0, g: 0, b: 0, a: 0}
  4361. ctime0: 0
  4362. ctime1: 65535
  4363. ctime2: 0
  4364. ctime3: 0
  4365. ctime4: 0
  4366. ctime5: 0
  4367. ctime6: 0
  4368. ctime7: 0
  4369. atime0: 0
  4370. atime1: 65535
  4371. atime2: 0
  4372. atime3: 0
  4373. atime4: 0
  4374. atime5: 0
  4375. atime6: 0
  4376. atime7: 0
  4377. m_Mode: 0
  4378. m_NumColorKeys: 2
  4379. m_NumAlphaKeys: 2
  4380. UVModule:
  4381. enabled: 0
  4382. mode: 0
  4383. frameOverTime:
  4384. serializedVersion: 2
  4385. minMaxState: 1
  4386. scalar: 0.9999
  4387. minScalar: 0.9999
  4388. maxCurve:
  4389. serializedVersion: 2
  4390. m_Curve:
  4391. - serializedVersion: 2
  4392. time: 0
  4393. value: 0
  4394. inSlope: 0
  4395. outSlope: 1
  4396. tangentMode: 0
  4397. - serializedVersion: 2
  4398. time: 1
  4399. value: 1
  4400. inSlope: 1
  4401. outSlope: 0
  4402. tangentMode: 0
  4403. m_PreInfinity: 2
  4404. m_PostInfinity: 2
  4405. m_RotationOrder: 4
  4406. minCurve:
  4407. serializedVersion: 2
  4408. m_Curve:
  4409. - serializedVersion: 2
  4410. time: 0
  4411. value: 0
  4412. inSlope: 0
  4413. outSlope: 1
  4414. tangentMode: 0
  4415. - serializedVersion: 2
  4416. time: 1
  4417. value: 1
  4418. inSlope: 1
  4419. outSlope: 0
  4420. tangentMode: 0
  4421. m_PreInfinity: 2
  4422. m_PostInfinity: 2
  4423. m_RotationOrder: 4
  4424. startFrame:
  4425. serializedVersion: 2
  4426. minMaxState: 0
  4427. scalar: 0
  4428. minScalar: 0
  4429. maxCurve:
  4430. serializedVersion: 2
  4431. m_Curve:
  4432. - serializedVersion: 2
  4433. time: 0
  4434. value: 1
  4435. inSlope: 0
  4436. outSlope: 0
  4437. tangentMode: 0
  4438. - serializedVersion: 2
  4439. time: 1
  4440. value: 1
  4441. inSlope: 0
  4442. outSlope: 0
  4443. tangentMode: 0
  4444. m_PreInfinity: 2
  4445. m_PostInfinity: 2
  4446. m_RotationOrder: 4
  4447. minCurve:
  4448. serializedVersion: 2
  4449. m_Curve:
  4450. - serializedVersion: 2
  4451. time: 0
  4452. value: 0
  4453. inSlope: 0
  4454. outSlope: 0
  4455. tangentMode: 0
  4456. - serializedVersion: 2
  4457. time: 1
  4458. value: 0
  4459. inSlope: 0
  4460. outSlope: 0
  4461. tangentMode: 0
  4462. m_PreInfinity: 2
  4463. m_PostInfinity: 2
  4464. m_RotationOrder: 4
  4465. tilesX: 1
  4466. tilesY: 1
  4467. animationType: 0
  4468. rowIndex: 0
  4469. cycles: 1
  4470. uvChannelMask: -1
  4471. flipU: 0
  4472. flipV: 0
  4473. randomRow: 1
  4474. sprites:
  4475. - sprite: {fileID: 0}
  4476. VelocityModule:
  4477. enabled: 0
  4478. x:
  4479. serializedVersion: 2
  4480. minMaxState: 0
  4481. scalar: 0
  4482. minScalar: 0
  4483. maxCurve:
  4484. serializedVersion: 2
  4485. m_Curve:
  4486. - serializedVersion: 2
  4487. time: 0
  4488. value: 1
  4489. inSlope: 0
  4490. outSlope: 0
  4491. tangentMode: 0
  4492. - serializedVersion: 2
  4493. time: 1
  4494. value: 1
  4495. inSlope: 0
  4496. outSlope: 0
  4497. tangentMode: 0
  4498. m_PreInfinity: 2
  4499. m_PostInfinity: 2
  4500. m_RotationOrder: 4
  4501. minCurve:
  4502. serializedVersion: 2
  4503. m_Curve:
  4504. - serializedVersion: 2
  4505. time: 0
  4506. value: 0
  4507. inSlope: 0
  4508. outSlope: 0
  4509. tangentMode: 0
  4510. - serializedVersion: 2
  4511. time: 1
  4512. value: 0
  4513. inSlope: 0
  4514. outSlope: 0
  4515. tangentMode: 0
  4516. m_PreInfinity: 2
  4517. m_PostInfinity: 2
  4518. m_RotationOrder: 4
  4519. y:
  4520. serializedVersion: 2
  4521. minMaxState: 0
  4522. scalar: 0
  4523. minScalar: 0
  4524. maxCurve:
  4525. serializedVersion: 2
  4526. m_Curve:
  4527. - serializedVersion: 2
  4528. time: 0
  4529. value: 1
  4530. inSlope: 0
  4531. outSlope: 0
  4532. tangentMode: 0
  4533. - serializedVersion: 2
  4534. time: 1
  4535. value: 1
  4536. inSlope: 0
  4537. outSlope: 0
  4538. tangentMode: 0
  4539. m_PreInfinity: 2
  4540. m_PostInfinity: 2
  4541. m_RotationOrder: 4
  4542. minCurve:
  4543. serializedVersion: 2
  4544. m_Curve:
  4545. - serializedVersion: 2
  4546. time: 0
  4547. value: 0
  4548. inSlope: 0
  4549. outSlope: 0
  4550. tangentMode: 0
  4551. - serializedVersion: 2
  4552. time: 1
  4553. value: 0
  4554. inSlope: 0
  4555. outSlope: 0
  4556. tangentMode: 0
  4557. m_PreInfinity: 2
  4558. m_PostInfinity: 2
  4559. m_RotationOrder: 4
  4560. z:
  4561. serializedVersion: 2
  4562. minMaxState: 0
  4563. scalar: 0
  4564. minScalar: 0
  4565. maxCurve:
  4566. serializedVersion: 2
  4567. m_Curve:
  4568. - serializedVersion: 2
  4569. time: 0
  4570. value: 1
  4571. inSlope: 0
  4572. outSlope: 0
  4573. tangentMode: 0
  4574. - serializedVersion: 2
  4575. time: 1
  4576. value: 1
  4577. inSlope: 0
  4578. outSlope: 0
  4579. tangentMode: 0
  4580. m_PreInfinity: 2
  4581. m_PostInfinity: 2
  4582. m_RotationOrder: 4
  4583. minCurve:
  4584. serializedVersion: 2
  4585. m_Curve:
  4586. - serializedVersion: 2
  4587. time: 0
  4588. value: 0
  4589. inSlope: 0
  4590. outSlope: 0
  4591. tangentMode: 0
  4592. - serializedVersion: 2
  4593. time: 1
  4594. value: 0
  4595. inSlope: 0
  4596. outSlope: 0
  4597. tangentMode: 0
  4598. m_PreInfinity: 2
  4599. m_PostInfinity: 2
  4600. m_RotationOrder: 4
  4601. inWorldSpace: 0
  4602. InheritVelocityModule:
  4603. enabled: 0
  4604. m_Mode: 0
  4605. m_Curve:
  4606. serializedVersion: 2
  4607. minMaxState: 0
  4608. scalar: 0
  4609. minScalar: 0
  4610. maxCurve:
  4611. serializedVersion: 2
  4612. m_Curve:
  4613. - serializedVersion: 2
  4614. time: 0
  4615. value: 1
  4616. inSlope: 0
  4617. outSlope: 0
  4618. tangentMode: 0
  4619. - serializedVersion: 2
  4620. time: 1
  4621. value: 1
  4622. inSlope: 0
  4623. outSlope: 0
  4624. tangentMode: 0
  4625. m_PreInfinity: 2
  4626. m_PostInfinity: 2
  4627. m_RotationOrder: 4
  4628. minCurve:
  4629. serializedVersion: 2
  4630. m_Curve:
  4631. - serializedVersion: 2
  4632. time: 0
  4633. value: 0
  4634. inSlope: 0
  4635. outSlope: 0
  4636. tangentMode: 0
  4637. - serializedVersion: 2
  4638. time: 1
  4639. value: 0
  4640. inSlope: 0
  4641. outSlope: 0
  4642. tangentMode: 0
  4643. m_PreInfinity: 2
  4644. m_PostInfinity: 2
  4645. m_RotationOrder: 4
  4646. ForceModule:
  4647. enabled: 0
  4648. x:
  4649. serializedVersion: 2
  4650. minMaxState: 0
  4651. scalar: 0
  4652. minScalar: 0
  4653. maxCurve:
  4654. serializedVersion: 2
  4655. m_Curve:
  4656. - serializedVersion: 2
  4657. time: 0
  4658. value: 1
  4659. inSlope: 0
  4660. outSlope: 0
  4661. tangentMode: 0
  4662. - serializedVersion: 2
  4663. time: 1
  4664. value: 1
  4665. inSlope: 0
  4666. outSlope: 0
  4667. tangentMode: 0
  4668. m_PreInfinity: 2
  4669. m_PostInfinity: 2
  4670. m_RotationOrder: 4
  4671. minCurve:
  4672. serializedVersion: 2
  4673. m_Curve:
  4674. - serializedVersion: 2
  4675. time: 0
  4676. value: 0
  4677. inSlope: 0
  4678. outSlope: 0
  4679. tangentMode: 0
  4680. - serializedVersion: 2
  4681. time: 1
  4682. value: 0
  4683. inSlope: 0
  4684. outSlope: 0
  4685. tangentMode: 0
  4686. m_PreInfinity: 2
  4687. m_PostInfinity: 2
  4688. m_RotationOrder: 4
  4689. y:
  4690. serializedVersion: 2
  4691. minMaxState: 0
  4692. scalar: 0
  4693. minScalar: 0
  4694. maxCurve:
  4695. serializedVersion: 2
  4696. m_Curve:
  4697. - serializedVersion: 2
  4698. time: 0
  4699. value: 1
  4700. inSlope: 0
  4701. outSlope: 0
  4702. tangentMode: 0
  4703. - serializedVersion: 2
  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. - serializedVersion: 2
  4716. time: 0
  4717. value: 0
  4718. inSlope: 0
  4719. outSlope: 0
  4720. tangentMode: 0
  4721. - serializedVersion: 2
  4722. time: 1
  4723. value: 0
  4724. inSlope: 0
  4725. outSlope: 0
  4726. tangentMode: 0
  4727. m_PreInfinity: 2
  4728. m_PostInfinity: 2
  4729. m_RotationOrder: 4
  4730. z:
  4731. serializedVersion: 2
  4732. minMaxState: 0
  4733. scalar: 0
  4734. minScalar: 0
  4735. maxCurve:
  4736. serializedVersion: 2
  4737. m_Curve:
  4738. - serializedVersion: 2
  4739. time: 0
  4740. value: 1
  4741. inSlope: 0
  4742. outSlope: 0
  4743. tangentMode: 0
  4744. - serializedVersion: 2
  4745. time: 1
  4746. value: 1
  4747. inSlope: 0
  4748. outSlope: 0
  4749. tangentMode: 0
  4750. m_PreInfinity: 2
  4751. m_PostInfinity: 2
  4752. m_RotationOrder: 4
  4753. minCurve:
  4754. serializedVersion: 2
  4755. m_Curve:
  4756. - serializedVersion: 2
  4757. time: 0
  4758. value: 0
  4759. inSlope: 0
  4760. outSlope: 0
  4761. tangentMode: 0
  4762. - serializedVersion: 2
  4763. time: 1
  4764. value: 0
  4765. inSlope: 0
  4766. outSlope: 0
  4767. tangentMode: 0
  4768. m_PreInfinity: 2
  4769. m_PostInfinity: 2
  4770. m_RotationOrder: 4
  4771. inWorldSpace: 0
  4772. randomizePerFrame: 0
  4773. ExternalForcesModule:
  4774. enabled: 0
  4775. multiplier: 1
  4776. ClampVelocityModule:
  4777. enabled: 0
  4778. x:
  4779. serializedVersion: 2
  4780. minMaxState: 0
  4781. scalar: 1
  4782. minScalar: 1
  4783. maxCurve:
  4784. serializedVersion: 2
  4785. m_Curve:
  4786. - serializedVersion: 2
  4787. time: 0
  4788. value: 1
  4789. inSlope: 0
  4790. outSlope: 0
  4791. tangentMode: 0
  4792. - serializedVersion: 2
  4793. time: 1
  4794. value: 1
  4795. inSlope: 0
  4796. outSlope: 0
  4797. tangentMode: 0
  4798. m_PreInfinity: 2
  4799. m_PostInfinity: 2
  4800. m_RotationOrder: 4
  4801. minCurve:
  4802. serializedVersion: 2
  4803. m_Curve:
  4804. - serializedVersion: 2
  4805. time: 0
  4806. value: 0
  4807. inSlope: 0
  4808. outSlope: 0
  4809. tangentMode: 0
  4810. - serializedVersion: 2
  4811. time: 1
  4812. value: 0
  4813. inSlope: 0
  4814. outSlope: 0
  4815. tangentMode: 0
  4816. m_PreInfinity: 2
  4817. m_PostInfinity: 2
  4818. m_RotationOrder: 4
  4819. y:
  4820. serializedVersion: 2
  4821. minMaxState: 0
  4822. scalar: 1
  4823. minScalar: 1
  4824. maxCurve:
  4825. serializedVersion: 2
  4826. m_Curve:
  4827. - serializedVersion: 2
  4828. time: 0
  4829. value: 1
  4830. inSlope: 0
  4831. outSlope: 0
  4832. tangentMode: 0
  4833. - serializedVersion: 2
  4834. time: 1
  4835. value: 1
  4836. inSlope: 0
  4837. outSlope: 0
  4838. tangentMode: 0
  4839. m_PreInfinity: 2
  4840. m_PostInfinity: 2
  4841. m_RotationOrder: 4
  4842. minCurve:
  4843. serializedVersion: 2
  4844. m_Curve:
  4845. - serializedVersion: 2
  4846. time: 0
  4847. value: 0
  4848. inSlope: 0
  4849. outSlope: 0
  4850. tangentMode: 0
  4851. - serializedVersion: 2
  4852. time: 1
  4853. value: 0
  4854. inSlope: 0
  4855. outSlope: 0
  4856. tangentMode: 0
  4857. m_PreInfinity: 2
  4858. m_PostInfinity: 2
  4859. m_RotationOrder: 4
  4860. z:
  4861. serializedVersion: 2
  4862. minMaxState: 0
  4863. scalar: 1
  4864. minScalar: 1
  4865. maxCurve:
  4866. serializedVersion: 2
  4867. m_Curve:
  4868. - serializedVersion: 2
  4869. time: 0
  4870. value: 1
  4871. inSlope: 0
  4872. outSlope: 0
  4873. tangentMode: 0
  4874. - serializedVersion: 2
  4875. time: 1
  4876. value: 1
  4877. inSlope: 0
  4878. outSlope: 0
  4879. tangentMode: 0
  4880. m_PreInfinity: 2
  4881. m_PostInfinity: 2
  4882. m_RotationOrder: 4
  4883. minCurve:
  4884. serializedVersion: 2
  4885. m_Curve:
  4886. - serializedVersion: 2
  4887. time: 0
  4888. value: 0
  4889. inSlope: 0
  4890. outSlope: 0
  4891. tangentMode: 0
  4892. - serializedVersion: 2
  4893. time: 1
  4894. value: 0
  4895. inSlope: 0
  4896. outSlope: 0
  4897. tangentMode: 0
  4898. m_PreInfinity: 2
  4899. m_PostInfinity: 2
  4900. m_RotationOrder: 4
  4901. magnitude:
  4902. serializedVersion: 2
  4903. minMaxState: 0
  4904. scalar: 1
  4905. minScalar: 1
  4906. maxCurve:
  4907. serializedVersion: 2
  4908. m_Curve:
  4909. - serializedVersion: 2
  4910. time: 0
  4911. value: 1
  4912. inSlope: 0
  4913. outSlope: 0
  4914. tangentMode: 0
  4915. - serializedVersion: 2
  4916. time: 1
  4917. value: 1
  4918. inSlope: 0
  4919. outSlope: 0
  4920. tangentMode: 0
  4921. m_PreInfinity: 2
  4922. m_PostInfinity: 2
  4923. m_RotationOrder: 4
  4924. minCurve:
  4925. serializedVersion: 2
  4926. m_Curve:
  4927. - serializedVersion: 2
  4928. time: 0
  4929. value: 0
  4930. inSlope: 0
  4931. outSlope: 0
  4932. tangentMode: 0
  4933. - serializedVersion: 2
  4934. time: 1
  4935. value: 0
  4936. inSlope: 0
  4937. outSlope: 0
  4938. tangentMode: 0
  4939. m_PreInfinity: 2
  4940. m_PostInfinity: 2
  4941. m_RotationOrder: 4
  4942. separateAxis: 0
  4943. inWorldSpace: 0
  4944. multiplyDragByParticleSize: 1
  4945. multiplyDragByParticleVelocity: 1
  4946. dampen: 1
  4947. drag:
  4948. serializedVersion: 2
  4949. minMaxState: 0
  4950. scalar: 0
  4951. minScalar: 0
  4952. maxCurve:
  4953. serializedVersion: 2
  4954. m_Curve:
  4955. - serializedVersion: 2
  4956. time: 0
  4957. value: 0
  4958. inSlope: 0
  4959. outSlope: 0
  4960. tangentMode: 0
  4961. - serializedVersion: 2
  4962. time: 1
  4963. value: 0
  4964. inSlope: 0
  4965. outSlope: 0
  4966. tangentMode: 0
  4967. m_PreInfinity: 2
  4968. m_PostInfinity: 2
  4969. m_RotationOrder: 4
  4970. minCurve:
  4971. serializedVersion: 2
  4972. m_Curve:
  4973. - serializedVersion: 2
  4974. time: 0
  4975. value: 0
  4976. inSlope: 0
  4977. outSlope: 0
  4978. tangentMode: 0
  4979. - serializedVersion: 2
  4980. time: 1
  4981. value: 0
  4982. inSlope: 0
  4983. outSlope: 0
  4984. tangentMode: 0
  4985. m_PreInfinity: 2
  4986. m_PostInfinity: 2
  4987. m_RotationOrder: 4
  4988. NoiseModule:
  4989. enabled: 0
  4990. strength:
  4991. serializedVersion: 2
  4992. minMaxState: 0
  4993. scalar: 1
  4994. minScalar: 1
  4995. maxCurve:
  4996. serializedVersion: 2
  4997. m_Curve:
  4998. - serializedVersion: 2
  4999. time: 0
  5000. value: 1
  5001. inSlope: 0
  5002. outSlope: 0
  5003. tangentMode: 0
  5004. - serializedVersion: 2
  5005. time: 1
  5006. value: 1
  5007. inSlope: 0
  5008. outSlope: 0
  5009. tangentMode: 0
  5010. m_PreInfinity: 2
  5011. m_PostInfinity: 2
  5012. m_RotationOrder: 4
  5013. minCurve:
  5014. serializedVersion: 2
  5015. m_Curve:
  5016. - serializedVersion: 2
  5017. time: 0
  5018. value: 0
  5019. inSlope: 0
  5020. outSlope: 0
  5021. tangentMode: 0
  5022. - serializedVersion: 2
  5023. time: 1
  5024. value: 0
  5025. inSlope: 0
  5026. outSlope: 0
  5027. tangentMode: 0
  5028. m_PreInfinity: 2
  5029. m_PostInfinity: 2
  5030. m_RotationOrder: 4
  5031. strengthY:
  5032. serializedVersion: 2
  5033. minMaxState: 0
  5034. scalar: 1
  5035. minScalar: 1
  5036. maxCurve:
  5037. serializedVersion: 2
  5038. m_Curve:
  5039. - serializedVersion: 2
  5040. time: 0
  5041. value: 1
  5042. inSlope: 0
  5043. outSlope: 0
  5044. tangentMode: 0
  5045. - serializedVersion: 2
  5046. time: 1
  5047. value: 1
  5048. inSlope: 0
  5049. outSlope: 0
  5050. tangentMode: 0
  5051. m_PreInfinity: 2
  5052. m_PostInfinity: 2
  5053. m_RotationOrder: 4
  5054. minCurve:
  5055. serializedVersion: 2
  5056. m_Curve:
  5057. - serializedVersion: 2
  5058. time: 0
  5059. value: 0
  5060. inSlope: 0
  5061. outSlope: 0
  5062. tangentMode: 0
  5063. - serializedVersion: 2
  5064. time: 1
  5065. value: 0
  5066. inSlope: 0
  5067. outSlope: 0
  5068. tangentMode: 0
  5069. m_PreInfinity: 2
  5070. m_PostInfinity: 2
  5071. m_RotationOrder: 4
  5072. strengthZ:
  5073. serializedVersion: 2
  5074. minMaxState: 0
  5075. scalar: 1
  5076. minScalar: 1
  5077. maxCurve:
  5078. serializedVersion: 2
  5079. m_Curve:
  5080. - serializedVersion: 2
  5081. time: 0
  5082. value: 1
  5083. inSlope: 0
  5084. outSlope: 0
  5085. tangentMode: 0
  5086. - serializedVersion: 2
  5087. time: 1
  5088. value: 1
  5089. inSlope: 0
  5090. outSlope: 0
  5091. tangentMode: 0
  5092. m_PreInfinity: 2
  5093. m_PostInfinity: 2
  5094. m_RotationOrder: 4
  5095. minCurve:
  5096. serializedVersion: 2
  5097. m_Curve:
  5098. - serializedVersion: 2
  5099. time: 0
  5100. value: 0
  5101. inSlope: 0
  5102. outSlope: 0
  5103. tangentMode: 0
  5104. - serializedVersion: 2
  5105. time: 1
  5106. value: 0
  5107. inSlope: 0
  5108. outSlope: 0
  5109. tangentMode: 0
  5110. m_PreInfinity: 2
  5111. m_PostInfinity: 2
  5112. m_RotationOrder: 4
  5113. separateAxes: 0
  5114. frequency: 0.5
  5115. damping: 1
  5116. octaves: 1
  5117. octaveMultiplier: 0.5
  5118. octaveScale: 2
  5119. quality: 2
  5120. scrollSpeed:
  5121. serializedVersion: 2
  5122. minMaxState: 0
  5123. scalar: 0
  5124. minScalar: 0
  5125. maxCurve:
  5126. serializedVersion: 2
  5127. m_Curve:
  5128. - serializedVersion: 2
  5129. time: 0
  5130. value: 1
  5131. inSlope: 0
  5132. outSlope: 0
  5133. tangentMode: 0
  5134. - serializedVersion: 2
  5135. time: 1
  5136. value: 1
  5137. inSlope: 0
  5138. outSlope: 0
  5139. tangentMode: 0
  5140. m_PreInfinity: 2
  5141. m_PostInfinity: 2
  5142. m_RotationOrder: 4
  5143. minCurve:
  5144. serializedVersion: 2
  5145. m_Curve:
  5146. - serializedVersion: 2
  5147. time: 0
  5148. value: 0
  5149. inSlope: 0
  5150. outSlope: 0
  5151. tangentMode: 0
  5152. - serializedVersion: 2
  5153. time: 1
  5154. value: 0
  5155. inSlope: 0
  5156. outSlope: 0
  5157. tangentMode: 0
  5158. m_PreInfinity: 2
  5159. m_PostInfinity: 2
  5160. m_RotationOrder: 4
  5161. remap:
  5162. serializedVersion: 2
  5163. minMaxState: 1
  5164. scalar: 1
  5165. minScalar: 1
  5166. maxCurve:
  5167. serializedVersion: 2
  5168. m_Curve:
  5169. - serializedVersion: 2
  5170. time: 0
  5171. value: -1
  5172. inSlope: 0
  5173. outSlope: 2
  5174. tangentMode: 0
  5175. - serializedVersion: 2
  5176. time: 1
  5177. value: 1
  5178. inSlope: 2
  5179. outSlope: 0
  5180. tangentMode: 0
  5181. m_PreInfinity: 2
  5182. m_PostInfinity: 2
  5183. m_RotationOrder: 4
  5184. minCurve:
  5185. serializedVersion: 2
  5186. m_Curve:
  5187. - serializedVersion: 2
  5188. time: 0
  5189. value: 0
  5190. inSlope: 0
  5191. outSlope: 0
  5192. tangentMode: 0
  5193. - serializedVersion: 2
  5194. time: 1
  5195. value: 0
  5196. inSlope: 0
  5197. outSlope: 0
  5198. tangentMode: 0
  5199. m_PreInfinity: 2
  5200. m_PostInfinity: 2
  5201. m_RotationOrder: 4
  5202. remapY:
  5203. serializedVersion: 2
  5204. minMaxState: 1
  5205. scalar: 1
  5206. minScalar: 1
  5207. maxCurve:
  5208. serializedVersion: 2
  5209. m_Curve:
  5210. - serializedVersion: 2
  5211. time: 0
  5212. value: -1
  5213. inSlope: 0
  5214. outSlope: 2
  5215. tangentMode: 0
  5216. - serializedVersion: 2
  5217. time: 1
  5218. value: 1
  5219. inSlope: 2
  5220. outSlope: 0
  5221. tangentMode: 0
  5222. m_PreInfinity: 2
  5223. m_PostInfinity: 2
  5224. m_RotationOrder: 4
  5225. minCurve:
  5226. serializedVersion: 2
  5227. m_Curve:
  5228. - serializedVersion: 2
  5229. time: 0
  5230. value: 0
  5231. inSlope: 0
  5232. outSlope: 0
  5233. tangentMode: 0
  5234. - serializedVersion: 2
  5235. time: 1
  5236. value: 0
  5237. inSlope: 0
  5238. outSlope: 0
  5239. tangentMode: 0
  5240. m_PreInfinity: 2
  5241. m_PostInfinity: 2
  5242. m_RotationOrder: 4
  5243. remapZ:
  5244. serializedVersion: 2
  5245. minMaxState: 1
  5246. scalar: 1
  5247. minScalar: 1
  5248. maxCurve:
  5249. serializedVersion: 2
  5250. m_Curve:
  5251. - serializedVersion: 2
  5252. time: 0
  5253. value: -1
  5254. inSlope: 0
  5255. outSlope: 2
  5256. tangentMode: 0
  5257. - serializedVersion: 2
  5258. time: 1
  5259. value: 1
  5260. inSlope: 2
  5261. outSlope: 0
  5262. tangentMode: 0
  5263. m_PreInfinity: 2
  5264. m_PostInfinity: 2
  5265. m_RotationOrder: 4
  5266. minCurve:
  5267. serializedVersion: 2
  5268. m_Curve:
  5269. - serializedVersion: 2
  5270. time: 0
  5271. value: 0
  5272. inSlope: 0
  5273. outSlope: 0
  5274. tangentMode: 0
  5275. - serializedVersion: 2
  5276. time: 1
  5277. value: 0
  5278. inSlope: 0
  5279. outSlope: 0
  5280. tangentMode: 0
  5281. m_PreInfinity: 2
  5282. m_PostInfinity: 2
  5283. m_RotationOrder: 4
  5284. remapEnabled: 0
  5285. positionAmount:
  5286. serializedVersion: 2
  5287. minMaxState: 0
  5288. scalar: 1
  5289. minScalar: 1
  5290. maxCurve:
  5291. serializedVersion: 2
  5292. m_Curve:
  5293. - serializedVersion: 2
  5294. time: 0
  5295. value: 1
  5296. inSlope: 0
  5297. outSlope: 0
  5298. tangentMode: 0
  5299. - serializedVersion: 2
  5300. time: 1
  5301. value: 1
  5302. inSlope: 0
  5303. outSlope: 0
  5304. tangentMode: 0
  5305. m_PreInfinity: 2
  5306. m_PostInfinity: 2
  5307. m_RotationOrder: 4
  5308. minCurve:
  5309. serializedVersion: 2
  5310. m_Curve:
  5311. - serializedVersion: 2
  5312. time: 0
  5313. value: 1
  5314. inSlope: 0
  5315. outSlope: 0
  5316. tangentMode: 0
  5317. - serializedVersion: 2
  5318. time: 1
  5319. value: 1
  5320. inSlope: 0
  5321. outSlope: 0
  5322. tangentMode: 0
  5323. m_PreInfinity: 2
  5324. m_PostInfinity: 2
  5325. m_RotationOrder: 4
  5326. rotationAmount:
  5327. serializedVersion: 2
  5328. minMaxState: 0
  5329. scalar: 0
  5330. minScalar: 0
  5331. maxCurve:
  5332. serializedVersion: 2
  5333. m_Curve:
  5334. - serializedVersion: 2
  5335. time: 0
  5336. value: 0
  5337. inSlope: 0
  5338. outSlope: 0
  5339. tangentMode: 0
  5340. - serializedVersion: 2
  5341. time: 1
  5342. value: 0
  5343. inSlope: 0
  5344. outSlope: 0
  5345. tangentMode: 0
  5346. m_PreInfinity: 2
  5347. m_PostInfinity: 2
  5348. m_RotationOrder: 4
  5349. minCurve:
  5350. serializedVersion: 2
  5351. m_Curve:
  5352. - serializedVersion: 2
  5353. time: 0
  5354. value: 0
  5355. inSlope: 0
  5356. outSlope: 0
  5357. tangentMode: 0
  5358. - serializedVersion: 2
  5359. time: 1
  5360. value: 0
  5361. inSlope: 0
  5362. outSlope: 0
  5363. tangentMode: 0
  5364. m_PreInfinity: 2
  5365. m_PostInfinity: 2
  5366. m_RotationOrder: 4
  5367. sizeAmount:
  5368. serializedVersion: 2
  5369. minMaxState: 0
  5370. scalar: 0
  5371. minScalar: 0
  5372. maxCurve:
  5373. serializedVersion: 2
  5374. m_Curve:
  5375. - serializedVersion: 2
  5376. time: 0
  5377. value: 0
  5378. inSlope: 0
  5379. outSlope: 0
  5380. tangentMode: 0
  5381. - serializedVersion: 2
  5382. time: 1
  5383. value: 0
  5384. inSlope: 0
  5385. outSlope: 0
  5386. tangentMode: 0
  5387. m_PreInfinity: 2
  5388. m_PostInfinity: 2
  5389. m_RotationOrder: 4
  5390. minCurve:
  5391. serializedVersion: 2
  5392. m_Curve:
  5393. - serializedVersion: 2
  5394. time: 0
  5395. value: 0
  5396. inSlope: 0
  5397. outSlope: 0
  5398. tangentMode: 0
  5399. - serializedVersion: 2
  5400. time: 1
  5401. value: 0
  5402. inSlope: 0
  5403. outSlope: 0
  5404. tangentMode: 0
  5405. m_PreInfinity: 2
  5406. m_PostInfinity: 2
  5407. m_RotationOrder: 4
  5408. SizeBySpeedModule:
  5409. enabled: 0
  5410. curve:
  5411. serializedVersion: 2
  5412. minMaxState: 1
  5413. scalar: 1
  5414. minScalar: 1
  5415. maxCurve:
  5416. serializedVersion: 2
  5417. m_Curve:
  5418. - serializedVersion: 2
  5419. time: 0
  5420. value: 1
  5421. inSlope: 0
  5422. outSlope: 0
  5423. tangentMode: 0
  5424. - serializedVersion: 2
  5425. time: 1
  5426. value: 1
  5427. inSlope: 0
  5428. outSlope: 0
  5429. tangentMode: 0
  5430. m_PreInfinity: 2
  5431. m_PostInfinity: 2
  5432. m_RotationOrder: 4
  5433. minCurve:
  5434. serializedVersion: 2
  5435. m_Curve:
  5436. - serializedVersion: 2
  5437. time: 0
  5438. value: 0
  5439. inSlope: 0
  5440. outSlope: 0
  5441. tangentMode: 0
  5442. - serializedVersion: 2
  5443. time: 1
  5444. value: 0
  5445. inSlope: 0
  5446. outSlope: 0
  5447. tangentMode: 0
  5448. m_PreInfinity: 2
  5449. m_PostInfinity: 2
  5450. m_RotationOrder: 4
  5451. y:
  5452. serializedVersion: 2
  5453. minMaxState: 1
  5454. scalar: 1
  5455. minScalar: 1
  5456. maxCurve:
  5457. serializedVersion: 2
  5458. m_Curve:
  5459. - serializedVersion: 2
  5460. time: 0
  5461. value: 1
  5462. inSlope: 0
  5463. outSlope: 0
  5464. tangentMode: 0
  5465. - serializedVersion: 2
  5466. time: 1
  5467. value: 1
  5468. inSlope: 0
  5469. outSlope: 0
  5470. tangentMode: 0
  5471. m_PreInfinity: 2
  5472. m_PostInfinity: 2
  5473. m_RotationOrder: 4
  5474. minCurve:
  5475. serializedVersion: 2
  5476. m_Curve:
  5477. - serializedVersion: 2
  5478. time: 0
  5479. value: 0
  5480. inSlope: 0
  5481. outSlope: 0
  5482. tangentMode: 0
  5483. - serializedVersion: 2
  5484. time: 1
  5485. value: 0
  5486. inSlope: 0
  5487. outSlope: 0
  5488. tangentMode: 0
  5489. m_PreInfinity: 2
  5490. m_PostInfinity: 2
  5491. m_RotationOrder: 4
  5492. z:
  5493. serializedVersion: 2
  5494. minMaxState: 1
  5495. scalar: 1
  5496. minScalar: 1
  5497. maxCurve:
  5498. serializedVersion: 2
  5499. m_Curve:
  5500. - serializedVersion: 2
  5501. time: 0
  5502. value: 1
  5503. inSlope: 0
  5504. outSlope: 0
  5505. tangentMode: 0
  5506. - serializedVersion: 2
  5507. time: 1
  5508. value: 1
  5509. inSlope: 0
  5510. outSlope: 0
  5511. tangentMode: 0
  5512. m_PreInfinity: 2
  5513. m_PostInfinity: 2
  5514. m_RotationOrder: 4
  5515. minCurve:
  5516. serializedVersion: 2
  5517. m_Curve:
  5518. - serializedVersion: 2
  5519. time: 0
  5520. value: 0
  5521. inSlope: 0
  5522. outSlope: 0
  5523. tangentMode: 0
  5524. - serializedVersion: 2
  5525. time: 1
  5526. value: 0
  5527. inSlope: 0
  5528. outSlope: 0
  5529. tangentMode: 0
  5530. m_PreInfinity: 2
  5531. m_PostInfinity: 2
  5532. m_RotationOrder: 4
  5533. range: {x: 0, y: 1}
  5534. separateAxes: 0
  5535. RotationBySpeedModule:
  5536. enabled: 0
  5537. x:
  5538. serializedVersion: 2
  5539. minMaxState: 0
  5540. scalar: 0
  5541. minScalar: 0
  5542. maxCurve:
  5543. serializedVersion: 2
  5544. m_Curve:
  5545. - serializedVersion: 2
  5546. time: 0
  5547. value: 1
  5548. inSlope: 0
  5549. outSlope: 0
  5550. tangentMode: 0
  5551. - serializedVersion: 2
  5552. time: 1
  5553. value: 1
  5554. inSlope: 0
  5555. outSlope: 0
  5556. tangentMode: 0
  5557. m_PreInfinity: 2
  5558. m_PostInfinity: 2
  5559. m_RotationOrder: 4
  5560. minCurve:
  5561. serializedVersion: 2
  5562. m_Curve:
  5563. - serializedVersion: 2
  5564. time: 0
  5565. value: 0
  5566. inSlope: 0
  5567. outSlope: 0
  5568. tangentMode: 0
  5569. - serializedVersion: 2
  5570. time: 1
  5571. value: 0
  5572. inSlope: 0
  5573. outSlope: 0
  5574. tangentMode: 0
  5575. m_PreInfinity: 2
  5576. m_PostInfinity: 2
  5577. m_RotationOrder: 4
  5578. y:
  5579. serializedVersion: 2
  5580. minMaxState: 0
  5581. scalar: 0
  5582. minScalar: 0
  5583. maxCurve:
  5584. serializedVersion: 2
  5585. m_Curve:
  5586. - serializedVersion: 2
  5587. time: 0
  5588. value: 1
  5589. inSlope: 0
  5590. outSlope: 0
  5591. tangentMode: 0
  5592. - serializedVersion: 2
  5593. time: 1
  5594. value: 1
  5595. inSlope: 0
  5596. outSlope: 0
  5597. tangentMode: 0
  5598. m_PreInfinity: 2
  5599. m_PostInfinity: 2
  5600. m_RotationOrder: 4
  5601. minCurve:
  5602. serializedVersion: 2
  5603. m_Curve:
  5604. - serializedVersion: 2
  5605. time: 0
  5606. value: 0
  5607. inSlope: 0
  5608. outSlope: 0
  5609. tangentMode: 0
  5610. - serializedVersion: 2
  5611. time: 1
  5612. value: 0
  5613. inSlope: 0
  5614. outSlope: 0
  5615. tangentMode: 0
  5616. m_PreInfinity: 2
  5617. m_PostInfinity: 2
  5618. m_RotationOrder: 4
  5619. curve:
  5620. serializedVersion: 2
  5621. minMaxState: 0
  5622. scalar: 0.7853982
  5623. minScalar: 0.7853982
  5624. maxCurve:
  5625. serializedVersion: 2
  5626. m_Curve:
  5627. - serializedVersion: 2
  5628. time: 0
  5629. value: 1
  5630. inSlope: 0
  5631. outSlope: 0
  5632. tangentMode: 0
  5633. - serializedVersion: 2
  5634. time: 1
  5635. value: 1
  5636. inSlope: 0
  5637. outSlope: 0
  5638. tangentMode: 0
  5639. m_PreInfinity: 2
  5640. m_PostInfinity: 2
  5641. m_RotationOrder: 4
  5642. minCurve:
  5643. serializedVersion: 2
  5644. m_Curve:
  5645. - serializedVersion: 2
  5646. time: 0
  5647. value: 0
  5648. inSlope: 0
  5649. outSlope: 0
  5650. tangentMode: 0
  5651. - serializedVersion: 2
  5652. time: 1
  5653. value: 0
  5654. inSlope: 0
  5655. outSlope: 0
  5656. tangentMode: 0
  5657. m_PreInfinity: 2
  5658. m_PostInfinity: 2
  5659. m_RotationOrder: 4
  5660. separateAxes: 0
  5661. range: {x: 0, y: 1}
  5662. ColorBySpeedModule:
  5663. enabled: 0
  5664. gradient:
  5665. serializedVersion: 2
  5666. minMaxState: 1
  5667. minColor: {r: 1, g: 1, b: 1, a: 1}
  5668. maxColor: {r: 1, g: 1, b: 1, a: 1}
  5669. maxGradient:
  5670. serializedVersion: 2
  5671. key0: {r: 1, g: 1, b: 1, a: 1}
  5672. key1: {r: 1, g: 1, b: 1, a: 1}
  5673. key2: {r: 0, g: 0, b: 0, a: 0}
  5674. key3: {r: 0, g: 0, b: 0, a: 0}
  5675. key4: {r: 0, g: 0, b: 0, a: 0}
  5676. key5: {r: 0, g: 0, b: 0, a: 0}
  5677. key6: {r: 0, g: 0, b: 0, a: 0}
  5678. key7: {r: 0, g: 0, b: 0, a: 0}
  5679. ctime0: 0
  5680. ctime1: 65535
  5681. ctime2: 0
  5682. ctime3: 0
  5683. ctime4: 0
  5684. ctime5: 0
  5685. ctime6: 0
  5686. ctime7: 0
  5687. atime0: 0
  5688. atime1: 65535
  5689. atime2: 0
  5690. atime3: 0
  5691. atime4: 0
  5692. atime5: 0
  5693. atime6: 0
  5694. atime7: 0
  5695. m_Mode: 0
  5696. m_NumColorKeys: 2
  5697. m_NumAlphaKeys: 2
  5698. minGradient:
  5699. serializedVersion: 2
  5700. key0: {r: 1, g: 1, b: 1, a: 1}
  5701. key1: {r: 1, g: 1, b: 1, a: 1}
  5702. key2: {r: 0, g: 0, b: 0, a: 0}
  5703. key3: {r: 0, g: 0, b: 0, a: 0}
  5704. key4: {r: 0, g: 0, b: 0, a: 0}
  5705. key5: {r: 0, g: 0, b: 0, a: 0}
  5706. key6: {r: 0, g: 0, b: 0, a: 0}
  5707. key7: {r: 0, g: 0, b: 0, a: 0}
  5708. ctime0: 0
  5709. ctime1: 65535
  5710. ctime2: 0
  5711. ctime3: 0
  5712. ctime4: 0
  5713. ctime5: 0
  5714. ctime6: 0
  5715. ctime7: 0
  5716. atime0: 0
  5717. atime1: 65535
  5718. atime2: 0
  5719. atime3: 0
  5720. atime4: 0
  5721. atime5: 0
  5722. atime6: 0
  5723. atime7: 0
  5724. m_Mode: 0
  5725. m_NumColorKeys: 2
  5726. m_NumAlphaKeys: 2
  5727. range: {x: 0, y: 1}
  5728. CollisionModule:
  5729. enabled: 0
  5730. serializedVersion: 3
  5731. type: 0
  5732. collisionMode: 0
  5733. colliderForce: 0
  5734. multiplyColliderForceByParticleSize: 0
  5735. multiplyColliderForceByParticleSpeed: 0
  5736. multiplyColliderForceByCollisionAngle: 1
  5737. plane0: {fileID: 0}
  5738. plane1: {fileID: 0}
  5739. plane2: {fileID: 0}
  5740. plane3: {fileID: 0}
  5741. plane4: {fileID: 0}
  5742. plane5: {fileID: 0}
  5743. m_Dampen:
  5744. serializedVersion: 2
  5745. minMaxState: 0
  5746. scalar: 0
  5747. minScalar: 0
  5748. maxCurve:
  5749. serializedVersion: 2
  5750. m_Curve:
  5751. - serializedVersion: 2
  5752. time: 0
  5753. value: 1
  5754. inSlope: 0
  5755. outSlope: 0
  5756. tangentMode: 0
  5757. - serializedVersion: 2
  5758. time: 1
  5759. value: 1
  5760. inSlope: 0
  5761. outSlope: 0
  5762. tangentMode: 0
  5763. m_PreInfinity: 2
  5764. m_PostInfinity: 2
  5765. m_RotationOrder: 4
  5766. minCurve:
  5767. serializedVersion: 2
  5768. m_Curve:
  5769. - serializedVersion: 2
  5770. time: 0
  5771. value: 0
  5772. inSlope: 0
  5773. outSlope: 0
  5774. tangentMode: 0
  5775. - serializedVersion: 2
  5776. time: 1
  5777. value: 0
  5778. inSlope: 0
  5779. outSlope: 0
  5780. tangentMode: 0
  5781. m_PreInfinity: 2
  5782. m_PostInfinity: 2
  5783. m_RotationOrder: 4
  5784. m_Bounce:
  5785. serializedVersion: 2
  5786. minMaxState: 0
  5787. scalar: 1
  5788. minScalar: 1
  5789. maxCurve:
  5790. serializedVersion: 2
  5791. m_Curve:
  5792. - serializedVersion: 2
  5793. time: 0
  5794. value: 1
  5795. inSlope: 0
  5796. outSlope: 0
  5797. tangentMode: 0
  5798. - serializedVersion: 2
  5799. time: 1
  5800. value: 1
  5801. inSlope: 0
  5802. outSlope: 0
  5803. tangentMode: 0
  5804. m_PreInfinity: 2
  5805. m_PostInfinity: 2
  5806. m_RotationOrder: 4
  5807. minCurve:
  5808. serializedVersion: 2
  5809. m_Curve:
  5810. - serializedVersion: 2
  5811. time: 0
  5812. value: 0
  5813. inSlope: 0
  5814. outSlope: 0
  5815. tangentMode: 0
  5816. - serializedVersion: 2
  5817. time: 1
  5818. value: 0
  5819. inSlope: 0
  5820. outSlope: 0
  5821. tangentMode: 0
  5822. m_PreInfinity: 2
  5823. m_PostInfinity: 2
  5824. m_RotationOrder: 4
  5825. m_EnergyLossOnCollision:
  5826. serializedVersion: 2
  5827. minMaxState: 0
  5828. scalar: 0
  5829. minScalar: 0
  5830. maxCurve:
  5831. serializedVersion: 2
  5832. m_Curve:
  5833. - serializedVersion: 2
  5834. time: 0
  5835. value: 1
  5836. inSlope: 0
  5837. outSlope: 0
  5838. tangentMode: 0
  5839. - serializedVersion: 2
  5840. time: 1
  5841. value: 1
  5842. inSlope: 0
  5843. outSlope: 0
  5844. tangentMode: 0
  5845. m_PreInfinity: 2
  5846. m_PostInfinity: 2
  5847. m_RotationOrder: 4
  5848. minCurve:
  5849. serializedVersion: 2
  5850. m_Curve:
  5851. - serializedVersion: 2
  5852. time: 0
  5853. value: 0
  5854. inSlope: 0
  5855. outSlope: 0
  5856. tangentMode: 0
  5857. - serializedVersion: 2
  5858. time: 1
  5859. value: 0
  5860. inSlope: 0
  5861. outSlope: 0
  5862. tangentMode: 0
  5863. m_PreInfinity: 2
  5864. m_PostInfinity: 2
  5865. m_RotationOrder: 4
  5866. minKillSpeed: 0
  5867. maxKillSpeed: 10000
  5868. radiusScale: 1
  5869. collidesWith:
  5870. serializedVersion: 2
  5871. m_Bits: 4294967295
  5872. maxCollisionShapes: 256
  5873. quality: 0
  5874. voxelSize: 0.5
  5875. collisionMessages: 0
  5876. collidesWithDynamic: 1
  5877. interiorCollisions: 1
  5878. TriggerModule:
  5879. enabled: 0
  5880. collisionShape0: {fileID: 0}
  5881. collisionShape1: {fileID: 0}
  5882. collisionShape2: {fileID: 0}
  5883. collisionShape3: {fileID: 0}
  5884. collisionShape4: {fileID: 0}
  5885. collisionShape5: {fileID: 0}
  5886. inside: 1
  5887. outside: 0
  5888. enter: 0
  5889. exit: 0
  5890. radiusScale: 1
  5891. SubModule:
  5892. serializedVersion: 2
  5893. enabled: 0
  5894. subEmitters:
  5895. - serializedVersion: 2
  5896. emitter: {fileID: 0}
  5897. type: 0
  5898. properties: 4
  5899. LightsModule:
  5900. enabled: 1
  5901. ratio: 0.5
  5902. light: {fileID: 108192328974972184}
  5903. randomDistribution: 1
  5904. color: 1
  5905. range: 1
  5906. intensity: 1
  5907. rangeCurve:
  5908. serializedVersion: 2
  5909. minMaxState: 0
  5910. scalar: 1
  5911. minScalar: 1
  5912. maxCurve:
  5913. serializedVersion: 2
  5914. m_Curve:
  5915. - serializedVersion: 2
  5916. time: 0
  5917. value: 1
  5918. inSlope: 0
  5919. outSlope: 0
  5920. tangentMode: 0
  5921. - serializedVersion: 2
  5922. time: 1
  5923. value: 1
  5924. inSlope: 0
  5925. outSlope: 0
  5926. tangentMode: 0
  5927. m_PreInfinity: 2
  5928. m_PostInfinity: 2
  5929. m_RotationOrder: 4
  5930. minCurve:
  5931. serializedVersion: 2
  5932. m_Curve:
  5933. - serializedVersion: 2
  5934. time: 0
  5935. value: 0
  5936. inSlope: 0
  5937. outSlope: 0
  5938. tangentMode: 0
  5939. - serializedVersion: 2
  5940. time: 1
  5941. value: 0
  5942. inSlope: 0
  5943. outSlope: 0
  5944. tangentMode: 0
  5945. m_PreInfinity: 2
  5946. m_PostInfinity: 2
  5947. m_RotationOrder: 4
  5948. intensityCurve:
  5949. serializedVersion: 2
  5950. minMaxState: 0
  5951. scalar: 1
  5952. minScalar: 1
  5953. maxCurve:
  5954. serializedVersion: 2
  5955. m_Curve:
  5956. - serializedVersion: 2
  5957. time: 0
  5958. value: 1
  5959. inSlope: 0
  5960. outSlope: 0
  5961. tangentMode: 0
  5962. - serializedVersion: 2
  5963. time: 1
  5964. value: 1
  5965. inSlope: 0
  5966. outSlope: 0
  5967. tangentMode: 0
  5968. m_PreInfinity: 2
  5969. m_PostInfinity: 2
  5970. m_RotationOrder: 4
  5971. minCurve:
  5972. serializedVersion: 2
  5973. m_Curve:
  5974. - serializedVersion: 2
  5975. time: 0
  5976. value: 0
  5977. inSlope: 0
  5978. outSlope: 0
  5979. tangentMode: 0
  5980. - serializedVersion: 2
  5981. time: 1
  5982. value: 0
  5983. inSlope: 0
  5984. outSlope: 0
  5985. tangentMode: 0
  5986. m_PreInfinity: 2
  5987. m_PostInfinity: 2
  5988. m_RotationOrder: 4
  5989. maxLights: 20
  5990. TrailModule:
  5991. enabled: 0
  5992. ratio: 1
  5993. lifetime:
  5994. serializedVersion: 2
  5995. minMaxState: 0
  5996. scalar: 1
  5997. minScalar: 1
  5998. maxCurve:
  5999. serializedVersion: 2
  6000. m_Curve:
  6001. - serializedVersion: 2
  6002. time: 0
  6003. value: 1
  6004. inSlope: 0
  6005. outSlope: 0
  6006. tangentMode: 0
  6007. - serializedVersion: 2
  6008. time: 1
  6009. value: 1
  6010. inSlope: 0
  6011. outSlope: 0
  6012. tangentMode: 0
  6013. m_PreInfinity: 2
  6014. m_PostInfinity: 2
  6015. m_RotationOrder: 4
  6016. minCurve:
  6017. serializedVersion: 2
  6018. m_Curve:
  6019. - serializedVersion: 2
  6020. time: 0
  6021. value: 0
  6022. inSlope: 0
  6023. outSlope: 0
  6024. tangentMode: 0
  6025. - serializedVersion: 2
  6026. time: 1
  6027. value: 0
  6028. inSlope: 0
  6029. outSlope: 0
  6030. tangentMode: 0
  6031. m_PreInfinity: 2
  6032. m_PostInfinity: 2
  6033. m_RotationOrder: 4
  6034. minVertexDistance: 0.2
  6035. textureMode: 0
  6036. worldSpace: 0
  6037. dieWithParticles: 1
  6038. sizeAffectsWidth: 1
  6039. sizeAffectsLifetime: 0
  6040. inheritParticleColor: 1
  6041. generateLightingData: 0
  6042. colorOverLifetime:
  6043. serializedVersion: 2
  6044. minMaxState: 0
  6045. minColor: {r: 1, g: 1, b: 1, a: 1}
  6046. maxColor: {r: 1, g: 1, b: 1, a: 1}
  6047. maxGradient:
  6048. serializedVersion: 2
  6049. key0: {r: 1, g: 1, b: 1, a: 1}
  6050. key1: {r: 1, g: 1, b: 1, a: 1}
  6051. key2: {r: 0, g: 0, b: 0, a: 0}
  6052. key3: {r: 0, g: 0, b: 0, a: 0}
  6053. key4: {r: 0, g: 0, b: 0, a: 0}
  6054. key5: {r: 0, g: 0, b: 0, a: 0}
  6055. key6: {r: 0, g: 0, b: 0, a: 0}
  6056. key7: {r: 0, g: 0, b: 0, a: 0}
  6057. ctime0: 0
  6058. ctime1: 65535
  6059. ctime2: 0
  6060. ctime3: 0
  6061. ctime4: 0
  6062. ctime5: 0
  6063. ctime6: 0
  6064. ctime7: 0
  6065. atime0: 0
  6066. atime1: 65535
  6067. atime2: 0
  6068. atime3: 0
  6069. atime4: 0
  6070. atime5: 0
  6071. atime6: 0
  6072. atime7: 0
  6073. m_Mode: 0
  6074. m_NumColorKeys: 2
  6075. m_NumAlphaKeys: 2
  6076. minGradient:
  6077. serializedVersion: 2
  6078. key0: {r: 1, g: 1, b: 1, a: 1}
  6079. key1: {r: 1, g: 1, b: 1, a: 1}
  6080. key2: {r: 0, g: 0, b: 0, a: 0}
  6081. key3: {r: 0, g: 0, b: 0, a: 0}
  6082. key4: {r: 0, g: 0, b: 0, a: 0}
  6083. key5: {r: 0, g: 0, b: 0, a: 0}
  6084. key6: {r: 0, g: 0, b: 0, a: 0}
  6085. key7: {r: 0, g: 0, b: 0, a: 0}
  6086. ctime0: 0
  6087. ctime1: 65535
  6088. ctime2: 0
  6089. ctime3: 0
  6090. ctime4: 0
  6091. ctime5: 0
  6092. ctime6: 0
  6093. ctime7: 0
  6094. atime0: 0
  6095. atime1: 65535
  6096. atime2: 0
  6097. atime3: 0
  6098. atime4: 0
  6099. atime5: 0
  6100. atime6: 0
  6101. atime7: 0
  6102. m_Mode: 0
  6103. m_NumColorKeys: 2
  6104. m_NumAlphaKeys: 2
  6105. widthOverTrail:
  6106. serializedVersion: 2
  6107. minMaxState: 0
  6108. scalar: 1
  6109. minScalar: 1
  6110. maxCurve:
  6111. serializedVersion: 2
  6112. m_Curve:
  6113. - serializedVersion: 2
  6114. time: 0
  6115. value: 1
  6116. inSlope: 0
  6117. outSlope: 0
  6118. tangentMode: 0
  6119. - serializedVersion: 2
  6120. time: 1
  6121. value: 1
  6122. inSlope: 0
  6123. outSlope: 0
  6124. tangentMode: 0
  6125. m_PreInfinity: 2
  6126. m_PostInfinity: 2
  6127. m_RotationOrder: 4
  6128. minCurve:
  6129. serializedVersion: 2
  6130. m_Curve:
  6131. - serializedVersion: 2
  6132. time: 0
  6133. value: 0
  6134. inSlope: 0
  6135. outSlope: 0
  6136. tangentMode: 0
  6137. - serializedVersion: 2
  6138. time: 1
  6139. value: 0
  6140. inSlope: 0
  6141. outSlope: 0
  6142. tangentMode: 0
  6143. m_PreInfinity: 2
  6144. m_PostInfinity: 2
  6145. m_RotationOrder: 4
  6146. colorOverTrail:
  6147. serializedVersion: 2
  6148. minMaxState: 0
  6149. minColor: {r: 1, g: 1, b: 1, a: 1}
  6150. maxColor: {r: 1, g: 1, b: 1, a: 1}
  6151. maxGradient:
  6152. serializedVersion: 2
  6153. key0: {r: 1, g: 1, b: 1, a: 1}
  6154. key1: {r: 1, g: 1, b: 1, a: 1}
  6155. key2: {r: 0, g: 0, b: 0, a: 0}
  6156. key3: {r: 0, g: 0, b: 0, a: 0}
  6157. key4: {r: 0, g: 0, b: 0, a: 0}
  6158. key5: {r: 0, g: 0, b: 0, a: 0}
  6159. key6: {r: 0, g: 0, b: 0, a: 0}
  6160. key7: {r: 0, g: 0, b: 0, a: 0}
  6161. ctime0: 0
  6162. ctime1: 65535
  6163. ctime2: 0
  6164. ctime3: 0
  6165. ctime4: 0
  6166. ctime5: 0
  6167. ctime6: 0
  6168. ctime7: 0
  6169. atime0: 0
  6170. atime1: 65535
  6171. atime2: 0
  6172. atime3: 0
  6173. atime4: 0
  6174. atime5: 0
  6175. atime6: 0
  6176. atime7: 0
  6177. m_Mode: 0
  6178. m_NumColorKeys: 2
  6179. m_NumAlphaKeys: 2
  6180. minGradient:
  6181. serializedVersion: 2
  6182. key0: {r: 1, g: 1, b: 1, a: 1}
  6183. key1: {r: 1, g: 1, b: 1, a: 1}
  6184. key2: {r: 0, g: 0, b: 0, a: 0}
  6185. key3: {r: 0, g: 0, b: 0, a: 0}
  6186. key4: {r: 0, g: 0, b: 0, a: 0}
  6187. key5: {r: 0, g: 0, b: 0, a: 0}
  6188. key6: {r: 0, g: 0, b: 0, a: 0}
  6189. key7: {r: 0, g: 0, b: 0, a: 0}
  6190. ctime0: 0
  6191. ctime1: 65535
  6192. ctime2: 0
  6193. ctime3: 0
  6194. ctime4: 0
  6195. ctime5: 0
  6196. ctime6: 0
  6197. ctime7: 0
  6198. atime0: 0
  6199. atime1: 65535
  6200. atime2: 0
  6201. atime3: 0
  6202. atime4: 0
  6203. atime5: 0
  6204. atime6: 0
  6205. atime7: 0
  6206. m_Mode: 0
  6207. m_NumColorKeys: 2
  6208. m_NumAlphaKeys: 2
  6209. CustomDataModule:
  6210. enabled: 0
  6211. mode0: 0
  6212. vectorComponentCount0: 4
  6213. color0:
  6214. serializedVersion: 2
  6215. minMaxState: 0
  6216. minColor: {r: 1, g: 1, b: 1, a: 1}
  6217. maxColor: {r: 1, g: 1, b: 1, a: 1}
  6218. maxGradient:
  6219. serializedVersion: 2
  6220. key0: {r: 1, g: 1, b: 1, a: 1}
  6221. key1: {r: 1, g: 1, b: 1, a: 1}
  6222. key2: {r: 0, g: 0, b: 0, a: 0}
  6223. key3: {r: 0, g: 0, b: 0, a: 0}
  6224. key4: {r: 0, g: 0, b: 0, a: 0}
  6225. key5: {r: 0, g: 0, b: 0, a: 0}
  6226. key6: {r: 0, g: 0, b: 0, a: 0}
  6227. key7: {r: 0, g: 0, b: 0, a: 0}
  6228. ctime0: 0
  6229. ctime1: 65535
  6230. ctime2: 0
  6231. ctime3: 0
  6232. ctime4: 0
  6233. ctime5: 0
  6234. ctime6: 0
  6235. ctime7: 0
  6236. atime0: 0
  6237. atime1: 65535
  6238. atime2: 0
  6239. atime3: 0
  6240. atime4: 0
  6241. atime5: 0
  6242. atime6: 0
  6243. atime7: 0
  6244. m_Mode: 0
  6245. m_NumColorKeys: 2
  6246. m_NumAlphaKeys: 2
  6247. minGradient:
  6248. serializedVersion: 2
  6249. key0: {r: 1, g: 1, b: 1, a: 1}
  6250. key1: {r: 1, g: 1, b: 1, a: 1}
  6251. key2: {r: 0, g: 0, b: 0, a: 0}
  6252. key3: {r: 0, g: 0, b: 0, a: 0}
  6253. key4: {r: 0, g: 0, b: 0, a: 0}
  6254. key5: {r: 0, g: 0, b: 0, a: 0}
  6255. key6: {r: 0, g: 0, b: 0, a: 0}
  6256. key7: {r: 0, g: 0, b: 0, a: 0}
  6257. ctime0: 0
  6258. ctime1: 65535
  6259. ctime2: 0
  6260. ctime3: 0
  6261. ctime4: 0
  6262. ctime5: 0
  6263. ctime6: 0
  6264. ctime7: 0
  6265. atime0: 0
  6266. atime1: 65535
  6267. atime2: 0
  6268. atime3: 0
  6269. atime4: 0
  6270. atime5: 0
  6271. atime6: 0
  6272. atime7: 0
  6273. m_Mode: 0
  6274. m_NumColorKeys: 2
  6275. m_NumAlphaKeys: 2
  6276. colorLabel0: Color
  6277. vector0_0:
  6278. serializedVersion: 2
  6279. minMaxState: 0
  6280. scalar: 0
  6281. minScalar: 0
  6282. maxCurve:
  6283. serializedVersion: 2
  6284. m_Curve:
  6285. - serializedVersion: 2
  6286. time: 0
  6287. value: 1
  6288. inSlope: 0
  6289. outSlope: 0
  6290. tangentMode: 0
  6291. - serializedVersion: 2
  6292. time: 1
  6293. value: 1
  6294. inSlope: 0
  6295. outSlope: 0
  6296. tangentMode: 0
  6297. m_PreInfinity: 2
  6298. m_PostInfinity: 2
  6299. m_RotationOrder: 4
  6300. minCurve:
  6301. serializedVersion: 2
  6302. m_Curve:
  6303. - serializedVersion: 2
  6304. time: 0
  6305. value: 0
  6306. inSlope: 0
  6307. outSlope: 0
  6308. tangentMode: 0
  6309. - serializedVersion: 2
  6310. time: 1
  6311. value: 0
  6312. inSlope: 0
  6313. outSlope: 0
  6314. tangentMode: 0
  6315. m_PreInfinity: 2
  6316. m_PostInfinity: 2
  6317. m_RotationOrder: 4
  6318. vectorLabel0_0: X
  6319. vector0_1:
  6320. serializedVersion: 2
  6321. minMaxState: 0
  6322. scalar: 0
  6323. minScalar: 0
  6324. maxCurve:
  6325. serializedVersion: 2
  6326. m_Curve:
  6327. - serializedVersion: 2
  6328. time: 0
  6329. value: 1
  6330. inSlope: 0
  6331. outSlope: 0
  6332. tangentMode: 0
  6333. - serializedVersion: 2
  6334. time: 1
  6335. value: 1
  6336. inSlope: 0
  6337. outSlope: 0
  6338. tangentMode: 0
  6339. m_PreInfinity: 2
  6340. m_PostInfinity: 2
  6341. m_RotationOrder: 4
  6342. minCurve:
  6343. serializedVersion: 2
  6344. m_Curve:
  6345. - serializedVersion: 2
  6346. time: 0
  6347. value: 0
  6348. inSlope: 0
  6349. outSlope: 0
  6350. tangentMode: 0
  6351. - serializedVersion: 2
  6352. time: 1
  6353. value: 0
  6354. inSlope: 0
  6355. outSlope: 0
  6356. tangentMode: 0
  6357. m_PreInfinity: 2
  6358. m_PostInfinity: 2
  6359. m_RotationOrder: 4
  6360. vectorLabel0_1: Y
  6361. vector0_2:
  6362. serializedVersion: 2
  6363. minMaxState: 0
  6364. scalar: 0
  6365. minScalar: 0
  6366. maxCurve:
  6367. serializedVersion: 2
  6368. m_Curve:
  6369. - serializedVersion: 2
  6370. time: 0
  6371. value: 1
  6372. inSlope: 0
  6373. outSlope: 0
  6374. tangentMode: 0
  6375. - serializedVersion: 2
  6376. time: 1
  6377. value: 1
  6378. inSlope: 0
  6379. outSlope: 0
  6380. tangentMode: 0
  6381. m_PreInfinity: 2
  6382. m_PostInfinity: 2
  6383. m_RotationOrder: 4
  6384. minCurve:
  6385. serializedVersion: 2
  6386. m_Curve:
  6387. - serializedVersion: 2
  6388. time: 0
  6389. value: 0
  6390. inSlope: 0
  6391. outSlope: 0
  6392. tangentMode: 0
  6393. - serializedVersion: 2
  6394. time: 1
  6395. value: 0
  6396. inSlope: 0
  6397. outSlope: 0
  6398. tangentMode: 0
  6399. m_PreInfinity: 2
  6400. m_PostInfinity: 2
  6401. m_RotationOrder: 4
  6402. vectorLabel0_2: Z
  6403. vector0_3:
  6404. serializedVersion: 2
  6405. minMaxState: 0
  6406. scalar: 0
  6407. minScalar: 0
  6408. maxCurve:
  6409. serializedVersion: 2
  6410. m_Curve:
  6411. - serializedVersion: 2
  6412. time: 0
  6413. value: 1
  6414. inSlope: 0
  6415. outSlope: 0
  6416. tangentMode: 0
  6417. - serializedVersion: 2
  6418. time: 1
  6419. value: 1
  6420. inSlope: 0
  6421. outSlope: 0
  6422. tangentMode: 0
  6423. m_PreInfinity: 2
  6424. m_PostInfinity: 2
  6425. m_RotationOrder: 4
  6426. minCurve:
  6427. serializedVersion: 2
  6428. m_Curve:
  6429. - serializedVersion: 2
  6430. time: 0
  6431. value: 0
  6432. inSlope: 0
  6433. outSlope: 0
  6434. tangentMode: 0
  6435. - serializedVersion: 2
  6436. time: 1
  6437. value: 0
  6438. inSlope: 0
  6439. outSlope: 0
  6440. tangentMode: 0
  6441. m_PreInfinity: 2
  6442. m_PostInfinity: 2
  6443. m_RotationOrder: 4
  6444. vectorLabel0_3: W
  6445. mode1: 0
  6446. vectorComponentCount1: 4
  6447. color1:
  6448. serializedVersion: 2
  6449. minMaxState: 0
  6450. minColor: {r: 1, g: 1, b: 1, a: 1}
  6451. maxColor: {r: 1, g: 1, b: 1, a: 1}
  6452. maxGradient:
  6453. serializedVersion: 2
  6454. key0: {r: 1, g: 1, b: 1, a: 1}
  6455. key1: {r: 1, g: 1, b: 1, a: 1}
  6456. key2: {r: 0, g: 0, b: 0, a: 0}
  6457. key3: {r: 0, g: 0, b: 0, a: 0}
  6458. key4: {r: 0, g: 0, b: 0, a: 0}
  6459. key5: {r: 0, g: 0, b: 0, a: 0}
  6460. key6: {r: 0, g: 0, b: 0, a: 0}
  6461. key7: {r: 0, g: 0, b: 0, a: 0}
  6462. ctime0: 0
  6463. ctime1: 65535
  6464. ctime2: 0
  6465. ctime3: 0
  6466. ctime4: 0
  6467. ctime5: 0
  6468. ctime6: 0
  6469. ctime7: 0
  6470. atime0: 0
  6471. atime1: 65535
  6472. atime2: 0
  6473. atime3: 0
  6474. atime4: 0
  6475. atime5: 0
  6476. atime6: 0
  6477. atime7: 0
  6478. m_Mode: 0
  6479. m_NumColorKeys: 2
  6480. m_NumAlphaKeys: 2
  6481. minGradient:
  6482. serializedVersion: 2
  6483. key0: {r: 1, g: 1, b: 1, a: 1}
  6484. key1: {r: 1, g: 1, b: 1, a: 1}
  6485. key2: {r: 0, g: 0, b: 0, a: 0}
  6486. key3: {r: 0, g: 0, b: 0, a: 0}
  6487. key4: {r: 0, g: 0, b: 0, a: 0}
  6488. key5: {r: 0, g: 0, b: 0, a: 0}
  6489. key6: {r: 0, g: 0, b: 0, a: 0}
  6490. key7: {r: 0, g: 0, b: 0, a: 0}
  6491. ctime0: 0
  6492. ctime1: 65535
  6493. ctime2: 0
  6494. ctime3: 0
  6495. ctime4: 0
  6496. ctime5: 0
  6497. ctime6: 0
  6498. ctime7: 0
  6499. atime0: 0
  6500. atime1: 65535
  6501. atime2: 0
  6502. atime3: 0
  6503. atime4: 0
  6504. atime5: 0
  6505. atime6: 0
  6506. atime7: 0
  6507. m_Mode: 0
  6508. m_NumColorKeys: 2
  6509. m_NumAlphaKeys: 2
  6510. colorLabel1: Color
  6511. vector1_0:
  6512. serializedVersion: 2
  6513. minMaxState: 0
  6514. scalar: 0
  6515. minScalar: 0
  6516. maxCurve:
  6517. serializedVersion: 2
  6518. m_Curve:
  6519. - serializedVersion: 2
  6520. time: 0
  6521. value: 1
  6522. inSlope: 0
  6523. outSlope: 0
  6524. tangentMode: 0
  6525. - serializedVersion: 2
  6526. time: 1
  6527. value: 1
  6528. inSlope: 0
  6529. outSlope: 0
  6530. tangentMode: 0
  6531. m_PreInfinity: 2
  6532. m_PostInfinity: 2
  6533. m_RotationOrder: 4
  6534. minCurve:
  6535. serializedVersion: 2
  6536. m_Curve:
  6537. - serializedVersion: 2
  6538. time: 0
  6539. value: 0
  6540. inSlope: 0
  6541. outSlope: 0
  6542. tangentMode: 0
  6543. - serializedVersion: 2
  6544. time: 1
  6545. value: 0
  6546. inSlope: 0
  6547. outSlope: 0
  6548. tangentMode: 0
  6549. m_PreInfinity: 2
  6550. m_PostInfinity: 2
  6551. m_RotationOrder: 4
  6552. vectorLabel1_0: X
  6553. vector1_1:
  6554. serializedVersion: 2
  6555. minMaxState: 0
  6556. scalar: 0
  6557. minScalar: 0
  6558. maxCurve:
  6559. serializedVersion: 2
  6560. m_Curve:
  6561. - serializedVersion: 2
  6562. time: 0
  6563. value: 1
  6564. inSlope: 0
  6565. outSlope: 0
  6566. tangentMode: 0
  6567. - serializedVersion: 2
  6568. time: 1
  6569. value: 1
  6570. inSlope: 0
  6571. outSlope: 0
  6572. tangentMode: 0
  6573. m_PreInfinity: 2
  6574. m_PostInfinity: 2
  6575. m_RotationOrder: 4
  6576. minCurve:
  6577. serializedVersion: 2
  6578. m_Curve:
  6579. - serializedVersion: 2
  6580. time: 0
  6581. value: 0
  6582. inSlope: 0
  6583. outSlope: 0
  6584. tangentMode: 0
  6585. - serializedVersion: 2
  6586. time: 1
  6587. value: 0
  6588. inSlope: 0
  6589. outSlope: 0
  6590. tangentMode: 0
  6591. m_PreInfinity: 2
  6592. m_PostInfinity: 2
  6593. m_RotationOrder: 4
  6594. vectorLabel1_1: Y
  6595. vector1_2:
  6596. serializedVersion: 2
  6597. minMaxState: 0
  6598. scalar: 0
  6599. minScalar: 0
  6600. maxCurve:
  6601. serializedVersion: 2
  6602. m_Curve:
  6603. - serializedVersion: 2
  6604. time: 0
  6605. value: 1
  6606. inSlope: 0
  6607. outSlope: 0
  6608. tangentMode: 0
  6609. - serializedVersion: 2
  6610. time: 1
  6611. value: 1
  6612. inSlope: 0
  6613. outSlope: 0
  6614. tangentMode: 0
  6615. m_PreInfinity: 2
  6616. m_PostInfinity: 2
  6617. m_RotationOrder: 4
  6618. minCurve:
  6619. serializedVersion: 2
  6620. m_Curve:
  6621. - serializedVersion: 2
  6622. time: 0
  6623. value: 0
  6624. inSlope: 0
  6625. outSlope: 0
  6626. tangentMode: 0
  6627. - serializedVersion: 2
  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. vectorLabel1_2: Z
  6637. vector1_3:
  6638. serializedVersion: 2
  6639. minMaxState: 0
  6640. scalar: 0
  6641. minScalar: 0
  6642. maxCurve:
  6643. serializedVersion: 2
  6644. m_Curve:
  6645. - serializedVersion: 2
  6646. time: 0
  6647. value: 1
  6648. inSlope: 0
  6649. outSlope: 0
  6650. tangentMode: 0
  6651. - serializedVersion: 2
  6652. time: 1
  6653. value: 1
  6654. inSlope: 0
  6655. outSlope: 0
  6656. tangentMode: 0
  6657. m_PreInfinity: 2
  6658. m_PostInfinity: 2
  6659. m_RotationOrder: 4
  6660. minCurve:
  6661. serializedVersion: 2
  6662. m_Curve:
  6663. - serializedVersion: 2
  6664. time: 0
  6665. value: 0
  6666. inSlope: 0
  6667. outSlope: 0
  6668. tangentMode: 0
  6669. - serializedVersion: 2
  6670. time: 1
  6671. value: 0
  6672. inSlope: 0
  6673. outSlope: 0
  6674. tangentMode: 0
  6675. m_PreInfinity: 2
  6676. m_PostInfinity: 2
  6677. m_RotationOrder: 4
  6678. vectorLabel1_3: W
  6679. --- !u!199 &199066132636078472
  6680. ParticleSystemRenderer:
  6681. serializedVersion: 4
  6682. m_ObjectHideFlags: 1
  6683. m_PrefabParentObject: {fileID: 0}
  6684. m_PrefabInternal: {fileID: 100100000}
  6685. m_GameObject: {fileID: 1199387749997026}
  6686. m_Enabled: 1
  6687. m_CastShadows: 1
  6688. m_ReceiveShadows: 1
  6689. m_DynamicOccludee: 1
  6690. m_MotionVectors: 1
  6691. m_LightProbeUsage: 1
  6692. m_ReflectionProbeUsage: 1
  6693. m_Materials:
  6694. - {fileID: 2100000, guid: 0c6ceb865a050c64683892d8aa073844, type: 2}
  6695. - {fileID: 0}
  6696. m_StaticBatchInfo:
  6697. firstSubMesh: 0
  6698. subMeshCount: 0
  6699. m_StaticBatchRoot: {fileID: 0}
  6700. m_ProbeAnchor: {fileID: 0}
  6701. m_LightProbeVolumeOverride: {fileID: 0}
  6702. m_ScaleInLightmap: 1
  6703. m_PreserveUVs: 0
  6704. m_IgnoreNormalsForChartDetection: 0
  6705. m_ImportantGI: 0
  6706. m_StitchLightmapSeams: 0
  6707. m_SelectedEditorRenderState: 0
  6708. m_MinimumChartSize: 4
  6709. m_AutoUVMaxDistance: 0.5
  6710. m_AutoUVMaxAngle: 89
  6711. m_LightmapParameters: {fileID: 0}
  6712. m_SortingLayerID: 0
  6713. m_SortingLayer: 0
  6714. m_SortingOrder: 0
  6715. m_RenderMode: 4
  6716. m_SortMode: 0
  6717. m_MinParticleSize: 0
  6718. m_MaxParticleSize: 0.5
  6719. m_CameraVelocityScale: 0
  6720. m_VelocityScale: 0.01
  6721. m_LengthScale: 1
  6722. m_SortingFudge: 0
  6723. m_NormalDirection: 1
  6724. m_RenderAlignment: 2
  6725. m_Pivot: {x: 0, y: 0, z: 0}
  6726. m_UseCustomVertexStreams: 0
  6727. m_VertexStreams: 0001030405
  6728. m_Mesh: {fileID: 4300000, guid: 860f45db46c9a3e4a9bc3a4d3c5dc882, type: 3}
  6729. m_Mesh1: {fileID: 0}
  6730. m_Mesh2: {fileID: 0}
  6731. m_Mesh3: {fileID: 0}
  6732. m_MaskInteraction: 0
  6733. --- !u!199 &199115488141885032
  6734. ParticleSystemRenderer:
  6735. serializedVersion: 4
  6736. m_ObjectHideFlags: 1
  6737. m_PrefabParentObject: {fileID: 0}
  6738. m_PrefabInternal: {fileID: 100100000}
  6739. m_GameObject: {fileID: 1792092052645256}
  6740. m_Enabled: 1
  6741. m_CastShadows: 1
  6742. m_ReceiveShadows: 1
  6743. m_DynamicOccludee: 1
  6744. m_MotionVectors: 1
  6745. m_LightProbeUsage: 1
  6746. m_ReflectionProbeUsage: 1
  6747. m_Materials:
  6748. - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 0}
  6749. - {fileID: 0}
  6750. m_StaticBatchInfo:
  6751. firstSubMesh: 0
  6752. subMeshCount: 0
  6753. m_StaticBatchRoot: {fileID: 0}
  6754. m_ProbeAnchor: {fileID: 0}
  6755. m_LightProbeVolumeOverride: {fileID: 0}
  6756. m_ScaleInLightmap: 1
  6757. m_PreserveUVs: 0
  6758. m_IgnoreNormalsForChartDetection: 0
  6759. m_ImportantGI: 0
  6760. m_StitchLightmapSeams: 0
  6761. m_SelectedEditorRenderState: 0
  6762. m_MinimumChartSize: 4
  6763. m_AutoUVMaxDistance: 0.5
  6764. m_AutoUVMaxAngle: 89
  6765. m_LightmapParameters: {fileID: 0}
  6766. m_SortingLayerID: 0
  6767. m_SortingLayer: 0
  6768. m_SortingOrder: 0
  6769. m_RenderMode: 4
  6770. m_SortMode: 0
  6771. m_MinParticleSize: 0
  6772. m_MaxParticleSize: 0.5
  6773. m_CameraVelocityScale: 0
  6774. m_VelocityScale: 0
  6775. m_LengthScale: 2
  6776. m_SortingFudge: 0
  6777. m_NormalDirection: 1
  6778. m_RenderAlignment: 2
  6779. m_Pivot: {x: 0, y: 0, z: 0}
  6780. m_UseCustomVertexStreams: 0
  6781. m_VertexStreams: 0001030405
  6782. m_Mesh: {fileID: 4300000, guid: 219de587148d8bb41a8e255859dafe53, type: 3}
  6783. m_Mesh1: {fileID: 0}
  6784. m_Mesh2: {fileID: 0}
  6785. m_Mesh3: {fileID: 0}
  6786. m_MaskInteraction: 0