FX_Embers_01.prefab 74 KB

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