diff options
author | Philipp Sehmisch <crush@themanaworld.org> | 2009-12-24 00:43:24 +0100 |
---|---|---|
committer | Philipp Sehmisch <crush@themanaworld.org> | 2009-12-24 00:56:21 +0100 |
commit | 4f14fde764bf0624700e88f9fa7d5d84d543aaec (patch) | |
tree | ddae94d2f4ee8b7dd2621bd2fa5ec789d48cf35b /src/textparticle.cpp | |
parent | 3570761872e01c61d657af6b761ded2e0da1b23f (diff) | |
download | mana-4f14fde764bf0624700e88f9fa7d5d84d543aaec.tar.gz mana-4f14fde764bf0624700e88f9fa7d5d84d543aaec.tar.bz2 mana-4f14fde764bf0624700e88f9fa7d5d84d543aaec.tar.xz mana-4f14fde764bf0624700e88f9fa7d5d84d543aaec.zip |
Alpha property of outline and shadow of rendered text is now taken from the guichan color of the main text instead of an additional argument. Fixed alpha blending of text particles.
Diffstat (limited to 'src/textparticle.cpp')
-rw-r--r-- | src/textparticle.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/textparticle.cpp b/src/textparticle.cpp index ae36a121..c639b937 100644 --- a/src/textparticle.cpp +++ b/src/textparticle.cpp @@ -53,8 +53,9 @@ void TextParticle::draw(Graphics *graphics, int offsetX, int offsetY) const alpha = alpha * mLifetimePast / mFadeIn; gcn::Color color = *mColor; + color.a = (int)alpha; TextRenderer::renderText(graphics, mText, screenX, screenY, gcn::Graphics::CENTER, - color, mTextFont, mOutline, false, (int) alpha); + color, mTextFont, mOutline, false); } |