Modifier and Type | Method and Description |
---|---|
Vector3f |
Server.getDefaultSpawnPosition()
Gets the global default spawn position.
|
Modifier and Type | Method and Description |
---|---|
WorldItem |
World.findNearestItem(short itemID,
Vector3f position) |
WorldItem |
World.findNearestItem(Vector3f position)
Gets the world item which has the shortest distance to a position.
|
Npc |
World.findNearestNpc(short typeID,
Vector3f position)
Gets the npc which has the shortest distance to a world position.
|
Npc |
World.findNearestNpc(Vector3f position)
Gets the npc which has the shortest distance to a world position.
|
Player |
Server.findNearestPlayer(Vector3f position)
Gets the player who has the shortest distance to a world position.
|
void |
World.placeObject(int objectID,
int variation,
Vector3f globalPosition,
float rotationX,
float rotationY,
float rotationZ)
Creates a new object (e.g. furniture) at the given position.
|
void |
World.placeVegetation(int plantID,
Vector3f globalPosition,
float rotationX,
float rotationY,
float rotationZ)
Creates a new plant at the given position.
|
void |
Server.setDefaultSpawnPosition(Vector3f position)
Sets the global default spawn position.
|
WorldItem |
World.spawnCustomItem(java.lang.String uuid,
int variation,
int stacksize,
Vector3f position,
Quaternion rotation,
boolean physical)
Spawns a custom item in the world.
|
WorldItem |
World.spawnItem(short itemID,
int variation,
int stacksize,
Vector3f position,
Quaternion rotation,
boolean physical)
Spawns a global item in the world.
|
Npc |
World.spawnNpc(short typeID,
byte variation,
Vector3f position,
Quaternion rotation)
Spawns a new npc in the world.
|
Npc |
World.spawnNpc(short typeID,
byte variation,
Vector3f position,
Quaternion rotation,
boolean temporary)
Spawns a new npc in the world.
|
Npc |
World.spawnNpc(short typeID,
Vector3f position,
Quaternion rotation)
Spawns a new npc in the world.
|
WorldItem |
World.spawnObjectItem(short objectID,
int variation,
int stacksize,
Vector3f position,
Quaternion rotation,
boolean physical)
Spawns a global object item in the world, i.e. an item which represents an
object.
|
void |
World.spawnProjectile(byte typeID,
Vector3f position,
Vector3f direction,
float velocity,
boolean causeDamage)
Spawns a projectile in the world.
|
void |
World.triggerExplosion(Vector3f position,
boolean causeDamage,
boolean playSound)
Creates an explosion in the world.
|
void |
World.triggerFirework(Vector3f position,
float scale,
int color1,
int color2,
int color3,
boolean playSound)
Creates a firework effect in the world at the given position.
|
Modifier and Type | Method and Description |
---|---|
Vector3f |
NpcDeathEvent.getDeathPosition()
Gets the position where the npc died.
|
Vector3f |
NpcSpawnEvent.getPosition() |
Modifier and Type | Method and Description |
---|---|
void |
NpcSpawnEvent.setPosition(Vector3f position) |
Constructor and Description |
---|
NpcDeathEvent(Npc npc,
java.lang.Object killer,
Vector3f deathPosition,
NpcDeathEvent.Cause cause) |
Modifier and Type | Method and Description |
---|---|
Vector3f |
PlayerHitEvent.getDamagePosition()
Gets the coordinates where the player was hit exactly.
|
Vector3f |
PlayerHitNpcEvent.getDamagePosition()
Gets the coordinates where the npc was hit exactly.
|
Vector3f |
PlayerDeathEvent.getDeathPosition()
Gets the position where the player died.
|
Vector3f |
PlayerCatchFishEvent.getFishingPosition()
Gets the previous bobber position, before the bobber/fish was pulled out of the water.
|
Vector3f |
PlayerStartFishingEvent.getFishingPosition()
Gets the fishing position, or more precisely, the bobber position.
|
Vector3f |
PlayerElementHitEvent.getHitNormal()
Gets the normal, i.e. the normal of the surface that was hit
(the direction in which the surface points).
|
Vector3f |
PlayerElementHitEvent.getHitPosition()
Gets the coordinates where the element was hit exactly.
|
Vector3f |
PlayerChangePositionEvent.getPosition()
Gets the new position of the player.
|
Vector3f |
PlayerDropItemEvent.getPosition()
Gets the item drop position.
|
Vector3f |
PlayerRespawnEvent.getSpawnPosition()
Gets the spawn position.
|
Vector3f |
PlayerSpawnEvent.getSpawnPosition()
Gets the spawn coordinates (where the player will spawn this time).
|
Vector3f |
PlayerTeleportEvent.getTargetPosition()
Gets the new position of the player.
|
Modifier and Type | Method and Description |
---|---|
void |
PlayerHitEvent.setDamagePosition(Vector3f position)
Sets the coordinates where the player was hit exactly.
|
void |
PlayerHitNpcEvent.setDamagePosition(Vector3f position)
Sets the coordinates where the npc was hit exactly.
|
void |
PlayerChangePositionEvent.setPosition(Vector3f position) |
void |
PlayerRespawnEvent.setSpawnPosition(Vector3f position)
Sets the spawn position of the player.
|
void |
PlayerTeleportEvent.setTargetPosition(Vector3f position) |
Constructor and Description |
---|
PlayerCatchFishEvent(Player player,
Vector3f fishingPosition,
Item catchedItem,
boolean removeBait) |
PlayerChangePositionEvent(Player player,
Vector3f position,
Quaternion rotation) |
PlayerDeathEvent(Player player,
Player killer,
Vector3f deathPosition) |
PlayerDropItemEvent(Player player,
Item item,
int amount,
int inventorySlot,
Inventory.SlotType inventorySlotType,
Vector3f position,
Quaternion rotation) |
PlayerElementHitEvent(Player player,
WorldElement worldElement,
Vector3f hitPosition,
Vector3f hitNormal) |
PlayerHitEvent(Player player,
Player targetPlayer,
Vector3f damagePoint,
short damage,
float distance) |
PlayerHitNpcEvent(Player player,
Npc targetNpc,
Vector3f damagePoint,
short damage,
float distance) |
PlayerRespawnEvent(Player player,
Vector3f spawnPosition,
Quaternion spawnRotation,
boolean keepInventory) |
PlayerSpawnEvent(Player player,
Vector3f spawnPosition,
Quaternion spawnRotation) |
PlayerStartFishingEvent(Player player,
Vector3f fishingPosition,
int waterdepth,
byte watertype,
boolean hasBait,
int waitTime,
short catchItemID) |
PlayerTeleportEvent(Player player,
Vector3f targetPosition,
PlayerTeleportEvent.Cause cause) |
Modifier and Type | Method and Description |
---|---|
Vector3f |
PlayerConstructionEvent.getConstructionPosition()
Gets the world position of the construction element as a Vector3f.
|
Vector3f |
PlayerConstructionEvent.getConstructionSize()
Gets the size (x, y, z) of the construction element as a Vector3f.
|
Vector3f |
PlayerConstructionHitEvent.getHitPosition()
Gets the coordinates where the construction element was hit exactly.
|
Vector3f |
PlayerObjectHitEvent.getHitPosition()
Gets the coordinates where the object was hit exactly.
|
Vector3f |
PlayerVegetationHitEvent.getHitPosition()
Gets the coordinates where the plant was hit exactly.
|
Vector3f |
PlayerWorldHitEvent.getHitPosition()
Gets the coordinates where the world was hit exactly.
|
Vector3f |
PlayerEditConstructionEvent.getNewConstructionPosition()
Gets the new world position of the construction element as a Vector3f.
|
Vector3f |
PlayerEditConstructionEvent.getNewConstructionSize()
Gets the new size (x, y, z) of the construction element as a Vector3f.
|
Vector3f |
PlayerObjectEvent.getObjectPosition()
Gets the world position of the object as a Vector3f.
|
Vector3f |
PlayerVegetationEvent.getPlantPosition()
Gets the world position of the plant as a Vector3f.
|
Vector3f |
PlayerCreateBlueprintEvent.getPosition()
Gets the target world position of the blueprint, or more precisely, the
center position of the affected area.
|
Vector3f |
PlayerPlaceBlueprintEvent.getPosition()
Gets the target world position of the blueprint, or more precisely, the
center position of the affected area.
|
Modifier and Type | Method and Description |
---|---|
void |
PlayerPlaceConstructionEvent.setConstructionPosition(Vector3f position)
Changes the position of the construction element.
|
void |
PlayerPlaceConstructionEvent.setConstructionSize(Vector3f size)
Changes the size of the construction element.
|
void |
PlayerPlaceObjectEvent.setObjectPosition(Vector3f position)
Changes the object position.
|
void |
PlayerDestroyVegetationEvent.setPlantPosition(Vector3f position)
If this plant is a tree, this method sets the spawn position of the physical tree log.
|
void |
PlayerPlaceVegetationEvent.setPlantPosition(Vector3f position)
Changes the plant position.
|
Modifier and Type | Method and Description |
---|---|
Vector3f |
PlantGrowEvent.getPlantPosition()
Gets the world position of the plant as a Vector3f.
|
Vector3f |
ExplosionEvent.getPosition()
Gets the global world position of the explosion.
|
Modifier and Type | Method and Description |
---|---|
void |
ExplosionEvent.setPosition(Vector3f position)
Changes the global world position of the explosion.
|
Constructor and Description |
---|
ExplosionEvent(Vector3f position,
WorldItem item,
short damage,
Player relatedPlayer) |
Modifier and Type | Method and Description |
---|---|
Vector3f |
Npc.getPosition()
Gets a Vector3f containing the current global x, y and z
coordinate of the npc.
|
Vector3f |
Player.getPosition()
Gets a Vector3f containing the current global x, y and z
coordinate of the player.
|
Vector3f |
WorldItem.getPosition()
Gets a Vector3f containing the current global x, y and z
coordinate of this item.
|
Vector3f |
Player.getRespawnPosition()
Gets the estimated respawn position (i.e. the position the player will respawn
once he died [or once he gets respawned forcefully]).
|
Vector3f |
Npc.getVectorToNearestPlayer()
Gets a normalized vector from the npc position to the position of the nearest player.
|
Vector3f |
Npc.getViewDirection()
Gets the current view direction of the npc as a normalized vector.
|
Vector3f |
Player.getViewDirection()
Gets the current view direction of the player.
|
Modifier and Type | Method and Description |
---|---|
void |
WorldItem.applyPhysicalImpulse(Vector3f impulse) |
void |
Npc.moveTo(Vector3f position)
Moves the npc to the provided position, i.e. the npc will walk to this position.
|
void |
Player.moveTo(Vector3f position,
float speed)
Moves the player (smoothly) to the target position.
|
int |
Player.playGameSound(java.lang.String name,
Vector3f position)
Plays an ingame sound effect at the given world position which can only be
heard by this player.
|
int |
Player.playGameSound(java.lang.String name,
Vector3f position,
java.lang.String parameter,
float parameterValue)
Plays an ingame sound effect at the given world position.
|
int |
Player.playSound(SoundInformation sound,
boolean loop,
float volume,
float pitch,
float minDistance,
float maxDistance,
Vector3f position)
Plays a custom 3D sound at the given position.
|
int |
Player.playSound(SoundInformation sound,
Vector3f position)
Plays a custom 3D sound at the given position.
|
void |
Player.raycast(Vector3f direction,
int collisionType,
Callback<RayCastResult> callback)
Performs a raycast from the player view position to the provided direction.
|
void |
Player.raycastFromWorldPosition(Vector3f position,
Vector3f direction,
int collisionType,
Callback<RayCastResult> callback)
Performs a raycast from a world position.
|
void |
Player.respawn(Vector3f position,
Quaternion rotation)
Respawns the player at the given position.
|
void |
Npc.setPosition(Vector3f position)
Sets the global position of the npc (teleports the npc).
|
void |
Player.setPosition(Vector3f position)
Sets the global position of the player.
|
void |
WorldItem.setPosition(Vector3f position)
Sets the global position of the item.
|
void |
Player.setSoundPosition(int soundID,
Vector3f position)
Changes the position of a sound.
|
void |
Npc.setViewDirection(Vector3f direction)
Sets the view direction of the npc.
|
void |
Player.setViewDirection(Vector3f direction)
Sets the view direction of the player.
|
void |
Player.showMap(boolean ignoreMissingMapItem,
Vector3f coordinates,
boolean smoothScroll)
Brings up the ingame map.
|
Modifier and Type | Method and Description |
---|---|
void |
Player.getScreenToWorldPosition(float x,
float y,
boolean relativeposition,
Callback<Vector3f> callback)
Performs a raycast from the screen xy position.
|
Modifier and Type | Method and Description |
---|---|
Vector3f |
CustomItem.getFPBodyPosition() |
Vector3f |
CustomItem.getItemPosition()
Sets the "offset" of the item in the player hands.
|
Vector3f |
CustomRecipe.getPreviewOffset() |
Modifier and Type | Method and Description |
---|---|
void |
CustomItem.setFPBodyPosition(Vector3f position)
Sets the "offset" of the player body in first person view.
|
void |
CustomItem.setItemPosition(Vector3f position) |
void |
CustomRecipe.setPreviewOffset(Vector3f offset) |
Modifier and Type | Field and Description |
---|---|
static Vector3f |
Vector3f.UNIT_X
A unit vector along the X axis
|
static Vector3f |
Vector3f.UNIT_Y
A unit vector along the Y axis
|
static Vector3f |
Vector3f.UNIT_Z
A unit vector along the Z axis
|
static Vector3f |
Vector3f.ZERO
A vector with values 0, 0, 0
|
Modifier and Type | Method and Description |
---|---|
Vector3f |
Vector3f.add(float addX,
float addY,
float addZ)
Creates a new vector with the same values of this vector and adds the
provided values.
|
Vector3f |
Vector3f.add(Vector3f other)
Creates a new vector with the same values of this vector and adds the values
of the provided vector.
|
Vector3f |
Vector3f.addLocal(float addX,
float addY,
float addZ)
Adds the provided values to the values of this vector.
|
Vector3f |
Vector3f.addLocal(Vector3f other)
Adds the values of the provided vector to the values of this vector.
|
Vector3f |
Vector3f.crossLocal(float v2x,
float v2y,
float v2z)
Calculates the cross product of this vector and the provided coordinates.
|
Vector3f |
Vector3f.crossLocal(Vector3f other)
Calculates the cross product of this vector and another vector.
|
Vector3f |
Vector3f.divide(Vector3f other)
Creates a new vector with the same values of this vector and divides the values
of the provided vector.
|
Vector3f |
Vector3f.divideLocal(float scalar) |
Vector3f |
Vector3f.divideLocal(Vector3f other) |
Vector3f |
Vector3f.fromString(java.lang.String input) |
Vector3f |
BoundingInformation.getCenter()
Gets the center of this bounding information.
|
Vector3f |
RayCastResult.getCollisionNormal()
Gets the collision normal, i.e. the normal of the surface the ray hit.
|
Vector3f |
RayCastResult.getCollisionPoint()
Gets the collision point, i.e. the location where the ray hit an object.
|
static Vector3f |
Utils.VectorUtils.getDirection(Vector3f from,
Vector3f to)
Gets the direction between two points (from -> to) as a normalized
vector (unit vector, i.e. length == 1).
|
static Vector3f |
Utils.VectorUtils.getDirection(Vector3f from,
Vector3f to,
Vector3f storeTo)
Gets the direction between two points (from -> to) as a normalized
vector (unit vector, i.e. length == 1).
|
Vector3f |
RayCastResult.getElementPosition()
Gets the actual world position of the element.
|
static Vector3f |
Utils.ChunkUtils.getGlobalPosition(Vector3i chunkPosition,
Vector3i blockPosition) |
static Vector3f |
Utils.ChunkUtils.getGlobalPosition(Vector3i chunkPosition,
Vector3i blockPosition,
Vector3f storeTo) |
static Vector3f |
Utils.VectorUtils.getXYZInFrontOfPlayer(Player player,
float distance)
Gets the position in front of the player (with the given distance to the player).
|
static Vector3f |
Utils.VectorUtils.getXYZInFrontOfPlayer(Player player,
float distance,
Vector3f storeTo)
Gets the position in front of the player (with the given distance to the player).
|
static Vector3f |
Utils.VectorUtils.getXZInFrontOfPlayer(Player player,
float distance) |
static Vector3f |
Utils.VectorUtils.getXZInFrontOfPlayer(Player player,
float distance,
Vector3f storeTo) |
Vector3f |
Vector3f.interpolateLocal(Vector3f finalVector,
float mu)
Interpolates this vector to the provided final vector, e.g. if this vector
is (0, 5, 10), and the final vector is (-10, 0, 10), the result (by using
a mu-value of 0.5f) would be (-5, 2.5f, 10)
|
Vector3f |
Vector3f.mult(float scalar)
Creates a new vector with the same values of this vector and multiplies
them with the provided scalar.
|
Vector3f |
Vector3f.mult(float multX,
float multY,
float multZ)
Creates a new vector with the same values of this vector and multiplies the
provided values.
|
Vector3f |
Vector3f.mult(Vector3f other)
Creates a new vector with the same values of this vector and multiplies the values
of the provided vector.
|
Vector3f |
Vector3f.multLocal(float scalar)
Multiplies the values of this vector with the provided scalar.
|
Vector3f |
Vector3f.multLocal(float multX,
float multY,
float multZ)
Multiplies the values of this vector with the provided values.
|
Vector3f |
Quaternion.multLocal(Vector3f vector)
Multiplies the quaternion by a Vector3f.
|
Vector3f |
Vector3f.multLocal(Vector3f other)
Multiplies the values of this vector with the values of the provided vector.
|
Vector3f |
Vector3f.negate()
Creates a new vector which contains negated values of this vector.
|
Vector3f |
Vector3f.negateLocal()
Negates all values of this vector.
|
Vector3f |
Vector3f.normalizeLocal()
Normalizes this vector (i.e. turn it into a unit vector).
|
Vector3f |
Vector3f.set(float x,
float y,
float z)
Sets the x, y and z values of this vector to the provided values.
|
Vector3f |
Vector3f.set(Vector3f vector)
Sets the x, y and z values of this vector to the values of the
provided vector.
|
Vector3f |
Vector3f.setX(float x)
Sets the x value of this vector.
|
Vector3f |
Vector3f.setY(float y)
Sets the y value of this vector.
|
Vector3f |
Vector3f.setZ(float z)
Sets the z value of this vector.
|
Vector3f |
Vector3f.subtract(float subtractX,
float subtractY,
float subtractZ)
Creates a new vector with the same values of this vector and subtracts the
provided values.
|
Vector3f |
Vector3f.subtract(Vector3f other)
Creates a new vector with the same values of this vector and subtracts the values
of the provided vector.
|
Vector3f |
Vector3f.subtractLocal(float subtractX,
float subtractY,
float subtractZ)
Subtracts the provided values from the values of this vector.
|
Vector3f |
Vector3f.subtractLocal(Vector3f other)
Subtracts the values of the provided vector from the values of this vector.
|
Vector3f |
Vector3f.zero()
Sets all values to 0 (same set
set(0, 0, 0); ). |
Modifier and Type | Method and Description |
---|---|
Vector3f |
Vector3f.add(Vector3f other)
Creates a new vector with the same values of this vector and adds the values
of the provided vector.
|
Vector3f |
Vector3f.addLocal(Vector3f other)
Adds the values of the provided vector to the values of this vector.
|
void |
WorldEditBatch.addToBatch(int id,
Vector3f globalPosition)
Adds a new "edit sequence" to the batch.
|
float |
Vector3f.angleBetween(Vector3f other)
Gets the angle between this vector and another vector.
|
Vector3f |
Vector3f.crossLocal(Vector3f other)
Calculates the cross product of this vector and another vector.
|
float |
Vector3f.distance(Vector3f other)
Gets the distance between this vector and another vector.
|
float |
Vector3f.distanceSquared(Vector3f other)
Gets the squared distance between this vector and another Vector3f.
|
Vector3f |
Vector3f.divide(Vector3f other)
Creates a new vector with the same values of this vector and divides the values
of the provided vector.
|
Vector3f |
Vector3f.divideLocal(Vector3f other) |
float |
Vector3f.dot(Vector3f other)
Gets the dot product of this vector with the provided vector.
|
static void |
Utils.ChunkUtils.getChunkAndBlockPosition(Vector3f globalPosition,
Vector3i chunkPositionStore,
Vector3i blockPositionStore)
Calculates a chunk offset and the according block position (within this
chunk) from a given global position and stores the results in the provided
Vector3i's . |
static Vector3i |
Utils.ChunkUtils.getChunkPosition(Vector3f globalPosition)
Calculates a chunk offset from a given global position and stores the
result in a
Vector3i . |
static Vector3i |
Utils.ChunkUtils.getChunkPosition(Vector3f globalPosition,
Vector3i storeTo)
Calculates a chunk offset from a given global position and stores the
result in the provided
Vector3i . |
static Vector3f |
Utils.VectorUtils.getDirection(Vector3f from,
Vector3f to)
Gets the direction between two points (from -> to) as a normalized
vector (unit vector, i.e. length == 1).
|
static Vector3f |
Utils.VectorUtils.getDirection(Vector3f from,
Vector3f to,
Vector3f storeTo)
Gets the direction between two points (from -> to) as a normalized
vector (unit vector, i.e. length == 1).
|
static Vector3f |
Utils.ChunkUtils.getGlobalPosition(Vector3i chunkPosition,
Vector3i blockPosition,
Vector3f storeTo) |
static Vector3f |
Utils.VectorUtils.getXYZInFrontOfPlayer(Player player,
float distance,
Vector3f storeTo)
Gets the position in front of the player (with the given distance to the player).
|
static Vector3f |
Utils.VectorUtils.getXZInFrontOfPlayer(Player player,
float distance,
Vector3f storeTo) |
Vector3f |
Vector3f.interpolateLocal(Vector3f finalVector,
float mu)
Interpolates this vector to the provided final vector, e.g. if this vector
is (0, 5, 10), and the final vector is (-10, 0, 10), the result (by using
a mu-value of 0.5f) would be (-5, 2.5f, 10)
|
boolean |
Vector3f.isOrthogonal(Vector3f other)
Checks if this vector is orthogonal to another vector (i.e. the angle
between both vectors is ~ 90° degree).
|
boolean |
Area.isPointInArea(Vector3f point)
Gets whether or not the point is inside this area.
|
boolean |
BoundingInformation.isPointInVolume(Vector3f point)
Checks if the given point (represented as a
Vector3f ) is inside
this bounding volume. |
Quaternion |
Quaternion.lookAt(Vector3f direction)
"Looks at" a given direction, i.e. the quaternion will be set based on the
direction.
|
Quaternion |
Quaternion.lookAt(Vector3f direction,
Vector3f up)
"Looks at" a given direction, i.e. the quaternion will be set based on the
direction and an up vector.
|
Vector3f |
Vector3f.mult(Vector3f other)
Creates a new vector with the same values of this vector and multiplies the values
of the provided vector.
|
Vector3f |
Quaternion.multLocal(Vector3f vector)
Multiplies the quaternion by a Vector3f.
|
Vector3f |
Vector3f.multLocal(Vector3f other)
Multiplies the values of this vector with the values of the provided vector.
|
Vector3f |
Vector3f.set(Vector3f vector)
Sets the x, y and z values of this vector to the values of the
provided vector.
|
void |
Area.set(Vector3f globalStartPosition,
Vector3f globalEndPosition)
Changes start and end position of this area by getting the coordinates from
global positions.
|
Vector3f |
Vector3f.subtract(Vector3f other)
Creates a new vector with the same values of this vector and subtracts the values
of the provided vector.
|
Vector3f |
Vector3f.subtractLocal(Vector3f other)
Subtracts the values of the provided vector from the values of this vector.
|
static java.lang.String |
Utils.StringUtils.vector3fToString(Vector3f vector3f) |
Constructor and Description |
---|
Area(Vector3f globalStartPosition,
Vector3f globalEndPosition)
Creates a new area from global positions.
|
BoundingInformation(Vector3f center,
float xExtent,
float yExtent,
float zExtent)
Creates a new bounding information.
|
RayCastResult(int type,
int info,
float distance,
Vector3f collisionPoint,
Vector3f collisionNormal,
Vector3f elementPosition,
short elementTypeID) |
Vector3f(Vector3f copy)
Creates a new Vector3f and copies the X, Y and Z values from the
provided vector.
|
Modifier and Type | Method and Description |
---|---|
Vector3f |
Interaction.BedPreset.getLayingPosition() |
Vector3f |
Interaction.TentPreset.getLayingPosition() |
Vector3f |
WorldElement.getPosition()
Gets the global position of this element.
|
Vector3f |
World3DModel.getScale()
Gets the scale (xyz) of this model.
|
Vector3f |
Interaction.ChairPreset.getSittingPosition() |
Modifier and Type | Method and Description |
---|---|
static Interaction |
Interaction.createChairPreset(Vector3f sittingPosition) |
void |
WorldElement.moveTo(Vector3f position,
float speed)
Moves the element (smoothly) to the target position.
|
void |
WorldElement.setPosition(Vector3f position)
Sets the global position of this element.
|
Constructor and Description |
---|
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). |