examples/test_scene: make color less flashy
This commit is contained in:
parent
4c71e262bb
commit
ba8a666e45
1 changed files with 2 additions and 2 deletions
|
@ -35,10 +35,10 @@ function TestScene:update(dt)
|
|||
end
|
||||
|
||||
function TestScene:draw()
|
||||
love.graphics.setColor(0, 0, 1, 1)
|
||||
love.graphics.setColor(0, 0, .4, 1)
|
||||
love.graphics.rectangle("fill", 0, 0, 424, 240)
|
||||
|
||||
love.graphics.setColor(0, 0, 0, 1)
|
||||
love.graphics.setColor(1, 1, 1, 1)
|
||||
love.graphics.print(math.floor(self.i) .. " ; " .. self.mouse.x .. ":" .. self.mouse.y, 16, 16)
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue