IsWorldSoundEnabled: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
Fernando187 (talk | contribs) (Remove obsolete Requirements section) |
||
(4 intermediate revisions by 3 users not shown) | |||
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"> | ||
Line 9: | Line 10: | ||
===Required Arguments=== | ===Required Arguments=== | ||
*'''group :''' An integer representing the world sound group | *'''group :''' An integer representing the [[World sound groups|world sound group]] | ||
===OptionalArguments=== | ===OptionalArguments=== | ||
Line 16: | Line 17: | ||
===Returns=== | ===Returns=== | ||
Returns ''true'' if the world sounds are enabled, ''false'' if they are disabled or invalid values were passed. | Returns ''true'' if the world sounds are enabled, ''false'' if they are disabled or invalid values were passed. | ||
==Example== | |||
This is a simplified example that lets the client toggle their weapon sounds. | |||
<syntaxhighlight lang="lua"> | |||
function toggleWeaponSounds_f ( ) | |||
local enabled = isWorldSoundEnabled ( 5 ) -- We place this variable here for checking. | |||
enabled = not enabled -- And here we invert (toggle) the variable, so if it's false, it becomes true, if it's true, it becomes false. | |||
-- Used for the chat declaration: | |||
local state = "enabled" | |||
if ( not enabled ) then | |||
state = "disabled" | |||
end | |||
-- | |||
setWorldSoundEnabled ( 5, enabled ) -- And here the toggling happens. | |||
outputChatBox ( "Weapon sounds " .. state ) | |||
end | |||
addCommandHandler ( "toggleweaponsounds", toggleWeaponSounds_f ) | |||
</syntaxhighlight> | |||
==See Also== | ==See Also== | ||
{{Client world functions}} | {{Client world functions}} |
Latest revision as of 17:04, 7 November 2024
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.
Example
This is a simplified example that lets the client toggle their weapon sounds.
function toggleWeaponSounds_f ( ) local enabled = isWorldSoundEnabled ( 5 ) -- We place this variable here for checking. enabled = not enabled -- And here we invert (toggle) the variable, so if it's false, it becomes true, if it's true, it becomes false. -- Used for the chat declaration: local state = "enabled" if ( not enabled ) then state = "disabled" end -- setWorldSoundEnabled ( 5, enabled ) -- And here the toggling happens. outputChatBox ( "Weapon sounds " .. state ) end addCommandHandler ( "toggleweaponsounds", toggleWeaponSounds_f )
See Also
- createSWATRope
- getBirdsEnabled
- getCoronaReflectionsEnabled
- getGarageBoundingBox
- getGaragePosition
- getGarageSize
- getGroundPosition
- getInteriorFurnitureEnabled
- getNearClipDistance
- getPedsLODDistance
- getRoofPosition
- getScreenFromWorldPosition
- getVehiclesLODDistance
- getWorldFromScreenPosition
- isAmbientSoundEnabled
- isLineOfSightClear
- isWorldSoundEnabled
- processLineOfSight
- resetAmbientSounds
- resetBlurLevel
- resetColorFilter
- resetCoronaReflectionsEnabled
- resetNearClipDistance
- resetPedsLODDistance
- resetVehiclesLODDistance
- resetWorldSounds
- setAmbientSoundEnabled
- setBirdsEnabled
- setColorFilter
- setCoronaReflectionsEnabled
- setInteriorFurnitureEnabled
- setInteriorSoundsEnabled
- setNearClipDistance
- setPedsLODDistance
- setVehiclesLODDistance
- setWorldSoundEnabled
- testLineAgainstWater
- areTrafficLightsLocked
- getAircraftMaxHeight
- getAircraftMaxVelocity
- getCloudsEnabled
- getFarClipDistance
- getFogDistance
- getGameSpeed
- getGravity
- getHeatHaze
- getInteriorSoundsEnabled
- getJetpackMaxHeight
- getMinuteDuration
- getMoonSize
- getOcclusionsEnabled
- getRainLevel
- getSunColor
- getSunSize
- getTime
- getTrafficLightState
- getWeather
- getWindVelocity
- getSkyGradient
- getPlayerBlurLevel
- getZoneName
- isGarageOpen
- removeWorldModel
- resetFarClipDistance
- resetFogDistance
- resetHeatHaze
- resetMoonSize
- resetRainLevel
- resetSkyGradient
- resetSunColor
- resetSunSize
- resetWindVelocity
- restoreAllWorldModels
- restoreWorldModel
- setAircraftMaxHeight
- setAircraftMaxVelocity
- setCloudsEnabled
- setFarClipDistance
- setFogDistance
- setGameSpeed
- setGarageOpen
- setGravity
- setHeatHaze
- setInteriorSoundsEnabled
- setMinuteDuration
- setMoonSize
- setOcclusionsEnabled
- setRainLevel
- setSkyGradient
- setSunColor
- setSunSize
- setTime
- setTrafficLightState
- setTrafficLightsLocked
- setWeather
- setWeatherBlended
- setWindVelocity
- setJetpackMaxHeight
- setPlayerBlurLevel