HU/setSoundSpeed: 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__  
{{Client function hu}}
{{Client function hu}}
This function can be used to change the playback speed of the specified [[sound]] [[element]].
Ez a funkció a meghatározott [[sound|hangelem]] lejátszási sebességének megváltoztatására használható.


==Syntax==  
==Syntax==  

Revision as of 12:47, 22 July 2018

Ez a funkció a meghatározott hangelem lejátszási sebességének megváltoztatására használható.

Syntax

bool setSoundSpeed ( element theSound, float speed )

OOP Syntax Help! I don't understand this!

Method: sound:setSpeed(...)
Variable: .speed
Counterpart: getSoundSpeed


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