fixed some bugs and reformatted the play button correctly

This commit is contained in:
Lux Aliaga 2021-05-07 00:52:48 -04:00
parent d17f78e679
commit 34cbbdae9f
1 changed files with 5 additions and 5 deletions

View File

@ -1,7 +1,7 @@
accentColor = colors.gray
buttonColor = colors.lightGray
textColor = color.lightGray
altTextColor = color.gray
textColor = colors.lightGray
altTextColor = colors.gray
backgroundColor = colors.black
function round(n)
@ -64,10 +64,10 @@ function stopDisc()
end
function renderPlayButton()
paintutils.drawFilledBox(centerWidth - 4, centerHeight - 4, centerWidth + 5, centerHeight + 3, accentColor)
paintutils.drawFilledBox(centerWidth - 4, centerHeight - 4, centerWidth + 4, centerHeight + 2, accentColor)
paintutils.drawFilledBox(centerWidth - 2, centerHeight - 3, centerWidth - 1, centerHeight + 1, buttonColor)
paintutils.drawFilledBox(centerWidth, centerHeight - 2, centerWidth + 1, centerHeight - 1, buttonColor)
paintutils.drawPixel(centerWidth, centerHeight - 2, buttonColor)
paintutils.drawFilledBox(centerWidth, centerHeight - 2, centerWidth + 1, centerHeight, buttonColor)
paintutils.drawPixel(centerWidth + 2, centerHeight - 1, buttonColor)
end
playDisc()