暫無描述
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

AdaptiveTransparency.unity 145KB

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