public class PlantGrowEvent extends Event implements Cancellable
Constructor and Description |
---|
PlantGrowEvent(short plantid,
short nextstageid,
int growthTime,
int cx,
int cy,
int cz,
short px,
short py,
short pz,
short rx,
short ry,
short rz) |
Modifier and Type | Method and Description |
---|---|
int |
getChunkPositionX()
Gets the x offset of the chunk (which contains the plant).
|
int |
getChunkPositionY()
Gets the y offset of the chunk (which contains the plant).
|
int |
getChunkPositionZ()
Gets the z offset of the chunk (which contains the plant).
|
int |
getNextGrowthTime()
Gets the growth time for the next plant stage (in seconds).
|
Definitions.PlantDefinition |
getNextStagePlantDefinition() |
short |
getNextStageTypeID()
Gets the next type ID of the plant, i.e. of the next growth stage.
|
Definitions.PlantDefinition |
getPlantDefinition() |
Vector3f |
getPlantPosition()
Gets the world position of the plant as a Vector3f.
|
float |
getPlantPositionX()
Gets the world x position of the plant.
|
float |
getPlantPositionY()
Gets the world y position of the plant.
|
float |
getPlantPositionZ()
Gets the world z position of the plant.
|
Quaternion |
getPlantRotation()
Gets the current rotation of the plant as a Quaternion.
|
short |
getPlantTypeID()
Gets the current type ID of the plant.
|
boolean |
isCancelled()
Determines if the event is cancelled.
|
boolean |
isGrowable()
Gets whether or not this new plant stage can grow.
|
void |
setCancelled(boolean cancel)
Cancels this event.
|
void |
setNextGrowthTime(int growthTime)
Sets the growth time (seconds) for the next plant stage, i.e. how long it takes until
this plant grows and reaches the next growth stage.
|
void |
setNextStageTypeID(int typeID)
Changes the type ID of the next growth stage.
|
public PlantGrowEvent(short plantid, short nextstageid, int growthTime, int cx, int cy, int cz, short px, short py, short pz, short rx, short ry, short rz)
public short getPlantTypeID()
public short getNextStageTypeID()
public void setNextStageTypeID(int typeID)
typeID
- the new type ID.public int getNextGrowthTime()
public void setNextGrowthTime(int growthTime)
getNextGrowthTime()
.growthTime
- the growth time, in seconds.isGrowable()
public boolean isGrowable()
public int getChunkPositionX()
public int getChunkPositionY()
public int getChunkPositionZ()
public Vector3f getPlantPosition()
public float getPlantPositionX()
public float getPlantPositionY()
public float getPlantPositionZ()
public Quaternion getPlantRotation()
public Definitions.PlantDefinition getPlantDefinition()
public Definitions.PlantDefinition getNextStagePlantDefinition()
public boolean isCancelled()
Cancellable
isCancelled
in interface Cancellable
public void setCancelled(boolean cancel)
Cancellable
setCancelled
in interface Cancellable
cancel
- set to true if you want to cancel this event.