EmojiPoop.prefab 157 KB

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