love.load

love.load

This function is called exactly once at the beginning of the game.

Function

Synopsis

1
love.load( arg )

Arguments

table arg
Command line arguments given to the game.

Returns

Nothing.

Examples

Establish some variables/resources on the game load, so that they can be used repeatedly in other functions (such as love.draw).

1
2
3
4
5
6
7
8
9
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


doc_love
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.