public class PlayerPlaceConstructionEvent extends PlayerConstructionEvent implements Cancellable
Constructor and Description |
---|
PlayerPlaceConstructionEvent(Player player,
commons.constructions.ConstructionElement construct) |
PlayerPlaceConstructionEvent(Player player,
short typeid,
int texture,
int cx,
int cy,
int cz,
short px,
short py,
short pz,
short rx,
short ry,
short rz,
short sx,
short sy,
short sz,
byte repetitionsh,
byte repetitionsv,
byte gap) |
Modifier and Type | Method and Description |
---|---|
boolean |
isCancelled()
Determines if the event is cancelled.
|
void |
setCancelled(boolean cancel)
Cancels this event.
|
void |
setConstructionPosition(float x,
float y,
float z)
Changes the position of the construction element.
|
void |
setConstructionPosition(Vector3f position)
Changes the position of the construction element.
|
void |
setConstructionRotation(float pitch,
float yaw,
float roll)
Changes the rotation of the construction element.
|
void |
setConstructionRotation(Quaternion rotation)
Changes the rotation of the construction element.
|
void |
setConstructionSize(float x,
float y,
float z)
Changes the size of the construction element.
|
void |
setConstructionSize(Vector3f size)
Changes the size of the construction element.
|
void |
setConstructionTextureID(int texture)
Sets the texture of the construction element.
|
void |
setConstructionTypeID(short id)
Sets the type ID of the construction element.
|
getChunkPositionX, getChunkPositionY, getChunkPositionZ, getConstructionDefinition, getConstructionPosition, getConstructionPositionX, getConstructionPositionY, getConstructionPositionZ, getConstructionRotation, getConstructionRotationX, getConstructionRotationY, getConstructionRotationZ, getConstructionSize, getConstructionSizeX, getConstructionSizeY, getConstructionSizeZ, getConstructionTextureID, getConstructionTypeID, getPX, getPY, getPZ, getRX, getRY, getRZ, getSX, getSY, getSZ
getPlayer
public PlayerPlaceConstructionEvent(Player player, commons.constructions.ConstructionElement construct)
public PlayerPlaceConstructionEvent(Player player, short typeid, int texture, int cx, int cy, int cz, short px, short py, short pz, short rx, short ry, short rz, short sx, short sy, short sz, byte repetitionsh, byte repetitionsv, byte gap)
public void setConstructionTypeID(short id)
id
- the new type ID.public void setConstructionTextureID(int texture)
texture
- the new texture ID. If this is a "poster" construction element,
the texture ID is the custom image ID.public void setConstructionPosition(Vector3f position)
position
- the new world position of the construction element.public void setConstructionPosition(float x, float y, float z)
x
- the new world x position of the construction element.y
- the new world y position of the construction element.z
- the new world z position of the construction element.public void setConstructionRotation(Quaternion rotation)
rotation
- the new construction element rotation. Set to null to reset the rotation
(Quaternion.IDENTITY).public void setConstructionRotation(float pitch, float yaw, float roll)
pitch
- the new x angle, as euler rotation (pitch).yaw
- the new y angle, as euler rotation (yaw).roll
- the new z angle, as euler rotation (roll).public void setConstructionSize(Vector3f size)
size
- the new size (x, y, z, as a Vector3f) of the construction element.public void setConstructionSize(float x, float y, float z)
x
- the new size of the construction element along the x axis.y
- the new size of the construction element along the y axis.z
- the new size of the construction element along the z axis.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.