IsWorldSoundEnabled: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
__NOTOC__
__NOTOC__
{{New items|3.0140|1.3.1|
{{Client function}}
{{Client function}}
This function allows you to check if certain world sound effects have not been disabled by [[setWorldSoundEnabled]]
This function allows you to check if certain world sound effects have not been disabled by [[setWorldSoundEnabled]]
 
}}
==Syntax==
==Syntax==
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">

Revision as of 17:32, 19 May 2012

This function allows you to check if certain world sound effects have not been disabled by setWorldSoundEnabled

Syntax

bool isWorldSoundEnabled( int group, [ int index = -1 ] )

Required Arguments

  • group : An integer representing the world sound group

OptionalArguments

  • index : An integer representing an individual sound within the group

Returns

Returns true if the world sounds are enabled, false if they are disabled or invalid values were passed.

See Also