phaser - v4.0.0-rc.4
    Preparing search index...

    Variable GAMEOBJECT_WHEELConst

    GAMEOBJECT_WHEEL: string

    The Game Object Wheel Input Event.

    This event is dispatched by the Input Plugin belonging to a Scene if a pointer has its wheel moved while over any interactive Game Object.

    Listen to this event from within a Scene using: this.input.on('gameobjectwheel', listener).

    To receive this event, the Game Objects must have been set as interactive. See [GameObject.setInteractive]Phaser.GameObjects.GameObject#setInteractive for more details.

    To listen for this event from a specific Game Object, use the [GAMEOBJECT_POINTER_WHEEL]Phaser.Input.Events#event:GAMEOBJECT_POINTER_WHEEL event instead.

    The event hierarchy is as follows:

    1. [GAMEOBJECT_POINTER_WHEEL]Phaser.Input.Events#event:GAMEOBJECT_POINTER_WHEEL
    2. [GAMEOBJECT_WHEEL]Phaser.Input.Events#event:GAMEOBJECT_WHEEL
    3. [POINTER_WHEEL]Phaser.Input.Events#event:POINTER_WHEEL

    With the top event being dispatched first and then flowing down the list. Note that higher-up event handlers can stop the propagation of this event.