Collectable Death Particles.prefab 149 KB

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