FX_Fog_Small_01.prefab 74 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273
  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: 1699914565062994}
  13. m_IsPrefabParent: 1
  14. --- !u!1 &1699914565062994
  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: 4776194311396480}
  22. - component: {fileID: 198291467559758650}
  23. - component: {fileID: 199326485248644184}
  24. m_Layer: 0
  25. m_Name: FX_Fog_Small_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 &4776194311396480
  32. Transform:
  33. m_ObjectHideFlags: 1
  34. m_PrefabParentObject: {fileID: 0}
  35. m_PrefabInternal: {fileID: 100100000}
  36. m_GameObject: {fileID: 1699914565062994}
  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 &198291467559758650
  45. ParticleSystem:
  46. m_ObjectHideFlags: 1
  47. m_PrefabParentObject: {fileID: 0}
  48. m_PrefabInternal: {fileID: 100100000}
  49. m_GameObject: {fileID: 1699914565062994}
  50. serializedVersion: 5
  51. lengthInSec: 1
  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: 1528441844
  105. InitialModule:
  106. serializedVersion: 3
  107. enabled: 1
  108. startLifetime:
  109. serializedVersion: 2
  110. minMaxState: 3
  111. scalar: 14
  112. minScalar: 10
  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.71428573
  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.1
  141. minScalar: 0.05
  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.5
  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: 50
  233. minScalar: 20
  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.5
  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: 1
  262. minScalar: 0
  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
  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: 1
  291. minScalar: 0
  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
  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: 500
  405. size3D: 0
  406. rotation3D: 0
  407. gravityModifier:
  408. serializedVersion: 2
  409. minMaxState: 3
  410. scalar: 0
  411. minScalar: 0
  412. maxCurve:
  413. serializedVersion: 2
  414. m_Curve:
  415. - serializedVersion: 2
  416. time: 0
  417. value: 0
  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: 0
  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: 5
  440. angle: 78.9
  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: 0, y: 0, z: 0}
  447. m_Scale: {x: 10, y: 2, z: 10}
  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.01
  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: 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: 8
  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: 1
  688. minScalar: 1
  689. maxCurve:
  690. serializedVersion: 2
  691. m_Curve:
  692. - serializedVersion: 2
  693. time: 0
  694. value: 0.59752655
  695. inSlope: 0
  696. outSlope: 0
  697. tangentMode: 0
  698. - serializedVersion: 2
  699. time: 0.46990964
  700. value: 0.8222327
  701. inSlope: 0.016093254
  702. outSlope: 0.016093254
  703. tangentMode: 0
  704. - serializedVersion: 2
  705. time: 1
  706. value: 0.56188595
  707. inSlope: -0.51447386
  708. outSlope: -0.51447386
  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: 0.6981317
  878. minScalar: -0.6981317
  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.3333333
  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: 0.75686276, g: 0.75686276, b: 0.75686276, a: 0}
  914. key1: {r: 0.75686276, g: 0.75686276, b: 0.75686276, a: 0.023529412}
  915. key2: {r: 0, g: 0, b: 0, a: 0}
  916. key3: {r: 0, 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: 0
  924. ctime3: 0
  925. ctime4: 0
  926. ctime5: 0
  927. ctime6: 0
  928. ctime7: 0
  929. atime0: 0
  930. atime1: 12639
  931. atime2: 65479
  932. atime3: 65479
  933. atime4: 0
  934. atime5: 0
  935. atime6: 0
  936. atime7: 0
  937. m_Mode: 0
  938. m_NumColorKeys: 2
  939. m_NumAlphaKeys: 3
  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: 4
  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: 4
  1096. y:
  1097. serializedVersion: 2
  1098. minMaxState: 3
  1099. scalar: 1
  1100. minScalar: -1
  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: 4
  1113. minCurve:
  1114. serializedVersion: 2
  1115. m_Curve:
  1116. - serializedVersion: 2
  1117. time: 0
  1118. value: -1
  1119. inSlope: 0
  1120. outSlope: 0
  1121. tangentMode: 0
  1122. m_PreInfinity: 2
  1123. m_PostInfinity: 2
  1124. m_RotationOrder: 4
  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: 4
  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: 4
  1154. inWorldSpace: 1
  1155. InheritVelocityModule:
  1156. enabled: 0
  1157. m_Mode: 0
  1158. m_Curve:
  1159. serializedVersion: 2
  1160. minMaxState: 0
  1161. scalar: 2
  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: 0
  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: 3
  1457. scalar: 0.1
  1458. minScalar: 0.4
  1459. maxCurve:
  1460. serializedVersion: 2
  1461. m_Curve:
  1462. - serializedVersion: 2
  1463. time: 0
  1464. value: 0.25
  1465. inSlope: 0
  1466. outSlope: 0
  1467. tangentMode: 0
  1468. m_PreInfinity: 2
  1469. m_PostInfinity: 2
  1470. m_RotationOrder: 4
  1471. minCurve:
  1472. serializedVersion: 2
  1473. m_Curve:
  1474. - serializedVersion: 2
  1475. time: 0
  1476. value: 1
  1477. inSlope: 0
  1478. outSlope: 0
  1479. tangentMode: 0
  1480. m_PreInfinity: 2
  1481. m_PostInfinity: 2
  1482. m_RotationOrder: 4
  1483. separateAxis: 0
  1484. inWorldSpace: 0
  1485. multiplyDragByParticleSize: 1
  1486. multiplyDragByParticleVelocity: 1
  1487. dampen: 1
  1488. drag:
  1489. serializedVersion: 2
  1490. minMaxState: 0
  1491. scalar: 0
  1492. minScalar: 0
  1493. maxCurve:
  1494. serializedVersion: 2
  1495. m_Curve:
  1496. - serializedVersion: 2
  1497. time: 0
  1498. value: 0
  1499. inSlope: 0
  1500. outSlope: 0
  1501. tangentMode: 0
  1502. - serializedVersion: 2
  1503. time: 1
  1504. value: 0
  1505. inSlope: 0
  1506. outSlope: 0
  1507. tangentMode: 0
  1508. m_PreInfinity: 2
  1509. m_PostInfinity: 2
  1510. m_RotationOrder: 4
  1511. minCurve:
  1512. serializedVersion: 2
  1513. m_Curve:
  1514. - serializedVersion: 2
  1515. time: 0
  1516. value: 0
  1517. inSlope: 0
  1518. outSlope: 0
  1519. tangentMode: 0
  1520. - serializedVersion: 2
  1521. time: 1
  1522. value: 0
  1523. inSlope: 0
  1524. outSlope: 0
  1525. tangentMode: 0
  1526. m_PreInfinity: 2
  1527. m_PostInfinity: 2
  1528. m_RotationOrder: 4
  1529. NoiseModule:
  1530. enabled: 1
  1531. strength:
  1532. serializedVersion: 2
  1533. minMaxState: 0
  1534. scalar: 0.3
  1535. minScalar: 1
  1536. maxCurve:
  1537. serializedVersion: 2
  1538. m_Curve:
  1539. - serializedVersion: 2
  1540. time: 0
  1541. value: 1
  1542. inSlope: 0
  1543. outSlope: 0
  1544. tangentMode: 0
  1545. - serializedVersion: 2
  1546. time: 1
  1547. value: 1
  1548. inSlope: 0
  1549. outSlope: 0
  1550. tangentMode: 0
  1551. m_PreInfinity: 2
  1552. m_PostInfinity: 2
  1553. m_RotationOrder: 4
  1554. minCurve:
  1555. serializedVersion: 2
  1556. m_Curve:
  1557. - serializedVersion: 2
  1558. time: 0
  1559. value: 0
  1560. inSlope: 0
  1561. outSlope: 0
  1562. tangentMode: 0
  1563. - serializedVersion: 2
  1564. time: 1
  1565. value: 0
  1566. inSlope: 0
  1567. outSlope: 0
  1568. tangentMode: 0
  1569. m_PreInfinity: 2
  1570. m_PostInfinity: 2
  1571. m_RotationOrder: 4
  1572. strengthY:
  1573. serializedVersion: 2
  1574. minMaxState: 0
  1575. scalar: 0.1
  1576. minScalar: 1
  1577. maxCurve:
  1578. serializedVersion: 2
  1579. m_Curve:
  1580. - serializedVersion: 2
  1581. time: 0
  1582. value: 1
  1583. inSlope: 0
  1584. outSlope: 0
  1585. tangentMode: 0
  1586. - serializedVersion: 2
  1587. time: 1
  1588. value: 1
  1589. inSlope: 0
  1590. outSlope: 0
  1591. tangentMode: 0
  1592. m_PreInfinity: 2
  1593. m_PostInfinity: 2
  1594. m_RotationOrder: 4
  1595. minCurve:
  1596. serializedVersion: 2
  1597. m_Curve:
  1598. - serializedVersion: 2
  1599. time: 0
  1600. value: 0
  1601. inSlope: 0
  1602. outSlope: 0
  1603. tangentMode: 0
  1604. - serializedVersion: 2
  1605. time: 1
  1606. value: 0
  1607. inSlope: 0
  1608. outSlope: 0
  1609. tangentMode: 0
  1610. m_PreInfinity: 2
  1611. m_PostInfinity: 2
  1612. m_RotationOrder: 4
  1613. strengthZ:
  1614. serializedVersion: 2
  1615. minMaxState: 0
  1616. scalar: 0.3
  1617. minScalar: 1
  1618. maxCurve:
  1619. serializedVersion: 2
  1620. m_Curve:
  1621. - serializedVersion: 2
  1622. time: 0
  1623. value: 1
  1624. inSlope: 0
  1625. outSlope: 0
  1626. tangentMode: 0
  1627. - serializedVersion: 2
  1628. time: 1
  1629. value: 1
  1630. inSlope: 0
  1631. outSlope: 0
  1632. tangentMode: 0
  1633. m_PreInfinity: 2
  1634. m_PostInfinity: 2
  1635. m_RotationOrder: 4
  1636. minCurve:
  1637. serializedVersion: 2
  1638. m_Curve:
  1639. - serializedVersion: 2
  1640. time: 0
  1641. value: 0
  1642. inSlope: 0
  1643. outSlope: 0
  1644. tangentMode: 0
  1645. - serializedVersion: 2
  1646. time: 1
  1647. value: 0
  1648. inSlope: 0
  1649. outSlope: 0
  1650. tangentMode: 0
  1651. m_PreInfinity: 2
  1652. m_PostInfinity: 2
  1653. m_RotationOrder: 4
  1654. separateAxes: 1
  1655. frequency: 1
  1656. damping: 1
  1657. octaves: 1
  1658. octaveMultiplier: 0.5
  1659. octaveScale: 2
  1660. quality: 2
  1661. scrollSpeed:
  1662. serializedVersion: 2
  1663. minMaxState: 0
  1664. scalar: 0.2
  1665. minScalar: 0
  1666. maxCurve:
  1667. serializedVersion: 2
  1668. m_Curve:
  1669. - serializedVersion: 2
  1670. time: 0
  1671. value: 1
  1672. inSlope: 0
  1673. outSlope: 0
  1674. tangentMode: 0
  1675. - serializedVersion: 2
  1676. time: 1
  1677. value: 1
  1678. inSlope: 0
  1679. outSlope: 0
  1680. tangentMode: 0
  1681. m_PreInfinity: 2
  1682. m_PostInfinity: 2
  1683. m_RotationOrder: 4
  1684. minCurve:
  1685. serializedVersion: 2
  1686. m_Curve:
  1687. - serializedVersion: 2
  1688. time: 0
  1689. value: 0
  1690. inSlope: 0
  1691. outSlope: 0
  1692. tangentMode: 0
  1693. - serializedVersion: 2
  1694. time: 1
  1695. value: 0
  1696. inSlope: 0
  1697. outSlope: 0
  1698. tangentMode: 0
  1699. m_PreInfinity: 2
  1700. m_PostInfinity: 2
  1701. m_RotationOrder: 4
  1702. remap:
  1703. serializedVersion: 2
  1704. minMaxState: 1
  1705. scalar: 1
  1706. minScalar: 1
  1707. maxCurve:
  1708. serializedVersion: 2
  1709. m_Curve:
  1710. - serializedVersion: 2
  1711. time: 0
  1712. value: -1
  1713. inSlope: 0
  1714. outSlope: 2
  1715. tangentMode: 0
  1716. - serializedVersion: 2
  1717. time: 1
  1718. value: 1
  1719. inSlope: 2
  1720. outSlope: 0
  1721. tangentMode: 0
  1722. m_PreInfinity: 2
  1723. m_PostInfinity: 2
  1724. m_RotationOrder: 4
  1725. minCurve:
  1726. serializedVersion: 2
  1727. m_Curve:
  1728. - serializedVersion: 2
  1729. time: 0
  1730. value: 0
  1731. inSlope: 0
  1732. outSlope: 0
  1733. tangentMode: 0
  1734. - serializedVersion: 2
  1735. time: 1
  1736. value: 0
  1737. inSlope: 0
  1738. outSlope: 0
  1739. tangentMode: 0
  1740. m_PreInfinity: 2
  1741. m_PostInfinity: 2
  1742. m_RotationOrder: 4
  1743. remapY:
  1744. serializedVersion: 2
  1745. minMaxState: 1
  1746. scalar: 1
  1747. minScalar: 1
  1748. maxCurve:
  1749. serializedVersion: 2
  1750. m_Curve:
  1751. - serializedVersion: 2
  1752. time: 0
  1753. value: -1
  1754. inSlope: 0
  1755. outSlope: 2
  1756. tangentMode: 0
  1757. - serializedVersion: 2
  1758. time: 1
  1759. value: 1
  1760. inSlope: 2
  1761. outSlope: 0
  1762. tangentMode: 0
  1763. m_PreInfinity: 2
  1764. m_PostInfinity: 2
  1765. m_RotationOrder: 4
  1766. minCurve:
  1767. serializedVersion: 2
  1768. m_Curve:
  1769. - serializedVersion: 2
  1770. time: 0
  1771. value: 0
  1772. inSlope: 0
  1773. outSlope: 0
  1774. tangentMode: 0
  1775. - serializedVersion: 2
  1776. time: 1
  1777. value: 0
  1778. inSlope: 0
  1779. outSlope: 0
  1780. tangentMode: 0
  1781. m_PreInfinity: 2
  1782. m_PostInfinity: 2
  1783. m_RotationOrder: 4
  1784. remapZ:
  1785. serializedVersion: 2
  1786. minMaxState: 1
  1787. scalar: 1
  1788. minScalar: 1
  1789. maxCurve:
  1790. serializedVersion: 2
  1791. m_Curve:
  1792. - serializedVersion: 2
  1793. time: 0
  1794. value: -1
  1795. inSlope: 0
  1796. outSlope: 2
  1797. tangentMode: 0
  1798. - serializedVersion: 2
  1799. time: 1
  1800. value: 1
  1801. inSlope: 2
  1802. outSlope: 0
  1803. tangentMode: 0
  1804. m_PreInfinity: 2
  1805. m_PostInfinity: 2
  1806. m_RotationOrder: 4
  1807. minCurve:
  1808. serializedVersion: 2
  1809. m_Curve:
  1810. - serializedVersion: 2
  1811. time: 0
  1812. value: 0
  1813. inSlope: 0
  1814. outSlope: 0
  1815. tangentMode: 0
  1816. - serializedVersion: 2
  1817. time: 1
  1818. value: 0
  1819. inSlope: 0
  1820. outSlope: 0
  1821. tangentMode: 0
  1822. m_PreInfinity: 2
  1823. m_PostInfinity: 2
  1824. m_RotationOrder: 4
  1825. remapEnabled: 0
  1826. positionAmount:
  1827. serializedVersion: 2
  1828. minMaxState: 0
  1829. scalar: 1
  1830. minScalar: 1
  1831. maxCurve:
  1832. serializedVersion: 2
  1833. m_Curve:
  1834. - serializedVersion: 2
  1835. time: 0
  1836. value: 1
  1837. inSlope: 0
  1838. outSlope: 0
  1839. tangentMode: 0
  1840. - serializedVersion: 2
  1841. time: 1
  1842. value: 1
  1843. inSlope: 0
  1844. outSlope: 0
  1845. tangentMode: 0
  1846. m_PreInfinity: 2
  1847. m_PostInfinity: 2
  1848. m_RotationOrder: 4
  1849. minCurve:
  1850. serializedVersion: 2
  1851. m_Curve:
  1852. - serializedVersion: 2
  1853. time: 0
  1854. value: 1
  1855. inSlope: 0
  1856. outSlope: 0
  1857. tangentMode: 0
  1858. - serializedVersion: 2
  1859. time: 1
  1860. value: 1
  1861. inSlope: 0
  1862. outSlope: 0
  1863. tangentMode: 0
  1864. m_PreInfinity: 2
  1865. m_PostInfinity: 2
  1866. m_RotationOrder: 4
  1867. rotationAmount:
  1868. serializedVersion: 2
  1869. minMaxState: 0
  1870. scalar: 0
  1871. minScalar: 0
  1872. maxCurve:
  1873. serializedVersion: 2
  1874. m_Curve:
  1875. - serializedVersion: 2
  1876. time: 0
  1877. value: 0
  1878. inSlope: 0
  1879. outSlope: 0
  1880. tangentMode: 0
  1881. - serializedVersion: 2
  1882. time: 1
  1883. value: 0
  1884. inSlope: 0
  1885. outSlope: 0
  1886. tangentMode: 0
  1887. m_PreInfinity: 2
  1888. m_PostInfinity: 2
  1889. m_RotationOrder: 4
  1890. minCurve:
  1891. serializedVersion: 2
  1892. m_Curve:
  1893. - serializedVersion: 2
  1894. time: 0
  1895. value: 0
  1896. inSlope: 0
  1897. outSlope: 0
  1898. tangentMode: 0
  1899. - serializedVersion: 2
  1900. time: 1
  1901. value: 0
  1902. inSlope: 0
  1903. outSlope: 0
  1904. tangentMode: 0
  1905. m_PreInfinity: 2
  1906. m_PostInfinity: 2
  1907. m_RotationOrder: 4
  1908. sizeAmount:
  1909. serializedVersion: 2
  1910. minMaxState: 0
  1911. scalar: 0
  1912. minScalar: 0
  1913. maxCurve:
  1914. serializedVersion: 2
  1915. m_Curve:
  1916. - serializedVersion: 2
  1917. time: 0
  1918. value: 0
  1919. inSlope: 0
  1920. outSlope: 0
  1921. tangentMode: 0
  1922. - serializedVersion: 2
  1923. time: 1
  1924. value: 0
  1925. inSlope: 0
  1926. outSlope: 0
  1927. tangentMode: 0
  1928. m_PreInfinity: 2
  1929. m_PostInfinity: 2
  1930. m_RotationOrder: 4
  1931. minCurve:
  1932. serializedVersion: 2
  1933. m_Curve:
  1934. - serializedVersion: 2
  1935. time: 0
  1936. value: 0
  1937. inSlope: 0
  1938. outSlope: 0
  1939. tangentMode: 0
  1940. - serializedVersion: 2
  1941. time: 1
  1942. value: 0
  1943. inSlope: 0
  1944. outSlope: 0
  1945. tangentMode: 0
  1946. m_PreInfinity: 2
  1947. m_PostInfinity: 2
  1948. m_RotationOrder: 4
  1949. SizeBySpeedModule:
  1950. enabled: 0
  1951. curve:
  1952. serializedVersion: 2
  1953. minMaxState: 1
  1954. scalar: 1
  1955. minScalar: 1
  1956. maxCurve:
  1957. serializedVersion: 2
  1958. m_Curve:
  1959. - serializedVersion: 2
  1960. time: 0
  1961. value: 1
  1962. inSlope: 0
  1963. outSlope: 0
  1964. tangentMode: 0
  1965. - serializedVersion: 2
  1966. time: 1
  1967. value: 1
  1968. inSlope: 0
  1969. outSlope: 0
  1970. tangentMode: 0
  1971. m_PreInfinity: 2
  1972. m_PostInfinity: 2
  1973. m_RotationOrder: 4
  1974. minCurve:
  1975. serializedVersion: 2
  1976. m_Curve:
  1977. - serializedVersion: 2
  1978. time: 0
  1979. value: 0
  1980. inSlope: 0
  1981. outSlope: 0
  1982. tangentMode: 0
  1983. - serializedVersion: 2
  1984. time: 1
  1985. value: 0
  1986. inSlope: 0
  1987. outSlope: 0
  1988. tangentMode: 0
  1989. m_PreInfinity: 2
  1990. m_PostInfinity: 2
  1991. m_RotationOrder: 4
  1992. y:
  1993. serializedVersion: 2
  1994. minMaxState: 1
  1995. scalar: 1
  1996. minScalar: 1
  1997. maxCurve:
  1998. serializedVersion: 2
  1999. m_Curve:
  2000. - serializedVersion: 2
  2001. time: 0
  2002. value: 1
  2003. inSlope: 0
  2004. outSlope: 0
  2005. tangentMode: 0
  2006. - serializedVersion: 2
  2007. time: 1
  2008. value: 1
  2009. inSlope: 0
  2010. outSlope: 0
  2011. tangentMode: 0
  2012. m_PreInfinity: 2
  2013. m_PostInfinity: 2
  2014. m_RotationOrder: 4
  2015. minCurve:
  2016. serializedVersion: 2
  2017. m_Curve:
  2018. - serializedVersion: 2
  2019. time: 0
  2020. value: 0
  2021. inSlope: 0
  2022. outSlope: 0
  2023. tangentMode: 0
  2024. - serializedVersion: 2
  2025. time: 1
  2026. value: 0
  2027. inSlope: 0
  2028. outSlope: 0
  2029. tangentMode: 0
  2030. m_PreInfinity: 2
  2031. m_PostInfinity: 2
  2032. m_RotationOrder: 4
  2033. z:
  2034. serializedVersion: 2
  2035. minMaxState: 1
  2036. scalar: 1
  2037. minScalar: 1
  2038. maxCurve:
  2039. serializedVersion: 2
  2040. m_Curve:
  2041. - serializedVersion: 2
  2042. time: 0
  2043. value: 1
  2044. inSlope: 0
  2045. outSlope: 0
  2046. tangentMode: 0
  2047. - serializedVersion: 2
  2048. time: 1
  2049. value: 1
  2050. inSlope: 0
  2051. outSlope: 0
  2052. tangentMode: 0
  2053. m_PreInfinity: 2
  2054. m_PostInfinity: 2
  2055. m_RotationOrder: 4
  2056. minCurve:
  2057. serializedVersion: 2
  2058. m_Curve:
  2059. - serializedVersion: 2
  2060. time: 0
  2061. value: 0
  2062. inSlope: 0
  2063. outSlope: 0
  2064. tangentMode: 0
  2065. - serializedVersion: 2
  2066. time: 1
  2067. value: 0
  2068. inSlope: 0
  2069. outSlope: 0
  2070. tangentMode: 0
  2071. m_PreInfinity: 2
  2072. m_PostInfinity: 2
  2073. m_RotationOrder: 4
  2074. range: {x: 0, y: 1}
  2075. separateAxes: 0
  2076. RotationBySpeedModule:
  2077. enabled: 0
  2078. x:
  2079. serializedVersion: 2
  2080. minMaxState: 0
  2081. scalar: 0
  2082. minScalar: 0
  2083. maxCurve:
  2084. serializedVersion: 2
  2085. m_Curve:
  2086. - serializedVersion: 2
  2087. time: 0
  2088. value: 1
  2089. inSlope: 0
  2090. outSlope: 0
  2091. tangentMode: 0
  2092. - serializedVersion: 2
  2093. time: 1
  2094. value: 1
  2095. inSlope: 0
  2096. outSlope: 0
  2097. tangentMode: 0
  2098. m_PreInfinity: 2
  2099. m_PostInfinity: 2
  2100. m_RotationOrder: 4
  2101. minCurve:
  2102. serializedVersion: 2
  2103. m_Curve:
  2104. - serializedVersion: 2
  2105. time: 0
  2106. value: 0
  2107. inSlope: 0
  2108. outSlope: 0
  2109. tangentMode: 0
  2110. - serializedVersion: 2
  2111. time: 1
  2112. value: 0
  2113. inSlope: 0
  2114. outSlope: 0
  2115. tangentMode: 0
  2116. m_PreInfinity: 2
  2117. m_PostInfinity: 2
  2118. m_RotationOrder: 4
  2119. y:
  2120. serializedVersion: 2
  2121. minMaxState: 0
  2122. scalar: 0
  2123. minScalar: 0
  2124. maxCurve:
  2125. serializedVersion: 2
  2126. m_Curve:
  2127. - serializedVersion: 2
  2128. time: 0
  2129. value: 1
  2130. inSlope: 0
  2131. outSlope: 0
  2132. tangentMode: 0
  2133. - serializedVersion: 2
  2134. time: 1
  2135. value: 1
  2136. inSlope: 0
  2137. outSlope: 0
  2138. tangentMode: 0
  2139. m_PreInfinity: 2
  2140. m_PostInfinity: 2
  2141. m_RotationOrder: 4
  2142. minCurve:
  2143. serializedVersion: 2
  2144. m_Curve:
  2145. - serializedVersion: 2
  2146. time: 0
  2147. value: 0
  2148. inSlope: 0
  2149. outSlope: 0
  2150. tangentMode: 0
  2151. - serializedVersion: 2
  2152. time: 1
  2153. value: 0
  2154. inSlope: 0
  2155. outSlope: 0
  2156. tangentMode: 0
  2157. m_PreInfinity: 2
  2158. m_PostInfinity: 2
  2159. m_RotationOrder: 4
  2160. curve:
  2161. serializedVersion: 2
  2162. minMaxState: 0
  2163. scalar: 0.7853982
  2164. minScalar: 0.7853982
  2165. maxCurve:
  2166. serializedVersion: 2
  2167. m_Curve:
  2168. - serializedVersion: 2
  2169. time: 0
  2170. value: 1
  2171. inSlope: 0
  2172. outSlope: 0
  2173. tangentMode: 0
  2174. - serializedVersion: 2
  2175. time: 1
  2176. value: 1
  2177. inSlope: 0
  2178. outSlope: 0
  2179. tangentMode: 0
  2180. m_PreInfinity: 2
  2181. m_PostInfinity: 2
  2182. m_RotationOrder: 4
  2183. minCurve:
  2184. serializedVersion: 2
  2185. m_Curve:
  2186. - serializedVersion: 2
  2187. time: 0
  2188. value: 0
  2189. inSlope: 0
  2190. outSlope: 0
  2191. tangentMode: 0
  2192. - serializedVersion: 2
  2193. time: 1
  2194. value: 0
  2195. inSlope: 0
  2196. outSlope: 0
  2197. tangentMode: 0
  2198. m_PreInfinity: 2
  2199. m_PostInfinity: 2
  2200. m_RotationOrder: 4
  2201. separateAxes: 0
  2202. range: {x: 0, y: 1}
  2203. ColorBySpeedModule:
  2204. enabled: 0
  2205. gradient:
  2206. serializedVersion: 2
  2207. minMaxState: 1
  2208. minColor: {r: 1, g: 1, b: 1, a: 1}
  2209. maxColor: {r: 1, g: 1, b: 1, a: 1}
  2210. maxGradient:
  2211. serializedVersion: 2
  2212. key0: {r: 1, g: 1, b: 1, a: 1}
  2213. key1: {r: 1, g: 1, b: 1, a: 1}
  2214. key2: {r: 0, g: 0, b: 0, a: 0}
  2215. key3: {r: 0, g: 0, b: 0, a: 0}
  2216. key4: {r: 0, g: 0, b: 0, a: 0}
  2217. key5: {r: 0, g: 0, b: 0, a: 0}
  2218. key6: {r: 0, g: 0, b: 0, a: 0}
  2219. key7: {r: 0, g: 0, b: 0, a: 0}
  2220. ctime0: 0
  2221. ctime1: 65535
  2222. ctime2: 0
  2223. ctime3: 0
  2224. ctime4: 0
  2225. ctime5: 0
  2226. ctime6: 0
  2227. ctime7: 0
  2228. atime0: 0
  2229. atime1: 65535
  2230. atime2: 0
  2231. atime3: 0
  2232. atime4: 0
  2233. atime5: 0
  2234. atime6: 0
  2235. atime7: 0
  2236. m_Mode: 0
  2237. m_NumColorKeys: 2
  2238. m_NumAlphaKeys: 2
  2239. minGradient:
  2240. serializedVersion: 2
  2241. key0: {r: 1, g: 1, b: 1, a: 1}
  2242. key1: {r: 1, g: 1, b: 1, a: 1}
  2243. key2: {r: 0, g: 0, b: 0, a: 0}
  2244. key3: {r: 0, g: 0, b: 0, a: 0}
  2245. key4: {r: 0, g: 0, b: 0, a: 0}
  2246. key5: {r: 0, g: 0, b: 0, a: 0}
  2247. key6: {r: 0, g: 0, b: 0, a: 0}
  2248. key7: {r: 0, g: 0, b: 0, a: 0}
  2249. ctime0: 0
  2250. ctime1: 65535
  2251. ctime2: 0
  2252. ctime3: 0
  2253. ctime4: 0
  2254. ctime5: 0
  2255. ctime6: 0
  2256. ctime7: 0
  2257. atime0: 0
  2258. atime1: 65535
  2259. atime2: 0
  2260. atime3: 0
  2261. atime4: 0
  2262. atime5: 0
  2263. atime6: 0
  2264. atime7: 0
  2265. m_Mode: 0
  2266. m_NumColorKeys: 2
  2267. m_NumAlphaKeys: 2
  2268. range: {x: 0, y: 1}
  2269. CollisionModule:
  2270. enabled: 0
  2271. serializedVersion: 3
  2272. type: 0
  2273. collisionMode: 0
  2274. colliderForce: 0
  2275. multiplyColliderForceByParticleSize: 0
  2276. multiplyColliderForceByParticleSpeed: 0
  2277. multiplyColliderForceByCollisionAngle: 1
  2278. plane0: {fileID: 0}
  2279. plane1: {fileID: 0}
  2280. plane2: {fileID: 0}
  2281. plane3: {fileID: 0}
  2282. plane4: {fileID: 0}
  2283. plane5: {fileID: 0}
  2284. m_Dampen:
  2285. serializedVersion: 2
  2286. minMaxState: 0
  2287. scalar: 0
  2288. minScalar: 0
  2289. maxCurve:
  2290. serializedVersion: 2
  2291. m_Curve:
  2292. - serializedVersion: 2
  2293. time: 0
  2294. value: 1
  2295. inSlope: 0
  2296. outSlope: 0
  2297. tangentMode: 0
  2298. - serializedVersion: 2
  2299. time: 1
  2300. value: 1
  2301. inSlope: 0
  2302. outSlope: 0
  2303. tangentMode: 0
  2304. m_PreInfinity: 2
  2305. m_PostInfinity: 2
  2306. m_RotationOrder: 4
  2307. minCurve:
  2308. serializedVersion: 2
  2309. m_Curve:
  2310. - serializedVersion: 2
  2311. time: 0
  2312. value: 0
  2313. inSlope: 0
  2314. outSlope: 0
  2315. tangentMode: 0
  2316. - serializedVersion: 2
  2317. time: 1
  2318. value: 0
  2319. inSlope: 0
  2320. outSlope: 0
  2321. tangentMode: 0
  2322. m_PreInfinity: 2
  2323. m_PostInfinity: 2
  2324. m_RotationOrder: 4
  2325. m_Bounce:
  2326. serializedVersion: 2
  2327. minMaxState: 0
  2328. scalar: 1
  2329. minScalar: 1
  2330. maxCurve:
  2331. serializedVersion: 2
  2332. m_Curve:
  2333. - serializedVersion: 2
  2334. time: 0
  2335. value: 1
  2336. inSlope: 0
  2337. outSlope: 0
  2338. tangentMode: 0
  2339. - serializedVersion: 2
  2340. time: 1
  2341. value: 1
  2342. inSlope: 0
  2343. outSlope: 0
  2344. tangentMode: 0
  2345. m_PreInfinity: 2
  2346. m_PostInfinity: 2
  2347. m_RotationOrder: 4
  2348. minCurve:
  2349. serializedVersion: 2
  2350. m_Curve:
  2351. - serializedVersion: 2
  2352. time: 0
  2353. value: 0
  2354. inSlope: 0
  2355. outSlope: 0
  2356. tangentMode: 0
  2357. - serializedVersion: 2
  2358. time: 1
  2359. value: 0
  2360. inSlope: 0
  2361. outSlope: 0
  2362. tangentMode: 0
  2363. m_PreInfinity: 2
  2364. m_PostInfinity: 2
  2365. m_RotationOrder: 4
  2366. m_EnergyLossOnCollision:
  2367. serializedVersion: 2
  2368. minMaxState: 0
  2369. scalar: 0
  2370. minScalar: 0
  2371. maxCurve:
  2372. serializedVersion: 2
  2373. m_Curve:
  2374. - serializedVersion: 2
  2375. time: 0
  2376. value: 1
  2377. inSlope: 0
  2378. outSlope: 0
  2379. tangentMode: 0
  2380. - serializedVersion: 2
  2381. time: 1
  2382. value: 1
  2383. inSlope: 0
  2384. outSlope: 0
  2385. tangentMode: 0
  2386. m_PreInfinity: 2
  2387. m_PostInfinity: 2
  2388. m_RotationOrder: 4
  2389. minCurve:
  2390. serializedVersion: 2
  2391. m_Curve:
  2392. - serializedVersion: 2
  2393. time: 0
  2394. value: 0
  2395. inSlope: 0
  2396. outSlope: 0
  2397. tangentMode: 0
  2398. - serializedVersion: 2
  2399. time: 1
  2400. value: 0
  2401. inSlope: 0
  2402. outSlope: 0
  2403. tangentMode: 0
  2404. m_PreInfinity: 2
  2405. m_PostInfinity: 2
  2406. m_RotationOrder: 4
  2407. minKillSpeed: 0
  2408. maxKillSpeed: 10000
  2409. radiusScale: 1
  2410. collidesWith:
  2411. serializedVersion: 2
  2412. m_Bits: 4294967295
  2413. maxCollisionShapes: 256
  2414. quality: 0
  2415. voxelSize: 0.5
  2416. collisionMessages: 0
  2417. collidesWithDynamic: 1
  2418. interiorCollisions: 1
  2419. TriggerModule:
  2420. enabled: 0
  2421. collisionShape0: {fileID: 0}
  2422. collisionShape1: {fileID: 0}
  2423. collisionShape2: {fileID: 0}
  2424. collisionShape3: {fileID: 0}
  2425. collisionShape4: {fileID: 0}
  2426. collisionShape5: {fileID: 0}
  2427. inside: 1
  2428. outside: 0
  2429. enter: 0
  2430. exit: 0
  2431. radiusScale: 1
  2432. SubModule:
  2433. serializedVersion: 2
  2434. enabled: 0
  2435. subEmitters:
  2436. - serializedVersion: 2
  2437. emitter: {fileID: 0}
  2438. type: 0
  2439. properties: 0
  2440. LightsModule:
  2441. enabled: 0
  2442. ratio: 0
  2443. light: {fileID: 0}
  2444. randomDistribution: 1
  2445. color: 1
  2446. range: 1
  2447. intensity: 1
  2448. rangeCurve:
  2449. serializedVersion: 2
  2450. minMaxState: 0
  2451. scalar: 1
  2452. minScalar: 1
  2453. maxCurve:
  2454. serializedVersion: 2
  2455. m_Curve:
  2456. - serializedVersion: 2
  2457. time: 0
  2458. value: 1
  2459. inSlope: 0
  2460. outSlope: 0
  2461. tangentMode: 0
  2462. - serializedVersion: 2
  2463. time: 1
  2464. value: 1
  2465. inSlope: 0
  2466. outSlope: 0
  2467. tangentMode: 0
  2468. m_PreInfinity: 2
  2469. m_PostInfinity: 2
  2470. m_RotationOrder: 4
  2471. minCurve:
  2472. serializedVersion: 2
  2473. m_Curve:
  2474. - serializedVersion: 2
  2475. time: 0
  2476. value: 0
  2477. inSlope: 0
  2478. outSlope: 0
  2479. tangentMode: 0
  2480. - serializedVersion: 2
  2481. time: 1
  2482. value: 0
  2483. inSlope: 0
  2484. outSlope: 0
  2485. tangentMode: 0
  2486. m_PreInfinity: 2
  2487. m_PostInfinity: 2
  2488. m_RotationOrder: 4
  2489. intensityCurve:
  2490. serializedVersion: 2
  2491. minMaxState: 0
  2492. scalar: 1
  2493. minScalar: 1
  2494. maxCurve:
  2495. serializedVersion: 2
  2496. m_Curve:
  2497. - serializedVersion: 2
  2498. time: 0
  2499. value: 1
  2500. inSlope: 0
  2501. outSlope: 0
  2502. tangentMode: 0
  2503. - serializedVersion: 2
  2504. time: 1
  2505. value: 1
  2506. inSlope: 0
  2507. outSlope: 0
  2508. tangentMode: 0
  2509. m_PreInfinity: 2
  2510. m_PostInfinity: 2
  2511. m_RotationOrder: 4
  2512. minCurve:
  2513. serializedVersion: 2
  2514. m_Curve:
  2515. - serializedVersion: 2
  2516. time: 0
  2517. value: 0
  2518. inSlope: 0
  2519. outSlope: 0
  2520. tangentMode: 0
  2521. - serializedVersion: 2
  2522. time: 1
  2523. value: 0
  2524. inSlope: 0
  2525. outSlope: 0
  2526. tangentMode: 0
  2527. m_PreInfinity: 2
  2528. m_PostInfinity: 2
  2529. m_RotationOrder: 4
  2530. maxLights: 20
  2531. TrailModule:
  2532. enabled: 0
  2533. ratio: 1
  2534. lifetime:
  2535. serializedVersion: 2
  2536. minMaxState: 0
  2537. scalar: 1
  2538. minScalar: 1
  2539. maxCurve:
  2540. serializedVersion: 2
  2541. m_Curve:
  2542. - serializedVersion: 2
  2543. time: 0
  2544. value: 1
  2545. inSlope: 0
  2546. outSlope: 0
  2547. tangentMode: 0
  2548. - serializedVersion: 2
  2549. time: 1
  2550. value: 1
  2551. inSlope: 0
  2552. outSlope: 0
  2553. tangentMode: 0
  2554. m_PreInfinity: 2
  2555. m_PostInfinity: 2
  2556. m_RotationOrder: 4
  2557. minCurve:
  2558. serializedVersion: 2
  2559. m_Curve:
  2560. - serializedVersion: 2
  2561. time: 0
  2562. value: 0
  2563. inSlope: 0
  2564. outSlope: 0
  2565. tangentMode: 0
  2566. - serializedVersion: 2
  2567. time: 1
  2568. value: 0
  2569. inSlope: 0
  2570. outSlope: 0
  2571. tangentMode: 0
  2572. m_PreInfinity: 2
  2573. m_PostInfinity: 2
  2574. m_RotationOrder: 4
  2575. minVertexDistance: 0.2
  2576. textureMode: 0
  2577. worldSpace: 0
  2578. dieWithParticles: 1
  2579. sizeAffectsWidth: 1
  2580. sizeAffectsLifetime: 0
  2581. inheritParticleColor: 1
  2582. generateLightingData: 0
  2583. colorOverLifetime:
  2584. serializedVersion: 2
  2585. minMaxState: 0
  2586. minColor: {r: 1, g: 1, b: 1, a: 1}
  2587. maxColor: {r: 1, g: 1, b: 1, a: 1}
  2588. maxGradient:
  2589. serializedVersion: 2
  2590. key0: {r: 1, g: 1, b: 1, a: 1}
  2591. key1: {r: 1, g: 1, b: 1, a: 1}
  2592. key2: {r: 0, g: 0, b: 0, a: 0}
  2593. key3: {r: 0, g: 0, b: 0, a: 0}
  2594. key4: {r: 0, g: 0, b: 0, a: 0}
  2595. key5: {r: 0, g: 0, b: 0, a: 0}
  2596. key6: {r: 0, g: 0, b: 0, a: 0}
  2597. key7: {r: 0, g: 0, b: 0, a: 0}
  2598. ctime0: 0
  2599. ctime1: 65535
  2600. ctime2: 0
  2601. ctime3: 0
  2602. ctime4: 0
  2603. ctime5: 0
  2604. ctime6: 0
  2605. ctime7: 0
  2606. atime0: 0
  2607. atime1: 65535
  2608. atime2: 0
  2609. atime3: 0
  2610. atime4: 0
  2611. atime5: 0
  2612. atime6: 0
  2613. atime7: 0
  2614. m_Mode: 0
  2615. m_NumColorKeys: 2
  2616. m_NumAlphaKeys: 2
  2617. minGradient:
  2618. serializedVersion: 2
  2619. key0: {r: 1, g: 1, b: 1, a: 1}
  2620. key1: {r: 1, g: 1, b: 1, a: 1}
  2621. key2: {r: 0, g: 0, b: 0, a: 0}
  2622. key3: {r: 0, g: 0, b: 0, a: 0}
  2623. key4: {r: 0, g: 0, b: 0, a: 0}
  2624. key5: {r: 0, g: 0, b: 0, a: 0}
  2625. key6: {r: 0, g: 0, b: 0, a: 0}
  2626. key7: {r: 0, g: 0, b: 0, a: 0}
  2627. ctime0: 0
  2628. ctime1: 65535
  2629. ctime2: 0
  2630. ctime3: 0
  2631. ctime4: 0
  2632. ctime5: 0
  2633. ctime6: 0
  2634. ctime7: 0
  2635. atime0: 0
  2636. atime1: 65535
  2637. atime2: 0
  2638. atime3: 0
  2639. atime4: 0
  2640. atime5: 0
  2641. atime6: 0
  2642. atime7: 0
  2643. m_Mode: 0
  2644. m_NumColorKeys: 2
  2645. m_NumAlphaKeys: 2
  2646. widthOverTrail:
  2647. serializedVersion: 2
  2648. minMaxState: 0
  2649. scalar: 1
  2650. minScalar: 1
  2651. maxCurve:
  2652. serializedVersion: 2
  2653. m_Curve:
  2654. - serializedVersion: 2
  2655. time: 0
  2656. value: 1
  2657. inSlope: 0
  2658. outSlope: 0
  2659. tangentMode: 0
  2660. - serializedVersion: 2
  2661. time: 1
  2662. value: 1
  2663. inSlope: 0
  2664. outSlope: 0
  2665. tangentMode: 0
  2666. m_PreInfinity: 2
  2667. m_PostInfinity: 2
  2668. m_RotationOrder: 4
  2669. minCurve:
  2670. serializedVersion: 2
  2671. m_Curve:
  2672. - serializedVersion: 2
  2673. time: 0
  2674. value: 0
  2675. inSlope: 0
  2676. outSlope: 0
  2677. tangentMode: 0
  2678. - serializedVersion: 2
  2679. time: 1
  2680. value: 0
  2681. inSlope: 0
  2682. outSlope: 0
  2683. tangentMode: 0
  2684. m_PreInfinity: 2
  2685. m_PostInfinity: 2
  2686. m_RotationOrder: 4
  2687. colorOverTrail:
  2688. serializedVersion: 2
  2689. minMaxState: 0
  2690. minColor: {r: 1, g: 1, b: 1, a: 1}
  2691. maxColor: {r: 1, g: 1, b: 1, a: 1}
  2692. maxGradient:
  2693. serializedVersion: 2
  2694. key0: {r: 1, g: 1, b: 1, a: 1}
  2695. key1: {r: 1, g: 1, b: 1, a: 1}
  2696. key2: {r: 0, g: 0, b: 0, a: 0}
  2697. key3: {r: 0, g: 0, b: 0, a: 0}
  2698. key4: {r: 0, g: 0, b: 0, a: 0}
  2699. key5: {r: 0, g: 0, b: 0, a: 0}
  2700. key6: {r: 0, g: 0, b: 0, a: 0}
  2701. key7: {r: 0, g: 0, b: 0, a: 0}
  2702. ctime0: 0
  2703. ctime1: 65535
  2704. ctime2: 0
  2705. ctime3: 0
  2706. ctime4: 0
  2707. ctime5: 0
  2708. ctime6: 0
  2709. ctime7: 0
  2710. atime0: 0
  2711. atime1: 65535
  2712. atime2: 0
  2713. atime3: 0
  2714. atime4: 0
  2715. atime5: 0
  2716. atime6: 0
  2717. atime7: 0
  2718. m_Mode: 0
  2719. m_NumColorKeys: 2
  2720. m_NumAlphaKeys: 2
  2721. minGradient:
  2722. serializedVersion: 2
  2723. key0: {r: 1, g: 1, b: 1, a: 1}
  2724. key1: {r: 1, g: 1, b: 1, a: 1}
  2725. key2: {r: 0, g: 0, b: 0, a: 0}
  2726. key3: {r: 0, g: 0, b: 0, a: 0}
  2727. key4: {r: 0, g: 0, b: 0, a: 0}
  2728. key5: {r: 0, g: 0, b: 0, a: 0}
  2729. key6: {r: 0, g: 0, b: 0, a: 0}
  2730. key7: {r: 0, g: 0, b: 0, a: 0}
  2731. ctime0: 0
  2732. ctime1: 65535
  2733. ctime2: 0
  2734. ctime3: 0
  2735. ctime4: 0
  2736. ctime5: 0
  2737. ctime6: 0
  2738. ctime7: 0
  2739. atime0: 0
  2740. atime1: 65535
  2741. atime2: 0
  2742. atime3: 0
  2743. atime4: 0
  2744. atime5: 0
  2745. atime6: 0
  2746. atime7: 0
  2747. m_Mode: 0
  2748. m_NumColorKeys: 2
  2749. m_NumAlphaKeys: 2
  2750. CustomDataModule:
  2751. enabled: 0
  2752. mode0: 0
  2753. vectorComponentCount0: 4
  2754. color0:
  2755. serializedVersion: 2
  2756. minMaxState: 0
  2757. minColor: {r: 1, g: 1, b: 1, a: 1}
  2758. maxColor: {r: 1, g: 1, b: 1, a: 1}
  2759. maxGradient:
  2760. serializedVersion: 2
  2761. key0: {r: 1, g: 1, b: 1, a: 1}
  2762. key1: {r: 1, g: 1, b: 1, a: 1}
  2763. key2: {r: 0, g: 0, b: 0, a: 0}
  2764. key3: {r: 0, g: 0, b: 0, a: 0}
  2765. key4: {r: 0, g: 0, b: 0, a: 0}
  2766. key5: {r: 0, g: 0, b: 0, a: 0}
  2767. key6: {r: 0, g: 0, b: 0, a: 0}
  2768. key7: {r: 0, g: 0, b: 0, a: 0}
  2769. ctime0: 0
  2770. ctime1: 65535
  2771. ctime2: 0
  2772. ctime3: 0
  2773. ctime4: 0
  2774. ctime5: 0
  2775. ctime6: 0
  2776. ctime7: 0
  2777. atime0: 0
  2778. atime1: 65535
  2779. atime2: 0
  2780. atime3: 0
  2781. atime4: 0
  2782. atime5: 0
  2783. atime6: 0
  2784. atime7: 0
  2785. m_Mode: 0
  2786. m_NumColorKeys: 2
  2787. m_NumAlphaKeys: 2
  2788. minGradient:
  2789. serializedVersion: 2
  2790. key0: {r: 1, g: 1, b: 1, a: 1}
  2791. key1: {r: 1, g: 1, b: 1, a: 1}
  2792. key2: {r: 0, g: 0, b: 0, a: 0}
  2793. key3: {r: 0, g: 0, b: 0, a: 0}
  2794. key4: {r: 0, g: 0, b: 0, a: 0}
  2795. key5: {r: 0, g: 0, b: 0, a: 0}
  2796. key6: {r: 0, g: 0, b: 0, a: 0}
  2797. key7: {r: 0, g: 0, b: 0, a: 0}
  2798. ctime0: 0
  2799. ctime1: 65535
  2800. ctime2: 0
  2801. ctime3: 0
  2802. ctime4: 0
  2803. ctime5: 0
  2804. ctime6: 0
  2805. ctime7: 0
  2806. atime0: 0
  2807. atime1: 65535
  2808. atime2: 0
  2809. atime3: 0
  2810. atime4: 0
  2811. atime5: 0
  2812. atime6: 0
  2813. atime7: 0
  2814. m_Mode: 0
  2815. m_NumColorKeys: 2
  2816. m_NumAlphaKeys: 2
  2817. colorLabel0: Color
  2818. vector0_0:
  2819. serializedVersion: 2
  2820. minMaxState: 0
  2821. scalar: 0
  2822. minScalar: 0
  2823. maxCurve:
  2824. serializedVersion: 2
  2825. m_Curve:
  2826. - serializedVersion: 2
  2827. time: 0
  2828. value: 1
  2829. inSlope: 0
  2830. outSlope: 0
  2831. tangentMode: 0
  2832. - serializedVersion: 2
  2833. time: 1
  2834. value: 1
  2835. inSlope: 0
  2836. outSlope: 0
  2837. tangentMode: 0
  2838. m_PreInfinity: 2
  2839. m_PostInfinity: 2
  2840. m_RotationOrder: 4
  2841. minCurve:
  2842. serializedVersion: 2
  2843. m_Curve:
  2844. - serializedVersion: 2
  2845. time: 0
  2846. value: 0
  2847. inSlope: 0
  2848. outSlope: 0
  2849. tangentMode: 0
  2850. - serializedVersion: 2
  2851. time: 1
  2852. value: 0
  2853. inSlope: 0
  2854. outSlope: 0
  2855. tangentMode: 0
  2856. m_PreInfinity: 2
  2857. m_PostInfinity: 2
  2858. m_RotationOrder: 4
  2859. vectorLabel0_0: X
  2860. vector0_1:
  2861. serializedVersion: 2
  2862. minMaxState: 0
  2863. scalar: 0
  2864. minScalar: 0
  2865. maxCurve:
  2866. serializedVersion: 2
  2867. m_Curve:
  2868. - serializedVersion: 2
  2869. time: 0
  2870. value: 1
  2871. inSlope: 0
  2872. outSlope: 0
  2873. tangentMode: 0
  2874. - serializedVersion: 2
  2875. time: 1
  2876. value: 1
  2877. inSlope: 0
  2878. outSlope: 0
  2879. tangentMode: 0
  2880. m_PreInfinity: 2
  2881. m_PostInfinity: 2
  2882. m_RotationOrder: 4
  2883. minCurve:
  2884. serializedVersion: 2
  2885. m_Curve:
  2886. - serializedVersion: 2
  2887. time: 0
  2888. value: 0
  2889. inSlope: 0
  2890. outSlope: 0
  2891. tangentMode: 0
  2892. - serializedVersion: 2
  2893. time: 1
  2894. value: 0
  2895. inSlope: 0
  2896. outSlope: 0
  2897. tangentMode: 0
  2898. m_PreInfinity: 2
  2899. m_PostInfinity: 2
  2900. m_RotationOrder: 4
  2901. vectorLabel0_1: Y
  2902. vector0_2:
  2903. serializedVersion: 2
  2904. minMaxState: 0
  2905. scalar: 0
  2906. minScalar: 0
  2907. maxCurve:
  2908. serializedVersion: 2
  2909. m_Curve:
  2910. - serializedVersion: 2
  2911. time: 0
  2912. value: 1
  2913. inSlope: 0
  2914. outSlope: 0
  2915. tangentMode: 0
  2916. - serializedVersion: 2
  2917. time: 1
  2918. value: 1
  2919. inSlope: 0
  2920. outSlope: 0
  2921. tangentMode: 0
  2922. m_PreInfinity: 2
  2923. m_PostInfinity: 2
  2924. m_RotationOrder: 4
  2925. minCurve:
  2926. serializedVersion: 2
  2927. m_Curve:
  2928. - serializedVersion: 2
  2929. time: 0
  2930. value: 0
  2931. inSlope: 0
  2932. outSlope: 0
  2933. tangentMode: 0
  2934. - serializedVersion: 2
  2935. time: 1
  2936. value: 0
  2937. inSlope: 0
  2938. outSlope: 0
  2939. tangentMode: 0
  2940. m_PreInfinity: 2
  2941. m_PostInfinity: 2
  2942. m_RotationOrder: 4
  2943. vectorLabel0_2: Z
  2944. vector0_3:
  2945. serializedVersion: 2
  2946. minMaxState: 0
  2947. scalar: 0
  2948. minScalar: 0
  2949. maxCurve:
  2950. serializedVersion: 2
  2951. m_Curve:
  2952. - serializedVersion: 2
  2953. time: 0
  2954. value: 1
  2955. inSlope: 0
  2956. outSlope: 0
  2957. tangentMode: 0
  2958. - serializedVersion: 2
  2959. time: 1
  2960. value: 1
  2961. inSlope: 0
  2962. outSlope: 0
  2963. tangentMode: 0
  2964. m_PreInfinity: 2
  2965. m_PostInfinity: 2
  2966. m_RotationOrder: 4
  2967. minCurve:
  2968. serializedVersion: 2
  2969. m_Curve:
  2970. - serializedVersion: 2
  2971. time: 0
  2972. value: 0
  2973. inSlope: 0
  2974. outSlope: 0
  2975. tangentMode: 0
  2976. - serializedVersion: 2
  2977. time: 1
  2978. value: 0
  2979. inSlope: 0
  2980. outSlope: 0
  2981. tangentMode: 0
  2982. m_PreInfinity: 2
  2983. m_PostInfinity: 2
  2984. m_RotationOrder: 4
  2985. vectorLabel0_3: W
  2986. mode1: 0
  2987. vectorComponentCount1: 4
  2988. color1:
  2989. serializedVersion: 2
  2990. minMaxState: 0
  2991. minColor: {r: 1, g: 1, b: 1, a: 1}
  2992. maxColor: {r: 1, g: 1, b: 1, a: 1}
  2993. maxGradient:
  2994. serializedVersion: 2
  2995. key0: {r: 1, g: 1, b: 1, a: 1}
  2996. key1: {r: 1, g: 1, b: 1, a: 1}
  2997. key2: {r: 0, g: 0, b: 0, a: 0}
  2998. key3: {r: 0, g: 0, b: 0, a: 0}
  2999. key4: {r: 0, g: 0, b: 0, a: 0}
  3000. key5: {r: 0, g: 0, b: 0, a: 0}
  3001. key6: {r: 0, g: 0, b: 0, a: 0}
  3002. key7: {r: 0, g: 0, b: 0, a: 0}
  3003. ctime0: 0
  3004. ctime1: 65535
  3005. ctime2: 0
  3006. ctime3: 0
  3007. ctime4: 0
  3008. ctime5: 0
  3009. ctime6: 0
  3010. ctime7: 0
  3011. atime0: 0
  3012. atime1: 65535
  3013. atime2: 0
  3014. atime3: 0
  3015. atime4: 0
  3016. atime5: 0
  3017. atime6: 0
  3018. atime7: 0
  3019. m_Mode: 0
  3020. m_NumColorKeys: 2
  3021. m_NumAlphaKeys: 2
  3022. minGradient:
  3023. serializedVersion: 2
  3024. key0: {r: 1, g: 1, b: 1, a: 1}
  3025. key1: {r: 1, g: 1, b: 1, a: 1}
  3026. key2: {r: 0, g: 0, b: 0, a: 0}
  3027. key3: {r: 0, g: 0, b: 0, a: 0}
  3028. key4: {r: 0, g: 0, b: 0, a: 0}
  3029. key5: {r: 0, g: 0, b: 0, a: 0}
  3030. key6: {r: 0, g: 0, b: 0, a: 0}
  3031. key7: {r: 0, g: 0, b: 0, a: 0}
  3032. ctime0: 0
  3033. ctime1: 65535
  3034. ctime2: 0
  3035. ctime3: 0
  3036. ctime4: 0
  3037. ctime5: 0
  3038. ctime6: 0
  3039. ctime7: 0
  3040. atime0: 0
  3041. atime1: 65535
  3042. atime2: 0
  3043. atime3: 0
  3044. atime4: 0
  3045. atime5: 0
  3046. atime6: 0
  3047. atime7: 0
  3048. m_Mode: 0
  3049. m_NumColorKeys: 2
  3050. m_NumAlphaKeys: 2
  3051. colorLabel1: Color
  3052. vector1_0:
  3053. serializedVersion: 2
  3054. minMaxState: 0
  3055. scalar: 0
  3056. minScalar: 0
  3057. maxCurve:
  3058. serializedVersion: 2
  3059. m_Curve:
  3060. - serializedVersion: 2
  3061. time: 0
  3062. value: 1
  3063. inSlope: 0
  3064. outSlope: 0
  3065. tangentMode: 0
  3066. - serializedVersion: 2
  3067. time: 1
  3068. value: 1
  3069. inSlope: 0
  3070. outSlope: 0
  3071. tangentMode: 0
  3072. m_PreInfinity: 2
  3073. m_PostInfinity: 2
  3074. m_RotationOrder: 4
  3075. minCurve:
  3076. serializedVersion: 2
  3077. m_Curve:
  3078. - serializedVersion: 2
  3079. time: 0
  3080. value: 0
  3081. inSlope: 0
  3082. outSlope: 0
  3083. tangentMode: 0
  3084. - serializedVersion: 2
  3085. time: 1
  3086. value: 0
  3087. inSlope: 0
  3088. outSlope: 0
  3089. tangentMode: 0
  3090. m_PreInfinity: 2
  3091. m_PostInfinity: 2
  3092. m_RotationOrder: 4
  3093. vectorLabel1_0: X
  3094. vector1_1:
  3095. serializedVersion: 2
  3096. minMaxState: 0
  3097. scalar: 0
  3098. minScalar: 0
  3099. maxCurve:
  3100. serializedVersion: 2
  3101. m_Curve:
  3102. - serializedVersion: 2
  3103. time: 0
  3104. value: 1
  3105. inSlope: 0
  3106. outSlope: 0
  3107. tangentMode: 0
  3108. - serializedVersion: 2
  3109. time: 1
  3110. value: 1
  3111. inSlope: 0
  3112. outSlope: 0
  3113. tangentMode: 0
  3114. m_PreInfinity: 2
  3115. m_PostInfinity: 2
  3116. m_RotationOrder: 4
  3117. minCurve:
  3118. serializedVersion: 2
  3119. m_Curve:
  3120. - serializedVersion: 2
  3121. time: 0
  3122. value: 0
  3123. inSlope: 0
  3124. outSlope: 0
  3125. tangentMode: 0
  3126. - serializedVersion: 2
  3127. time: 1
  3128. value: 0
  3129. inSlope: 0
  3130. outSlope: 0
  3131. tangentMode: 0
  3132. m_PreInfinity: 2
  3133. m_PostInfinity: 2
  3134. m_RotationOrder: 4
  3135. vectorLabel1_1: Y
  3136. vector1_2:
  3137. serializedVersion: 2
  3138. minMaxState: 0
  3139. scalar: 0
  3140. minScalar: 0
  3141. maxCurve:
  3142. serializedVersion: 2
  3143. m_Curve:
  3144. - serializedVersion: 2
  3145. time: 0
  3146. value: 1
  3147. inSlope: 0
  3148. outSlope: 0
  3149. tangentMode: 0
  3150. - serializedVersion: 2
  3151. time: 1
  3152. value: 1
  3153. inSlope: 0
  3154. outSlope: 0
  3155. tangentMode: 0
  3156. m_PreInfinity: 2
  3157. m_PostInfinity: 2
  3158. m_RotationOrder: 4
  3159. minCurve:
  3160. serializedVersion: 2
  3161. m_Curve:
  3162. - serializedVersion: 2
  3163. time: 0
  3164. value: 0
  3165. inSlope: 0
  3166. outSlope: 0
  3167. tangentMode: 0
  3168. - serializedVersion: 2
  3169. time: 1
  3170. value: 0
  3171. inSlope: 0
  3172. outSlope: 0
  3173. tangentMode: 0
  3174. m_PreInfinity: 2
  3175. m_PostInfinity: 2
  3176. m_RotationOrder: 4
  3177. vectorLabel1_2: Z
  3178. vector1_3:
  3179. serializedVersion: 2
  3180. minMaxState: 0
  3181. scalar: 0
  3182. minScalar: 0
  3183. maxCurve:
  3184. serializedVersion: 2
  3185. m_Curve:
  3186. - serializedVersion: 2
  3187. time: 0
  3188. value: 1
  3189. inSlope: 0
  3190. outSlope: 0
  3191. tangentMode: 0
  3192. - serializedVersion: 2
  3193. time: 1
  3194. value: 1
  3195. inSlope: 0
  3196. outSlope: 0
  3197. tangentMode: 0
  3198. m_PreInfinity: 2
  3199. m_PostInfinity: 2
  3200. m_RotationOrder: 4
  3201. minCurve:
  3202. serializedVersion: 2
  3203. m_Curve:
  3204. - serializedVersion: 2
  3205. time: 0
  3206. value: 0
  3207. inSlope: 0
  3208. outSlope: 0
  3209. tangentMode: 0
  3210. - serializedVersion: 2
  3211. time: 1
  3212. value: 0
  3213. inSlope: 0
  3214. outSlope: 0
  3215. tangentMode: 0
  3216. m_PreInfinity: 2
  3217. m_PostInfinity: 2
  3218. m_RotationOrder: 4
  3219. vectorLabel1_3: W
  3220. --- !u!199 &199326485248644184
  3221. ParticleSystemRenderer:
  3222. serializedVersion: 4
  3223. m_ObjectHideFlags: 1
  3224. m_PrefabParentObject: {fileID: 0}
  3225. m_PrefabInternal: {fileID: 100100000}
  3226. m_GameObject: {fileID: 1699914565062994}
  3227. m_Enabled: 1
  3228. m_CastShadows: 1
  3229. m_ReceiveShadows: 1
  3230. m_DynamicOccludee: 1
  3231. m_MotionVectors: 1
  3232. m_LightProbeUsage: 1
  3233. m_ReflectionProbeUsage: 1
  3234. m_Materials:
  3235. - {fileID: 2100000, guid: 0c6ceb865a050c64683892d8aa073844, type: 2}
  3236. - {fileID: 0}
  3237. m_StaticBatchInfo:
  3238. firstSubMesh: 0
  3239. subMeshCount: 0
  3240. m_StaticBatchRoot: {fileID: 0}
  3241. m_ProbeAnchor: {fileID: 0}
  3242. m_LightProbeVolumeOverride: {fileID: 0}
  3243. m_ScaleInLightmap: 1
  3244. m_PreserveUVs: 0
  3245. m_IgnoreNormalsForChartDetection: 0
  3246. m_ImportantGI: 0
  3247. m_StitchLightmapSeams: 0
  3248. m_SelectedEditorRenderState: 0
  3249. m_MinimumChartSize: 4
  3250. m_AutoUVMaxDistance: 0.5
  3251. m_AutoUVMaxAngle: 89
  3252. m_LightmapParameters: {fileID: 0}
  3253. m_SortingLayerID: 0
  3254. m_SortingLayer: 0
  3255. m_SortingOrder: 0
  3256. m_RenderMode: 4
  3257. m_SortMode: 0
  3258. m_MinParticleSize: 0
  3259. m_MaxParticleSize: 0.5
  3260. m_CameraVelocityScale: 0
  3261. m_VelocityScale: 0
  3262. m_LengthScale: 2
  3263. m_SortingFudge: 0
  3264. m_NormalDirection: 1
  3265. m_RenderAlignment: 2
  3266. m_Pivot: {x: 0, y: 0, z: 0}
  3267. m_UseCustomVertexStreams: 0
  3268. m_VertexStreams: 0001030405
  3269. m_Mesh: {fileID: 4300000, guid: 219de587148d8bb41a8e255859dafe53, type: 3}
  3270. m_Mesh1: {fileID: 0}
  3271. m_Mesh2: {fileID: 0}
  3272. m_Mesh3: {fileID: 0}
  3273. m_MaskInteraction: 0