HU/getSoundPosition: 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 current seek position of the specified sound element. If the element is a player, this function will...")
 
No edit summary
 
(12 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 current seek position of the specified [[sound]] element.
Ez a funkció a megadott [[sound|hangelem]] aktuális keresési pozíciójának visszaadására szolgál. Ha az elem egy játékos, akkor ez a funkció a játékos hangját fogja használni.
If the element is a player, this function will use the players voice.


==Syntax==  
==Szintaxis==  
<syntaxhighlight lang="lua">float getSoundPosition ( element theSound )</syntaxhighlight>  
<syntaxhighlight lang="lua">float getSoundPosition ( element theSound )</syntaxhighlight>  
{{OOP||[[sound]]:getPlaybackPosition|playbackPosition|setSoundPosition}}
{{OOP||[[sound]]:getPlaybackPosition|playbackPosition|setSoundPosition}}
===Required Arguments===  
===Kötelező argumentumok===  
*'''theSound:''' The [[sound]] element which seek position you want to return.
*'''theSound:''' A [[sound|hangelem]], melynek keresési pozícióját akarjuk visszakapni.


===Returns===
===Visszaadott érték===
Returns a [[float]] value indicating the seek position of the [[sound]] element in seconds.
Visszaad egy [[float]] értéket, mely jelzi a keresési [[sound|hangelem]] pozícióját másodpercekben.


==Example==  
==Példa==  
Plays a sound then outputs the seek position.
A lejátszó zene keresési pozícióját írja ki.
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
local sound = playSound("randomSound.mp3",false) --Play a sound
local sound = playSound("randomSound.mp3",false) --Lejátsza az adott hangot
local soundPosition = getSoundPosition(sound) --Get the current sound position
local soundPosition = getSoundPosition(sound) --Visszadja az aktuális hangpozíciót
outputChatBox("The current seek position of the sound is: " .. soundPosition .. ".")
outputChatBox("The current seek position of the sound is: " .. soundPosition .. ".")
</syntaxhighlight>
</syntaxhighlight>
Line 25: Line 24:
{{ChangelogItem|1.3.2|Added player element to use a players voice}}
{{ChangelogItem|1.3.2|Added player element to use a players voice}}


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


[[en:getSoundPosition]]
[[en:getSoundPosition]]
[[AR:getSoundPosition]]
[[AR:getSoundPosition]]
[[pt-br:getSoundPosition]]
==Fordította==
* '''''[https://wiki.multitheftauto.com/wiki/User:Surge Surge]'''''

Latest revision as of 22:44, 17 August 2021

Ez a funkció a megadott hangelem aktuális keresési pozíciójának visszaadására szolgál. Ha az elem egy játékos, akkor ez a funkció a játékos hangját fogja használni.

Szintaxis

float getSoundPosition ( element theSound )

OOP Syntax Help! I don't understand this!

Method: sound:getPlaybackPosition(...)
Variable: .playbackPosition
Counterpart: setSoundPosition


Kötelező argumentumok

  • theSound: A hangelem, melynek keresési pozícióját akarjuk visszakapni.

Visszaadott érték

Visszaad egy float értéket, mely jelzi a keresési hangelem pozícióját másodpercekben.

Példa

A lejátszó zene keresési pozícióját írja ki.

local sound = playSound("randomSound.mp3",false) --Lejátsza az adott hangot
local soundPosition = getSoundPosition(sound) --Visszadja az aktuális hangpozíciót
outputChatBox("The current seek position of the sound is: " .. soundPosition .. ".")

Changelog

Version Description
1.3.2 Added player element to use a players voice

Lásd még

Fordította