Flower.prefab 140 KB

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