GetInteriorSoundsEnabled: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
m (This function is shared) |
||
(7 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
{{ | {{Shared function}} | ||
This function checks to see if the music played by default in clubs is disabled or not. | This function checks to see if the music played by default in clubs is disabled or not. | ||
Line 11: | Line 11: | ||
==Returns== | ==Returns== | ||
Returns true if music is playing, returns false if music is not playing. | Returns true if music is playing, returns false if music is not playing. | ||
==Example== | |||
Command check_sounds checks if the interior sounds enabled or not | |||
<syntaxhighlight lang="lua"> | |||
addCommandHandler("check_sounds", | |||
function() | |||
if getInteriorSoundsEnabled() then | |||
outputChatBox("Interior sounds are enabled!!!",0,255,0) | |||
else | |||
outputChatBox("Interior sounds are disabled!!!",255,0,0) | |||
end | |||
end) | |||
</syntaxhighlight> | |||
==See Also== | ==See Also== | ||
{{Client world functions}} | {{Client world functions}} |
Latest revision as of 23:11, 29 April 2024
This function checks to see if the music played by default in clubs is disabled or not.
Syntax
bool getInteriorSoundsEnabled ( )
Returns
Returns true if music is playing, returns false if music is not playing.
Example
Command check_sounds checks if the interior sounds enabled or not
addCommandHandler("check_sounds", function() if getInteriorSoundsEnabled() then outputChatBox("Interior sounds are enabled!!!",0,255,0) else outputChatBox("Interior sounds are disabled!!!",255,0,0) end end)
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