Pointer.BACK_BUTTON

[static] BACK_BUTTON : number The X1 button. This is typically the mouse Back button, but is often reconfigured.On Linux (GTK) this is unsupported. On Windows if advanced pointer software (such as IntelliPoint) is installed this doesn't register. Source code: input/Pointer.js (Line 397)

Pointer.ERASER_BUTTON

[static] ERASER_BUTTON : number The Eraser pen button on PointerEvent supported devices only. Source code: input/Pointer.js (Line 412)

Pointer.FORWARD_BUTTON

[static] FORWARD_BUTTON : number The X2 button. This is typically the mouse Forward button, but is often reconfigured.On Linux (GTK) this is unsupported. On Windows if advanced pointer software (such as IntelliPoint) is installed this doesn't register. Source code: input/Pointer.js (Line 405)

Pointer.LEFT_BUTTON

[static] LEFT_BUTTON : number The Left Mouse button, or in PointerEvent devices a Touch contact or Pen contact. Source code: input/Pointer.js (Line 375)

Pointer.MIDDLE_BUTTON

[static] MIDDLE_BUTTON : number The Middle Mouse button. Source code: input/Pointer.js (Line 389)

Pointer.NO_BUTTON

[static] NO_BUTTON : number No buttons at all. Source code: input/Pointer.js (Line 368)

Pointer.RIGHT_BUTTON

[static] RIGHT_BUTTON : number The Right Mouse button, or in PointerEvent devices a Pen contact with a barrel button. Source code: input/Pointer.js (Line 382)

PointerMode#PointerMode

new PointerMode() Enumeration categorizing operational modes of pointers. PointerType values represent valid bitmasks.For example, a value representing both Mouse and Touch devicescan be expressed as PointerMode.CURSOR | PointerMode.CONTACT. Values may be added for future mode categorizations. Source code: input/Pointer.js (Line 1258)

PointerMode.CONTACT

[static] CONTACT A 'CONTACT' pointer has an active cursor that only tracks movement when actived; notably this is a touch-style input. Source code: input/Pointer.js (Line 1273)

PointerMode.CURSOR

[static] CURSOR A 'CURSOR' is a pointer with a passive cursor such as a mouse, touchpad, watcom stylus, or even TV-control arrow-pad. It has the property that a cursor is passively moved without activating the input.This currently corresponds with Phaser.Pointer#isMouse property. Source code: input/Pointer.js (Line 1267)