public class World3DModel extends WorldElement
Constructor and Description |
---|
World3DModel(ModelInformation model,
ImageInformation texture)
Creates a new
World3DModel element with the provided
model and texture. |
World3DModel(ModelInformation model,
ImageInformation texture,
Vector3f position,
Quaternion rotation)
Creates a new
World3DModel element with the provided
model and texture at the given position (with the given rotation). |
Modifier and Type | Method and Description |
---|---|
float |
getAlpha()
Gets the current alpha value (i.e. opacity) of this model.
|
CollisionShape |
getCollisionShape()
Gets the current collision shape of this model.
|
Crosshair |
getInteractionCrosshair()
Gets the current crosshair that will be shown to the player when he looks
at this element (as long as
setInteractable(boolean) is set to true). |
Interaction |
getInteractionPreset()
Gets the current interaction preset, or null if no interaction preset was set.
|
float |
getMass()
Gets the physical mass of this element.
|
ModelInformation |
getModel()
Gets the current ModelInformation object of this element.
|
Vector3f |
getScale()
Gets the scale (xyz) of this model.
|
ImageInformation |
getTexture()
Gets the current ImageInformation object of this element.
|
Vector2f |
getTextureOffset()
Gets the offset of the texture of this model.
|
Vector2f |
getTextureScale()
Gets the scale (xy) of the texture of this model.
|
boolean |
hasCollisionShape()
Gets whether or not this model has a collision shape.
|
boolean |
hasInteractionPreset() |
boolean |
isHittable()
Gets whether or not this element is hittable, i.e. if you can hit it with
a pickaxe, for example.
|
boolean |
isInteractable()
Gets whether or not the player can interact with this object.
|
boolean |
isLightingEnabled()
Gets wheter lighting for this model is enabled or not.
|
boolean |
isListeningForCollisions() |
boolean |
isNpcCollisionEnabled() |
boolean |
isTransparencyEnabled()
Gets whether or not transparency is currently enabled on this model (by default,
transparency is disabled).
|
void |
onInteraction(PlayerElementInteractionEvent event)
Override this method if you want to get the interaction event (when a player
interacts with this element) directly, without having to register an event listener.
|
void |
onItemCollision(ItemElementCollisionEvent event) |
void |
onPlayerCollision(PlayerElementCollisionEvent event) |
void |
onPlayerHit(PlayerElementHitEvent event) |
void |
setAlpha(float alpha)
Changes the alpha value (i.e. opacity) of this model. 1 indicates full opacity,
0 indicates full transparency (i.e. the model becomes invisible).
|
void |
setCollisionShape(CollisionShape collisionShape)
Sets a collision shape for this model.
|
void |
setHittable(boolean set)
Sets this element hittable, i.e. players can hit it with their pickaxe.
|
void |
setInteractable(boolean set)
Sets whether or not the player can interact with this object.
|
void |
setInteractionCrosshair(Crosshair crosshair)
Sets the crosshair for this element.
|
void |
setInteractionPreset(Interaction preset)
Sets an interaction preset (i.e. add some default behaviour to this object).
|
void |
setLightingEnabled(boolean lighting)
Sets if this model should be affected by lighting or not.
|
void |
setListenForCollisions(boolean set)
Sets whether or not the element should "listen" for collisions with the player.
|
void |
setMass(float mass)
Sets the physical mass of this element.
|
void |
setModel(ModelInformation model)
Sets the model information (i.e. the actual 3D model) for this element.
|
void |
setNpcCollisionEnabled(boolean set)
If set to true, npcs will collide with this element (irrespective of the collision
shape of this element, so this will also work if no collision shape is set).
|
void |
setScale(float scale)
Sets the scale for this model.
|
void |
setScale(float sx,
float sy,
float sz)
Sets the scale for this model along the x, y and z axis.
|
void |
setTexture(ImageInformation texture) |
void |
setTextureOffset(float offsetx,
float offsety)
Sets the texture offset for this model (this way you can move the texture
on the object horizontally and vertically).
|
void |
setTextureScale(float scale)
Sets the scale of the texture for this model.
|
void |
setTextureScale(float sx,
float sy)
Sets the scale of the texture for this model.
|
void |
setTransparencyEnabled(boolean set)
Enables or disables transparency for this model.
|
deleteAttribute, destroy, getAttribute, getID, getPosition, getRotation, getVisibleRange, hasAttribute, moveTo, moveTo, refresh, setAttribute, setPosition, setPosition, setRotation, setRotation, setVisibleRange
public World3DModel(ModelInformation model, ImageInformation texture)
World3DModel
element with the provided
model and texture.model
- the actual model.texture
- the texture of this model.public World3DModel(ModelInformation model, ImageInformation texture, Vector3f position, Quaternion rotation)
World3DModel
element with the provided
model and texture at the given position (with the given rotation).model
- the actual model.texture
- the texture of this model.position
- the global world position of this element.rotation
- the world rotation of this element.public void setInteractable(boolean set)
setInteractionCrosshair(net.risingworld.api.utils.Crosshair)
), and
when pressing the interaction key, a PlayerElementInteractionEvent
event will be triggered.set
- set to true to enable interactions with this element, false to
disable it.PlayerElementInteractionEvent
public boolean isInteractable()
PlayerElementInteractionEvent
public void setInteractionCrosshair(Crosshair crosshair)
setInteractable(boolean)
is set to true, this crosshair will be visible when the player looks at
this element.setInteractable(boolean)
is set to
false.crosshair
- the crosshair you want to set.PlayerElementInteractionEvent
public Crosshair getInteractionCrosshair()
setInteractable(boolean)
is set to true).public void setInteractionPreset(Interaction preset)
null
to remove any default behaviour
from this model.setInteractable(boolean)
).preset
- the interaction preset.public Interaction getInteractionPreset()
public boolean hasInteractionPreset()
public void setListenForCollisions(boolean set)
PlayerElementCollisionEvent
will be triggered when
the player "collides" with the element collision shape. This only works if
a collision shape is set for this element.set
- true to listen for collision events, false to disable it.public boolean isListeningForCollisions()
public void setHittable(boolean set)
set
- true to set this element hittable, false to disable this behaviour.PlayerElementHitEvent
public boolean isHittable()
PlayerElementHitEvent
public void setModel(ModelInformation model)
model
- the ModelInformation object which holds information about the
particular 3D model.public ModelInformation getModel()
public void setTexture(ImageInformation texture)
public ImageInformation getTexture()
public void setLightingEnabled(boolean lighting)
lighting
- set to true to enable lighting, or false to disable it.public boolean isLightingEnabled()
public void setScale(float scale)
scale
- the new scale (xyz).public void setScale(float sx, float sy, float sz)
sx
- the new x scale.sy
- the new y scale.sz
- the new z scale.public Vector3f getScale()
public void setTextureScale(float scale)
scale
- the new texture scale (xy).public void setTextureScale(float sx, float sy)
sx
- the new horizontal (x) texture scale.sy
- the new vertical (y) texture scale.public Vector2f getTextureScale()
public void setTextureOffset(float offsetx, float offsety)
offsetx
- the new horizontal (x) texture offsetoffsety
- the new horizontal (y) texture offsetpublic Vector2f getTextureOffset()
public void setAlpha(float alpha)
setTransparencyEnabled(boolean)
to enable transparency
on this model (otherwise changes to the alpha value don't have any effect).alpha
- the alpha value (0-1).public float getAlpha()
public void setTransparencyEnabled(boolean set)
setAlpha(float)
to set the global alpha value (even if the current texture does not contain any
alpha values).set
- true to enable transparency on this model (i.e. the alpha values
of this model and the texture will be used), false to disabled transparency
(resulting in a fully opaque model).public boolean isTransparencyEnabled()
public void setCollisionShape(CollisionShape collisionShape)
collisionShape
- the CollisionShape
for this model. Set to null
to disable the collision shape of this model.CollisionShape.createBoxCollisionShape(float, float, float)
,
CollisionShape.createHullCollisionShape()
,
CollisionShape.createMeshCollisionShape()
,
CollisionShape.createSphereCollisionShape(float)
public CollisionShape getCollisionShape()
public boolean hasCollisionShape()
setCollisionShape(CollisionShape)
,
getCollisionShape()
public void setMass(float mass)
mass
- the mass of this element. Using a value greater than 0 causes this
element to be affected by gravity. Set 0 if you want this element to be static.setCollisionShape(net.risingworld.api.utils.CollisionShape)
public float getMass()
public void setNpcCollisionEnabled(boolean set)
set
- true to enable npc collisions, false to disable them (i.e. npcs can walk through
this element).public boolean isNpcCollisionEnabled()
public void onInteraction(PlayerElementInteractionEvent event)
setInteractable(boolean)
is set
to true.event
- the player interaction event.PlayerElementInteractionEvent
public void onPlayerHit(PlayerElementHitEvent event)
public void onPlayerCollision(PlayerElementCollisionEvent event)
public void onItemCollision(ItemElementCollisionEvent event)