mirror of
https://github.com/linux-man/LoveFrames.git
synced 2024-11-18 16:04:22 +00:00
17 lines
363 B
Lua
17 lines
363 B
Lua
local example = {}
|
|
example.title = "Panel"
|
|
example.category = "Object Demonstrations"
|
|
|
|
function example.func(loveframes, centerarea)
|
|
|
|
local frame = loveframes.Create("frame")
|
|
frame:SetName("Panel")
|
|
frame:SetSize(210, 85)
|
|
frame:CenterWithinArea(unpack(centerarea))
|
|
|
|
local panel = loveframes.Create("panel", frame)
|
|
panel:SetPos(5, 30)
|
|
|
|
end
|
|
|
|
return example |