HI guys !
What can I do to move/translate/teleport the mouse cursor to the other side of the screen?
I want to create an infinite loop, when cursor arrives to the end of screen it would keep continuously moving reappearing in the other side, something like in blender editorā¦
Hereunder a bit of pseudo code (that does not work, of course):
if action.x > 1918 then
action.x = 3
elseif action.x < 3 then
action.x = 1918
end