WaterLeak.prefab 145 KB

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