SFML community forums
Help => General => Topic started by: owenattard on December 08, 2012, 12:48:04 pm
-
I started using sfml just a few days ago and was wondering how i could set a background image to my game. This is not my first game i already done a small game using xna. Now i want to make a bigger game using sfml and would like to know how to implement multi-resolutions in game and how everything is scaled according to the resolution or if i have to code the design aspect for every reolution. If any ones a good tutorial or knows how to do this i would be like to share it with me i would be grateful. I am using c++.
thanks in advance
-
You could simply take one of the examples and play around with it for a bit, so you'd see what SFML can do and what you have to do on your own.
For a background image, you'd take a sf::Texture and a sf::Sprite, load your image into the texture, set the texture on the sprite and draw it every frame iteration.
If you don't change the view of the RenderTarget things will get automatically scaled when you resize the window, but the aspect ratio is not preserved, thus in most cases you'll want to change the view accordingly. For more information about the usage of sf::View you can check out my tutorial on the wiki (https://github.com/SFML/SFML/wiki/Tutorial%3A-Using-View).
-
thx alot for the help :)