Can we move mouse like this? Or just int??
Mouse:SetPosition[1023.555,0]
Mouse move
Moderators: Lavish Software Team, Moderators
No, the cursor position is always integers. There is no way to make the game think the position is halfway between positions 1023 and 1024.
The POINT structure is used by the operating system to describe the position of the cursor.
http://msdn.microsoft.com/en-us/library ... 85%29.aspx
Unless you're working with a game that uses a software cursor described in floating points, the answer is no. And if that is the case, you cannot use Mouse:SetPosition to set it.
The POINT structure is used by the operating system to describe the position of the cursor.
http://msdn.microsoft.com/en-us/library ... 85%29.aspx
Unless you're working with a game that uses a software cursor described in floating points, the answer is no. And if that is the case, you cannot use Mouse:SetPosition to set it.