This commit is contained in:
2021-12-22 11:36:51 +01:00
parent 63bd4c6158
commit 1d67c13e09
4 changed files with 39 additions and 11 deletions

View File

@@ -60,7 +60,7 @@ function Ball:update(dt,level)
end
function Ball:render()
love.graphics.setColor(255/255,255/255,255/255,255/255)
love.graphics.setColor(255/255,1/255,1/255,255/255)
love.graphics.circle('fill', self.x, self.y, self.width/2)
end