FX_Fire_Small_03.prefab 73 KB

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