public abstract class WorldElement
extends java.lang.Object
Modifier and Type | Method and Description |
---|---|
void |
deleteAttribute(java.lang.String key)
Removes an attribute from this element.
|
void |
destroy()
Destroys this element, i.e. remove it from all players.
|
java.lang.Object |
getAttribute(java.lang.String key)
Gets the value to which the specified key is mapped,
or null if no attribute is stored for that key.
|
int |
getID()
Gets the id of this element.
|
Vector3f |
getPosition()
Gets the global position of this element.
|
Quaternion |
getRotation()
Gets the rotation of this element.
|
float |
getVisibleRange()
Gets the max distance the element will still be visible.
|
boolean |
hasAttribute(java.lang.String key)
Gets whether or not the provided attribute exists.
|
void |
moveTo(float x,
float y,
float z,
float speed)
Moves the element (smoothly) to the target position.
|
void |
moveTo(Vector3f position,
float speed)
Moves the element (smoothly) to the target position.
|
void |
refresh()
Internal use only.
|
void |
setAttribute(java.lang.String key,
java.lang.Object value)
Stores an attribute for this element.
|
void |
setPosition(float x,
float y,
float z)
Sets the global position of this element.
|
void |
setPosition(Vector3f position)
Sets the global position of this element.
|
void |
setRotation(float pitch,
float yaw,
float roll) |
void |
setRotation(Quaternion rotation)
Sets the rotation of this element.
|
void |
setVisibleRange(float range)
Sets the max distance the element will be visible.
|
public int getID()
public void setPosition(Vector3f position)
position
- a vector which holds the position coordinates.public void setPosition(float x, float y, float z)
x
- the global x position (horizontally).y
- the global y position (vertically).z
- the global z position (horizontally).public Vector3f getPosition()
public void moveTo(Vector3f position, float speed)
position
- the target position.speed
- the speed (how long it should take to move the element to the
target position).public void moveTo(float x, float y, float z, float speed)
x
- the target x coordinate.y
- the target y coordinate.z
- the target z coordinate.speed
- the speed (how long it should take to move the element to the
target position).public void setRotation(Quaternion rotation)
rotation
- the quaternion which represents the new rotation.public void setRotation(float pitch, float yaw, float roll)
public Quaternion getRotation()
public void setVisibleRange(float range)
range
- the max visible range.public float getVisibleRange()
public void destroy()
public void setAttribute(java.lang.String key, java.lang.Object value)
key
- the name of the attribute.value
- the value/object you want to store.public java.lang.Object getAttribute(java.lang.String key)
key
- the name of the attribute.public boolean hasAttribute(java.lang.String key)
key
- the name of the attribute.public void deleteAttribute(java.lang.String key)
key
- the name of the attribute you want to delete.public void refresh()