Package org.spongepowered.api.block
Interface BlockSoundGroup
-
public interface BlockSoundGroup
Represents sounds for a block.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SoundType
breakSound()
Gets the sound played when the block is breaking.SoundType
fallSound()
Gets the sound played when aLiving
entity falls onto the block.SoundType
hitSound()
Gets the sound played when the block is hit.double
pitch()
Gets the pitch used when playing sounds.SoundType
placeSound()
Gets the sound played when the block is placed.SoundType
stepSound()
Gets the sound played when the block is stepped on.double
volume()
Gets the volume used when playing sounds.
-
-
-
Method Detail
-
volume
double volume()
Gets the volume used when playing sounds.- Returns:
- The volume
-
pitch
double pitch()
Gets the pitch used when playing sounds.- Returns:
- The pitch
-
breakSound
SoundType breakSound()
Gets the sound played when the block is breaking.- Returns:
- The break sound
-
stepSound
SoundType stepSound()
Gets the sound played when the block is stepped on.- Returns:
- The step sound
-
placeSound
SoundType placeSound()
Gets the sound played when the block is placed.- Returns:
- The place sound
-
hitSound
SoundType hitSound()
Gets the sound played when the block is hit.- Returns:
- The hit sound
-
-