GetSoundSpeed: Difference between revisions
Jump to navigation
Jump to search
(Created page with '__NOTOC__ {{Client function}} This function is used to return the playback speed of the specified sound element. ==Syntax== <syntaxhighlight lang="lua">float getSoundSpeed ( element theS…') |
Xthepr0mise (talk | contribs) |
||
Line 13: | Line 13: | ||
==Example== | ==Example== | ||
<section name="Client" class="client" show="true"> | <section name="Client" class="client" show="true"> | ||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
-- | function outputSpeed(soundname) | ||
local sound = playSound("sounds/"..tostring(soundname)..".mp3") --Play the sound from the sounds folder | |||
setSoundVolume(sound, 0.5) -- set the sound volume to 50% | |||
outputChatBox("The sound speed : "..getSoundSpeed(sound)) -- output the sound speed | |||
end | |||
addCommandHandler("soundspeed",outputSpeed) | |||
</syntaxhighlight> | </syntaxhighlight> | ||
</section> | </section> |
Revision as of 10:25, 17 January 2012
This function is used to return the playback speed of the specified sound element.
Syntax
float getSoundSpeed ( element theSound )
Required Arguments
- theSound: The sound element which playback speed you want to return.
Returns
Returns an float value indicating the playback speed of the sound element. Default sound playback speed is 1.0.
Example
Click to collapse [-]
Clientfunction outputSpeed(soundname) local sound = playSound("sounds/"..tostring(soundname)..".mp3") --Play the sound from the sounds folder setSoundVolume(sound, 0.5) -- set the sound volume to 50% outputChatBox("The sound speed : "..getSoundSpeed(sound)) -- output the sound speed end addCommandHandler("soundspeed",outputSpeed)
See Also
- getRadioChannel
- getRadioChannelName
- getSFXStatus
- getSoundBPM
- getSoundBufferLength
- getSoundEffectParameters
- getSoundEffects
- getSoundFFTData
- getSoundLength
- getSoundLevelData
- getSoundMaxDistance
- getSoundMetaTags
- getSoundMinDistance
- getSoundPan
- getSoundPosition
- getSoundProperties
- getSoundSpeed
- getSoundVolume
- getSoundWaveData
- isSoundLooped
- isSoundPanningEnabled
- isSoundPaused
- playSFX3D
- playSFX
- playSound3D
- playSound
- setRadioChannel
- setSoundEffectEnabled
- setSoundEffectParameter
- setSoundLooped
- setSoundMaxDistance
- setSoundMinDistance
- setSoundPan
- setSoundPanningEnabled
- setSoundPaused
- setSoundPosition
- setSoundProperties
- setSoundSpeed
- setSoundVolume
- stopSound
- Shared
- playSoundFrontEnd