Package | Description |
---|---|
net.risingworld.api.objects | |
net.risingworld.api.objects.custom |
Modifier and Type | Method and Description |
---|---|
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.
|
Modifier and Type | Method and Description |
---|---|
void |
CustomItem.Action.execute(Player player,
RayCastResult collision) |