Package | Description |
---|---|
net.risingworld.api | |
net.risingworld.api.events.player.gui | |
net.risingworld.api.gui | |
net.risingworld.api.objects |
Modifier and Type | Method and Description |
---|---|
void |
Internals.isGuiElementVisible(int playerID,
java.lang.String name,
Callback<java.lang.Boolean> result) |
Modifier and Type | Method and Description |
---|---|
void |
PlayerSelectFileEvent.requestFileUpload(java.lang.String targetDirectory,
Callback<java.io.File> callback)
Requests the client to upload the file to the server.
|
Modifier and Type | Method and Description |
---|---|
void |
GuiFileBrowser.getCurrentDirectory(Player player,
Callback<java.lang.String> callback)
Gets the current directory.
|
void |
GuiTextField.getCurrentText(Player player,
Callback<java.lang.String> callback)
Gets the current text of the textfield.
|
Modifier and Type | Method and Description |
---|---|
void |
Player.createScreenshot(float sizeFactor,
Callback<java.awt.image.BufferedImage> callback)
Creates a screenshot of the player screen and convert it into a BufferedImage.
|
void |
Player.getAreaSelectionData(Callback<Area> callback)
Gets the currently selected area.
|
void |
Player.getOption(java.lang.String setting,
Callback<java.lang.String> callback)
Gets a setting from the client (a setting from his config.properties file).
|
void |
Player.getScreenToWorldPosition(float x,
float y,
boolean relativeposition,
Callback<Vector3f> callback)
Performs a raycast from the screen xy position.
|
void |
Player.raycast(int collisionType,
Callback<RayCastResult> callback)
Performs a raycast from the player view position to the player view direction,
i.e. from the cam position to the center of the screen (crosshair).
|
void |
Player.raycast(Vector3f direction,
int collisionType,
Callback<RayCastResult> callback)
Performs a raycast from the player view position to the provided direction.
|
void |
Player.raycastFromScreenPosition(float x,
float y,
boolean relativeposition,
int collisionType,
Callback<RayCastResult> callback)
Performs a raycast from the screen xy position.
|
void |
Player.raycastFromWorldPosition(Vector3f position,
Vector3f direction,
int collisionType,
Callback<RayCastResult> callback)
Performs a raycast from a world position.
|
void |
Player.requestMapTileRaw(int x,
int y,
java.lang.String controlHash,
Callback<byte[]> callback)
Requests a raw map tile from a client.
|
void |
Player.showContextMenu(java.lang.String[] entries,
Callback<java.lang.String> callback)
Shows a context menu with the given entries.
|