added bigfonts api for labels

Added bigfonts to labels
just use :setFontSize(number) (1,2, 3 or 4)
This commit is contained in:
Robert Jelic
2022-05-29 16:22:28 +02:00
parent 1f97eeacd1
commit 7871d7205c
7 changed files with 4837 additions and 13 deletions

View File

@@ -156,7 +156,11 @@ local function Object(name)
end;
getWidth = function(self)
return self.w
return self.width
end;
getSize = function(self)
return self.width, self.height
end;
setBackground = function(self, color)