Package noppes.npcs.api.handler.data
Interface ISound
-
public interface ISound
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IEntity
getEntity()
float
getPitch()
int
getRepeatDelay()
float
getVolume()
float
getX()
float
getY()
float
getZ()
boolean
repeats()
void
setEntity(IEntity entity)
void
setPitch(float pitch)
void
setPosition(float x, float y, float z)
void
setPosition(IPos pos)
void
setRepeat(boolean repeat)
void
setRepeatDelay(int delay)
void
setVolume(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()
-
-