Added time controls and nice clock face

This commit is contained in:
b
2024-04-11 21:42:11 -06:00
parent a8df373f93
commit f3da84db34
107 changed files with 25454 additions and 49 deletions
+1
View File
@@ -0,0 +1 @@
--[[------------------------------------------------␍ -- Love Frames - A GUI library for LOVE --␍ -- Copyright (c) 2012-2014 Kenny Shields --␍--]]------------------------------------------------␍␍--[[------------------------------------------------␍ -- note: This is the base template for all␍ Love Frames objects. You should not␍ edit or delete this template unless you ␍ know what you are doing.␍--]]------------------------------------------------␍␍-- template table␍local template = {}␍␍-- template name␍template.name = "Base"␍␍-- template properties␍template.properties = {}␍␍template.properties["*"] =␍{␍ state = "none",␍ x = 0,␍ y = 0,␍ width = 5,␍ height = 5,␍ staticx = 0,␍ staticy = 0,␍ draworder = 0,␍ drawfunc = nil,␍ drawoverfunc = nil,␍ collide = true,␍ internal = false,␍ visible = true,␍ hover = false,␍ alwaysupdate = false,␍ retainsize = false,␍ calledmousefunc = false,␍ skin = nil,␍ clickbounds = nil,␍ Draw = nil,␍ DrawOver = nil,␍ Update = nil,␍ OnMouseEnter = nil,␍ OnMouseExit = nil␍}␍␍return template␍