-
-
Couldn't load subscription status.
- Fork 19
keyboard_get_numlock
drewmccluskey edited this page Feb 12, 2019
·
2 revisions
Returns true if numlock is on
keyboard_get_numlock()Returns: bool
Returns true if numlock is turned on. If numlock is off it will return false.
if (keyboard_get_numlock())
{
Position.X += 5;
}This code will move game object when numlock is turned on.
Back to Keyboard