mirror of
https://fem.mint.lgbt/m/Rhythmblock.git
synced 2024-08-14 20:27:11 +00:00
fixed some bugs and reformatted the play button correctly
This commit is contained in:
parent
d17f78e679
commit
34cbbdae9f
1 changed files with 5 additions and 5 deletions
|
@ -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()
|
||||
|
|
Loading…
Reference in a new issue