SFML community forums

Help => General => Topic started by: Sanction on August 02, 2016, 06:16:42 pm

Title: SetImage() no longer work?
Post by: Sanction on August 02, 2016, 06:16:42 pm
I was following this tutorial: https://github.com/SFML/SFML/wiki/Tutorial:-Image-Manager (https://github.com/SFML/SFML/wiki/Tutorial:-Image-Manager)
 
and when I got to this point:

test_sprite[i].SetImage( img_mgr.get_image( "test.png" ) );

Can you no longer use SetImage()? I'm using SFML 2.3.2
Can anyone Help? and would you suggest turning this ImageManager into a TextureManager?
Title: Re: SetImage() no longer work?
Post by: eXpl0it3r on August 02, 2016, 06:36:07 pm
Did you look at the official tutorial or documentation? It's all there. We now have sf::Image and sf::Texture and you need to understand when to use which one. Plus function names are different, as you can look up in the documentation.

As for a resource manager, you could also look at the Thor library.