Hi there, I'm kind of puzzled. I've been trying to Increment a sprite's specific color (R, G, B) with an input. Is there anyway to do so?
Basically I'd want the sprite's color to go through the following change (R+1, G, B).
I looked at the docs and they seem to be public data members of the color class but Color is a private member of drawables, there has to be a way to do this somehow...
if (App.GetInput().IsKeyDown(sf::Key::Down)) Sprite.SetColor(Iamconfused);
Thanks in advance.