GetSoundMinDistance: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
m (Reverted edits by Ameir (talk) to last revision by Alvesvin)
Tag: Rollback
 
(11 intermediate revisions by 11 users not shown)
Line 1: Line 1:
__NOTOC__  
__NOTOC__  
{{Client function}}
{{Client function}}
Gets a custom sound Minimum distance at which the sound stops getting louder.
Gets a custom [[sound]] Minimum distance at which the sound stops getting louder.


==Syntax==  
==Syntax==  
<syntaxhighlight lang="lua">int getSoundMinDistance ( element sound )</syntaxhighlight>  
<syntaxhighlight lang="lua">int getSoundMinDistance ( element sound )</syntaxhighlight>  
 
{{OOP||[[sound]]:getMinDistance|minDistance|setSoundMinDistance}}
===Required Arguments===  
===Required Arguments===  
*'''sound:''' a sound element.
*'''sound:''' a [[sound]] element.


===Returns===
===Returns===
Line 13: Line 13:


==Example==  
==Example==  
TODO
<section name="Client" class="client" show="true">
<section name="Client" class="client" show="true">
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
--TODO
local sound = playSound3D("sounds/song.mp3", 373.14, -125.21, 1001, true)
 
function distanceFunc()
    outputChatBox("Minimum distance: " .. getSoundMinDistance(sound))
end
addCommandHandler("getdistance", distanceFunc)
</syntaxhighlight>
</syntaxhighlight>
</section>
</section>
Line 22: Line 26:
==See Also==
==See Also==
{{Client_audio_functions}}
{{Client_audio_functions}}
[[HU:getSoundMinDistance]]
[[AR:getSoundMinDistance]]
[[RO:getSoundMinDistance]]
[[PT-BR:getSoundMinDistance]]

Latest revision as of 16:36, 26 September 2021

Gets a custom sound Minimum distance at which the sound stops getting louder.

Syntax

int getSoundMinDistance ( element sound )

OOP Syntax Help! I don't understand this!

Method: sound:getMinDistance(...)
Variable: .minDistance
Counterpart: setSoundMinDistance


Required Arguments

Returns

Returns an integer of the minimum distance, false if invalid arguements where passed.

Example

Click to collapse [-]
Client
local sound = playSound3D("sounds/song.mp3", 373.14, -125.21, 1001, true)

function distanceFunc()
    outputChatBox("Minimum distance: " .. getSoundMinDistance(sound))
end
addCommandHandler("getdistance", distanceFunc)

See Also

Shared