Package | Description |
---|---|
net.risingworld.api | |
net.risingworld.api.events.player | |
net.risingworld.api.events.world |
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.
|
WorldItem |
World.getItem(int globalID) |
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.
|
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.
|
Modifier and Type | Method and Description |
---|---|
java.util.Collection<WorldItem> |
World.getAllItems(java.util.Collection<WorldItem> storeTo)
Gets all global world items (i.e. items that have either been spawned by
calling
World.spawnItem(short, int, int, net.risingworld.api.utils.Vector3f, net.risingworld.api.utils.Quaternion, boolean) ,
or items that have been dropped by players). |
java.util.Collection<WorldItem> |
World.getAllItemsInArea(Area area,
java.util.Collection<WorldItem> storeTo) |
Modifier and Type | Method and Description |
---|---|
java.util.Collection<WorldItem> |
World.getAllItems(java.util.Collection<WorldItem> storeTo)
Gets all global world items (i.e. items that have either been spawned by
calling
World.spawnItem(short, int, int, net.risingworld.api.utils.Vector3f, net.risingworld.api.utils.Quaternion, boolean) ,
or items that have been dropped by players). |
java.util.Collection<WorldItem> |
World.getAllItemsInArea(Area area,
java.util.Collection<WorldItem> storeTo) |
Modifier and Type | Method and Description |
---|---|
WorldItem |
PlayerPickupItemEvent.getItem()
Gets the item the player wants to pick up.
|
Constructor and Description |
---|
PlayerPickupItemEvent(Player player,
WorldItem item,
int targetInventorySlot,
Inventory.SlotType targetInventorySlotType) |
Modifier and Type | Method and Description |
---|---|
WorldItem |
ItemElementCollisionEvent.getItem() |
WorldItem |
ExplosionEvent.getRelatedItem()
Gets the related item which caused this explosion (e.g. tnt).
|
Constructor and Description |
---|
ExplosionEvent(Vector3f position,
WorldItem item,
short damage,
Player relatedPlayer) |
ItemElementCollisionEvent(WorldItem item,
WorldElement worldElement,
boolean colliding,
float appliedImpulse) |