FX_FlameThrower_02.prefab 146 KB

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