love.graphics.draw( particlesystem, x, y )
Usage
love.graphics.draw( particlesystem, x, y )
Arguments
particlesystemA ParticleSystem object.
xThe position on the x-axis.
yThe position on the y-axis.
Returns
Nothing
Examples
Example 1: Create and draw a particle system.
image = love.graphics.newImage("image.png")
part = love.graphics.newParticleSystem(image, 3000) -- max 3000 particles
love.graphics.draw(part, 50, 50)