I'm trying to get all of the sprites to be at their 100% default size but there seems to be ratio/size problems.
sf::Vector2f Center(1000,1000);
sf::Vector2f HalfSize(App.GetWidth()*.5f,App.GetHeight()*.5f); //516/387
sf::View View(Center,HalfSize);
I'm guessing there is a 100% default setting?
I saw GetDefaultView() but it doesn't seem to do it
I also tried this and it doesn't work either:
sf::View View(sf::FloatRect(0.f,0.f,App.GetWidth(),App.GetHeight()));