Wowpedia

We have moved to Warcraft Wiki. Click here for information and the new URL.

READ MORE

Wowpedia
Register
Advertisement
This is a user-defined function that you can copy and paste into your addon.

Returns the scaled position of the cursor.

local x, y = GetCursorScaledPosition()

Function Parameters[]

Returns[]

x
The scaled x position of the cursor
y
The scaled y position of the cursor

Example[]

local x, y = GetCursorScaledPosition();
message('('..x..', '..y..')');

Result[]

(25.45218785412654, 375.45610597856123)

Code[]

local function GetCursorScaledPosition()
	local scale, x, y = UIParent:GetScale(), GetCursorPosition()
	return x / scale, y / scale
end
Advertisement