new Pointer(game, id)
Phaser - Pointer constructor.
Parameters:
Name | Type | Description |
---|---|---|
game |
Phaser.Game | A reference to the currently running game. |
id |
number | The ID of the Pointer object within the game. Each game can have up to 10 active pointers. |
- Source:
Members
-
active
-
- Default Value:
- false
- Source:
Properties:
Name Type Description active
boolean An active pointer is one that is currently pressed down on the display. A Mouse is always active.
-
button
-
- Default Value:
- null
- Source:
Properties:
Name Type Description button
any The button property of the Pointer as set by the DOM event when this Pointer is started.
-
circle
-
A Phaser.Circle that is centered on the x/y coordinates of this pointer, useful for hit detection. The Circle size is 44px (Apples recommended "finger tip" size).
- Source:
Properties:
Name Type Description circle
Phaser.Circle -
clientX
-
- Source:
Properties:
Name Type Description clientX
number The horizontal coordinate of the Pointer within the application's client area at which the event occurred (as opposed to the coordinates within the page).
-
clientY
-
- Source:
Properties:
Name Type Description clientY
number The vertical coordinate of the Pointer within the application's client area at which the event occurred (as opposed to the coordinates within the page).
-
<readonly> duration
-
How long the Pointer has been depressed on the touchscreen. If not currently down it returns -1.
- Source:
Properties:
Name Type Description duration
number How long the Pointer has been depressed on the touchscreen. If not currently down it returns -1.
-
exists
-
- Default Value:
- true
- Source:
Properties:
Name Type Description exists
boolean A Pointer object that exists is allowed to be checked for physics collisions and overlaps.
-
game
-
- Source:
Properties:
Name Type Description game
Phaser.Game A reference to the currently running game.
-
id
-
- Source:
Properties:
Name Type Description id
number The ID of the Pointer object within the game. Each game can have up to 10 active pointers.
-
identifier
-
- Default Value:
- 0
- Source:
Properties:
Name Type Description identifier
number The identifier property of the Pointer as set by the DOM event when this Pointer is started.
-
isDown
-
- Default Value:
- false
- Source:
Properties:
Name Type Description isDown
boolean If the Pointer is touching the touchscreen, or the mouse button is held down, isDown is set to true.
-
isMouse
-
- Default Value:
- false
- Source:
Properties:
Name Type Description isMouse
boolean If the Pointer is a mouse this is true, otherwise false.
-
isUp
-
- Default Value:
- true
- Source:
Properties:
Name Type Description isUp
boolean If the Pointer is not touching the touchscreen, or the mouse button is up, isUp is set to true.
-
movementX
-
- Default Value:
- 0
- Source:
Properties:
Name Type Description movementX
number The horizontal processed relative movement of the Pointer in pixels since last event.
-
movementY
-
- Default Value:
- 0
- Source:
Properties:
Name Type Description movementY
number The vertical processed relative movement of the Pointer in pixels since last event.
-
msSinceLastClick
-
- Source:
Properties:
Name Type Description msSinceLastClick
number The number of milliseconds since the last click or touch event.
-
pageX
-
- Source:
Properties:
Name Type Description pageX
number The horizontal coordinate of the Pointer relative to whole document.
-
pageY
-
- Source:
Properties:
Name Type Description pageY
number The vertical coordinate of the Pointer relative to whole document.
-
pointerId
-
- Default Value:
- null
- Source:
Properties:
Name Type Description pointerId
number The pointerId property of the Pointer as set by the DOM event when this Pointer is started. The browser can and will recycle this value.
-
position
-
- Source:
Properties:
Name Type Description position
Phaser.Point A Phaser.Point object containing the current x/y values of the pointer on the display.
-
positionDown
-
- Source:
Properties:
Name Type Description positionDown
Phaser.Point A Phaser.Point object containing the x/y values of the pointer when it was last in a down state on the display.
-
positionUp
-
- Source:
Properties:
Name Type Description positionUp
Phaser.Point A Phaser.Point object containing the x/y values of the pointer when it was last released.
-
previousTapTime
-
- Default Value:
- 0
- Source:
Properties:
Name Type Description previousTapTime
number A timestamp representing when the Pointer was last tapped or clicked.
-
rawMovementX
-
- Default Value:
- 0
- Source:
Properties:
Name Type Description rawMovementX
number The horizontal raw relative movement of the Pointer in pixels since last event.
-
rawMovementY
-
- Default Value:
- 0
- Source:
Properties:
Name Type Description rawMovementY
number The vertical raw relative movement of the Pointer in pixels since last event.
-
screenX
-
- Source:
Properties:
Name Type Description screenX
number The horizontal coordinate of the Pointer relative to the screen.
-
screenY
-
- Source:
Properties:
Name Type Description screenY
number The vertical coordinate of the Pointer relative to the screen.
-
target
-
- Default Value:
- null
- Source:
Properties:
Name Type Description target
any The target property of the Pointer as set by the DOM event when this Pointer is started.
-
targetObject
-
- Default Value:
- null
- Source:
Properties:
Name Type Description targetObject
any The Game Object this Pointer is currently over / touching / dragging.
-
timeDown
-
- Default Value:
- 0
- Source:
Properties:
Name Type Description timeDown
number A timestamp representing when the Pointer first touched the touchscreen.
-
timeUp
-
- Default Value:
- 0
- Source:
Properties:
Name Type Description timeUp
number A timestamp representing when the Pointer left the touchscreen.
-
totalTouches
-
- Default Value:
- 0
- Source:
Properties:
Name Type Description totalTouches
number The total number of times this Pointer has been touched to the touchscreen.
-
<readonly> type
-
- Source:
Properties:
Name Type Description type
number The const type of this object.
-
withinGame
-
- Source:
Properties:
Name Type Description withinGame
boolean true if the Pointer is over the game canvas, otherwise false.
-
<readonly> worldX
-
Gets the X value of this Pointer in world coordinates based on the world camera.
- Source:
Properties:
Name Type Description duration
number The X value of this Pointer in world coordinates based on the world camera.
-
<readonly> worldY
-
Gets the Y value of this Pointer in world coordinates based on the world camera.
- Source:
Properties:
Name Type Description duration
number The Y value of this Pointer in world coordinates based on the world camera.
-
x
-
- Source:
Properties:
Name Type Description x
number The horizontal coordinate of the Pointer. This value is automatically scaled based on the game scale.
-
y
-
- Source:
Properties:
Name Type Description y
number The vertical coordinate of the Pointer. This value is automatically scaled based on the game scale.
Methods
-
justPressed(duration) → {boolean}
-
The Pointer is considered justPressed if the time it was pressed onto the touchscreen or clicked is less than justPressedRate. Note that calling justPressed doesn't reset the pressed status of the Pointer, it will return
true
for as long as the duration is valid. If you wish to check if the Pointer was pressed down just once then see the Sprite.events.onInputDown event.Parameters:
Name Type Argument Description duration
number <optional>
The time to check against. If none given it will use InputManager.justPressedRate.
- Source:
Returns:
true if the Pointer was pressed down within the duration given.
- Type
- boolean
-
justReleased(duration) → {boolean}
-
The Pointer is considered justReleased if the time it left the touchscreen is less than justReleasedRate. Note that calling justReleased doesn't reset the pressed status of the Pointer, it will return
true
for as long as the duration is valid. If you wish to check if the Pointer was released just once then see the Sprite.events.onInputUp event.Parameters:
Name Type Argument Description duration
number <optional>
The time to check against. If none given it will use InputManager.justReleasedRate.
- Source:
Returns:
true if the Pointer was released within the duration given.
- Type
- boolean
-
leave(event)
-
Called when the Pointer leaves the target area.
Parameters:
Name Type Description event
MouseEvent | PointerEvent | TouchEvent The event passed up from the input handler.
- Source:
-
move(event, fromClick)
-
Called when the Pointer is moved.
Parameters:
Name Type Argument Default Description event
MouseEvent | PointerEvent | TouchEvent The event passed up from the input handler.
fromClick
boolean <optional>
false Was this called from the click event?
- Source:
-
reset()
-
Resets the Pointer properties. Called by InputManager.reset when you perform a State change.
- Source:
-
resetMovement()
-
Resets the movementX and movementY properties. Use in your update handler after retrieving the values.
- Source:
-
start(event)
-
Called when the Pointer is pressed onto the touchscreen.
Parameters:
Name Type Description event
any The DOM event from the browser.
- Source:
-
stop(event)
-
Called when the Pointer leaves the touchscreen.
Parameters:
Name Type Description event
MouseEvent | PointerEvent | TouchEvent The event passed up from the input handler.
- Source:
-
update()
-
Called by the Input Manager.
- Source: