FX_Steam_01.prefab 77 KB

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