FX_Snow_01.prefab 75 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354
  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: 1590287472412400}
  13. m_IsPrefabParent: 1
  14. --- !u!1 &1590287472412400
  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: 4147185747737992}
  22. - component: {fileID: 199650865808056460}
  23. - component: {fileID: 198641420387918128}
  24. m_Layer: 0
  25. m_Name: FX_Snow_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 &4147185747737992
  32. Transform:
  33. m_ObjectHideFlags: 1
  34. m_PrefabParentObject: {fileID: 0}
  35. m_PrefabInternal: {fileID: 100100000}
  36. m_GameObject: {fileID: 1590287472412400}
  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 &198641420387918128
  45. ParticleSystem:
  46. m_ObjectHideFlags: 1
  47. m_PrefabParentObject: {fileID: 0}
  48. m_PrefabInternal: {fileID: 100100000}
  49. m_GameObject: {fileID: 1590287472412400}
  50. serializedVersion: 5
  51. lengthInSec: 5
  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: 2
  104. randomSeed: 1276706196
  105. InitialModule:
  106. serializedVersion: 3
  107. enabled: 1
  108. startLifetime:
  109. serializedVersion: 2
  110. minMaxState: 3
  111. scalar: 10
  112. minScalar: 8
  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: 0
  137. inSlope: 0
  138. outSlope: 0
  139. tangentMode: 0
  140. - serializedVersion: 2
  141. time: 1
  142. value: 0
  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: 0
  152. scalar: 0.1
  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: 0
  178. inSlope: 0
  179. outSlope: 0
  180. tangentMode: 0
  181. - serializedVersion: 2
  182. time: 1
  183. value: 0
  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: 0
  256. scalar: 1
  257. minScalar: 1
  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: 0
  282. inSlope: 0
  283. outSlope: 0
  284. tangentMode: 0
  285. - serializedVersion: 2
  286. time: 1
  287. value: 0
  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: 0
  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: 0
  323. inSlope: 0
  324. outSlope: 0
  325. tangentMode: 0
  326. - serializedVersion: 2
  327. time: 1
  328. value: 0
  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: 0
  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: 0
  364. inSlope: 0
  365. outSlope: 0
  366. tangentMode: 0
  367. - serializedVersion: 2
  368. time: 1
  369. value: 0
  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: 0
  379. scalar: 0
  380. minScalar: 0
  381. maxCurve:
  382. serializedVersion: 2
  383. m_Curve:
  384. - serializedVersion: 2
  385. time: 0
  386. value: 1
  387. inSlope: 0
  388. outSlope: 0
  389. tangentMode: 0
  390. - serializedVersion: 2
  391. time: 1
  392. value: 1
  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: 0
  420. scalar: 0
  421. minScalar: 0
  422. maxCurve:
  423. serializedVersion: 2
  424. m_Curve:
  425. - serializedVersion: 2
  426. time: 0
  427. value: 1
  428. inSlope: 0
  429. outSlope: 0
  430. tangentMode: 0
  431. - serializedVersion: 2
  432. time: 1
  433. value: 1
  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: 0
  461. scalar: 0.87266463
  462. minScalar: 0
  463. maxCurve:
  464. serializedVersion: 2
  465. m_Curve:
  466. - serializedVersion: 2
  467. time: 0
  468. value: 1
  469. inSlope: 0
  470. outSlope: 0
  471. tangentMode: 0
  472. - serializedVersion: 2
  473. time: 1
  474. value: 1
  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: 10000
  501. size3D: 0
  502. rotation3D: 0
  503. gravityModifier:
  504. serializedVersion: 2
  505. minMaxState: 0
  506. scalar: 0.02
  507. minScalar: 0
  508. maxCurve:
  509. serializedVersion: 2
  510. m_Curve:
  511. - serializedVersion: 2
  512. time: 0
  513. value: 1
  514. inSlope: 0
  515. outSlope: 0
  516. tangentMode: 0
  517. - serializedVersion: 2
  518. time: 1
  519. value: 1
  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: 0
  548. angle: 25
  549. length: 5
  550. boxThickness: {x: 0, y: 0, z: 0}
  551. radiusThickness: 1
  552. donutRadius: 0.2
  553. m_Position: {x: 0, y: 5, z: 0}
  554. m_Rotation: {x: 0, y: 0, z: 0}
  555. m_Scale: {x: 2, y: 0.5, z: 2}
  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: 1
  566. sphericalDirectionAmount: 0
  567. randomPositionAmount: 0
  568. radius:
  569. value: 5
  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: 0
  601. inSlope: 0
  602. outSlope: 0
  603. tangentMode: 0
  604. - serializedVersion: 2
  605. time: 1
  606. value: 0
  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: 0
  646. inSlope: 0
  647. outSlope: 0
  648. tangentMode: 0
  649. - serializedVersion: 2
  650. time: 1
  651. value: 0
  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: 200
  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: 0
  690. inSlope: 0
  691. outSlope: 0
  692. tangentMode: 0
  693. - serializedVersion: 2
  694. time: 1
  695. value: 0
  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: 1
  713. inSlope: 0
  714. outSlope: 0
  715. tangentMode: 0
  716. - serializedVersion: 2
  717. time: 1
  718. value: 1
  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: 2
  750. scalar: 0.3491535
  751. minScalar: 1
  752. maxCurve:
  753. serializedVersion: 2
  754. m_Curve:
  755. - serializedVersion: 2
  756. time: 0
  757. value: 0
  758. inSlope: 0.19937925
  759. outSlope: 0.19937925
  760. tangentMode: 0
  761. - serializedVersion: 2
  762. time: 0.43741208
  763. value: 0.093187235
  764. inSlope: -0.016044594
  765. outSlope: -0.016044594
  766. tangentMode: 0
  767. - serializedVersion: 2
  768. time: 1
  769. value: 0
  770. inSlope: -0.08643276
  771. outSlope: -0.08643276
  772. tangentMode: 0
  773. m_PreInfinity: 2
  774. m_PostInfinity: 2
  775. m_RotationOrder: 4
  776. minCurve:
  777. serializedVersion: 2
  778. m_Curve:
  779. - serializedVersion: 2
  780. time: 0
  781. value: 0
  782. inSlope: 0
  783. outSlope: 0
  784. tangentMode: 0
  785. - serializedVersion: 2
  786. time: 0.44363636
  787. value: 0.051851846
  788. inSlope: 0
  789. outSlope: 0
  790. tangentMode: 0
  791. - serializedVersion: 2
  792. time: 1
  793. value: 0
  794. inSlope: 0
  795. outSlope: 0
  796. tangentMode: 0
  797. m_PreInfinity: 2
  798. m_PostInfinity: 2
  799. m_RotationOrder: 4
  800. y:
  801. serializedVersion: 2
  802. minMaxState: 1
  803. scalar: 1
  804. minScalar: 1
  805. maxCurve:
  806. serializedVersion: 2
  807. m_Curve:
  808. - serializedVersion: 2
  809. time: 0
  810. value: 1
  811. inSlope: 0
  812. outSlope: 0
  813. tangentMode: 0
  814. - serializedVersion: 2
  815. time: 1
  816. value: 1
  817. inSlope: 0
  818. outSlope: 0
  819. tangentMode: 0
  820. m_PreInfinity: 2
  821. m_PostInfinity: 2
  822. m_RotationOrder: 4
  823. minCurve:
  824. serializedVersion: 2
  825. m_Curve:
  826. - serializedVersion: 2
  827. time: 0
  828. value: 0
  829. inSlope: 0
  830. outSlope: 0
  831. tangentMode: 0
  832. - serializedVersion: 2
  833. time: 1
  834. value: 0
  835. inSlope: 0
  836. outSlope: 0
  837. tangentMode: 0
  838. m_PreInfinity: 2
  839. m_PostInfinity: 2
  840. m_RotationOrder: 4
  841. z:
  842. serializedVersion: 2
  843. minMaxState: 1
  844. scalar: 1
  845. minScalar: 1
  846. maxCurve:
  847. serializedVersion: 2
  848. m_Curve:
  849. - serializedVersion: 2
  850. time: 0
  851. value: 1
  852. inSlope: 0
  853. outSlope: 0
  854. tangentMode: 0
  855. - serializedVersion: 2
  856. time: 1
  857. value: 1
  858. inSlope: 0
  859. outSlope: 0
  860. tangentMode: 0
  861. m_PreInfinity: 2
  862. m_PostInfinity: 2
  863. m_RotationOrder: 4
  864. minCurve:
  865. serializedVersion: 2
  866. m_Curve:
  867. - serializedVersion: 2
  868. time: 0
  869. value: 0
  870. inSlope: 0
  871. outSlope: 0
  872. tangentMode: 0
  873. - serializedVersion: 2
  874. time: 1
  875. value: 0
  876. inSlope: 0
  877. outSlope: 0
  878. tangentMode: 0
  879. m_PreInfinity: 2
  880. m_PostInfinity: 2
  881. m_RotationOrder: 4
  882. separateAxes: 0
  883. RotationModule:
  884. enabled: 1
  885. x:
  886. serializedVersion: 2
  887. minMaxState: 0
  888. scalar: 0
  889. minScalar: 0
  890. maxCurve:
  891. serializedVersion: 2
  892. m_Curve:
  893. - serializedVersion: 2
  894. time: 0
  895. value: 1
  896. inSlope: 0
  897. outSlope: 0
  898. tangentMode: 0
  899. - serializedVersion: 2
  900. time: 1
  901. value: 1
  902. inSlope: 0
  903. outSlope: 0
  904. tangentMode: 0
  905. m_PreInfinity: 2
  906. m_PostInfinity: 2
  907. m_RotationOrder: 4
  908. minCurve:
  909. serializedVersion: 2
  910. m_Curve:
  911. - serializedVersion: 2
  912. time: 0
  913. value: 0
  914. inSlope: 0
  915. outSlope: 0
  916. tangentMode: 0
  917. - serializedVersion: 2
  918. time: 1
  919. value: 0
  920. inSlope: 0
  921. outSlope: 0
  922. tangentMode: 0
  923. m_PreInfinity: 2
  924. m_PostInfinity: 2
  925. m_RotationOrder: 4
  926. y:
  927. serializedVersion: 2
  928. minMaxState: 0
  929. scalar: 0
  930. minScalar: 0
  931. maxCurve:
  932. serializedVersion: 2
  933. m_Curve:
  934. - serializedVersion: 2
  935. time: 0
  936. value: 1
  937. inSlope: 0
  938. outSlope: 0
  939. tangentMode: 0
  940. - serializedVersion: 2
  941. time: 1
  942. value: 1
  943. inSlope: 0
  944. outSlope: 0
  945. tangentMode: 0
  946. m_PreInfinity: 2
  947. m_PostInfinity: 2
  948. m_RotationOrder: 4
  949. minCurve:
  950. serializedVersion: 2
  951. m_Curve:
  952. - serializedVersion: 2
  953. time: 0
  954. value: 0
  955. inSlope: 0
  956. outSlope: 0
  957. tangentMode: 0
  958. - serializedVersion: 2
  959. time: 1
  960. value: 0
  961. inSlope: 0
  962. outSlope: 0
  963. tangentMode: 0
  964. m_PreInfinity: 2
  965. m_PostInfinity: 2
  966. m_RotationOrder: 4
  967. curve:
  968. serializedVersion: 2
  969. minMaxState: 0
  970. scalar: 0.08726646
  971. minScalar: 0.7853982
  972. maxCurve:
  973. serializedVersion: 2
  974. m_Curve:
  975. - serializedVersion: 2
  976. time: 0
  977. value: 1
  978. inSlope: 0
  979. outSlope: 0
  980. tangentMode: 0
  981. - serializedVersion: 2
  982. time: 1
  983. value: 1
  984. inSlope: 0
  985. outSlope: 0
  986. tangentMode: 0
  987. m_PreInfinity: 2
  988. m_PostInfinity: 2
  989. m_RotationOrder: 4
  990. minCurve:
  991. serializedVersion: 2
  992. m_Curve:
  993. - serializedVersion: 2
  994. time: 0
  995. value: 0
  996. inSlope: 0
  997. outSlope: 0
  998. tangentMode: 0
  999. - serializedVersion: 2
  1000. time: 1
  1001. value: 0
  1002. inSlope: 0
  1003. outSlope: 0
  1004. tangentMode: 0
  1005. m_PreInfinity: 2
  1006. m_PostInfinity: 2
  1007. m_RotationOrder: 4
  1008. separateAxes: 0
  1009. ColorModule:
  1010. enabled: 1
  1011. gradient:
  1012. serializedVersion: 2
  1013. minMaxState: 1
  1014. minColor: {r: 1, g: 1, b: 1, a: 1}
  1015. maxColor: {r: 1, g: 1, b: 1, a: 1}
  1016. maxGradient:
  1017. serializedVersion: 2
  1018. key0: {r: 0.91764706, g: 0.91764706, b: 0.91764706, a: 0}
  1019. key1: {r: 0.91764706, g: 0.91764706, b: 0.91764706, a: 1}
  1020. key2: {r: 0.91764706, g: 0.91764706, b: 0.91764706, a: 0.9281688}
  1021. key3: {r: 1, g: 0, b: 0, a: 0.6243049}
  1022. key4: {r: 1, g: 0, b: 0, a: 0}
  1023. key5: {r: 1, g: 0, b: 0, a: 0}
  1024. key6: {r: 0, g: 0, b: 0, a: 0}
  1025. key7: {r: 0, g: 0, b: 0, a: 0}
  1026. ctime0: 0
  1027. ctime1: 65535
  1028. ctime2: 65535
  1029. ctime3: 65535
  1030. ctime4: 65535
  1031. ctime5: 65535
  1032. ctime6: 0
  1033. ctime7: 0
  1034. atime0: 0
  1035. atime1: 30647
  1036. atime2: 33153
  1037. atime3: 43754
  1038. atime4: 65535
  1039. atime5: 0
  1040. atime6: 0
  1041. atime7: 0
  1042. m_Mode: 0
  1043. m_NumColorKeys: 2
  1044. m_NumAlphaKeys: 5
  1045. minGradient:
  1046. serializedVersion: 2
  1047. key0: {r: 1, g: 1, b: 1, a: 1}
  1048. key1: {r: 1, g: 1, b: 1, a: 1}
  1049. key2: {r: 0, g: 0, b: 0, a: 0}
  1050. key3: {r: 0, g: 0, b: 0, a: 0}
  1051. key4: {r: 0, g: 0, b: 0, a: 0}
  1052. key5: {r: 0, g: 0, b: 0, a: 0}
  1053. key6: {r: 0, g: 0, b: 0, a: 0}
  1054. key7: {r: 0, g: 0, b: 0, a: 0}
  1055. ctime0: 0
  1056. ctime1: 65535
  1057. ctime2: 0
  1058. ctime3: 0
  1059. ctime4: 0
  1060. ctime5: 0
  1061. ctime6: 0
  1062. ctime7: 0
  1063. atime0: 0
  1064. atime1: 65535
  1065. atime2: 0
  1066. atime3: 0
  1067. atime4: 0
  1068. atime5: 0
  1069. atime6: 0
  1070. atime7: 0
  1071. m_Mode: 0
  1072. m_NumColorKeys: 2
  1073. m_NumAlphaKeys: 2
  1074. UVModule:
  1075. enabled: 0
  1076. mode: 0
  1077. frameOverTime:
  1078. serializedVersion: 2
  1079. minMaxState: 1
  1080. scalar: 0.9999
  1081. minScalar: 0.9999
  1082. maxCurve:
  1083. serializedVersion: 2
  1084. m_Curve:
  1085. - serializedVersion: 2
  1086. time: 0
  1087. value: 0
  1088. inSlope: 0
  1089. outSlope: 1
  1090. tangentMode: 0
  1091. - serializedVersion: 2
  1092. time: 1
  1093. value: 1
  1094. inSlope: 1
  1095. outSlope: 0
  1096. tangentMode: 0
  1097. m_PreInfinity: 2
  1098. m_PostInfinity: 2
  1099. m_RotationOrder: 4
  1100. minCurve:
  1101. serializedVersion: 2
  1102. m_Curve:
  1103. - serializedVersion: 2
  1104. time: 0
  1105. value: 0
  1106. inSlope: 0
  1107. outSlope: 1
  1108. tangentMode: 0
  1109. - serializedVersion: 2
  1110. time: 1
  1111. value: 1
  1112. inSlope: 1
  1113. outSlope: 0
  1114. tangentMode: 0
  1115. m_PreInfinity: 2
  1116. m_PostInfinity: 2
  1117. m_RotationOrder: 4
  1118. startFrame:
  1119. serializedVersion: 2
  1120. minMaxState: 0
  1121. scalar: 0
  1122. minScalar: 0
  1123. maxCurve:
  1124. serializedVersion: 2
  1125. m_Curve:
  1126. - serializedVersion: 2
  1127. time: 0
  1128. value: 1
  1129. inSlope: 0
  1130. outSlope: 0
  1131. tangentMode: 0
  1132. - serializedVersion: 2
  1133. time: 1
  1134. value: 1
  1135. inSlope: 0
  1136. outSlope: 0
  1137. tangentMode: 0
  1138. m_PreInfinity: 2
  1139. m_PostInfinity: 2
  1140. m_RotationOrder: 4
  1141. minCurve:
  1142. serializedVersion: 2
  1143. m_Curve:
  1144. - serializedVersion: 2
  1145. time: 0
  1146. value: 0
  1147. inSlope: 0
  1148. outSlope: 0
  1149. tangentMode: 0
  1150. - serializedVersion: 2
  1151. time: 1
  1152. value: 0
  1153. inSlope: 0
  1154. outSlope: 0
  1155. tangentMode: 0
  1156. m_PreInfinity: 2
  1157. m_PostInfinity: 2
  1158. m_RotationOrder: 4
  1159. tilesX: 1
  1160. tilesY: 1
  1161. animationType: 0
  1162. rowIndex: 0
  1163. cycles: 1
  1164. uvChannelMask: -1
  1165. flipU: 0
  1166. flipV: 0
  1167. randomRow: 1
  1168. sprites:
  1169. - sprite: {fileID: 0}
  1170. VelocityModule:
  1171. enabled: 1
  1172. x:
  1173. serializedVersion: 2
  1174. minMaxState: 3
  1175. scalar: 0
  1176. minScalar: 0
  1177. maxCurve:
  1178. serializedVersion: 2
  1179. m_Curve:
  1180. - serializedVersion: 2
  1181. time: 0
  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. m_PreInfinity: 2
  1199. m_PostInfinity: 2
  1200. m_RotationOrder: 4
  1201. y:
  1202. serializedVersion: 2
  1203. minMaxState: 3
  1204. scalar: 0
  1205. minScalar: 0
  1206. maxCurve:
  1207. serializedVersion: 2
  1208. m_Curve:
  1209. - serializedVersion: 2
  1210. time: 0
  1211. value: 0
  1212. inSlope: 0
  1213. outSlope: 0
  1214. tangentMode: 0
  1215. m_PreInfinity: 2
  1216. m_PostInfinity: 2
  1217. m_RotationOrder: 4
  1218. minCurve:
  1219. serializedVersion: 2
  1220. m_Curve:
  1221. - serializedVersion: 2
  1222. time: 0
  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. z:
  1231. serializedVersion: 2
  1232. minMaxState: 3
  1233. scalar: 0
  1234. minScalar: 0
  1235. maxCurve:
  1236. serializedVersion: 2
  1237. m_Curve:
  1238. - serializedVersion: 2
  1239. time: 0
  1240. value: 0
  1241. inSlope: 0
  1242. outSlope: 0
  1243. tangentMode: 0
  1244. m_PreInfinity: 2
  1245. m_PostInfinity: 2
  1246. m_RotationOrder: 4
  1247. minCurve:
  1248. serializedVersion: 2
  1249. m_Curve:
  1250. - serializedVersion: 2
  1251. time: 0
  1252. value: 0
  1253. inSlope: 0
  1254. outSlope: 0
  1255. tangentMode: 0
  1256. m_PreInfinity: 2
  1257. m_PostInfinity: 2
  1258. m_RotationOrder: 4
  1259. inWorldSpace: 0
  1260. InheritVelocityModule:
  1261. enabled: 0
  1262. m_Mode: 0
  1263. m_Curve:
  1264. serializedVersion: 2
  1265. minMaxState: 0
  1266. scalar: 0
  1267. minScalar: 0
  1268. maxCurve:
  1269. serializedVersion: 2
  1270. m_Curve:
  1271. - serializedVersion: 2
  1272. time: 0
  1273. value: 1
  1274. inSlope: 0
  1275. outSlope: 0
  1276. tangentMode: 0
  1277. - serializedVersion: 2
  1278. time: 1
  1279. value: 1
  1280. inSlope: 0
  1281. outSlope: 0
  1282. tangentMode: 0
  1283. m_PreInfinity: 2
  1284. m_PostInfinity: 2
  1285. m_RotationOrder: 4
  1286. minCurve:
  1287. serializedVersion: 2
  1288. m_Curve:
  1289. - serializedVersion: 2
  1290. time: 0
  1291. value: 0
  1292. inSlope: 0
  1293. outSlope: 0
  1294. tangentMode: 0
  1295. - serializedVersion: 2
  1296. time: 1
  1297. value: 0
  1298. inSlope: 0
  1299. outSlope: 0
  1300. tangentMode: 0
  1301. m_PreInfinity: 2
  1302. m_PostInfinity: 2
  1303. m_RotationOrder: 4
  1304. ForceModule:
  1305. enabled: 0
  1306. x:
  1307. serializedVersion: 2
  1308. minMaxState: 0
  1309. scalar: 0
  1310. minScalar: 0
  1311. maxCurve:
  1312. serializedVersion: 2
  1313. m_Curve:
  1314. - serializedVersion: 2
  1315. time: 0
  1316. value: 1
  1317. inSlope: 0
  1318. outSlope: 0
  1319. tangentMode: 0
  1320. m_PreInfinity: 2
  1321. m_PostInfinity: 2
  1322. m_RotationOrder: 4
  1323. minCurve:
  1324. serializedVersion: 2
  1325. m_Curve:
  1326. - serializedVersion: 2
  1327. time: 0
  1328. value: 0
  1329. inSlope: 0
  1330. outSlope: 0
  1331. tangentMode: 0
  1332. m_PreInfinity: 2
  1333. m_PostInfinity: 2
  1334. m_RotationOrder: 4
  1335. y:
  1336. serializedVersion: 2
  1337. minMaxState: 0
  1338. scalar: 0
  1339. minScalar: 0
  1340. maxCurve:
  1341. serializedVersion: 2
  1342. m_Curve:
  1343. - serializedVersion: 2
  1344. time: 0
  1345. value: 1
  1346. inSlope: 0
  1347. outSlope: 0
  1348. tangentMode: 0
  1349. m_PreInfinity: 2
  1350. m_PostInfinity: 2
  1351. m_RotationOrder: 4
  1352. minCurve:
  1353. serializedVersion: 2
  1354. m_Curve:
  1355. - serializedVersion: 2
  1356. time: 0
  1357. value: 0
  1358. inSlope: 0
  1359. outSlope: 0
  1360. tangentMode: 0
  1361. m_PreInfinity: 2
  1362. m_PostInfinity: 2
  1363. m_RotationOrder: 4
  1364. z:
  1365. serializedVersion: 2
  1366. minMaxState: 0
  1367. scalar: 0
  1368. minScalar: 0
  1369. maxCurve:
  1370. serializedVersion: 2
  1371. m_Curve:
  1372. - serializedVersion: 2
  1373. time: 0
  1374. value: 1
  1375. inSlope: 0
  1376. outSlope: 0
  1377. tangentMode: 0
  1378. m_PreInfinity: 2
  1379. m_PostInfinity: 2
  1380. m_RotationOrder: 4
  1381. minCurve:
  1382. serializedVersion: 2
  1383. m_Curve:
  1384. - serializedVersion: 2
  1385. time: 0
  1386. value: 0
  1387. inSlope: 0
  1388. outSlope: 0
  1389. tangentMode: 0
  1390. m_PreInfinity: 2
  1391. m_PostInfinity: 2
  1392. m_RotationOrder: 4
  1393. inWorldSpace: 0
  1394. randomizePerFrame: 0
  1395. ExternalForcesModule:
  1396. enabled: 0
  1397. multiplier: 1
  1398. ClampVelocityModule:
  1399. enabled: 1
  1400. x:
  1401. serializedVersion: 2
  1402. minMaxState: 0
  1403. scalar: 1
  1404. minScalar: 1
  1405. maxCurve:
  1406. serializedVersion: 2
  1407. m_Curve:
  1408. - serializedVersion: 2
  1409. time: 0
  1410. value: 1
  1411. inSlope: 0
  1412. outSlope: 0
  1413. tangentMode: 0
  1414. - serializedVersion: 2
  1415. time: 1
  1416. value: 1
  1417. inSlope: 0
  1418. outSlope: 0
  1419. tangentMode: 0
  1420. m_PreInfinity: 2
  1421. m_PostInfinity: 2
  1422. m_RotationOrder: 4
  1423. minCurve:
  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. y:
  1442. serializedVersion: 2
  1443. minMaxState: 0
  1444. scalar: 1
  1445. minScalar: 1
  1446. maxCurve:
  1447. serializedVersion: 2
  1448. m_Curve:
  1449. - serializedVersion: 2
  1450. time: 0
  1451. value: 1
  1452. inSlope: 0
  1453. outSlope: 0
  1454. tangentMode: 0
  1455. - serializedVersion: 2
  1456. time: 1
  1457. value: 1
  1458. inSlope: 0
  1459. outSlope: 0
  1460. tangentMode: 0
  1461. m_PreInfinity: 2
  1462. m_PostInfinity: 2
  1463. m_RotationOrder: 4
  1464. minCurve:
  1465. serializedVersion: 2
  1466. m_Curve:
  1467. - serializedVersion: 2
  1468. time: 0
  1469. value: 0
  1470. inSlope: 0
  1471. outSlope: 0
  1472. tangentMode: 0
  1473. - serializedVersion: 2
  1474. time: 1
  1475. value: 0
  1476. inSlope: 0
  1477. outSlope: 0
  1478. tangentMode: 0
  1479. m_PreInfinity: 2
  1480. m_PostInfinity: 2
  1481. m_RotationOrder: 4
  1482. z:
  1483. serializedVersion: 2
  1484. minMaxState: 0
  1485. scalar: 1
  1486. minScalar: 1
  1487. maxCurve:
  1488. serializedVersion: 2
  1489. m_Curve:
  1490. - serializedVersion: 2
  1491. time: 0
  1492. value: 1
  1493. inSlope: 0
  1494. outSlope: 0
  1495. tangentMode: 0
  1496. - serializedVersion: 2
  1497. time: 1
  1498. value: 1
  1499. inSlope: 0
  1500. outSlope: 0
  1501. tangentMode: 0
  1502. m_PreInfinity: 2
  1503. m_PostInfinity: 2
  1504. m_RotationOrder: 4
  1505. minCurve:
  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. magnitude:
  1524. serializedVersion: 2
  1525. minMaxState: 1
  1526. scalar: 8
  1527. minScalar: 1
  1528. maxCurve:
  1529. serializedVersion: 2
  1530. m_Curve:
  1531. - serializedVersion: 2
  1532. time: 0
  1533. value: 1
  1534. inSlope: 0
  1535. outSlope: 0
  1536. tangentMode: 0
  1537. - serializedVersion: 2
  1538. time: 0.96585363
  1539. value: 1
  1540. inSlope: 0
  1541. outSlope: 0
  1542. tangentMode: 0
  1543. m_PreInfinity: 2
  1544. m_PostInfinity: 2
  1545. m_RotationOrder: 4
  1546. minCurve:
  1547. serializedVersion: 2
  1548. m_Curve:
  1549. - serializedVersion: 2
  1550. time: 0
  1551. value: 0
  1552. inSlope: 0
  1553. outSlope: 0
  1554. tangentMode: 0
  1555. - serializedVersion: 2
  1556. time: 1
  1557. value: 0
  1558. inSlope: 0
  1559. outSlope: 0
  1560. tangentMode: 0
  1561. m_PreInfinity: 2
  1562. m_PostInfinity: 2
  1563. m_RotationOrder: 4
  1564. separateAxis: 0
  1565. inWorldSpace: 0
  1566. multiplyDragByParticleSize: 1
  1567. multiplyDragByParticleVelocity: 1
  1568. dampen: 0.1
  1569. drag:
  1570. serializedVersion: 2
  1571. minMaxState: 0
  1572. scalar: 0
  1573. minScalar: 0
  1574. maxCurve:
  1575. serializedVersion: 2
  1576. m_Curve:
  1577. - serializedVersion: 2
  1578. time: 0
  1579. value: 0
  1580. inSlope: 0
  1581. outSlope: 0
  1582. tangentMode: 0
  1583. - serializedVersion: 2
  1584. time: 1
  1585. value: 0
  1586. inSlope: 0
  1587. outSlope: 0
  1588. tangentMode: 0
  1589. m_PreInfinity: 2
  1590. m_PostInfinity: 2
  1591. m_RotationOrder: 4
  1592. minCurve:
  1593. serializedVersion: 2
  1594. m_Curve:
  1595. - serializedVersion: 2
  1596. time: 0
  1597. value: 0
  1598. inSlope: 0
  1599. outSlope: 0
  1600. tangentMode: 0
  1601. - serializedVersion: 2
  1602. time: 1
  1603. value: 0
  1604. inSlope: 0
  1605. outSlope: 0
  1606. tangentMode: 0
  1607. m_PreInfinity: 2
  1608. m_PostInfinity: 2
  1609. m_RotationOrder: 4
  1610. NoiseModule:
  1611. enabled: 1
  1612. strength:
  1613. serializedVersion: 2
  1614. minMaxState: 0
  1615. scalar: 0.2
  1616. minScalar: 1
  1617. maxCurve:
  1618. serializedVersion: 2
  1619. m_Curve:
  1620. - serializedVersion: 2
  1621. time: 0
  1622. value: 1
  1623. inSlope: 0
  1624. outSlope: 0
  1625. tangentMode: 0
  1626. - serializedVersion: 2
  1627. time: 1
  1628. value: 1
  1629. inSlope: 0
  1630. outSlope: 0
  1631. tangentMode: 0
  1632. m_PreInfinity: 2
  1633. m_PostInfinity: 2
  1634. m_RotationOrder: 4
  1635. minCurve:
  1636. serializedVersion: 2
  1637. m_Curve:
  1638. - serializedVersion: 2
  1639. time: 0
  1640. value: 0
  1641. inSlope: 0
  1642. outSlope: 0
  1643. tangentMode: 0
  1644. - serializedVersion: 2
  1645. time: 1
  1646. value: 0
  1647. inSlope: 0
  1648. outSlope: 0
  1649. tangentMode: 0
  1650. m_PreInfinity: 2
  1651. m_PostInfinity: 2
  1652. m_RotationOrder: 4
  1653. strengthY:
  1654. serializedVersion: 2
  1655. minMaxState: 0
  1656. scalar: 1
  1657. minScalar: 1
  1658. maxCurve:
  1659. serializedVersion: 2
  1660. m_Curve:
  1661. - serializedVersion: 2
  1662. time: 0
  1663. value: 1
  1664. inSlope: 0
  1665. outSlope: 0
  1666. tangentMode: 0
  1667. - serializedVersion: 2
  1668. time: 1
  1669. value: 1
  1670. inSlope: 0
  1671. outSlope: 0
  1672. tangentMode: 0
  1673. m_PreInfinity: 2
  1674. m_PostInfinity: 2
  1675. m_RotationOrder: 4
  1676. minCurve:
  1677. serializedVersion: 2
  1678. m_Curve:
  1679. - serializedVersion: 2
  1680. time: 0
  1681. value: 0
  1682. inSlope: 0
  1683. outSlope: 0
  1684. tangentMode: 0
  1685. - serializedVersion: 2
  1686. time: 1
  1687. value: 0
  1688. inSlope: 0
  1689. outSlope: 0
  1690. tangentMode: 0
  1691. m_PreInfinity: 2
  1692. m_PostInfinity: 2
  1693. m_RotationOrder: 4
  1694. strengthZ:
  1695. serializedVersion: 2
  1696. minMaxState: 0
  1697. scalar: 1
  1698. minScalar: 1
  1699. maxCurve:
  1700. serializedVersion: 2
  1701. m_Curve:
  1702. - serializedVersion: 2
  1703. time: 0
  1704. value: 1
  1705. inSlope: 0
  1706. outSlope: 0
  1707. tangentMode: 0
  1708. - serializedVersion: 2
  1709. time: 1
  1710. value: 1
  1711. inSlope: 0
  1712. outSlope: 0
  1713. tangentMode: 0
  1714. m_PreInfinity: 2
  1715. m_PostInfinity: 2
  1716. m_RotationOrder: 4
  1717. minCurve:
  1718. serializedVersion: 2
  1719. m_Curve:
  1720. - serializedVersion: 2
  1721. time: 0
  1722. value: 0
  1723. inSlope: 0
  1724. outSlope: 0
  1725. tangentMode: 0
  1726. - serializedVersion: 2
  1727. time: 1
  1728. value: 0
  1729. inSlope: 0
  1730. outSlope: 0
  1731. tangentMode: 0
  1732. m_PreInfinity: 2
  1733. m_PostInfinity: 2
  1734. m_RotationOrder: 4
  1735. separateAxes: 0
  1736. frequency: 0.5
  1737. damping: 1
  1738. octaves: 1
  1739. octaveMultiplier: 0.5
  1740. octaveScale: 2
  1741. quality: 2
  1742. scrollSpeed:
  1743. serializedVersion: 2
  1744. minMaxState: 0
  1745. scalar: 0.5
  1746. minScalar: 0
  1747. maxCurve:
  1748. serializedVersion: 2
  1749. m_Curve:
  1750. - serializedVersion: 2
  1751. time: 0
  1752. value: 1
  1753. inSlope: 0
  1754. outSlope: 0
  1755. tangentMode: 0
  1756. - serializedVersion: 2
  1757. time: 1
  1758. value: 1
  1759. inSlope: 0
  1760. outSlope: 0
  1761. tangentMode: 0
  1762. m_PreInfinity: 2
  1763. m_PostInfinity: 2
  1764. m_RotationOrder: 4
  1765. minCurve:
  1766. serializedVersion: 2
  1767. m_Curve:
  1768. - serializedVersion: 2
  1769. time: 0
  1770. value: 0
  1771. inSlope: 0
  1772. outSlope: 0
  1773. tangentMode: 0
  1774. - serializedVersion: 2
  1775. time: 1
  1776. value: 0
  1777. inSlope: 0
  1778. outSlope: 0
  1779. tangentMode: 0
  1780. m_PreInfinity: 2
  1781. m_PostInfinity: 2
  1782. m_RotationOrder: 4
  1783. remap:
  1784. serializedVersion: 2
  1785. minMaxState: 1
  1786. scalar: 1
  1787. minScalar: 1
  1788. maxCurve:
  1789. serializedVersion: 2
  1790. m_Curve:
  1791. - serializedVersion: 2
  1792. time: 0
  1793. value: -1
  1794. inSlope: 0
  1795. outSlope: 2
  1796. tangentMode: 0
  1797. - serializedVersion: 2
  1798. time: 1
  1799. value: 1
  1800. inSlope: 2
  1801. outSlope: 0
  1802. tangentMode: 0
  1803. m_PreInfinity: 2
  1804. m_PostInfinity: 2
  1805. m_RotationOrder: 4
  1806. minCurve:
  1807. serializedVersion: 2
  1808. m_Curve:
  1809. - serializedVersion: 2
  1810. time: 0
  1811. value: 0
  1812. inSlope: 0
  1813. outSlope: 0
  1814. tangentMode: 0
  1815. - serializedVersion: 2
  1816. time: 1
  1817. value: 0
  1818. inSlope: 0
  1819. outSlope: 0
  1820. tangentMode: 0
  1821. m_PreInfinity: 2
  1822. m_PostInfinity: 2
  1823. m_RotationOrder: 4
  1824. remapY:
  1825. serializedVersion: 2
  1826. minMaxState: 1
  1827. scalar: 1
  1828. minScalar: 1
  1829. maxCurve:
  1830. serializedVersion: 2
  1831. m_Curve:
  1832. - serializedVersion: 2
  1833. time: 0
  1834. value: -1
  1835. inSlope: 0
  1836. outSlope: 2
  1837. tangentMode: 0
  1838. - serializedVersion: 2
  1839. time: 1
  1840. value: 1
  1841. inSlope: 2
  1842. outSlope: 0
  1843. tangentMode: 0
  1844. m_PreInfinity: 2
  1845. m_PostInfinity: 2
  1846. m_RotationOrder: 4
  1847. minCurve:
  1848. serializedVersion: 2
  1849. m_Curve:
  1850. - serializedVersion: 2
  1851. time: 0
  1852. value: 0
  1853. inSlope: 0
  1854. outSlope: 0
  1855. tangentMode: 0
  1856. - serializedVersion: 2
  1857. time: 1
  1858. value: 0
  1859. inSlope: 0
  1860. outSlope: 0
  1861. tangentMode: 0
  1862. m_PreInfinity: 2
  1863. m_PostInfinity: 2
  1864. m_RotationOrder: 4
  1865. remapZ:
  1866. serializedVersion: 2
  1867. minMaxState: 1
  1868. scalar: 1
  1869. minScalar: 1
  1870. maxCurve:
  1871. serializedVersion: 2
  1872. m_Curve:
  1873. - serializedVersion: 2
  1874. time: 0
  1875. value: -1
  1876. inSlope: 0
  1877. outSlope: 2
  1878. tangentMode: 0
  1879. - serializedVersion: 2
  1880. time: 1
  1881. value: 1
  1882. inSlope: 2
  1883. outSlope: 0
  1884. tangentMode: 0
  1885. m_PreInfinity: 2
  1886. m_PostInfinity: 2
  1887. m_RotationOrder: 4
  1888. minCurve:
  1889. serializedVersion: 2
  1890. m_Curve:
  1891. - serializedVersion: 2
  1892. time: 0
  1893. value: 0
  1894. inSlope: 0
  1895. outSlope: 0
  1896. tangentMode: 0
  1897. - serializedVersion: 2
  1898. time: 1
  1899. value: 0
  1900. inSlope: 0
  1901. outSlope: 0
  1902. tangentMode: 0
  1903. m_PreInfinity: 2
  1904. m_PostInfinity: 2
  1905. m_RotationOrder: 4
  1906. remapEnabled: 0
  1907. positionAmount:
  1908. serializedVersion: 2
  1909. minMaxState: 0
  1910. scalar: 1
  1911. minScalar: 1
  1912. maxCurve:
  1913. serializedVersion: 2
  1914. m_Curve:
  1915. - serializedVersion: 2
  1916. time: 0
  1917. value: 1
  1918. inSlope: 0
  1919. outSlope: 0
  1920. tangentMode: 0
  1921. - serializedVersion: 2
  1922. time: 1
  1923. value: 1
  1924. inSlope: 0
  1925. outSlope: 0
  1926. tangentMode: 0
  1927. m_PreInfinity: 2
  1928. m_PostInfinity: 2
  1929. m_RotationOrder: 4
  1930. minCurve:
  1931. serializedVersion: 2
  1932. m_Curve:
  1933. - serializedVersion: 2
  1934. time: 0
  1935. value: 1
  1936. inSlope: 0
  1937. outSlope: 0
  1938. tangentMode: 0
  1939. - serializedVersion: 2
  1940. time: 1
  1941. value: 1
  1942. inSlope: 0
  1943. outSlope: 0
  1944. tangentMode: 0
  1945. m_PreInfinity: 2
  1946. m_PostInfinity: 2
  1947. m_RotationOrder: 4
  1948. rotationAmount:
  1949. serializedVersion: 2
  1950. minMaxState: 0
  1951. scalar: 0
  1952. minScalar: 0
  1953. maxCurve:
  1954. serializedVersion: 2
  1955. m_Curve:
  1956. - serializedVersion: 2
  1957. time: 0
  1958. value: 0
  1959. inSlope: 0
  1960. outSlope: 0
  1961. tangentMode: 0
  1962. - serializedVersion: 2
  1963. time: 1
  1964. value: 0
  1965. inSlope: 0
  1966. outSlope: 0
  1967. tangentMode: 0
  1968. m_PreInfinity: 2
  1969. m_PostInfinity: 2
  1970. m_RotationOrder: 4
  1971. minCurve:
  1972. serializedVersion: 2
  1973. m_Curve:
  1974. - serializedVersion: 2
  1975. time: 0
  1976. value: 0
  1977. inSlope: 0
  1978. outSlope: 0
  1979. tangentMode: 0
  1980. - serializedVersion: 2
  1981. time: 1
  1982. value: 0
  1983. inSlope: 0
  1984. outSlope: 0
  1985. tangentMode: 0
  1986. m_PreInfinity: 2
  1987. m_PostInfinity: 2
  1988. m_RotationOrder: 4
  1989. sizeAmount:
  1990. serializedVersion: 2
  1991. minMaxState: 0
  1992. scalar: 0
  1993. minScalar: 0
  1994. maxCurve:
  1995. serializedVersion: 2
  1996. m_Curve:
  1997. - serializedVersion: 2
  1998. time: 0
  1999. value: 0
  2000. inSlope: 0
  2001. outSlope: 0
  2002. tangentMode: 0
  2003. - serializedVersion: 2
  2004. time: 1
  2005. value: 0
  2006. inSlope: 0
  2007. outSlope: 0
  2008. tangentMode: 0
  2009. m_PreInfinity: 2
  2010. m_PostInfinity: 2
  2011. m_RotationOrder: 4
  2012. minCurve:
  2013. serializedVersion: 2
  2014. m_Curve:
  2015. - serializedVersion: 2
  2016. time: 0
  2017. value: 0
  2018. inSlope: 0
  2019. outSlope: 0
  2020. tangentMode: 0
  2021. - serializedVersion: 2
  2022. time: 1
  2023. value: 0
  2024. inSlope: 0
  2025. outSlope: 0
  2026. tangentMode: 0
  2027. m_PreInfinity: 2
  2028. m_PostInfinity: 2
  2029. m_RotationOrder: 4
  2030. SizeBySpeedModule:
  2031. enabled: 0
  2032. curve:
  2033. serializedVersion: 2
  2034. minMaxState: 1
  2035. scalar: 1
  2036. minScalar: 1
  2037. maxCurve:
  2038. serializedVersion: 2
  2039. m_Curve:
  2040. - serializedVersion: 2
  2041. time: 0
  2042. value: 1
  2043. inSlope: 0
  2044. outSlope: 0
  2045. tangentMode: 0
  2046. - serializedVersion: 2
  2047. time: 1
  2048. value: 1
  2049. inSlope: 0
  2050. outSlope: 0
  2051. tangentMode: 0
  2052. m_PreInfinity: 2
  2053. m_PostInfinity: 2
  2054. m_RotationOrder: 4
  2055. minCurve:
  2056. serializedVersion: 2
  2057. m_Curve:
  2058. - serializedVersion: 2
  2059. time: 0
  2060. value: 0
  2061. inSlope: 0
  2062. outSlope: 0
  2063. tangentMode: 0
  2064. - serializedVersion: 2
  2065. time: 1
  2066. value: 0
  2067. inSlope: 0
  2068. outSlope: 0
  2069. tangentMode: 0
  2070. m_PreInfinity: 2
  2071. m_PostInfinity: 2
  2072. m_RotationOrder: 4
  2073. y:
  2074. serializedVersion: 2
  2075. minMaxState: 1
  2076. scalar: 1
  2077. minScalar: 1
  2078. maxCurve:
  2079. serializedVersion: 2
  2080. m_Curve:
  2081. - serializedVersion: 2
  2082. time: 0
  2083. value: 1
  2084. inSlope: 0
  2085. outSlope: 0
  2086. tangentMode: 0
  2087. - serializedVersion: 2
  2088. time: 1
  2089. value: 1
  2090. inSlope: 0
  2091. outSlope: 0
  2092. tangentMode: 0
  2093. m_PreInfinity: 2
  2094. m_PostInfinity: 2
  2095. m_RotationOrder: 4
  2096. minCurve:
  2097. serializedVersion: 2
  2098. m_Curve:
  2099. - serializedVersion: 2
  2100. time: 0
  2101. value: 0
  2102. inSlope: 0
  2103. outSlope: 0
  2104. tangentMode: 0
  2105. - serializedVersion: 2
  2106. time: 1
  2107. value: 0
  2108. inSlope: 0
  2109. outSlope: 0
  2110. tangentMode: 0
  2111. m_PreInfinity: 2
  2112. m_PostInfinity: 2
  2113. m_RotationOrder: 4
  2114. z:
  2115. serializedVersion: 2
  2116. minMaxState: 1
  2117. scalar: 1
  2118. minScalar: 1
  2119. maxCurve:
  2120. serializedVersion: 2
  2121. m_Curve:
  2122. - serializedVersion: 2
  2123. time: 0
  2124. value: 1
  2125. inSlope: 0
  2126. outSlope: 0
  2127. tangentMode: 0
  2128. - serializedVersion: 2
  2129. time: 1
  2130. value: 1
  2131. inSlope: 0
  2132. outSlope: 0
  2133. tangentMode: 0
  2134. m_PreInfinity: 2
  2135. m_PostInfinity: 2
  2136. m_RotationOrder: 4
  2137. minCurve:
  2138. serializedVersion: 2
  2139. m_Curve:
  2140. - serializedVersion: 2
  2141. time: 0
  2142. value: 0
  2143. inSlope: 0
  2144. outSlope: 0
  2145. tangentMode: 0
  2146. - serializedVersion: 2
  2147. time: 1
  2148. value: 0
  2149. inSlope: 0
  2150. outSlope: 0
  2151. tangentMode: 0
  2152. m_PreInfinity: 2
  2153. m_PostInfinity: 2
  2154. m_RotationOrder: 4
  2155. range: {x: 0, y: 1}
  2156. separateAxes: 0
  2157. RotationBySpeedModule:
  2158. enabled: 1
  2159. x:
  2160. serializedVersion: 2
  2161. minMaxState: 0
  2162. scalar: 0
  2163. minScalar: 0
  2164. maxCurve:
  2165. serializedVersion: 2
  2166. m_Curve:
  2167. - serializedVersion: 2
  2168. time: 0
  2169. value: 1
  2170. inSlope: 0
  2171. outSlope: 0
  2172. tangentMode: 0
  2173. - serializedVersion: 2
  2174. time: 1
  2175. value: 1
  2176. inSlope: 0
  2177. outSlope: 0
  2178. tangentMode: 0
  2179. m_PreInfinity: 2
  2180. m_PostInfinity: 2
  2181. m_RotationOrder: 4
  2182. minCurve:
  2183. serializedVersion: 2
  2184. m_Curve:
  2185. - serializedVersion: 2
  2186. time: 0
  2187. value: 0
  2188. inSlope: 0
  2189. outSlope: 0
  2190. tangentMode: 0
  2191. - serializedVersion: 2
  2192. time: 1
  2193. value: 0
  2194. inSlope: 0
  2195. outSlope: 0
  2196. tangentMode: 0
  2197. m_PreInfinity: 2
  2198. m_PostInfinity: 2
  2199. m_RotationOrder: 4
  2200. y:
  2201. serializedVersion: 2
  2202. minMaxState: 0
  2203. scalar: 0
  2204. minScalar: 0
  2205. maxCurve:
  2206. serializedVersion: 2
  2207. m_Curve:
  2208. - serializedVersion: 2
  2209. time: 0
  2210. value: 1
  2211. inSlope: 0
  2212. outSlope: 0
  2213. tangentMode: 0
  2214. - serializedVersion: 2
  2215. time: 1
  2216. value: 1
  2217. inSlope: 0
  2218. outSlope: 0
  2219. tangentMode: 0
  2220. m_PreInfinity: 2
  2221. m_PostInfinity: 2
  2222. m_RotationOrder: 4
  2223. minCurve:
  2224. serializedVersion: 2
  2225. m_Curve:
  2226. - serializedVersion: 2
  2227. time: 0
  2228. value: 0
  2229. inSlope: 0
  2230. outSlope: 0
  2231. tangentMode: 0
  2232. - serializedVersion: 2
  2233. time: 1
  2234. value: 0
  2235. inSlope: 0
  2236. outSlope: 0
  2237. tangentMode: 0
  2238. m_PreInfinity: 2
  2239. m_PostInfinity: 2
  2240. m_RotationOrder: 4
  2241. curve:
  2242. serializedVersion: 2
  2243. minMaxState: 0
  2244. scalar: 1.5707963
  2245. minScalar: 0.7853982
  2246. maxCurve:
  2247. serializedVersion: 2
  2248. m_Curve:
  2249. - serializedVersion: 2
  2250. time: 0
  2251. value: 1
  2252. inSlope: 0
  2253. outSlope: 0
  2254. tangentMode: 0
  2255. - serializedVersion: 2
  2256. time: 1
  2257. value: 1
  2258. inSlope: 0
  2259. outSlope: 0
  2260. tangentMode: 0
  2261. m_PreInfinity: 2
  2262. m_PostInfinity: 2
  2263. m_RotationOrder: 4
  2264. minCurve:
  2265. serializedVersion: 2
  2266. m_Curve:
  2267. - serializedVersion: 2
  2268. time: 0
  2269. value: 0
  2270. inSlope: 0
  2271. outSlope: 0
  2272. tangentMode: 0
  2273. - serializedVersion: 2
  2274. time: 1
  2275. value: 0
  2276. inSlope: 0
  2277. outSlope: 0
  2278. tangentMode: 0
  2279. m_PreInfinity: 2
  2280. m_PostInfinity: 2
  2281. m_RotationOrder: 4
  2282. separateAxes: 0
  2283. range: {x: 0, y: 50}
  2284. ColorBySpeedModule:
  2285. enabled: 0
  2286. gradient:
  2287. serializedVersion: 2
  2288. minMaxState: 1
  2289. minColor: {r: 1, g: 1, b: 1, a: 1}
  2290. maxColor: {r: 1, g: 1, b: 1, a: 1}
  2291. maxGradient:
  2292. serializedVersion: 2
  2293. key0: {r: 1, g: 1, b: 1, a: 1}
  2294. key1: {r: 1, g: 1, b: 1, a: 1}
  2295. key2: {r: 0, g: 0, b: 0, a: 0}
  2296. key3: {r: 0, g: 0, b: 0, a: 0}
  2297. key4: {r: 0, g: 0, b: 0, a: 0}
  2298. key5: {r: 0, g: 0, b: 0, a: 0}
  2299. key6: {r: 0, g: 0, b: 0, a: 0}
  2300. key7: {r: 0, g: 0, b: 0, a: 0}
  2301. ctime0: 0
  2302. ctime1: 65535
  2303. ctime2: 0
  2304. ctime3: 0
  2305. ctime4: 0
  2306. ctime5: 0
  2307. ctime6: 0
  2308. ctime7: 0
  2309. atime0: 0
  2310. atime1: 65535
  2311. atime2: 0
  2312. atime3: 0
  2313. atime4: 0
  2314. atime5: 0
  2315. atime6: 0
  2316. atime7: 0
  2317. m_Mode: 0
  2318. m_NumColorKeys: 2
  2319. m_NumAlphaKeys: 2
  2320. minGradient:
  2321. serializedVersion: 2
  2322. key0: {r: 1, g: 1, b: 1, a: 1}
  2323. key1: {r: 1, g: 1, b: 1, a: 1}
  2324. key2: {r: 0, g: 0, b: 0, a: 0}
  2325. key3: {r: 0, g: 0, b: 0, a: 0}
  2326. key4: {r: 0, g: 0, b: 0, a: 0}
  2327. key5: {r: 0, g: 0, b: 0, a: 0}
  2328. key6: {r: 0, g: 0, b: 0, a: 0}
  2329. key7: {r: 0, g: 0, b: 0, a: 0}
  2330. ctime0: 0
  2331. ctime1: 65535
  2332. ctime2: 0
  2333. ctime3: 0
  2334. ctime4: 0
  2335. ctime5: 0
  2336. ctime6: 0
  2337. ctime7: 0
  2338. atime0: 0
  2339. atime1: 65535
  2340. atime2: 0
  2341. atime3: 0
  2342. atime4: 0
  2343. atime5: 0
  2344. atime6: 0
  2345. atime7: 0
  2346. m_Mode: 0
  2347. m_NumColorKeys: 2
  2348. m_NumAlphaKeys: 2
  2349. range: {x: 0, y: 1}
  2350. CollisionModule:
  2351. enabled: 1
  2352. serializedVersion: 3
  2353. type: 1
  2354. collisionMode: 0
  2355. colliderForce: 0
  2356. multiplyColliderForceByParticleSize: 0
  2357. multiplyColliderForceByParticleSpeed: 0
  2358. multiplyColliderForceByCollisionAngle: 1
  2359. plane0: {fileID: 0}
  2360. plane1: {fileID: 0}
  2361. plane2: {fileID: 0}
  2362. plane3: {fileID: 0}
  2363. plane4: {fileID: 0}
  2364. plane5: {fileID: 0}
  2365. m_Dampen:
  2366. serializedVersion: 2
  2367. minMaxState: 0
  2368. scalar: 1
  2369. minScalar: 0
  2370. maxCurve:
  2371. serializedVersion: 2
  2372. m_Curve:
  2373. - serializedVersion: 2
  2374. time: 0
  2375. value: 1
  2376. inSlope: 0
  2377. outSlope: 0
  2378. tangentMode: 0
  2379. - serializedVersion: 2
  2380. time: 1
  2381. value: 1
  2382. inSlope: 0
  2383. outSlope: 0
  2384. tangentMode: 0
  2385. m_PreInfinity: 2
  2386. m_PostInfinity: 2
  2387. m_RotationOrder: 4
  2388. minCurve:
  2389. serializedVersion: 2
  2390. m_Curve:
  2391. - serializedVersion: 2
  2392. time: 0
  2393. value: 0
  2394. inSlope: 0
  2395. outSlope: 0
  2396. tangentMode: 0
  2397. - serializedVersion: 2
  2398. time: 1
  2399. value: 0
  2400. inSlope: 0
  2401. outSlope: 0
  2402. tangentMode: 0
  2403. m_PreInfinity: 2
  2404. m_PostInfinity: 2
  2405. m_RotationOrder: 4
  2406. m_Bounce:
  2407. serializedVersion: 2
  2408. minMaxState: 0
  2409. scalar: 0
  2410. minScalar: 1
  2411. maxCurve:
  2412. serializedVersion: 2
  2413. m_Curve:
  2414. - serializedVersion: 2
  2415. time: 0
  2416. value: 1
  2417. inSlope: 0
  2418. outSlope: 0
  2419. tangentMode: 0
  2420. - serializedVersion: 2
  2421. time: 1
  2422. value: 1
  2423. inSlope: 0
  2424. outSlope: 0
  2425. tangentMode: 0
  2426. m_PreInfinity: 2
  2427. m_PostInfinity: 2
  2428. m_RotationOrder: 4
  2429. minCurve:
  2430. serializedVersion: 2
  2431. m_Curve:
  2432. - serializedVersion: 2
  2433. time: 0
  2434. value: 0
  2435. inSlope: 0
  2436. outSlope: 0
  2437. tangentMode: 0
  2438. - serializedVersion: 2
  2439. time: 1
  2440. value: 0
  2441. inSlope: 0
  2442. outSlope: 0
  2443. tangentMode: 0
  2444. m_PreInfinity: 2
  2445. m_PostInfinity: 2
  2446. m_RotationOrder: 4
  2447. m_EnergyLossOnCollision:
  2448. serializedVersion: 2
  2449. minMaxState: 0
  2450. scalar: 0
  2451. minScalar: 0
  2452. maxCurve:
  2453. serializedVersion: 2
  2454. m_Curve:
  2455. - serializedVersion: 2
  2456. time: 0
  2457. value: 1
  2458. inSlope: 0
  2459. outSlope: 0
  2460. tangentMode: 0
  2461. - serializedVersion: 2
  2462. time: 1
  2463. value: 1
  2464. inSlope: 0
  2465. outSlope: 0
  2466. tangentMode: 0
  2467. m_PreInfinity: 2
  2468. m_PostInfinity: 2
  2469. m_RotationOrder: 4
  2470. minCurve:
  2471. serializedVersion: 2
  2472. m_Curve:
  2473. - serializedVersion: 2
  2474. time: 0
  2475. value: 0
  2476. inSlope: 0
  2477. outSlope: 0
  2478. tangentMode: 0
  2479. - serializedVersion: 2
  2480. time: 1
  2481. value: 0
  2482. inSlope: 0
  2483. outSlope: 0
  2484. tangentMode: 0
  2485. m_PreInfinity: 2
  2486. m_PostInfinity: 2
  2487. m_RotationOrder: 4
  2488. minKillSpeed: 0
  2489. maxKillSpeed: 10000
  2490. radiusScale: 1
  2491. collidesWith:
  2492. serializedVersion: 2
  2493. m_Bits: 4294967295
  2494. maxCollisionShapes: 256
  2495. quality: 0
  2496. voxelSize: 0.5
  2497. collisionMessages: 0
  2498. collidesWithDynamic: 1
  2499. interiorCollisions: 1
  2500. TriggerModule:
  2501. enabled: 0
  2502. collisionShape0: {fileID: 0}
  2503. collisionShape1: {fileID: 0}
  2504. collisionShape2: {fileID: 0}
  2505. collisionShape3: {fileID: 0}
  2506. collisionShape4: {fileID: 0}
  2507. collisionShape5: {fileID: 0}
  2508. inside: 1
  2509. outside: 0
  2510. enter: 0
  2511. exit: 0
  2512. radiusScale: 1
  2513. SubModule:
  2514. serializedVersion: 2
  2515. enabled: 0
  2516. subEmitters:
  2517. - serializedVersion: 2
  2518. emitter: {fileID: 0}
  2519. type: 0
  2520. properties: 0
  2521. LightsModule:
  2522. enabled: 0
  2523. ratio: 0
  2524. light: {fileID: 0}
  2525. randomDistribution: 1
  2526. color: 1
  2527. range: 1
  2528. intensity: 1
  2529. rangeCurve:
  2530. serializedVersion: 2
  2531. minMaxState: 0
  2532. scalar: 1
  2533. minScalar: 1
  2534. maxCurve:
  2535. serializedVersion: 2
  2536. m_Curve:
  2537. - serializedVersion: 2
  2538. time: 0
  2539. value: 1
  2540. inSlope: 0
  2541. outSlope: 0
  2542. tangentMode: 0
  2543. - serializedVersion: 2
  2544. time: 1
  2545. value: 1
  2546. inSlope: 0
  2547. outSlope: 0
  2548. tangentMode: 0
  2549. m_PreInfinity: 2
  2550. m_PostInfinity: 2
  2551. m_RotationOrder: 4
  2552. minCurve:
  2553. serializedVersion: 2
  2554. m_Curve:
  2555. - serializedVersion: 2
  2556. time: 0
  2557. value: 0
  2558. inSlope: 0
  2559. outSlope: 0
  2560. tangentMode: 0
  2561. - serializedVersion: 2
  2562. time: 1
  2563. value: 0
  2564. inSlope: 0
  2565. outSlope: 0
  2566. tangentMode: 0
  2567. m_PreInfinity: 2
  2568. m_PostInfinity: 2
  2569. m_RotationOrder: 4
  2570. intensityCurve:
  2571. serializedVersion: 2
  2572. minMaxState: 0
  2573. scalar: 1
  2574. minScalar: 1
  2575. maxCurve:
  2576. serializedVersion: 2
  2577. m_Curve:
  2578. - serializedVersion: 2
  2579. time: 0
  2580. value: 1
  2581. inSlope: 0
  2582. outSlope: 0
  2583. tangentMode: 0
  2584. - serializedVersion: 2
  2585. time: 1
  2586. value: 1
  2587. inSlope: 0
  2588. outSlope: 0
  2589. tangentMode: 0
  2590. m_PreInfinity: 2
  2591. m_PostInfinity: 2
  2592. m_RotationOrder: 4
  2593. minCurve:
  2594. serializedVersion: 2
  2595. m_Curve:
  2596. - serializedVersion: 2
  2597. time: 0
  2598. value: 0
  2599. inSlope: 0
  2600. outSlope: 0
  2601. tangentMode: 0
  2602. - serializedVersion: 2
  2603. time: 1
  2604. value: 0
  2605. inSlope: 0
  2606. outSlope: 0
  2607. tangentMode: 0
  2608. m_PreInfinity: 2
  2609. m_PostInfinity: 2
  2610. m_RotationOrder: 4
  2611. maxLights: 20
  2612. TrailModule:
  2613. enabled: 0
  2614. ratio: 1
  2615. lifetime:
  2616. serializedVersion: 2
  2617. minMaxState: 0
  2618. scalar: 1
  2619. minScalar: 1
  2620. maxCurve:
  2621. serializedVersion: 2
  2622. m_Curve:
  2623. - serializedVersion: 2
  2624. time: 0
  2625. value: 1
  2626. inSlope: 0
  2627. outSlope: 0
  2628. tangentMode: 0
  2629. - serializedVersion: 2
  2630. time: 1
  2631. value: 1
  2632. inSlope: 0
  2633. outSlope: 0
  2634. tangentMode: 0
  2635. m_PreInfinity: 2
  2636. m_PostInfinity: 2
  2637. m_RotationOrder: 4
  2638. minCurve:
  2639. serializedVersion: 2
  2640. m_Curve:
  2641. - serializedVersion: 2
  2642. time: 0
  2643. value: 0
  2644. inSlope: 0
  2645. outSlope: 0
  2646. tangentMode: 0
  2647. - serializedVersion: 2
  2648. time: 1
  2649. value: 0
  2650. inSlope: 0
  2651. outSlope: 0
  2652. tangentMode: 0
  2653. m_PreInfinity: 2
  2654. m_PostInfinity: 2
  2655. m_RotationOrder: 4
  2656. minVertexDistance: 0.2
  2657. textureMode: 0
  2658. worldSpace: 0
  2659. dieWithParticles: 1
  2660. sizeAffectsWidth: 1
  2661. sizeAffectsLifetime: 0
  2662. inheritParticleColor: 1
  2663. generateLightingData: 0
  2664. colorOverLifetime:
  2665. serializedVersion: 2
  2666. minMaxState: 0
  2667. minColor: {r: 1, g: 1, b: 1, a: 1}
  2668. maxColor: {r: 1, g: 1, b: 1, a: 1}
  2669. maxGradient:
  2670. serializedVersion: 2
  2671. key0: {r: 1, g: 1, b: 1, a: 1}
  2672. key1: {r: 1, g: 1, b: 1, a: 1}
  2673. key2: {r: 0, g: 0, b: 0, a: 0}
  2674. key3: {r: 0, g: 0, b: 0, a: 0}
  2675. key4: {r: 0, g: 0, b: 0, a: 0}
  2676. key5: {r: 0, g: 0, b: 0, a: 0}
  2677. key6: {r: 0, g: 0, b: 0, a: 0}
  2678. key7: {r: 0, g: 0, b: 0, a: 0}
  2679. ctime0: 0
  2680. ctime1: 65535
  2681. ctime2: 0
  2682. ctime3: 0
  2683. ctime4: 0
  2684. ctime5: 0
  2685. ctime6: 0
  2686. ctime7: 0
  2687. atime0: 0
  2688. atime1: 65535
  2689. atime2: 0
  2690. atime3: 0
  2691. atime4: 0
  2692. atime5: 0
  2693. atime6: 0
  2694. atime7: 0
  2695. m_Mode: 0
  2696. m_NumColorKeys: 2
  2697. m_NumAlphaKeys: 2
  2698. minGradient:
  2699. serializedVersion: 2
  2700. key0: {r: 1, g: 1, b: 1, a: 1}
  2701. key1: {r: 1, g: 1, b: 1, a: 1}
  2702. key2: {r: 0, g: 0, b: 0, a: 0}
  2703. key3: {r: 0, g: 0, b: 0, a: 0}
  2704. key4: {r: 0, g: 0, b: 0, a: 0}
  2705. key5: {r: 0, g: 0, b: 0, a: 0}
  2706. key6: {r: 0, g: 0, b: 0, a: 0}
  2707. key7: {r: 0, g: 0, b: 0, a: 0}
  2708. ctime0: 0
  2709. ctime1: 65535
  2710. ctime2: 0
  2711. ctime3: 0
  2712. ctime4: 0
  2713. ctime5: 0
  2714. ctime6: 0
  2715. ctime7: 0
  2716. atime0: 0
  2717. atime1: 65535
  2718. atime2: 0
  2719. atime3: 0
  2720. atime4: 0
  2721. atime5: 0
  2722. atime6: 0
  2723. atime7: 0
  2724. m_Mode: 0
  2725. m_NumColorKeys: 2
  2726. m_NumAlphaKeys: 2
  2727. widthOverTrail:
  2728. serializedVersion: 2
  2729. minMaxState: 0
  2730. scalar: 1
  2731. minScalar: 1
  2732. maxCurve:
  2733. serializedVersion: 2
  2734. m_Curve:
  2735. - serializedVersion: 2
  2736. time: 0
  2737. value: 1
  2738. inSlope: 0
  2739. outSlope: 0
  2740. tangentMode: 0
  2741. - serializedVersion: 2
  2742. time: 1
  2743. value: 1
  2744. inSlope: 0
  2745. outSlope: 0
  2746. tangentMode: 0
  2747. m_PreInfinity: 2
  2748. m_PostInfinity: 2
  2749. m_RotationOrder: 4
  2750. minCurve:
  2751. serializedVersion: 2
  2752. m_Curve:
  2753. - serializedVersion: 2
  2754. time: 0
  2755. value: 0
  2756. inSlope: 0
  2757. outSlope: 0
  2758. tangentMode: 0
  2759. - serializedVersion: 2
  2760. time: 1
  2761. value: 0
  2762. inSlope: 0
  2763. outSlope: 0
  2764. tangentMode: 0
  2765. m_PreInfinity: 2
  2766. m_PostInfinity: 2
  2767. m_RotationOrder: 4
  2768. colorOverTrail:
  2769. serializedVersion: 2
  2770. minMaxState: 0
  2771. minColor: {r: 1, g: 1, b: 1, a: 1}
  2772. maxColor: {r: 1, g: 1, b: 1, a: 1}
  2773. maxGradient:
  2774. serializedVersion: 2
  2775. key0: {r: 1, g: 1, b: 1, a: 1}
  2776. key1: {r: 1, g: 1, b: 1, a: 1}
  2777. key2: {r: 0, g: 0, b: 0, a: 0}
  2778. key3: {r: 0, g: 0, b: 0, a: 0}
  2779. key4: {r: 0, g: 0, b: 0, a: 0}
  2780. key5: {r: 0, g: 0, b: 0, a: 0}
  2781. key6: {r: 0, g: 0, b: 0, a: 0}
  2782. key7: {r: 0, g: 0, b: 0, a: 0}
  2783. ctime0: 0
  2784. ctime1: 65535
  2785. ctime2: 0
  2786. ctime3: 0
  2787. ctime4: 0
  2788. ctime5: 0
  2789. ctime6: 0
  2790. ctime7: 0
  2791. atime0: 0
  2792. atime1: 65535
  2793. atime2: 0
  2794. atime3: 0
  2795. atime4: 0
  2796. atime5: 0
  2797. atime6: 0
  2798. atime7: 0
  2799. m_Mode: 0
  2800. m_NumColorKeys: 2
  2801. m_NumAlphaKeys: 2
  2802. minGradient:
  2803. serializedVersion: 2
  2804. key0: {r: 1, g: 1, b: 1, a: 1}
  2805. key1: {r: 1, g: 1, b: 1, a: 1}
  2806. key2: {r: 0, g: 0, b: 0, a: 0}
  2807. key3: {r: 0, g: 0, b: 0, a: 0}
  2808. key4: {r: 0, g: 0, b: 0, a: 0}
  2809. key5: {r: 0, g: 0, b: 0, a: 0}
  2810. key6: {r: 0, g: 0, b: 0, a: 0}
  2811. key7: {r: 0, g: 0, b: 0, a: 0}
  2812. ctime0: 0
  2813. ctime1: 65535
  2814. ctime2: 0
  2815. ctime3: 0
  2816. ctime4: 0
  2817. ctime5: 0
  2818. ctime6: 0
  2819. ctime7: 0
  2820. atime0: 0
  2821. atime1: 65535
  2822. atime2: 0
  2823. atime3: 0
  2824. atime4: 0
  2825. atime5: 0
  2826. atime6: 0
  2827. atime7: 0
  2828. m_Mode: 0
  2829. m_NumColorKeys: 2
  2830. m_NumAlphaKeys: 2
  2831. CustomDataModule:
  2832. enabled: 0
  2833. mode0: 0
  2834. vectorComponentCount0: 4
  2835. color0:
  2836. serializedVersion: 2
  2837. minMaxState: 0
  2838. minColor: {r: 1, g: 1, b: 1, a: 1}
  2839. maxColor: {r: 1, g: 1, b: 1, a: 1}
  2840. maxGradient:
  2841. serializedVersion: 2
  2842. key0: {r: 1, g: 1, b: 1, a: 1}
  2843. key1: {r: 1, g: 1, b: 1, a: 1}
  2844. key2: {r: 0, g: 0, b: 0, a: 0}
  2845. key3: {r: 0, g: 0, b: 0, a: 0}
  2846. key4: {r: 0, g: 0, b: 0, a: 0}
  2847. key5: {r: 0, g: 0, b: 0, a: 0}
  2848. key6: {r: 0, g: 0, b: 0, a: 0}
  2849. key7: {r: 0, g: 0, b: 0, a: 0}
  2850. ctime0: 0
  2851. ctime1: 65535
  2852. ctime2: 0
  2853. ctime3: 0
  2854. ctime4: 0
  2855. ctime5: 0
  2856. ctime6: 0
  2857. ctime7: 0
  2858. atime0: 0
  2859. atime1: 65535
  2860. atime2: 0
  2861. atime3: 0
  2862. atime4: 0
  2863. atime5: 0
  2864. atime6: 0
  2865. atime7: 0
  2866. m_Mode: 0
  2867. m_NumColorKeys: 2
  2868. m_NumAlphaKeys: 2
  2869. minGradient:
  2870. serializedVersion: 2
  2871. key0: {r: 1, g: 1, b: 1, a: 1}
  2872. key1: {r: 1, g: 1, b: 1, a: 1}
  2873. key2: {r: 0, g: 0, b: 0, a: 0}
  2874. key3: {r: 0, g: 0, b: 0, a: 0}
  2875. key4: {r: 0, g: 0, b: 0, a: 0}
  2876. key5: {r: 0, g: 0, b: 0, a: 0}
  2877. key6: {r: 0, g: 0, b: 0, a: 0}
  2878. key7: {r: 0, g: 0, b: 0, a: 0}
  2879. ctime0: 0
  2880. ctime1: 65535
  2881. ctime2: 0
  2882. ctime3: 0
  2883. ctime4: 0
  2884. ctime5: 0
  2885. ctime6: 0
  2886. ctime7: 0
  2887. atime0: 0
  2888. atime1: 65535
  2889. atime2: 0
  2890. atime3: 0
  2891. atime4: 0
  2892. atime5: 0
  2893. atime6: 0
  2894. atime7: 0
  2895. m_Mode: 0
  2896. m_NumColorKeys: 2
  2897. m_NumAlphaKeys: 2
  2898. colorLabel0: Color
  2899. vector0_0:
  2900. serializedVersion: 2
  2901. minMaxState: 0
  2902. scalar: 0
  2903. minScalar: 0
  2904. maxCurve:
  2905. serializedVersion: 2
  2906. m_Curve:
  2907. - serializedVersion: 2
  2908. time: 0
  2909. value: 1
  2910. inSlope: 0
  2911. outSlope: 0
  2912. tangentMode: 0
  2913. - serializedVersion: 2
  2914. time: 1
  2915. value: 1
  2916. inSlope: 0
  2917. outSlope: 0
  2918. tangentMode: 0
  2919. m_PreInfinity: 2
  2920. m_PostInfinity: 2
  2921. m_RotationOrder: 4
  2922. minCurve:
  2923. serializedVersion: 2
  2924. m_Curve:
  2925. - serializedVersion: 2
  2926. time: 0
  2927. value: 0
  2928. inSlope: 0
  2929. outSlope: 0
  2930. tangentMode: 0
  2931. - serializedVersion: 2
  2932. time: 1
  2933. value: 0
  2934. inSlope: 0
  2935. outSlope: 0
  2936. tangentMode: 0
  2937. m_PreInfinity: 2
  2938. m_PostInfinity: 2
  2939. m_RotationOrder: 4
  2940. vectorLabel0_0: X
  2941. vector0_1:
  2942. serializedVersion: 2
  2943. minMaxState: 0
  2944. scalar: 0
  2945. minScalar: 0
  2946. maxCurve:
  2947. serializedVersion: 2
  2948. m_Curve:
  2949. - serializedVersion: 2
  2950. time: 0
  2951. value: 1
  2952. inSlope: 0
  2953. outSlope: 0
  2954. tangentMode: 0
  2955. - serializedVersion: 2
  2956. time: 1
  2957. value: 1
  2958. inSlope: 0
  2959. outSlope: 0
  2960. tangentMode: 0
  2961. m_PreInfinity: 2
  2962. m_PostInfinity: 2
  2963. m_RotationOrder: 4
  2964. minCurve:
  2965. serializedVersion: 2
  2966. m_Curve:
  2967. - serializedVersion: 2
  2968. time: 0
  2969. value: 0
  2970. inSlope: 0
  2971. outSlope: 0
  2972. tangentMode: 0
  2973. - serializedVersion: 2
  2974. time: 1
  2975. value: 0
  2976. inSlope: 0
  2977. outSlope: 0
  2978. tangentMode: 0
  2979. m_PreInfinity: 2
  2980. m_PostInfinity: 2
  2981. m_RotationOrder: 4
  2982. vectorLabel0_1: Y
  2983. vector0_2:
  2984. serializedVersion: 2
  2985. minMaxState: 0
  2986. scalar: 0
  2987. minScalar: 0
  2988. maxCurve:
  2989. serializedVersion: 2
  2990. m_Curve:
  2991. - serializedVersion: 2
  2992. time: 0
  2993. value: 1
  2994. inSlope: 0
  2995. outSlope: 0
  2996. tangentMode: 0
  2997. - serializedVersion: 2
  2998. time: 1
  2999. value: 1
  3000. inSlope: 0
  3001. outSlope: 0
  3002. tangentMode: 0
  3003. m_PreInfinity: 2
  3004. m_PostInfinity: 2
  3005. m_RotationOrder: 4
  3006. minCurve:
  3007. serializedVersion: 2
  3008. m_Curve:
  3009. - serializedVersion: 2
  3010. time: 0
  3011. value: 0
  3012. inSlope: 0
  3013. outSlope: 0
  3014. tangentMode: 0
  3015. - serializedVersion: 2
  3016. time: 1
  3017. value: 0
  3018. inSlope: 0
  3019. outSlope: 0
  3020. tangentMode: 0
  3021. m_PreInfinity: 2
  3022. m_PostInfinity: 2
  3023. m_RotationOrder: 4
  3024. vectorLabel0_2: Z
  3025. vector0_3:
  3026. serializedVersion: 2
  3027. minMaxState: 0
  3028. scalar: 0
  3029. minScalar: 0
  3030. maxCurve:
  3031. serializedVersion: 2
  3032. m_Curve:
  3033. - serializedVersion: 2
  3034. time: 0
  3035. value: 1
  3036. inSlope: 0
  3037. outSlope: 0
  3038. tangentMode: 0
  3039. - serializedVersion: 2
  3040. time: 1
  3041. value: 1
  3042. inSlope: 0
  3043. outSlope: 0
  3044. tangentMode: 0
  3045. m_PreInfinity: 2
  3046. m_PostInfinity: 2
  3047. m_RotationOrder: 4
  3048. minCurve:
  3049. serializedVersion: 2
  3050. m_Curve:
  3051. - serializedVersion: 2
  3052. time: 0
  3053. value: 0
  3054. inSlope: 0
  3055. outSlope: 0
  3056. tangentMode: 0
  3057. - serializedVersion: 2
  3058. time: 1
  3059. value: 0
  3060. inSlope: 0
  3061. outSlope: 0
  3062. tangentMode: 0
  3063. m_PreInfinity: 2
  3064. m_PostInfinity: 2
  3065. m_RotationOrder: 4
  3066. vectorLabel0_3: W
  3067. mode1: 0
  3068. vectorComponentCount1: 4
  3069. color1:
  3070. serializedVersion: 2
  3071. minMaxState: 0
  3072. minColor: {r: 1, g: 1, b: 1, a: 1}
  3073. maxColor: {r: 1, g: 1, b: 1, a: 1}
  3074. maxGradient:
  3075. serializedVersion: 2
  3076. key0: {r: 1, g: 1, b: 1, a: 1}
  3077. key1: {r: 1, g: 1, b: 1, a: 1}
  3078. key2: {r: 0, g: 0, b: 0, a: 0}
  3079. key3: {r: 0, g: 0, b: 0, a: 0}
  3080. key4: {r: 0, g: 0, b: 0, a: 0}
  3081. key5: {r: 0, g: 0, b: 0, a: 0}
  3082. key6: {r: 0, g: 0, b: 0, a: 0}
  3083. key7: {r: 0, g: 0, b: 0, a: 0}
  3084. ctime0: 0
  3085. ctime1: 65535
  3086. ctime2: 0
  3087. ctime3: 0
  3088. ctime4: 0
  3089. ctime5: 0
  3090. ctime6: 0
  3091. ctime7: 0
  3092. atime0: 0
  3093. atime1: 65535
  3094. atime2: 0
  3095. atime3: 0
  3096. atime4: 0
  3097. atime5: 0
  3098. atime6: 0
  3099. atime7: 0
  3100. m_Mode: 0
  3101. m_NumColorKeys: 2
  3102. m_NumAlphaKeys: 2
  3103. minGradient:
  3104. serializedVersion: 2
  3105. key0: {r: 1, g: 1, b: 1, a: 1}
  3106. key1: {r: 1, g: 1, b: 1, a: 1}
  3107. key2: {r: 0, g: 0, b: 0, a: 0}
  3108. key3: {r: 0, g: 0, b: 0, a: 0}
  3109. key4: {r: 0, g: 0, b: 0, a: 0}
  3110. key5: {r: 0, g: 0, b: 0, a: 0}
  3111. key6: {r: 0, g: 0, b: 0, a: 0}
  3112. key7: {r: 0, g: 0, b: 0, a: 0}
  3113. ctime0: 0
  3114. ctime1: 65535
  3115. ctime2: 0
  3116. ctime3: 0
  3117. ctime4: 0
  3118. ctime5: 0
  3119. ctime6: 0
  3120. ctime7: 0
  3121. atime0: 0
  3122. atime1: 65535
  3123. atime2: 0
  3124. atime3: 0
  3125. atime4: 0
  3126. atime5: 0
  3127. atime6: 0
  3128. atime7: 0
  3129. m_Mode: 0
  3130. m_NumColorKeys: 2
  3131. m_NumAlphaKeys: 2
  3132. colorLabel1: Color
  3133. vector1_0:
  3134. serializedVersion: 2
  3135. minMaxState: 0
  3136. scalar: 0
  3137. minScalar: 0
  3138. maxCurve:
  3139. serializedVersion: 2
  3140. m_Curve:
  3141. - serializedVersion: 2
  3142. time: 0
  3143. value: 1
  3144. inSlope: 0
  3145. outSlope: 0
  3146. tangentMode: 0
  3147. - serializedVersion: 2
  3148. time: 1
  3149. value: 1
  3150. inSlope: 0
  3151. outSlope: 0
  3152. tangentMode: 0
  3153. m_PreInfinity: 2
  3154. m_PostInfinity: 2
  3155. m_RotationOrder: 4
  3156. minCurve:
  3157. serializedVersion: 2
  3158. m_Curve:
  3159. - serializedVersion: 2
  3160. time: 0
  3161. value: 0
  3162. inSlope: 0
  3163. outSlope: 0
  3164. tangentMode: 0
  3165. - serializedVersion: 2
  3166. time: 1
  3167. value: 0
  3168. inSlope: 0
  3169. outSlope: 0
  3170. tangentMode: 0
  3171. m_PreInfinity: 2
  3172. m_PostInfinity: 2
  3173. m_RotationOrder: 4
  3174. vectorLabel1_0: X
  3175. vector1_1:
  3176. serializedVersion: 2
  3177. minMaxState: 0
  3178. scalar: 0
  3179. minScalar: 0
  3180. maxCurve:
  3181. serializedVersion: 2
  3182. m_Curve:
  3183. - serializedVersion: 2
  3184. time: 0
  3185. value: 1
  3186. inSlope: 0
  3187. outSlope: 0
  3188. tangentMode: 0
  3189. - serializedVersion: 2
  3190. time: 1
  3191. value: 1
  3192. inSlope: 0
  3193. outSlope: 0
  3194. tangentMode: 0
  3195. m_PreInfinity: 2
  3196. m_PostInfinity: 2
  3197. m_RotationOrder: 4
  3198. minCurve:
  3199. serializedVersion: 2
  3200. m_Curve:
  3201. - serializedVersion: 2
  3202. time: 0
  3203. value: 0
  3204. inSlope: 0
  3205. outSlope: 0
  3206. tangentMode: 0
  3207. - serializedVersion: 2
  3208. time: 1
  3209. value: 0
  3210. inSlope: 0
  3211. outSlope: 0
  3212. tangentMode: 0
  3213. m_PreInfinity: 2
  3214. m_PostInfinity: 2
  3215. m_RotationOrder: 4
  3216. vectorLabel1_1: Y
  3217. vector1_2:
  3218. serializedVersion: 2
  3219. minMaxState: 0
  3220. scalar: 0
  3221. minScalar: 0
  3222. maxCurve:
  3223. serializedVersion: 2
  3224. m_Curve:
  3225. - serializedVersion: 2
  3226. time: 0
  3227. value: 1
  3228. inSlope: 0
  3229. outSlope: 0
  3230. tangentMode: 0
  3231. - serializedVersion: 2
  3232. time: 1
  3233. value: 1
  3234. inSlope: 0
  3235. outSlope: 0
  3236. tangentMode: 0
  3237. m_PreInfinity: 2
  3238. m_PostInfinity: 2
  3239. m_RotationOrder: 4
  3240. minCurve:
  3241. serializedVersion: 2
  3242. m_Curve:
  3243. - serializedVersion: 2
  3244. time: 0
  3245. value: 0
  3246. inSlope: 0
  3247. outSlope: 0
  3248. tangentMode: 0
  3249. - serializedVersion: 2
  3250. time: 1
  3251. value: 0
  3252. inSlope: 0
  3253. outSlope: 0
  3254. tangentMode: 0
  3255. m_PreInfinity: 2
  3256. m_PostInfinity: 2
  3257. m_RotationOrder: 4
  3258. vectorLabel1_2: Z
  3259. vector1_3:
  3260. serializedVersion: 2
  3261. minMaxState: 0
  3262. scalar: 0
  3263. minScalar: 0
  3264. maxCurve:
  3265. serializedVersion: 2
  3266. m_Curve:
  3267. - serializedVersion: 2
  3268. time: 0
  3269. value: 1
  3270. inSlope: 0
  3271. outSlope: 0
  3272. tangentMode: 0
  3273. - serializedVersion: 2
  3274. time: 1
  3275. value: 1
  3276. inSlope: 0
  3277. outSlope: 0
  3278. tangentMode: 0
  3279. m_PreInfinity: 2
  3280. m_PostInfinity: 2
  3281. m_RotationOrder: 4
  3282. minCurve:
  3283. serializedVersion: 2
  3284. m_Curve:
  3285. - serializedVersion: 2
  3286. time: 0
  3287. value: 0
  3288. inSlope: 0
  3289. outSlope: 0
  3290. tangentMode: 0
  3291. - serializedVersion: 2
  3292. time: 1
  3293. value: 0
  3294. inSlope: 0
  3295. outSlope: 0
  3296. tangentMode: 0
  3297. m_PreInfinity: 2
  3298. m_PostInfinity: 2
  3299. m_RotationOrder: 4
  3300. vectorLabel1_3: W
  3301. --- !u!199 &199650865808056460
  3302. ParticleSystemRenderer:
  3303. serializedVersion: 4
  3304. m_ObjectHideFlags: 1
  3305. m_PrefabParentObject: {fileID: 0}
  3306. m_PrefabInternal: {fileID: 100100000}
  3307. m_GameObject: {fileID: 1590287472412400}
  3308. m_Enabled: 1
  3309. m_CastShadows: 0
  3310. m_ReceiveShadows: 0
  3311. m_DynamicOccludee: 1
  3312. m_MotionVectors: 1
  3313. m_LightProbeUsage: 0
  3314. m_ReflectionProbeUsage: 1
  3315. m_Materials:
  3316. - {fileID: 2100000, guid: f55d44db4612b10438c11e63bc1ea9ca, type: 2}
  3317. - {fileID: 0}
  3318. m_StaticBatchInfo:
  3319. firstSubMesh: 0
  3320. subMeshCount: 0
  3321. m_StaticBatchRoot: {fileID: 0}
  3322. m_ProbeAnchor: {fileID: 0}
  3323. m_LightProbeVolumeOverride: {fileID: 0}
  3324. m_ScaleInLightmap: 1
  3325. m_PreserveUVs: 0
  3326. m_IgnoreNormalsForChartDetection: 0
  3327. m_ImportantGI: 0
  3328. m_StitchLightmapSeams: 0
  3329. m_SelectedEditorRenderState: 0
  3330. m_MinimumChartSize: 4
  3331. m_AutoUVMaxDistance: 0.5
  3332. m_AutoUVMaxAngle: 89
  3333. m_LightmapParameters: {fileID: 0}
  3334. m_SortingLayerID: 0
  3335. m_SortingLayer: 0
  3336. m_SortingOrder: 0
  3337. m_RenderMode: 0
  3338. m_SortMode: 0
  3339. m_MinParticleSize: 0
  3340. m_MaxParticleSize: 0.8
  3341. m_CameraVelocityScale: 0
  3342. m_VelocityScale: 0
  3343. m_LengthScale: 2
  3344. m_SortingFudge: 0
  3345. m_NormalDirection: 1
  3346. m_RenderAlignment: 0
  3347. m_Pivot: {x: 0, y: 0, z: 0}
  3348. m_UseCustomVertexStreams: 0
  3349. m_VertexStreams: 0001030405
  3350. m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0}
  3351. m_Mesh1: {fileID: 0}
  3352. m_Mesh2: {fileID: 0}
  3353. m_Mesh3: {fileID: 0}
  3354. m_MaskInteraction: 0