-Getting Started
-Callback Functions
-Drawing Order
-Fonts and Text
-Image Loading, Key Movement (Hamster Ball)
-Using Input
I am on callback functions now, and the example for the love.load() function is:
Code: Select all
image = love.graphics.newImage("bluesquare.png")
local f = love.graphics.newFont(12)
love.graphics.setFont(f)
love.graphics.setColor(0, 0, 0, 255)
love.graphics.setBackgroundColor(255, 255, 255)