_loader.unity 181 KB

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