GetSoundPan: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
Line 15: Line 15:
<section name="Client" class="client" show="true">
<section name="Client" class="client" show="true">
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
function playMusic ()
function playMusic()
        local song = playSound('song.mp3')
    local song = playSound("song.mp3")
        setSoundPan(song, 0.3)
    setSoundPan(song, 0.3)
        outputChatBox("Current pan is "..tostring(getSoundPan(song)))
    outputChatBox("Current pan is " .. getSoundPan(song))
end
end
addCommandHandler("music", playMusic)
addCommandHandler("music", playMusic)
</syntaxhighlight>
</syntaxhighlight>

Revision as of 12:01, 2 September 2018

This function is used to get the pan level of the specified sound element.

Syntax

float getSoundPan ( element theSound )

OOP Syntax Help! I don't understand this!

Method: sound:getPan(...)
Variable: .pan
Counterpart: setSoundPan


Required Arguments

  • theSound: the sound element which pan you want to get.

Returns

Returns float value with range from -1.0 (left) to 1.0 (right), false otherwise.

Example

Click to collapse [-]
Client
function playMusic()
    local song = playSound("song.mp3")
    setSoundPan(song, 0.3)
    outputChatBox("Current pan is " .. getSoundPan(song))
end
addCommandHandler("music", playMusic)

See Also