| Table of Contents | ||
|
|
||
| FadeComplete | ||
|
Purpose Returns whether a fade effect has been completed |
||
|
Protoype bool CVideo::FadeComplete () |
||
|
Description This function returns TRUE if the fade effect has completed, or FALSE if it has not.
|
||
|
Use CVideo video; // fade effect started // are we done?
if (video.FadeComplete())
return;
|
||
|
|
||
|