Uses of Enum Class
games.stendhal.common.constants.SoundLayer
Package
Description
common classes for both server and client.
Events are notifications send from the server to the clients.
-
Uses of SoundLayer in games.stendhal.common.constants
Modifier and TypeMethodDescriptionstatic SoundLayer
Returns the enum constant of this class with the specified name.static SoundLayer[]
SoundLayer.values()
Returns an array containing the constants of this enum class, in the order they are declared. -
Uses of SoundLayer in games.stendhal.server.entity.mapstuff.sound
ModifierConstructorDescriptionLoopedSoundSource(String sound, int radius, int volume, SoundLayer layer)
Create an ambient sound area. -
Uses of SoundLayer in games.stendhal.server.events
ModifierConstructorDescriptionSoundEvent(SoundID id, int radius, int volume, SoundLayer layer)
Creates a new sound event using an ID with specified range and volume.SoundEvent(SoundID id, int volume, SoundLayer layer)
Creates a new sound event using an ID with a volume and infinite range.SoundEvent(SoundID id, SoundLayer layer)
Creates a new sound event using an ID with an infinite range.SoundEvent(String sound, int radius, int volume, SoundLayer layer)
Creates a new sound event with specified range and volume.SoundEvent(String sound, int volume, SoundLayer layer)
Creates a new sound event with a volume and infinite range.SoundEvent(String sound, SoundLayer layer)
Creates a new sound event with an infinite range.