reactorspeakers.prefab 157 KB

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