1
0
Fork 0
mirror of https://github.com/bjornbytes/lovr.git synced 2024-07-21 13:13:35 +00:00
lovr/examples/cube/main.lua

9 lines
184 B
Lua
Raw Normal View History

2016-12-05 09:16:24 +00:00
-- Draws a spinning cube
function lovr.draw()
local x, y, z = 0, 0, -1
local size = .5
local angle = lovr.timer.getTime()
lovr.graphics.cube('line', x, y, z, size, angle)
end