Flower.prefab 142 KB

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