Table of Contents | ||||||
|
||||||
FadeOutText | ||||||
Purpose Starts a text fade for given text object |
||||||
Protoype void CTextMngr::FadeOutText (string str_text_id, int i_base = TEXT_TRANSPARENT, int i_step = -5) |
||||||
Parameters
|
||||||
Description This function causes text to fade out from a faded in state. If the text is already totally transparent then the fade effect will be ignored and not processed. You can set the base level anywhere from 255 (opaque) to 0 (transparent). Use the step interval to set how fast the you want the fade to be.
|
||||||
Use CTextMngr text; text.FadeOutText("my_text", 128, -25); |
||||||
|
||||||
|