Class: Mouse

Phaser. Mouse

new Mouse(game)

The Mouse class is responsible for handling all aspects of mouse interaction with the browser.

It captures and processes mouse events that happen on the game canvas object. It also adds a single mouseup listener to window which is used to capture the mouse being released when not over the game.

You should not normally access this class directly, but instead use a Phaser.Pointer object which normalises all game input for you, including accurate button handling.

Parameters:
Name Type Description
game Phaser.Game

A reference to the currently running game.

Source:
src/input/Mouse.js line 21

Members

<static, constant> BACK_BUTTON : number

Type:
  • number
Source:
src/input/Mouse.js line 190

<static, constant> FORWARD_BUTTON : number

Type:
  • number
Source:
src/input/Mouse.js line 196

<static, constant> LEFT_BUTTON : number

Type:
  • number
Source:
src/input/Mouse.js line 172

<static, constant> MIDDLE_BUTTON : number

Type:
  • number
Source:
src/input/Mouse.js line 178

<static, constant> NO_BUTTON : number

Type:
  • number
Source:
src/input/Mouse.js line 166

<static, constant> RIGHT_BUTTON : number

Type:
  • number
Source:
src/input/Mouse.js line 184

<static, constant> WHEEL_DOWN : number

Type:
  • number
Source:
src/input/Mouse.js line 208

<static, constant> WHEEL_UP : number

Type:
  • number
Source:
src/input/Mouse.js line 202

button : number

This property was removed in Phaser 2.4 and should no longer be used. Instead please see the Pointer button properties such as Pointer.leftButton, Pointer.rightButton and so on. Or Pointer.button holds the DOM event button value if you require that.

Type:
  • number
Source:
src/input/Mouse.js line 76

callbackContext : object

The context under which callbacks are called.

Type:
  • object
Source:
src/input/Mouse.js line 37

capture : boolean

If true the DOM mouse events will have event.preventDefault applied to them, if false they will propagate fully.

Type:
  • boolean
Source:
src/input/Mouse.js line 67

enabled : boolean

Mouse input will only be processed if enabled.

Type:
  • boolean
Default Value:
  • true
Source:
src/input/Mouse.js line 89

event : MouseEvent | null

The browser mouse DOM event. Will be null if no mouse event has ever been received. Access this property only inside a Mouse event handler and do not keep references to it.

Type:
  • MouseEvent | null
Source:
src/input/Mouse.js line 115

game : Phaser.Game

A reference to the currently running game.

Type:
Source:
src/input/Mouse.js line 26

<protected> input : Phaser.Input

A reference to the Phaser Input Manager.

Type:
Source:
src/input/Mouse.js line 32

locked : boolean

If the mouse has been Pointer Locked successfully this will be set to true.

Type:
  • boolean
Source:
src/input/Mouse.js line 95

mouseDownCallback : function

A callback that can be fired when the mouse is pressed down.

Type:
  • function
Source:
src/input/Mouse.js line 42

mouseOutCallback : function

A callback that can be fired when the mouse is no longer over the game canvas.

Type:
  • function
Source:
src/input/Mouse.js line 52

mouseOverCallback : function

A callback that can be fired when the mouse enters the game canvas (usually after a mouseout).

Type:
  • function
Source:
src/input/Mouse.js line 57

mouseUpCallback : function

A callback that can be fired when the mouse is released from a pressed down state.

Type:
  • function
Source:
src/input/Mouse.js line 47

mouseWheelCallback : function

A callback that can be fired when the mousewheel is used.

Type:
  • function
Source:
src/input/Mouse.js line 62

pointerLock : Phaser.Signal

This event is dispatched when the browser enters or leaves pointer lock state.

Type:
Source:
src/input/Mouse.js line 107

stopOnGameOut : boolean

If true Pointer.stop will be called if the mouse leaves the game canvas.

Type:
  • boolean
Source:
src/input/Mouse.js line 101

wheelDelta : number

The direction of the last mousewheel usage 1 for up -1 for down.

Type:
  • number
Source:
src/input/Mouse.js line 82

Methods

onMouseDown(event)

The internal method that handles the mouse down event from the browser.

Parameters:
Name Type Description
event MouseEvent

The native event from the browser. This gets stored in Mouse.event.

Source:
src/input/Mouse.js line 296

onMouseMove(event)

The internal method that handles the mouse move event from the browser.

Parameters:
Name Type Description
event MouseEvent

The native event from the browser. This gets stored in Mouse.event.

Source:
src/input/Mouse.js line 326

onMouseOut(event)

The internal method that handles the mouse out event from the browser.

Parameters:
Name Type Description
event MouseEvent

The native event from the browser. This gets stored in Mouse.event.

Source:
src/input/Mouse.js line 445

onMouseOutGlobal(event)

The internal method that handles the mouse out event from the window.

Parameters:
Name Type Description
event MouseEvent

The native event from the browser. This gets stored in Mouse.event.

Source:
src/input/Mouse.js line 408

onMouseOver(event)

The internal method that handles the mouse over event from the browser.

Parameters:
Name Type Description
event MouseEvent

The native event from the browser. This gets stored in Mouse.event.

Source:
src/input/Mouse.js line 481

onMouseUp(event)

The internal method that handles the mouse up event from the browser.

Parameters:
Name Type Description
event MouseEvent

The native event from the browser. This gets stored in Mouse.event.

Source:
src/input/Mouse.js line 356

onMouseUpGlobal(event)

The internal method that handles the mouse up event from the window.

Parameters:
Name Type Description
event MouseEvent

The native event from the browser. This gets stored in Mouse.event.

Source:
src/input/Mouse.js line 386

onMouseWheel(event)

The internal method that handles the mouse wheel event from the browser.

Parameters:
Name Type Description
event MouseEvent

The native event from the browser.

Source:
src/input/Mouse.js line 505

pointerLockChange(event)

Internal pointerLockChange handler.

Parameters:
Name Type Description
event Event

The native event from the browser. This gets stored in Mouse.event.

Source:
src/input/Mouse.js line 563

releasePointerLock()

Internal release pointer lock handler.

Source:
src/input/Mouse.js line 588

requestPointerLock()

If the browser supports it you can request that the pointer be locked to the browser window. This is classically known as 'FPS controls', where the pointer can't leave the browser until the user presses an exit key. If the browser successfully enters a locked state the event Phaser.Mouse.pointerLock will be dispatched and the first parameter will be 'true'.

Source:
src/input/Mouse.js line 534

start()

Starts the event listeners running.

Source:
src/input/Mouse.js line 212

stop()

Stop the event listeners.

Source:
src/input/Mouse.js line 604

phaser-ce@2.8.8 is on GitHub and NPM

Documentation generated by JSDoc 3.5.4 on 2017-09-25 using Tomorrow.