Bullet.prefab 154 KB

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