sprunk-engine
    Preparing search index...

    Represents a mouse device. It emits events when mouse buttons are clicked or the mouse is moved.

    Hierarchy (View Summary)

    Index

    Constructors

    Properties

    onAnyChange: Event<void> = ...

    onAnyButtonPress is an event that is triggered when any device button is pressed. Add observers and emit the event.

    onLeftClickDown: Event<void> = ...
    onLeftClickUp: Event<void> = ...

    Event triggered when the left mouse button is clicked.

    onMove: Event<{ delta: Vector2; position: Vector2 }> = ...

    Event triggered when the mouse is moved.

    onRightClickDown: Event<void> = ...
    onRightClickUp: Event<void> = ...

    Event triggered when the right mouse button is clicked.

    onScroll: Event<number> = ...

    Event triggered when the mouse is scrolled.