Test.unity 92 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969
  1. %YAML 1.1
  2. %TAG !u! tag:unity3d.com,2011:
  3. --- !u!29 &1
  4. OcclusionCullingSettings:
  5. m_ObjectHideFlags: 0
  6. serializedVersion: 2
  7. m_OcclusionBakeSettings:
  8. smallestOccluder: 5
  9. smallestHole: 0.25
  10. backfaceThreshold: 100
  11. m_SceneGUID: 00000000000000000000000000000000
  12. m_OcclusionCullingData: {fileID: 0}
  13. --- !u!104 &2
  14. RenderSettings:
  15. m_ObjectHideFlags: 0
  16. serializedVersion: 8
  17. m_Fog: 0
  18. m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
  19. m_FogMode: 3
  20. m_FogDensity: 0.01
  21. m_LinearFogStart: 0
  22. m_LinearFogEnd: 300
  23. m_AmbientSkyColor: {r: 0.212, g: 0.227, b: 0.259, a: 1}
  24. m_AmbientEquatorColor: {r: 0.114, g: 0.125, b: 0.133, a: 1}
  25. m_AmbientGroundColor: {r: 0.047, g: 0.043, b: 0.035, a: 1}
  26. m_AmbientIntensity: 1
  27. m_AmbientMode: 0
  28. m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1}
  29. m_SkyboxMaterial: {fileID: 10304, guid: 0000000000000000f000000000000000, type: 0}
  30. m_HaloStrength: 0.5
  31. m_FlareStrength: 1
  32. m_FlareFadeSpeed: 3
  33. m_HaloTexture: {fileID: 0}
  34. m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0}
  35. m_DefaultReflectionMode: 0
  36. m_DefaultReflectionResolution: 128
  37. m_ReflectionBounces: 1
  38. m_ReflectionIntensity: 1
  39. m_CustomReflection: {fileID: 0}
  40. m_Sun: {fileID: 0}
  41. m_IndirectSpecularColor: {r: 0.18028378, g: 0.22571412, b: 0.30692285, a: 1}
  42. --- !u!157 &3
  43. LightmapSettings:
  44. m_ObjectHideFlags: 0
  45. serializedVersion: 11
  46. m_GIWorkflowMode: 0
  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: 40
  60. m_TextureWidth: 1024
  61. m_TextureHeight: 1024
  62. m_AO: 0
  63. m_AOMaxDistance: 1
  64. m_CompAOExponent: 1
  65. m_CompAOExponentDirect: 0
  66. m_Padding: 2
  67. m_LightmapParameters: {fileID: 0}
  68. m_LightmapsBakeMode: 1
  69. m_TextureCompression: 1
  70. m_FinalGather: 0
  71. m_FinalGatherFiltering: 1
  72. m_FinalGatherRayCount: 256
  73. m_ReflectionCompression: 2
  74. m_MixedBakeMode: 2
  75. m_BakeBackend: 0
  76. m_PVRSampling: 1
  77. m_PVRDirectSampleCount: 32
  78. m_PVRSampleCount: 500
  79. m_PVRBounces: 2
  80. m_PVRFilterTypeDirect: 0
  81. m_PVRFilterTypeIndirect: 0
  82. m_PVRFilterTypeAO: 0
  83. m_PVRFilteringMode: 1
  84. m_PVRCulling: 1
  85. m_PVRFilteringGaussRadiusDirect: 1
  86. m_PVRFilteringGaussRadiusIndirect: 5
  87. m_PVRFilteringGaussRadiusAO: 2
  88. m_PVRFilteringAtrousPositionSigmaDirect: 0.5
  89. m_PVRFilteringAtrousPositionSigmaIndirect: 2
  90. m_PVRFilteringAtrousPositionSigmaAO: 1
  91. m_LightingDataAsset: {fileID: 0}
  92. m_UseShadowmask: 1
  93. --- !u!196 &4
  94. NavMeshSettings:
  95. serializedVersion: 2
  96. m_ObjectHideFlags: 0
  97. m_BuildSettings:
  98. serializedVersion: 2
  99. agentTypeID: 0
  100. agentRadius: 0.5
  101. agentHeight: 2
  102. agentSlope: 45
  103. agentClimb: 0.4
  104. ledgeDropHeight: 0
  105. maxJumpAcrossDistance: 0
  106. minRegionArea: 2
  107. manualCellSize: 0
  108. cellSize: 0.16666667
  109. manualTileSize: 0
  110. tileSize: 256
  111. accuratePlacement: 0
  112. debug:
  113. m_Flags: 0
  114. m_NavMeshData: {fileID: 0}
  115. --- !u!1 &220569630
  116. GameObject:
  117. m_ObjectHideFlags: 0
  118. m_PrefabParentObject: {fileID: 0}
  119. m_PrefabInternal: {fileID: 0}
  120. serializedVersion: 5
  121. m_Component:
  122. - component: {fileID: 220569634}
  123. - component: {fileID: 220569633}
  124. - component: {fileID: 220569632}
  125. - component: {fileID: 220569631}
  126. m_Layer: 0
  127. m_Name: Camera
  128. m_TagString: Untagged
  129. m_Icon: {fileID: 0}
  130. m_NavMeshLayer: 0
  131. m_StaticEditorFlags: 0
  132. m_IsActive: 1
  133. --- !u!81 &220569631
  134. AudioListener:
  135. m_ObjectHideFlags: 0
  136. m_PrefabParentObject: {fileID: 0}
  137. m_PrefabInternal: {fileID: 0}
  138. m_GameObject: {fileID: 220569630}
  139. m_Enabled: 1
  140. --- !u!124 &220569632
  141. Behaviour:
  142. m_ObjectHideFlags: 0
  143. m_PrefabParentObject: {fileID: 0}
  144. m_PrefabInternal: {fileID: 0}
  145. m_GameObject: {fileID: 220569630}
  146. m_Enabled: 1
  147. --- !u!20 &220569633
  148. Camera:
  149. m_ObjectHideFlags: 0
  150. m_PrefabParentObject: {fileID: 0}
  151. m_PrefabInternal: {fileID: 0}
  152. m_GameObject: {fileID: 220569630}
  153. m_Enabled: 1
  154. serializedVersion: 2
  155. m_ClearFlags: 1
  156. m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, a: 0}
  157. m_NormalizedViewPortRect:
  158. serializedVersion: 2
  159. x: 0
  160. y: 0
  161. width: 1
  162. height: 1
  163. near clip plane: 0.3
  164. far clip plane: 1000
  165. field of view: 60
  166. orthographic: 0
  167. orthographic size: 5
  168. m_Depth: 0
  169. m_CullingMask:
  170. serializedVersion: 2
  171. m_Bits: 4294967295
  172. m_RenderingPath: -1
  173. m_TargetTexture: {fileID: 0}
  174. m_TargetDisplay: 0
  175. m_TargetEye: 0
  176. m_HDR: 1
  177. m_AllowMSAA: 1
  178. m_ForceIntoRT: 0
  179. m_OcclusionCulling: 1
  180. m_StereoConvergence: 10
  181. m_StereoSeparation: 0.022
  182. --- !u!4 &220569634
  183. Transform:
  184. m_ObjectHideFlags: 0
  185. m_PrefabParentObject: {fileID: 0}
  186. m_PrefabInternal: {fileID: 0}
  187. m_GameObject: {fileID: 220569630}
  188. m_LocalRotation: {x: 0.032578476, y: 0.66771525, z: -0.029272415, w: 0.74312735}
  189. m_LocalPosition: {x: -2.016286, y: 1.9781535, z: -0.28876197}
  190. m_LocalScale: {x: 1, y: 1, z: 1}
  191. m_Children: []
  192. m_Father: {fileID: 0}
  193. m_RootOrder: 3
  194. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  195. --- !u!1 &556086614
  196. GameObject:
  197. m_ObjectHideFlags: 0
  198. m_PrefabParentObject: {fileID: 0}
  199. m_PrefabInternal: {fileID: 0}
  200. serializedVersion: 5
  201. m_Component:
  202. - component: {fileID: 556086616}
  203. - component: {fileID: 556086615}
  204. - component: {fileID: 556086618}
  205. - component: {fileID: 556086621}
  206. - component: {fileID: 556086617}
  207. - component: {fileID: 556086619}
  208. m_Layer: 0
  209. m_Name: PointAggregator
  210. m_TagString: Untagged
  211. m_Icon: {fileID: 0}
  212. m_NavMeshLayer: 0
  213. m_StaticEditorFlags: 0
  214. m_IsActive: 1
  215. --- !u!23 &556086615
  216. MeshRenderer:
  217. m_ObjectHideFlags: 0
  218. m_PrefabParentObject: {fileID: 0}
  219. m_PrefabInternal: {fileID: 0}
  220. m_GameObject: {fileID: 556086614}
  221. m_Enabled: 1
  222. m_CastShadows: 1
  223. m_ReceiveShadows: 1
  224. m_DynamicOccludee: 1
  225. m_MotionVectors: 1
  226. m_LightProbeUsage: 1
  227. m_ReflectionProbeUsage: 1
  228. m_Materials:
  229. - {fileID: 0}
  230. m_StaticBatchInfo:
  231. firstSubMesh: 0
  232. subMeshCount: 0
  233. m_StaticBatchRoot: {fileID: 0}
  234. m_ProbeAnchor: {fileID: 0}
  235. m_LightProbeVolumeOverride: {fileID: 0}
  236. m_ScaleInLightmap: 1
  237. m_PreserveUVs: 0
  238. m_IgnoreNormalsForChartDetection: 0
  239. m_ImportantGI: 0
  240. m_StitchLightmapSeams: 0
  241. m_SelectedEditorRenderState: 3
  242. m_MinimumChartSize: 4
  243. m_AutoUVMaxDistance: 0.5
  244. m_AutoUVMaxAngle: 89
  245. m_LightmapParameters: {fileID: 0}
  246. m_SortingLayerID: 0
  247. m_SortingLayer: 0
  248. m_SortingOrder: 0
  249. --- !u!4 &556086616
  250. Transform:
  251. m_ObjectHideFlags: 0
  252. m_PrefabParentObject: {fileID: 0}
  253. m_PrefabInternal: {fileID: 0}
  254. m_GameObject: {fileID: 556086614}
  255. m_LocalRotation: {x: 0, y: 0.7071068, z: 0.7071068, w: 0}
  256. m_LocalPosition: {x: 0, y: 0, z: 0}
  257. m_LocalScale: {x: 1, y: 1, z: 1}
  258. m_Children: []
  259. m_Father: {fileID: 899486548}
  260. m_RootOrder: 0
  261. m_LocalEulerAnglesHint: {x: -90, y: 0, z: 180}
  262. --- !u!114 &556086617
  263. MonoBehaviour:
  264. m_ObjectHideFlags: 0
  265. m_PrefabParentObject: {fileID: 0}
  266. m_PrefabInternal: {fileID: 0}
  267. m_GameObject: {fileID: 556086614}
  268. m_Enabled: 1
  269. m_EditorHideFlags: 0
  270. m_Script: {fileID: 11500000, guid: 8afb80b5678746e4d9ddffcec73ae364, type: 3}
  271. m_Name:
  272. m_EditorClassIdentifier:
  273. accuracy: 1000
  274. _particleSystem: {fileID: 1495567582}
  275. --- !u!114 &556086618
  276. MonoBehaviour:
  277. m_ObjectHideFlags: 0
  278. m_PrefabParentObject: {fileID: 0}
  279. m_PrefabInternal: {fileID: 0}
  280. m_GameObject: {fileID: 556086614}
  281. m_Enabled: 1
  282. m_EditorHideFlags: 0
  283. m_Script: {fileID: 11500000, guid: 0a392f5d0fd5a0946a93394f1e2e2685, type: 3}
  284. m_Name:
  285. m_EditorClassIdentifier:
  286. --- !u!114 &556086619
  287. MonoBehaviour:
  288. m_ObjectHideFlags: 0
  289. m_PrefabParentObject: {fileID: 0}
  290. m_PrefabInternal: {fileID: 0}
  291. m_GameObject: {fileID: 556086614}
  292. m_Enabled: 1
  293. m_EditorHideFlags: 0
  294. m_Script: {fileID: 11500000, guid: f752c4e07617d8d4eb21d4975a2d7c61, type: 3}
  295. m_Name:
  296. m_EditorClassIdentifier:
  297. --- !u!33 &556086621
  298. MeshFilter:
  299. m_ObjectHideFlags: 0
  300. m_PrefabParentObject: {fileID: 0}
  301. m_PrefabInternal: {fileID: 0}
  302. m_GameObject: {fileID: 556086614}
  303. m_Mesh: {fileID: 0}
  304. --- !u!1 &827150291
  305. GameObject:
  306. m_ObjectHideFlags: 0
  307. m_PrefabParentObject: {fileID: 0}
  308. m_PrefabInternal: {fileID: 0}
  309. serializedVersion: 5
  310. m_Component:
  311. - component: {fileID: 827150293}
  312. - component: {fileID: 827150292}
  313. m_Layer: 0
  314. m_Name: Directional Light
  315. m_TagString: Untagged
  316. m_Icon: {fileID: 0}
  317. m_NavMeshLayer: 0
  318. m_StaticEditorFlags: 0
  319. m_IsActive: 1
  320. --- !u!108 &827150292
  321. Light:
  322. m_ObjectHideFlags: 0
  323. m_PrefabParentObject: {fileID: 0}
  324. m_PrefabInternal: {fileID: 0}
  325. m_GameObject: {fileID: 827150291}
  326. m_Enabled: 1
  327. serializedVersion: 8
  328. m_Type: 1
  329. m_Color: {r: 1, g: 0.95686275, b: 0.8392157, a: 1}
  330. m_Intensity: 1
  331. m_Range: 10
  332. m_SpotAngle: 30
  333. m_CookieSize: 10
  334. m_Shadows:
  335. m_Type: 2
  336. m_Resolution: -1
  337. m_CustomResolution: -1
  338. m_Strength: 1
  339. m_Bias: 0.05
  340. m_NormalBias: 0.4
  341. m_NearPlane: 0.2
  342. m_Cookie: {fileID: 0}
  343. m_DrawHalo: 0
  344. m_Flare: {fileID: 0}
  345. m_RenderMode: 0
  346. m_CullingMask:
  347. serializedVersion: 2
  348. m_Bits: 4294967295
  349. m_Lightmapping: 4
  350. m_AreaSize: {x: 1, y: 1}
  351. m_BounceIntensity: 1
  352. m_ColorTemperature: 6570
  353. m_UseColorTemperature: 0
  354. m_ShadowRadius: 0
  355. m_ShadowAngle: 0
  356. --- !u!4 &827150293
  357. Transform:
  358. m_ObjectHideFlags: 0
  359. m_PrefabParentObject: {fileID: 0}
  360. m_PrefabInternal: {fileID: 0}
  361. m_GameObject: {fileID: 827150291}
  362. m_LocalRotation: {x: 0.40821788, y: -0.23456968, z: 0.10938163, w: 0.8754261}
  363. m_LocalPosition: {x: 0, y: 3, z: 0}
  364. m_LocalScale: {x: 1, y: 1, z: 1}
  365. m_Children: []
  366. m_Father: {fileID: 0}
  367. m_RootOrder: 0
  368. m_LocalEulerAnglesHint: {x: 50, y: -30, z: 0}
  369. --- !u!1 &890185943
  370. GameObject:
  371. m_ObjectHideFlags: 0
  372. m_PrefabParentObject: {fileID: 0}
  373. m_PrefabInternal: {fileID: 0}
  374. serializedVersion: 5
  375. m_Component:
  376. - component: {fileID: 890185944}
  377. - component: {fileID: 890185947}
  378. - component: {fileID: 890185946}
  379. - component: {fileID: 890185945}
  380. m_Layer: 0
  381. m_Name: Cube
  382. m_TagString: Untagged
  383. m_Icon: {fileID: 0}
  384. m_NavMeshLayer: 0
  385. m_StaticEditorFlags: 0
  386. m_IsActive: 1
  387. --- !u!4 &890185944
  388. Transform:
  389. m_ObjectHideFlags: 0
  390. m_PrefabParentObject: {fileID: 0}
  391. m_PrefabInternal: {fileID: 0}
  392. m_GameObject: {fileID: 890185943}
  393. m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
  394. m_LocalPosition: {x: 0, y: 0, z: 0}
  395. m_LocalScale: {x: 0.1, y: 0.1, z: 0.1}
  396. m_Children: []
  397. m_Father: {fileID: 899486548}
  398. m_RootOrder: 1
  399. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  400. --- !u!23 &890185945
  401. MeshRenderer:
  402. m_ObjectHideFlags: 0
  403. m_PrefabParentObject: {fileID: 0}
  404. m_PrefabInternal: {fileID: 0}
  405. m_GameObject: {fileID: 890185943}
  406. m_Enabled: 1
  407. m_CastShadows: 1
  408. m_ReceiveShadows: 1
  409. m_DynamicOccludee: 1
  410. m_MotionVectors: 1
  411. m_LightProbeUsage: 1
  412. m_ReflectionProbeUsage: 1
  413. m_Materials:
  414. - {fileID: 10303, guid: 0000000000000000f000000000000000, type: 0}
  415. m_StaticBatchInfo:
  416. firstSubMesh: 0
  417. subMeshCount: 0
  418. m_StaticBatchRoot: {fileID: 0}
  419. m_ProbeAnchor: {fileID: 0}
  420. m_LightProbeVolumeOverride: {fileID: 0}
  421. m_ScaleInLightmap: 1
  422. m_PreserveUVs: 1
  423. m_IgnoreNormalsForChartDetection: 0
  424. m_ImportantGI: 0
  425. m_StitchLightmapSeams: 0
  426. m_SelectedEditorRenderState: 3
  427. m_MinimumChartSize: 4
  428. m_AutoUVMaxDistance: 0.5
  429. m_AutoUVMaxAngle: 89
  430. m_LightmapParameters: {fileID: 0}
  431. m_SortingLayerID: 0
  432. m_SortingLayer: 0
  433. m_SortingOrder: 0
  434. --- !u!65 &890185946
  435. BoxCollider:
  436. m_ObjectHideFlags: 0
  437. m_PrefabParentObject: {fileID: 0}
  438. m_PrefabInternal: {fileID: 0}
  439. m_GameObject: {fileID: 890185943}
  440. m_Material: {fileID: 0}
  441. m_IsTrigger: 0
  442. m_Enabled: 1
  443. serializedVersion: 2
  444. m_Size: {x: 1, y: 1, z: 1}
  445. m_Center: {x: 0, y: 0, z: 0}
  446. --- !u!33 &890185947
  447. MeshFilter:
  448. m_ObjectHideFlags: 0
  449. m_PrefabParentObject: {fileID: 0}
  450. m_PrefabInternal: {fileID: 0}
  451. m_GameObject: {fileID: 890185943}
  452. m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0}
  453. --- !u!1001 &899486547
  454. Prefab:
  455. m_ObjectHideFlags: 0
  456. serializedVersion: 2
  457. m_Modification:
  458. m_TransformParent: {fileID: 0}
  459. m_Modifications:
  460. - target: {fileID: 4167320887417124, guid: dd48a1ee4e4a0cc4d91b8f857658878a, type: 2}
  461. propertyPath: m_LocalPosition.x
  462. value: 0
  463. objectReference: {fileID: 0}
  464. - target: {fileID: 4167320887417124, guid: dd48a1ee4e4a0cc4d91b8f857658878a, type: 2}
  465. propertyPath: m_LocalPosition.y
  466. value: 0
  467. objectReference: {fileID: 0}
  468. - target: {fileID: 4167320887417124, guid: dd48a1ee4e4a0cc4d91b8f857658878a, type: 2}
  469. propertyPath: m_LocalPosition.z
  470. value: 0
  471. objectReference: {fileID: 0}
  472. - target: {fileID: 4167320887417124, guid: dd48a1ee4e4a0cc4d91b8f857658878a, type: 2}
  473. propertyPath: m_LocalRotation.x
  474. value: 0
  475. objectReference: {fileID: 0}
  476. - target: {fileID: 4167320887417124, guid: dd48a1ee4e4a0cc4d91b8f857658878a, type: 2}
  477. propertyPath: m_LocalRotation.y
  478. value: 0
  479. objectReference: {fileID: 0}
  480. - target: {fileID: 4167320887417124, guid: dd48a1ee4e4a0cc4d91b8f857658878a, type: 2}
  481. propertyPath: m_LocalRotation.z
  482. value: 0
  483. objectReference: {fileID: 0}
  484. - target: {fileID: 4167320887417124, guid: dd48a1ee4e4a0cc4d91b8f857658878a, type: 2}
  485. propertyPath: m_LocalRotation.w
  486. value: 1
  487. objectReference: {fileID: 0}
  488. - target: {fileID: 4167320887417124, guid: dd48a1ee4e4a0cc4d91b8f857658878a, type: 2}
  489. propertyPath: m_RootOrder
  490. value: 2
  491. objectReference: {fileID: 0}
  492. - target: {fileID: 4167320887417124, guid: dd48a1ee4e4a0cc4d91b8f857658878a, type: 2}
  493. propertyPath: m_LocalEulerAnglesHint.x
  494. value: 0
  495. objectReference: {fileID: 0}
  496. - target: {fileID: 4167320887417124, guid: dd48a1ee4e4a0cc4d91b8f857658878a, type: 2}
  497. propertyPath: m_LocalEulerAnglesHint.z
  498. value: 0
  499. objectReference: {fileID: 0}
  500. - target: {fileID: 114417837285559568, guid: dd48a1ee4e4a0cc4d91b8f857658878a,
  501. type: 2}
  502. propertyPath: index
  503. value: 3
  504. objectReference: {fileID: 0}
  505. m_RemovedComponents: []
  506. m_ParentPrefab: {fileID: 100100000, guid: dd48a1ee4e4a0cc4d91b8f857658878a, type: 2}
  507. m_IsPrefabParent: 0
  508. --- !u!4 &899486548 stripped
  509. Transform:
  510. m_PrefabParentObject: {fileID: 4167320887417124, guid: dd48a1ee4e4a0cc4d91b8f857658878a,
  511. type: 2}
  512. m_PrefabInternal: {fileID: 899486547}
  513. --- !u!1 &1495567580
  514. GameObject:
  515. m_ObjectHideFlags: 0
  516. m_PrefabParentObject: {fileID: 0}
  517. m_PrefabInternal: {fileID: 0}
  518. serializedVersion: 5
  519. m_Component:
  520. - component: {fileID: 1495567586}
  521. - component: {fileID: 1495567585}
  522. - component: {fileID: 1495567584}
  523. - component: {fileID: 1495567583}
  524. - component: {fileID: 1495567582}
  525. - component: {fileID: 1495567581}
  526. m_Layer: 0
  527. m_Name: ParticleRoot
  528. m_TagString: Untagged
  529. m_Icon: {fileID: 0}
  530. m_NavMeshLayer: 0
  531. m_StaticEditorFlags: 0
  532. m_IsActive: 1
  533. --- !u!199 &1495567581
  534. ParticleSystemRenderer:
  535. serializedVersion: 4
  536. m_ObjectHideFlags: 0
  537. m_PrefabParentObject: {fileID: 0}
  538. m_PrefabInternal: {fileID: 0}
  539. m_GameObject: {fileID: 1495567580}
  540. m_Enabled: 1
  541. m_CastShadows: 0
  542. m_ReceiveShadows: 0
  543. m_DynamicOccludee: 1
  544. m_MotionVectors: 1
  545. m_LightProbeUsage: 0
  546. m_ReflectionProbeUsage: 0
  547. m_Materials:
  548. - {fileID: 10301, guid: 0000000000000000f000000000000000, type: 0}
  549. - {fileID: 0}
  550. m_StaticBatchInfo:
  551. firstSubMesh: 0
  552. subMeshCount: 0
  553. m_StaticBatchRoot: {fileID: 0}
  554. m_ProbeAnchor: {fileID: 0}
  555. m_LightProbeVolumeOverride: {fileID: 0}
  556. m_ScaleInLightmap: 1
  557. m_PreserveUVs: 0
  558. m_IgnoreNormalsForChartDetection: 0
  559. m_ImportantGI: 0
  560. m_StitchLightmapSeams: 0
  561. m_SelectedEditorRenderState: 0
  562. m_MinimumChartSize: 4
  563. m_AutoUVMaxDistance: 0.5
  564. m_AutoUVMaxAngle: 89
  565. m_LightmapParameters: {fileID: 0}
  566. m_SortingLayerID: 0
  567. m_SortingLayer: 0
  568. m_SortingOrder: 0
  569. m_RenderMode: 0
  570. m_SortMode: 0
  571. m_MinParticleSize: 0
  572. m_MaxParticleSize: 0.5
  573. m_CameraVelocityScale: 0
  574. m_VelocityScale: 0
  575. m_LengthScale: 2
  576. m_SortingFudge: 0
  577. m_NormalDirection: 1
  578. m_RenderAlignment: 0
  579. m_Pivot: {x: 0, y: 0, z: 0}
  580. m_UseCustomVertexStreams: 0
  581. m_VertexStreams: 00010304
  582. m_Mesh: {fileID: 0}
  583. m_Mesh1: {fileID: 0}
  584. m_Mesh2: {fileID: 0}
  585. m_Mesh3: {fileID: 0}
  586. m_MaskInteraction: 0
  587. --- !u!198 &1495567582
  588. ParticleSystem:
  589. m_ObjectHideFlags: 0
  590. m_PrefabParentObject: {fileID: 0}
  591. m_PrefabInternal: {fileID: 0}
  592. m_GameObject: {fileID: 1495567580}
  593. serializedVersion: 5
  594. lengthInSec: 500
  595. simulationSpeed: 1
  596. stopAction: 0
  597. looping: 0
  598. prewarm: 0
  599. playOnAwake: 0
  600. useUnscaledTime: 0
  601. autoRandomSeed: 0
  602. useRigidbodyForVelocity: 1
  603. startDelay:
  604. serializedVersion: 2
  605. minMaxState: 0
  606. scalar: 0
  607. minScalar: 0
  608. maxCurve:
  609. serializedVersion: 2
  610. m_Curve:
  611. - serializedVersion: 2
  612. time: 0
  613. value: 0
  614. inSlope: 0
  615. outSlope: 0
  616. tangentMode: 0
  617. - serializedVersion: 2
  618. time: 1
  619. value: 0
  620. inSlope: 0
  621. outSlope: 0
  622. tangentMode: 0
  623. m_PreInfinity: 2
  624. m_PostInfinity: 2
  625. m_RotationOrder: 4
  626. minCurve:
  627. serializedVersion: 2
  628. m_Curve:
  629. - serializedVersion: 2
  630. time: 0
  631. value: 0
  632. inSlope: 0
  633. outSlope: 0
  634. tangentMode: 0
  635. - serializedVersion: 2
  636. time: 1
  637. value: 0
  638. inSlope: 0
  639. outSlope: 0
  640. tangentMode: 0
  641. m_PreInfinity: 2
  642. m_PostInfinity: 2
  643. m_RotationOrder: 4
  644. moveWithTransform: 0
  645. moveWithCustomTransform: {fileID: 0}
  646. scalingMode: 1
  647. randomSeed: -1801813990
  648. InitialModule:
  649. serializedVersion: 3
  650. enabled: 1
  651. startLifetime:
  652. serializedVersion: 2
  653. minMaxState: 0
  654. scalar: 10000
  655. minScalar: 5
  656. maxCurve:
  657. serializedVersion: 2
  658. m_Curve:
  659. - serializedVersion: 2
  660. time: 0
  661. value: 1
  662. inSlope: 0
  663. outSlope: 0
  664. tangentMode: 0
  665. - serializedVersion: 2
  666. time: 1
  667. value: 1
  668. inSlope: 0
  669. outSlope: 0
  670. tangentMode: 0
  671. m_PreInfinity: 2
  672. m_PostInfinity: 2
  673. m_RotationOrder: 4
  674. minCurve:
  675. serializedVersion: 2
  676. m_Curve:
  677. - serializedVersion: 2
  678. time: 0
  679. value: 1
  680. inSlope: 0
  681. outSlope: 0
  682. tangentMode: 0
  683. - serializedVersion: 2
  684. time: 1
  685. value: 1
  686. inSlope: 0
  687. outSlope: 0
  688. tangentMode: 0
  689. m_PreInfinity: 2
  690. m_PostInfinity: 2
  691. m_RotationOrder: 4
  692. startSpeed:
  693. serializedVersion: 2
  694. minMaxState: 0
  695. scalar: 0
  696. minScalar: 5
  697. maxCurve:
  698. serializedVersion: 2
  699. m_Curve:
  700. - serializedVersion: 2
  701. time: 0
  702. value: 1
  703. inSlope: 0
  704. outSlope: 0
  705. tangentMode: 0
  706. - serializedVersion: 2
  707. time: 1
  708. value: 1
  709. inSlope: 0
  710. outSlope: 0
  711. tangentMode: 0
  712. m_PreInfinity: 2
  713. m_PostInfinity: 2
  714. m_RotationOrder: 4
  715. minCurve:
  716. serializedVersion: 2
  717. m_Curve:
  718. - serializedVersion: 2
  719. time: 0
  720. value: 1
  721. inSlope: 0
  722. outSlope: 0
  723. tangentMode: 0
  724. - serializedVersion: 2
  725. time: 1
  726. value: 1
  727. inSlope: 0
  728. outSlope: 0
  729. tangentMode: 0
  730. m_PreInfinity: 2
  731. m_PostInfinity: 2
  732. m_RotationOrder: 4
  733. startColor:
  734. serializedVersion: 2
  735. minMaxState: 0
  736. minColor: {r: 1, g: 1, b: 1, a: 1}
  737. maxColor: {r: 1, g: 0, b: 0, a: 1}
  738. maxGradient:
  739. serializedVersion: 2
  740. key0: {r: 1, g: 1, b: 1, a: 1}
  741. key1: {r: 1, g: 1, b: 1, a: 1}
  742. key2: {r: 0, g: 0, b: 0, a: 0}
  743. key3: {r: 0, g: 0, b: 0, a: 0}
  744. key4: {r: 0, g: 0, b: 0, a: 0}
  745. key5: {r: 0, g: 0, b: 0, a: 0}
  746. key6: {r: 0, g: 0, b: 0, a: 0}
  747. key7: {r: 0, g: 0, b: 0, a: 0}
  748. ctime0: 0
  749. ctime1: 65535
  750. ctime2: 0
  751. ctime3: 0
  752. ctime4: 0
  753. ctime5: 0
  754. ctime6: 0
  755. ctime7: 0
  756. atime0: 0
  757. atime1: 65535
  758. atime2: 0
  759. atime3: 0
  760. atime4: 0
  761. atime5: 0
  762. atime6: 0
  763. atime7: 0
  764. m_Mode: 0
  765. m_NumColorKeys: 2
  766. m_NumAlphaKeys: 2
  767. minGradient:
  768. serializedVersion: 2
  769. key0: {r: 1, g: 1, b: 1, a: 1}
  770. key1: {r: 1, g: 1, b: 1, a: 1}
  771. key2: {r: 0, g: 0, b: 0, a: 0}
  772. key3: {r: 0, g: 0, b: 0, a: 0}
  773. key4: {r: 0, g: 0, b: 0, a: 0}
  774. key5: {r: 0, g: 0, b: 0, a: 0}
  775. key6: {r: 0, g: 0, b: 0, a: 0}
  776. key7: {r: 0, g: 0, b: 0, a: 0}
  777. ctime0: 0
  778. ctime1: 65535
  779. ctime2: 0
  780. ctime3: 0
  781. ctime4: 0
  782. ctime5: 0
  783. ctime6: 0
  784. ctime7: 0
  785. atime0: 0
  786. atime1: 65535
  787. atime2: 0
  788. atime3: 0
  789. atime4: 0
  790. atime5: 0
  791. atime6: 0
  792. atime7: 0
  793. m_Mode: 0
  794. m_NumColorKeys: 2
  795. m_NumAlphaKeys: 2
  796. startSize:
  797. serializedVersion: 2
  798. minMaxState: 0
  799. scalar: 1
  800. minScalar: 1
  801. maxCurve:
  802. serializedVersion: 2
  803. m_Curve:
  804. - serializedVersion: 2
  805. time: 0
  806. value: 1
  807. inSlope: 0
  808. outSlope: 0
  809. tangentMode: 0
  810. - serializedVersion: 2
  811. time: 1
  812. value: 1
  813. inSlope: 0
  814. outSlope: 0
  815. tangentMode: 0
  816. m_PreInfinity: 2
  817. m_PostInfinity: 2
  818. m_RotationOrder: 4
  819. minCurve:
  820. serializedVersion: 2
  821. m_Curve:
  822. - serializedVersion: 2
  823. time: 0
  824. value: 1
  825. inSlope: 0
  826. outSlope: 0
  827. tangentMode: 0
  828. - serializedVersion: 2
  829. time: 1
  830. value: 1
  831. inSlope: 0
  832. outSlope: 0
  833. tangentMode: 0
  834. m_PreInfinity: 2
  835. m_PostInfinity: 2
  836. m_RotationOrder: 4
  837. startSizeY:
  838. serializedVersion: 2
  839. minMaxState: 0
  840. scalar: 1
  841. minScalar: 1
  842. maxCurve:
  843. serializedVersion: 2
  844. m_Curve:
  845. - serializedVersion: 2
  846. time: 0
  847. value: 1
  848. inSlope: 0
  849. outSlope: 0
  850. tangentMode: 0
  851. - serializedVersion: 2
  852. time: 1
  853. value: 1
  854. inSlope: 0
  855. outSlope: 0
  856. tangentMode: 0
  857. m_PreInfinity: 2
  858. m_PostInfinity: 2
  859. m_RotationOrder: 4
  860. minCurve:
  861. serializedVersion: 2
  862. m_Curve:
  863. - serializedVersion: 2
  864. time: 0
  865. value: 1
  866. inSlope: 0
  867. outSlope: 0
  868. tangentMode: 0
  869. - serializedVersion: 2
  870. time: 1
  871. value: 1
  872. inSlope: 0
  873. outSlope: 0
  874. tangentMode: 0
  875. m_PreInfinity: 2
  876. m_PostInfinity: 2
  877. m_RotationOrder: 4
  878. startSizeZ:
  879. serializedVersion: 2
  880. minMaxState: 0
  881. scalar: 1
  882. minScalar: 1
  883. maxCurve:
  884. serializedVersion: 2
  885. m_Curve:
  886. - serializedVersion: 2
  887. time: 0
  888. value: 1
  889. inSlope: 0
  890. outSlope: 0
  891. tangentMode: 0
  892. - serializedVersion: 2
  893. time: 1
  894. value: 1
  895. inSlope: 0
  896. outSlope: 0
  897. tangentMode: 0
  898. m_PreInfinity: 2
  899. m_PostInfinity: 2
  900. m_RotationOrder: 4
  901. minCurve:
  902. serializedVersion: 2
  903. m_Curve:
  904. - serializedVersion: 2
  905. time: 0
  906. value: 1
  907. inSlope: 0
  908. outSlope: 0
  909. tangentMode: 0
  910. - serializedVersion: 2
  911. time: 1
  912. value: 1
  913. inSlope: 0
  914. outSlope: 0
  915. tangentMode: 0
  916. m_PreInfinity: 2
  917. m_PostInfinity: 2
  918. m_RotationOrder: 4
  919. startRotationX:
  920. serializedVersion: 2
  921. minMaxState: 0
  922. scalar: 0
  923. minScalar: 0
  924. maxCurve:
  925. serializedVersion: 2
  926. m_Curve:
  927. - serializedVersion: 2
  928. time: 0
  929. value: 0
  930. inSlope: 0
  931. outSlope: 0
  932. tangentMode: 0
  933. - serializedVersion: 2
  934. time: 1
  935. value: 0
  936. inSlope: 0
  937. outSlope: 0
  938. tangentMode: 0
  939. m_PreInfinity: 2
  940. m_PostInfinity: 2
  941. m_RotationOrder: 4
  942. minCurve:
  943. serializedVersion: 2
  944. m_Curve:
  945. - serializedVersion: 2
  946. time: 0
  947. value: 0
  948. inSlope: 0
  949. outSlope: 0
  950. tangentMode: 0
  951. - serializedVersion: 2
  952. time: 1
  953. value: 0
  954. inSlope: 0
  955. outSlope: 0
  956. tangentMode: 0
  957. m_PreInfinity: 2
  958. m_PostInfinity: 2
  959. m_RotationOrder: 4
  960. startRotationY:
  961. serializedVersion: 2
  962. minMaxState: 0
  963. scalar: 0
  964. minScalar: 0
  965. maxCurve:
  966. serializedVersion: 2
  967. m_Curve:
  968. - serializedVersion: 2
  969. time: 0
  970. value: 0
  971. inSlope: 0
  972. outSlope: 0
  973. tangentMode: 0
  974. - serializedVersion: 2
  975. time: 1
  976. value: 0
  977. inSlope: 0
  978. outSlope: 0
  979. tangentMode: 0
  980. m_PreInfinity: 2
  981. m_PostInfinity: 2
  982. m_RotationOrder: 4
  983. minCurve:
  984. serializedVersion: 2
  985. m_Curve:
  986. - serializedVersion: 2
  987. time: 0
  988. value: 0
  989. inSlope: 0
  990. outSlope: 0
  991. tangentMode: 0
  992. - serializedVersion: 2
  993. time: 1
  994. value: 0
  995. inSlope: 0
  996. outSlope: 0
  997. tangentMode: 0
  998. m_PreInfinity: 2
  999. m_PostInfinity: 2
  1000. m_RotationOrder: 4
  1001. startRotation:
  1002. serializedVersion: 2
  1003. minMaxState: 0
  1004. scalar: 0
  1005. minScalar: 0
  1006. maxCurve:
  1007. serializedVersion: 2
  1008. m_Curve:
  1009. - serializedVersion: 2
  1010. time: 0
  1011. value: 0
  1012. inSlope: 0
  1013. outSlope: 0
  1014. tangentMode: 0
  1015. - serializedVersion: 2
  1016. time: 1
  1017. value: 0
  1018. inSlope: 0
  1019. outSlope: 0
  1020. tangentMode: 0
  1021. m_PreInfinity: 2
  1022. m_PostInfinity: 2
  1023. m_RotationOrder: 4
  1024. minCurve:
  1025. serializedVersion: 2
  1026. m_Curve:
  1027. - serializedVersion: 2
  1028. time: 0
  1029. value: 0
  1030. inSlope: 0
  1031. outSlope: 0
  1032. tangentMode: 0
  1033. - serializedVersion: 2
  1034. time: 1
  1035. value: 0
  1036. inSlope: 0
  1037. outSlope: 0
  1038. tangentMode: 0
  1039. m_PreInfinity: 2
  1040. m_PostInfinity: 2
  1041. m_RotationOrder: 4
  1042. randomizeRotationDirection: 0
  1043. maxNumParticles: 1000
  1044. size3D: 0
  1045. rotation3D: 0
  1046. gravityModifier:
  1047. serializedVersion: 2
  1048. minMaxState: 0
  1049. scalar: 0
  1050. minScalar: 0
  1051. maxCurve:
  1052. serializedVersion: 2
  1053. m_Curve:
  1054. - serializedVersion: 2
  1055. time: 0
  1056. value: 0
  1057. inSlope: 0
  1058. outSlope: 0
  1059. tangentMode: 0
  1060. - serializedVersion: 2
  1061. time: 1
  1062. value: 0
  1063. inSlope: 0
  1064. outSlope: 0
  1065. tangentMode: 0
  1066. m_PreInfinity: 2
  1067. m_PostInfinity: 2
  1068. m_RotationOrder: 4
  1069. minCurve:
  1070. serializedVersion: 2
  1071. m_Curve:
  1072. - serializedVersion: 2
  1073. time: 0
  1074. value: 0
  1075. inSlope: 0
  1076. outSlope: 0
  1077. tangentMode: 0
  1078. - serializedVersion: 2
  1079. time: 1
  1080. value: 0
  1081. inSlope: 0
  1082. outSlope: 0
  1083. tangentMode: 0
  1084. m_PreInfinity: 2
  1085. m_PostInfinity: 2
  1086. m_RotationOrder: 4
  1087. ShapeModule:
  1088. serializedVersion: 5
  1089. enabled: 0
  1090. type: 4
  1091. angle: 25
  1092. length: 5
  1093. boxThickness: {x: 0, y: 0, z: 0}
  1094. radiusThickness: 1
  1095. donutRadius: 0.2
  1096. m_Position: {x: 0, y: 0, z: 0}
  1097. m_Rotation: {x: 0, y: 0, z: 0}
  1098. m_Scale: {x: 1, y: 1, z: 1}
  1099. placementMode: 0
  1100. m_Mesh: {fileID: 0}
  1101. m_MeshRenderer: {fileID: 0}
  1102. m_SkinnedMeshRenderer: {fileID: 0}
  1103. m_MeshMaterialIndex: 0
  1104. m_MeshNormalOffset: 0
  1105. m_UseMeshMaterialIndex: 0
  1106. m_UseMeshColors: 1
  1107. alignToDirection: 0
  1108. randomDirectionAmount: 0
  1109. sphericalDirectionAmount: 0
  1110. randomPositionAmount: 0
  1111. radius:
  1112. value: 1
  1113. mode: 0
  1114. spread: 0
  1115. speed:
  1116. serializedVersion: 2
  1117. minMaxState: 0
  1118. scalar: 1
  1119. minScalar: 1
  1120. maxCurve:
  1121. serializedVersion: 2
  1122. m_Curve:
  1123. - serializedVersion: 2
  1124. time: 0
  1125. value: 1
  1126. inSlope: 0
  1127. outSlope: 0
  1128. tangentMode: 0
  1129. - serializedVersion: 2
  1130. time: 1
  1131. value: 1
  1132. inSlope: 0
  1133. outSlope: 0
  1134. tangentMode: 0
  1135. m_PreInfinity: 2
  1136. m_PostInfinity: 2
  1137. m_RotationOrder: 4
  1138. minCurve:
  1139. serializedVersion: 2
  1140. m_Curve:
  1141. - serializedVersion: 2
  1142. time: 0
  1143. value: 1
  1144. inSlope: 0
  1145. outSlope: 0
  1146. tangentMode: 0
  1147. - serializedVersion: 2
  1148. time: 1
  1149. value: 1
  1150. inSlope: 0
  1151. outSlope: 0
  1152. tangentMode: 0
  1153. m_PreInfinity: 2
  1154. m_PostInfinity: 2
  1155. m_RotationOrder: 4
  1156. arc:
  1157. value: 360
  1158. mode: 0
  1159. spread: 0
  1160. speed:
  1161. serializedVersion: 2
  1162. minMaxState: 0
  1163. scalar: 1
  1164. minScalar: 1
  1165. maxCurve:
  1166. serializedVersion: 2
  1167. m_Curve:
  1168. - serializedVersion: 2
  1169. time: 0
  1170. value: 1
  1171. inSlope: 0
  1172. outSlope: 0
  1173. tangentMode: 0
  1174. - serializedVersion: 2
  1175. time: 1
  1176. value: 1
  1177. inSlope: 0
  1178. outSlope: 0
  1179. tangentMode: 0
  1180. m_PreInfinity: 2
  1181. m_PostInfinity: 2
  1182. m_RotationOrder: 4
  1183. minCurve:
  1184. serializedVersion: 2
  1185. m_Curve:
  1186. - serializedVersion: 2
  1187. time: 0
  1188. value: 1
  1189. inSlope: 0
  1190. outSlope: 0
  1191. tangentMode: 0
  1192. - serializedVersion: 2
  1193. time: 1
  1194. value: 1
  1195. inSlope: 0
  1196. outSlope: 0
  1197. tangentMode: 0
  1198. m_PreInfinity: 2
  1199. m_PostInfinity: 2
  1200. m_RotationOrder: 4
  1201. EmissionModule:
  1202. enabled: 0
  1203. serializedVersion: 4
  1204. rateOverTime:
  1205. serializedVersion: 2
  1206. minMaxState: 0
  1207. scalar: 10
  1208. minScalar: 10
  1209. maxCurve:
  1210. serializedVersion: 2
  1211. m_Curve:
  1212. - serializedVersion: 2
  1213. time: 0
  1214. value: 1
  1215. inSlope: 0
  1216. outSlope: 0
  1217. tangentMode: 0
  1218. - serializedVersion: 2
  1219. time: 1
  1220. value: 1
  1221. inSlope: 0
  1222. outSlope: 0
  1223. tangentMode: 0
  1224. m_PreInfinity: 2
  1225. m_PostInfinity: 2
  1226. m_RotationOrder: 4
  1227. minCurve:
  1228. serializedVersion: 2
  1229. m_Curve:
  1230. - serializedVersion: 2
  1231. time: 0
  1232. value: 1
  1233. inSlope: 0
  1234. outSlope: 0
  1235. tangentMode: 0
  1236. - serializedVersion: 2
  1237. time: 1
  1238. value: 1
  1239. inSlope: 0
  1240. outSlope: 0
  1241. tangentMode: 0
  1242. m_PreInfinity: 2
  1243. m_PostInfinity: 2
  1244. m_RotationOrder: 4
  1245. rateOverDistance:
  1246. serializedVersion: 2
  1247. minMaxState: 0
  1248. scalar: 0
  1249. minScalar: 0
  1250. maxCurve:
  1251. serializedVersion: 2
  1252. m_Curve:
  1253. - serializedVersion: 2
  1254. time: 0
  1255. value: 0
  1256. inSlope: 0
  1257. outSlope: 0
  1258. tangentMode: 0
  1259. - serializedVersion: 2
  1260. time: 1
  1261. value: 0
  1262. inSlope: 0
  1263. outSlope: 0
  1264. tangentMode: 0
  1265. m_PreInfinity: 2
  1266. m_PostInfinity: 2
  1267. m_RotationOrder: 4
  1268. minCurve:
  1269. serializedVersion: 2
  1270. m_Curve:
  1271. - serializedVersion: 2
  1272. time: 0
  1273. value: 0
  1274. inSlope: 0
  1275. outSlope: 0
  1276. tangentMode: 0
  1277. - serializedVersion: 2
  1278. time: 1
  1279. value: 0
  1280. inSlope: 0
  1281. outSlope: 0
  1282. tangentMode: 0
  1283. m_PreInfinity: 2
  1284. m_PostInfinity: 2
  1285. m_RotationOrder: 4
  1286. m_BurstCount: 0
  1287. m_Bursts: []
  1288. SizeModule:
  1289. enabled: 0
  1290. curve:
  1291. serializedVersion: 2
  1292. minMaxState: 1
  1293. scalar: 1
  1294. minScalar: 1
  1295. maxCurve:
  1296. serializedVersion: 2
  1297. m_Curve:
  1298. - serializedVersion: 2
  1299. time: 0
  1300. value: 0
  1301. inSlope: 0
  1302. outSlope: 1
  1303. tangentMode: 0
  1304. - serializedVersion: 2
  1305. time: 1
  1306. value: 1
  1307. inSlope: 1
  1308. outSlope: 0
  1309. tangentMode: 0
  1310. m_PreInfinity: 2
  1311. m_PostInfinity: 2
  1312. m_RotationOrder: 4
  1313. minCurve:
  1314. serializedVersion: 2
  1315. m_Curve:
  1316. - serializedVersion: 2
  1317. time: 0
  1318. value: 1
  1319. inSlope: 0
  1320. outSlope: 0
  1321. tangentMode: 0
  1322. - serializedVersion: 2
  1323. time: 1
  1324. value: 1
  1325. inSlope: 0
  1326. outSlope: 0
  1327. tangentMode: 0
  1328. m_PreInfinity: 2
  1329. m_PostInfinity: 2
  1330. m_RotationOrder: 4
  1331. y:
  1332. serializedVersion: 2
  1333. minMaxState: 1
  1334. scalar: 1
  1335. minScalar: 1
  1336. maxCurve:
  1337. serializedVersion: 2
  1338. m_Curve:
  1339. - serializedVersion: 2
  1340. time: 0
  1341. value: 0
  1342. inSlope: 0
  1343. outSlope: 1
  1344. tangentMode: 0
  1345. - serializedVersion: 2
  1346. time: 1
  1347. value: 1
  1348. inSlope: 1
  1349. outSlope: 0
  1350. tangentMode: 0
  1351. m_PreInfinity: 2
  1352. m_PostInfinity: 2
  1353. m_RotationOrder: 4
  1354. minCurve:
  1355. serializedVersion: 2
  1356. m_Curve:
  1357. - serializedVersion: 2
  1358. time: 0
  1359. value: 1
  1360. inSlope: 0
  1361. outSlope: 0
  1362. tangentMode: 0
  1363. - serializedVersion: 2
  1364. time: 1
  1365. value: 1
  1366. inSlope: 0
  1367. outSlope: 0
  1368. tangentMode: 0
  1369. m_PreInfinity: 2
  1370. m_PostInfinity: 2
  1371. m_RotationOrder: 4
  1372. z:
  1373. serializedVersion: 2
  1374. minMaxState: 1
  1375. scalar: 1
  1376. minScalar: 1
  1377. maxCurve:
  1378. serializedVersion: 2
  1379. m_Curve:
  1380. - serializedVersion: 2
  1381. time: 0
  1382. value: 0
  1383. inSlope: 0
  1384. outSlope: 1
  1385. tangentMode: 0
  1386. - serializedVersion: 2
  1387. time: 1
  1388. value: 1
  1389. inSlope: 1
  1390. outSlope: 0
  1391. tangentMode: 0
  1392. m_PreInfinity: 2
  1393. m_PostInfinity: 2
  1394. m_RotationOrder: 4
  1395. minCurve:
  1396. serializedVersion: 2
  1397. m_Curve:
  1398. - serializedVersion: 2
  1399. time: 0
  1400. value: 1
  1401. inSlope: 0
  1402. outSlope: 0
  1403. tangentMode: 0
  1404. - serializedVersion: 2
  1405. time: 1
  1406. value: 1
  1407. inSlope: 0
  1408. outSlope: 0
  1409. tangentMode: 0
  1410. m_PreInfinity: 2
  1411. m_PostInfinity: 2
  1412. m_RotationOrder: 4
  1413. separateAxes: 0
  1414. RotationModule:
  1415. enabled: 0
  1416. x:
  1417. serializedVersion: 2
  1418. minMaxState: 0
  1419. scalar: 0
  1420. minScalar: 0
  1421. maxCurve:
  1422. serializedVersion: 2
  1423. m_Curve:
  1424. - serializedVersion: 2
  1425. time: 0
  1426. value: 0
  1427. inSlope: 0
  1428. outSlope: 0
  1429. tangentMode: 0
  1430. - serializedVersion: 2
  1431. time: 1
  1432. value: 0
  1433. inSlope: 0
  1434. outSlope: 0
  1435. tangentMode: 0
  1436. m_PreInfinity: 2
  1437. m_PostInfinity: 2
  1438. m_RotationOrder: 4
  1439. minCurve:
  1440. serializedVersion: 2
  1441. m_Curve:
  1442. - serializedVersion: 2
  1443. time: 0
  1444. value: 0
  1445. inSlope: 0
  1446. outSlope: 0
  1447. tangentMode: 0
  1448. - serializedVersion: 2
  1449. time: 1
  1450. value: 0
  1451. inSlope: 0
  1452. outSlope: 0
  1453. tangentMode: 0
  1454. m_PreInfinity: 2
  1455. m_PostInfinity: 2
  1456. m_RotationOrder: 4
  1457. y:
  1458. serializedVersion: 2
  1459. minMaxState: 0
  1460. scalar: 0
  1461. minScalar: 0
  1462. maxCurve:
  1463. serializedVersion: 2
  1464. m_Curve:
  1465. - serializedVersion: 2
  1466. time: 0
  1467. value: 0
  1468. inSlope: 0
  1469. outSlope: 0
  1470. tangentMode: 0
  1471. - serializedVersion: 2
  1472. time: 1
  1473. value: 0
  1474. inSlope: 0
  1475. outSlope: 0
  1476. tangentMode: 0
  1477. m_PreInfinity: 2
  1478. m_PostInfinity: 2
  1479. m_RotationOrder: 4
  1480. minCurve:
  1481. serializedVersion: 2
  1482. m_Curve:
  1483. - serializedVersion: 2
  1484. time: 0
  1485. value: 0
  1486. inSlope: 0
  1487. outSlope: 0
  1488. tangentMode: 0
  1489. - serializedVersion: 2
  1490. time: 1
  1491. value: 0
  1492. inSlope: 0
  1493. outSlope: 0
  1494. tangentMode: 0
  1495. m_PreInfinity: 2
  1496. m_PostInfinity: 2
  1497. m_RotationOrder: 4
  1498. curve:
  1499. serializedVersion: 2
  1500. minMaxState: 0
  1501. scalar: 0.7853982
  1502. minScalar: 0.7853982
  1503. maxCurve:
  1504. serializedVersion: 2
  1505. m_Curve:
  1506. - serializedVersion: 2
  1507. time: 0
  1508. value: 1
  1509. inSlope: 0
  1510. outSlope: 0
  1511. tangentMode: 0
  1512. - serializedVersion: 2
  1513. time: 1
  1514. value: 1
  1515. inSlope: 0
  1516. outSlope: 0
  1517. tangentMode: 0
  1518. m_PreInfinity: 2
  1519. m_PostInfinity: 2
  1520. m_RotationOrder: 4
  1521. minCurve:
  1522. serializedVersion: 2
  1523. m_Curve:
  1524. - serializedVersion: 2
  1525. time: 0
  1526. value: 1
  1527. inSlope: 0
  1528. outSlope: 0
  1529. tangentMode: 0
  1530. - serializedVersion: 2
  1531. time: 1
  1532. value: 1
  1533. inSlope: 0
  1534. outSlope: 0
  1535. tangentMode: 0
  1536. m_PreInfinity: 2
  1537. m_PostInfinity: 2
  1538. m_RotationOrder: 4
  1539. separateAxes: 0
  1540. ColorModule:
  1541. enabled: 0
  1542. gradient:
  1543. serializedVersion: 2
  1544. minMaxState: 1
  1545. minColor: {r: 1, g: 1, b: 1, a: 1}
  1546. maxColor: {r: 1, g: 1, b: 1, a: 1}
  1547. maxGradient:
  1548. serializedVersion: 2
  1549. key0: {r: 1, g: 1, b: 1, a: 1}
  1550. key1: {r: 1, g: 1, b: 1, a: 1}
  1551. key2: {r: 0, g: 0, b: 0, a: 0}
  1552. key3: {r: 0, g: 0, b: 0, a: 0}
  1553. key4: {r: 0, g: 0, b: 0, a: 0}
  1554. key5: {r: 0, g: 0, b: 0, a: 0}
  1555. key6: {r: 0, g: 0, b: 0, a: 0}
  1556. key7: {r: 0, g: 0, b: 0, a: 0}
  1557. ctime0: 0
  1558. ctime1: 65535
  1559. ctime2: 0
  1560. ctime3: 0
  1561. ctime4: 0
  1562. ctime5: 0
  1563. ctime6: 0
  1564. ctime7: 0
  1565. atime0: 0
  1566. atime1: 65535
  1567. atime2: 0
  1568. atime3: 0
  1569. atime4: 0
  1570. atime5: 0
  1571. atime6: 0
  1572. atime7: 0
  1573. m_Mode: 0
  1574. m_NumColorKeys: 2
  1575. m_NumAlphaKeys: 2
  1576. minGradient:
  1577. serializedVersion: 2
  1578. key0: {r: 1, g: 1, b: 1, a: 1}
  1579. key1: {r: 1, g: 1, b: 1, a: 1}
  1580. key2: {r: 0, g: 0, b: 0, a: 0}
  1581. key3: {r: 0, g: 0, b: 0, a: 0}
  1582. key4: {r: 0, g: 0, b: 0, a: 0}
  1583. key5: {r: 0, g: 0, b: 0, a: 0}
  1584. key6: {r: 0, g: 0, b: 0, a: 0}
  1585. key7: {r: 0, g: 0, b: 0, a: 0}
  1586. ctime0: 0
  1587. ctime1: 65535
  1588. ctime2: 0
  1589. ctime3: 0
  1590. ctime4: 0
  1591. ctime5: 0
  1592. ctime6: 0
  1593. ctime7: 0
  1594. atime0: 0
  1595. atime1: 65535
  1596. atime2: 0
  1597. atime3: 0
  1598. atime4: 0
  1599. atime5: 0
  1600. atime6: 0
  1601. atime7: 0
  1602. m_Mode: 0
  1603. m_NumColorKeys: 2
  1604. m_NumAlphaKeys: 2
  1605. UVModule:
  1606. enabled: 0
  1607. mode: 0
  1608. frameOverTime:
  1609. serializedVersion: 2
  1610. minMaxState: 1
  1611. scalar: 0.9999
  1612. minScalar: 0.9999
  1613. maxCurve:
  1614. serializedVersion: 2
  1615. m_Curve:
  1616. - serializedVersion: 2
  1617. time: 0
  1618. value: 0
  1619. inSlope: 0
  1620. outSlope: 1
  1621. tangentMode: 0
  1622. - serializedVersion: 2
  1623. time: 1
  1624. value: 1
  1625. inSlope: 1
  1626. outSlope: 0
  1627. tangentMode: 0
  1628. m_PreInfinity: 2
  1629. m_PostInfinity: 2
  1630. m_RotationOrder: 4
  1631. minCurve:
  1632. serializedVersion: 2
  1633. m_Curve:
  1634. - serializedVersion: 2
  1635. time: 0
  1636. value: 1
  1637. inSlope: 0
  1638. outSlope: 0
  1639. tangentMode: 0
  1640. - serializedVersion: 2
  1641. time: 1
  1642. value: 1
  1643. inSlope: 0
  1644. outSlope: 0
  1645. tangentMode: 0
  1646. m_PreInfinity: 2
  1647. m_PostInfinity: 2
  1648. m_RotationOrder: 4
  1649. startFrame:
  1650. serializedVersion: 2
  1651. minMaxState: 0
  1652. scalar: 0
  1653. minScalar: 0
  1654. maxCurve:
  1655. serializedVersion: 2
  1656. m_Curve:
  1657. - serializedVersion: 2
  1658. time: 0
  1659. value: 0
  1660. inSlope: 0
  1661. outSlope: 0
  1662. tangentMode: 0
  1663. - serializedVersion: 2
  1664. time: 1
  1665. value: 0
  1666. inSlope: 0
  1667. outSlope: 0
  1668. tangentMode: 0
  1669. m_PreInfinity: 2
  1670. m_PostInfinity: 2
  1671. m_RotationOrder: 4
  1672. minCurve:
  1673. serializedVersion: 2
  1674. m_Curve:
  1675. - serializedVersion: 2
  1676. time: 0
  1677. value: 0
  1678. inSlope: 0
  1679. outSlope: 0
  1680. tangentMode: 0
  1681. - serializedVersion: 2
  1682. time: 1
  1683. value: 0
  1684. inSlope: 0
  1685. outSlope: 0
  1686. tangentMode: 0
  1687. m_PreInfinity: 2
  1688. m_PostInfinity: 2
  1689. m_RotationOrder: 4
  1690. tilesX: 1
  1691. tilesY: 1
  1692. animationType: 0
  1693. rowIndex: 0
  1694. cycles: 1
  1695. uvChannelMask: -1
  1696. flipU: 0
  1697. flipV: 0
  1698. randomRow: 1
  1699. sprites:
  1700. - sprite: {fileID: 0}
  1701. VelocityModule:
  1702. enabled: 0
  1703. x:
  1704. serializedVersion: 2
  1705. minMaxState: 0
  1706. scalar: 0
  1707. minScalar: 0
  1708. maxCurve:
  1709. serializedVersion: 2
  1710. m_Curve:
  1711. - serializedVersion: 2
  1712. time: 0
  1713. value: 0
  1714. inSlope: 0
  1715. outSlope: 0
  1716. tangentMode: 0
  1717. - serializedVersion: 2
  1718. time: 1
  1719. value: 0
  1720. inSlope: 0
  1721. outSlope: 0
  1722. tangentMode: 0
  1723. m_PreInfinity: 2
  1724. m_PostInfinity: 2
  1725. m_RotationOrder: 4
  1726. minCurve:
  1727. serializedVersion: 2
  1728. m_Curve:
  1729. - serializedVersion: 2
  1730. time: 0
  1731. value: 0
  1732. inSlope: 0
  1733. outSlope: 0
  1734. tangentMode: 0
  1735. - serializedVersion: 2
  1736. time: 1
  1737. value: 0
  1738. inSlope: 0
  1739. outSlope: 0
  1740. tangentMode: 0
  1741. m_PreInfinity: 2
  1742. m_PostInfinity: 2
  1743. m_RotationOrder: 4
  1744. y:
  1745. serializedVersion: 2
  1746. minMaxState: 0
  1747. scalar: 0
  1748. minScalar: 0
  1749. maxCurve:
  1750. serializedVersion: 2
  1751. m_Curve:
  1752. - serializedVersion: 2
  1753. time: 0
  1754. value: 0
  1755. inSlope: 0
  1756. outSlope: 0
  1757. tangentMode: 0
  1758. - serializedVersion: 2
  1759. time: 1
  1760. value: 0
  1761. inSlope: 0
  1762. outSlope: 0
  1763. tangentMode: 0
  1764. m_PreInfinity: 2
  1765. m_PostInfinity: 2
  1766. m_RotationOrder: 4
  1767. minCurve:
  1768. serializedVersion: 2
  1769. m_Curve:
  1770. - serializedVersion: 2
  1771. time: 0
  1772. value: 0
  1773. inSlope: 0
  1774. outSlope: 0
  1775. tangentMode: 0
  1776. - serializedVersion: 2
  1777. time: 1
  1778. value: 0
  1779. inSlope: 0
  1780. outSlope: 0
  1781. tangentMode: 0
  1782. m_PreInfinity: 2
  1783. m_PostInfinity: 2
  1784. m_RotationOrder: 4
  1785. z:
  1786. serializedVersion: 2
  1787. minMaxState: 0
  1788. scalar: 0
  1789. minScalar: 0
  1790. maxCurve:
  1791. serializedVersion: 2
  1792. m_Curve:
  1793. - serializedVersion: 2
  1794. time: 0
  1795. value: 0
  1796. inSlope: 0
  1797. outSlope: 0
  1798. tangentMode: 0
  1799. - serializedVersion: 2
  1800. time: 1
  1801. value: 0
  1802. inSlope: 0
  1803. outSlope: 0
  1804. tangentMode: 0
  1805. m_PreInfinity: 2
  1806. m_PostInfinity: 2
  1807. m_RotationOrder: 4
  1808. minCurve:
  1809. serializedVersion: 2
  1810. m_Curve:
  1811. - serializedVersion: 2
  1812. time: 0
  1813. value: 0
  1814. inSlope: 0
  1815. outSlope: 0
  1816. tangentMode: 0
  1817. - serializedVersion: 2
  1818. time: 1
  1819. value: 0
  1820. inSlope: 0
  1821. outSlope: 0
  1822. tangentMode: 0
  1823. m_PreInfinity: 2
  1824. m_PostInfinity: 2
  1825. m_RotationOrder: 4
  1826. inWorldSpace: 0
  1827. InheritVelocityModule:
  1828. enabled: 0
  1829. m_Mode: 0
  1830. m_Curve:
  1831. serializedVersion: 2
  1832. minMaxState: 0
  1833. scalar: 0
  1834. minScalar: 0
  1835. maxCurve:
  1836. serializedVersion: 2
  1837. m_Curve:
  1838. - serializedVersion: 2
  1839. time: 0
  1840. value: 0
  1841. inSlope: 0
  1842. outSlope: 0
  1843. tangentMode: 0
  1844. - serializedVersion: 2
  1845. time: 1
  1846. value: 0
  1847. inSlope: 0
  1848. outSlope: 0
  1849. tangentMode: 0
  1850. m_PreInfinity: 2
  1851. m_PostInfinity: 2
  1852. m_RotationOrder: 4
  1853. minCurve:
  1854. serializedVersion: 2
  1855. m_Curve:
  1856. - serializedVersion: 2
  1857. time: 0
  1858. value: 0
  1859. inSlope: 0
  1860. outSlope: 0
  1861. tangentMode: 0
  1862. - serializedVersion: 2
  1863. time: 1
  1864. value: 0
  1865. inSlope: 0
  1866. outSlope: 0
  1867. tangentMode: 0
  1868. m_PreInfinity: 2
  1869. m_PostInfinity: 2
  1870. m_RotationOrder: 4
  1871. ForceModule:
  1872. enabled: 0
  1873. x:
  1874. serializedVersion: 2
  1875. minMaxState: 0
  1876. scalar: 0
  1877. minScalar: 0
  1878. maxCurve:
  1879. serializedVersion: 2
  1880. m_Curve:
  1881. - serializedVersion: 2
  1882. time: 0
  1883. value: 0
  1884. inSlope: 0
  1885. outSlope: 0
  1886. tangentMode: 0
  1887. - serializedVersion: 2
  1888. time: 1
  1889. value: 0
  1890. inSlope: 0
  1891. outSlope: 0
  1892. tangentMode: 0
  1893. m_PreInfinity: 2
  1894. m_PostInfinity: 2
  1895. m_RotationOrder: 4
  1896. minCurve:
  1897. serializedVersion: 2
  1898. m_Curve:
  1899. - serializedVersion: 2
  1900. time: 0
  1901. value: 0
  1902. inSlope: 0
  1903. outSlope: 0
  1904. tangentMode: 0
  1905. - serializedVersion: 2
  1906. time: 1
  1907. value: 0
  1908. inSlope: 0
  1909. outSlope: 0
  1910. tangentMode: 0
  1911. m_PreInfinity: 2
  1912. m_PostInfinity: 2
  1913. m_RotationOrder: 4
  1914. y:
  1915. serializedVersion: 2
  1916. minMaxState: 0
  1917. scalar: 0
  1918. minScalar: 0
  1919. maxCurve:
  1920. serializedVersion: 2
  1921. m_Curve:
  1922. - serializedVersion: 2
  1923. time: 0
  1924. value: 0
  1925. inSlope: 0
  1926. outSlope: 0
  1927. tangentMode: 0
  1928. - serializedVersion: 2
  1929. time: 1
  1930. value: 0
  1931. inSlope: 0
  1932. outSlope: 0
  1933. tangentMode: 0
  1934. m_PreInfinity: 2
  1935. m_PostInfinity: 2
  1936. m_RotationOrder: 4
  1937. minCurve:
  1938. serializedVersion: 2
  1939. m_Curve:
  1940. - serializedVersion: 2
  1941. time: 0
  1942. value: 0
  1943. inSlope: 0
  1944. outSlope: 0
  1945. tangentMode: 0
  1946. - serializedVersion: 2
  1947. time: 1
  1948. value: 0
  1949. inSlope: 0
  1950. outSlope: 0
  1951. tangentMode: 0
  1952. m_PreInfinity: 2
  1953. m_PostInfinity: 2
  1954. m_RotationOrder: 4
  1955. z:
  1956. serializedVersion: 2
  1957. minMaxState: 0
  1958. scalar: 0
  1959. minScalar: 0
  1960. maxCurve:
  1961. serializedVersion: 2
  1962. m_Curve:
  1963. - serializedVersion: 2
  1964. time: 0
  1965. value: 0
  1966. inSlope: 0
  1967. outSlope: 0
  1968. tangentMode: 0
  1969. - serializedVersion: 2
  1970. time: 1
  1971. value: 0
  1972. inSlope: 0
  1973. outSlope: 0
  1974. tangentMode: 0
  1975. m_PreInfinity: 2
  1976. m_PostInfinity: 2
  1977. m_RotationOrder: 4
  1978. minCurve:
  1979. serializedVersion: 2
  1980. m_Curve:
  1981. - serializedVersion: 2
  1982. time: 0
  1983. value: 0
  1984. inSlope: 0
  1985. outSlope: 0
  1986. tangentMode: 0
  1987. - serializedVersion: 2
  1988. time: 1
  1989. value: 0
  1990. inSlope: 0
  1991. outSlope: 0
  1992. tangentMode: 0
  1993. m_PreInfinity: 2
  1994. m_PostInfinity: 2
  1995. m_RotationOrder: 4
  1996. inWorldSpace: 0
  1997. randomizePerFrame: 0
  1998. ExternalForcesModule:
  1999. enabled: 0
  2000. multiplier: 1
  2001. ClampVelocityModule:
  2002. enabled: 0
  2003. x:
  2004. serializedVersion: 2
  2005. minMaxState: 0
  2006. scalar: 1
  2007. minScalar: 1
  2008. maxCurve:
  2009. serializedVersion: 2
  2010. m_Curve:
  2011. - serializedVersion: 2
  2012. time: 0
  2013. value: 1
  2014. inSlope: 0
  2015. outSlope: 0
  2016. tangentMode: 0
  2017. - serializedVersion: 2
  2018. time: 1
  2019. value: 1
  2020. inSlope: 0
  2021. outSlope: 0
  2022. tangentMode: 0
  2023. m_PreInfinity: 2
  2024. m_PostInfinity: 2
  2025. m_RotationOrder: 4
  2026. minCurve:
  2027. serializedVersion: 2
  2028. m_Curve:
  2029. - serializedVersion: 2
  2030. time: 0
  2031. value: 1
  2032. inSlope: 0
  2033. outSlope: 0
  2034. tangentMode: 0
  2035. - serializedVersion: 2
  2036. time: 1
  2037. value: 1
  2038. inSlope: 0
  2039. outSlope: 0
  2040. tangentMode: 0
  2041. m_PreInfinity: 2
  2042. m_PostInfinity: 2
  2043. m_RotationOrder: 4
  2044. y:
  2045. serializedVersion: 2
  2046. minMaxState: 0
  2047. scalar: 1
  2048. minScalar: 1
  2049. maxCurve:
  2050. serializedVersion: 2
  2051. m_Curve:
  2052. - serializedVersion: 2
  2053. time: 0
  2054. value: 1
  2055. inSlope: 0
  2056. outSlope: 0
  2057. tangentMode: 0
  2058. - serializedVersion: 2
  2059. time: 1
  2060. value: 1
  2061. inSlope: 0
  2062. outSlope: 0
  2063. tangentMode: 0
  2064. m_PreInfinity: 2
  2065. m_PostInfinity: 2
  2066. m_RotationOrder: 4
  2067. minCurve:
  2068. serializedVersion: 2
  2069. m_Curve:
  2070. - serializedVersion: 2
  2071. time: 0
  2072. value: 1
  2073. inSlope: 0
  2074. outSlope: 0
  2075. tangentMode: 0
  2076. - serializedVersion: 2
  2077. time: 1
  2078. value: 1
  2079. inSlope: 0
  2080. outSlope: 0
  2081. tangentMode: 0
  2082. m_PreInfinity: 2
  2083. m_PostInfinity: 2
  2084. m_RotationOrder: 4
  2085. z:
  2086. serializedVersion: 2
  2087. minMaxState: 0
  2088. scalar: 1
  2089. minScalar: 1
  2090. maxCurve:
  2091. serializedVersion: 2
  2092. m_Curve:
  2093. - serializedVersion: 2
  2094. time: 0
  2095. value: 1
  2096. inSlope: 0
  2097. outSlope: 0
  2098. tangentMode: 0
  2099. - serializedVersion: 2
  2100. time: 1
  2101. value: 1
  2102. inSlope: 0
  2103. outSlope: 0
  2104. tangentMode: 0
  2105. m_PreInfinity: 2
  2106. m_PostInfinity: 2
  2107. m_RotationOrder: 4
  2108. minCurve:
  2109. serializedVersion: 2
  2110. m_Curve:
  2111. - serializedVersion: 2
  2112. time: 0
  2113. value: 1
  2114. inSlope: 0
  2115. outSlope: 0
  2116. tangentMode: 0
  2117. - serializedVersion: 2
  2118. time: 1
  2119. value: 1
  2120. inSlope: 0
  2121. outSlope: 0
  2122. tangentMode: 0
  2123. m_PreInfinity: 2
  2124. m_PostInfinity: 2
  2125. m_RotationOrder: 4
  2126. magnitude:
  2127. serializedVersion: 2
  2128. minMaxState: 0
  2129. scalar: 1
  2130. minScalar: 1
  2131. maxCurve:
  2132. serializedVersion: 2
  2133. m_Curve:
  2134. - serializedVersion: 2
  2135. time: 0
  2136. value: 1
  2137. inSlope: 0
  2138. outSlope: 0
  2139. tangentMode: 0
  2140. - serializedVersion: 2
  2141. time: 1
  2142. value: 1
  2143. inSlope: 0
  2144. outSlope: 0
  2145. tangentMode: 0
  2146. m_PreInfinity: 2
  2147. m_PostInfinity: 2
  2148. m_RotationOrder: 4
  2149. minCurve:
  2150. serializedVersion: 2
  2151. m_Curve:
  2152. - serializedVersion: 2
  2153. time: 0
  2154. value: 1
  2155. inSlope: 0
  2156. outSlope: 0
  2157. tangentMode: 0
  2158. - serializedVersion: 2
  2159. time: 1
  2160. value: 1
  2161. inSlope: 0
  2162. outSlope: 0
  2163. tangentMode: 0
  2164. m_PreInfinity: 2
  2165. m_PostInfinity: 2
  2166. m_RotationOrder: 4
  2167. separateAxis: 0
  2168. inWorldSpace: 0
  2169. multiplyDragByParticleSize: 1
  2170. multiplyDragByParticleVelocity: 1
  2171. dampen: 0
  2172. drag:
  2173. serializedVersion: 2
  2174. minMaxState: 0
  2175. scalar: 0
  2176. minScalar: 0
  2177. maxCurve:
  2178. serializedVersion: 2
  2179. m_Curve:
  2180. - serializedVersion: 2
  2181. time: 0
  2182. value: 0
  2183. inSlope: 0
  2184. outSlope: 0
  2185. tangentMode: 0
  2186. - serializedVersion: 2
  2187. time: 1
  2188. value: 0
  2189. inSlope: 0
  2190. outSlope: 0
  2191. tangentMode: 0
  2192. m_PreInfinity: 2
  2193. m_PostInfinity: 2
  2194. m_RotationOrder: 4
  2195. minCurve:
  2196. serializedVersion: 2
  2197. m_Curve:
  2198. - serializedVersion: 2
  2199. time: 0
  2200. value: 0
  2201. inSlope: 0
  2202. outSlope: 0
  2203. tangentMode: 0
  2204. - serializedVersion: 2
  2205. time: 1
  2206. value: 0
  2207. inSlope: 0
  2208. outSlope: 0
  2209. tangentMode: 0
  2210. m_PreInfinity: 2
  2211. m_PostInfinity: 2
  2212. m_RotationOrder: 4
  2213. NoiseModule:
  2214. enabled: 0
  2215. strength:
  2216. serializedVersion: 2
  2217. minMaxState: 0
  2218. scalar: 1
  2219. minScalar: 1
  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. - serializedVersion: 2
  2230. time: 1
  2231. value: 1
  2232. inSlope: 0
  2233. outSlope: 0
  2234. tangentMode: 0
  2235. m_PreInfinity: 2
  2236. m_PostInfinity: 2
  2237. m_RotationOrder: 4
  2238. minCurve:
  2239. serializedVersion: 2
  2240. m_Curve:
  2241. - serializedVersion: 2
  2242. time: 0
  2243. value: 1
  2244. inSlope: 0
  2245. outSlope: 0
  2246. tangentMode: 0
  2247. - serializedVersion: 2
  2248. time: 1
  2249. value: 1
  2250. inSlope: 0
  2251. outSlope: 0
  2252. tangentMode: 0
  2253. m_PreInfinity: 2
  2254. m_PostInfinity: 2
  2255. m_RotationOrder: 4
  2256. strengthY:
  2257. serializedVersion: 2
  2258. minMaxState: 0
  2259. scalar: 1
  2260. minScalar: 1
  2261. maxCurve:
  2262. serializedVersion: 2
  2263. m_Curve:
  2264. - serializedVersion: 2
  2265. time: 0
  2266. value: 1
  2267. inSlope: 0
  2268. outSlope: 0
  2269. tangentMode: 0
  2270. - serializedVersion: 2
  2271. time: 1
  2272. value: 1
  2273. inSlope: 0
  2274. outSlope: 0
  2275. tangentMode: 0
  2276. m_PreInfinity: 2
  2277. m_PostInfinity: 2
  2278. m_RotationOrder: 4
  2279. minCurve:
  2280. serializedVersion: 2
  2281. m_Curve:
  2282. - serializedVersion: 2
  2283. time: 0
  2284. value: 1
  2285. inSlope: 0
  2286. outSlope: 0
  2287. tangentMode: 0
  2288. - serializedVersion: 2
  2289. time: 1
  2290. value: 1
  2291. inSlope: 0
  2292. outSlope: 0
  2293. tangentMode: 0
  2294. m_PreInfinity: 2
  2295. m_PostInfinity: 2
  2296. m_RotationOrder: 4
  2297. strengthZ:
  2298. serializedVersion: 2
  2299. minMaxState: 0
  2300. scalar: 1
  2301. minScalar: 1
  2302. maxCurve:
  2303. serializedVersion: 2
  2304. m_Curve:
  2305. - serializedVersion: 2
  2306. time: 0
  2307. value: 1
  2308. inSlope: 0
  2309. outSlope: 0
  2310. tangentMode: 0
  2311. - serializedVersion: 2
  2312. time: 1
  2313. value: 1
  2314. inSlope: 0
  2315. outSlope: 0
  2316. tangentMode: 0
  2317. m_PreInfinity: 2
  2318. m_PostInfinity: 2
  2319. m_RotationOrder: 4
  2320. minCurve:
  2321. serializedVersion: 2
  2322. m_Curve:
  2323. - serializedVersion: 2
  2324. time: 0
  2325. value: 1
  2326. inSlope: 0
  2327. outSlope: 0
  2328. tangentMode: 0
  2329. - serializedVersion: 2
  2330. time: 1
  2331. value: 1
  2332. inSlope: 0
  2333. outSlope: 0
  2334. tangentMode: 0
  2335. m_PreInfinity: 2
  2336. m_PostInfinity: 2
  2337. m_RotationOrder: 4
  2338. separateAxes: 0
  2339. frequency: 0.5
  2340. damping: 1
  2341. octaves: 1
  2342. octaveMultiplier: 0.5
  2343. octaveScale: 2
  2344. quality: 2
  2345. scrollSpeed:
  2346. serializedVersion: 2
  2347. minMaxState: 0
  2348. scalar: 0
  2349. minScalar: 0
  2350. maxCurve:
  2351. serializedVersion: 2
  2352. m_Curve:
  2353. - serializedVersion: 2
  2354. time: 0
  2355. value: 0
  2356. inSlope: 0
  2357. outSlope: 0
  2358. tangentMode: 0
  2359. - serializedVersion: 2
  2360. time: 1
  2361. value: 0
  2362. inSlope: 0
  2363. outSlope: 0
  2364. tangentMode: 0
  2365. m_PreInfinity: 2
  2366. m_PostInfinity: 2
  2367. m_RotationOrder: 4
  2368. minCurve:
  2369. serializedVersion: 2
  2370. m_Curve:
  2371. - serializedVersion: 2
  2372. time: 0
  2373. value: 0
  2374. inSlope: 0
  2375. outSlope: 0
  2376. tangentMode: 0
  2377. - serializedVersion: 2
  2378. time: 1
  2379. value: 0
  2380. inSlope: 0
  2381. outSlope: 0
  2382. tangentMode: 0
  2383. m_PreInfinity: 2
  2384. m_PostInfinity: 2
  2385. m_RotationOrder: 4
  2386. remap:
  2387. serializedVersion: 2
  2388. minMaxState: 1
  2389. scalar: 1
  2390. minScalar: 1
  2391. maxCurve:
  2392. serializedVersion: 2
  2393. m_Curve:
  2394. - serializedVersion: 2
  2395. time: 0
  2396. value: 0
  2397. inSlope: 0
  2398. outSlope: 1
  2399. tangentMode: 0
  2400. - serializedVersion: 2
  2401. time: 1
  2402. value: 1
  2403. inSlope: 1
  2404. outSlope: 0
  2405. tangentMode: 0
  2406. m_PreInfinity: 2
  2407. m_PostInfinity: 2
  2408. m_RotationOrder: 4
  2409. minCurve:
  2410. serializedVersion: 2
  2411. m_Curve:
  2412. - serializedVersion: 2
  2413. time: 0
  2414. value: 1
  2415. inSlope: 0
  2416. outSlope: 0
  2417. tangentMode: 0
  2418. - serializedVersion: 2
  2419. time: 1
  2420. value: 1
  2421. inSlope: 0
  2422. outSlope: 0
  2423. tangentMode: 0
  2424. m_PreInfinity: 2
  2425. m_PostInfinity: 2
  2426. m_RotationOrder: 4
  2427. remapY:
  2428. serializedVersion: 2
  2429. minMaxState: 1
  2430. scalar: 1
  2431. minScalar: 1
  2432. maxCurve:
  2433. serializedVersion: 2
  2434. m_Curve:
  2435. - serializedVersion: 2
  2436. time: 0
  2437. value: 0
  2438. inSlope: 0
  2439. outSlope: 1
  2440. tangentMode: 0
  2441. - serializedVersion: 2
  2442. time: 1
  2443. value: 1
  2444. inSlope: 1
  2445. outSlope: 0
  2446. tangentMode: 0
  2447. m_PreInfinity: 2
  2448. m_PostInfinity: 2
  2449. m_RotationOrder: 4
  2450. minCurve:
  2451. serializedVersion: 2
  2452. m_Curve:
  2453. - serializedVersion: 2
  2454. time: 0
  2455. value: 1
  2456. inSlope: 0
  2457. outSlope: 0
  2458. tangentMode: 0
  2459. - serializedVersion: 2
  2460. time: 1
  2461. value: 1
  2462. inSlope: 0
  2463. outSlope: 0
  2464. tangentMode: 0
  2465. m_PreInfinity: 2
  2466. m_PostInfinity: 2
  2467. m_RotationOrder: 4
  2468. remapZ:
  2469. serializedVersion: 2
  2470. minMaxState: 1
  2471. scalar: 1
  2472. minScalar: 1
  2473. maxCurve:
  2474. serializedVersion: 2
  2475. m_Curve:
  2476. - serializedVersion: 2
  2477. time: 0
  2478. value: 0
  2479. inSlope: 0
  2480. outSlope: 1
  2481. tangentMode: 0
  2482. - serializedVersion: 2
  2483. time: 1
  2484. value: 1
  2485. inSlope: 1
  2486. outSlope: 0
  2487. tangentMode: 0
  2488. m_PreInfinity: 2
  2489. m_PostInfinity: 2
  2490. m_RotationOrder: 4
  2491. minCurve:
  2492. serializedVersion: 2
  2493. m_Curve:
  2494. - serializedVersion: 2
  2495. time: 0
  2496. value: 1
  2497. inSlope: 0
  2498. outSlope: 0
  2499. tangentMode: 0
  2500. - serializedVersion: 2
  2501. time: 1
  2502. value: 1
  2503. inSlope: 0
  2504. outSlope: 0
  2505. tangentMode: 0
  2506. m_PreInfinity: 2
  2507. m_PostInfinity: 2
  2508. m_RotationOrder: 4
  2509. remapEnabled: 0
  2510. positionAmount:
  2511. serializedVersion: 2
  2512. minMaxState: 0
  2513. scalar: 1
  2514. minScalar: 1
  2515. maxCurve:
  2516. serializedVersion: 2
  2517. m_Curve:
  2518. - serializedVersion: 2
  2519. time: 0
  2520. value: 1
  2521. inSlope: 0
  2522. outSlope: 0
  2523. tangentMode: 0
  2524. - serializedVersion: 2
  2525. time: 1
  2526. value: 1
  2527. inSlope: 0
  2528. outSlope: 0
  2529. tangentMode: 0
  2530. m_PreInfinity: 2
  2531. m_PostInfinity: 2
  2532. m_RotationOrder: 4
  2533. minCurve:
  2534. serializedVersion: 2
  2535. m_Curve:
  2536. - serializedVersion: 2
  2537. time: 0
  2538. value: 1
  2539. inSlope: 0
  2540. outSlope: 0
  2541. tangentMode: 0
  2542. - serializedVersion: 2
  2543. time: 1
  2544. value: 1
  2545. inSlope: 0
  2546. outSlope: 0
  2547. tangentMode: 0
  2548. m_PreInfinity: 2
  2549. m_PostInfinity: 2
  2550. m_RotationOrder: 4
  2551. rotationAmount:
  2552. serializedVersion: 2
  2553. minMaxState: 0
  2554. scalar: 0
  2555. minScalar: 0
  2556. maxCurve:
  2557. serializedVersion: 2
  2558. m_Curve:
  2559. - serializedVersion: 2
  2560. time: 0
  2561. value: 0
  2562. inSlope: 0
  2563. outSlope: 0
  2564. tangentMode: 0
  2565. - serializedVersion: 2
  2566. time: 1
  2567. value: 0
  2568. inSlope: 0
  2569. outSlope: 0
  2570. tangentMode: 0
  2571. m_PreInfinity: 2
  2572. m_PostInfinity: 2
  2573. m_RotationOrder: 4
  2574. minCurve:
  2575. serializedVersion: 2
  2576. m_Curve:
  2577. - serializedVersion: 2
  2578. time: 0
  2579. value: 0
  2580. inSlope: 0
  2581. outSlope: 0
  2582. tangentMode: 0
  2583. - serializedVersion: 2
  2584. time: 1
  2585. value: 0
  2586. inSlope: 0
  2587. outSlope: 0
  2588. tangentMode: 0
  2589. m_PreInfinity: 2
  2590. m_PostInfinity: 2
  2591. m_RotationOrder: 4
  2592. sizeAmount:
  2593. serializedVersion: 2
  2594. minMaxState: 0
  2595. scalar: 0
  2596. minScalar: 0
  2597. maxCurve:
  2598. serializedVersion: 2
  2599. m_Curve:
  2600. - serializedVersion: 2
  2601. time: 0
  2602. value: 0
  2603. inSlope: 0
  2604. outSlope: 0
  2605. tangentMode: 0
  2606. - serializedVersion: 2
  2607. time: 1
  2608. value: 0
  2609. inSlope: 0
  2610. outSlope: 0
  2611. tangentMode: 0
  2612. m_PreInfinity: 2
  2613. m_PostInfinity: 2
  2614. m_RotationOrder: 4
  2615. minCurve:
  2616. serializedVersion: 2
  2617. m_Curve:
  2618. - serializedVersion: 2
  2619. time: 0
  2620. value: 0
  2621. inSlope: 0
  2622. outSlope: 0
  2623. tangentMode: 0
  2624. - serializedVersion: 2
  2625. time: 1
  2626. value: 0
  2627. inSlope: 0
  2628. outSlope: 0
  2629. tangentMode: 0
  2630. m_PreInfinity: 2
  2631. m_PostInfinity: 2
  2632. m_RotationOrder: 4
  2633. SizeBySpeedModule:
  2634. enabled: 0
  2635. curve:
  2636. serializedVersion: 2
  2637. minMaxState: 1
  2638. scalar: 1
  2639. minScalar: 1
  2640. maxCurve:
  2641. serializedVersion: 2
  2642. m_Curve:
  2643. - serializedVersion: 2
  2644. time: 0
  2645. value: 0
  2646. inSlope: 0
  2647. outSlope: 1
  2648. tangentMode: 0
  2649. - serializedVersion: 2
  2650. time: 1
  2651. value: 1
  2652. inSlope: 1
  2653. outSlope: 0
  2654. tangentMode: 0
  2655. m_PreInfinity: 2
  2656. m_PostInfinity: 2
  2657. m_RotationOrder: 4
  2658. minCurve:
  2659. serializedVersion: 2
  2660. m_Curve:
  2661. - serializedVersion: 2
  2662. time: 0
  2663. value: 1
  2664. inSlope: 0
  2665. outSlope: 0
  2666. tangentMode: 0
  2667. - serializedVersion: 2
  2668. time: 1
  2669. value: 1
  2670. inSlope: 0
  2671. outSlope: 0
  2672. tangentMode: 0
  2673. m_PreInfinity: 2
  2674. m_PostInfinity: 2
  2675. m_RotationOrder: 4
  2676. y:
  2677. serializedVersion: 2
  2678. minMaxState: 1
  2679. scalar: 1
  2680. minScalar: 1
  2681. maxCurve:
  2682. serializedVersion: 2
  2683. m_Curve:
  2684. - serializedVersion: 2
  2685. time: 0
  2686. value: 0
  2687. inSlope: 0
  2688. outSlope: 1
  2689. tangentMode: 0
  2690. - serializedVersion: 2
  2691. time: 1
  2692. value: 1
  2693. inSlope: 1
  2694. outSlope: 0
  2695. tangentMode: 0
  2696. m_PreInfinity: 2
  2697. m_PostInfinity: 2
  2698. m_RotationOrder: 4
  2699. minCurve:
  2700. serializedVersion: 2
  2701. m_Curve:
  2702. - serializedVersion: 2
  2703. time: 0
  2704. value: 1
  2705. inSlope: 0
  2706. outSlope: 0
  2707. tangentMode: 0
  2708. - serializedVersion: 2
  2709. time: 1
  2710. value: 1
  2711. inSlope: 0
  2712. outSlope: 0
  2713. tangentMode: 0
  2714. m_PreInfinity: 2
  2715. m_PostInfinity: 2
  2716. m_RotationOrder: 4
  2717. z:
  2718. serializedVersion: 2
  2719. minMaxState: 1
  2720. scalar: 1
  2721. minScalar: 1
  2722. maxCurve:
  2723. serializedVersion: 2
  2724. m_Curve:
  2725. - serializedVersion: 2
  2726. time: 0
  2727. value: 0
  2728. inSlope: 0
  2729. outSlope: 1
  2730. tangentMode: 0
  2731. - serializedVersion: 2
  2732. time: 1
  2733. value: 1
  2734. inSlope: 1
  2735. outSlope: 0
  2736. tangentMode: 0
  2737. m_PreInfinity: 2
  2738. m_PostInfinity: 2
  2739. m_RotationOrder: 4
  2740. minCurve:
  2741. serializedVersion: 2
  2742. m_Curve:
  2743. - serializedVersion: 2
  2744. time: 0
  2745. value: 1
  2746. inSlope: 0
  2747. outSlope: 0
  2748. tangentMode: 0
  2749. - serializedVersion: 2
  2750. time: 1
  2751. value: 1
  2752. inSlope: 0
  2753. outSlope: 0
  2754. tangentMode: 0
  2755. m_PreInfinity: 2
  2756. m_PostInfinity: 2
  2757. m_RotationOrder: 4
  2758. range: {x: 0, y: 1}
  2759. separateAxes: 0
  2760. RotationBySpeedModule:
  2761. enabled: 0
  2762. x:
  2763. serializedVersion: 2
  2764. minMaxState: 0
  2765. scalar: 0
  2766. minScalar: 0
  2767. maxCurve:
  2768. serializedVersion: 2
  2769. m_Curve:
  2770. - serializedVersion: 2
  2771. time: 0
  2772. value: 0
  2773. inSlope: 0
  2774. outSlope: 0
  2775. tangentMode: 0
  2776. - serializedVersion: 2
  2777. time: 1
  2778. value: 0
  2779. inSlope: 0
  2780. outSlope: 0
  2781. tangentMode: 0
  2782. m_PreInfinity: 2
  2783. m_PostInfinity: 2
  2784. m_RotationOrder: 4
  2785. minCurve:
  2786. serializedVersion: 2
  2787. m_Curve:
  2788. - serializedVersion: 2
  2789. time: 0
  2790. value: 0
  2791. inSlope: 0
  2792. outSlope: 0
  2793. tangentMode: 0
  2794. - serializedVersion: 2
  2795. time: 1
  2796. value: 0
  2797. inSlope: 0
  2798. outSlope: 0
  2799. tangentMode: 0
  2800. m_PreInfinity: 2
  2801. m_PostInfinity: 2
  2802. m_RotationOrder: 4
  2803. y:
  2804. serializedVersion: 2
  2805. minMaxState: 0
  2806. scalar: 0
  2807. minScalar: 0
  2808. maxCurve:
  2809. serializedVersion: 2
  2810. m_Curve:
  2811. - serializedVersion: 2
  2812. time: 0
  2813. value: 0
  2814. inSlope: 0
  2815. outSlope: 0
  2816. tangentMode: 0
  2817. - serializedVersion: 2
  2818. time: 1
  2819. value: 0
  2820. inSlope: 0
  2821. outSlope: 0
  2822. tangentMode: 0
  2823. m_PreInfinity: 2
  2824. m_PostInfinity: 2
  2825. m_RotationOrder: 4
  2826. minCurve:
  2827. serializedVersion: 2
  2828. m_Curve:
  2829. - serializedVersion: 2
  2830. time: 0
  2831. value: 0
  2832. inSlope: 0
  2833. outSlope: 0
  2834. tangentMode: 0
  2835. - serializedVersion: 2
  2836. time: 1
  2837. value: 0
  2838. inSlope: 0
  2839. outSlope: 0
  2840. tangentMode: 0
  2841. m_PreInfinity: 2
  2842. m_PostInfinity: 2
  2843. m_RotationOrder: 4
  2844. curve:
  2845. serializedVersion: 2
  2846. minMaxState: 0
  2847. scalar: 0.7853982
  2848. minScalar: 0.7853982
  2849. maxCurve:
  2850. serializedVersion: 2
  2851. m_Curve:
  2852. - serializedVersion: 2
  2853. time: 0
  2854. value: 1
  2855. inSlope: 0
  2856. outSlope: 0
  2857. tangentMode: 0
  2858. - serializedVersion: 2
  2859. time: 1
  2860. value: 1
  2861. inSlope: 0
  2862. outSlope: 0
  2863. tangentMode: 0
  2864. m_PreInfinity: 2
  2865. m_PostInfinity: 2
  2866. m_RotationOrder: 4
  2867. minCurve:
  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. - serializedVersion: 2
  2877. time: 1
  2878. value: 1
  2879. inSlope: 0
  2880. outSlope: 0
  2881. tangentMode: 0
  2882. m_PreInfinity: 2
  2883. m_PostInfinity: 2
  2884. m_RotationOrder: 4
  2885. separateAxes: 0
  2886. range: {x: 0, y: 1}
  2887. ColorBySpeedModule:
  2888. enabled: 0
  2889. gradient:
  2890. serializedVersion: 2
  2891. minMaxState: 1
  2892. minColor: {r: 1, g: 1, b: 1, a: 1}
  2893. maxColor: {r: 1, g: 1, b: 1, a: 1}
  2894. maxGradient:
  2895. serializedVersion: 2
  2896. key0: {r: 1, g: 1, b: 1, a: 1}
  2897. key1: {r: 1, g: 1, b: 1, a: 1}
  2898. key2: {r: 0, g: 0, b: 0, a: 0}
  2899. key3: {r: 0, g: 0, b: 0, a: 0}
  2900. key4: {r: 0, g: 0, b: 0, a: 0}
  2901. key5: {r: 0, g: 0, b: 0, a: 0}
  2902. key6: {r: 0, g: 0, b: 0, a: 0}
  2903. key7: {r: 0, g: 0, b: 0, a: 0}
  2904. ctime0: 0
  2905. ctime1: 65535
  2906. ctime2: 0
  2907. ctime3: 0
  2908. ctime4: 0
  2909. ctime5: 0
  2910. ctime6: 0
  2911. ctime7: 0
  2912. atime0: 0
  2913. atime1: 65535
  2914. atime2: 0
  2915. atime3: 0
  2916. atime4: 0
  2917. atime5: 0
  2918. atime6: 0
  2919. atime7: 0
  2920. m_Mode: 0
  2921. m_NumColorKeys: 2
  2922. m_NumAlphaKeys: 2
  2923. minGradient:
  2924. serializedVersion: 2
  2925. key0: {r: 1, g: 1, b: 1, a: 1}
  2926. key1: {r: 1, g: 1, b: 1, a: 1}
  2927. key2: {r: 0, g: 0, b: 0, a: 0}
  2928. key3: {r: 0, g: 0, b: 0, a: 0}
  2929. key4: {r: 0, g: 0, b: 0, a: 0}
  2930. key5: {r: 0, g: 0, b: 0, a: 0}
  2931. key6: {r: 0, g: 0, b: 0, a: 0}
  2932. key7: {r: 0, g: 0, b: 0, a: 0}
  2933. ctime0: 0
  2934. ctime1: 65535
  2935. ctime2: 0
  2936. ctime3: 0
  2937. ctime4: 0
  2938. ctime5: 0
  2939. ctime6: 0
  2940. ctime7: 0
  2941. atime0: 0
  2942. atime1: 65535
  2943. atime2: 0
  2944. atime3: 0
  2945. atime4: 0
  2946. atime5: 0
  2947. atime6: 0
  2948. atime7: 0
  2949. m_Mode: 0
  2950. m_NumColorKeys: 2
  2951. m_NumAlphaKeys: 2
  2952. range: {x: 0, y: 1}
  2953. CollisionModule:
  2954. enabled: 0
  2955. serializedVersion: 3
  2956. type: 0
  2957. collisionMode: 0
  2958. colliderForce: 0
  2959. multiplyColliderForceByParticleSize: 0
  2960. multiplyColliderForceByParticleSpeed: 0
  2961. multiplyColliderForceByCollisionAngle: 1
  2962. plane0: {fileID: 0}
  2963. plane1: {fileID: 0}
  2964. plane2: {fileID: 0}
  2965. plane3: {fileID: 0}
  2966. plane4: {fileID: 0}
  2967. plane5: {fileID: 0}
  2968. m_Dampen:
  2969. serializedVersion: 2
  2970. minMaxState: 0
  2971. scalar: 0
  2972. minScalar: 0
  2973. maxCurve:
  2974. serializedVersion: 2
  2975. m_Curve:
  2976. - serializedVersion: 2
  2977. time: 0
  2978. value: 0
  2979. inSlope: 0
  2980. outSlope: 0
  2981. tangentMode: 0
  2982. - serializedVersion: 2
  2983. time: 1
  2984. value: 0
  2985. inSlope: 0
  2986. outSlope: 0
  2987. tangentMode: 0
  2988. m_PreInfinity: 2
  2989. m_PostInfinity: 2
  2990. m_RotationOrder: 4
  2991. minCurve:
  2992. serializedVersion: 2
  2993. m_Curve:
  2994. - serializedVersion: 2
  2995. time: 0
  2996. value: 0
  2997. inSlope: 0
  2998. outSlope: 0
  2999. tangentMode: 0
  3000. - serializedVersion: 2
  3001. time: 1
  3002. value: 0
  3003. inSlope: 0
  3004. outSlope: 0
  3005. tangentMode: 0
  3006. m_PreInfinity: 2
  3007. m_PostInfinity: 2
  3008. m_RotationOrder: 4
  3009. m_Bounce:
  3010. serializedVersion: 2
  3011. minMaxState: 0
  3012. scalar: 1
  3013. minScalar: 1
  3014. maxCurve:
  3015. serializedVersion: 2
  3016. m_Curve:
  3017. - serializedVersion: 2
  3018. time: 0
  3019. value: 1
  3020. inSlope: 0
  3021. outSlope: 0
  3022. tangentMode: 0
  3023. - serializedVersion: 2
  3024. time: 1
  3025. value: 1
  3026. inSlope: 0
  3027. outSlope: 0
  3028. tangentMode: 0
  3029. m_PreInfinity: 2
  3030. m_PostInfinity: 2
  3031. m_RotationOrder: 4
  3032. minCurve:
  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. m_EnergyLossOnCollision:
  3051. serializedVersion: 2
  3052. minMaxState: 0
  3053. scalar: 0
  3054. minScalar: 0
  3055. maxCurve:
  3056. serializedVersion: 2
  3057. m_Curve:
  3058. - serializedVersion: 2
  3059. time: 0
  3060. value: 0
  3061. inSlope: 0
  3062. outSlope: 0
  3063. tangentMode: 0
  3064. - serializedVersion: 2
  3065. time: 1
  3066. value: 0
  3067. inSlope: 0
  3068. outSlope: 0
  3069. tangentMode: 0
  3070. m_PreInfinity: 2
  3071. m_PostInfinity: 2
  3072. m_RotationOrder: 4
  3073. minCurve:
  3074. serializedVersion: 2
  3075. m_Curve:
  3076. - serializedVersion: 2
  3077. time: 0
  3078. value: 0
  3079. inSlope: 0
  3080. outSlope: 0
  3081. tangentMode: 0
  3082. - serializedVersion: 2
  3083. time: 1
  3084. value: 0
  3085. inSlope: 0
  3086. outSlope: 0
  3087. tangentMode: 0
  3088. m_PreInfinity: 2
  3089. m_PostInfinity: 2
  3090. m_RotationOrder: 4
  3091. minKillSpeed: 0
  3092. maxKillSpeed: 10000
  3093. radiusScale: 1
  3094. collidesWith:
  3095. serializedVersion: 2
  3096. m_Bits: 4294967295
  3097. maxCollisionShapes: 256
  3098. quality: 0
  3099. voxelSize: 0.5
  3100. collisionMessages: 0
  3101. collidesWithDynamic: 1
  3102. interiorCollisions: 0
  3103. TriggerModule:
  3104. enabled: 0
  3105. collisionShape0: {fileID: 0}
  3106. collisionShape1: {fileID: 0}
  3107. collisionShape2: {fileID: 0}
  3108. collisionShape3: {fileID: 0}
  3109. collisionShape4: {fileID: 0}
  3110. collisionShape5: {fileID: 0}
  3111. inside: 1
  3112. outside: 0
  3113. enter: 0
  3114. exit: 0
  3115. radiusScale: 1
  3116. SubModule:
  3117. serializedVersion: 2
  3118. enabled: 0
  3119. subEmitters:
  3120. - serializedVersion: 2
  3121. emitter: {fileID: 0}
  3122. type: 0
  3123. properties: 0
  3124. LightsModule:
  3125. enabled: 0
  3126. ratio: 0
  3127. light: {fileID: 0}
  3128. randomDistribution: 1
  3129. color: 1
  3130. range: 1
  3131. intensity: 1
  3132. rangeCurve:
  3133. serializedVersion: 2
  3134. minMaxState: 0
  3135. scalar: 1
  3136. minScalar: 1
  3137. maxCurve:
  3138. serializedVersion: 2
  3139. m_Curve:
  3140. - serializedVersion: 2
  3141. time: 0
  3142. value: 1
  3143. inSlope: 0
  3144. outSlope: 0
  3145. tangentMode: 0
  3146. - serializedVersion: 2
  3147. time: 1
  3148. value: 1
  3149. inSlope: 0
  3150. outSlope: 0
  3151. tangentMode: 0
  3152. m_PreInfinity: 2
  3153. m_PostInfinity: 2
  3154. m_RotationOrder: 4
  3155. minCurve:
  3156. serializedVersion: 2
  3157. m_Curve:
  3158. - serializedVersion: 2
  3159. time: 0
  3160. value: 1
  3161. inSlope: 0
  3162. outSlope: 0
  3163. tangentMode: 0
  3164. - serializedVersion: 2
  3165. time: 1
  3166. value: 1
  3167. inSlope: 0
  3168. outSlope: 0
  3169. tangentMode: 0
  3170. m_PreInfinity: 2
  3171. m_PostInfinity: 2
  3172. m_RotationOrder: 4
  3173. intensityCurve:
  3174. serializedVersion: 2
  3175. minMaxState: 0
  3176. scalar: 1
  3177. minScalar: 1
  3178. maxCurve:
  3179. serializedVersion: 2
  3180. m_Curve:
  3181. - serializedVersion: 2
  3182. time: 0
  3183. value: 1
  3184. inSlope: 0
  3185. outSlope: 0
  3186. tangentMode: 0
  3187. - serializedVersion: 2
  3188. time: 1
  3189. value: 1
  3190. inSlope: 0
  3191. outSlope: 0
  3192. tangentMode: 0
  3193. m_PreInfinity: 2
  3194. m_PostInfinity: 2
  3195. m_RotationOrder: 4
  3196. minCurve:
  3197. serializedVersion: 2
  3198. m_Curve:
  3199. - serializedVersion: 2
  3200. time: 0
  3201. value: 1
  3202. inSlope: 0
  3203. outSlope: 0
  3204. tangentMode: 0
  3205. - serializedVersion: 2
  3206. time: 1
  3207. value: 1
  3208. inSlope: 0
  3209. outSlope: 0
  3210. tangentMode: 0
  3211. m_PreInfinity: 2
  3212. m_PostInfinity: 2
  3213. m_RotationOrder: 4
  3214. maxLights: 20
  3215. TrailModule:
  3216. enabled: 0
  3217. ratio: 1
  3218. lifetime:
  3219. serializedVersion: 2
  3220. minMaxState: 0
  3221. scalar: 1
  3222. minScalar: 1
  3223. maxCurve:
  3224. serializedVersion: 2
  3225. m_Curve:
  3226. - serializedVersion: 2
  3227. time: 0
  3228. value: 1
  3229. inSlope: 0
  3230. outSlope: 0
  3231. tangentMode: 0
  3232. - serializedVersion: 2
  3233. time: 1
  3234. value: 1
  3235. inSlope: 0
  3236. outSlope: 0
  3237. tangentMode: 0
  3238. m_PreInfinity: 2
  3239. m_PostInfinity: 2
  3240. m_RotationOrder: 4
  3241. minCurve:
  3242. serializedVersion: 2
  3243. m_Curve:
  3244. - serializedVersion: 2
  3245. time: 0
  3246. value: 1
  3247. inSlope: 0
  3248. outSlope: 0
  3249. tangentMode: 0
  3250. - serializedVersion: 2
  3251. time: 1
  3252. value: 1
  3253. inSlope: 0
  3254. outSlope: 0
  3255. tangentMode: 0
  3256. m_PreInfinity: 2
  3257. m_PostInfinity: 2
  3258. m_RotationOrder: 4
  3259. minVertexDistance: 0.2
  3260. textureMode: 0
  3261. worldSpace: 0
  3262. dieWithParticles: 1
  3263. sizeAffectsWidth: 1
  3264. sizeAffectsLifetime: 0
  3265. inheritParticleColor: 1
  3266. generateLightingData: 0
  3267. colorOverLifetime:
  3268. serializedVersion: 2
  3269. minMaxState: 0
  3270. minColor: {r: 1, g: 1, b: 1, a: 1}
  3271. maxColor: {r: 1, g: 1, b: 1, a: 1}
  3272. maxGradient:
  3273. serializedVersion: 2
  3274. key0: {r: 1, g: 1, b: 1, a: 1}
  3275. key1: {r: 1, g: 1, b: 1, a: 1}
  3276. key2: {r: 0, g: 0, b: 0, a: 0}
  3277. key3: {r: 0, g: 0, b: 0, a: 0}
  3278. key4: {r: 0, g: 0, b: 0, a: 0}
  3279. key5: {r: 0, g: 0, b: 0, a: 0}
  3280. key6: {r: 0, g: 0, b: 0, a: 0}
  3281. key7: {r: 0, g: 0, b: 0, a: 0}
  3282. ctime0: 0
  3283. ctime1: 65535
  3284. ctime2: 0
  3285. ctime3: 0
  3286. ctime4: 0
  3287. ctime5: 0
  3288. ctime6: 0
  3289. ctime7: 0
  3290. atime0: 0
  3291. atime1: 65535
  3292. atime2: 0
  3293. atime3: 0
  3294. atime4: 0
  3295. atime5: 0
  3296. atime6: 0
  3297. atime7: 0
  3298. m_Mode: 0
  3299. m_NumColorKeys: 2
  3300. m_NumAlphaKeys: 2
  3301. minGradient:
  3302. serializedVersion: 2
  3303. key0: {r: 1, g: 1, b: 1, a: 1}
  3304. key1: {r: 1, g: 1, b: 1, a: 1}
  3305. key2: {r: 0, g: 0, b: 0, a: 0}
  3306. key3: {r: 0, g: 0, b: 0, a: 0}
  3307. key4: {r: 0, g: 0, b: 0, a: 0}
  3308. key5: {r: 0, g: 0, b: 0, a: 0}
  3309. key6: {r: 0, g: 0, b: 0, a: 0}
  3310. key7: {r: 0, g: 0, b: 0, a: 0}
  3311. ctime0: 0
  3312. ctime1: 65535
  3313. ctime2: 0
  3314. ctime3: 0
  3315. ctime4: 0
  3316. ctime5: 0
  3317. ctime6: 0
  3318. ctime7: 0
  3319. atime0: 0
  3320. atime1: 65535
  3321. atime2: 0
  3322. atime3: 0
  3323. atime4: 0
  3324. atime5: 0
  3325. atime6: 0
  3326. atime7: 0
  3327. m_Mode: 0
  3328. m_NumColorKeys: 2
  3329. m_NumAlphaKeys: 2
  3330. widthOverTrail:
  3331. serializedVersion: 2
  3332. minMaxState: 0
  3333. scalar: 1
  3334. minScalar: 1
  3335. maxCurve:
  3336. serializedVersion: 2
  3337. m_Curve:
  3338. - serializedVersion: 2
  3339. time: 0
  3340. value: 1
  3341. inSlope: 0
  3342. outSlope: 0
  3343. tangentMode: 0
  3344. - serializedVersion: 2
  3345. time: 1
  3346. value: 1
  3347. inSlope: 0
  3348. outSlope: 0
  3349. tangentMode: 0
  3350. m_PreInfinity: 2
  3351. m_PostInfinity: 2
  3352. m_RotationOrder: 4
  3353. minCurve:
  3354. serializedVersion: 2
  3355. m_Curve:
  3356. - serializedVersion: 2
  3357. time: 0
  3358. value: 1
  3359. inSlope: 0
  3360. outSlope: 0
  3361. tangentMode: 0
  3362. - serializedVersion: 2
  3363. time: 1
  3364. value: 1
  3365. inSlope: 0
  3366. outSlope: 0
  3367. tangentMode: 0
  3368. m_PreInfinity: 2
  3369. m_PostInfinity: 2
  3370. m_RotationOrder: 4
  3371. colorOverTrail:
  3372. serializedVersion: 2
  3373. minMaxState: 0
  3374. minColor: {r: 1, g: 1, b: 1, a: 1}
  3375. maxColor: {r: 1, g: 1, b: 1, a: 1}
  3376. maxGradient:
  3377. serializedVersion: 2
  3378. key0: {r: 1, g: 1, b: 1, a: 1}
  3379. key1: {r: 1, g: 1, b: 1, a: 1}
  3380. key2: {r: 0, g: 0, b: 0, a: 0}
  3381. key3: {r: 0, g: 0, b: 0, a: 0}
  3382. key4: {r: 0, g: 0, b: 0, a: 0}
  3383. key5: {r: 0, g: 0, b: 0, a: 0}
  3384. key6: {r: 0, g: 0, b: 0, a: 0}
  3385. key7: {r: 0, g: 0, b: 0, a: 0}
  3386. ctime0: 0
  3387. ctime1: 65535
  3388. ctime2: 0
  3389. ctime3: 0
  3390. ctime4: 0
  3391. ctime5: 0
  3392. ctime6: 0
  3393. ctime7: 0
  3394. atime0: 0
  3395. atime1: 65535
  3396. atime2: 0
  3397. atime3: 0
  3398. atime4: 0
  3399. atime5: 0
  3400. atime6: 0
  3401. atime7: 0
  3402. m_Mode: 0
  3403. m_NumColorKeys: 2
  3404. m_NumAlphaKeys: 2
  3405. minGradient:
  3406. serializedVersion: 2
  3407. key0: {r: 1, g: 1, b: 1, a: 1}
  3408. key1: {r: 1, g: 1, b: 1, a: 1}
  3409. key2: {r: 0, g: 0, b: 0, a: 0}
  3410. key3: {r: 0, g: 0, b: 0, a: 0}
  3411. key4: {r: 0, g: 0, b: 0, a: 0}
  3412. key5: {r: 0, g: 0, b: 0, a: 0}
  3413. key6: {r: 0, g: 0, b: 0, a: 0}
  3414. key7: {r: 0, g: 0, b: 0, a: 0}
  3415. ctime0: 0
  3416. ctime1: 65535
  3417. ctime2: 0
  3418. ctime3: 0
  3419. ctime4: 0
  3420. ctime5: 0
  3421. ctime6: 0
  3422. ctime7: 0
  3423. atime0: 0
  3424. atime1: 65535
  3425. atime2: 0
  3426. atime3: 0
  3427. atime4: 0
  3428. atime5: 0
  3429. atime6: 0
  3430. atime7: 0
  3431. m_Mode: 0
  3432. m_NumColorKeys: 2
  3433. m_NumAlphaKeys: 2
  3434. CustomDataModule:
  3435. enabled: 0
  3436. mode0: 0
  3437. vectorComponentCount0: 4
  3438. color0:
  3439. serializedVersion: 2
  3440. minMaxState: 0
  3441. minColor: {r: 1, g: 1, b: 1, a: 1}
  3442. maxColor: {r: 1, g: 1, b: 1, a: 1}
  3443. maxGradient:
  3444. serializedVersion: 2
  3445. key0: {r: 1, g: 1, b: 1, a: 1}
  3446. key1: {r: 1, g: 1, b: 1, a: 1}
  3447. key2: {r: 0, g: 0, b: 0, a: 0}
  3448. key3: {r: 0, g: 0, b: 0, a: 0}
  3449. key4: {r: 0, g: 0, b: 0, a: 0}
  3450. key5: {r: 0, g: 0, b: 0, a: 0}
  3451. key6: {r: 0, g: 0, b: 0, a: 0}
  3452. key7: {r: 0, g: 0, b: 0, a: 0}
  3453. ctime0: 0
  3454. ctime1: 65535
  3455. ctime2: 0
  3456. ctime3: 0
  3457. ctime4: 0
  3458. ctime5: 0
  3459. ctime6: 0
  3460. ctime7: 0
  3461. atime0: 0
  3462. atime1: 65535
  3463. atime2: 0
  3464. atime3: 0
  3465. atime4: 0
  3466. atime5: 0
  3467. atime6: 0
  3468. atime7: 0
  3469. m_Mode: 0
  3470. m_NumColorKeys: 2
  3471. m_NumAlphaKeys: 2
  3472. minGradient:
  3473. serializedVersion: 2
  3474. key0: {r: 1, g: 1, b: 1, a: 1}
  3475. key1: {r: 1, g: 1, b: 1, a: 1}
  3476. key2: {r: 0, g: 0, b: 0, a: 0}
  3477. key3: {r: 0, g: 0, b: 0, a: 0}
  3478. key4: {r: 0, g: 0, b: 0, a: 0}
  3479. key5: {r: 0, g: 0, b: 0, a: 0}
  3480. key6: {r: 0, g: 0, b: 0, a: 0}
  3481. key7: {r: 0, g: 0, b: 0, a: 0}
  3482. ctime0: 0
  3483. ctime1: 65535
  3484. ctime2: 0
  3485. ctime3: 0
  3486. ctime4: 0
  3487. ctime5: 0
  3488. ctime6: 0
  3489. ctime7: 0
  3490. atime0: 0
  3491. atime1: 65535
  3492. atime2: 0
  3493. atime3: 0
  3494. atime4: 0
  3495. atime5: 0
  3496. atime6: 0
  3497. atime7: 0
  3498. m_Mode: 0
  3499. m_NumColorKeys: 2
  3500. m_NumAlphaKeys: 2
  3501. colorLabel0: Color
  3502. vector0_0:
  3503. serializedVersion: 2
  3504. minMaxState: 0
  3505. scalar: 0
  3506. minScalar: 0
  3507. maxCurve:
  3508. serializedVersion: 2
  3509. m_Curve:
  3510. - serializedVersion: 2
  3511. time: 0
  3512. value: 0
  3513. inSlope: 0
  3514. outSlope: 0
  3515. tangentMode: 0
  3516. - serializedVersion: 2
  3517. time: 1
  3518. value: 0
  3519. inSlope: 0
  3520. outSlope: 0
  3521. tangentMode: 0
  3522. m_PreInfinity: 2
  3523. m_PostInfinity: 2
  3524. m_RotationOrder: 4
  3525. minCurve:
  3526. serializedVersion: 2
  3527. m_Curve:
  3528. - serializedVersion: 2
  3529. time: 0
  3530. value: 0
  3531. inSlope: 0
  3532. outSlope: 0
  3533. tangentMode: 0
  3534. - serializedVersion: 2
  3535. time: 1
  3536. value: 0
  3537. inSlope: 0
  3538. outSlope: 0
  3539. tangentMode: 0
  3540. m_PreInfinity: 2
  3541. m_PostInfinity: 2
  3542. m_RotationOrder: 4
  3543. vectorLabel0_0: X
  3544. vector0_1:
  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: 0
  3555. inSlope: 0
  3556. outSlope: 0
  3557. tangentMode: 0
  3558. - serializedVersion: 2
  3559. time: 1
  3560. value: 0
  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. vectorLabel0_1: Y
  3586. vector0_2:
  3587. serializedVersion: 2
  3588. minMaxState: 0
  3589. scalar: 0
  3590. minScalar: 0
  3591. maxCurve:
  3592. serializedVersion: 2
  3593. m_Curve:
  3594. - serializedVersion: 2
  3595. time: 0
  3596. value: 0
  3597. inSlope: 0
  3598. outSlope: 0
  3599. tangentMode: 0
  3600. - serializedVersion: 2
  3601. time: 1
  3602. value: 0
  3603. inSlope: 0
  3604. outSlope: 0
  3605. tangentMode: 0
  3606. m_PreInfinity: 2
  3607. m_PostInfinity: 2
  3608. m_RotationOrder: 4
  3609. minCurve:
  3610. serializedVersion: 2
  3611. m_Curve:
  3612. - serializedVersion: 2
  3613. time: 0
  3614. value: 0
  3615. inSlope: 0
  3616. outSlope: 0
  3617. tangentMode: 0
  3618. - serializedVersion: 2
  3619. time: 1
  3620. value: 0
  3621. inSlope: 0
  3622. outSlope: 0
  3623. tangentMode: 0
  3624. m_PreInfinity: 2
  3625. m_PostInfinity: 2
  3626. m_RotationOrder: 4
  3627. vectorLabel0_2: Z
  3628. vector0_3:
  3629. serializedVersion: 2
  3630. minMaxState: 0
  3631. scalar: 0
  3632. minScalar: 0
  3633. maxCurve:
  3634. serializedVersion: 2
  3635. m_Curve:
  3636. - serializedVersion: 2
  3637. time: 0
  3638. value: 0
  3639. inSlope: 0
  3640. outSlope: 0
  3641. tangentMode: 0
  3642. - serializedVersion: 2
  3643. time: 1
  3644. value: 0
  3645. inSlope: 0
  3646. outSlope: 0
  3647. tangentMode: 0
  3648. m_PreInfinity: 2
  3649. m_PostInfinity: 2
  3650. m_RotationOrder: 4
  3651. minCurve:
  3652. serializedVersion: 2
  3653. m_Curve:
  3654. - serializedVersion: 2
  3655. time: 0
  3656. value: 0
  3657. inSlope: 0
  3658. outSlope: 0
  3659. tangentMode: 0
  3660. - serializedVersion: 2
  3661. time: 1
  3662. value: 0
  3663. inSlope: 0
  3664. outSlope: 0
  3665. tangentMode: 0
  3666. m_PreInfinity: 2
  3667. m_PostInfinity: 2
  3668. m_RotationOrder: 4
  3669. vectorLabel0_3: W
  3670. mode1: 0
  3671. vectorComponentCount1: 4
  3672. color1:
  3673. serializedVersion: 2
  3674. minMaxState: 0
  3675. minColor: {r: 1, g: 1, b: 1, a: 1}
  3676. maxColor: {r: 1, g: 1, b: 1, a: 1}
  3677. maxGradient:
  3678. serializedVersion: 2
  3679. key0: {r: 1, g: 1, b: 1, a: 1}
  3680. key1: {r: 1, g: 1, b: 1, a: 1}
  3681. key2: {r: 0, g: 0, b: 0, a: 0}
  3682. key3: {r: 0, g: 0, b: 0, a: 0}
  3683. key4: {r: 0, g: 0, b: 0, a: 0}
  3684. key5: {r: 0, g: 0, b: 0, a: 0}
  3685. key6: {r: 0, g: 0, b: 0, a: 0}
  3686. key7: {r: 0, g: 0, b: 0, a: 0}
  3687. ctime0: 0
  3688. ctime1: 65535
  3689. ctime2: 0
  3690. ctime3: 0
  3691. ctime4: 0
  3692. ctime5: 0
  3693. ctime6: 0
  3694. ctime7: 0
  3695. atime0: 0
  3696. atime1: 65535
  3697. atime2: 0
  3698. atime3: 0
  3699. atime4: 0
  3700. atime5: 0
  3701. atime6: 0
  3702. atime7: 0
  3703. m_Mode: 0
  3704. m_NumColorKeys: 2
  3705. m_NumAlphaKeys: 2
  3706. minGradient:
  3707. serializedVersion: 2
  3708. key0: {r: 1, g: 1, b: 1, a: 1}
  3709. key1: {r: 1, g: 1, b: 1, a: 1}
  3710. key2: {r: 0, g: 0, b: 0, a: 0}
  3711. key3: {r: 0, g: 0, b: 0, a: 0}
  3712. key4: {r: 0, g: 0, b: 0, a: 0}
  3713. key5: {r: 0, g: 0, b: 0, a: 0}
  3714. key6: {r: 0, g: 0, b: 0, a: 0}
  3715. key7: {r: 0, g: 0, b: 0, a: 0}
  3716. ctime0: 0
  3717. ctime1: 65535
  3718. ctime2: 0
  3719. ctime3: 0
  3720. ctime4: 0
  3721. ctime5: 0
  3722. ctime6: 0
  3723. ctime7: 0
  3724. atime0: 0
  3725. atime1: 65535
  3726. atime2: 0
  3727. atime3: 0
  3728. atime4: 0
  3729. atime5: 0
  3730. atime6: 0
  3731. atime7: 0
  3732. m_Mode: 0
  3733. m_NumColorKeys: 2
  3734. m_NumAlphaKeys: 2
  3735. colorLabel1: Color
  3736. vector1_0:
  3737. serializedVersion: 2
  3738. minMaxState: 0
  3739. scalar: 0
  3740. minScalar: 0
  3741. maxCurve:
  3742. serializedVersion: 2
  3743. m_Curve:
  3744. - serializedVersion: 2
  3745. time: 0
  3746. value: 0
  3747. inSlope: 0
  3748. outSlope: 0
  3749. tangentMode: 0
  3750. - serializedVersion: 2
  3751. time: 1
  3752. value: 0
  3753. inSlope: 0
  3754. outSlope: 0
  3755. tangentMode: 0
  3756. m_PreInfinity: 2
  3757. m_PostInfinity: 2
  3758. m_RotationOrder: 4
  3759. minCurve:
  3760. serializedVersion: 2
  3761. m_Curve:
  3762. - serializedVersion: 2
  3763. time: 0
  3764. value: 0
  3765. inSlope: 0
  3766. outSlope: 0
  3767. tangentMode: 0
  3768. - serializedVersion: 2
  3769. time: 1
  3770. value: 0
  3771. inSlope: 0
  3772. outSlope: 0
  3773. tangentMode: 0
  3774. m_PreInfinity: 2
  3775. m_PostInfinity: 2
  3776. m_RotationOrder: 4
  3777. vectorLabel1_0: X
  3778. vector1_1:
  3779. serializedVersion: 2
  3780. minMaxState: 0
  3781. scalar: 0
  3782. minScalar: 0
  3783. maxCurve:
  3784. serializedVersion: 2
  3785. m_Curve:
  3786. - serializedVersion: 2
  3787. time: 0
  3788. value: 0
  3789. inSlope: 0
  3790. outSlope: 0
  3791. tangentMode: 0
  3792. - serializedVersion: 2
  3793. time: 1
  3794. value: 0
  3795. inSlope: 0
  3796. outSlope: 0
  3797. tangentMode: 0
  3798. m_PreInfinity: 2
  3799. m_PostInfinity: 2
  3800. m_RotationOrder: 4
  3801. minCurve:
  3802. serializedVersion: 2
  3803. m_Curve:
  3804. - serializedVersion: 2
  3805. time: 0
  3806. value: 0
  3807. inSlope: 0
  3808. outSlope: 0
  3809. tangentMode: 0
  3810. - serializedVersion: 2
  3811. time: 1
  3812. value: 0
  3813. inSlope: 0
  3814. outSlope: 0
  3815. tangentMode: 0
  3816. m_PreInfinity: 2
  3817. m_PostInfinity: 2
  3818. m_RotationOrder: 4
  3819. vectorLabel1_1: Y
  3820. vector1_2:
  3821. serializedVersion: 2
  3822. minMaxState: 0
  3823. scalar: 0
  3824. minScalar: 0
  3825. maxCurve:
  3826. serializedVersion: 2
  3827. m_Curve:
  3828. - serializedVersion: 2
  3829. time: 0
  3830. value: 0
  3831. inSlope: 0
  3832. outSlope: 0
  3833. tangentMode: 0
  3834. - serializedVersion: 2
  3835. time: 1
  3836. value: 0
  3837. inSlope: 0
  3838. outSlope: 0
  3839. tangentMode: 0
  3840. m_PreInfinity: 2
  3841. m_PostInfinity: 2
  3842. m_RotationOrder: 4
  3843. minCurve:
  3844. serializedVersion: 2
  3845. m_Curve:
  3846. - serializedVersion: 2
  3847. time: 0
  3848. value: 0
  3849. inSlope: 0
  3850. outSlope: 0
  3851. tangentMode: 0
  3852. - serializedVersion: 2
  3853. time: 1
  3854. value: 0
  3855. inSlope: 0
  3856. outSlope: 0
  3857. tangentMode: 0
  3858. m_PreInfinity: 2
  3859. m_PostInfinity: 2
  3860. m_RotationOrder: 4
  3861. vectorLabel1_2: Z
  3862. vector1_3:
  3863. serializedVersion: 2
  3864. minMaxState: 0
  3865. scalar: 0
  3866. minScalar: 0
  3867. maxCurve:
  3868. serializedVersion: 2
  3869. m_Curve:
  3870. - serializedVersion: 2
  3871. time: 0
  3872. value: 0
  3873. inSlope: 0
  3874. outSlope: 0
  3875. tangentMode: 0
  3876. - serializedVersion: 2
  3877. time: 1
  3878. value: 0
  3879. inSlope: 0
  3880. outSlope: 0
  3881. tangentMode: 0
  3882. m_PreInfinity: 2
  3883. m_PostInfinity: 2
  3884. m_RotationOrder: 4
  3885. minCurve:
  3886. serializedVersion: 2
  3887. m_Curve:
  3888. - serializedVersion: 2
  3889. time: 0
  3890. value: 0
  3891. inSlope: 0
  3892. outSlope: 0
  3893. tangentMode: 0
  3894. - serializedVersion: 2
  3895. time: 1
  3896. value: 0
  3897. inSlope: 0
  3898. outSlope: 0
  3899. tangentMode: 0
  3900. m_PreInfinity: 2
  3901. m_PostInfinity: 2
  3902. m_RotationOrder: 4
  3903. vectorLabel1_3: W
  3904. --- !u!23 &1495567583
  3905. MeshRenderer:
  3906. m_ObjectHideFlags: 0
  3907. m_PrefabParentObject: {fileID: 0}
  3908. m_PrefabInternal: {fileID: 0}
  3909. m_GameObject: {fileID: 1495567580}
  3910. m_Enabled: 1
  3911. m_CastShadows: 1
  3912. m_ReceiveShadows: 1
  3913. m_DynamicOccludee: 1
  3914. m_MotionVectors: 1
  3915. m_LightProbeUsage: 1
  3916. m_ReflectionProbeUsage: 1
  3917. m_Materials:
  3918. - {fileID: 10303, guid: 0000000000000000f000000000000000, type: 0}
  3919. m_StaticBatchInfo:
  3920. firstSubMesh: 0
  3921. subMeshCount: 0
  3922. m_StaticBatchRoot: {fileID: 0}
  3923. m_ProbeAnchor: {fileID: 0}
  3924. m_LightProbeVolumeOverride: {fileID: 0}
  3925. m_ScaleInLightmap: 1
  3926. m_PreserveUVs: 1
  3927. m_IgnoreNormalsForChartDetection: 0
  3928. m_ImportantGI: 0
  3929. m_StitchLightmapSeams: 0
  3930. m_SelectedEditorRenderState: 3
  3931. m_MinimumChartSize: 4
  3932. m_AutoUVMaxDistance: 0.5
  3933. m_AutoUVMaxAngle: 89
  3934. m_LightmapParameters: {fileID: 0}
  3935. m_SortingLayerID: 0
  3936. m_SortingLayer: 0
  3937. m_SortingOrder: 0
  3938. --- !u!65 &1495567584
  3939. BoxCollider:
  3940. m_ObjectHideFlags: 0
  3941. m_PrefabParentObject: {fileID: 0}
  3942. m_PrefabInternal: {fileID: 0}
  3943. m_GameObject: {fileID: 1495567580}
  3944. m_Material: {fileID: 0}
  3945. m_IsTrigger: 0
  3946. m_Enabled: 1
  3947. serializedVersion: 2
  3948. m_Size: {x: 1, y: 1, z: 1}
  3949. m_Center: {x: 0, y: 0, z: 0}
  3950. --- !u!33 &1495567585
  3951. MeshFilter:
  3952. m_ObjectHideFlags: 0
  3953. m_PrefabParentObject: {fileID: 0}
  3954. m_PrefabInternal: {fileID: 0}
  3955. m_GameObject: {fileID: 1495567580}
  3956. m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0}
  3957. --- !u!4 &1495567586
  3958. Transform:
  3959. m_ObjectHideFlags: 0
  3960. m_PrefabParentObject: {fileID: 0}
  3961. m_PrefabInternal: {fileID: 0}
  3962. m_GameObject: {fileID: 1495567580}
  3963. m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
  3964. m_LocalPosition: {x: 0, y: 0, z: 0}
  3965. m_LocalScale: {x: 1, y: 1, z: 1}
  3966. m_Children: []
  3967. m_Father: {fileID: 0}
  3968. m_RootOrder: 1
  3969. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}