Rain2D.prefab 154 KB

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