love.graphics.draw( sprite, x, y )
Usage
love.graphics.draw( sprite, x, y )
Arguments
xThe position on the x-axis.
yThe position on the y-axis.
Returns
Nothing
Examples
Example 1: Draw an image.
image = love.graphics.newImage("image.png")
love.graphics.draw(image, 50, 50)