I have a piece of code where I change the Window's View to a new one. According to the documentation, sfml copies the view and it's not necessary to keep the sf::View object alive. That's ok, but how can I update the view later on? If I wanted to scroll it, for example, I should create a new view, move it, and then pass it on to the window?
If I try to get the view via Window::GetCurrentView() I can't update it because it's const.
Using SFML 2.