Fix, collisions now show border in debug

This commit is contained in:
lustlion
2022-02-07 12:16:58 +01:00
parent a899e40c73
commit 010c19b10f
2 changed files with 8 additions and 0 deletions

View File

@@ -73,4 +73,6 @@ function Collision:Draw(color)
love.graphics.setColor(0,1,1,0.5)
end
love.graphics.rectangle("fill",self.from.x-Camera.pos.x, self.from.y-Camera.pos.y, self.width, self.height)
love.graphics.setColor(0,1,90,0.5)
love.graphics.rectangle("line",self.from.x-Camera.pos.x, self.from.y-Camera.pos.y, self.width, self.height)
end