SFML community forums

Help => Graphics => Topic started by: NobodyNothing on February 13, 2012, 07:02:11 pm

Title: SFML 2.0 sf::View::Move not accepting parameters
Post by: NobodyNothing on February 13, 2012, 07:02:11 pm
Hello all!

I just downloaded and built the latest version of SFML 2.0 this morning (Version - 196-ge3d75f6) on 32bit Windows XP, and now sf::View::Move is not accepting an sf::Vector2f. Below is the offending code, where window is a sf::RenderWindow, and viewMoveSpeed and tileSize are ints:

Code: [Select]

sf::Vector2f offset(0, (viewMoveSpeed * tileSize));
window->GetDefaultView().Move(offset);


Am I missing something here, or could this be a recently introduced bug?

Thanks for you time!  :D
Title: SFML 2.0 sf::View::Move not accepting parameters
Post by: Laurent on February 13, 2012, 07:10:23 pm
Look at the error and the documentation: GetDefaultView() now returns a const reference.
Views are now handled by value, not by reference. So you must copy the current view, move it, and set it back.
Code: [Select]
sf::View view = window->GetDefaultView();
view.Move(offset);
window->SetView(view);
Title: SFML 2.0 sf::View::Move not accepting parameters
Post by: NobodyNothing on February 13, 2012, 07:26:57 pm
Ah, ok, thanks for the fast reply! It's working great now. By the way, I wanted to say thanks for all your hard work on SFML, it's a great library, keep up the good work :D