Class: InputHandler

Phaser. InputHandler

Phaser.InputHandler

new InputHandler(sprite)

The Input Handler is bound to a specific Sprite and is responsible for managing all Input events on that Sprite.

Parameters:
Name Type Description
sprite Phaser.Sprite

The Sprite object to which this Input Handler belongs.

Source:

Members

allowHorizontalDrag

Properties:
Name Type Description
allowHorizontalDrag boolean

Controls if the Sprite is allowed to be dragged horizontally.

Default Value:
  • true
Source:

allowVerticalDrag

Properties:
Name Type Description
allowVerticalDrag boolean

Controls if the Sprite is allowed to be dragged vertically.

Default Value:
  • true
Source:

boundsRect

Properties:
Name Type Description
boundsRect Phaser.Rectangle

A region of the game world within which the sprite is restricted during drag.

Default Value:
  • null
Source:

boundsSprite

Properties:
Name Type Description
boundsSprite Phaser.Sprite

A Sprite the bounds of which this sprite is restricted during drag.

Default Value:
  • null
Source:

bringToTop

Properties:
Name Type Description
bringToTop boolean

If true when this Sprite is clicked or dragged it will automatically be bought to the top of the Group it is within.

Default Value:
  • false
Source:

consumePointerEvent

If this object is set to consume the pointer event then it will stop all propogation from this object on. For example if you had a stack of 6 sprites with the same priority IDs and one consumed the event, none of the others would receive it.

Properties:
Name Type Description
consumePointerEvent boolean
Default Value:
  • false
Source:

draggable

Properties:
Name Type Description
draggable boolean

Is this sprite allowed to be dragged by the mouse? true = yes, false = no

Default Value:
  • false
Source:

enabled

Properties:
Name Type Description
enabled boolean

If enabled the Input Handler will process input requests and monitor pointer activity.

Default Value:
  • false
Source:

game

Properties:
Name Type Description
game Phaser.Game

A reference to the currently running game.

Source:

isDragged

Properties:
Name Type Description
isDragged boolean

true if the Sprite is being currently dragged.

Default Value:
  • false
Source:

pixelPerfect

Properties:
Name Type Description
pixelPerfect number

Should we use pixel perfect hit detection? Warning: expensive. Only enable if you really need it!

Default Value:
  • false
Source:

pixelPerfectAlpha

Properties:
Name Type Description
pixelPerfectAlpha number

The alpha tolerance threshold. If the alpha value of the pixel matches or is above this value, it's considered a hit.

Default Value:
  • 255
Source:

priorityID

Properties:
Name Type Description
priorityID number

The PriorityID controls which Sprite receives an Input event first if they should overlap.

Default Value:
  • 0
Source:

snapOffset

Properties:
Name Type Description
snapOffset Phaser.Point

A Point object that contains by how far the Sprite snap is offset.

Default Value:
  • null
Source:

snapOffsetX

Properties:
Name Type Description
snapOffsetX number

This defines the top-left X coordinate of the snap grid.

Default Value:
  • 0
Source:

snapOffsetY

Properties:
Name Type Description
snapOffsetY number

This defines the top-left Y coordinate of the snap grid..

Default Value:
  • 0
Source:

snapOnDrag

Properties:
Name Type Description
snapOnDrag boolean

When the Sprite is dragged this controls if the center of the Sprite will snap to the pointer on drag or not.

Default Value:
  • false
Source:

snapOnRelease

Properties:
Name Type Description
snapOnRelease boolean

When the Sprite is dragged this controls if the Sprite will be snapped on release.

Default Value:
  • false
Source:

snapX

Properties:
Name Type Description
snapX number

When a Sprite has snapping enabled this holds the width of the snap grid.

Default Value:
  • 0
Source:

snapY

Properties:
Name Type Description
snapY number

When a Sprite has snapping enabled this holds the height of the snap grid.

Default Value:
  • 0
Source:

sprite

Properties:
Name Type Description
sprite Phaser.Sprite

The Sprite object to which this Input Handler belongs.

Source:

useHandCursor

Properties:
Name Type Description
useHandCursor boolean

On a desktop browser you can set the 'hand' cursor to appear when moving over the Sprite.

Default Value:
  • false
Source:

Methods

checkBoundsRect()

Bounds Rect check for the sprite drag

Source:

checkBoundsSprite()

Parent Sprite Bounds check for the sprite drag.

Source:

checkPixel(x, y) → {boolean}

Runs a pixel perfect check against the given x/y coordinates of the Sprite this InputHandler is bound to. It compares the alpha value of the pixel and if >= InputHandler.pixelPerfectAlpha it returns true.

Parameters:
Name Type Description
x number

The x coordinate to check.

y number

The y coordinate to check.

Source:
Returns:

true if there is the alpha of the pixel is >= InputHandler.pixelPerfectAlpha

Type
boolean

checkPointerOver(pointer) → {boolean}

Checks if the given pointer is over this Sprite.

Parameters:
Name Type Description
pointer Phaser.Pointer
Source:
Returns:
Type
boolean

destroy()

Clean up memory.

Source:

disableDrag()

Stops this sprite from being able to be dragged. If it is currently the target of an active drag it will be stopped immediately. Also disables any set callbacks.

Source:

disableSnap()

Stops the sprite from snapping to a grid during drag or release.

Source:

downDuration(pointer) → {number}

If the pointer is currently over this Sprite this returns how long it has been there for in milliseconds.

Parameters:
Name Type Description
pointer Phaser.Pointer
Source:
Returns:

The number of milliseconds the pointer has been pressed down on the Sprite, or -1 if not over.

Type
number

enableDrag(lockCenter, bringToTop, pixelPerfect, alphaThreshold, boundsRect, boundsSprite)

Make this Sprite draggable by the mouse. You can also optionally set mouseStartDragCallback and mouseStopDragCallback

Parameters:
Name Type Argument Default Description
lockCenter boolean <optional>
false

If false the Sprite will drag from where you click it minus the dragOffset. If true it will center itself to the tip of the mouse pointer.

bringToTop boolean <optional>
false

If true the Sprite will be bought to the top of the rendering list in its current Group.

pixelPerfect boolean <optional>
false

If true it will use a pixel perfect test to see if you clicked the Sprite. False uses the bounding box.

alphaThreshold boolean <optional>
255

If using pixel perfect collision this specifies the alpha level from 0 to 255 above which a collision is processed.

boundsRect Phaser.Rectangle <optional>
null

If you want to restrict the drag of this sprite to a specific Rectangle, pass the Phaser.Rectangle here, otherwise it's free to drag anywhere.

boundsSprite Phaser.Sprite <optional>
null

If you want to restrict the drag of this sprite to within the bounding box of another sprite, pass it here.

Source:

enableSnap(snapX, snapY, onDrag, onRelease, snapOffsetX, snapOffsetX)

Make this Sprite snap to the given grid either during drag or when it's released. For example 16x16 as the snapX and snapY would make the sprite snap to every 16 pixels.

Parameters:
Name Type Argument Default Description
snapX number

The width of the grid cell to snap to.

snapY number

The height of the grid cell to snap to.

onDrag boolean <optional>
true

If true the sprite will snap to the grid while being dragged.

onRelease boolean <optional>
false

If true the sprite will snap to the grid when released.

snapOffsetX number <optional>
0

Used to offset the top-left starting point of the snap grid.

snapOffsetX number <optional>
0

Used to offset the top-left starting point of the snap grid.

Source:

justOut(pointer, delay) → {boolean}

Returns true if the pointer has left the Sprite within the specified delay time (defaults to 500ms, half a second)

Parameters:
Name Type Description
pointer Phaser.Pointer
delay number

The time below which the pointer is considered as just out.

Source:
Returns:
Type
boolean

justOver(pointer, delay) → {boolean}

Returns true if the pointer has entered the Sprite within the specified delay time (defaults to 500ms, half a second)

Parameters:
Name Type Description
pointer Phaser.Pointer
delay number

The time below which the pointer is considered as just over.

Source:
Returns:
Type
boolean

justPressed(pointer, delay) → {boolean}

Returns true if the pointer has entered the Sprite within the specified delay time (defaults to 500ms, half a second)

Parameters:
Name Type Description
pointer Phaser.Pointer
delay number

The time below which the pointer is considered as just over.

Source:
Returns:
Type
boolean

justReleased(pointer, delay) → {boolean}

Returns true if the pointer has left the Sprite within the specified delay time (defaults to 500ms, half a second)

Parameters:
Name Type Description
pointer Phaser.Pointer
delay number

The time below which the pointer is considered as just out.

Source:
Returns:
Type
boolean

overDuration(pointer) → {number}

If the pointer is currently over this Sprite this returns how long it has been there for in milliseconds.

Parameters:
Name Type Description
pointer Phaser.Pointer
Source:
Returns:

The number of milliseconds the pointer has been over the Sprite, or -1 if not over.

Type
number

pointerDown(pointer) → {boolean}

If the Pointer is touching the touchscreen, or the mouse button is held down, isDown is set to true.

Parameters:
Name Type Description
pointer Phaser.Pointer
Source:
Returns:
Type
boolean

pointerDragged(pointer) → {number}

Is this sprite being dragged by the mouse or not?

Parameters:
Name Type Description
pointer Phaser.Pointer
Source:
Returns:
Type
number

pointerOut(index) → {boolean}

Is the Pointer outside of this Sprite?

Parameters:
Name Type Argument Description
index number <optional>

The ID number of a Pointer to check. If you don't provide a number it will check all Pointers.

Source:
Returns:

True if the given pointer (if a index was given, or any pointer if not) is out of this object.

Type
boolean

pointerOver(index) → {boolean}

Is the Pointer over this Sprite?

Parameters:
Name Type Argument Description
index number <optional>

The ID number of a Pointer to check. If you don't provide a number it will check all Pointers.

Source:
Returns:

True if the given pointer (if a index was given, or any pointer if not) is over this object.

Type
boolean

pointerTimeDown(pointer) → {number}

A timestamp representing when the Pointer first touched the touchscreen.

Parameters:
Name Type Description
pointer Phaser.Pointer
Source:
Returns:
Type
number

pointerTimeOut(pointer) → {number}

A timestamp representing when the Pointer left the touchscreen.

Parameters:
Name Type Description
pointer Phaser.Pointer
Source:
Returns:
Type
number

pointerTimeOver(pointer) → {number}

A timestamp representing when the Pointer first touched the touchscreen.

Parameters:
Name Type Description
pointer Phaser.Pointer
Source:
Returns:
Type
number

pointerTimeUp(pointer) → {number}

A timestamp representing when the Pointer left the touchscreen.

Parameters:
Name Type Description
pointer Phaser.Pointer
Source:
Returns:
Type
number

pointerUp(pointer) → {boolean}

If the Pointer is not touching the touchscreen, or the mouse button is up, isUp is set to true

Parameters:
Name Type Description
pointer Phaser.Pointer
Source:
Returns:
Type
boolean

pointerX(pointer) → {number}

The x coordinate of the Input pointer, relative to the top-left of the parent Sprite. This value is only set when the pointer is over this Sprite.

Parameters:
Name Type Description
pointer Phaser.Pointer
Source:
Returns:

The x coordinate of the Input pointer.

Type
number

pointerY(pointer) → {number}

The y coordinate of the Input pointer, relative to the top-left of the parent Sprite This value is only set when the pointer is over this Sprite.

Parameters:
Name Type Description
pointer Phaser.Pointer
Source:
Returns:

The y coordinate of the Input pointer.

Type
number

reset()

Resets the Input Handler and disables it.

Source:

setDragLock(allowHorizontal, allowVertical)

Restricts this sprite to drag movement only on the given axis. Note: If both are set to false the sprite will never move!

Parameters:
Name Type Argument Default Description
allowHorizontal boolean <optional>
true

To enable the sprite to be dragged horizontally set to true, otherwise false.

allowVertical boolean <optional>
true

To enable the sprite to be dragged vertically set to true, otherwise false.

Source:

start(priority, useHandCursor) → {Phaser.Sprite}

Starts the Input Handler running. This is called automatically when you enable input on a Sprite, or can be called directly if you need to set a specific priority.

Parameters:
Name Type Description
priority number

Higher priority sprites take click priority over low-priority sprites when they are stacked on-top of each other.

useHandCursor boolean

If true the Sprite will show the hand cursor on mouse-over (doesn't apply to mobile browsers)

Source:
Returns:

The Sprite object to which the Input Handler is bound.

Type
Phaser.Sprite

startDrag(pointer)

Called by Pointer when drag starts on this Sprite. Should not usually be called directly.

Parameters:
Name Type Description
pointer Phaser.Pointer
Source:

stop()

Stops the Input Handler from running.

Source:

stopDrag(pointer)

Called by Pointer when drag is stopped on this Sprite. Should not usually be called directly.

Parameters:
Name Type Description
pointer Phaser.Pointer
Source:

update(pointer)

Update.

Parameters:
Name Type Description
pointer Phaser.Pointer
Source:

updateDrag(pointer) → {boolean}

Updates the Pointer drag on this Sprite.

Parameters:
Name Type Description
pointer Phaser.Pointer
Source:
Returns:
Type
boolean
Phaser Copyright © 2012-2014 Photon Storm Ltd.
Documentation generated by JSDoc 3.3.0-dev on Mon Feb 24 2014 01:12:27 GMT-0000 (GMT) using the DocStrap template.