PowerupGlow2.prefab 154 KB

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