OverlayPosition

Intermediate

net.runelite.client.ui.overlay

Enum defining overlay positioning. Use this to control where your overlay appears on screen.

Category
Rendering
Methods
0
Properties
3

Properties (3)

DYNAMIC

OverlayPosition

Position moves with game camera

java
1overlay.setPosition(OverlayPosition.DYNAMIC);

STATIC

OverlayPosition

Fixed position on screen

java
1overlay.setPosition(OverlayPosition.STATIC);

TOOLTIP

OverlayPosition

Follows mouse cursor

java
1overlay.setPosition(OverlayPosition.TOOLTIP);

Related Classes

Plugins Using This Class