HU/getSoundMaxDistance: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Created page with "__NOTOC__ {{Client function}} Gets a custom sound max distance at which the sound stops. ==Syntax== <syntaxhighlight lang="lua">int getSoundMaxDistance ( element sound...")
 
No edit summary
Line 1: Line 1:
__NOTOC__  
__NOTOC__  
{{Client function}}
{{Client function}}
Gets a custom [[sound]] max distance at which the sound stops.
Visszaadja a maximális távolságot, ahol a [[sound]] megáll.


==Syntax==  
==Syntax==  

Revision as of 17:45, 18 July 2018

Visszaadja a maximális távolságot, ahol a sound megáll.

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

Fordította

Surge