-
-
Notifications
You must be signed in to change notification settings - Fork 20
mouse_wheel_up
CryoEagle edited this page Jan 3, 2019
·
2 revisions
Returns true if mouse wheel is being rotated upward
mouse_wheel_up()Returns: bool
Returns true if mouse wheel is being rotated upward, when rotating downward it will return false.
if (mouse_wheel_up())
{
Position.Y -= 10;
}This will move your object up when you rotate your mouse wheel upward.
Back to Mouse