FX_PowerDraw_01.prefab 149 KB

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