Package noppes.npcs.api.handler.data
Interface ISound
-
public interface ISound
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IEntitygetEntity()floatgetPitch()intgetRepeatDelay()floatgetVolume()floatgetX()floatgetY()floatgetZ()booleanrepeats()voidsetEntity(IEntity entity)voidsetPitch(float pitch)voidsetPosition(float x, float y, float z)voidsetPosition(IPos pos)voidsetRepeat(boolean repeat)voidsetRepeatDelay(int delay)voidsetVolume(float volume)
-
-
-
Method Detail
-
setEntity
void setEntity(IEntity entity)
-
getEntity
IEntity getEntity()
-
setRepeat
void setRepeat(boolean repeat)
-
repeats
boolean repeats()
-
setRepeatDelay
void setRepeatDelay(int delay)
-
getRepeatDelay
int getRepeatDelay()
-
setVolume
void setVolume(float volume)
-
getVolume
float getVolume()
-
setPitch
void setPitch(float pitch)
-
getPitch
float getPitch()
-
setPosition
void setPosition(IPos pos)
-
setPosition
void setPosition(float x, float y, float z)
-
getX
float getX()
-
getY
float getY()
-
getZ
float getZ()
-
-