-
-
Notifications
You must be signed in to change notification settings - Fork 18
mouse_wheel_down
drewmccluskey edited this page Feb 12, 2019
·
2 revisions
Returns true if mouse wheel is being rotated downward
mouse_wheel_down()
Returns: bool
Returns true
if the mouse wheel is being rotated downward. When rotating upward or not being rotated at all it will return false
.
if (mouse_wheel_down())
{
Position.Y += 10;
}
This code will move your object down when you rotate your mouse wheel downward.
Back to Mouse