dust.lua 453 B

12345678910111213141516171819
  1. return {
  2. image = app.particles.images.smoke,
  3. max = 32,
  4. blendMode = 'add',
  5. options = {
  6. particleLifetime = {.5},
  7. colors = {{255, 200, 150, 5}, {255, 200, 150, 12}, {255, 200, 150, 0}},
  8. sizes = .6,
  9. sizeVariation = .5,
  10. areaSpread = {'normal', 4, 8},
  11. linearAcceleration = {0, -150, 0, -350},
  12. linearDamping = 10,
  13. rotation = {0, 2 * math.pi},
  14. spin = {-10, 10},
  15. speed = {0, 300},
  16. spread = math.pi / 10
  17. }
  18. }