Package net.runelite.api
Interface WallObject
-
- All Superinterfaces:
TileObject
public interface WallObject extends TileObject
Represents one or two walls on 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.Shape
getConvexHull2()
int
getOrientationA()
A bitfield with the orientation of the first wall 1 = West 2 = North 4 = East 8 = South 16 = North-west 32 = North-east 64 = South-east 128 = South-westint
getOrientationB()
A bitfield with the orientation of the second wall 1 = West 2 = North 4 = East 8 = South 16 = North-west 32 = North-east 64 = South-east 128 = South-westRenderable
getRenderable1()
Renderable
getRenderable2()
-
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
-
getOrientationA
int getOrientationA()
A bitfield with the orientation of the first wall 1 = West 2 = North 4 = East 8 = South 16 = North-west 32 = North-east 64 = South-east 128 = South-west
-
getOrientationB
int getOrientationB()
A bitfield with the orientation of the second wall 1 = West 2 = North 4 = East 8 = South 16 = North-west 32 = North-east 64 = South-east 128 = South-west
-
getConfig
int getConfig()
A bitfield containing various flags:object type id = bits & 0x20 orientation (0-3) = bits >>> 6 & 3 supports items = bits >>> 8 & 1
-
getConvexHull
Shape getConvexHull()
Gets the convex hull of the objects model.- Returns:
- the convex hull
- See Also:
Jarvis
-
getConvexHull2
Shape getConvexHull2()
-
getRenderable1
Renderable getRenderable1()
-
getRenderable2
Renderable getRenderable2()
-
-