Difference between revisions of "love.draw"

m
(definition should contain reference to the default love.run)
 
Line 1: Line 1:
Callback function used to draw on the screen every frame.
+
Callback function used by the [[love.run#The default function for 11.0, used if you don't supply your own.|default love.run]] to draw on the screen every frame.
 
== Function ==
 
== Function ==
 
=== Synopsis ===
 
=== Synopsis ===

Latest revision as of 12:08, 24 December 2024

Callback function used by the default love.run to draw on the screen every frame.

Function

Synopsis

love.draw( )

Arguments

None.

Returns

Nothing.

Examples

Draw an image that was loaded in love.load (putting love.graphics.newImage in love.draw would cause the image to be reloaded every frame, which would cause issues).

function love.load()
   hamster = love.graphics.newImage("hamster.png")
   x = 50
   y = 50
end
function love.draw()
   love.graphics.draw(hamster, x, y)
end

See Also


Other Languages