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