SetSoundSpeed: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 14: Line 14:


==Example==  
==Example==  
<section name="Client" class="client" show="true">
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
function soundFunc()
function soundFunc()
Line 22: Line 21:
addCommandHandler("play",soundFunc)
addCommandHandler("play",soundFunc)
</syntaxhighlight>
</syntaxhighlight>
</section>


==See Also==
==See Also==
{{Client_audio_functions}}
{{Client_audio_functions}}

Revision as of 07:35, 18 January 2012

This function can be used to change the playback speed of the specified sound element.

Syntax

bool setSoundSpeed ( element theSound, float speed )

Required Arguments

  • theSound: The sound element which volume you want to modify.
  • speed: A floating point number representing the desired sound playback speed.

Returns

Returns true if the sound element playback speed was successfully changed, false otherwise.

Example

function soundFunc()
sound = playSound ( "/sounds/jizzy.mp3",true) -- Let's play a sound
setSoundSpeed ( sound, 1.2 ) -- And it will be a little bit faster !
end
addCommandHandler("play",soundFunc)

See Also