DE/setSoundMinDistance
From Multi Theft Auto: Wiki
Setzt für ein Sound Element die minimale Reichweite ab wann man den Sound hören kann.
Syntax
bool setSoundMinDistance ( element sound, int distanz)
OOP Syntax Hilfe! Ich verstehe das nicht!
- Methode: sound:setMinDistance(...)
- Variable: .minDistance
- Gegenstück: getSoundMinDistance
Benötigte Argumente
- sound: ein Sound Element.
- distanz: eine ganze Zahl, welche die minimale Reichweite repräsentiert ab wann der Sound hörbar ist. Der Standardwert ist 5.
Rückgabe
Gibt ein true zurück wenn die minimale Reichweite gesetzt wurde, false wenn nicht
Beispiel
Click to collapse [-]
Clientlocal sound = playSound3D("sounds/song.mp3", 373.14, -125.21, 1001, true) function distanceFunc(command, param) setSoundMinDistance(sound, tonumber(param)) end addCommandHandler("setdistance", distanceFunc)