FX_Lava_Bubbles_01.prefab 150 KB

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