DE/getSoundMaxDistance: Difference between revisions
Jump to navigation
Jump to search
(Created page with "__NOTOC__ {{Client function}} Gibt die maximale Reichweite eines sound Elements zurück an der der Sound stoppt. ==Syntax== <syntaxhighlight lang="lua">int getSoundMaxD...") |
No edit summary |
||
Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
{{Client function}} | {{DE/Client function}} | ||
Gibt die maximale Reichweite eines [[sound]] Elements zurück an der der Sound stoppt. | Gibt die maximale Reichweite eines [[sound]] Elements zurück an der der Sound stoppt. | ||
Revision as of 02:09, 24 October 2016
Gibt die maximale Reichweite eines sound Elements zurück an der der Sound stoppt.
Syntax
int getSoundMaxDistance ( element sound )
OOP Syntax Help! I don't understand this!
- Method: sound:getMaxDistance(...)
- Variable: .maxDistance
- Counterpart: setSoundMaxDistance
Benötigte Argumente
- sound: ein sound Element.
Rückgabe
Gibt einen integer Wert der maximalen Reichweite zurück, false wenn die Argumente ungültig sind.
Beispiel
Click to collapse [-]
Clientlocal sound = playSound3D("sounds/song.mp3", 373.14, -125.21, 1001, true) function getmaxdistanceFunc() outputChatBox("Maximale Reichweite: "..getSoundMaxDistance(sound)) end addCommandHandler("getmaxdistance", getmaxdistanceFunc)
Siehe auch
- getRadioChannel
- getRadioChannelName
- getSFXStatus
- getSoundBPM
- getSoundBufferLength
- getSoundEffectParameters
- getSoundEffects
- getSoundFFTData
- getSoundLength
- getSoundLevelData
- getSoundMaxDistance
- getSoundMetaTags
- getSoundMinDistance
- getSoundPan
- getSoundPosition
- getSoundProperties
- getSoundSpeed
- getSoundVolume
- getSoundWaveData
- isSoundLooped
- isSoundPanningEnabled
- isSoundPaused
- playSFX3D
- playSFX
- playSound3D
- playSound
- setRadioChannel
- setSoundEffectEnabled
- setSoundEffectParameter
- setSoundLooped
- setSoundMaxDistance
- setSoundMinDistance
- setSoundPan
- setSoundPanningEnabled
- setSoundPaused
- setSoundPosition
- setSoundProperties
- setSoundSpeed
- setSoundVolume
- stopSound
- Shared
- playSoundFrontEnd