FX_Orb_01.prefab 151 KB

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