Created
April 20, 2019 17:38
-
-
Save codebykeoma/1e4cfcf17ad2a88fd5ad4cab2222fc76 to your computer and use it in GitHub Desktop.
This was created to share Lua code with my first student
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function love.load() | |
x = 100 | |
y = 100 | |
width = 200 | |
height = 150 | |
speed = 75 | |
end | |
function love.draw() | |
love.graphics.rectangle("line", x, y, width, height) | |
end | |
function love.update(dt) | |
print(dt) | |
x = x + (speed * dt) | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment