Package | Description |
---|---|
net.risingworld.api | |
net.risingworld.api.events.player | |
net.risingworld.api.objects | |
net.risingworld.api.utils | |
net.risingworld.api.worldelements |
Modifier and Type | Method and Description |
---|---|
java.util.Collection<Area> |
Server.getAllAreas()
Gets a collection containing all
Areas that are currently
registered with the server. |
Modifier and Type | Method and Description |
---|---|
void |
Server.addArea(Area area)
Adds an
Area to the server. |
java.util.Collection<WorldItem> |
World.getAllItemsInArea(Area area,
java.util.Collection<WorldItem> storeTo) |
java.util.Collection<Npc> |
World.getAllNpcsInArea(Area area,
java.util.Collection<Npc> storeTo) |
void |
World.removeAllConstructionsInArea(Area area)
Removes all constructions (e.g. planks, beams, windows etc.) inside the given area.
|
void |
World.removeAllObjectsInArea(Area area)
Removes all objects (e.g. furniture, lamps etc.) inside the given area.
|
void |
World.removeAllVegetationsInArea(Area area)
Removes all vegetations (plants, trees etc.) inside the given area.
|
void |
Server.removeArea(Area area)
Removes an
Area that has been added to the server previously. |
void |
World.setBlockDataInArea(int blockID,
Area area)
Sets the block id in the given area (i.e. every block inside this area
will be set to the block id).
|
void |
World.setTerrainDataInArea(int terrainID,
Area area)
Sets the terrain id in the given area (i.e. every block inside this area
will be set to the terrain id).
|
Modifier and Type | Method and Description |
---|---|
Area |
PlayerEnterAreaEvent.getArea()
Gets the
Area the player has entered. |
Area |
PlayerLeaveAreaEvent.getArea()
Gets the
Area the player has left. |
Constructor and Description |
---|
PlayerEnterAreaEvent(Player player,
Area area) |
PlayerLeaveAreaEvent(Player player,
Area area) |
Modifier and Type | Method and Description |
---|---|
java.util.List<Area> |
Player.getCurrentAreas()
Gets a list of all Areas the player is currently in.
|
Modifier and Type | Method and Description |
---|---|
void |
Player.setAreaSelectionData(Area area)
Sets an area for the "area selection tool" for this player, i.e. the selection
tool will adapt to the position and size of the provided area.
|
Modifier and Type | Method and Description |
---|---|
void |
Player.getAreaSelectionData(Callback<Area> callback)
Gets the currently selected area.
|
Modifier and Type | Field and Description |
---|---|
static Area |
Area.INFINITE
An "infinite" area (more precisely, the largest possible area).
|
Modifier and Type | Method and Description |
---|---|
boolean |
Area.intersects(Area area)
Checks whether or not the provided area intersects this area.
|
Constructor and Description |
---|
Area(Area area)
Creates an Area with the same size as the provided Area.
|
Modifier and Type | Method and Description |
---|---|
Area |
WorldArea.getArea()
Gets the underlying
Area . |
Modifier and Type | Method and Description |
---|---|
void |
WorldArea.setArea(Area area)
Sets the underlying
Area . |
Constructor and Description |
---|
WorldArea(Area area)
Creates a new
WorldArea element which represents an actual
Area . |