Class that describes the binding of the mouse scroll (up and down).

interface ScrollActionBinding {
    action: ScrollActions;
    modifierKeys: number;
    scrollMultiplier: number;
}

Properties

ScrollAction of the binding

modifierKeys: number

Modifier keys associated with the scroll binding. Put NONE if you want to bind only the mouse scroll.

scrollMultiplier: number

Multiplies the scrolling value to accelerate/decelerate the actions and/or invert the action (with negative values).