Documentation
    Preparing search index...
    MouseWheelDirection: InputEnum<
        "MouseWheel",
        {
            Back: "back";
            Down: "down";
            Forward: "forward";
            Left: "left";
            Right: "right";
            Up: "up";
        },
    > = ...

    A scroll input in a particular direction. Note that the frequency of "pressed" events for these inputs varies wildly based on the input device. For example, some trackpads and other devices may fire a "pressed" event every frame.

    NOTE: Mouse wheel inputs DO NOT fire "released" events. They are instantaneous inputs only.