-
-
Notifications
You must be signed in to change notification settings - Fork 18
mouse_wheel_up
drewmccluskey edited this page Feb 12, 2019
·
2 revisions
Returns true if the mouse wheel is being rotated upward
mouse_wheel_up()
Returns: bool
Returns true
if the mouse wheel is being rotated upward. When rotating downward or not being rotated at all 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