GetSoundMaxDistance: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
m (Reverted edits by Ameir (talk) to last revision by Alvesvin)
Tag: Rollback
 
(5 intermediate revisions by 5 users not shown)
Line 18: Line 18:


function getmaxdistanceFunc()
function getmaxdistanceFunc()
  outputChatBox("Max distance: "..getSoundMaxDistance(sound))
    outputChatBox("Max distance: " .. getSoundMaxDistance(sound))
end
end
addCommandHandler("getmaxdistance", getmaxdistanceFunc)
addCommandHandler("getmaxdistance", getmaxdistanceFunc)
Line 25: Line 25:


==See Also==
==See Also==
{{Client_audio_functions}}
{{Client_audio_functions}}
[HU:getSoundMaxDistance]]
[[HU:getSoundMaxDistance]]
[[AR:getSoundMaxDistance]]
[[AR:getSoundMaxDistance]]
[[RO:getSoundMaxDistance]]
[[PT-BR:getSoundMaxDistance]]

Latest revision as of 16:36, 26 September 2021

Gets a custom sound max distance at which the sound stops.

Syntax

int getSoundMaxDistance ( element sound )

OOP Syntax Help! I don't understand this!

Method: sound:getMaxDistance(...)
Variable: .maxDistance
Counterpart: setSoundMaxDistance


Required Arguments

Returns

Returns an integer of the max distance, false if invalid arguments where passed.

Example

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

function getmaxdistanceFunc()
    outputChatBox("Max distance: " .. getSoundMaxDistance(sound))
end
addCommandHandler("getmaxdistance", getmaxdistanceFunc)

See Also