ItemSparkleRainbow.prefab 155 KB

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