FX_Fire_Huge_01.prefab 152 KB

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