1 - XP STORM (Demo).unity 166 KB

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