HU/getSoundSpeed

From Multi Theft Auto: Wiki
Revision as of 11:38, 19 July 2018 by Surge (talk | contribs)
Jump to navigation Jump to search

Ez a funkció a megadott hangelem lejátszási sebességének visszaadására szolgál.

Szintaxis

float getSoundSpeed ( element theSound )

OOP Syntax Help! I don't understand this!

Method: sound:getSpeed(...)
Variable: .speed
Counterpart: setSoundSpeed


Kötelező argumentumok

  • theSound: the sound element which playback speed you want to return.

Visszaadott érték

Returns an float value indicating the playback speed of the sound element. Default sound playback speed is 1.0.

Példa

Click to collapse [-]
Client
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)

See Also