GetCursorPos

Returns the actual cursor position used internally by Susano’s overlay system

Syntax

Susano.GetCursorPos() -> Vector2

Parameters

None

Return(s)

cursorPos (Vector2):

  1. x (float): Cursor X position relative to the monitor dimensions.

  2. y (float): Cursor Y position relative to the monitor dimensions.

Behavior

Returns the actual cursor position used internally by Susano’s overlay system, not the NUI cursor (which is spoofed by Susano safety measures), allowing precise interaction with ImGui-based elements and accurate mouse tracking within the overlay.

Example(s)

local cursorPos = Susano.GetCursorPos()

Last updated