Hey, I've been manipulating Shapes and colors recently and it seems like I don't get something.
When I create my shapes, I always use Color::White, then by using SetColor(), I change its color to the one I want
// col is a given parameter : const Color &col
Color _sColor = col;
Shape _shape = Shape::Rectangle(0, 0, _size.x, _size.y, Color::White, 1, Color::Black);
_shape.SetColor(col);
That's working perfectly, but for some unknown reasons, if I try to apply again the same color, it gets darker.
_shape.SetColor(_sColor);
I've been double checking what I've done wrong, but I can't see the problem.
Any help would be appreciated, thanks!