Love - Moving an object

From TRCCompSci - AQA Computer Science
Revision as of 12:50, 4 June 2019 by Admin (talk | contribs) (Created page with "=Requirements= You need to have followed the installation process for the Love engine. You also need to have created a minimal game (ie a new folder, with a 'main.lua' file)...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Requirements

You need to have followed the installation process for the Love engine.

You also need to have created a minimal game (ie a new folder, with a 'main.lua' file)

You need to have added this code to 'main.lua':

function love.update(dt)

end
 
function love.draw()

end
 
function love.load()

end