AR/getSoundMinDistance

From Multi Theft Auto: Wiki
Revision as of 03:32, 6 May 2013 by Tete (talk | contribs) (getSoundMinDistance)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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

Syntax

int getSoundMinDistance ( element sound )

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)

أنظر أيضاً