| Table of Contents | ||
|
|
||
| FadeComplete | ||
|
Purpose Determines whether a text object has completed its fade effect |
||
|
Protoype bool CTextMngr::FadeComplete (string str_text_id) |
||
|
Parameters
|
||
|
Description This function returns TRUE if the text object has completed its fade effect, or FALSE if it has not.
|
||
|
Use CTextMngr text; // fade effect has already started // are we done yet?
if (text.FadeComplete("my_text"))
return;
|
||
|
|
||
|