SFML community forums

Help => Graphics => Topic started by: pabloist on September 15, 2010, 06:49:20 am

Title: How do I layer a sprite onto a bg?
Post by: pabloist on September 15, 2010, 06:49:20 am
I have a colored bg that I'm trying to place a sprite on top of; but the sprite I'm trying to put on top has whitespace. Is there a way for me to get rid of it? I tried using Sprite.SetBlendMode(sf::Blend::Mode::Multiply) but that causes the rest of the character to change color along with the bg.

If there's no code solution, is there a way for me to just get rid of the surrounding whitespace?

(sorry if any of this seems stupid, I'm playing around with the tutorial stuff right now. I also only have MS Paint :P)
Title: How do I layer a sprite onto a bg?
Post by: PeterWelzien on September 15, 2010, 07:41:47 am
I think the function you need is:
Code: [Select]
void sf::Image::CreateMaskFromColor(Color ColorKey, Uint8 Alpha = 0)
Title: How do I layer a sprite onto a bg?
Post by: pabloist on September 16, 2010, 02:13:41 am
Thank you, that's exactly what I was looking for!
Title: How do I layer a sprite onto a bg?
Post by: renton_django on October 06, 2010, 06:57:25 pm
Performance wise, how does this compare with using transparent pngs?
Title: How do I layer a sprite onto a bg?
Post by: panithadrum on October 06, 2010, 07:02:19 pm
Quote from: "renton_django"
Performance wise, how does this compare with using transparent pngs?

I recommend to use sf::Clock to test it for yourself