I want to make a sidescroller, but I ran into the problem where it seems unnecessarily complicated to get the camera to move at the same rate as the player. If I do this:
view.move(sf::Vector2f(Speed, 0.f));
The camera moves significantly faster than the player, how can I match them up?