HU/setSoundPan: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Created page with "__NOTOC__ {{Client function hu}} {{Needs Checking|3D sounds are supposed to pan automatically deppending on the camera position, so how does this function work with 3D sounds...")
 
mNo edit summary
 
(11 intermediate revisions by one other user not shown)
Line 1: Line 1:
__NOTOC__  
__NOTOC__  
{{Client function hu}}
{{Client function hu}}
{{Needs Checking|3D sounds are supposed to pan automatically deppending on the camera position, so how does this function work with 3D sounds? --[[User:AlexTMjugador|AlexTMjugador]] ([[User talk:AlexTMjugador|talk]]) 10:09, 25 May 2014 (UTC)}}
Ez a funkció a meghatározott hangelem panszintjének módosítására szolgál.


This function is used to change the pan level of the specified [[sound]] element.
==Szintaxis==  
 
==Syntax==  
<syntaxhighlight lang="lua">bool setSoundPan ( element theSound, float pan )</syntaxhighlight>  
<syntaxhighlight lang="lua">bool setSoundPan ( element theSound, float pan )</syntaxhighlight>  
{{OOP||[[sound]]:setPan|pan|getSoundPan}}
{{OOP||[[sound]]:setPan|pan|getSoundPan}}
===Required Arguments===  
===Kötelező argumentumok===  
*'''theSound:''' The [[sound]] element which pan you want to modify.
*'''theSound:''' A [[sound|hang]]hangelem, amelyiket szeretné módosítani.
*'''pan:''' A [[float|floating]] point number representing the desired pan level. Range is from ''-1.0 (left)'' to ''1.0 (right)''
*'''pan:''' Egy [[float|lebegőpontos]] szám, mely a kívánt pan szintet jelzi. A tartomány ''-1.0 (bal)''től ''1.0 (jobb)''-ig terjed.


===Returns===
===Visszaadott érték===
Returns ''true'' if the [[sound]] element pan was successfully changed, ''false'' otherwise.
Visszaad egy ''true'' értéket, ha a [[sound|hang]]elem pan szintje sikeresen meg lett változtatva, egyébként ''false''.


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


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


[[en:setSoundPan]]
[[en:setSoundPan]]
==Fordította==
* '''''[https://wiki.multitheftauto.com/wiki/User:Surge Surge]'''''

Latest revision as of 15:43, 7 September 2018

Ez a funkció a meghatározott hangelem panszintjének módosítására szolgál.

Szintaxis

bool setSoundPan ( element theSound, float pan )

OOP Syntax Help! I don't understand this!

Method: sound:setPan(...)
Variable: .pan
Counterpart: getSoundPan


Kötelező argumentumok

  • theSound: A hanghangelem, amelyiket szeretné módosítani.
  • pan: Egy lebegőpontos szám, mely a kívánt pan szintet jelzi. A tartomány -1.0 (bal)től 1.0 (jobb)-ig terjed.

Visszaadott érték

Visszaad egy true értéket, ha a hangelem pan szintje sikeresen meg lett változtatva, egyébként false.

Példa

Click to collapse [-]
Client
function playMusic ()
        local left = playSFX("genrl", 75, 6, true)    -- Play loading theme music
        local right = playSFX("genrl", 75, 7, true)
        setSoundPan(left, -1)                         -- switch the first music to left channel
        setSoundPan(right, 1)                         -- switch the second music to right channel
end

addCommandHandler("music", playMusic)                 -- add the command handler

Lásd még

Fordította