SFML community forums
Help => Graphics => Topic started by: Nikko_Bertoa on February 19, 2010, 04:46:44 am
-
Hi community.
How can I use alpha-blending in SFML?
In SDL we have the function:
int SDL_SetAlpha(SDL_Surface *surface, Uint32 flag, Uint8 alpha);
What is the equivalent function in SFML?
Thanks!
-
You must change the alpha component of the global color of your sprite
sprite.SetColor(sf::Color(255, 255, 255, alpha));
-
Thanks!!