Package net.runelite.api
Interface GroundObject
-
- All Superinterfaces:
TileObject
public interface GroundObject extends TileObject
Represents an object on the ground of a tile.
-
-
Field Summary
-
Fields inherited from interface net.runelite.api.TileObject
HASH_PLANE_SHIFT
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getConfig()
A bitfield containing various flags:Shape
getConvexHull()
Gets the convex hull of the objects model.Renderable
getRenderable()
-
Methods inherited from interface net.runelite.api.TileObject
getCanvasLocation, getCanvasLocation, getCanvasTextLocation, getCanvasTilePoly, getClickbox, getHash, getId, getLocalLocation, getMinimapLocation, getPlane, getWorldLocation, getWorldView, getX, getY, getZ
-
-
-
-
Method Detail
-
getRenderable
Renderable getRenderable()
-
getConvexHull
Shape getConvexHull()
Gets the convex hull of the objects model.- Returns:
- the convex hull
- See Also:
Jarvis
-
getConfig
int getConfig()
A bitfield containing various flags:object type id = bits & 0x20 orientation (0-3) = bits >>> 6 & 3 supports items = bits >>> 8 & 1
-
-