Input
Input.LeftClick
void Input.LeftClick(int Action)
Defaults to MOUSE_CLICK if no Action is provided
Performs a left click of the mouse when called. Use MOUSE_DOWN or MOUSE_UP as Action to do something other than a click.
Input.LeftClick
void Input.LeftClick(int Action)
Defaults to MOUSE_CLICK if no Action is provided
Performs a right click of the mouse when called. Use MOUSE_DOWN or MOUSE_UP as Action to do something other than a click.
Input.MoveMouse
void Input.MoveMouse(int x, int y)
Moves the mouse from its current position by the given amounts.
Input.ScrollMouse
void Input.ScrollMouse(int ScrollAmount)
The amount is negative for up, positive for down.
Scrolls the mouse by the given amount.
Input.KeyPress
void Input.KeyPress(int VirtualKeyCode)
Performs a key press of the given key when called. Key codes can be found here.
Input.KeyDown
void Input.KeyDown(int VirtualKeyCode)
"Holds" a key down when called. Key codes can be found here.
Input.KeyUp
void Input.KeyUp(int VirtualKeyCode)
"Releases" a key when called. Key codes can be found here.