Table of Contents | ||
|
||
IsPlaying | ||
Purpose Returns whether the clip is playing or not |
||
Protoype bool CSoundMngr::IsPlaying (string str_id) |
||
Parameters
|
||
Description This function returns the value of the sound object's play flag. If the sound clip is playing, then the function returns TRUE, otherwise it returns FALSE.
|
||
Use CSoundMngr sound; if (sound.IsPlaying("my_sound")) // sound is playing |
||
|
||
|