forked from cyborgize/LoveFrames
-
Notifications
You must be signed in to change notification settings - Fork 15
(API) Panel
Caldas Lopes edited this page Jun 30, 2019
·
2 revisions
The panel object has nothing unique about it. It is simply meant to be a parent object for other objects.
function love.load()
loveframes = require("loveframes")
local panel = loveframes.Create("panel")
panel:SetPos(5, 5)
end
function love.update(dt)
loveframes.update(dt)
end
function love.draw()
loveframes.draw()
end
The panel object has no unique event callbacks.
The panel object has no unique methods.