HU/getSoundSpeed: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Created page with "__NOTOC__ {{Client function hu}} This function is used to return the playback speed of the specified sound element. ==Syntax== <syntaxhighlight lang="lua">float get...")
 
mNo edit summary
 
(21 intermediate revisions by one other user not shown)
Line 1: Line 1:
__NOTOC__  
__NOTOC__  
{{Client function hu}}
{{Client function hu}}
This function is used to return the playback speed of the specified [[sound]] [[element]].


==Syntax==  
Ez a funkció a megadott [[sound|hang]][[element|elem]] lejátszási sebességének visszaadására szolgál.
 
==Szintaxis==  
<syntaxhighlight lang="lua">float getSoundSpeed ( element theSound )</syntaxhighlight>  
<syntaxhighlight lang="lua">float getSoundSpeed ( element theSound )</syntaxhighlight>  
{{OOP||[[sound]]:getSpeed|speed|setSoundSpeed}}
{{OOP||[[sound]]:getSpeed|speed|setSoundSpeed}}
===Required Arguments===  
===Kötelező argumentumok===  
*'''theSound:''' the [[sound]] [[element]] which playback speed you want to return.
*'''theSound:''' visszaadja a visszajátszási [[sound|hang]][[element|elem]] sebességét.


===Returns===
===Visszaadott érték===
Returns an [[float]] value indicating the playback speed of the [[sound]] [[element]]. Default sound playback speed is '''1.0'''.
A hangelem visszajátszási sebességét adja vissza [[float]] értékben. Alapértelmezett hang visszajátszási sebesség az '''1.0'''.


==Example==  
==Példa==  
<section name="Client" class="client" show="true">
<section name="Client" class="client" show="true">
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
Line 24: Line 25:
</section>
</section>


==See Also==
==Lásd még==
{{Client_audio_functions hu}}
{{Client_audio_functions hu}}


[[en:getSoundSpeed]]
[[en:getSoundSpeed]]
[[ar:getSoundSpeed]]
[[ar:getSoundSpeed]]
[[PT-BR:getSoundSpeed]]
==Fordította==
* '''''[https://wiki.multitheftauto.com/wiki/User:Surge Surge]'''''

Latest revision as of 23:15, 17 August 2021

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: visszaadja a visszajátszási hangelem sebességét.

Visszaadott érték

A hangelem visszajátszási sebességét adja vissza float értékben. Alapértelmezett hang visszajátszási sebesség az 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)

Lásd még

Fordította