mirror of
https://github.com/linux-man/LoveFrames.git
synced 2024-11-18 16:04:22 +00:00
31 lines
555 B
Lua
31 lines
555 B
Lua
|
--[[------------------------------------------------
|
|||
|
-- L<>VE Frames --
|
|||
|
-- By Nikolai Resokav --
|
|||
|
--]]------------------------------------------------
|
|||
|
|
|||
|
-- templates
|
|||
|
loveframes.templates = {}
|
|||
|
|
|||
|
-- default template
|
|||
|
loveframes.templates.default =
|
|||
|
{
|
|||
|
x = 0,
|
|||
|
y = 0,
|
|||
|
width = 5,
|
|||
|
height = 5,
|
|||
|
staticx = 5,
|
|||
|
staticy = 5,
|
|||
|
draworder = 0,
|
|||
|
internal = false,
|
|||
|
visible = true,
|
|||
|
hover = false,
|
|||
|
alwaysupdate = false,
|
|||
|
retainsize = false,
|
|||
|
calledmousefunc = false,
|
|||
|
skin = nil,
|
|||
|
clickbounds = nil,
|
|||
|
Draw = nil,
|
|||
|
Update = nil,
|
|||
|
OnMouseEnter = nil,
|
|||
|
OnMouseExit = nil,
|
|||
|
}
|